diff --git a/.vscode/settings.json b/.vscode/settings.json index 1d2b117f..9231cf5a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,7 +4,8 @@ "editor.formatOnSave": true, }, "python.testing.pytestArgs": [ - "tests" + "tests", + "services" ], "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true, diff --git a/services/finetuning/.gitignore b/services/finetuning/.gitignore new file mode 100644 index 00000000..53780a94 --- /dev/null +++ b/services/finetuning/.gitignore @@ -0,0 +1,2 @@ +data/* +mytest-tsfm diff --git a/services/finetuning/Makefile b/services/finetuning/Makefile index d0223145..3085c85b 100644 --- a/services/finetuning/Makefile +++ b/services/finetuning/Makefile @@ -14,8 +14,16 @@ boilerplate: image: $(CONTAINER_BUILDER) build -t tsfmfinetuning -f Dockerfile . -test_local: boilerplate - pytest tests +clone_models: + git lfs install || true + git clone https://huggingface.co/ibm/test-tsfm mytest-tsfm || true + + +fetchdata: + python tests/fetchdata.py + +test_local: boilerplate fetchdata clone_models + pytest -s tests install_dev: boilerplate pip install poetry && poetry install --with dev diff --git a/services/finetuning/README.md b/services/finetuning/README.md index b377dea8..21baf9ab 100644 --- a/services/finetuning/README.md +++ b/services/finetuning/README.md @@ -1,3 +1,259 @@ # TSFM Inference Services -The TSFM Finetuning Services component provides a runtime for finetuning existing models. \ No newline at end of file +The TSFM Finetuning Services component provides a runtime for finetuning existing models. +At present we do not support direct service endpoints, the assumption is that +the main `ftmain.py` will serve as the entry point for orchestrated finetuning +workflows initiated from 3rd-party frameworks. The current implementation includes +an example of using the kubeflow training operator and its API for performing +a finetuneing job on a kubernetes-based system. + +## Prerequisites: + +- GNU make +- git +- git-lfs (available in many system package managers such as apt, dnf, and brew) +- python >=3.10, <3.13 +- poetry (`pip install poetry`) +- zsh or bash +- docker or podman (to run examples, we have not tested well with podman) +- kubectl for deploying a local test cluster + +## Installation + +```sh +pip install poetry && poetry install --with dev +``` + +### Testing locally + +This will run basic unit tests. You should run them and confirm they pass before +proceeding to kubernetes-based tests and examples. + +```zsh +make test_local +``` + +### Building an image + +You must have either docker or podman installed on your system for this to +work. You must also have proper permissions on your system to build images. We assume you have a working docker command which can be docker itself +or `podman` that has been aliased as `docker` or has been installed with the podman-docker package that will do this for you. + +```zsh +make image +``` + +Note that be default we build an image **without** GPU support. This makes the development image much smaller +than a fully nvidia-enabled image. GPU enablement is coming soon and will be available via an environment +prefix to the `make image` command. + +After a successful build you should have a local image named +`tsfmfinetuning:latest` + +```zsh +docker images | grep tsfmfinetuning | head -n 1 +tsfmfinetuning latest df592dcb0533 46 seconds ago 1.49GB +# some of the numeric and hash values on your machine could be different +``` + +## Running a simple finetuning job on a local kubernetes cluster using kind + +For this example we'll use [kind](https://kind.sigs.k8s.io/docs/user/quick-start/), +a lightweight way of running a local kubernetes cluster using docker. We will +use the kubeflow training operator's custom resource to start +and monitor an ayschronous finetuning job. + +### Create a local cluster + +First: + +- [Install kubectl](https://kubernetes.io/docs/tasks/tools/) +- [Install helm](https://helm.sh/docs/intro/install/) +- If you are using podman, you will need to enable the use of an insecure (using http instead of https) + local container registry by creating a file called `/etc/containers/registries.conf.d/localhost.conf` + with the following content: + + ``` + [[registry]] + location = "localhost:5001" + insecure = true + ``` + +- If you're using podman, you may run into issues running the kserve container due to + open file (nofile) limits. If so, + see https://github.com/containers/common/blob/main/docs/containers.conf.5.md + for instructions on how to increase the default limits. + +Now install a kind control plane with a local docker registry: + +```zsh +curl -s https://kind.sigs.k8s.io/examples/kind-with-registry.sh | bash + +Creating cluster "kind" ... + ✓ Ensuring node image (kindest/node:v1.29.2) đŸ–ŧ + ✓ Preparing nodes đŸ“Ļ + ✓ Writing configuration 📜 + ✓ Starting control-plane 🕹ī¸ + ✓ Installing CNI 🔌 + ✓ Installing StorageClass 💾 +Set kubectl context to "kind-kind" +You can now use your cluster with: + +kubectl cluster-info --context kind-kind + +Have a nice day! 👋 +configmap/local-registry-hosting created +``` + +Confirm that your local cluster is running: + +```zsh +kubectl config use-context kind-kind +Switched to context "kind-kind". +``` + +```zsh +kubectl get pods -A +NAMESPACE NAME READY STATUS RESTARTS AGE +kube-system coredns-7c65d6cfc9-b8fcf 1/1 Running 0 16h +kube-system coredns-7c65d6cfc9-bptc4 1/1 Running 0 16h +kube-system etcd-kind-control-plane 1/1 Running 0 16h +kube-system kindnet-7xz78 1/1 Running 0 16h +kube-system kube-apiserver-kind-control-plane 1/1 Running 0 16h +kube-system kube-controller-manager-kind-control-plane 1/1 Running 0 16h +kube-system kube-proxy-nwwvq 1/1 Running 0 16h +kube-system kube-scheduler-kind-control-plane 1/1 Running 0 16h +local-path-storage local-path-provisioner-57c5987fd4-ts26j 1/1 Running 0 16h + +``` + +Note that your names will look similar to necessarily identical to the above. + +### Set up rancher storage provisioning (this is necessary only when using a kind local cluster) + +```zsh +kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.30/deploy/local-path-storage.yaml +``` + +### Install the kubeflow training operator (KFTO) + +The following steps are based on those presented in [the official KFTO documentation](https://www.kubeflow.org/docs/components/training/installation/). + +```zsh +kubectl apply --server-side -k "github.com/kubeflow/training-operator.git/manifests/overlays/standalone?ref=v1.8.1" +``` + +Check that the training operator pod is running: + +```zsh +kubectl get pods -n kubeflow + +kubeflow training-operator-7f8bfd56f-lrpm2 1/1 Running 0 3m41s +``` + +As before, your output should be similar but not necessarily identical to the above. + +Check that the custom resource definitions have been created: + +```zsh +kubectl get crd + +NAME CREATED AT +mpijobs.kubeflow.org 2024-12-07T18:21:04Z +mxjobs.kubeflow.org 2024-12-07T18:21:05Z +paddlejobs.kubeflow.org 2024-12-07T18:21:05Z +pytorchjobs.kubeflow.org 2024-12-07T18:21:06Z +tfjobs.kubeflow.org 2024-12-07T18:21:06Z +xgboostjobs.kubeflow.org 2024-12-07T18:21:06Z + +``` + +### Push the tsfm service image to the kind local registry: + +```zsh +# don't forget to run "make image" first +docker tag tsfmfinetuning:latest localhost:5001/tsfmfinetuning:latest + docker push localhost:5001/tsfmfinetuning:latest +``` + +### Create your local storage + +Define a persistent volume claim using rancher's local-path storage: + +```sh +kubectl apply -f examples/local_pvc.yaml +``` + +Create a alpine instance bound to this PVC to make it easier to copy things to the local storage location + +```sh +kubectl apply -f examples/alpine.yaml +``` + +Copy models to the PVC + +```sh +make clone_models && make fetchdata +``` + +Copy data and payload parameters to the storage location. **Remember this is +just a local development example, you would not be doing things like +giving rwX permission to everyone (the last line in the code snippet below) +in a real deployment!** + +```sh +kubectl cp mytest-tsfm alpine:/data \ +&& kubectl cp --no-preserve=true data/ETTh1.csv alpine:/data \ +&& tf=$(mktemp) \ +&& cat data/ftpayload.json | awk '{gsub("file://./", "file:///")}1' >> $tf \ +&& kubectl cp --no-preserve=true $tf alpine:/data/ftpayload.json \ +&& cat tsfmfinetuning/default_config.yml | awk '{gsub("/tmp", "/data")}1' > $tf \ +&& kubectl cp --no-preserve=true $tf alpine:/data/default_config.yml \ +&& kubectl exec alpine -- chmod -R go+rwX /data +``` + +Create a finetuning job and monitor its output + +```sh +kubectl apply -f examples/kfto_job.yaml + +pytorchjob.kubeflow.org/tsfmfinetuning-job created +``` + +```sh +kubectl logs -f tsfmfinetuning-job-master-0 + +/finetuning/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:192: UserWarning: Field name "schema" in "ForecastingInferenceInput" shadows an attribute in parent "BaseInferenceInput" + warnings.warn( +/finetuning/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:192: UserWarning: Field name "schema" in "ForecastingTuneInput" shadows an attribute in parent "BaseTuneInput" + warnings.warn( +INFO:p-1:t-139742116783936:finetuning.py:__init__:registered tinytimemixer +INFO:p-1:t-139742116783936:finetuning.py:_finetuning_common:in _forecasting_tuning_workflow +INFO:p-1:t-139742116783936:finetuning.py:load:No preprocessor found +INFO:p-1:t-139742116783936:hfutil.py:load_model:Found model class: TinyTimeMixerForPrediction +INFO:p-1:t-139742116783936:finetuning.py:load:Successfully loaded model +WARNING:p-1:t-139742116783936:other.py:check_os_kernel:Detected kernel version 4.18.0, which is below the recommended minimum of 5.5.0; this can cause the process to hang. It is recommended to upgrade the kernel to the minimum version or higher. +INFO:p-1:t-139742116783936:finetuning.py:_finetuning_common:calling trainer.train +{'loss': 7.3424, 'grad_norm': 8.357532501220703, 'learning_rate': 0.0, 'epoch': 1.0} + +100%|██████████| 3/3 [00:17<00:00, 3.51s/it]e': 6.2719, 'eval_samples_per_second': 119.581, 'eval_steps_per_second': 3.827, 'epoch': 1.0} +100%|██████████| 3/3 [00:17<00:00, 5.85s/it]_second': 42.739, 'train_steps_per_second': 0.171, 'train_loss': 7.342405319213867, 'epoch': 1.0} +INFO:p-1:t-139742116783936:finetuning.py:_finetuning_common:done with training +``` + +Confirm that a new finetuned model has been produced + +```sh +# 'finetuned_from_kfto' comes from the value set for the +# --model_name argument in examples/kfto_job.yaml +kubectl exec alpine -- ls -lR /data/finetuned_from_kfto + +/data/finetuned_from_kfto: +total 3188 +-rw-r--r-- 1 1001 root 1573 Dec 9 15:28 config.json +-rw-r--r-- 1 1001 root 69 Dec 9 15:28 generation_config.json +-rw-r--r-- 1 1001 root 3240592 Dec 9 15:28 model.safetensors +-rw-r--r-- 1 1001 root 857 Dec 9 15:28 preprocessor_config.json +-rw-r--r-- 1 1001 root 5304 Dec 9 15:28 training_args.bin + +``` diff --git a/services/finetuning/examples/alpine.yaml b/services/finetuning/examples/alpine.yaml new file mode 100644 index 00000000..5ba877dd --- /dev/null +++ b/services/finetuning/examples/alpine.yaml @@ -0,0 +1,26 @@ +apiVersion: v1 +kind: Pod +metadata: + name: alpine +spec: + containers: + - name: alpine + image: amd64/alpine:3.7 + imagePullPolicy: Always + command: + - sleep + - "3600" + volumeMounts: + - mountPath: /data + name: volv + resources: + limits: + memory: 1Gi + cpu: 500m + requests: + memory: 256Mi + cpu: 125m + volumes: + - name: volv + persistentVolumeClaim: + claimName: local-path-pvc \ No newline at end of file diff --git a/services/finetuning/examples/kfto_job.yaml b/services/finetuning/examples/kfto_job.yaml new file mode 100644 index 00000000..b6b80230 --- /dev/null +++ b/services/finetuning/examples/kfto_job.yaml @@ -0,0 +1,54 @@ +apiVersion: "kubeflow.org/v1" +kind: PyTorchJob +metadata: + name: tsfmfinetuning-job + namespace: default + annotations: + sidecar.istio.io/inject: "false" +spec: + pytorchReplicaSpecs: + Master: + replicas: 1 + restartPolicy: Never + template: + spec: + containers: + - name: pytorch + image: localhost:5001/tsfmfinetuning:latest + imagePullPolicy: Always + volumeMounts: + - name: volv + mountPath: /data + resources: + requests: + memory: 8Gi + cpu: 1000m + limits: + memory: 12Gi + cpu: 1500m + env: + - name: TSFM_ALLOW_LOAD_FROM_HF_HUB + value: "0" + - name: TSFM_MODEL_DIR + value: "/data" + command: + - "python" + - "tsfmfinetuning/ftmain.py" + - "--payload" + - "/data/ftpayload.json" + - "--target_dir" + - "/data" + - "--model_name" + - "finetuned_from_kfto" + - "--config_file" + - "/data/default_config.yml" + - "--model_arch" + - "ttm" + - "--task_type" + - "forecasting" + volumes: + - name: volv + persistentVolumeClaim: + claimName: local-path-pvc + + diff --git a/services/finetuning/examples/local_pvc.yaml b/services/finetuning/examples/local_pvc.yaml new file mode 100644 index 00000000..f646b5c5 --- /dev/null +++ b/services/finetuning/examples/local_pvc.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: local-path-pvc +spec: + accessModes: + - ReadWriteOnce + storageClassName: local-path + resources: + requests: + storage: 1Gi diff --git a/services/finetuning/poetry.lock b/services/finetuning/poetry.lock index d6ada8ff..45f9b443 100644 --- a/services/finetuning/poetry.lock +++ b/services/finetuning/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "accelerate" -version = "1.1.1" +version = "1.2.0" description = "Accelerate" optional = false python-versions = ">=3.9.0" files = [ - {file = "accelerate-1.1.1-py3-none-any.whl", hash = "sha256:61edd81762131b8d4bede008643fa1e1f3bf59bec710ebda9771443e24feae02"}, - {file = "accelerate-1.1.1.tar.gz", hash = "sha256:0d39dfac557052bc735eb2703a0e87742879e1e40b88af8a2f9a93233d4cd7db"}, + {file = "accelerate-1.2.0-py3-none-any.whl", hash = "sha256:815708367eb83cd682e120da634b2cf318729bff95f30e2f046c086aae20201e"}, + {file = "accelerate-1.2.0.tar.gz", hash = "sha256:4187a9dea21101255ada3a1974532585feeb6ca8b681693dba362d6d25e85ef2"}, ] [package.dependencies] @@ -33,98 +33,98 @@ testing = ["bitsandbytes", "datasets", "diffusers", "evaluate", "parameterized", [[package]] name = "aiohappyeyeballs" -version = "2.4.3" +version = "2.4.4" description = "Happy Eyeballs for asyncio" optional = false python-versions = ">=3.8" files = [ - {file = "aiohappyeyeballs-2.4.3-py3-none-any.whl", hash = "sha256:8a7a83727b2756f394ab2895ea0765a0a8c475e3c71e98d43d76f22b4b435572"}, - {file = "aiohappyeyeballs-2.4.3.tar.gz", hash = "sha256:75cf88a15106a5002a8eb1dab212525c00d1f4c0fa96e551c9fbe6f09a621586"}, + {file = "aiohappyeyeballs-2.4.4-py3-none-any.whl", hash = "sha256:a980909d50efcd44795c4afeca523296716d50cd756ddca6af8c65b996e27de8"}, + {file = "aiohappyeyeballs-2.4.4.tar.gz", hash = "sha256:5fdd7d87889c63183afc18ce9271f9b0a7d32c2303e394468dd45d514a757745"}, ] [[package]] name = "aiohttp" -version = "3.11.7" +version = "3.11.10" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.9" files = [ - {file = "aiohttp-3.11.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8bedb1f6cb919af3b6353921c71281b1491f948ca64408871465d889b4ee1b66"}, - {file = "aiohttp-3.11.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f5022504adab881e2d801a88b748ea63f2a9d130e0b2c430824682a96f6534be"}, - {file = "aiohttp-3.11.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e22d1721c978a6494adc824e0916f9d187fa57baeda34b55140315fa2f740184"}, - {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e993676c71288618eb07e20622572b1250d8713e7e00ab3aabae28cb70f3640d"}, - {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e13a05db87d3b241c186d0936808d0e4e12decc267c617d54e9c643807e968b6"}, - {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ba8d043fed7ffa117024d7ba66fdea011c0e7602327c6d73cacaea38abe4491"}, - {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda3ed0a7869d2fa16aa41f9961ade73aa2c2e3b2fcb0a352524e7b744881889"}, - {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43bfd25113c1e98aec6c70e26d5f4331efbf4aa9037ba9ad88f090853bf64d7f"}, - {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3dd3e7e7c9ef3e7214f014f1ae260892286647b3cf7c7f1b644a568fd410f8ca"}, - {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:78c657ece7a73b976905ab9ec8be9ef2df12ed8984c24598a1791c58ce3b4ce4"}, - {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:db70a47987e34494b451a334605bee57a126fe8d290511349e86810b4be53b01"}, - {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:9e67531370a3b07e49b280c1f8c2df67985c790ad2834d1b288a2f13cd341c5f"}, - {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9202f184cc0582b1db15056f2225ab4c1e3dac4d9ade50dd0613ac3c46352ac2"}, - {file = "aiohttp-3.11.7-cp310-cp310-win32.whl", hash = "sha256:2257bdd5cf54a4039a4337162cd8048f05a724380a2283df34620f55d4e29341"}, - {file = "aiohttp-3.11.7-cp310-cp310-win_amd64.whl", hash = "sha256:b7215bf2b53bc6cb35808149980c2ae80a4ae4e273890ac85459c014d5aa60ac"}, - {file = "aiohttp-3.11.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cea52d11e02123f125f9055dfe0ccf1c3857225fb879e4a944fae12989e2aef2"}, - {file = "aiohttp-3.11.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3ce18f703b7298e7f7633efd6a90138d99a3f9a656cb52c1201e76cb5d79cf08"}, - {file = "aiohttp-3.11.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:670847ee6aeb3a569cd7cdfbe0c3bec1d44828bbfbe78c5d305f7f804870ef9e"}, - {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dda726f89bfa5c465ba45b76515135a3ece0088dfa2da49b8bb278f3bdeea12"}, - {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c25b74a811dba37c7ea6a14d99eb9402d89c8d739d50748a75f3cf994cf19c43"}, - {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5522ee72f95661e79db691310290c4618b86dff2d9b90baedf343fd7a08bf79"}, - {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fbf41a6bbc319a7816ae0f0177c265b62f2a59ad301a0e49b395746eb2a9884"}, - {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:59ee1925b5a5efdf6c4e7be51deee93984d0ac14a6897bd521b498b9916f1544"}, - {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:24054fce8c6d6f33a3e35d1c603ef1b91bbcba73e3f04a22b4f2f27dac59b347"}, - {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:351849aca2c6f814575c1a485c01c17a4240413f960df1bf9f5deb0003c61a53"}, - {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:12724f3a211fa243570e601f65a8831372caf1a149d2f1859f68479f07efec3d"}, - {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:7ea4490360b605804bea8173d2d086b6c379d6bb22ac434de605a9cbce006e7d"}, - {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e0bf378db07df0a713a1e32381a1b277e62ad106d0dbe17b5479e76ec706d720"}, - {file = "aiohttp-3.11.7-cp311-cp311-win32.whl", hash = "sha256:cd8d62cab363dfe713067027a5adb4907515861f1e4ce63e7be810b83668b847"}, - {file = "aiohttp-3.11.7-cp311-cp311-win_amd64.whl", hash = "sha256:bf0e6cce113596377cadda4e3ac5fb89f095bd492226e46d91b4baef1dd16f60"}, - {file = "aiohttp-3.11.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4bb7493c3e3a36d3012b8564bd0e2783259ddd7ef3a81a74f0dbfa000fce48b7"}, - {file = "aiohttp-3.11.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e143b0ef9cb1a2b4f74f56d4fbe50caa7c2bb93390aff52f9398d21d89bc73ea"}, - {file = "aiohttp-3.11.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f7c58a240260822dc07f6ae32a0293dd5bccd618bb2d0f36d51c5dbd526f89c0"}, - {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d20cfe63a1c135d26bde8c1d0ea46fd1200884afbc523466d2f1cf517d1fe33"}, - {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12e4d45847a174f77b2b9919719203769f220058f642b08504cf8b1cf185dacf"}, - {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf4efa2d01f697a7dbd0509891a286a4af0d86902fc594e20e3b1712c28c0106"}, - {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee6a4cdcbf54b8083dc9723cdf5f41f722c00db40ccf9ec2616e27869151129"}, - {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6095aaf852c34f42e1bd0cf0dc32d1e4b48a90bfb5054abdbb9d64b36acadcb"}, - {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1cf03d27885f8c5ebf3993a220cc84fc66375e1e6e812731f51aab2b2748f4a6"}, - {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:1a17f6a230f81eb53282503823f59d61dff14fb2a93847bf0399dc8e87817307"}, - {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:481f10a1a45c5f4c4a578bbd74cff22eb64460a6549819242a87a80788461fba"}, - {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:db37248535d1ae40735d15bdf26ad43be19e3d93ab3f3dad8507eb0f85bb8124"}, - {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9d18a8b44ec8502a7fde91446cd9c9b95ce7c49f1eacc1fb2358b8907d4369fd"}, - {file = "aiohttp-3.11.7-cp312-cp312-win32.whl", hash = "sha256:3d1c9c15d3999107cbb9b2d76ca6172e6710a12fda22434ee8bd3f432b7b17e8"}, - {file = "aiohttp-3.11.7-cp312-cp312-win_amd64.whl", hash = "sha256:018f1b04883a12e77e7fc161934c0f298865d3a484aea536a6a2ca8d909f0ba0"}, - {file = "aiohttp-3.11.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:241a6ca732d2766836d62c58c49ca7a93d08251daef0c1e3c850df1d1ca0cbc4"}, - {file = "aiohttp-3.11.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:aa3705a8d14de39898da0fbad920b2a37b7547c3afd2a18b9b81f0223b7d0f68"}, - {file = "aiohttp-3.11.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9acfc7f652b31853eed3b92095b0acf06fd5597eeea42e939bd23a17137679d5"}, - {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcefcf2915a2dbdbce37e2fc1622129a1918abfe3d06721ce9f6cdac9b6d2eaa"}, - {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c1f6490dd1862af5aae6cfcf2a274bffa9a5b32a8f5acb519a7ecf5a99a88866"}, - {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1ac5462582d6561c1c1708853a9faf612ff4e5ea5e679e99be36143d6eabd8e"}, - {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c1a6309005acc4b2bcc577ba3b9169fea52638709ffacbd071f3503264620da"}, - {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5b973cce96793725ef63eb449adfb74f99c043c718acb76e0d2a447ae369962"}, - {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ce91a24aac80de6be8512fb1c4838a9881aa713f44f4e91dd7bb3b34061b497d"}, - {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:875f7100ce0e74af51d4139495eec4025affa1a605280f23990b6434b81df1bd"}, - {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c171fc35d3174bbf4787381716564042a4cbc008824d8195eede3d9b938e29a8"}, - {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ee9afa1b0d2293c46954f47f33e150798ad68b78925e3710044e0d67a9487791"}, - {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8360c7cc620abb320e1b8d603c39095101391a82b1d0be05fb2225471c9c5c52"}, - {file = "aiohttp-3.11.7-cp313-cp313-win32.whl", hash = "sha256:7a9318da4b4ada9a67c1dd84d1c0834123081e746bee311a16bb449f363d965e"}, - {file = "aiohttp-3.11.7-cp313-cp313-win_amd64.whl", hash = "sha256:fc6da202068e0a268e298d7cd09b6e9f3997736cd9b060e2750963754552a0a9"}, - {file = "aiohttp-3.11.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:17829f37c0d31d89aa6b8b010475a10233774771f9b6dc2cc352ea4f8ce95d9a"}, - {file = "aiohttp-3.11.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d6177077a31b1aecfc3c9070bd2f11419dbb4a70f30f4c65b124714f525c2e48"}, - {file = "aiohttp-3.11.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:badda65ac99555791eed75e234afb94686ed2317670c68bff8a4498acdaee935"}, - {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0de6466b9d742b4ee56fe1b2440706e225eb48c77c63152b1584864a236e7a50"}, - {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04b0cc74d5a882c9dacaeeccc1444f0233212b6f5be8bc90833feef1e1ce14b9"}, - {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c7af3e50e5903d21d7b935aceed901cc2475463bc16ddd5587653548661fdb"}, - {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c63f898f683d1379b9be5afc3dd139e20b30b0b1e0bf69a3fc3681f364cf1629"}, - {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fdadc3f6a32d6eca45f9a900a254757fd7855dfb2d8f8dcf0e88f0fae3ff8eb1"}, - {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d329300fb23e14ed1f8c6d688dfd867d1dcc3b1d7cd49b7f8c5b44e797ce0932"}, - {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5578cf40440eafcb054cf859964bc120ab52ebe0e0562d2b898126d868749629"}, - {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:7b2f8107a3c329789f3c00b2daad0e35f548d0a55cda6291579136622099a46e"}, - {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:43dd89a6194f6ab02a3fe36b09e42e2df19c211fc2050ce37374d96f39604997"}, - {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d2fa6fc7cc865d26ff42480ac9b52b8c9b7da30a10a6442a9cdf429de840e949"}, - {file = "aiohttp-3.11.7-cp39-cp39-win32.whl", hash = "sha256:a7d9a606355655617fee25dd7e54d3af50804d002f1fd3118dd6312d26692d70"}, - {file = "aiohttp-3.11.7-cp39-cp39-win_amd64.whl", hash = "sha256:53c921b58fdc6485d6b2603e0132bb01cd59b8f0620ffc0907f525e0ba071687"}, - {file = "aiohttp-3.11.7.tar.gz", hash = "sha256:01a8aca4af3da85cea5c90141d23f4b0eee3cbecfd33b029a45a80f28c66c668"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbad88a61fa743c5d283ad501b01c153820734118b65aee2bd7dbb735475ce0d"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80886dac673ceaef499de2f393fc80bb4481a129e6cb29e624a12e3296cc088f"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:61b9bae80ed1f338c42f57c16918853dc51775fb5cb61da70d590de14d8b5fb4"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e2e576caec5c6a6b93f41626c9c02fc87cd91538b81a3670b2e04452a63def6"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02c13415b5732fb6ee7ff64583a5e6ed1c57aa68f17d2bda79c04888dfdc2769"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfce37f31f20800a6a6620ce2cdd6737b82e42e06e6e9bd1b36f546feb3c44f"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3bbbfff4c679c64e6e23cb213f57cc2c9165c9a65d63717108a644eb5a7398df"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49c7dbbc1a559ae14fc48387a115b7d4bbc84b4a2c3b9299c31696953c2a5219"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:68386d78743e6570f054fe7949d6cb37ef2b672b4d3405ce91fafa996f7d9b4d"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9ef405356ba989fb57f84cac66f7b0260772836191ccefbb987f414bcd2979d9"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5d6958671b296febe7f5f859bea581a21c1d05430d1bbdcf2b393599b1cdce77"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:99b7920e7165be5a9e9a3a7f1b680f06f68ff0d0328ff4079e5163990d046767"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0dc49f42422163efb7e6f1df2636fe3db72713f6cd94688e339dbe33fe06d61d"}, + {file = "aiohttp-3.11.10-cp310-cp310-win32.whl", hash = "sha256:40d1c7a7f750b5648642586ba7206999650208dbe5afbcc5284bcec6579c9b91"}, + {file = "aiohttp-3.11.10-cp310-cp310-win_amd64.whl", hash = "sha256:68ff6f48b51bd78ea92b31079817aff539f6c8fc80b6b8d6ca347d7c02384e33"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:77c4aa15a89847b9891abf97f3d4048f3c2d667e00f8a623c89ad2dccee6771b"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:909af95a72cedbefe5596f0bdf3055740f96c1a4baa0dd11fd74ca4de0b4e3f1"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:386fbe79863eb564e9f3615b959e28b222259da0c48fd1be5929ac838bc65683"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3de34936eb1a647aa919655ff8d38b618e9f6b7f250cc19a57a4bf7fd2062b6d"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c9527819b29cd2b9f52033e7fb9ff08073df49b4799c89cb5754624ecd98299"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a96e3e03300b41f261bbfd40dfdbf1c301e87eab7cd61c054b1f2e7c89b9e8"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98f5635f7b74bcd4f6f72fcd85bea2154b323a9f05226a80bc7398d0c90763b0"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:03b6002e20938fc6ee0918c81d9e776bebccc84690e2b03ed132331cca065ee5"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6362cc6c23c08d18ddbf0e8c4d5159b5df74fea1a5278ff4f2c79aed3f4e9f46"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3691ed7726fef54e928fe26344d930c0c8575bc968c3e239c2e1a04bd8cf7838"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31d5093d3acd02b31c649d3a69bb072d539d4c7659b87caa4f6d2bcf57c2fa2b"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8b3cf2dc0f0690a33f2d2b2cb15db87a65f1c609f53c37e226f84edb08d10f52"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fbbaea811a2bba171197b08eea288b9402faa2bab2ba0858eecdd0a4105753a3"}, + {file = "aiohttp-3.11.10-cp311-cp311-win32.whl", hash = "sha256:4b2c7ac59c5698a7a8207ba72d9e9c15b0fc484a560be0788b31312c2c5504e4"}, + {file = "aiohttp-3.11.10-cp311-cp311-win_amd64.whl", hash = "sha256:974d3a2cce5fcfa32f06b13ccc8f20c6ad9c51802bb7f829eae8a1845c4019ec"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b78f053a7ecfc35f0451d961dacdc671f4bcbc2f58241a7c820e9d82559844cf"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab7485222db0959a87fbe8125e233b5a6f01f4400785b36e8a7878170d8c3138"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cf14627232dfa8730453752e9cdc210966490992234d77ff90bc8dc0dce361d5"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:076bc454a7e6fd646bc82ea7f98296be0b1219b5e3ef8a488afbdd8e81fbac50"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:482cafb7dc886bebeb6c9ba7925e03591a62ab34298ee70d3dd47ba966370d2c"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf3d1a519a324af764a46da4115bdbd566b3c73fb793ffb97f9111dbc684fc4d"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24213ba85a419103e641e55c27dc7ff03536c4873470c2478cce3311ba1eee7b"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b99acd4730ad1b196bfb03ee0803e4adac371ae8efa7e1cbc820200fc5ded109"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:14cdb5a9570be5a04eec2ace174a48ae85833c2aadc86de68f55541f66ce42ab"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7e97d622cb083e86f18317282084bc9fbf261801b0192c34fe4b1febd9f7ae69"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:012f176945af138abc10c4a48743327a92b4ca9adc7a0e078077cdb5dbab7be0"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44224d815853962f48fe124748227773acd9686eba6dc102578defd6fc99e8d9"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c87bf31b7fdab94ae3adbe4a48e711bfc5f89d21cf4c197e75561def39e223bc"}, + {file = "aiohttp-3.11.10-cp312-cp312-win32.whl", hash = "sha256:06a8e2ee1cbac16fe61e51e0b0c269400e781b13bcfc33f5425912391a542985"}, + {file = "aiohttp-3.11.10-cp312-cp312-win_amd64.whl", hash = "sha256:be2b516f56ea883a3e14dda17059716593526e10fb6303189aaf5503937db408"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8cc5203b817b748adccb07f36390feb730b1bc5f56683445bfe924fc270b8816"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ef359ebc6949e3a34c65ce20230fae70920714367c63afd80ea0c2702902ccf"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9bca390cb247dbfaec3c664326e034ef23882c3f3bfa5fbf0b56cad0320aaca5"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:811f23b3351ca532af598405db1093f018edf81368e689d1b508c57dcc6b6a32"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddf5f7d877615f6a1e75971bfa5ac88609af3b74796ff3e06879e8422729fd01"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ab29b8a0beb6f8eaf1e5049252cfe74adbaafd39ba91e10f18caeb0e99ffb34"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c49a76c1038c2dd116fa443eba26bbb8e6c37e924e2513574856de3b6516be99"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f3dc0e330575f5b134918976a645e79adf333c0a1439dcf6899a80776c9ab39"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:efb15a17a12497685304b2d976cb4939e55137df7b09fa53f1b6a023f01fcb4e"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:db1d0b28fcb7f1d35600150c3e4b490775251dea70f894bf15c678fdd84eda6a"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:15fccaf62a4889527539ecb86834084ecf6e9ea70588efde86e8bc775e0e7542"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:593c114a2221444f30749cc5e5f4012488f56bd14de2af44fe23e1e9894a9c60"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7852bbcb4d0d2f0c4d583f40c3bc750ee033265d80598d0f9cb6f372baa6b836"}, + {file = "aiohttp-3.11.10-cp313-cp313-win32.whl", hash = "sha256:65e55ca7debae8faaffee0ebb4b47a51b4075f01e9b641c31e554fd376595c6c"}, + {file = "aiohttp-3.11.10-cp313-cp313-win_amd64.whl", hash = "sha256:beb39a6d60a709ae3fb3516a1581777e7e8b76933bb88c8f4420d875bb0267c6"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0580f2e12de2138f34debcd5d88894786453a76e98febaf3e8fe5db62d01c9bf"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a55d2ad345684e7c3dd2c20d2f9572e9e1d5446d57200ff630e6ede7612e307f"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:04814571cb72d65a6899db6099e377ed00710bf2e3eafd2985166f2918beaf59"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e44a9a3c053b90c6f09b1bb4edd880959f5328cf63052503f892c41ea786d99f"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:502a1464ccbc800b4b1995b302efaf426e8763fadf185e933c2931df7db9a199"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:613e5169f8ae77b1933e42e418a95931fb4867b2991fc311430b15901ed67079"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cca22a61b7fe45da8fc73c3443150c3608750bbe27641fc7558ec5117b27fdf"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:86a5dfcc39309470bd7b68c591d84056d195428d5d2e0b5ccadfbaf25b026ebc"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:77ae58586930ee6b2b6f696c82cf8e78c8016ec4795c53e36718365f6959dc82"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:78153314f26d5abef3239b4a9af20c229c6f3ecb97d4c1c01b22c4f87669820c"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:98283b94cc0e11c73acaf1c9698dea80c830ca476492c0fe2622bd931f34b487"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:53bf2097e05c2accc166c142a2090e4c6fd86581bde3fd9b2d3f9e93dda66ac1"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5532f0441fc09c119e1dca18fbc0687e64fbeb45aa4d6a87211ceaee50a74c4"}, + {file = "aiohttp-3.11.10-cp39-cp39-win32.whl", hash = "sha256:47ad15a65fb41c570cd0ad9a9ff8012489e68176e7207ec7b82a0940dddfd8be"}, + {file = "aiohttp-3.11.10-cp39-cp39-win_amd64.whl", hash = "sha256:c6b9e6d7e41656d78e37ce754813fa44b455c3d0d0dced2a047def7dc5570b74"}, + {file = "aiohttp-3.11.10.tar.gz", hash = "sha256:b1fc6b45010a8d0ff9e88f9f2418c6fd408c99c211257334aff41597ebece42e"}, ] [package.dependencies] @@ -167,24 +167,24 @@ files = [ [[package]] name = "anyio" -version = "4.6.2.post1" +version = "4.7.0" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" files = [ - {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, - {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, + {file = "anyio-4.7.0-py3-none-any.whl", hash = "sha256:ea60c3723ab42ba6fff7e8ccb0488c898ec538ff4df1f1d5e642c3601d07e352"}, + {file = "anyio-4.7.0.tar.gz", hash = "sha256:2f834749c602966b7d456a7567cafcb309f96482b5081d14ac93ccd457f9dd48"}, ] [package.dependencies] exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} idna = ">=2.8" sniffio = ">=1.1" -typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} +typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""} [package.extras] -doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx_rtd_theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21)"] trio = ["trio (>=0.26.1)"] [[package]] @@ -217,6 +217,17 @@ docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphi tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] +[[package]] +name = "cachetools" +version = "5.5.0" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, + {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, +] + [[package]] name = "certifi" version = "2024.8.30" @@ -441,6 +452,17 @@ files = [ graph = ["objgraph (>=1.7.2)"] profile = ["gprof2dot (>=2022.7.29)"] +[[package]] +name = "durationpy" +version = "0.9" +description = "Module for converting between datetime.timedelta and Go's Duration strings." +optional = false +python-versions = "*" +files = [ + {file = "durationpy-0.9-py3-none-any.whl", hash = "sha256:e65359a7af5cedad07fb77a2dd3f390f8eb0b74cb845589fa6c057086834dd38"}, + {file = "durationpy-0.9.tar.gz", hash = "sha256:fd3feb0a69a0057d582ef643c355c40d2fa1c942191f914d12203b1a01ac722a"}, +] + [[package]] name = "exceptiongroup" version = "1.2.2" @@ -457,13 +479,13 @@ test = ["pytest (>=6)"] [[package]] name = "fastapi" -version = "0.115.5" +version = "0.115.6" description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" optional = false python-versions = ">=3.8" files = [ - {file = "fastapi-0.115.5-py3-none-any.whl", hash = "sha256:596b95adbe1474da47049e802f9a65ab2ffa9c2b07e7efee70eb8a66c9f2f796"}, - {file = "fastapi-0.115.5.tar.gz", hash = "sha256:0e7a4d0dc0d01c68df21887cce0945e72d3c48b9f4f79dfe7a7d53aa08fbb289"}, + {file = "fastapi-0.115.6-py3-none-any.whl", hash = "sha256:e9240b29e36fa8f4bb7290316988e90c381e5092e0cbe84e7818cc3713bcf305"}, + {file = "fastapi-0.115.6.tar.gz", hash = "sha256:9ec46f7addc14ea472958a96aae5b5de65f39721a46aaf5705c480d9a8b76654"}, ] [package.dependencies] @@ -634,6 +656,29 @@ test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask-expr", "dask[dataframe, test-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "cloudpickle", "dask", "distributed", "dropbox", "dropboxdrivefs", "fastparquet", "fusepy", "gcsfs", "jinja2", "kerchunk", "libarchive-c", "lz4", "notebook", "numpy", "ocifs", "pandas", "panel", "paramiko", "pyarrow", "pyarrow (>=1)", "pyftpdlib", "pygit2", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "python-snappy", "requests", "smbprotocol", "tqdm", "urllib3", "zarr", "zstandard"] tqdm = ["tqdm"] +[[package]] +name = "google-auth" +version = "2.36.0" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google_auth-2.36.0-py2.py3-none-any.whl", hash = "sha256:51a15d47028b66fd36e5c64a82d2d57480075bccc7da37cde257fc94177a61fb"}, + {file = "google_auth-2.36.0.tar.gz", hash = "sha256:545e9618f2df0bcbb7dcbc45a546485b1212624716975a1ea5ae8149ce769ab1"}, +] + +[package.dependencies] +cachetools = ">=2.0.0,<6.0" +pyasn1-modules = ">=0.2.1" +rsa = ">=3.1.4,<5" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0.dev0)", "requests (>=2.20.0,<3.0.0.dev0)"] +enterprise-cert = ["cryptography", "pyopenssl"] +pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] +reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0.dev0)"] + [[package]] name = "gunicorn" version = "23.0.0" @@ -668,13 +713,13 @@ files = [ [[package]] name = "huggingface-hub" -version = "0.26.2" +version = "0.26.5" description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" optional = false python-versions = ">=3.8.0" files = [ - {file = "huggingface_hub-0.26.2-py3-none-any.whl", hash = "sha256:98c2a5a8e786c7b2cb6fdeb2740893cba4d53e312572ed3d8afafda65b128c46"}, - {file = "huggingface_hub-0.26.2.tar.gz", hash = "sha256:b100d853465d965733964d123939ba287da60a547087783ddff8a323f340332b"}, + {file = "huggingface_hub-0.26.5-py3-none-any.whl", hash = "sha256:fb7386090bbe892072e64b85f7c4479fd2d65eea5f2543327c970d5169e83924"}, + {file = "huggingface_hub-0.26.5.tar.gz", hash = "sha256:1008bd18f60bfb65e8dbc0a97249beeeaa8c99d3c2fa649354df9fa5a13ed83b"}, ] [package.dependencies] @@ -753,6 +798,56 @@ files = [ {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, ] +[[package]] +name = "kubeflow-training" +version = "1.8.1" +description = "Training Operator Python SDK" +optional = false +python-versions = "*" +files = [ + {file = "kubeflow-training-1.8.1.tar.gz", hash = "sha256:137cdeb5843f90e637fd53df988cbf6894501900c8f372e7de75a6a1302fe8f5"}, + {file = "kubeflow_training-1.8.1-py3-none-any.whl", hash = "sha256:ef36df107b850c6e6587dc1b9b7a92aaa7b6cf28e9d73b5f1eb87dd84e80222d"}, +] + +[package.dependencies] +certifi = ">=14.05.14" +kubernetes = ">=27.2.0" +retrying = ">=1.3.3" +setuptools = ">=21.0.0" +six = ">=1.10" +urllib3 = ">=1.15.1" + +[package.extras] +huggingface = ["peft (==0.3.0)", "transformers (==4.38.0)"] +test = ["black (==24.3.0)", "flake8 (==4.0.1)", "mypy", "pytest", "pytest-tornasync"] + +[[package]] +name = "kubernetes" +version = "31.0.0" +description = "Kubernetes python client" +optional = false +python-versions = ">=3.6" +files = [ + {file = "kubernetes-31.0.0-py2.py3-none-any.whl", hash = "sha256:bf141e2d380c8520eada8b351f4e319ffee9636328c137aa432bc486ca1200e1"}, + {file = "kubernetes-31.0.0.tar.gz", hash = "sha256:28945de906c8c259c1ebe62703b56a03b714049372196f854105afe4e6d014c0"}, +] + +[package.dependencies] +certifi = ">=14.05.14" +durationpy = ">=0.7" +google-auth = ">=1.0.1" +oauthlib = ">=3.2.2" +python-dateutil = ">=2.5.3" +pyyaml = ">=5.4.1" +requests = "*" +requests-oauthlib = "*" +six = ">=1.9.0" +urllib3 = ">=1.24.2" +websocket-client = ">=0.32.0,<0.40.0 || >0.40.0,<0.41.dev0 || >=0.43.dev0" + +[package.extras] +adal = ["adal (>=1.0.2)"] + [[package]] name = "markupsafe" version = "3.0.2" @@ -1032,6 +1127,22 @@ files = [ {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, ] +[[package]] +name = "oauthlib" +version = "3.2.2" +description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +optional = false +python-versions = ">=3.6" +files = [ + {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, + {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, +] + +[package.extras] +rsa = ["cryptography (>=3.0.0)"] +signals = ["blinker (>=1.4.0)"] +signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] + [[package]] name = "packaging" version = "24.2" @@ -1146,109 +1257,93 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "propcache" -version = "0.2.0" +version = "0.2.1" description = "Accelerated property cache" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c5869b8fd70b81835a6f187c5fdbe67917a04d7e52b6e7cc4e5fe39d55c39d58"}, - {file = "propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:952e0d9d07609d9c5be361f33b0d6d650cd2bae393aabb11d9b719364521984b"}, - {file = "propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:33ac8f098df0585c0b53009f039dfd913b38c1d2edafed0cedcc0c32a05aa110"}, - {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97e48e8875e6c13909c800fa344cd54cc4b2b0db1d5f911f840458a500fde2c2"}, - {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:388f3217649d6d59292b722d940d4d2e1e6a7003259eb835724092a1cca0203a"}, - {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f571aea50ba5623c308aa146eb650eebf7dbe0fd8c5d946e28343cb3b5aad577"}, - {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3dfafb44f7bb35c0c06eda6b2ab4bfd58f02729e7c4045e179f9a861b07c9850"}, - {file = "propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3ebe9a75be7ab0b7da2464a77bb27febcb4fab46a34f9288f39d74833db7f61"}, - {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d2f0d0f976985f85dfb5f3d685697ef769faa6b71993b46b295cdbbd6be8cc37"}, - {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a3dc1a4b165283bd865e8f8cb5f0c64c05001e0718ed06250d8cac9bec115b48"}, - {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9e0f07b42d2a50c7dd2d8675d50f7343d998c64008f1da5fef888396b7f84630"}, - {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e63e3e1e0271f374ed489ff5ee73d4b6e7c60710e1f76af5f0e1a6117cd26394"}, - {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:56bb5c98f058a41bb58eead194b4db8c05b088c93d94d5161728515bd52b052b"}, - {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7665f04d0c7f26ff8bb534e1c65068409bf4687aa2534faf7104d7182debb336"}, - {file = "propcache-0.2.0-cp310-cp310-win32.whl", hash = "sha256:7cf18abf9764746b9c8704774d8b06714bcb0a63641518a3a89c7f85cc02c2ad"}, - {file = "propcache-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:cfac69017ef97db2438efb854edf24f5a29fd09a536ff3a992b75990720cdc99"}, - {file = "propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:63f13bf09cc3336eb04a837490b8f332e0db41da66995c9fd1ba04552e516354"}, - {file = "propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608cce1da6f2672a56b24a015b42db4ac612ee709f3d29f27a00c943d9e851de"}, - {file = "propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:466c219deee4536fbc83c08d09115249db301550625c7fef1c5563a584c9bc87"}, - {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc2db02409338bf36590aa985a461b2c96fce91f8e7e0f14c50c5fcc4f229016"}, - {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a6ed8db0a556343d566a5c124ee483ae113acc9a557a807d439bcecc44e7dfbb"}, - {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91997d9cb4a325b60d4e3f20967f8eb08dfcb32b22554d5ef78e6fd1dda743a2"}, - {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c7dde9e533c0a49d802b4f3f218fa9ad0a1ce21f2c2eb80d5216565202acab4"}, - {file = "propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffcad6c564fe6b9b8916c1aefbb37a362deebf9394bd2974e9d84232e3e08504"}, - {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97a58a28bcf63284e8b4d7b460cbee1edaab24634e82059c7b8c09e65284f178"}, - {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:945db8ee295d3af9dbdbb698cce9bbc5c59b5c3fe328bbc4387f59a8a35f998d"}, - {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:39e104da444a34830751715f45ef9fc537475ba21b7f1f5b0f4d71a3b60d7fe2"}, - {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c5ecca8f9bab618340c8e848d340baf68bcd8ad90a8ecd7a4524a81c1764b3db"}, - {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:c436130cc779806bdf5d5fae0d848713105472b8566b75ff70048c47d3961c5b"}, - {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:191db28dc6dcd29d1a3e063c3be0b40688ed76434622c53a284e5427565bbd9b"}, - {file = "propcache-0.2.0-cp311-cp311-win32.whl", hash = "sha256:5f2564ec89058ee7c7989a7b719115bdfe2a2fb8e7a4543b8d1c0cc4cf6478c1"}, - {file = "propcache-0.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6e2e54267980349b723cff366d1e29b138b9a60fa376664a157a342689553f71"}, - {file = "propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:2ee7606193fb267be4b2e3b32714f2d58cad27217638db98a60f9efb5efeccc2"}, - {file = "propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:91ee8fc02ca52e24bcb77b234f22afc03288e1dafbb1f88fe24db308910c4ac7"}, - {file = "propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2e900bad2a8456d00a113cad8c13343f3b1f327534e3589acc2219729237a2e8"}, - {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f52a68c21363c45297aca15561812d542f8fc683c85201df0bebe209e349f793"}, - {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e41d67757ff4fbc8ef2af99b338bfb955010444b92929e9e55a6d4dcc3c4f09"}, - {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a64e32f8bd94c105cc27f42d3b658902b5bcc947ece3c8fe7bc1b05982f60e89"}, - {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55346705687dbd7ef0d77883ab4f6fabc48232f587925bdaf95219bae072491e"}, - {file = "propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00181262b17e517df2cd85656fcd6b4e70946fe62cd625b9d74ac9977b64d8d9"}, - {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6994984550eaf25dd7fc7bd1b700ff45c894149341725bb4edc67f0ffa94efa4"}, - {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:56295eb1e5f3aecd516d91b00cfd8bf3a13991de5a479df9e27dd569ea23959c"}, - {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:439e76255daa0f8151d3cb325f6dd4a3e93043e6403e6491813bcaaaa8733887"}, - {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f6475a1b2ecb310c98c28d271a30df74f9dd436ee46d09236a6b750a7599ce57"}, - {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3444cdba6628accf384e349014084b1cacd866fbb88433cd9d279d90a54e0b23"}, - {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4a9d9b4d0a9b38d1c391bb4ad24aa65f306c6f01b512e10a8a34a2dc5675d348"}, - {file = "propcache-0.2.0-cp312-cp312-win32.whl", hash = "sha256:69d3a98eebae99a420d4b28756c8ce6ea5a29291baf2dc9ff9414b42676f61d5"}, - {file = "propcache-0.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:ad9c9b99b05f163109466638bd30ada1722abb01bbb85c739c50b6dc11f92dc3"}, - {file = "propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ecddc221a077a8132cf7c747d5352a15ed763b674c0448d811f408bf803d9ad7"}, - {file = "propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0e53cb83fdd61cbd67202735e6a6687a7b491c8742dfc39c9e01e80354956763"}, - {file = "propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92fe151145a990c22cbccf9ae15cae8ae9eddabfc949a219c9f667877e40853d"}, - {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6a21ef516d36909931a2967621eecb256018aeb11fc48656e3257e73e2e247a"}, - {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f88a4095e913f98988f5b338c1d4d5d07dbb0b6bad19892fd447484e483ba6b"}, - {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a5b3bb545ead161be780ee85a2b54fdf7092815995661947812dde94a40f6fb"}, - {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67aeb72e0f482709991aa91345a831d0b707d16b0257e8ef88a2ad246a7280bf"}, - {file = "propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c997f8c44ec9b9b0bcbf2d422cc00a1d9b9c681f56efa6ca149a941e5560da2"}, - {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2a66df3d4992bc1d725b9aa803e8c5a66c010c65c741ad901e260ece77f58d2f"}, - {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3ebbcf2a07621f29638799828b8d8668c421bfb94c6cb04269130d8de4fb7136"}, - {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1235c01ddaa80da8235741e80815ce381c5267f96cc49b1477fdcf8c047ef325"}, - {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3947483a381259c06921612550867b37d22e1df6d6d7e8361264b6d037595f44"}, - {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d5bed7f9805cc29c780f3aee05de3262ee7ce1f47083cfe9f77471e9d6777e83"}, - {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4a91d44379f45f5e540971d41e4626dacd7f01004826a18cb048e7da7e96544"}, - {file = "propcache-0.2.0-cp313-cp313-win32.whl", hash = "sha256:f902804113e032e2cdf8c71015651c97af6418363bea8d78dc0911d56c335032"}, - {file = "propcache-0.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:8f188cfcc64fb1266f4684206c9de0e80f54622c3f22a910cbd200478aeae61e"}, - {file = "propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:53d1bd3f979ed529f0805dd35ddaca330f80a9a6d90bc0121d2ff398f8ed8861"}, - {file = "propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:83928404adf8fb3d26793665633ea79b7361efa0287dfbd372a7e74311d51ee6"}, - {file = "propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:77a86c261679ea5f3896ec060be9dc8e365788248cc1e049632a1be682442063"}, - {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:218db2a3c297a3768c11a34812e63b3ac1c3234c3a086def9c0fee50d35add1f"}, - {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7735e82e3498c27bcb2d17cb65d62c14f1100b71723b68362872bca7d0913d90"}, - {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:20a617c776f520c3875cf4511e0d1db847a076d720714ae35ffe0df3e440be68"}, - {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67b69535c870670c9f9b14a75d28baa32221d06f6b6fa6f77a0a13c5a7b0a5b9"}, - {file = "propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4569158070180c3855e9c0791c56be3ceeb192defa2cdf6a3f39e54319e56b89"}, - {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:db47514ffdbd91ccdc7e6f8407aac4ee94cc871b15b577c1c324236b013ddd04"}, - {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:2a60ad3e2553a74168d275a0ef35e8c0a965448ffbc3b300ab3a5bb9956c2162"}, - {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:662dd62358bdeaca0aee5761de8727cfd6861432e3bb828dc2a693aa0471a563"}, - {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:25a1f88b471b3bc911d18b935ecb7115dff3a192b6fef46f0bfaf71ff4f12418"}, - {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:f60f0ac7005b9f5a6091009b09a419ace1610e163fa5deaba5ce3484341840e7"}, - {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:74acd6e291f885678631b7ebc85d2d4aec458dd849b8c841b57ef04047833bed"}, - {file = "propcache-0.2.0-cp38-cp38-win32.whl", hash = "sha256:d9b6ddac6408194e934002a69bcaadbc88c10b5f38fb9307779d1c629181815d"}, - {file = "propcache-0.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:676135dcf3262c9c5081cc8f19ad55c8a64e3f7282a21266d05544450bffc3a5"}, - {file = "propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:25c8d773a62ce0451b020c7b29a35cfbc05de8b291163a7a0f3b7904f27253e6"}, - {file = "propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:375a12d7556d462dc64d70475a9ee5982465fbb3d2b364f16b86ba9135793638"}, - {file = "propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1ec43d76b9677637a89d6ab86e1fef70d739217fefa208c65352ecf0282be957"}, - {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45eec587dafd4b2d41ac189c2156461ebd0c1082d2fe7013571598abb8505d1"}, - {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc092ba439d91df90aea38168e11f75c655880c12782facf5cf9c00f3d42b562"}, - {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa1076244f54bb76e65e22cb6910365779d5c3d71d1f18b275f1dfc7b0d71b4d"}, - {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:682a7c79a2fbf40f5dbb1eb6bfe2cd865376deeac65acf9beb607505dced9e12"}, - {file = "propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e40876731f99b6f3c897b66b803c9e1c07a989b366c6b5b475fafd1f7ba3fb8"}, - {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:363ea8cd3c5cb6679f1c2f5f1f9669587361c062e4899fce56758efa928728f8"}, - {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:140fbf08ab3588b3468932974a9331aff43c0ab8a2ec2c608b6d7d1756dbb6cb"}, - {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e70fac33e8b4ac63dfc4c956fd7d85a0b1139adcfc0d964ce288b7c527537fea"}, - {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b33d7a286c0dc1a15f5fc864cc48ae92a846df287ceac2dd499926c3801054a6"}, - {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:f6d5749fdd33d90e34c2efb174c7e236829147a2713334d708746e94c4bde40d"}, - {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22aa8f2272d81d9317ff5756bb108021a056805ce63dd3630e27d042c8092798"}, - {file = "propcache-0.2.0-cp39-cp39-win32.whl", hash = "sha256:73e4b40ea0eda421b115248d7e79b59214411109a5bc47d0d48e4c73e3b8fcf9"}, - {file = "propcache-0.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:9517d5e9e0731957468c29dbfd0f976736a0e55afaea843726e887f36fe017df"}, - {file = "propcache-0.2.0-py3-none-any.whl", hash = "sha256:2ccc28197af5313706511fab3a8b66dcd6da067a1331372c82ea1cb74285e036"}, - {file = "propcache-0.2.0.tar.gz", hash = "sha256:df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70"}, + {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6b3f39a85d671436ee3d12c017f8fdea38509e4f25b28eb25877293c98c243f6"}, + {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d51fbe4285d5db5d92a929e3e21536ea3dd43732c5b177c7ef03f918dff9f2"}, + {file = "propcache-0.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6445804cf4ec763dc70de65a3b0d9954e868609e83850a47ca4f0cb64bd79fea"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9479aa06a793c5aeba49ce5c5692ffb51fcd9a7016e017d555d5e2b0045d212"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9631c5e8b5b3a0fda99cb0d29c18133bca1e18aea9effe55adb3da1adef80d3"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3156628250f46a0895f1f36e1d4fbe062a1af8718ec3ebeb746f1d23f0c5dc4d"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b6fb63ae352e13748289f04f37868099e69dba4c2b3e271c46061e82c745634"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:887d9b0a65404929641a9fabb6452b07fe4572b269d901d622d8a34a4e9043b2"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a96dc1fa45bd8c407a0af03b2d5218392729e1822b0c32e62c5bf7eeb5fb3958"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a7e65eb5c003a303b94aa2c3852ef130230ec79e349632d030e9571b87c4698c"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:999779addc413181912e984b942fbcc951be1f5b3663cd80b2687758f434c583"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:19a0f89a7bb9d8048d9c4370c9c543c396e894c76be5525f5e1ad287f1750ddf"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1ac2f5fe02fa75f56e1ad473f1175e11f475606ec9bd0be2e78e4734ad575034"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:574faa3b79e8ebac7cb1d7930f51184ba1ccf69adfdec53a12f319a06030a68b"}, + {file = "propcache-0.2.1-cp310-cp310-win32.whl", hash = "sha256:03ff9d3f665769b2a85e6157ac8b439644f2d7fd17615a82fa55739bc97863f4"}, + {file = "propcache-0.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:2d3af2e79991102678f53e0dbf4c35de99b6b8b58f29a27ca0325816364caaba"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ffc3cca89bb438fb9c95c13fc874012f7b9466b89328c3c8b1aa93cdcfadd16"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f174bbd484294ed9fdf09437f889f95807e5f229d5d93588d34e92106fbf6717"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:70693319e0b8fd35dd863e3e29513875eb15c51945bf32519ef52927ca883bc3"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b480c6a4e1138e1aa137c0079b9b6305ec6dcc1098a8ca5196283e8a49df95a9"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d27b84d5880f6d8aa9ae3edb253c59d9f6642ffbb2c889b78b60361eed449787"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:857112b22acd417c40fa4595db2fe28ab900c8c5fe4670c7989b1c0230955465"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf6c4150f8c0e32d241436526f3c3f9cbd34429492abddbada2ffcff506c51af"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66d4cfda1d8ed687daa4bc0274fcfd5267873db9a5bc0418c2da19273040eeb7"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c2f992c07c0fca81655066705beae35fc95a2fa7366467366db627d9f2ee097f"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:4a571d97dbe66ef38e472703067021b1467025ec85707d57e78711c085984e54"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb6178c241278d5fe853b3de743087be7f5f4c6f7d6d22a3b524d323eecec505"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:ad1af54a62ffe39cf34db1aa6ed1a1873bd548f6401db39d8e7cd060b9211f82"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e7048abd75fe40712005bcfc06bb44b9dfcd8e101dda2ecf2f5aa46115ad07ca"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:160291c60081f23ee43d44b08a7e5fb76681221a8e10b3139618c5a9a291b84e"}, + {file = "propcache-0.2.1-cp311-cp311-win32.whl", hash = "sha256:819ce3b883b7576ca28da3861c7e1a88afd08cc8c96908e08a3f4dd64a228034"}, + {file = "propcache-0.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:edc9fc7051e3350643ad929df55c451899bb9ae6d24998a949d2e4c87fb596d3"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:081a430aa8d5e8876c6909b67bd2d937bfd531b0382d3fdedb82612c618bc41a"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2ccec9ac47cf4e04897619c0e0c1a48c54a71bdf045117d3a26f80d38ab1fb0"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:14d86fe14b7e04fa306e0c43cdbeebe6b2c2156a0c9ce56b815faacc193e320d"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:049324ee97bb67285b49632132db351b41e77833678432be52bdd0289c0e05e4"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cd9a1d071158de1cc1c71a26014dcdfa7dd3d5f4f88c298c7f90ad6f27bb46d"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98110aa363f1bb4c073e8dcfaefd3a5cea0f0834c2aab23dda657e4dab2f53b5"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:647894f5ae99c4cf6bb82a1bb3a796f6e06af3caa3d32e26d2350d0e3e3faf24"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfd3223c15bebe26518d58ccf9a39b93948d3dcb3e57a20480dfdd315356baff"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d71264a80f3fcf512eb4f18f59423fe82d6e346ee97b90625f283df56aee103f"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:e73091191e4280403bde6c9a52a6999d69cdfde498f1fdf629105247599b57ec"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3935bfa5fede35fb202c4b569bb9c042f337ca4ff7bd540a0aa5e37131659348"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f508b0491767bb1f2b87fdfacaba5f7eddc2f867740ec69ece6d1946d29029a6"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1672137af7c46662a1c2be1e8dc78cb6d224319aaa40271c9257d886be4363a6"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b74c261802d3d2b85c9df2dfb2fa81b6f90deeef63c2db9f0e029a3cac50b518"}, + {file = "propcache-0.2.1-cp312-cp312-win32.whl", hash = "sha256:d09c333d36c1409d56a9d29b3a1b800a42c76a57a5a8907eacdbce3f18768246"}, + {file = "propcache-0.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:c214999039d4f2a5b2073ac506bba279945233da8c786e490d411dfc30f855c1"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aca405706e0b0a44cc6bfd41fbe89919a6a56999157f6de7e182a990c36e37bc"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:12d1083f001ace206fe34b6bdc2cb94be66d57a850866f0b908972f90996b3e9"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d93f3307ad32a27bda2e88ec81134b823c240aa3abb55821a8da553eed8d9439"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba278acf14471d36316159c94a802933d10b6a1e117b8554fe0d0d9b75c9d536"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4e6281aedfca15301c41f74d7005e6e3f4ca143584ba696ac69df4f02f40d629"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b750a8e5a1262434fb1517ddf64b5de58327f1adc3524a5e44c2ca43305eb0b"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf72af5e0fb40e9babf594308911436c8efde3cb5e75b6f206c34ad18be5c052"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2d0a12018b04f4cb820781ec0dffb5f7c7c1d2a5cd22bff7fb055a2cb19ebce"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e800776a79a5aabdb17dcc2346a7d66d0777e942e4cd251defeb084762ecd17d"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:4160d9283bd382fa6c0c2b5e017acc95bc183570cd70968b9202ad6d8fc48dce"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:30b43e74f1359353341a7adb783c8f1b1c676367b011709f466f42fda2045e95"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:58791550b27d5488b1bb52bc96328456095d96206a250d28d874fafe11b3dfaf"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:0f022d381747f0dfe27e99d928e31bc51a18b65bb9e481ae0af1380a6725dd1f"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:297878dc9d0a334358f9b608b56d02e72899f3b8499fc6044133f0d319e2ec30"}, + {file = "propcache-0.2.1-cp313-cp313-win32.whl", hash = "sha256:ddfab44e4489bd79bda09d84c430677fc7f0a4939a73d2bba3073036f487a0a6"}, + {file = "propcache-0.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:556fc6c10989f19a179e4321e5d678db8eb2924131e64652a51fe83e4c3db0e1"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6a9a8c34fb7bb609419a211e59da8887eeca40d300b5ea8e56af98f6fbbb1541"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ae1aa1cd222c6d205853b3013c69cd04515f9d6ab6de4b0603e2e1c33221303e"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:accb6150ce61c9c4b7738d45550806aa2b71c7668c6942f17b0ac182b6142fd4"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eee736daafa7af6d0a2dc15cc75e05c64f37fc37bafef2e00d77c14171c2097"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7a31fc1e1bd362874863fdeed71aed92d348f5336fd84f2197ba40c59f061bd"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba4cfa1052819d16699e1d55d18c92b6e094d4517c41dd231a8b9f87b6fa681"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f089118d584e859c62b3da0892b88a83d611c2033ac410e929cb6754eec0ed16"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:781e65134efaf88feb447e8c97a51772aa75e48b794352f94cb7ea717dedda0d"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:31f5af773530fd3c658b32b6bdc2d0838543de70eb9a2156c03e410f7b0d3aae"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:a7a078f5d37bee6690959c813977da5291b24286e7b962e62a94cec31aa5188b"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:cea7daf9fc7ae6687cf1e2c049752f19f146fdc37c2cc376e7d0032cf4f25347"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:8b3489ff1ed1e8315674d0775dc7d2195fb13ca17b3808721b54dbe9fd020faf"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:9403db39be1393618dd80c746cb22ccda168efce239c73af13c3763ef56ffc04"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5d97151bc92d2b2578ff7ce779cdb9174337390a535953cbb9452fb65164c587"}, + {file = "propcache-0.2.1-cp39-cp39-win32.whl", hash = "sha256:9caac6b54914bdf41bcc91e7eb9147d331d29235a7c967c150ef5df6464fd1bb"}, + {file = "propcache-0.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:92fc4500fcb33899b05ba73276dfb684a20d31caa567b7cb5252d48f896a91b1"}, + {file = "propcache-0.2.1-py3-none-any.whl", hash = "sha256:52277518d6aae65536e9cea52d4e7fd2f7a66f4aa2d30ed3f2fcea620ace3c54"}, + {file = "propcache-0.2.1.tar.gz", hash = "sha256:3f77ce728b19cb537714499928fe800c3dda29e8d9428778fc7c186da4c09a64"}, ] [[package]] @@ -1283,67 +1378,92 @@ test = ["pytest", "pytest-xdist", "setuptools"] [[package]] name = "pyarrow" -version = "18.0.0" +version = "18.1.0" description = "Python library for Apache Arrow" optional = false python-versions = ">=3.9" files = [ - {file = "pyarrow-18.0.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:2333f93260674e185cfbf208d2da3007132572e56871f451ba1a556b45dae6e2"}, - {file = "pyarrow-18.0.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:4c381857754da44326f3a49b8b199f7f87a51c2faacd5114352fc78de30d3aba"}, - {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:603cd8ad4976568954598ef0a6d4ed3dfb78aff3d57fa8d6271f470f0ce7d34f"}, - {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58a62549a3e0bc9e03df32f350e10e1efb94ec6cf63e3920c3385b26663948ce"}, - {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bc97316840a349485fbb137eb8d0f4d7057e1b2c1272b1a20eebbbe1848f5122"}, - {file = "pyarrow-18.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:2e549a748fa8b8715e734919923f69318c953e077e9c02140ada13e59d043310"}, - {file = "pyarrow-18.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:606e9a3dcb0f52307c5040698ea962685fb1c852d72379ee9412be7de9c5f9e2"}, - {file = "pyarrow-18.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d5795e37c0a33baa618c5e054cd61f586cf76850a251e2b21355e4085def6280"}, - {file = "pyarrow-18.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:5f0510608ccd6e7f02ca8596962afb8c6cc84c453e7be0da4d85f5f4f7b0328a"}, - {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:616ea2826c03c16e87f517c46296621a7c51e30400f6d0a61be645f203aa2b93"}, - {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1824f5b029ddd289919f354bc285992cb4e32da518758c136271cf66046ef22"}, - {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6dd1b52d0d58dd8f685ced9971eb49f697d753aa7912f0a8f50833c7a7426319"}, - {file = "pyarrow-18.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:320ae9bd45ad7ecc12ec858b3e8e462578de060832b98fc4d671dee9f10d9954"}, - {file = "pyarrow-18.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:2c992716cffb1088414f2b478f7af0175fd0a76fea80841b1706baa8fb0ebaad"}, - {file = "pyarrow-18.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:e7ab04f272f98ebffd2a0661e4e126036f6936391ba2889ed2d44c5006237802"}, - {file = "pyarrow-18.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:03f40b65a43be159d2f97fd64dc998f769d0995a50c00f07aab58b0b3da87e1f"}, - {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be08af84808dff63a76860847c48ec0416928a7b3a17c2f49a072cac7c45efbd"}, - {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c70c1965cde991b711a98448ccda3486f2a336457cf4ec4dca257a926e149c9"}, - {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:00178509f379415a3fcf855af020e3340254f990a8534294ec3cf674d6e255fd"}, - {file = "pyarrow-18.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a71ab0589a63a3e987beb2bc172e05f000a5c5be2636b4b263c44034e215b5d7"}, - {file = "pyarrow-18.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:fe92efcdbfa0bcf2fa602e466d7f2905500f33f09eb90bf0bcf2e6ca41b574c8"}, - {file = "pyarrow-18.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:907ee0aa8ca576f5e0cdc20b5aeb2ad4d3953a3b4769fc4b499e00ef0266f02f"}, - {file = "pyarrow-18.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:66dcc216ebae2eb4c37b223feaf82f15b69d502821dde2da138ec5a3716e7463"}, - {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc1daf7c425f58527900876354390ee41b0ae962a73ad0959b9d829def583bb1"}, - {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:871b292d4b696b09120ed5bde894f79ee2a5f109cb84470546471df264cae136"}, - {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:082ba62bdcb939824ba1ce10b8acef5ab621da1f4c4805e07bfd153617ac19d4"}, - {file = "pyarrow-18.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:2c664ab88b9766413197733c1720d3dcd4190e8fa3bbdc3710384630a0a7207b"}, - {file = "pyarrow-18.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:dc892be34dbd058e8d189b47db1e33a227d965ea8805a235c8a7286f7fd17d3a"}, - {file = "pyarrow-18.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:28f9c39a56d2c78bf6b87dcc699d520ab850919d4a8c7418cd20eda49874a2ea"}, - {file = "pyarrow-18.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:f1a198a50c409ab2d009fbf20956ace84567d67f2c5701511d4dd561fae6f32e"}, - {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5bd7fd32e3ace012d43925ea4fc8bd1b02cc6cc1e9813b518302950e89b5a22"}, - {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:336addb8b6f5208be1b2398442c703a710b6b937b1a046065ee4db65e782ff5a"}, - {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:45476490dd4adec5472c92b4d253e245258745d0ccaabe706f8d03288ed60a79"}, - {file = "pyarrow-18.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b46591222c864e7da7faa3b19455196416cd8355ff6c2cc2e65726a760a3c420"}, - {file = "pyarrow-18.0.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:eb7e3abcda7e1e6b83c2dc2909c8d045881017270a119cc6ee7fdcfe71d02df8"}, - {file = "pyarrow-18.0.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:09f30690b99ce34e0da64d20dab372ee54431745e4efb78ac938234a282d15f9"}, - {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d5ca5d707e158540312e09fd907f9f49bacbe779ab5236d9699ced14d2293b8"}, - {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6331f280c6e4521c69b201a42dd978f60f7e129511a55da9e0bfe426b4ebb8d"}, - {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3ac24b2be732e78a5a3ac0b3aa870d73766dd00beba6e015ea2ea7394f8b4e55"}, - {file = "pyarrow-18.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b30a927c6dff89ee702686596f27c25160dd6c99be5bcc1513a763ae5b1bfc03"}, - {file = "pyarrow-18.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:8f40ec677e942374e3d7f2fad6a67a4c2811a8b975e8703c6fd26d3b168a90e2"}, - {file = "pyarrow-18.0.0.tar.gz", hash = "sha256:a6aa027b1a9d2970cf328ccd6dbe4a996bc13c39fd427f502782f5bdb9ca20f5"}, + {file = "pyarrow-18.1.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e21488d5cfd3d8b500b3238a6c4b075efabc18f0f6d80b29239737ebd69caa6c"}, + {file = "pyarrow-18.1.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:b516dad76f258a702f7ca0250885fc93d1fa5ac13ad51258e39d402bd9e2e1e4"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f443122c8e31f4c9199cb23dca29ab9427cef990f283f80fe15b8e124bcc49b"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0a03da7f2758645d17b7b4f83c8bffeae5bbb7f974523fe901f36288d2eab71"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ba17845efe3aa358ec266cf9cc2800fa73038211fb27968bfa88acd09261a470"}, + {file = "pyarrow-18.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3c35813c11a059056a22a3bef520461310f2f7eea5c8a11ef9de7062a23f8d56"}, + {file = "pyarrow-18.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:9736ba3c85129d72aefa21b4f3bd715bc4190fe4426715abfff90481e7d00812"}, + {file = "pyarrow-18.1.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:eaeabf638408de2772ce3d7793b2668d4bb93807deed1725413b70e3156a7854"}, + {file = "pyarrow-18.1.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:3b2e2239339c538f3464308fd345113f886ad031ef8266c6f004d49769bb074c"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f39a2e0ed32a0970e4e46c262753417a60c43a3246972cfc2d3eb85aedd01b21"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e31e9417ba9c42627574bdbfeada7217ad8a4cbbe45b9d6bdd4b62abbca4c6f6"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:01c034b576ce0eef554f7c3d8c341714954be9b3f5d5bc7117006b85fcf302fe"}, + {file = "pyarrow-18.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:f266a2c0fc31995a06ebd30bcfdb7f615d7278035ec5b1cd71c48d56daaf30b0"}, + {file = "pyarrow-18.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:d4f13eee18433f99adefaeb7e01d83b59f73360c231d4782d9ddfaf1c3fbde0a"}, + {file = "pyarrow-18.1.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:9f3a76670b263dc41d0ae877f09124ab96ce10e4e48f3e3e4257273cee61ad0d"}, + {file = "pyarrow-18.1.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:da31fbca07c435be88a0c321402c4e31a2ba61593ec7473630769de8346b54ee"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:543ad8459bc438efc46d29a759e1079436290bd583141384c6f7a1068ed6f992"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0743e503c55be0fdb5c08e7d44853da27f19dc854531c0570f9f394ec9671d54"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:d4b3d2a34780645bed6414e22dda55a92e0fcd1b8a637fba86800ad737057e33"}, + {file = "pyarrow-18.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:c52f81aa6f6575058d8e2c782bf79d4f9fdc89887f16825ec3a66607a5dd8e30"}, + {file = "pyarrow-18.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:0ad4892617e1a6c7a551cfc827e072a633eaff758fa09f21c4ee548c30bcaf99"}, + {file = "pyarrow-18.1.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:84e314d22231357d473eabec709d0ba285fa706a72377f9cc8e1cb3c8013813b"}, + {file = "pyarrow-18.1.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:f591704ac05dfd0477bb8f8e0bd4b5dc52c1cadf50503858dce3a15db6e46ff2"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acb7564204d3c40babf93a05624fc6a8ec1ab1def295c363afc40b0c9e66c191"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74de649d1d2ccb778f7c3afff6085bd5092aed4c23df9feeb45dd6b16f3811aa"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:f96bd502cb11abb08efea6dab09c003305161cb6c9eafd432e35e76e7fa9b90c"}, + {file = "pyarrow-18.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:36ac22d7782554754a3b50201b607d553a8d71b78cdf03b33c1125be4b52397c"}, + {file = "pyarrow-18.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:25dbacab8c5952df0ca6ca0af28f50d45bd31c1ff6fcf79e2d120b4a65ee7181"}, + {file = "pyarrow-18.1.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6a276190309aba7bc9d5bd2933230458b3521a4317acfefe69a354f2fe59f2bc"}, + {file = "pyarrow-18.1.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:ad514dbfcffe30124ce655d72771ae070f30bf850b48bc4d9d3b25993ee0e386"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aebc13a11ed3032d8dd6e7171eb6e86d40d67a5639d96c35142bd568b9299324"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6cf5c05f3cee251d80e98726b5c7cc9f21bab9e9783673bac58e6dfab57ecc8"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:11b676cd410cf162d3f6a70b43fb9e1e40affbc542a1e9ed3681895f2962d3d9"}, + {file = "pyarrow-18.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b76130d835261b38f14fc41fdfb39ad8d672afb84c447126b84d5472244cfaba"}, + {file = "pyarrow-18.1.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:0b331e477e40f07238adc7ba7469c36b908f07c89b95dd4bd3a0ec84a3d1e21e"}, + {file = "pyarrow-18.1.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:2c4dd0c9010a25ba03e198fe743b1cc03cd33c08190afff371749c52ccbbaf76"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f97b31b4c4e21ff58c6f330235ff893cc81e23da081b1a4b1c982075e0ed4e9"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a4813cb8ecf1809871fd2d64a8eff740a1bd3691bbe55f01a3cf6c5ec869754"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:05a5636ec3eb5cc2a36c6edb534a38ef57b2ab127292a716d00eabb887835f1e"}, + {file = "pyarrow-18.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:73eeed32e724ea3568bb06161cad5fa7751e45bc2228e33dcb10c614044165c7"}, + {file = "pyarrow-18.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:a1880dd6772b685e803011a6b43a230c23b566859a6e0c9a276c1e0faf4f4052"}, + {file = "pyarrow-18.1.0.tar.gz", hash = "sha256:9386d3ca9c145b5539a1cfc75df07757dff870168c959b473a0bccbc3abc8c73"}, ] [package.extras] test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"] +[[package]] +name = "pyasn1" +version = "0.6.1" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629"}, + {file = "pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034"}, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.1" +description = "A collection of ASN.1-based protocols modules" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyasn1_modules-0.4.1-py3-none-any.whl", hash = "sha256:49bfa96b45a292b711e986f222502c1c9a5e1f4e568fc30e2574a6c7d07838fd"}, + {file = "pyasn1_modules-0.4.1.tar.gz", hash = "sha256:c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c"}, +] + +[package.dependencies] +pyasn1 = ">=0.4.6,<0.7.0" + [[package]] name = "pydantic" -version = "2.10.1" +version = "2.10.3" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.10.1-py3-none-any.whl", hash = "sha256:a8d20db84de64cf4a7d59e899c2caf0fe9d660c7cfc482528e7020d7dd189a7e"}, - {file = "pydantic-2.10.1.tar.gz", hash = "sha256:a4daca2dc0aa429555e0656d6bf94873a7dc5f54ee42b1f5873d666fb3f35560"}, + {file = "pydantic-2.10.3-py3-none-any.whl", hash = "sha256:be04d85bbc7b65651c5f8e6b9976ed9c6f41782a55524cef079a34a0bb82144d"}, + {file = "pydantic-2.10.3.tar.gz", hash = "sha256:cb5ac360ce894ceacd69c403187900a02c4b20b693a9dd1d643e1effab9eadf9"}, ] [package.dependencies] @@ -1469,13 +1589,13 @@ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pytest" -version = "8.3.3" +version = "8.3.4" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, - {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, + {file = "pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6"}, + {file = "pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761"}, ] [package.dependencies] @@ -1578,13 +1698,13 @@ files = [ [[package]] name = "redis" -version = "5.2.0" +version = "5.2.1" description = "Python client for Redis database and key-value store" optional = false python-versions = ">=3.8" files = [ - {file = "redis-5.2.0-py3-none-any.whl", hash = "sha256:ae174f2bb3b1bf2b09d54bf3e51fbc1469cf6c10aa03e21141f51969801a7897"}, - {file = "redis-5.2.0.tar.gz", hash = "sha256:0b1087665a771b1ff2e003aa5bdd354f15a70c9e25d5a7dbf9c722c16528a7b0"}, + {file = "redis-5.2.1-py3-none-any.whl", hash = "sha256:ee7e1056b9aea0f04c6c2ed59452947f34c4940ee025f5dd83e6a6418b6989e4"}, + {file = "redis-5.2.1.tar.gz", hash = "sha256:16f2e22dff21d5125e8481515e386711a34cbec50f0e44413dd7d9c060a54e0f"}, ] [package.dependencies] @@ -1718,6 +1838,52 @@ urllib3 = ">=1.21.1,<3" socks = ["PySocks (>=1.5.6,!=1.5.7)"] use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +description = "OAuthlib authentication support for Requests." +optional = false +python-versions = ">=3.4" +files = [ + {file = "requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9"}, + {file = "requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36"}, +] + +[package.dependencies] +oauthlib = ">=3.0.0" +requests = ">=2.0.0" + +[package.extras] +rsa = ["oauthlib[signedtoken] (>=3.0.0)"] + +[[package]] +name = "retrying" +version = "1.3.4" +description = "Retrying" +optional = false +python-versions = "*" +files = [ + {file = "retrying-1.3.4-py3-none-any.whl", hash = "sha256:8cc4d43cb8e1125e0ff3344e9de678fefd85db3b750b81b2240dc0183af37b35"}, + {file = "retrying-1.3.4.tar.gz", hash = "sha256:345da8c5765bd982b1d1915deb9102fd3d1f7ad16bd84a9700b85f64d24e8f3e"}, +] + +[package.dependencies] +six = ">=1.7.0" + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + [[package]] name = "safetensors" version = "0.4.5" @@ -1852,37 +2018,41 @@ torch = ["safetensors[numpy]", "torch (>=1.10)"] [[package]] name = "scikit-learn" -version = "1.5.2" +version = "1.6.0" description = "A set of python modules for machine learning and data mining" optional = false python-versions = ">=3.9" files = [ - {file = "scikit_learn-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:299406827fb9a4f862626d0fe6c122f5f87f8910b86fe5daa4c32dcd742139b6"}, - {file = "scikit_learn-1.5.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:2d4cad1119c77930b235579ad0dc25e65c917e756fe80cab96aa3b9428bd3fb0"}, - {file = "scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c412ccc2ad9bf3755915e3908e677b367ebc8d010acbb3f182814524f2e5540"}, - {file = "scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a686885a4b3818d9e62904d91b57fa757fc2bed3e465c8b177be652f4dd37c8"}, - {file = "scikit_learn-1.5.2-cp310-cp310-win_amd64.whl", hash = "sha256:c15b1ca23d7c5f33cc2cb0a0d6aaacf893792271cddff0edbd6a40e8319bc113"}, - {file = "scikit_learn-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03b6158efa3faaf1feea3faa884c840ebd61b6484167c711548fce208ea09445"}, - {file = "scikit_learn-1.5.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:1ff45e26928d3b4eb767a8f14a9a6efbf1cbff7c05d1fb0f95f211a89fd4f5de"}, - {file = "scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f763897fe92d0e903aa4847b0aec0e68cadfff77e8a0687cabd946c89d17e675"}, - {file = "scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8b0ccd4a902836493e026c03256e8b206656f91fbcc4fde28c57a5b752561f1"}, - {file = "scikit_learn-1.5.2-cp311-cp311-win_amd64.whl", hash = "sha256:6c16d84a0d45e4894832b3c4d0bf73050939e21b99b01b6fd59cbb0cf39163b6"}, - {file = "scikit_learn-1.5.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f932a02c3f4956dfb981391ab24bda1dbd90fe3d628e4b42caef3e041c67707a"}, - {file = "scikit_learn-1.5.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:3b923d119d65b7bd555c73be5423bf06c0105678ce7e1f558cb4b40b0a5502b1"}, - {file = "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f60021ec1574e56632be2a36b946f8143bf4e5e6af4a06d85281adc22938e0dd"}, - {file = "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:394397841449853c2290a32050382edaec3da89e35b3e03d6cc966aebc6a8ae6"}, - {file = "scikit_learn-1.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:57cc1786cfd6bd118220a92ede80270132aa353647684efa385a74244a41e3b1"}, - {file = "scikit_learn-1.5.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9a702e2de732bbb20d3bad29ebd77fc05a6b427dc49964300340e4c9328b3f5"}, - {file = "scikit_learn-1.5.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:b0768ad641981f5d3a198430a1d31c3e044ed2e8a6f22166b4d546a5116d7908"}, - {file = "scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:178ddd0a5cb0044464fc1bfc4cca5b1833bfc7bb022d70b05db8530da4bb3dd3"}, - {file = "scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7284ade780084d94505632241bf78c44ab3b6f1e8ccab3d2af58e0e950f9c12"}, - {file = "scikit_learn-1.5.2-cp313-cp313-win_amd64.whl", hash = "sha256:b7b0f9a0b1040830d38c39b91b3a44e1b643f4b36e36567b80b7c6bd2202a27f"}, - {file = "scikit_learn-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:757c7d514ddb00ae249832fe87100d9c73c6ea91423802872d9e74970a0e40b9"}, - {file = "scikit_learn-1.5.2-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:52788f48b5d8bca5c0736c175fa6bdaab2ef00a8f536cda698db61bd89c551c1"}, - {file = "scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:643964678f4b5fbdc95cbf8aec638acc7aa70f5f79ee2cdad1eec3df4ba6ead8"}, - {file = "scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca64b3089a6d9b9363cd3546f8978229dcbb737aceb2c12144ee3f70f95684b7"}, - {file = "scikit_learn-1.5.2-cp39-cp39-win_amd64.whl", hash = "sha256:3bed4909ba187aca80580fe2ef370d9180dcf18e621a27c4cf2ef10d279a7efe"}, - {file = "scikit_learn-1.5.2.tar.gz", hash = "sha256:b4237ed7b3fdd0a4882792e68ef2545d5baa50aca3bb45aa7df468138ad8f94d"}, + {file = "scikit_learn-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:366fb3fa47dce90afed3d6106183f4978d6f24cfd595c2373424171b915ee718"}, + {file = "scikit_learn-1.6.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:59cd96a8d9f8dfd546f5d6e9787e1b989e981388d7803abbc9efdcde61e47460"}, + {file = "scikit_learn-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efa7a579606c73a0b3d210e33ea410ea9e1af7933fe324cb7e6fbafae4ea5948"}, + {file = "scikit_learn-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a46d3ca0f11a540b8eaddaf5e38172d8cd65a86cb3e3632161ec96c0cffb774c"}, + {file = "scikit_learn-1.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:5be4577769c5dde6e1b53de8e6520f9b664ab5861dd57acee47ad119fd7405d6"}, + {file = "scikit_learn-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1f50b4f24cf12a81c3c09958ae3b864d7534934ca66ded3822de4996d25d7285"}, + {file = "scikit_learn-1.6.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:eb9ae21f387826da14b0b9cb1034f5048ddb9182da429c689f5f4a87dc96930b"}, + {file = "scikit_learn-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0baa91eeb8c32632628874a5c91885eaedd23b71504d24227925080da075837a"}, + {file = "scikit_learn-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c716d13ba0a2f8762d96ff78d3e0cde90bc9c9b5c13d6ab6bb9b2d6ca6705fd"}, + {file = "scikit_learn-1.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:9aafd94bafc841b626681e626be27bf1233d5a0f20f0a6fdb4bee1a1963c6643"}, + {file = "scikit_learn-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:04a5ba45c12a5ff81518aa4f1604e826a45d20e53da47b15871526cda4ff5174"}, + {file = "scikit_learn-1.6.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:21fadfc2ad7a1ce8bd1d90f23d17875b84ec765eecbbfc924ff11fb73db582ce"}, + {file = "scikit_learn-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30f34bb5fde90e020653bb84dcb38b6c83f90c70680dbd8c38bd9becbad7a127"}, + {file = "scikit_learn-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1dad624cffe3062276a0881d4e441bc9e3b19d02d17757cd6ae79a9d192a0027"}, + {file = "scikit_learn-1.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:2fce7950a3fad85e0a61dc403df0f9345b53432ac0e47c50da210d22c60b6d85"}, + {file = "scikit_learn-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e5453b2e87ef8accedc5a8a4e6709f887ca01896cd7cc8a174fe39bd4bb00aef"}, + {file = "scikit_learn-1.6.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:5fe11794236fb83bead2af26a87ced5d26e3370b8487430818b915dafab1724e"}, + {file = "scikit_learn-1.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61fe3dcec0d82ae280877a818ab652f4988371e32dd5451e75251bece79668b1"}, + {file = "scikit_learn-1.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b44e3a51e181933bdf9a4953cc69c6025b40d2b49e238233f149b98849beb4bf"}, + {file = "scikit_learn-1.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:a17860a562bac54384454d40b3f6155200c1c737c9399e6a97962c63fce503ac"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:98717d3c152f6842d36a70f21e1468fb2f1a2f8f2624d9a3f382211798516426"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:34e20bfac8ff0ebe0ff20fb16a4d6df5dc4cc9ce383e00c2ab67a526a3c67b18"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eba06d75815406091419e06dd650b91ebd1c5f836392a0d833ff36447c2b1bfa"}, + {file = "scikit_learn-1.6.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b6916d1cec1ff163c7d281e699d7a6a709da2f2c5ec7b10547e08cc788ddd3ae"}, + {file = "scikit_learn-1.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:66b1cf721a9f07f518eb545098226796c399c64abdcbf91c2b95d625068363da"}, + {file = "scikit_learn-1.6.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b35b60cf4cd6564b636e4a40516b3c61a4fa7a8b1f7a3ce80c38ebe04750bc3"}, + {file = "scikit_learn-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a73b1c2038c93bc7f4bf21f6c9828d5116c5d2268f7a20cfbbd41d3074d52083"}, + {file = "scikit_learn-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c3fa7d3dd5a0ec2d0baba0d644916fa2ab180ee37850c5d536245df916946bd"}, + {file = "scikit_learn-1.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:df778486a32518cda33818b7e3ce48c78cef1d5f640a6bc9d97c6d2e71449a51"}, + {file = "scikit_learn-1.6.0.tar.gz", hash = "sha256:9d58481f9f7499dff4196927aedd4285a0baec8caa3790efbe205f13de37dd6e"}, ] [package.dependencies] @@ -1894,11 +2064,11 @@ threadpoolctl = ">=3.1.0" [package.extras] benchmark = ["matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "pandas (>=1.1.5)"] build = ["cython (>=3.0.10)", "meson-python (>=0.16.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)"] -docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pydata-sphinx-theme (>=0.15.3)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=7.3.7)", "sphinx-copybutton (>=0.5.2)", "sphinx-design (>=0.5.0)", "sphinx-design (>=0.6.0)", "sphinx-gallery (>=0.16.0)", "sphinx-prompt (>=1.4.0)", "sphinx-remove-toctrees (>=1.0.0.post1)", "sphinxcontrib-sass (>=0.3.4)", "sphinxext-opengraph (>=0.9.1)"] +docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pydata-sphinx-theme (>=0.15.3)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=7.3.7)", "sphinx-copybutton (>=0.5.2)", "sphinx-design (>=0.5.0)", "sphinx-design (>=0.6.0)", "sphinx-gallery (>=0.17.1)", "sphinx-prompt (>=1.4.0)", "sphinx-remove-toctrees (>=1.0.0.post1)", "sphinxcontrib-sass (>=0.3.4)", "sphinxext-opengraph (>=0.9.1)", "towncrier (>=24.8.0)"] examples = ["matplotlib (>=3.3.4)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)"] install = ["joblib (>=1.2.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)", "threadpoolctl (>=3.1.0)"] maintenance = ["conda-lock (==2.5.6)"] -tests = ["black (>=24.3.0)", "matplotlib (>=3.3.4)", "mypy (>=1.9)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pyarrow (>=12.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.2.1)", "scikit-image (>=0.17.2)"] +tests = ["black (>=24.3.0)", "matplotlib (>=3.3.4)", "mypy (>=1.9)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "polars (>=0.20.30)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pyarrow (>=12.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.5.1)", "scikit-image (>=0.17.2)"] [[package]] name = "scipy" @@ -1972,13 +2142,13 @@ type = ["importlib_metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12 [[package]] name = "six" -version = "1.16.0" +version = "1.17.0" description = "Python 2 and 3 compatibility utilities" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, + {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"}, + {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"}, ] [[package]] @@ -2039,123 +2209,26 @@ files = [ [[package]] name = "tokenizers" -version = "0.20.3" +version = "0.21.0" description = "" optional = false python-versions = ">=3.7" files = [ - {file = "tokenizers-0.20.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:31ccab28dbb1a9fe539787210b0026e22debeab1662970f61c2d921f7557f7e4"}, - {file = "tokenizers-0.20.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c6361191f762bda98c773da418cf511cbaa0cb8d0a1196f16f8c0119bde68ff8"}, - {file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f128d5da1202b78fa0a10d8d938610472487da01b57098d48f7e944384362514"}, - {file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:79c4121a2e9433ad7ef0769b9ca1f7dd7fa4c0cd501763d0a030afcbc6384481"}, - {file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7850fde24197fe5cd6556e2fdba53a6d3bae67c531ea33a3d7c420b90904141"}, - {file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b357970c095dc134978a68c67d845a1e3803ab7c4fbb39195bde914e7e13cf8b"}, - {file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a333d878c4970b72d6c07848b90c05f6b045cf9273fc2bc04a27211721ad6118"}, - {file = "tokenizers-0.20.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fd9fee817f655a8f50049f685e224828abfadd436b8ff67979fc1d054b435f1"}, - {file = "tokenizers-0.20.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9e7816808b402129393a435ea2a509679b41246175d6e5e9f25b8692bfaa272b"}, - {file = "tokenizers-0.20.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ba96367db9d8a730d3a1d5996b4b7babb846c3994b8ef14008cd8660f55db59d"}, - {file = "tokenizers-0.20.3-cp310-none-win32.whl", hash = "sha256:ee31ba9d7df6a98619426283e80c6359f167e2e9882d9ce1b0254937dbd32f3f"}, - {file = "tokenizers-0.20.3-cp310-none-win_amd64.whl", hash = "sha256:a845c08fdad554fe0871d1255df85772f91236e5fd6b9287ef8b64f5807dbd0c"}, - {file = "tokenizers-0.20.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:585b51e06ca1f4839ce7759941e66766d7b060dccfdc57c4ca1e5b9a33013a90"}, - {file = "tokenizers-0.20.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:61cbf11954f3b481d08723ebd048ba4b11e582986f9be74d2c3bdd9293a4538d"}, - {file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef820880d5e4e8484e2fa54ff8d297bb32519eaa7815694dc835ace9130a3eea"}, - {file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:67ef4dcb8841a4988cd00dd288fb95dfc8e22ed021f01f37348fd51c2b055ba9"}, - {file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff1ef8bd47a02b0dc191688ccb4da53600df5d4c9a05a4b68e1e3de4823e78eb"}, - {file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:444d188186eab3148baf0615b522461b41b1f0cd58cd57b862ec94b6ac9780f1"}, - {file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37c04c032c1442740b2c2d925f1857885c07619224a533123ac7ea71ca5713da"}, - {file = "tokenizers-0.20.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:453c7769d22231960ee0e883d1005c93c68015025a5e4ae56275406d94a3c907"}, - {file = "tokenizers-0.20.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4bb31f7b2847e439766aaa9cc7bccf7ac7088052deccdb2275c952d96f691c6a"}, - {file = "tokenizers-0.20.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:843729bf0f991b29655a069a2ff58a4c24375a553c70955e15e37a90dd4e045c"}, - {file = "tokenizers-0.20.3-cp311-none-win32.whl", hash = "sha256:efcce3a927b1e20ca694ba13f7a68c59b0bd859ef71e441db68ee42cf20c2442"}, - {file = "tokenizers-0.20.3-cp311-none-win_amd64.whl", hash = "sha256:88301aa0801f225725b6df5dea3d77c80365ff2362ca7e252583f2b4809c4cc0"}, - {file = "tokenizers-0.20.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:49d12a32e190fad0e79e5bdb788d05da2f20d8e006b13a70859ac47fecf6ab2f"}, - {file = "tokenizers-0.20.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:282848cacfb9c06d5e51489f38ec5aa0b3cd1e247a023061945f71f41d949d73"}, - {file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abe4e08c7d0cd6154c795deb5bf81d2122f36daf075e0c12a8b050d824ef0a64"}, - {file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ca94fc1b73b3883c98f0c88c77700b13d55b49f1071dfd57df2b06f3ff7afd64"}, - {file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef279c7e239f95c8bdd6ff319d9870f30f0d24915b04895f55b1adcf96d6c60d"}, - {file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:16384073973f6ccbde9852157a4fdfe632bb65208139c9d0c0bd0176a71fd67f"}, - {file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:312d522caeb8a1a42ebdec87118d99b22667782b67898a76c963c058a7e41d4f"}, - {file = "tokenizers-0.20.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2b7cb962564785a83dafbba0144ecb7f579f1d57d8c406cdaa7f32fe32f18ad"}, - {file = "tokenizers-0.20.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:124c5882ebb88dadae1fc788a582299fcd3a8bd84fc3e260b9918cf28b8751f5"}, - {file = "tokenizers-0.20.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2b6e54e71f84c4202111a489879005cb14b92616a87417f6c102c833af961ea2"}, - {file = "tokenizers-0.20.3-cp312-none-win32.whl", hash = "sha256:83d9bfbe9af86f2d9df4833c22e94d94750f1d0cd9bfb22a7bb90a86f61cdb1c"}, - {file = "tokenizers-0.20.3-cp312-none-win_amd64.whl", hash = "sha256:44def74cee574d609a36e17c8914311d1b5dbcfe37c55fd29369d42591b91cf2"}, - {file = "tokenizers-0.20.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:e0b630e0b536ef0e3c8b42c685c1bc93bd19e98c0f1543db52911f8ede42cf84"}, - {file = "tokenizers-0.20.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a02d160d2b19bcbfdf28bd9a4bf11be4cb97d0499c000d95d4c4b1a4312740b6"}, - {file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e3d80d89b068bc30034034b5319218c7c0a91b00af19679833f55f3becb6945"}, - {file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:174a54910bed1b089226512b4458ea60d6d6fd93060254734d3bc3540953c51c"}, - {file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:098b8a632b8656aa5802c46689462c5c48f02510f24029d71c208ec2c822e771"}, - {file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:78c8c143e3ae41e718588281eb3e212c2b31623c9d6d40410ec464d7d6221fb5"}, - {file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b26b0aadb18cd8701077362ba359a06683662d5cafe3e8e8aba10eb05c037f1"}, - {file = "tokenizers-0.20.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07d7851a72717321022f3774e84aa9d595a041d643fafa2e87fbc9b18711dac0"}, - {file = "tokenizers-0.20.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:bd44e48a430ada902c6266a8245f5036c4fe744fcb51f699999fbe82aa438797"}, - {file = "tokenizers-0.20.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a4c186bb006ccbe1f5cc4e0380d1ce7806f5955c244074fd96abc55e27b77f01"}, - {file = "tokenizers-0.20.3-cp313-none-win32.whl", hash = "sha256:6e19e0f1d854d6ab7ea0c743d06e764d1d9a546932be0a67f33087645f00fe13"}, - {file = "tokenizers-0.20.3-cp313-none-win_amd64.whl", hash = "sha256:d50ede425c7e60966a9680d41b58b3a0950afa1bb570488e2972fa61662c4273"}, - {file = "tokenizers-0.20.3-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:9adda1ff5fb9dcdf899ceca672a4e2ce9e797adb512a6467305ca3d8bfcfbdd0"}, - {file = "tokenizers-0.20.3-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:6dde2cae6004ba7a3badff4a11911cae03ebf23e97eebfc0e71fef2530e5074f"}, - {file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4a7fd678b35614fca708579eb95b7587a5e8a6d328171bd2488fd9f27d82be4"}, - {file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1b80e3c7283a01a356bd2210f53d1a4a5d32b269c2024389ed0173137708d50e"}, - {file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8cc0e8176b762973758a77f0d9c4467d310e33165fb74173418ca3734944da4"}, - {file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5634b2e2f5f3d2b4439d2d74066e22eb4b1f04f3fea05cb2a3c12d89b5a3bcd"}, - {file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b4ba635165bc1ea46f2da8e5d80b5f70f6ec42161e38d96dbef33bb39df73964"}, - {file = "tokenizers-0.20.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18e4c7c64172e7789bd8b07aa3087ea87c4c4de7e90937a2aa036b5d92332536"}, - {file = "tokenizers-0.20.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1f74909ef7675c26d4095a817ec3393d67f3158ca4836c233212e5613ef640c4"}, - {file = "tokenizers-0.20.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0e9b81321a1e05b16487d312b4264984513f8b4a7556229cafac6e88c2036b09"}, - {file = "tokenizers-0.20.3-cp37-none-win32.whl", hash = "sha256:ab48184cd58b4a03022a2ec75b54c9f600ffea9a733612c02325ed636f353729"}, - {file = "tokenizers-0.20.3-cp37-none-win_amd64.whl", hash = "sha256:60ac483cebee1c12c71878523e768df02fa17e4c54412966cb3ac862c91b36c1"}, - {file = "tokenizers-0.20.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:3229ef103c89583d10b9378afa5d601b91e6337530a0988e17ca8d635329a996"}, - {file = "tokenizers-0.20.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6ac52cc24bad3de865c7e65b1c4e7b70d00938a8ae09a92a453b8f676e714ad5"}, - {file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:04627b7b502fa6a2a005e1bd446fa4247d89abcb1afaa1b81eb90e21aba9a60f"}, - {file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c27ceb887f0e81a3c377eb4605dca7a95a81262761c0fba308d627b2abb98f2b"}, - {file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65ab780194da4e1fcf5670523a2f377c4838ebf5249efe41fa1eddd2a84fb49d"}, - {file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98d343134f47159e81f7f242264b0eb222e6b802f37173c8d7d7b64d5c9d1388"}, - {file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2475bb004ab2009d29aff13b5047bfdb3d4b474f0aa9d4faa13a7f34dbbbb43"}, - {file = "tokenizers-0.20.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b6583a65c01db1197c1eb36857ceba8ec329d53afadd268b42a6b04f4965724"}, - {file = "tokenizers-0.20.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:62d00ba208358c037eeab7bfc00a905adc67b2d31b68ab40ed09d75881e114ea"}, - {file = "tokenizers-0.20.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0fc7a39e5bedc817bda395a798dfe2d9c5f7c71153c90d381b5135a0328d9520"}, - {file = "tokenizers-0.20.3-cp38-none-win32.whl", hash = "sha256:84d40ee0f8550d64d3ea92dd7d24a8557a9172165bdb986c9fb2503b4fe4e3b6"}, - {file = "tokenizers-0.20.3-cp38-none-win_amd64.whl", hash = "sha256:205a45246ed7f1718cf3785cff88450ba603352412aaf220ace026384aa3f1c0"}, - {file = "tokenizers-0.20.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:93e37f0269a11dc3b1a953f1fca9707f0929ebf8b4063c591c71a0664219988e"}, - {file = "tokenizers-0.20.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f4cb0c614b0135e781de96c2af87e73da0389ac1458e2a97562ed26e29490d8d"}, - {file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7eb2fb1c432f5746b22f8a7f09fc18c4156cb0031c77f53cb19379d82d43297a"}, - {file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfa8d029bb156181b006643309d6b673615a24e4ed24cf03aa191d599b996f51"}, - {file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f90549622de3bf476ad9f1dd6f3f952ec3ed6ab8615ae88ef060d0c5bfad55d"}, - {file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1d469c74eebf5c43fd61cd9b030e271d17198edd7bd45392e03a3c091d7d6d4"}, - {file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bee8f53b2594749f4460d53253bae55d718f04e9b633efa0f5df8938bd98e4f0"}, - {file = "tokenizers-0.20.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:938441babf3e5720e4459e306ef2809fb267680df9d1ff2873458b22aef60248"}, - {file = "tokenizers-0.20.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7310ab23d7b0caebecc0e8be11a1146f320f5f07284000f6ea54793e83de1b75"}, - {file = "tokenizers-0.20.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:16121eb030a2b13094cfec936b0c12e8b4063c5f839591ea7d0212336d8f9921"}, - {file = "tokenizers-0.20.3-cp39-none-win32.whl", hash = "sha256:401cc21ef642ee235985d747f65e18f639464d377c70836c9003df208d582064"}, - {file = "tokenizers-0.20.3-cp39-none-win_amd64.whl", hash = "sha256:7498f3ea7746133335a6adb67a77cf77227a8b82c8483f644a2e5f86fea42b8d"}, - {file = "tokenizers-0.20.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e919f2e3e68bb51dc31de4fcbbeff3bdf9c1cad489044c75e2b982a91059bd3c"}, - {file = "tokenizers-0.20.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b8e9608f2773996cc272156e305bd79066163a66b0390fe21750aff62df1ac07"}, - {file = "tokenizers-0.20.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39270a7050deaf50f7caff4c532c01b3c48f6608d42b3eacdebdc6795478c8df"}, - {file = "tokenizers-0.20.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e005466632b1c5d2d2120f6de8aa768cc9d36cd1ab7d51d0c27a114c91a1e6ee"}, - {file = "tokenizers-0.20.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a07962340b36189b6c8feda552ea1bfeee6cf067ff922a1d7760662c2ee229e5"}, - {file = "tokenizers-0.20.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:55046ad3dd5f2b3c67501fcc8c9cbe3e901d8355f08a3b745e9b57894855f85b"}, - {file = "tokenizers-0.20.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:efcf0eb939988b627558aaf2b9dc3e56d759cad2e0cfa04fcab378e4b48fc4fd"}, - {file = "tokenizers-0.20.3-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f3558a7ae6a6d38a77dfce12172a1e2e1bf3e8871e744a1861cd7591ea9ebe24"}, - {file = "tokenizers-0.20.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d53029fe44bc70c3ff14ef512460a0cf583495a0f8e2f4b70e26eb9438e38a9"}, - {file = "tokenizers-0.20.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57a2a56397b2bec5a629b516b23f0f8a3e4f978c7488d4a299980f8375954b85"}, - {file = "tokenizers-0.20.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e5bfaae740ef9ece000f8a07e78ac0e2b085c5ce9648f8593ddf0243c9f76d"}, - {file = "tokenizers-0.20.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fbaf3ea28fedfb2283da60e710aff25492e795a7397cad8a50f1e079b65a5a70"}, - {file = "tokenizers-0.20.3-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:c47c037116310dc976eb96b008e41b9cfaba002ed8005848d4d632ee0b7ba9ae"}, - {file = "tokenizers-0.20.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c31751f0721f58f5e19bb27c1acc259aeff860d8629c4e1a900b26a1979ada8e"}, - {file = "tokenizers-0.20.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:c697cbd3be7a79ea250ea5f380d6f12e534c543cfb137d5c734966b3ee4f34cc"}, - {file = "tokenizers-0.20.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b48971b88ef9130bf35b41b35fd857c3c4dae4a9cd7990ebc7fc03e59cc92438"}, - {file = "tokenizers-0.20.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4e615de179bbe060ab33773f0d98a8a8572b5883dd7dac66c1de8c056c7e748c"}, - {file = "tokenizers-0.20.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da1ec842035ed9999c62e45fbe0ff14b7e8a7e02bb97688cc6313cf65e5cd755"}, - {file = "tokenizers-0.20.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:6ee4954c1dd23aadc27958dad759006e71659d497dcb0ef0c7c87ea992c16ebd"}, - {file = "tokenizers-0.20.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:3eda46ca402751ec82553a321bf35a617b76bbed7586e768c02ccacbdda94d6d"}, - {file = "tokenizers-0.20.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:de082392a85eb0055cc055c535bff2f0cc15d7a000bdc36fbf601a0f3cf8507a"}, - {file = "tokenizers-0.20.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c3db46cc0647bfd88263afdb739b92017a02a87ee30945cb3e86c7e25c7c9917"}, - {file = "tokenizers-0.20.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a292392f24ab9abac5cfa8197e5a6208f2e43723420217e1ceba0b4ec77816ac"}, - {file = "tokenizers-0.20.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dcd91f4e60f62b20d83a87a84fe062035a1e3ff49a8c2bbdeb2d441c8e311f4"}, - {file = "tokenizers-0.20.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:900991a2b8ee35961b1095db7e265342e0e42a84c1a594823d5ee9f8fb791958"}, - {file = "tokenizers-0.20.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:5a8d8261ca2133d4f98aa9627c748189502b3787537ba3d7e2beb4f7cfc5d627"}, - {file = "tokenizers-0.20.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:c4fd4d71e6deb6ddf99d8d0eab87d1d16f635898906e631914a9bae8ae9f2cfb"}, - {file = "tokenizers-0.20.3.tar.gz", hash = "sha256:2278b34c5d0dd78e087e1ca7f9b1dcbf129d80211afa645f214bd6e051037539"}, + {file = "tokenizers-0.21.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:3c4c93eae637e7d2aaae3d376f06085164e1660f89304c0ab2b1d08a406636b2"}, + {file = "tokenizers-0.21.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:f53ea537c925422a2e0e92a24cce96f6bc5046bbef24a1652a5edc8ba975f62e"}, + {file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b177fb54c4702ef611de0c069d9169f0004233890e0c4c5bd5508ae05abf193"}, + {file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b43779a269f4629bebb114e19c3fca0223296ae9fea8bb9a7a6c6fb0657ff8e"}, + {file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aeb255802be90acfd363626753fda0064a8df06031012fe7d52fd9a905eb00e"}, + {file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d8b09dbeb7a8d73ee204a70f94fc06ea0f17dcf0844f16102b9f414f0b7463ba"}, + {file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:400832c0904f77ce87c40f1a8a27493071282f785724ae62144324f171377273"}, + {file = "tokenizers-0.21.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84ca973b3a96894d1707e189c14a774b701596d579ffc7e69debfc036a61a04"}, + {file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:eb7202d231b273c34ec67767378cd04c767e967fda12d4a9e36208a34e2f137e"}, + {file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:089d56db6782a73a27fd8abf3ba21779f5b85d4a9f35e3b493c7bbcbbf0d539b"}, + {file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:c87ca3dc48b9b1222d984b6b7490355a6fdb411a2d810f6f05977258400ddb74"}, + {file = "tokenizers-0.21.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4145505a973116f91bc3ac45988a92e618a6f83eb458f49ea0790df94ee243ff"}, + {file = "tokenizers-0.21.0-cp39-abi3-win32.whl", hash = "sha256:eb1702c2f27d25d9dd5b389cc1f2f51813e99f8ca30d9e25348db6585a97e24a"}, + {file = "tokenizers-0.21.0-cp39-abi3-win_amd64.whl", hash = "sha256:87841da5a25a3a5f70c102de371db120f41873b854ba65e52bccd57df5a3780c"}, + {file = "tokenizers-0.21.0.tar.gz", hash = "sha256:ee0894bf311b75b0c03079f33859ae4b2334d675d4e93f5a4132e1eae2834fe4"}, ] [package.dependencies] @@ -2168,13 +2241,43 @@ testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests", "ruff"] [[package]] name = "tomli" -version = "2.1.0" +version = "2.2.1" description = "A lil' TOML parser" optional = false python-versions = ">=3.8" files = [ - {file = "tomli-2.1.0-py3-none-any.whl", hash = "sha256:a5c57c3d1c56f5ccdf89f6523458f60ef716e210fc47c4cfb188c5ba473e0391"}, - {file = "tomli-2.1.0.tar.gz", hash = "sha256:3f646cae2aec94e17d04973e4249548320197cfabdf130015d023de4b74d8ab8"}, + {file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"}, + {file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"}, + {file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a"}, + {file = "tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee"}, + {file = "tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e"}, + {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4"}, + {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106"}, + {file = "tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8"}, + {file = "tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff"}, + {file = "tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b"}, + {file = "tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea"}, + {file = "tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8"}, + {file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192"}, + {file = "tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222"}, + {file = "tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77"}, + {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6"}, + {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd"}, + {file = "tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e"}, + {file = "tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98"}, + {file = "tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4"}, + {file = "tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7"}, + {file = "tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c"}, + {file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13"}, + {file = "tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281"}, + {file = "tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272"}, + {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140"}, + {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2"}, + {file = "tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744"}, + {file = "tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec"}, + {file = "tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69"}, + {file = "tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc"}, + {file = "tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff"}, ] [[package]] @@ -2215,20 +2318,20 @@ reference = "pytorch" [[package]] name = "tqdm" -version = "4.67.0" +version = "4.67.1" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.67.0-py3-none-any.whl", hash = "sha256:0cd8af9d56911acab92182e88d763100d4788bdf421d251616040cc4d44863be"}, - {file = "tqdm-4.67.0.tar.gz", hash = "sha256:fe5a6f95e6fe0b9755e9469b77b9c3cf850048224ecaa8293d7d2d31f97d869a"}, + {file = "tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2"}, + {file = "tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"}, ] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} [package.extras] -dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +dev = ["nbval", "pytest (>=6)", "pytest-asyncio (>=0.24)", "pytest-cov", "pytest-timeout"] discord = ["requests"] notebook = ["ipywidgets (>=6)"] slack = ["slack-sdk"] @@ -2236,41 +2339,41 @@ telegram = ["requests"] [[package]] name = "transformers" -version = "4.46.3" +version = "4.47.0" description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" optional = false -python-versions = ">=3.8.0" +python-versions = ">=3.9.0" files = [ - {file = "transformers-4.46.3-py3-none-any.whl", hash = "sha256:a12ef6f52841fd190a3e5602145b542d03507222f2c64ebb7ee92e8788093aef"}, - {file = "transformers-4.46.3.tar.gz", hash = "sha256:8ee4b3ae943fe33e82afff8e837f4b052058b07ca9be3cb5b729ed31295f72cc"}, + {file = "transformers-4.47.0-py3-none-any.whl", hash = "sha256:a8e1bafdaae69abdda3cad638fe392e37c86d2ce0ecfcae11d60abb8f949ff4d"}, + {file = "transformers-4.47.0.tar.gz", hash = "sha256:f8ead7a5a4f6937bb507e66508e5e002dc5930f7b6122a9259c37b099d0f3b19"}, ] [package.dependencies] accelerate = {version = ">=0.26.0", optional = true, markers = "extra == \"torch\""} filelock = "*" -huggingface-hub = ">=0.23.2,<1.0" +huggingface-hub = ">=0.24.0,<1.0" numpy = ">=1.17" packaging = ">=20.0" pyyaml = ">=5.1" regex = "!=2019.12.17" requests = "*" safetensors = ">=0.4.1" -tokenizers = ">=0.20,<0.21" +tokenizers = ">=0.21,<0.22" torch = {version = "*", optional = true, markers = "extra == \"torch\""} tqdm = ">=4.27" [package.extras] accelerate = ["accelerate (>=0.26.0)"] agents = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "datasets (!=2.5.0)", "diffusers", "opencv-python", "sentencepiece (>=0.1.91,!=0.1.92)", "torch"] -all = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "av (==9.2.0)", "codecarbon (==1.2.0)", "flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune] (>=2.7.0)", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timm (<=0.9.16)", "tokenizers (>=0.20,<0.21)", "torch", "torchaudio", "torchvision"] +all = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "av (==9.2.0)", "codecarbon (==1.2.0)", "flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune] (>=2.7.0)", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timm (<=1.0.11)", "tokenizers (>=0.21,<0.22)", "torch", "torchaudio", "torchvision"] audio = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"] benchmark = ["optimum-benchmark (>=0.3.0)"] codecarbon = ["codecarbon (==1.2.0)"] deepspeed = ["accelerate (>=0.26.0)", "deepspeed (>=0.9.3)"] deepspeed-testing = ["GitPython (<3.1.19)", "accelerate (>=0.26.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "deepspeed (>=0.9.3)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "nltk (<=3.8.1)", "optuna", "parameterized", "protobuf", "psutil", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "timeout-decorator"] -dev = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "av (==9.2.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "flax (>=0.4.1,<=0.7.0)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "libcst", "librosa", "nltk (<=3.8.1)", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "timm (<=0.9.16)", "tokenizers (>=0.20,<0.21)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"] -dev-tensorflow = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "isort (>=5.5.4)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "libcst", "librosa", "nltk (<=3.8.1)", "onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "tokenizers (>=0.20,<0.21)", "urllib3 (<2.0.0)"] -dev-torch = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "kenlm", "libcst", "librosa", "nltk (<=3.8.1)", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "timeout-decorator", "timm (<=0.9.16)", "tokenizers (>=0.20,<0.21)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"] +dev = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "av (==9.2.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "flax (>=0.4.1,<=0.7.0)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "libcst", "librosa", "nltk (<=3.8.1)", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "timm (<=1.0.11)", "tokenizers (>=0.21,<0.22)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"] +dev-tensorflow = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "isort (>=5.5.4)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "libcst", "librosa", "nltk (<=3.8.1)", "onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "tokenizers (>=0.21,<0.22)", "urllib3 (<2.0.0)"] +dev-torch = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "kenlm", "libcst", "librosa", "nltk (<=3.8.1)", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "timeout-decorator", "timm (<=1.0.11)", "tokenizers (>=0.21,<0.22)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"] flax = ["flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "optax (>=0.0.8,<=0.1.4)", "scipy (<1.13.0)"] flax-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"] ftfy = ["ftfy"] @@ -2296,12 +2399,12 @@ tf = ["keras-nlp (>=0.3.1,<0.14.0)", "onnxconverter-common", "tensorflow (>2.9,< tf-cpu = ["keras (>2.9,<2.16)", "keras-nlp (>=0.3.1,<0.14.0)", "onnxconverter-common", "tensorflow-cpu (>2.9,<2.16)", "tensorflow-probability (<0.24)", "tensorflow-text (<2.16)", "tf2onnx"] tf-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"] tiktoken = ["blobfile", "tiktoken"] -timm = ["timm (<=0.9.16)"] -tokenizers = ["tokenizers (>=0.20,<0.21)"] +timm = ["timm (<=1.0.11)"] +tokenizers = ["tokenizers (>=0.21,<0.22)"] torch = ["accelerate (>=0.26.0)", "torch"] torch-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"] torch-vision = ["Pillow (>=10.0.1,<=15.0)", "torchvision"] -torchhub = ["filelock", "huggingface-hub (>=0.23.2,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.20,<0.21)", "torch", "tqdm (>=4.27)"] +torchhub = ["filelock", "huggingface-hub (>=0.24.0,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.21,<0.22)", "torch", "tqdm (>=4.27)"] video = ["av (==9.2.0)"] vision = ["Pillow (>=10.0.1,<=15.0)"] @@ -2394,6 +2497,22 @@ typing-extensions = {version = ">=4.0", markers = "python_version < \"3.11\""} [package.extras] standard = ["colorama (>=0.4)", "httptools (>=0.6.3)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] +[[package]] +name = "websocket-client" +version = "1.8.0" +description = "WebSocket client for Python with low level API options" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"}, + {file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"}, +] + +[package.extras] +docs = ["Sphinx (>=6.0)", "myst-parser (>=2.0.0)", "sphinx-rtd-theme (>=1.1.0)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + [[package]] name = "werkzeug" version = "3.1.3" @@ -2411,6 +2530,16 @@ MarkupSafe = ">=2.1.1" [package.extras] watchdog = ["watchdog (>=2.3)"] +[[package]] +name = "wget" +version = "3.2" +description = "pure python download utility" +optional = false +python-versions = "*" +files = [ + {file = "wget-3.2.zip", hash = "sha256:35e630eca2aa50ce998b9b1a127bb26b30dfee573702782aa982f875e3f16061"}, +] + [[package]] name = "wrapt" version = "1.17.0" @@ -2619,93 +2748,93 @@ files = [ [[package]] name = "yarl" -version = "1.18.0" +version = "1.18.3" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.18.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:074fee89caab89a97e18ef5f29060ef61ba3cae6cd77673acc54bfdd3214b7b7"}, - {file = "yarl-1.18.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b026cf2c32daf48d90c0c4e406815c3f8f4cfe0c6dfccb094a9add1ff6a0e41a"}, - {file = "yarl-1.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ae38bd86eae3ba3d2ce5636cc9e23c80c9db2e9cb557e40b98153ed102b5a736"}, - {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:685cc37f3f307c6a8e879986c6d85328f4c637f002e219f50e2ef66f7e062c1d"}, - {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8254dbfce84ee5d1e81051ee7a0f1536c108ba294c0fdb5933476398df0654f3"}, - {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:20de4a8b04de70c49698dc2390b7fd2d18d424d3b876371f9b775e2b462d4b41"}, - {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0a2074a37285570d54b55820687de3d2f2b9ecf1b714e482e48c9e7c0402038"}, - {file = "yarl-1.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f576ed278860df2721a5d57da3381040176ef1d07def9688a385c8330db61a1"}, - {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3a3709450a574d61be6ac53d582496014342ea34876af8dc17cc16da32826c9a"}, - {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bd80ed29761490c622edde5dd70537ca8c992c2952eb62ed46984f8eff66d6e8"}, - {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:32141e13a1d5a48525e519c9197d3f4d9744d818d5c7d6547524cc9eccc8971e"}, - {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8b8d3e4e014fb4274f1c5bf61511d2199e263909fb0b8bda2a7428b0894e8dc6"}, - {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:701bb4a8f4de191c8c0cc9a1e6d5142f4df880e9d1210e333b829ca9425570ed"}, - {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a45d94075ac0647621eaaf693c8751813a3eccac455d423f473ffed38c8ac5c9"}, - {file = "yarl-1.18.0-cp310-cp310-win32.whl", hash = "sha256:34176bfb082add67cb2a20abd85854165540891147f88b687a5ed0dc225750a0"}, - {file = "yarl-1.18.0-cp310-cp310-win_amd64.whl", hash = "sha256:73553bbeea7d6ec88c08ad8027f4e992798f0abc459361bf06641c71972794dc"}, - {file = "yarl-1.18.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b8e8c516dc4e1a51d86ac975b0350735007e554c962281c432eaa5822aa9765c"}, - {file = "yarl-1.18.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e6b4466714a73f5251d84b471475850954f1fa6acce4d3f404da1d55d644c34"}, - {file = "yarl-1.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c893f8c1a6d48b25961e00922724732d00b39de8bb0b451307482dc87bddcd74"}, - {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13aaf2bdbc8c86ddce48626b15f4987f22e80d898818d735b20bd58f17292ee8"}, - {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd21c0128e301851de51bc607b0a6da50e82dc34e9601f4b508d08cc89ee7929"}, - {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:205de377bd23365cd85562c9c6c33844050a93661640fda38e0567d2826b50df"}, - {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed69af4fe2a0949b1ea1d012bf065c77b4c7822bad4737f17807af2adb15a73c"}, - {file = "yarl-1.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e1c18890091aa3cc8a77967943476b729dc2016f4cfe11e45d89b12519d4a93"}, - {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91b8fb9427e33f83ca2ba9501221ffaac1ecf0407f758c4d2f283c523da185ee"}, - {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:536a7a8a53b75b2e98ff96edb2dfb91a26b81c4fed82782035767db5a465be46"}, - {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a64619a9c47c25582190af38e9eb382279ad42e1f06034f14d794670796016c0"}, - {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c73a6bbc97ba1b5a0c3c992ae93d721c395bdbb120492759b94cc1ac71bc6350"}, - {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a173401d7821a2a81c7b47d4e7d5c4021375a1441af0c58611c1957445055056"}, - {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7520e799b1f84e095cce919bd6c23c9d49472deeef25fe1ef960b04cca51c3fc"}, - {file = "yarl-1.18.0-cp311-cp311-win32.whl", hash = "sha256:c4cb992d8090d5ae5f7afa6754d7211c578be0c45f54d3d94f7781c495d56716"}, - {file = "yarl-1.18.0-cp311-cp311-win_amd64.whl", hash = "sha256:52c136f348605974c9b1c878addd6b7a60e3bf2245833e370862009b86fa4689"}, - {file = "yarl-1.18.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1ece25e2251c28bab737bdf0519c88189b3dd9492dc086a1d77336d940c28ced"}, - {file = "yarl-1.18.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:454902dc1830d935c90b5b53c863ba2a98dcde0fbaa31ca2ed1ad33b2a7171c6"}, - {file = "yarl-1.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:01be8688fc211dc237e628fcc209dda412d35de7642453059a0553747018d075"}, - {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d26f1fa9fa2167bb238f6f4b20218eb4e88dd3ef21bb8f97439fa6b5313e30d"}, - {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b234a4a9248a9f000b7a5dfe84b8cb6210ee5120ae70eb72a4dcbdb4c528f72f"}, - {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe94d1de77c4cd8caff1bd5480e22342dbd54c93929f5943495d9c1e8abe9f42"}, - {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b4c90c5363c6b0a54188122b61edb919c2cd1119684999d08cd5e538813a28e"}, - {file = "yarl-1.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49a98ecadc5a241c9ba06de08127ee4796e1009555efd791bac514207862b43d"}, - {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9106025c7f261f9f5144f9aa7681d43867eed06349a7cfb297a1bc804de2f0d1"}, - {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:f275ede6199d0f1ed4ea5d55a7b7573ccd40d97aee7808559e1298fe6efc8dbd"}, - {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f7edeb1dcc7f50a2c8e08b9dc13a413903b7817e72273f00878cb70e766bdb3b"}, - {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c083f6dd6951b86e484ebfc9c3524b49bcaa9c420cb4b2a78ef9f7a512bfcc85"}, - {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:80741ec5b471fbdfb997821b2842c59660a1c930ceb42f8a84ba8ca0f25a66aa"}, - {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b1a3297b9cad594e1ff0c040d2881d7d3a74124a3c73e00c3c71526a1234a9f7"}, - {file = "yarl-1.18.0-cp312-cp312-win32.whl", hash = "sha256:cd6ab7d6776c186f544f893b45ee0c883542b35e8a493db74665d2e594d3ca75"}, - {file = "yarl-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:039c299a0864d1f43c3e31570045635034ea7021db41bf4842693a72aca8df3a"}, - {file = "yarl-1.18.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6fb64dd45453225f57d82c4764818d7a205ee31ce193e9f0086e493916bd4f72"}, - {file = "yarl-1.18.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3adaaf9c6b1b4fc258584f4443f24d775a2086aee82d1387e48a8b4f3d6aecf6"}, - {file = "yarl-1.18.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:da206d1ec78438a563c5429ab808a2b23ad7bc025c8adbf08540dde202be37d5"}, - {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:576d258b21c1db4c6449b1c572c75d03f16a482eb380be8003682bdbe7db2f28"}, - {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c60e547c0a375c4bfcdd60eef82e7e0e8698bf84c239d715f5c1278a73050393"}, - {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e3818eabaefb90adeb5e0f62f047310079d426387991106d4fbf3519eec7d90a"}, - {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5f72421246c21af6a92fbc8c13b6d4c5427dfd949049b937c3b731f2f9076bd"}, - {file = "yarl-1.18.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7fa7d37f2ada0f42e0723632993ed422f2a679af0e200874d9d861720a54f53e"}, - {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:42ba84e2ac26a3f252715f8ec17e6fdc0cbf95b9617c5367579fafcd7fba50eb"}, - {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:6a49ad0102c0f0ba839628d0bf45973c86ce7b590cdedf7540d5b1833ddc6f00"}, - {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:96404e8d5e1bbe36bdaa84ef89dc36f0e75939e060ca5cd45451aba01db02902"}, - {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:a0509475d714df8f6d498935b3f307cd122c4ca76f7d426c7e1bb791bcd87eda"}, - {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:1ff116f0285b5c8b3b9a2680aeca29a858b3b9e0402fc79fd850b32c2bcb9f8b"}, - {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e2580c1d7e66e6d29d6e11855e3b1c6381971e0edd9a5066e6c14d79bc8967af"}, - {file = "yarl-1.18.0-cp313-cp313-win32.whl", hash = "sha256:14408cc4d34e202caba7b5ac9cc84700e3421a9e2d1b157d744d101b061a4a88"}, - {file = "yarl-1.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:1db1537e9cb846eb0ff206eac667f627794be8b71368c1ab3207ec7b6f8c5afc"}, - {file = "yarl-1.18.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fa2c9cb607e0f660d48c54a63de7a9b36fef62f6b8bd50ff592ce1137e73ac7d"}, - {file = "yarl-1.18.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c0f4808644baf0a434a3442df5e0bedf8d05208f0719cedcd499e168b23bfdc4"}, - {file = "yarl-1.18.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7db9584235895a1dffca17e1c634b13870852094f6389b68dcc6338086aa7b08"}, - {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:309f8d27d6f93ceeeb80aa6980e883aa57895270f7f41842b92247e65d7aeddf"}, - {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:609ffd44fed2ed88d9b4ef62ee860cf86446cf066333ad4ce4123505b819e581"}, - {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f172b8b2c72a13a06ea49225a9c47079549036ad1b34afa12d5491b881f5b993"}, - {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d89ae7de94631b60d468412c18290d358a9d805182373d804ec839978b120422"}, - {file = "yarl-1.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:466d31fd043ef9af822ee3f1df8fdff4e8c199a7f4012c2642006af240eade17"}, - {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7609b8462351c4836b3edce4201acb6dd46187b207c589b30a87ffd1813b48dc"}, - {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:d9d4f5e471e8dc49b593a80766c2328257e405f943c56a3dc985c125732bc4cf"}, - {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:67b336c15e564d76869c9a21316f90edf546809a5796a083b8f57c845056bc01"}, - {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b212452b80cae26cb767aa045b051740e464c5129b7bd739c58fbb7deb339e7b"}, - {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:38b39b7b3e692b6c92b986b00137a3891eddb66311b229d1940dcbd4f025083c"}, - {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ee6884a8848792d58b854946b685521f41d8871afa65e0d4a774954e9c9e89"}, - {file = "yarl-1.18.0-cp39-cp39-win32.whl", hash = "sha256:b4095c5019bb889aa866bf12ed4c85c0daea5aafcb7c20d1519f02a1e738f07f"}, - {file = "yarl-1.18.0-cp39-cp39-win_amd64.whl", hash = "sha256:2d90f2e4d16a5b0915ee065218b435d2ef619dd228973b1b47d262a6f7cd8fa5"}, - {file = "yarl-1.18.0-py3-none-any.whl", hash = "sha256:dbf53db46f7cf176ee01d8d98c39381440776fcda13779d269a8ba664f69bec0"}, - {file = "yarl-1.18.0.tar.gz", hash = "sha256:20d95535e7d833889982bfe7cc321b7f63bf8879788fee982c76ae2b24cfb715"}, + {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7df647e8edd71f000a5208fe6ff8c382a1de8edfbccdbbfe649d263de07d8c34"}, + {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c69697d3adff5aa4f874b19c0e4ed65180ceed6318ec856ebc423aa5850d84f7"}, + {file = "yarl-1.18.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:602d98f2c2d929f8e697ed274fbadc09902c4025c5a9963bf4e9edfc3ab6f7ed"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c654d5207c78e0bd6d749f6dae1dcbbfde3403ad3a4b11f3c5544d9906969dde"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5094d9206c64181d0f6e76ebd8fb2f8fe274950a63890ee9e0ebfd58bf9d787b"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35098b24e0327fc4ebdc8ffe336cee0a87a700c24ffed13161af80124b7dc8e5"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3236da9272872443f81fedc389bace88408f64f89f75d1bdb2256069a8730ccc"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2c08cc9b16f4f4bc522771d96734c7901e7ebef70c6c5c35dd0f10845270bcd"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80316a8bd5109320d38eef8833ccf5f89608c9107d02d2a7f985f98ed6876990"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c1e1cc06da1491e6734f0ea1e6294ce00792193c463350626571c287c9a704db"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fea09ca13323376a2fdfb353a5fa2e59f90cd18d7ca4eaa1fd31f0a8b4f91e62"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e3b9fd71836999aad54084906f8663dffcd2a7fb5cdafd6c37713b2e72be1760"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:757e81cae69244257d125ff31663249b3013b5dc0a8520d73694aed497fb195b"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b1771de9944d875f1b98a745bc547e684b863abf8f8287da8466cf470ef52690"}, + {file = "yarl-1.18.3-cp310-cp310-win32.whl", hash = "sha256:8874027a53e3aea659a6d62751800cf6e63314c160fd607489ba5c2edd753cf6"}, + {file = "yarl-1.18.3-cp310-cp310-win_amd64.whl", hash = "sha256:93b2e109287f93db79210f86deb6b9bbb81ac32fc97236b16f7433db7fc437d8"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8503ad47387b8ebd39cbbbdf0bf113e17330ffd339ba1144074da24c545f0069"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:02ddb6756f8f4517a2d5e99d8b2f272488e18dd0bfbc802f31c16c6c20f22193"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:67a283dd2882ac98cc6318384f565bffc751ab564605959df4752d42483ad889"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d980e0325b6eddc81331d3f4551e2a333999fb176fd153e075c6d1c2530aa8a8"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b643562c12680b01e17239be267bc306bbc6aac1f34f6444d1bded0c5ce438ca"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c017a3b6df3a1bd45b9fa49a0f54005e53fbcad16633870104b66fa1a30a29d8"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75674776d96d7b851b6498f17824ba17849d790a44d282929c42dbb77d4f17ae"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ccaa3a4b521b780a7e771cc336a2dba389a0861592bbce09a476190bb0c8b4b3"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2d06d3005e668744e11ed80812e61efd77d70bb7f03e33c1598c301eea20efbb"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:9d41beda9dc97ca9ab0b9888cb71f7539124bc05df02c0cff6e5acc5a19dcc6e"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ba23302c0c61a9999784e73809427c9dbedd79f66a13d84ad1b1943802eaaf59"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6748dbf9bfa5ba1afcc7556b71cda0d7ce5f24768043a02a58846e4a443d808d"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0b0cad37311123211dc91eadcb322ef4d4a66008d3e1bdc404808992260e1a0e"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0fb2171a4486bb075316ee754c6d8382ea6eb8b399d4ec62fde2b591f879778a"}, + {file = "yarl-1.18.3-cp311-cp311-win32.whl", hash = "sha256:61b1a825a13bef4a5f10b1885245377d3cd0bf87cba068e1d9a88c2ae36880e1"}, + {file = "yarl-1.18.3-cp311-cp311-win_amd64.whl", hash = "sha256:b9d60031cf568c627d028239693fd718025719c02c9f55df0a53e587aab951b5"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1dd4bdd05407ced96fed3d7f25dbbf88d2ffb045a0db60dbc247f5b3c5c25d50"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7c33dd1931a95e5d9a772d0ac5e44cac8957eaf58e3c8da8c1414de7dd27c576"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:25b411eddcfd56a2f0cd6a384e9f4f7aa3efee14b188de13048c25b5e91f1640"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:436c4fc0a4d66b2badc6c5fc5ef4e47bb10e4fd9bf0c79524ac719a01f3607c2"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e35ef8683211db69ffe129a25d5634319a677570ab6b2eba4afa860f54eeaf75"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84b2deecba4a3f1a398df819151eb72d29bfeb3b69abb145a00ddc8d30094512"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e5a1fea0fd4f5bfa7440a47eff01d9822a65b4488f7cff83155a0f31a2ecba"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0e883008013c0e4aef84dcfe2a0b172c4d23c2669412cf5b3371003941f72bb"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5a3f356548e34a70b0172d8890006c37be92995f62d95a07b4a42e90fba54272"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ccd17349166b1bee6e529b4add61727d3f55edb7babbe4069b5764c9587a8cc6"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b958ddd075ddba5b09bb0be8a6d9906d2ce933aee81100db289badbeb966f54e"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c7d79f7d9aabd6011004e33b22bc13056a3e3fb54794d138af57f5ee9d9032cb"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4891ed92157e5430874dad17b15eb1fda57627710756c27422200c52d8a4e393"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ce1af883b94304f493698b00d0f006d56aea98aeb49d75ec7d98cd4a777e9285"}, + {file = "yarl-1.18.3-cp312-cp312-win32.whl", hash = "sha256:f91c4803173928a25e1a55b943c81f55b8872f0018be83e3ad4938adffb77dd2"}, + {file = "yarl-1.18.3-cp312-cp312-win_amd64.whl", hash = "sha256:7e2ee16578af3b52ac2f334c3b1f92262f47e02cc6193c598502bd46f5cd1477"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:90adb47ad432332d4f0bc28f83a5963f426ce9a1a8809f5e584e704b82685dcb"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:913829534200eb0f789d45349e55203a091f45c37a2674678744ae52fae23efa"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ef9f7768395923c3039055c14334ba4d926f3baf7b776c923c93d80195624782"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a19f62ff30117e706ebc9090b8ecc79aeb77d0b1f5ec10d2d27a12bc9f66d0"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e17c9361d46a4d5addf777c6dd5eab0715a7684c2f11b88c67ac37edfba6c482"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a74a13a4c857a84a845505fd2d68e54826a2cd01935a96efb1e9d86c728e186"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41f7ce59d6ee7741af71d82020346af364949314ed3d87553763a2df1829cc58"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f52a265001d830bc425f82ca9eabda94a64a4d753b07d623a9f2863fde532b53"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:82123d0c954dc58db301f5021a01854a85bf1f3bb7d12ae0c01afc414a882ca2"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:2ec9bbba33b2d00999af4631a3397d1fd78290c48e2a3e52d8dd72db3a067ac8"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fbd6748e8ab9b41171bb95c6142faf068f5ef1511935a0aa07025438dd9a9bc1"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:877d209b6aebeb5b16c42cbb377f5f94d9e556626b1bfff66d7b0d115be88d0a"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b464c4ab4bfcb41e3bfd3f1c26600d038376c2de3297760dfe064d2cb7ea8e10"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8d39d351e7faf01483cc7ff7c0213c412e38e5a340238826be7e0e4da450fdc8"}, + {file = "yarl-1.18.3-cp313-cp313-win32.whl", hash = "sha256:61ee62ead9b68b9123ec24bc866cbef297dd266175d53296e2db5e7f797f902d"}, + {file = "yarl-1.18.3-cp313-cp313-win_amd64.whl", hash = "sha256:578e281c393af575879990861823ef19d66e2b1d0098414855dd367e234f5b3c"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:61e5e68cb65ac8f547f6b5ef933f510134a6bf31bb178be428994b0cb46c2a04"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fe57328fbc1bfd0bd0514470ac692630f3901c0ee39052ae47acd1d90a436719"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a440a2a624683108a1b454705ecd7afc1c3438a08e890a1513d468671d90a04e"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09c7907c8548bcd6ab860e5f513e727c53b4a714f459b084f6580b49fa1b9cee"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4f6450109834af88cb4cc5ecddfc5380ebb9c228695afc11915a0bf82116789"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9ca04806f3be0ac6d558fffc2fdf8fcef767e0489d2684a21912cc4ed0cd1b8"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77a6e85b90a7641d2e07184df5557132a337f136250caafc9ccaa4a2a998ca2c"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6333c5a377c8e2f5fae35e7b8f145c617b02c939d04110c76f29ee3676b5f9a5"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0b3c92fa08759dbf12b3a59579a4096ba9af8dd344d9a813fc7f5070d86bbab1"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:4ac515b860c36becb81bb84b667466885096b5fc85596948548b667da3bf9f24"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:045b8482ce9483ada4f3f23b3774f4e1bf4f23a2d5c912ed5170f68efb053318"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:a4bb030cf46a434ec0225bddbebd4b89e6471814ca851abb8696170adb163985"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:54d6921f07555713b9300bee9c50fb46e57e2e639027089b1d795ecd9f7fa910"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1d407181cfa6e70077df3377938c08012d18893f9f20e92f7d2f314a437c30b1"}, + {file = "yarl-1.18.3-cp39-cp39-win32.whl", hash = "sha256:ac36703a585e0929b032fbaab0707b75dc12703766d0b53486eabd5139ebadd5"}, + {file = "yarl-1.18.3-cp39-cp39-win_amd64.whl", hash = "sha256:ba87babd629f8af77f557b61e49e7c7cac36f22f871156b91e10a6e9d4f829e9"}, + {file = "yarl-1.18.3-py3-none-any.whl", hash = "sha256:b57f4f58099328dfb26c6a771d09fb20dbbae81d20cfb66141251ea063bd101b"}, + {file = "yarl-1.18.3.tar.gz", hash = "sha256:ac1801c45cbf77b6c99242eeff4fffb5e4e73a800b5c4ad4fc0be5def634d2e1"}, ] [package.dependencies] @@ -2716,4 +2845,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = ">=3.10,<3.13" -content-hash = "626bacd031ee8144a6c3ade63766df3eb7edda59cb7dd59a5c469bbf130c0183" +content-hash = "e33eb63b42966c9da0f501ad3257c18fdbd1e74ecb4c20a84ff8167e5a405047" diff --git a/services/finetuning/pyproject.toml b/services/finetuning/pyproject.toml index 99fa18ba..bebe42b1 100644 --- a/services/finetuning/pyproject.toml +++ b/services/finetuning/pyproject.toml @@ -59,7 +59,8 @@ priority = "explicit" optional = true [tool.poetry.group.dev.dependencies] pytest = "*" -redis = "*" +wget = "*" +kubeflow-training = "*" [tool.poetry.group.redis] optional = true diff --git a/services/finetuning/tests/data/ETTh2.csv b/services/finetuning/tests/data/ETTh2.csv deleted file mode 100644 index a7652bb0..00000000 --- a/services/finetuning/tests/data/ETTh2.csv +++ /dev/null @@ -1,17421 +0,0 @@ -,date,HUFL,HULL,MUFL,MULL,LUFL,LULL,OT -0,2016-07-01 00:00:00,41.13000106811523,12.480999946594238,36.5359992980957,9.354999542236328,4.423999786376953,1.3109999895095823,38.6619987487793 -1,2016-07-01 01:00:00,37.52799987792969,10.13599967956543,33.93600082397461,7.532000064849853,4.434999942779541,1.2150000333786009,37.124000549316406 -2,2016-07-01 02:00:00,37.946998596191406,11.309000015258787,35.33000183105469,9.006999969482422,2.0999999046325684,0.0,36.46500015258789 -3,2016-07-01 03:00:00,38.95199966430664,11.895000457763672,35.54399871826172,9.435999870300291,3.380000114440918,1.2150000333786009,33.60850143432617 -4,2016-07-01 04:00:00,38.11399841308594,11.47599983215332,35.40999984741211,9.623000144958496,2.0360000133514404,0.0,31.850500106811523 -5,2016-07-01 05:00:00,36.77399826049805,10.973999977111816,34.928001403808594,9.248000144958496,2.0360000133514404,0.0,30.53199958801269 -6,2016-07-01 06:00:00,39.0359992980957,11.810999870300291,37.15299987792969,10.07900047302246,2.0360000133514404,0.0,30.093000411987305 -7,2016-07-01 07:00:00,39.37099838256836,11.309000015258787,36.5359992980957,9.409000396728516,2.068000078201294,0.0,29.87299919128418 -8,2016-07-01 08:00:00,33.92599868774414,8.461000442504883,31.89900016784668,6.486999988555907,2.0150001049041752,0.0,29.65299987792969 -9,2016-07-01 09:00:00,38.44900131225586,13.904999732971191,37.2869987487793,12.142999649047852,1.2690000534057615,0.0,29.21349906921387 -10,2016-07-01 10:00:00,35.93600082397461,9.550000190734863,34.257999420166016,8.041999816894531,1.2690000534057615,0.0,27.45599937438965 -11,2016-07-01 11:00:00,35.76900100708008,9.465999603271484,33.93600082397461,7.907999992370605,1.2690000534057615,0.0,27.45599937438965 -12,2016-07-01 12:00:00,40.20899963378906,12.984000205993652,38.76100158691406,11.097999572753906,1.343000054359436,0.0,27.236499786376957 -13,2016-07-01 13:00:00,37.025001525878906,11.895000457763672,35.73199844360352,10.427000045776367,1.3860000371932983,0.0,26.57699966430664 -14,2016-07-01 14:00:00,39.95700073242188,13.319000244140623,38.573001861572266,11.418999671936035,1.2899999618530271,0.0,26.79700088500977 -15,2016-07-01 15:00:00,40.29199981689453,13.487000465393065,39.055999755859375,11.875,1.2690000534057615,0.0,26.79700088500977 -16,2016-07-01 16:00:00,40.87900161743164,13.56999969482422,39.45800018310547,11.847999572753904,1.493000030517578,0.0,26.79700088500977 -17,2016-07-01 17:00:00,42.1349983215332,13.402999877929688,39.24399948120117,11.28499984741211,2.7079999446868896,0.0,26.57749938964844 -18,2016-07-01 18:00:00,42.72200012207031,13.98900032043457,39.37799835205078,11.607000350952148,2.7079999446868896,0.0,26.57749938964844 -19,2016-07-01 19:00:00,37.36100006103516,10.470999717712402,34.472000122070305,8.604999542236326,2.7079999446868896,0.0,26.13750076293945 -20,2016-07-01 20:00:00,41.13000106811523,12.64900016784668,37.76900100708008,10.401000022888184,2.7079999446868896,0.0,26.13750076293945 -21,2016-07-01 21:00:00,36.52299880981445,10.470999717712402,33.50699996948242,8.496999740600586,2.7079999446868896,0.0,25.69849967956543 -22,2016-07-01 22:00:00,36.104000091552734,10.38700008392334,34.12400054931641,9.006999969482422,2.7079999446868896,0.0,25.917999267578125 -23,2016-07-01 23:00:00,36.43899917602539,10.638999938964844,33.47999954223633,8.925999641418457,2.7079999446868896,0.0,25.917999267578125 -24,2016-07-02 00:00:00,35.60100173950195,11.47599983215332,33.69499969482422,9.890999794006348,1.5349999666213991,0.0,25.917999267578125 -25,2016-07-02 01:00:00,32.92100143432617,9.968000411987305,32.273998260498054,8.819000244140625,0.0,0.0,26.357500076293945 -26,2016-07-02 02:00:00,31.32900047302246,9.550000190734863,30.3439998626709,8.496999740600586,0.0,0.0,26.13750076293945 -27,2016-07-02 03:00:00,30.65900039672852,9.21399974822998,29.834999084472656,8.255999565124513,0.0,0.0,25.69849967956543 -28,2016-07-02 04:00:00,30.82699966430664,9.130999565124512,29.75399971008301,8.015000343322754,1.2150000333786009,0.0,25.69849967956543 -29,2016-07-02 05:00:00,29.48600006103516,8.293000221252441,28.54800033569336,7.1570000648498535,0.0,0.0,25.917999267578125 -30,2016-07-02 06:00:00,30.072999954223643,7.454999923706055,28.68199920654297,6.111999988555907,1.2899999618530271,0.0,25.917999267578125 -31,2016-07-02 07:00:00,33.088001251220696,8.711999893188478,30.961000442504893,7.0229997634887695,1.2580000162124634,0.0,25.917999267578125 -32,2016-07-02 08:00:00,34.09400177001953,8.878999710083008,31.54999923706055,7.3979997634887695,2.483999967575073,0.0,25.478500366210927 -33,2016-07-02 09:00:00,34.59600067138672,9.381999969482422,31.97900009155273,7.61299991607666,2.483999967575073,0.0,25.697999954223643 -34,2016-07-02 10:00:00,29.82099914550781,8.125,27.50300025939941,6.620999813079834,2.483999967575073,0.0,25.917999267578125 -35,2016-07-02 11:00:00,31.58099937438965,7.706999778747559,28.76300048828125,6.004000186920166,2.483999967575073,0.0,25.917999267578125 -36,2016-07-02 12:00:00,30.57500076293945,7.203999996185303,27.95800018310547,5.789999961853027,2.483999967575073,0.0,26.13750076293945 -37,2016-07-02 13:00:00,30.1560001373291,7.203999996185303,27.395000457763672,5.5219998359680185,2.483999967575073,0.0,26.357500076293945 -38,2016-07-02 14:00:00,29.319000244140625,6.449999809265138,26.40399932861328,4.879000186920166,2.483999967575073,0.0,26.57749938964844 -39,2016-07-02 15:00:00,30.90999984741211,7.454999923706055,27.82399940490723,5.736000061035156,2.483999967575073,0.0,27.45599937438965 -40,2016-07-02 16:00:00,32.333999633789055,8.711999893188478,28.36000061035156,6.620999813079834,3.88100004196167,1.22599995136261,27.67600059509277 -41,2016-07-02 17:00:00,32.16699981689453,7.706999778747559,28.36000061035156,5.736000061035156,3.763000011444092,0.0,28.11549949645996 -42,2016-07-02 18:00:00,31.832000732421875,7.539000034332275,28.95000076293945,5.789999961853027,3.753000020980835,0.0,28.554500579833984 -43,2016-07-02 19:00:00,32.250999450683594,8.293000221252441,27.82399940490723,5.978000164031982,3.753000020980835,1.22599995136261,28.77449989318848 -44,2016-07-02 20:00:00,31.916000366210927,7.539000034332275,27.42200088500977,5.388000011444092,5.043000221252441,1.2369999885559082,29.653499603271484 -45,2016-07-02 21:00:00,31.32900047302246,8.376999855041504,28.68199920654297,6.5939998626708975,3.6040000915527344,0.0,29.21349906921387 -46,2016-07-02 22:00:00,36.104000091552734,9.550000190734863,32.514999389648445,7.1570000648498535,4.882999897003174,1.5889999866485596,27.89550018310547 -47,2016-07-02 23:00:00,36.02000045776367,10.052000045776367,32.569000244140625,7.907999992370605,3.433000087738037,0.0,27.236499786376957 -48,2016-07-03 00:00:00,36.35499954223633,9.968000411987305,32.514999389648445,7.827000141143799,3.433000087738037,0.0,27.675500869750977 -49,2016-07-03 01:00:00,35.182998657226555,12.062999725341797,31.38999938964844,9.784000396728516,3.433000087738037,1.3220000267028809,28.554500579833984 -50,2016-07-03 02:00:00,36.858001708984375,11.225000381469728,32.67599868774414,8.791999816894531,3.433000087738037,1.2369999885559082,28.554500579833984 -51,2016-07-03 03:00:00,35.182998657226555,10.470999717712402,32.060001373291016,8.52400016784668,3.433000087738037,0.0,28.554500579833984 -52,2016-07-03 04:00:00,32.16699981689453,8.878999710083008,28.708999633789062,6.915999889373777,3.433000087738037,0.0,28.11549949645996 -53,2016-07-03 05:00:00,34.0099983215332,10.13599967956543,30.45100021362305,8.282999992370605,3.433000087738037,0.0,28.11549949645996 -54,2016-07-03 06:00:00,34.17699813842773,10.220000267028809,32.30099868774414,8.899999618530273,1.9830000400543213,0.0,27.89550018310547 -55,2016-07-03 07:00:00,32.75299835205078,8.963000297546387,29.5939998626709,7.077000141143799,3.1559998989105225,0.0,27.675500869750977 -56,2016-07-03 08:00:00,32.417999267578125,8.878999710083008,29.4060001373291,7.130000114440918,3.1559998989105225,0.0,27.236499786376957 -57,2016-07-03 09:00:00,29.56999969482422,10.722000122070312,27.34199905395508,9.56999969482422,3.1559998989105225,0.0,28.11549949645996 -58,2016-07-03 10:00:00,34.512001037597656,12.062999725341797,30.98699951171875,9.99899959564209,3.1559998989105225,0.0,28.77400016784668 -59,2016-07-03 11:00:00,33.590999603271484,11.392000198364258,29.9689998626709,9.32800006866455,3.1559998989105225,0.0,29.653499603271484 -60,2016-07-03 12:00:00,35.518001556396484,12.815999984741213,32.03300094604492,10.722000122070312,3.1559998989105225,0.0,31.41150093078613 -61,2016-07-03 13:00:00,35.685001373291016,13.152000427246096,33.13199996948242,11.071000099182127,3.1559998989105225,0.0,31.41150093078613 -62,2016-07-03 14:00:00,33.84199905395508,12.480999946594238,30.61199951171875,10.401000022888184,3.0169999599456787,0.0,31.41150093078613 -63,2016-07-03 15:00:00,32.669998168945305,12.314000129699709,29.86199951171875,10.29300022125244,3.0169999599456787,0.0,31.41150093078613 -64,2016-07-03 16:00:00,34.09400177001953,12.314000129699709,31.06800079345703,10.29300022125244,3.0169999599456787,0.0,32.5099983215332 -65,2016-07-03 17:00:00,40.459999084472656,14.324000358581545,36.8849983215332,11.847999572753904,3.0169999599456787,0.0,32.72949981689453 -66,2016-07-03 18:00:00,40.29199981689453,13.654000282287598,37.04600143432617,11.5,3.0169999599456787,0.0,32.94900131225586 -67,2016-07-03 19:00:00,35.60100173950195,11.392000198364258,32.72999954223633,9.354999542236328,2.5160000324249268,0.0,32.94900131225586 -68,2016-07-03 20:00:00,37.36100006103516,11.644000053405762,34.097000122070305,9.48900032043457,3.92300009727478,0.0,31.850500106811523 -69,2016-07-03 21:00:00,38.28200149536133,12.732999801635742,35.089000701904304,10.588000297546388,3.92300009727478,0.0,30.75200080871582 -70,2016-07-03 22:00:00,38.198001861572266,13.067999839782717,34.365001678466804,10.560999870300291,3.92300009727478,1.246999979019165,29.87299919128418 -71,2016-07-03 23:00:00,37.52799987792969,12.64900016784668,33.990001678466804,10.401000022888184,3.4219999313354488,0.0,29.43350028991699 -72,2016-07-04 00:00:00,36.43899917602539,13.152000427246096,33.990001678466804,10.989999771118164,3.325999975204468,0.0,28.99399948120117 -73,2016-07-04 01:00:00,37.36100006103516,13.56999969482422,35.4640007019043,11.982000350952148,2.0999999046325684,0.0,28.334999084472656 -74,2016-07-04 02:00:00,31.2450008392334,10.220000267028809,29.351999282836918,8.819000244140625,1.940000057220459,0.0,28.77449989318848 -75,2016-07-04 03:00:00,34.68000030517578,12.732999801635742,32.38100051879883,11.12399959564209,1.940000057220459,0.0,28.55500030517578 -76,2016-07-04 04:00:00,31.16200065612793,11.5600004196167,29.13800048828125,9.595999717712402,1.919000029563904,0.0,28.55500030517578 -77,2016-07-04 05:00:00,33.34000015258789,12.5649995803833,30.53199958801269,10.642000198364258,3.1879999637603764,0.0,28.334999084472656 -78,2016-07-04 06:00:00,38.198001861572266,13.821999549865724,34.713001251220696,11.66100025177002,3.1879999637603764,0.0,27.89550018310547 -79,2016-07-04 07:00:00,37.77899932861328,13.654000282287598,34.41899871826172,11.472999572753904,3.2090001106262207,0.0,27.67600059509277 -80,2016-07-04 08:00:00,33.84199905395508,9.465999603271484,31.631000518798828,8.203000068664549,1.962000012397766,0.0,27.89550018310547 -81,2016-07-04 09:00:00,35.93600082397461,11.47599983215332,34.01599884033203,9.890999794006348,1.962000012397766,0.0,28.99399948120117 -82,2016-07-04 10:00:00,35.014999389648445,10.052000045776367,32.89099884033203,8.416999816894531,1.962000012397766,0.0,30.97150039672852 -83,2016-07-04 11:00:00,38.28200149536133,12.64900016784668,36.027000427246094,10.722000122070312,1.962000012397766,0.0,32.50949859619141 -84,2016-07-04 12:00:00,41.96799850463867,13.654000282287598,39.67300033569336,11.741000175476074,1.962000012397766,0.0,35.146499633789055 -85,2016-07-04 13:00:00,40.459999084472656,13.487000465393065,38.49300003051758,11.579999923706056,1.962000012397766,0.0,36.46500015258789 -86,2016-07-04 14:00:00,38.78499984741211,13.067999839782717,36.7509994506836,11.178000450134276,1.962000012397766,0.0,37.78350067138672 -87,2016-07-04 15:00:00,39.790000915527344,12.39799976348877,37.823001861572266,10.614999771118164,1.962000012397766,0.0,37.34349822998047 -88,2016-07-04 16:00:00,38.86800003051758,12.480999946594238,36.777000427246094,10.480999946594238,1.962000012397766,0.0,36.90449905395508 -89,2016-07-04 17:00:00,39.62200164794922,12.39799976348877,36.9379997253418,10.213000297546388,1.962000012397766,0.0,33.827999114990234 -90,2016-07-04 18:00:00,43.97800064086914,13.487000465393065,40.28900146484375,10.776000022888184,3.1879999637603764,0.0,32.94900131225586 -91,2016-07-04 19:00:00,37.44400024414063,9.968000411987305,34.98199844360352,7.747000217437744,3.1879999637603764,0.0,33.16899871826172 -92,2016-07-04 20:00:00,40.29199981689453,11.979000091552734,36.027000427246094,9.11400032043457,4.370999813079834,1.3109999895095823,32.72949981689453 -93,2016-07-04 21:00:00,41.38100051879883,12.314000129699709,38.62699890136719,10.07900047302246,3.0920000076293945,0.0,32.070499420166016 -94,2016-07-04 22:00:00,36.52299880981445,9.800999641418455,33.21200180053711,7.692999839782715,4.455999851226807,0.0,31.631000518798828 -95,2016-07-04 23:00:00,37.025001525878906,10.805999755859377,33.077999114990234,8.604999542236326,4.446000099182129,1.246999979019165,31.631000518798828 -96,2016-07-05 00:00:00,35.518001556396484,10.220000267028809,32.30099868774414,8.444000244140625,3.2090001106262207,0.0,31.41150093078613 -97,2016-07-05 01:00:00,34.429000854492195,9.465999603271484,31.09499931335449,7.479000091552732,3.2090001106262207,0.0,30.97150039672852 -98,2016-07-05 02:00:00,35.60100173950195,10.38700008392334,32.194000244140625,8.550999641418457,3.220000028610228,0.0,30.53249931335449 -99,2016-07-05 03:00:00,37.025001525878906,11.644000053405762,34.28499984741211,9.729999542236328,3.220000028610228,0.0,28.99399948120117 -100,2016-07-05 04:00:00,33.50699996948242,9.717000007629396,30.82699966430664,7.960999965667725,2.984999895095825,0.0,28.77449989318848 -101,2016-07-05 05:00:00,35.60100173950195,10.220000267028809,32.54199981689453,8.444000244140625,2.984999895095825,0.0,29.43350028991699 -102,2016-07-05 06:00:00,39.53799819946289,12.314000129699709,36.1879997253418,10.185999870300291,2.9749999046325684,0.0,30.09250068664551 -103,2016-07-05 07:00:00,37.946998596191406,12.062999725341797,35.57099914550781,10.024999618530272,2.9749999046325684,0.0,31.19149971008301 -104,2016-07-05 08:00:00,36.35499954223633,9.968000411987305,33.400001525878906,7.960999965667725,2.9749999046325684,0.0,31.631000518798828 -105,2016-07-05 09:00:00,36.77399826049805,11.47599983215332,34.928001403808594,9.756999969482422,2.9749999046325684,0.0,31.631000518798828 -106,2016-07-05 10:00:00,38.11399841308594,11.392000198364258,36.10699844360352,9.729999542236328,2.9749999046325684,0.0,33.388999938964844 -107,2016-07-05 11:00:00,41.88399887084961,13.402999877929688,39.75299835205078,11.472999572753904,1.715999960899353,0.0,34.487499237060554 -108,2016-07-05 12:00:00,42.1349983215332,13.56999969482422,40.50299835205078,11.66100025177002,1.715999960899353,0.0,34.047500610351555 -109,2016-07-05 13:00:00,41.71599960327149,13.067999839782717,39.18999862670898,10.96399974822998,2.943000078201294,0.0,32.070499420166016 -110,2016-07-05 14:00:00,39.37099838256836,11.5600004196167,36.24100112915039,9.48900032043457,2.943000078201294,0.0,30.97150039672852 -111,2016-07-05 15:00:00,42.88899993896485,14.156999588012695,40.07500076293945,11.902000427246096,2.943000078201294,0.0,30.75200080871582 -112,2016-07-05 16:00:00,39.11999893188477,12.815999984741213,36.24100112915039,10.668999671936035,2.943000078201294,0.0,31.850500106811523 -113,2016-07-05 17:00:00,39.20299911499024,12.480999946594238,35.678001403808594,10.07900047302246,2.943000078201294,0.0,32.94900131225586 -114,2016-07-05 18:00:00,40.54399871826172,13.319000244140623,36.7509994506836,10.829999923706056,4.2109999656677255,0.0,33.60850143432617 -115,2016-07-05 19:00:00,34.763999938964844,9.633000373840332,31.54999923706055,7.532000064849853,2.996000051498413,0.0,33.388999938964844 -116,2016-07-05 20:00:00,37.19300079345703,11.727999687194824,33.077999114990234,9.515999794006348,4.254000186920166,1.246999979019165,33.388999938964844 -117,2016-07-05 21:00:00,39.2869987487793,12.39799976348877,35.11600112915039,9.864999771118164,4.190000057220459,1.3109999895095823,33.388999938964844 -118,2016-07-05 22:00:00,36.35499954223633,11.810999870300291,33.90900039672852,9.890999794006348,2.9749999046325684,0.0,33.16899871826172 -119,2016-07-05 23:00:00,40.04100036621094,12.39799976348877,37.2599983215332,10.427000045776367,2.9749999046325684,0.0,33.16899871826172 -120,2016-07-06 00:00:00,37.44400024414063,11.47599983215332,34.44499969482422,9.435999870300291,2.9749999046325684,0.0,33.16899871826172 -121,2016-07-06 01:00:00,40.20899963378906,12.5649995803833,36.13399887084961,9.91800022125244,4.190000057220459,1.2690000534057615,33.16899871826172 -122,2016-07-06 02:00:00,38.44900131225586,11.979000091552734,35.54399871826172,9.91800022125244,2.815000057220459,0.0,32.949501037597656 -123,2016-07-06 03:00:00,37.36100006103516,11.895000457763672,34.41899871826172,9.729999542236328,2.7079999446868896,0.0,32.949501037597656 -124,2016-07-06 04:00:00,38.78499984741211,11.895000457763672,34.766998291015625,9.595999717712402,2.7079999446868896,0.0,32.72949981689453 -125,2016-07-06 05:00:00,37.10900115966797,11.5600004196167,34.98199844360352,9.890999794006348,2.7720000743865967,0.0,32.72949981689453 -126,2016-07-06 06:00:00,39.53799819946289,12.39799976348877,35.40999984741211,9.810999870300291,3.986999988555908,1.2150000333786009,32.72949981689453 -127,2016-07-06 07:00:00,39.70600128173828,13.067999839782717,37.18000030517578,10.883000373840332,2.7720000743865967,0.0,32.5099983215332 -128,2016-07-06 08:00:00,36.43899917602539,10.722000122070312,32.83700180053711,8.52400016784668,2.7720000743865967,0.0,32.290000915527344 -129,2016-07-06 09:00:00,40.29199981689453,14.743000030517578,38.25199890136719,12.812999725341797,2.7720000743865967,0.0,32.50949859619141 -130,2016-07-06 10:00:00,35.76900100708008,11.225000381469728,32.327999114990234,9.248000144958496,2.7720000743865967,0.0,32.72949981689453 -131,2016-07-06 11:00:00,36.68999862670898,9.800999641418455,33.238998413085945,7.907999992370605,2.740000009536743,0.0,33.388500213623054 -132,2016-07-06 12:00:00,36.60699844360352,10.973999977111816,34.257999420166016,9.381999969482422,2.740000009536743,0.0,34.487499237060554 -133,2016-07-06 13:00:00,39.20299911499024,11.392000198364258,36.64300155639648,9.461999893188477,2.740000009536743,0.0,34.926498413085945 -134,2016-07-06 14:00:00,38.617000579833984,10.722000122070312,35.597999572753906,8.604999542236326,2.740000009536743,0.0,35.36650085449219 -135,2016-07-06 15:00:00,43.30799865722656,13.904999732971191,41.20000076293945,11.526000022888184,2.740000009536743,0.0,36.24549865722656 -136,2016-07-06 16:00:00,46.57500076293945,15.161999702453612,43.02299880981445,12.357000350952148,2.740000009536743,0.0,33.827999114990234 -137,2016-07-06 17:00:00,46.49100112915039,14.072999954223633,43.74700164794922,11.607000350952148,2.5160000324249268,0.0,33.388500213623054 -138,2016-07-06 18:00:00,48.33399963378906,14.241000175476074,43.72000122070313,10.989999771118164,3.785000085830689,1.246999979019165,33.827999114990234 -139,2016-07-06 19:00:00,42.97299957275391,10.805999755859377,38.573001861572266,8.095000267028809,3.6989998817443848,1.406999945640564,34.267501831054695 -140,2016-07-06 20:00:00,46.90999984741211,13.067999839782717,42.24599838256836,9.890999794006348,3.816999912261963,1.2790000438690186,32.94900131225586 -141,2016-07-06 21:00:00,46.74300003051758,14.241000175476074,44.04199981689453,11.71399974822998,2.9110000133514404,0.0,32.290000915527344 -142,2016-07-06 22:00:00,43.81100082397461,12.899999618530272,39.13600158691406,9.810999870300291,4.125999927520752,1.2580000162124634,32.94900131225586 -143,2016-07-06 23:00:00,43.72700119018555,13.067999839782717,39.83300018310547,10.37399959564209,3.9340000152587886,0.0,33.16899871826172 -144,2016-07-07 00:00:00,40.04100036621094,11.979000091552734,37.01900100708008,9.70400047302246,3.9340000152587886,0.0,33.60850143432617 -145,2016-07-07 01:00:00,40.71099853515625,11.979000091552734,37.2869987487793,9.381999969482422,3.816999912261963,0.0,33.60850143432617 -146,2016-07-07 02:00:00,41.2140007019043,12.229999542236328,38.01100158691406,9.91800022125244,2.2709999084472656,0.0,33.60850143432617 -147,2016-07-07 03:00:00,41.38100051879883,12.480999946594238,37.76900100708008,9.864999771118164,3.6459999084472656,0.0,32.949501037597656 -148,2016-07-07 04:00:00,39.11999893188477,11.644000053405762,36.29499816894531,9.515999794006348,3.6459999084472656,0.0,32.949501037597656 -149,2016-07-07 05:00:00,39.11999893188477,11.140999794006348,36.96500015258789,9.194000244140623,2.430999994277954,0.0,32.949501037597656 -150,2016-07-07 06:00:00,42.80500030517578,12.732999801635742,40.31600189208984,10.560999870300291,2.430999994277954,0.0,33.16899871826172 -151,2016-07-07 07:00:00,42.303001403808594,12.815999984741213,39.29700088500977,10.427000045776367,2.430999994277954,0.0,33.16899871826172 -152,2016-07-07 08:00:00,38.53300094604492,10.805999755859377,36.402000427246094,9.006999969482422,2.430999994277954,0.0,33.60850143432617 -153,2016-07-07 09:00:00,43.72700119018555,14.156999588012695,40.58399963378906,11.633999824523926,2.430999994277954,0.0,34.707000732421875 -154,2016-07-07 10:00:00,38.44900131225586,9.465999603271484,35.625,7.585999965667725,2.3559999465942383,0.0,35.80550003051758 -155,2016-07-07 11:00:00,42.1349983215332,10.470999717712402,39.83300018310547,8.550999641418457,2.3559999465942383,0.0,38.00299835205078 -156,2016-07-07 12:00:00,44.0620002746582,12.5649995803833,41.54899978637695,10.024999618530272,2.3989999294281006,0.0,40.20000076293945 -157,2016-07-07 13:00:00,45.56999969482422,13.487000465393065,42.64799880981445,10.855999946594238,2.259999990463257,0.0,43.2760009765625 -158,2016-07-07 14:00:00,44.39699935913086,14.491999626159668,40.98600006103516,11.633999824523926,3.486000061035156,0.0,48.11000061035156 -159,2016-07-07 15:00:00,42.88899993896485,12.732999801635742,39.75299835205078,10.052000045776367,3.4539999961853027,0.0,49.86800003051758 -160,2016-07-07 16:00:00,45.1510009765625,16.334999084472653,42.459999084472656,12.517999649047852,2.227999925613404,0.0,48.98899841308594 -161,2016-07-07 17:00:00,49.00400161743164,15.916000366210938,45.43600082397461,12.760000228881836,3.507999897003174,0.0,45.91299819946289 -162,2016-07-07 18:00:00,48.75299835205078,14.576000213623049,44.87300109863281,11.526000022888184,3.507999897003174,0.0,43.71549987792969 -163,2016-07-07 19:00:00,42.21900177001953,10.470999717712402,39.72600173950195,8.496999740600586,2.259999990463257,0.0,42.397499084472656 -164,2016-07-07 20:00:00,46.15599822998047,12.899999618530272,42.11199951171875,10.07900047302246,3.496999979019165,0.0,41.29899978637695 -165,2016-07-07 21:00:00,50.00899887084961,14.659000396728516,45.8650016784668,11.204999923706056,3.753000020980835,1.2369999885559082,40.20050048828125 -166,2016-07-07 22:00:00,46.82600021362305,14.743000030517578,44.41699981689453,12.222999572753904,2.5799999237060547,0.0,39.32149887084961 -167,2016-07-07 23:00:00,45.23500061035156,13.904999732971191,43.02299880981445,11.71399974822998,2.664999961853028,0.0,38.88150024414063 -168,2016-07-08 00:00:00,44.73199844360352,13.904999732971191,42.43399810791016,11.741000175476074,1.3109999895095823,0.0,38.22299957275391 -169,2016-07-08 01:00:00,41.79999923706055,12.5649995803833,40.85200119018555,10.937000274658203,0.0,0.0,38.00299835205078 -170,2016-07-08 02:00:00,43.14099884033203,12.984000205993652,40.02099990844727,10.239999771118164,2.559000015258789,0.0,37.5634994506836 -171,2016-07-08 03:00:00,41.71599960327149,12.5649995803833,39.61899948120117,10.052000045776367,2.559000015258789,0.0,37.124000549316406 -172,2016-07-08 04:00:00,40.79499816894531,12.314000129699709,38.59999847412109,10.45400047302246,1.962000012397766,0.0,36.68450164794922 -173,2016-07-08 05:00:00,38.78499984741211,11.140999794006348,36.80400085449219,9.461999893188477,1.950999975204468,0.0,36.24549865722656 -174,2016-07-08 06:00:00,40.29199981689453,11.47599983215332,37.5009994506836,9.54300022125244,1.950999975204468,0.0,36.24549865722656 -175,2016-07-08 07:00:00,42.1349983215332,12.899999618530272,40.39599990844727,10.776000022888184,1.2150000333786009,0.0,36.46500015258789 -176,2016-07-08 08:00:00,41.71599960327149,11.895000457763672,39.72600173950195,9.838000297546388,2.430999994277954,0.0,37.78300094604492 -177,2016-07-08 09:00:00,42.387001037597656,14.407999992370604,41.38800048828125,12.62600040435791,0.0,0.0,39.10150146484375 -178,2016-07-08 10:00:00,47.41299819946289,15.581000328063965,44.73899841308594,12.894000053405762,2.505000114440918,0.0,40.85950088500977 -179,2016-07-08 11:00:00,52.43899917602539,17.926000595092773,50.87699890136719,15.01099967956543,2.505000114440918,0.0,43.05649948120117 -180,2016-07-08 12:00:00,49.50699996948242,16.0,47.47299957275391,13.187999725341797,1.2580000162124634,0.0,44.59500122070313 -181,2016-07-08 13:00:00,50.00899887084961,16.083000183105472,47.6870002746582,13.37600040435791,2.483999967575073,0.0,45.69350051879883 -182,2016-07-08 14:00:00,48.08300018310547,16.083000183105472,45.89099884033203,13.348999977111816,2.494999885559082,0.0,47.23099899291992 -183,2016-07-08 15:00:00,51.01499938964844,17.674999237060547,48.73300170898438,14.58199977874756,2.494999885559082,0.0,48.54999923706055 -184,2016-07-08 16:00:00,50.93099975585938,17.926000595092773,48.7859992980957,14.79699993133545,2.494999885559082,0.0,47.012001037597656 -185,2016-07-08 17:00:00,50.76300048828125,17.423999786376953,48.09000015258789,14.340999603271484,2.494999885559082,0.0,46.352500915527344 -186,2016-07-08 18:00:00,51.60100173950195,16.92099952697754,49.67100143432617,13.885000228881836,1.2790000438690186,0.0,45.25400161743164 -187,2016-07-08 19:00:00,45.06700134277344,13.152000427246096,43.80099868774414,10.937000274658203,1.3329999446868896,0.0,43.93550109863281 -188,2016-07-08 20:00:00,47.32899856567383,13.067999839782717,45.97200012207031,11.071000099182127,1.2150000333786009,0.0,42.617000579833984 -189,2016-07-08 21:00:00,52.27099990844727,16.92099952697754,50.55599975585938,14.072999954223633,1.2150000333786009,0.0,41.29899978637695 -190,2016-07-08 22:00:00,50.26100158691406,16.334999084472653,48.09000015258789,13.510000228881836,2.430999994277954,0.0,40.41999816894531 -191,2016-07-08 23:00:00,47.49599838256836,14.91100025177002,45.78400039672852,12.331000328063965,2.430999994277954,0.0,39.98049926757813 -192,2016-07-09 00:00:00,44.81600189208984,13.98900032043457,42.35300064086914,11.633999824523926,2.430999994277954,0.0,39.32149887084961 -193,2016-07-09 01:00:00,44.0620002746582,13.98900032043457,41.76300048828125,11.847999572753904,1.4390000104904177,0.0,38.6619987487793 -194,2016-07-09 02:00:00,43.05699920654297,13.487000465393065,42.11199951171875,11.767999649047852,0.0,0.0,38.22249984741211 -195,2016-07-09 03:00:00,43.72700119018555,13.821999549865724,41.14699935913086,11.472999572753904,1.246999979019165,0.0,37.5634994506836 -196,2016-07-09 04:00:00,42.97299957275391,13.56999969482422,41.22700119018555,11.633999824523926,1.246999979019165,0.0,37.124000549316406 -197,2016-07-09 05:00:00,41.54899978637695,12.815999984741213,40.45000076293945,11.017000198364258,0.0,0.0,36.68450164794922 -198,2016-07-09 06:00:00,42.21900177001953,13.152000427246096,41.38800048828125,11.472999572753904,0.0,0.0,36.46500015258789 -199,2016-07-09 07:00:00,42.80500030517578,13.654000282287598,41.709999084472656,12.062999725341797,0.0,0.0,36.46500015258789 -200,2016-07-09 08:00:00,40.79499816894531,11.895000457763672,38.76100158691406,10.024999618530272,1.2690000534057615,0.0,37.5634994506836 -201,2016-07-09 09:00:00,43.47600173950195,13.402999877929688,42.165000915527344,11.66100025177002,0.0,0.0,38.22249984741211 -202,2016-07-09 10:00:00,47.915000915527344,15.581000328063965,45.2750015258789,12.678999900817873,2.463000059127808,0.0,39.54100036621094 -203,2016-07-09 11:00:00,50.59600067138672,16.586000442504886,48.6259994506836,13.482999801635742,2.463000059127808,0.0,40.63999938964844 -204,2016-07-09 12:00:00,51.43399810791016,16.753999710083008,49.10800170898438,13.911999702453612,2.463000059127808,0.0,42.83700180053711 -205,2016-07-09 13:00:00,49.92599868774414,16.334999084472653,48.67900085449219,13.911999702453612,2.463000059127808,0.0,42.83700180053711 -206,2016-07-09 14:00:00,50.76300048828125,16.586000442504886,47.875,13.590999603271484,2.5269999504089355,0.0,42.617000579833984 -207,2016-07-09 15:00:00,49.50699996948242,17.089000701904293,47.44599914550781,14.152999877929688,2.5269999504089355,0.0,43.49599838256836 -208,2016-07-09 16:00:00,51.43399810791016,21.025999069213867,48.73300170898438,17.7450008392334,2.5269999504089355,0.0,44.15549850463867 -209,2016-07-09 17:00:00,52.10400009155274,20.77400016784668,49.61700057983398,17.423999786376953,2.5269999504089355,0.0,43.05649948120117 -210,2016-07-09 18:00:00,47.66400146484375,17.004999160766598,45.19400024414063,14.395000457763672,2.5269999504089355,0.0,42.1775016784668 -211,2016-07-09 19:00:00,46.40700149536133,16.419000625610348,44.685001373291016,13.83199977874756,3.1979999542236333,0.0,41.29899978637695 -212,2016-07-09 20:00:00,47.24499893188477,17.674999237060547,45.4630012512207,14.930999755859377,1.22599995136261,0.0,40.63949966430664 -213,2016-07-09 21:00:00,47.41299819946289,16.166999816894528,45.6500015258789,13.482999801635742,2.463000059127808,0.0,40.41999816894531 -214,2016-07-09 22:00:00,47.915000915527344,18.51300048828125,45.73099899291992,15.38700008392334,2.463000059127808,1.2369999885559082,40.20050048828125 -215,2016-07-09 23:00:00,47.24499893188477,17.926000595092773,44.60499954223633,14.984000205993652,2.463000059127808,0.0,39.760501861572266 -216,2016-07-10 00:00:00,44.39699935913086,16.753999710083008,41.49499893188477,13.911999702453612,2.463000059127808,0.0,39.32149887084961 -217,2016-07-10 01:00:00,43.05699920654297,15.581000328063965,40.36899948120117,12.78600025177002,2.463000059127808,0.0,38.88150024414063 -218,2016-07-10 02:00:00,41.632999420166016,14.82699966430664,39.13600158691406,12.331000328063965,2.463000059127808,0.0,38.44250106811523 -219,2016-07-10 03:00:00,41.04600143432617,14.994000434875488,38.76100158691406,12.760000228881836,2.463000059127808,0.0,38.00299835205078 -220,2016-07-10 04:00:00,39.11999893188477,14.324000358581545,35.75899887084961,11.821000099182127,2.463000059127808,0.0,37.5634994506836 -221,2016-07-10 05:00:00,40.3759994506836,14.659000396728516,37.42100143432617,12.46500015258789,2.463000059127808,0.0,36.68450164794922 -222,2016-07-10 06:00:00,41.46500015258789,14.91100025177002,38.09099960327149,12.491000175476074,2.463000059127808,0.0,36.68450164794922 -223,2016-07-10 07:00:00,39.62200164794922,14.241000175476074,37.448001861572266,12.303999900817873,1.3539999723434448,0.0,36.68450164794922 -224,2016-07-10 08:00:00,37.44400024414063,13.067999839782717,34.98199844360352,11.12399959564209,1.3539999723434448,0.0,36.90449905395508 -225,2016-07-10 09:00:00,42.72200012207031,15.748000144958494,40.18199920654297,13.348999977111816,2.611999988555908,0.0,37.34349822998047 -226,2016-07-10 10:00:00,42.80500030517578,14.82699966430664,40.71799850463867,12.517999649047852,2.611999988555908,0.0,37.78350067138672 -227,2016-07-10 11:00:00,46.82600021362305,15.246000289916992,44.01499938964844,12.545000076293944,2.6010000705718994,0.0,37.5634994506836 -228,2016-07-10 12:00:00,45.65399932861328,16.419000625610348,44.49800109863281,14.26099967956543,1.343000054359436,0.0,39.10150146484375 -229,2016-07-10 13:00:00,48.08300018310547,17.843000411987305,45.75699996948242,15.038000106811523,2.463000059127808,0.0,39.98049926757813 -230,2016-07-10 14:00:00,48.66899871826172,19.01499938964844,46.66899871826172,16.405000686645508,1.3109999895095823,0.0,40.85950088500977 -231,2016-07-10 15:00:00,49.3390007019043,19.26700019836425,47.125,16.19099998474121,2.5269999504089355,0.0,41.73849868774414 -232,2016-07-10 16:00:00,49.00400161743164,18.010000228881836,46.90999984741211,15.520999908447266,2.5269999504089355,0.0,42.617000579833984 -233,2016-07-10 17:00:00,51.76900100708008,18.763999938964844,49.32300186157226,15.788999557495115,2.5269999504089355,0.0,41.95800018310547 -234,2016-07-10 18:00:00,52.60599899291992,18.763999938964844,49.64400100708008,15.628000259399414,2.5269999504089355,0.0,41.51850128173828 -235,2016-07-10 19:00:00,46.071998596191406,14.994000434875488,44.229000091552734,12.491000175476074,2.5269999504089355,0.0,41.079498291015625 -236,2016-07-10 20:00:00,50.93099975585938,18.51300048828125,48.38399887084961,15.520999908447266,2.7079999446868896,0.0,40.20050048828125 -237,2016-07-10 21:00:00,54.86800003051758,20.356000900268555,51.30599975585938,16.645999908447266,2.7079999446868896,0.0,39.760501861572266 -238,2016-07-10 22:00:00,49.17200088500977,17.926000595092773,46.9640007019043,15.145000457763672,2.7079999446868896,0.0,39.32149887084961 -239,2016-07-10 23:00:00,49.42300033569336,18.26099967956543,46.05199813842773,15.01099967956543,2.7079999446868896,0.0,39.10150146484375 -240,2016-07-11 00:00:00,45.98899841308594,16.92099952697754,43.80099868774414,14.368000030517578,2.45199990272522,0.0,38.88150024414063 -241,2016-07-11 01:00:00,44.73199844360352,16.419000625610348,42.40700149536133,14.072999954223633,2.45199990272522,0.0,38.44250106811523 -242,2016-07-11 02:00:00,42.80500030517578,15.83199977874756,41.89699935913086,13.777999877929688,1.2580000162124634,0.0,38.00299835205078 -243,2016-07-11 03:00:00,43.64300155639648,16.166999816894528,41.81700134277344,13.80500030517578,1.22599995136261,0.0,37.5634994506836 -244,2016-07-11 04:00:00,40.62699890136719,14.91100025177002,39.53799819946289,13.135000228881836,1.22599995136261,0.0,37.34400177001953 -245,2016-07-11 05:00:00,42.80500030517578,15.748000144958494,40.77199935913086,13.67099952697754,1.3969999551773071,0.0,37.124000549316406 -246,2016-07-11 06:00:00,43.05699920654297,15.07800006866455,41.60300064086914,12.946999549865724,1.2150000333786009,0.0,37.124000549316406 -247,2016-07-11 07:00:00,42.387001037597656,16.166999816894528,41.17399978637695,13.885000228881836,1.2150000333786009,0.0,37.124000549316406 -248,2016-07-11 08:00:00,41.632999420166016,15.161999702453612,40.52999877929688,13.187999725341797,1.22599995136261,0.0,35.58599853515625 -249,2016-07-11 09:00:00,41.632999420166016,14.576000213623049,40.45000076293945,12.894000053405762,0.0,0.0,34.487499237060554 -250,2016-07-11 10:00:00,39.0359992980957,11.225000381469728,37.55500030517578,9.595999717712402,1.2690000534057615,0.0,35.36650085449219 -251,2016-07-11 11:00:00,41.54899978637695,11.644000053405762,40.20899963378906,9.890999794006348,1.2369999885559082,0.0,34.926498413085945 -252,2016-07-11 12:00:00,42.80500030517578,13.067999839782717,41.68299865722656,11.392000198364258,0.0,0.0,35.80550003051758 -253,2016-07-11 13:00:00,46.90999984741211,17.926000595092773,45.91799926757813,15.654999732971191,0.0,0.0,38.22299957275391 -254,2016-07-11 14:00:00,49.0880012512207,18.51300048828125,47.875,16.216999053955078,1.22599995136261,0.0,40.41999816894531 -255,2016-07-11 15:00:00,48.50199890136719,19.01499938964844,47.04399871826172,16.378000259399414,1.22599995136261,0.0,41.079498291015625 -256,2016-07-11 16:00:00,50.512001037597656,19.601999282836918,49.24200057983398,16.861000061035153,1.3009999990463257,0.0,42.83700180053711 -257,2016-07-11 17:00:00,52.35499954223633,19.43400001525879,50.85100173950195,16.67300033569336,1.3650000095367432,0.0,42.617000579833984 -258,2016-07-11 18:00:00,51.34999847412109,18.68000030517578,49.56399917602539,16.003000259399414,1.22599995136261,0.0,41.51850128173828 -259,2016-07-11 19:00:00,45.90499877929688,15.748000144958494,43.77399826049805,13.456000328063965,2.494999885559082,0.0,40.41999816894531 -260,2016-07-11 20:00:00,49.75799942016602,17.34000015258789,47.125,14.743000030517578,2.494999885559082,0.0,39.32149887084961 -261,2016-07-11 21:00:00,47.32899856567383,16.586000442504886,45.03400039672852,13.859000205993652,2.494999885559082,0.0,38.88150024414063 -262,2016-07-11 22:00:00,48.08300018310547,17.759000778198242,45.00699996948242,14.743000030517578,2.494999885559082,0.0,38.44250106811523 -263,2016-07-11 23:00:00,46.49100112915039,16.92099952697754,44.49800109863281,14.340999603271484,2.494999885559082,0.0,38.44250106811523 -264,2016-07-12 00:00:00,46.32400131225586,16.753999710083008,43.104000091552734,14.100000381469728,2.494999885559082,0.0,38.44250106811523 -265,2016-07-12 01:00:00,43.97800064086914,16.083000183105472,40.69100189208984,13.456000328063965,2.559000015258789,0.0,38.22249984741211 -266,2016-07-12 02:00:00,43.05699920654297,14.994000434875488,41.06600189208984,13.107999801635742,1.2899999618530271,0.0,38.00299835205078 -267,2016-07-12 03:00:00,42.80500030517578,15.664999961853027,39.61899948120117,13.107999801635742,2.622999906539917,0.0,37.78350067138672 -268,2016-07-12 04:00:00,44.14599990844727,16.836999893188473,41.17399978637695,14.20699977874756,2.622999906539917,0.0,37.5634994506836 -269,2016-07-12 05:00:00,40.29199981689453,15.246000289916992,38.25199890136719,13.081000328063965,2.622999906539917,0.0,37.124000549316406 -270,2016-07-12 06:00:00,43.2239990234375,15.83199977874756,40.262001037597656,13.321999549865724,2.622999906539917,0.0,37.124000549316406 -271,2016-07-12 07:00:00,41.632999420166016,14.82699966430664,39.32400131225586,12.946999549865724,1.2150000333786009,0.0,36.90449905395508 -272,2016-07-12 08:00:00,38.36600112915039,12.5649995803833,37.2869987487793,10.90999984741211,1.2150000333786009,0.0,37.5634994506836 -273,2016-07-12 09:00:00,44.56499862670898,15.664999961853027,43.479000091552734,13.644000053405762,0.0,0.0,39.54100036621094 -274,2016-07-12 10:00:00,44.81600189208984,14.659000396728516,43.61299896240234,12.706000328063965,1.2150000333786009,0.0,41.73799896240234 -275,2016-07-12 11:00:00,50.59600067138672,17.674999237060547,49.5099983215332,15.333000183105469,0.0,0.0,44.15549850463867 -276,2016-07-12 12:00:00,47.915000915527344,16.753999710083008,46.9370002746582,14.501999855041506,0.0,0.0,46.5724983215332 -277,2016-07-12 13:00:00,47.915000915527344,16.836999893188473,45.75699996948242,14.072999954223633,1.246999979019165,0.0,47.01150131225586 -278,2016-07-12 14:00:00,51.51699829101562,18.93199920654297,49.77799987792969,16.19099998474121,2.483999967575073,0.0,49.42900085449219 -279,2016-07-12 15:00:00,51.34999847412109,18.93199920654297,49.18899917602539,16.056999206542972,1.22599995136261,0.0,49.20899963378906 -280,2016-07-12 16:00:00,50.34500122070313,17.759000778198242,47.84799957275391,14.715999603271484,2.440999984741211,0.0,47.45100021362305 -281,2016-07-12 17:00:00,53.19300079345703,19.01499938964844,50.74300003051758,15.708000183105469,2.440999984741211,0.0,47.01150131225586 -282,2016-07-12 18:00:00,51.43399810791016,17.089000701904293,49.32300186157226,14.395000457763672,2.440999984741211,0.0,46.352500915527344 -283,2016-07-12 19:00:00,48.33399963378906,15.161999702453612,45.59700012207031,12.46500015258789,2.440999984741211,0.0,45.25400161743164 -284,2016-07-12 20:00:00,54.02999877929688,18.429000854492188,51.30599975585938,15.145000457763672,2.505000114440918,0.0,43.71549987792969 -285,2016-07-12 21:00:00,50.93099975585938,17.423999786376953,47.553001403808594,14.100000381469728,2.505000114440918,0.0,42.397499084472656 -286,2016-07-12 22:00:00,51.43399810791016,17.926000595092773,48.38399887084961,14.850000381469728,2.505000114440918,0.0,41.95800018310547 -287,2016-07-12 23:00:00,45.1510009765625,15.07800006866455,43.15700149536133,12.732999801635742,2.505000114440918,0.0,41.51850128173828 -288,2016-07-13 00:00:00,46.49100112915039,16.670000076293945,44.33700180053711,14.234000205993652,1.3329999446868896,0.0,41.079498291015625 -289,2016-07-13 01:00:00,46.2400016784668,16.586000442504886,43.53300094604492,13.993000030517578,2.8359999656677246,0.0,40.41999816894531 -290,2016-07-13 02:00:00,43.30799865722656,15.161999702453612,40.18199920654297,12.571999549865724,2.8359999656677246,0.0,40.20050048828125 -291,2016-07-13 03:00:00,42.387001037597656,15.413000106811523,39.37799835205078,13.135000228881836,2.611999988555908,0.0,39.760501861572266 -292,2016-07-13 04:00:00,42.88899993896485,15.916000366210938,40.61100006103516,13.644000053405762,2.611999988555908,0.0,39.32149887084961 -293,2016-07-13 05:00:00,40.9630012512207,14.659000396728516,38.73400115966797,12.84000015258789,1.2690000534057615,0.0,38.88150024414063 -294,2016-07-13 06:00:00,41.96799850463867,15.07800006866455,41.22700119018555,13.37600040435791,0.0,0.0,38.88150024414063 -295,2016-07-13 07:00:00,41.38100051879883,14.743000030517578,40.28900146484375,13.081000328063965,1.22599995136261,0.0,38.88150024414063 -296,2016-07-13 08:00:00,41.29800033569336,13.98900032043457,39.64599990844727,12.116000175476074,1.2150000333786009,0.0,38.88150024414063 -297,2016-07-13 09:00:00,48.08300018310547,16.50200080871582,45.38199996948242,13.80500030517578,2.430999994277954,0.0,40.41999816894531 -298,2016-07-13 10:00:00,43.2239990234375,12.229999542236328,41.49499893188477,10.213000297546388,1.2150000333786009,0.0,41.29899978637695 -299,2016-07-13 11:00:00,48.33399963378906,13.56999969482422,45.62300109863281,10.855999946594238,2.430999994277954,0.0,41.51850128173828 -300,2016-07-13 12:00:00,44.81600189208984,13.402999877929688,44.14899826049805,11.633999824523926,0.0,0.0,39.54100036621094 -301,2016-07-13 13:00:00,48.91999816894531,15.748000144958494,47.79499816894531,13.564000129699709,1.22599995136261,0.0,38.66249847412109 -302,2016-07-13 14:00:00,50.00899887084961,16.670000076293945,49.02799987792969,14.340999603271484,0.0,0.0,41.73849868774414 -303,2016-07-13 15:00:00,49.42300033569336,16.586000442504886,46.749000549316406,13.725000381469728,2.430999994277954,0.0,44.81449890136719 -304,2016-07-13 16:00:00,49.59099960327149,17.089000701904293,47.23199844360352,14.072999954223633,2.430999994277954,0.0,44.15549850463867 -305,2016-07-13 17:00:00,51.43399810791016,16.670000076293945,48.91999816894531,13.697999954223633,2.430999994277954,0.0,43.71549987792969 -306,2016-07-13 18:00:00,54.11399841308594,19.26700019836425,51.01100158691406,15.8149995803833,3.6459999084472656,1.2790000438690186,43.71549987792969 -307,2016-07-13 19:00:00,48.91999816894531,16.670000076293945,47.3390007019043,13.859000205993652,2.121999979019165,0.0,43.2765007019043 -308,2016-07-13 20:00:00,51.85200119018555,17.926000595092773,49.1349983215332,14.984000205993652,2.121999979019165,0.0,42.83649826049805 -309,2016-07-13 21:00:00,50.84700012207031,17.843000411987305,49.5369987487793,15.092000007629396,0.0,0.0,42.178001403808594 -310,2016-07-13 22:00:00,50.512001037597656,18.010000228881836,47.125,14.850000381469728,2.750999927520752,0.0,37.124000549316406 -311,2016-07-13 23:00:00,45.90499877929688,16.334999084472653,44.38999938964844,14.152999877929688,1.5349999666213991,0.0,37.34400177001953 -312,2016-07-14 00:00:00,46.40700149536133,16.586000442504886,44.01499938964844,13.911999702453612,2.494999885559082,0.0,37.78300094604492 -313,2016-07-14 01:00:00,45.23500061035156,15.496999740600586,42.00500106811523,12.706000328063965,2.494999885559082,0.0,37.78300094604492 -314,2016-07-14 02:00:00,44.229000091552734,15.413000106811523,41.60300064086914,13.107999801635742,2.494999885559082,0.0,38.00299835205078 -315,2016-07-14 03:00:00,42.47000122070313,14.82699966430664,39.77999877929688,12.46500015258789,2.494999885559082,0.0,38.00299835205078 -316,2016-07-14 04:00:00,42.21900177001953,14.91100025177002,40.39599990844727,13.081000328063965,1.2580000162124634,0.0,37.5634994506836 -317,2016-07-14 05:00:00,44.73199844360352,15.581000328063965,41.60300064086914,12.894000053405762,2.494999885559082,0.0,37.34349822998047 -318,2016-07-14 06:00:00,40.87900161743164,13.234999656677244,38.14500045776367,10.989999771118164,2.697000026702881,0.0,35.36650085449219 -319,2016-07-14 07:00:00,43.05699920654297,14.407999992370604,40.82500076293945,12.437999725341797,2.697000026702881,0.0,35.58599853515625 -320,2016-07-14 08:00:00,39.62200164794922,12.229999542236328,38.94900131225586,10.74899959564209,0.0,0.0,36.68450164794922 -321,2016-07-14 09:00:00,42.97299957275391,13.98900032043457,42.29899978637695,12.08899974822998,0.0,0.0,37.78300094604492 -322,2016-07-14 10:00:00,44.983001708984375,13.821999549865724,43.88100051879883,11.928999900817873,1.22599995136261,0.0,38.6619987487793 -323,2016-07-14 11:00:00,49.0880012512207,16.586000442504886,47.5,13.939000129699709,1.2690000534057615,0.0,39.54100036621094 -324,2016-07-14 12:00:00,48.41799926757813,15.413000106811523,46.53499984741211,13.081000328063965,1.2690000534057615,0.0,41.079498291015625 -325,2016-07-14 13:00:00,47.32899856567383,14.91100025177002,44.97999954223633,12.357000350952148,1.2690000534057615,0.0,42.397499084472656 -326,2016-07-14 14:00:00,48.50199890136719,16.250999450683597,46.85599899291992,13.644000053405762,2.5799999237060547,0.0,42.83649826049805 -327,2016-07-14 15:00:00,48.41799926757813,16.166999816894528,46.85599899291992,13.83199977874756,2.5799999237060547,0.0,43.49599838256836 -328,2016-07-14 16:00:00,50.76300048828125,17.507999420166016,48.571998596191406,14.850000381469728,2.494999885559082,0.0,43.05649948120117 -329,2016-07-14 17:00:00,52.10400009155274,18.26099967956543,50.31399917602539,15.333000183105469,2.494999885559082,0.0,40.63949966430664 -330,2016-07-14 18:00:00,45.90499877929688,14.994000434875488,43.69300079345703,12.571999549865724,2.440999984741211,0.0,35.58599853515625 -331,2016-07-14 19:00:00,45.06700134277344,13.821999549865724,44.04199981689453,12.008999824523926,1.2150000333786009,0.0,34.707000732421875 -332,2016-07-14 20:00:00,46.2400016784668,14.491999626159668,43.854000091552734,12.062999725341797,2.664999961853028,0.0,33.60850143432617 -333,2016-07-14 21:00:00,48.83700180053711,17.004999160766598,47.125,14.368000030517578,2.664999961853028,0.0,33.60850143432617 -334,2016-07-14 22:00:00,47.1609992980957,15.916000366210938,44.09500122070313,13.269000053405762,2.664999961853028,0.0,32.94900131225586 -335,2016-07-14 23:00:00,45.82099914550781,15.748000144958494,43.90800094604492,13.510000228881836,2.505000114440918,0.0,33.16899871826172 -336,2016-07-15 00:00:00,40.9630012512207,14.072999954223633,39.48500061035156,11.954999923706056,2.505000114440918,0.0,33.388999938964844 -337,2016-07-15 01:00:00,41.96799850463867,13.654000282287598,39.75299835205078,11.821000099182127,2.505000114440918,0.0,34.04800033569336 -338,2016-07-15 02:00:00,40.9630012512207,12.984000205993652,38.62699890136719,10.855999946594238,2.505000114440918,0.0,34.48699951171875 -339,2016-07-15 03:00:00,40.20899963378906,13.402999877929688,39.11000061035156,11.741000175476074,0.0,0.0,34.48699951171875 -340,2016-07-15 04:00:00,40.79499816894531,13.56999969482422,38.43899917602539,11.366000175476074,2.5369999408721924,0.0,34.48699951171875 -341,2016-07-15 05:00:00,40.79499816894531,13.234999656677244,38.573001861572266,10.989999771118164,2.5369999408721924,0.0,35.146499633789055 -342,2016-07-15 06:00:00,43.391998291015625,14.072999954223633,40.28900146484375,11.687000274658203,2.5369999408721924,0.0,35.146499633789055 -343,2016-07-15 07:00:00,45.23500061035156,16.670000076293945,43.02299880981445,13.939000129699709,2.815000057220459,0.0,36.0255012512207 -344,2016-07-15 08:00:00,41.04600143432617,13.56999969482422,39.512001037597656,11.687000274658203,1.2150000333786009,0.0,37.78350067138672 -345,2016-07-15 09:00:00,49.75799942016602,17.926000595092773,47.47299957275391,15.279000282287598,2.463000059127808,0.0,39.98049926757813 -346,2016-07-15 10:00:00,48.83700180053711,17.34000015258789,47.7140007019043,14.850000381469728,1.2150000333786009,0.0,41.95800018310547 -347,2016-07-15 11:00:00,51.09799957275391,17.590999603271484,48.946998596191406,14.555999755859377,2.494999885559082,0.0,43.05649948120117 -348,2016-07-15 12:00:00,51.60100173950195,18.17799949645996,49.43000030517578,15.01099967956543,2.494999885559082,0.0,42.617000579833984 -349,2016-07-15 13:00:00,48.66899871826172,17.34000015258789,47.5270004272461,14.930999755859377,0.0,0.0,42.617000579833984 -350,2016-07-15 14:00:00,51.51699829101562,18.93199920654297,50.39500045776367,16.351999282836914,1.22599995136261,0.0,42.83649826049805 -351,2016-07-15 15:00:00,48.83700180053711,19.684999465942383,47.58000183105469,17.101999282836914,1.2150000333786009,0.0,43.2765007019043 -352,2016-07-15 16:00:00,45.31800079345703,17.172000885009766,44.06900024414063,14.958000183105469,1.2150000333786009,0.0,37.5634994506836 -353,2016-07-15 17:00:00,46.65900039672852,17.423999786376953,45.6500015258789,15.145000457763672,1.3109999895095823,0.0,37.5634994506836 -354,2016-07-15 18:00:00,47.07799911499024,16.250999450683597,44.25600051879883,13.37600040435791,2.5369999408721924,0.0,34.707000732421875 -355,2016-07-15 19:00:00,43.05699920654297,13.487000465393065,40.34299850463867,11.258000373840332,2.5369999408721924,0.0,34.04800033569336 -356,2016-07-15 20:00:00,45.06700134277344,15.329999923706056,42.94300079345703,12.866999626159668,1.5670000314712524,0.0,33.388500213623054 -357,2016-07-15 21:00:00,45.56999969482422,15.748000144958494,42.86199951171875,13.081000328063965,2.815000057220459,0.0,33.388500213623054 -358,2016-07-15 22:00:00,45.73699951171875,16.50200080871582,43.88100051879883,13.725000381469728,2.815000057220459,0.0,33.827999114990234 -359,2016-07-15 23:00:00,47.32899856567383,18.429000854492188,44.73899841308594,15.680999755859377,2.632999897003174,0.0,33.388500213623054 -360,2016-07-16 00:00:00,45.23500061035156,17.507999420166016,43.15700149536133,15.145000457763672,2.632999897003174,0.0,33.60800170898437 -361,2016-07-16 01:00:00,43.47600173950195,16.586000442504886,41.73699951171875,14.42099952697754,1.6740000247955322,0.0,33.60800170898437 -362,2016-07-16 02:00:00,38.53300094604492,13.152000427246096,36.66999816894531,11.392000198364258,1.3009999990463257,0.0,33.388500213623054 -363,2016-07-16 03:00:00,41.46500015258789,15.916000366210938,39.61899948120117,13.616999626159668,2.5369999408721924,0.0,33.16899871826172 -364,2016-07-16 04:00:00,44.81600189208984,17.423999786376953,41.92399978637695,14.79699993133545,2.5369999408721924,0.0,32.949501037597656 -365,2016-07-16 05:00:00,40.62699890136719,14.407999992370604,38.01100158691406,12.196999549865724,2.4730000495910645,0.0,32.949501037597656 -366,2016-07-16 06:00:00,41.29800033569336,14.659000396728516,39.18999862670898,12.732999801635742,2.4730000495910645,0.0,32.50949859619141 -367,2016-07-16 07:00:00,40.62699890136719,14.324000358581545,39.16299819946289,12.517999649047852,2.4730000495910645,0.0,32.5099983215332 -368,2016-07-16 08:00:00,30.90999984741211,10.470999717712402,29.083999633789062,8.95300006866455,1.246999979019165,0.0,34.267501831054695 -369,2016-07-16 09:00:00,31.32900047302246,9.968000411987305,29.32500076293945,8.336999893188478,2.4730000495910645,0.0,36.464500427246094 -370,2016-07-16 10:00:00,32.83700180053711,9.633000373840332,31.06800079345703,8.229000091552733,1.2580000162124634,0.0,37.124000549316406 -371,2016-07-16 11:00:00,31.74799919128418,8.878999710083008,29.941999435424805,7.3979997634887695,2.5160000324249268,0.0,38.00299835205078 -372,2016-07-16 12:00:00,30.492000579833984,8.293000221252441,28.89699935913086,6.835000038146973,1.2790000438690186,0.0,38.22249984741211 -373,2016-07-16 13:00:00,30.65900039672852,8.795999526977539,28.976999282836918,7.317999839782715,2.505000114440918,0.0,38.22249984741211 -374,2016-07-16 14:00:00,29.48600006103516,8.376999855041504,28.44099998474121,7.263999938964844,0.0,0.0,38.22249984741211 -375,2016-07-16 15:00:00,31.66399955749512,9.04699993133545,29.7810001373291,7.71999979019165,1.5140000581741333,0.0,39.98049926757813 -376,2016-07-16 16:00:00,33.088001251220696,9.717000007629396,31.256000518798828,8.52400016784668,1.3969999551773071,0.0,42.1775016784668 -377,2016-07-16 17:00:00,34.0099983215332,10.303000450134276,31.92600059509277,8.36299991607666,2.611999988555908,0.0,40.85950088500977 -378,2016-07-16 18:00:00,34.17699813842773,9.29800033569336,31.46999931335449,7.61299991607666,2.782999992370605,0.0,39.760501861572266 -379,2016-07-16 19:00:00,34.261001586914055,9.717000007629396,31.38999938964844,7.800000190734862,2.878999948501587,0.0,38.44250106811523 -380,2016-07-16 20:00:00,35.93600082397461,10.13599967956543,33.31999969482422,8.390000343322754,2.632999897003174,0.0,36.68450164794922 -381,2016-07-16 21:00:00,35.0989990234375,9.968000411987305,32.569000244140625,8.041999816894531,2.664999961853028,0.0,35.36650085449219 -382,2016-07-16 22:00:00,33.590999603271484,9.885000228881836,31.631000518798828,8.14900016784668,2.569000005722046,0.0,34.487499237060554 -383,2016-07-16 23:00:00,32.501998901367195,8.711999893188478,29.808000564575195,7.0229997634887695,2.6760001182556152,0.0,34.047500610351555 -384,2016-07-17 00:00:00,34.261001586914055,11.810999870300291,32.863998413085945,10.024999618530272,2.6760001182556152,0.0,33.60850143432617 -385,2016-07-17 01:00:00,36.35499954223633,11.895000457763672,34.28499984741211,9.91800022125244,2.664999961853028,0.0,33.16899871826172 -386,2016-07-17 02:00:00,35.26599884033203,12.39799976348877,33.21200180053711,10.07900047302246,2.7720000743865967,0.0,33.16899871826172 -387,2016-07-17 03:00:00,35.0989990234375,12.314000129699709,32.998001098632805,10.427000045776367,1.3109999895095823,0.0,32.949501037597656 -388,2016-07-17 04:00:00,41.38100051879883,14.491999626159668,38.59999847412109,11.875,2.5480000972747803,0.0,32.949501037597656 -389,2016-07-17 05:00:00,44.3129997253418,16.166999816894528,42.11199951171875,13.777999877929688,1.2150000333786009,0.0,32.949501037597656 -390,2016-07-17 06:00:00,43.64300155639648,15.329999923706056,41.68299865722656,13.135000228881836,2.440999984741211,0.0,32.949501037597656 -391,2016-07-17 07:00:00,43.97800064086914,15.748000144958494,42.56800079345703,13.859000205993652,2.440999984741211,0.0,33.60850143432617 -392,2016-07-17 08:00:00,35.93600082397461,10.470999717712402,33.80199813842773,8.630999565124513,2.440999984741211,0.0,35.146499633789055 -393,2016-07-17 09:00:00,39.70600128173828,12.39799976348877,36.8849983215332,9.99899959564209,2.440999984741211,0.0,37.78300094604492 -394,2016-07-17 10:00:00,50.512001037597656,18.429000854492188,47.92900085449219,15.4399995803833,2.440999984741211,0.0,40.20050048828125 -395,2016-07-17 11:00:00,51.68500137329102,18.010000228881836,48.86700057983398,14.743000030517578,2.440999984741211,0.0,42.397499084472656 -396,2016-07-17 12:00:00,45.98899841308594,14.072999954223633,44.33700180053711,12.062999725341797,1.2790000438690186,0.0,43.05649948120117 -397,2016-07-17 13:00:00,49.50699996948242,17.423999786376953,47.84799957275391,14.26099967956543,2.494999885559082,0.0,45.25400161743164 -398,2016-07-17 14:00:00,47.74800109863281,16.166999816894528,46.34700012207031,13.859000205993652,2.494999885559082,0.0,47.45149993896485 -399,2016-07-17 15:00:00,47.74800109863281,16.586000442504886,45.78400039672852,14.152999877929688,1.22599995136261,0.0,48.54999923706055 -400,2016-07-17 16:00:00,49.25600051879883,17.256000518798828,47.1510009765625,14.368000030517578,1.22599995136261,0.0,47.89099884033203 -401,2016-07-17 17:00:00,48.584999084472656,16.334999084472653,47.28499984741211,14.100000381469728,1.2369999885559082,0.0,45.91299819946289 -402,2016-07-17 18:00:00,47.07799911499024,15.329999923706056,45.4630012512207,12.706000328063965,1.246999979019165,0.0,44.375 -403,2016-07-17 19:00:00,47.49599838256836,15.496999740600586,44.76599884033203,12.812999725341797,2.463000059127808,0.0,43.2760009765625 -404,2016-07-17 20:00:00,47.1609992980957,15.246000289916992,44.685001373291016,12.383999824523926,2.463000059127808,0.0,41.95800018310547 -405,2016-07-17 21:00:00,50.09299850463867,16.50200080871582,47.553001403808594,13.697999954223633,2.463000059127808,0.0,40.63949966430664 -406,2016-07-17 22:00:00,49.92599868774414,17.926000595092773,47.5,14.824000358581545,2.463000059127808,0.0,40.20050048828125 -407,2016-07-17 23:00:00,48.83700180053711,17.590999603271484,45.8380012512207,14.824000358581545,2.463000059127808,0.0,39.760501861572266 -408,2016-07-18 00:00:00,45.48600006103516,15.664999961853027,42.165000915527344,12.78600025177002,2.463000059127808,0.0,39.760501861572266 -409,2016-07-18 01:00:00,44.81600189208984,16.166999816894528,42.56800079345703,13.644000053405762,2.463000059127808,0.0,39.32149887084961 -410,2016-07-18 02:00:00,44.39699935913086,16.250999450683597,41.17399978637695,13.482999801635742,2.5910000801086426,0.0,38.88150024414063 -411,2016-07-18 03:00:00,40.9630012512207,14.743000030517578,39.56499862670898,12.866999626159668,2.5910000801086426,0.0,38.88150024414063 -412,2016-07-18 04:00:00,43.64300155639648,15.664999961853027,40.28900146484375,13.00100040435791,2.5269999504089355,0.0,38.44250106811523 -413,2016-07-18 05:00:00,42.97299957275391,15.246000289916992,40.61100006103516,13.081000328063965,2.5269999504089355,0.0,38.00299835205078 -414,2016-07-18 06:00:00,45.06700134277344,16.334999084472653,42.94300079345703,13.75100040435791,2.5269999504089355,0.0,37.78300094604492 -415,2016-07-18 07:00:00,44.81600189208984,16.334999084472653,42.97000122070313,13.939000129699709,2.5269999504089355,0.0,38.00299835205078 -416,2016-07-18 08:00:00,38.78499984741211,12.145999908447266,37.90299987792969,10.45400047302246,0.0,0.0,38.88150024414063 -417,2016-07-18 09:00:00,44.56499862670898,15.581000328063965,43.02299880981445,13.402999877929688,1.4179999828338623,0.0,39.54100036621094 -418,2016-07-18 10:00:00,44.39699935913086,14.576000213623049,43.42499923706055,12.517999649047852,0.0,0.0,40.85950088500977 -419,2016-07-18 11:00:00,47.32899856567383,15.161999702453612,46.0250015258789,13.00100040435791,1.22599995136261,0.0,43.93550109863281 -420,2016-07-18 12:00:00,51.68500137329102,18.0939998626709,51.01100158691406,15.60099983215332,0.0,0.0,45.91299819946289 -421,2016-07-18 13:00:00,51.76900100708008,18.93199920654297,50.77000045776367,16.351999282836914,0.0,0.0,43.49599838256836 -422,2016-07-18 14:00:00,50.93099975585938,19.937000274658203,49.56399917602539,17.208999633789062,1.22599995136261,0.0,42.83649826049805 -423,2016-07-18 15:00:00,46.65900039672852,17.089000701904293,45.4630012512207,14.58199977874756,1.2150000333786009,0.0,42.1775016784668 -424,2016-07-18 16:00:00,52.10400009155274,19.937000274658203,50.58200073242188,16.968000411987305,1.2369999885559082,0.0,43.2765007019043 -425,2016-07-18 17:00:00,52.02000045776367,19.183000564575195,50.68999862670898,16.378000259399414,1.246999979019165,0.0,44.15549850463867 -426,2016-07-18 18:00:00,53.61100006103516,19.26700019836425,51.41299819946289,16.19099998474121,2.569000005722046,0.0,44.59450149536133 -427,2016-07-18 19:00:00,49.59099960327149,16.419000625610348,46.83000183105469,13.187999725341797,2.569000005722046,0.0,43.49599838256836 -428,2016-07-18 20:00:00,49.84199905395508,16.166999816894528,47.553001403808594,13.348999977111816,2.5369999408721924,0.0,42.397499084472656 -429,2016-07-18 21:00:00,53.10900115966797,18.763999938964844,49.80500030517578,15.333000183105469,2.5369999408721924,0.0,41.29899978637695 -430,2016-07-18 22:00:00,50.26100158691406,17.674999237060547,47.44599914550781,14.743000030517578,2.4730000495910645,0.0,40.63949966430664 -431,2016-07-18 23:00:00,49.25600051879883,17.507999420166016,46.13299942016602,14.18000030517578,2.632999897003174,0.0,40.20050048828125 -432,2016-07-19 00:00:00,44.81600189208984,15.748000144958494,42.32600021362305,13.29599952697754,2.632999897003174,0.0,39.760501861572266 -433,2016-07-19 01:00:00,44.48099899291992,16.0,42.56800079345703,13.402999877929688,2.632999897003174,0.0,39.32149887084961 -434,2016-07-19 02:00:00,43.391998291015625,15.581000328063965,41.30799865722656,13.21500015258789,2.632999897003174,0.0,38.88150024414063 -435,2016-07-19 03:00:00,45.4020004272461,16.250999450683597,42.21900177001953,13.37600040435791,2.632999897003174,0.0,38.44250106811523 -436,2016-07-19 04:00:00,41.96799850463867,15.246000289916992,39.48500061035156,13.053999900817873,2.559000015258789,0.0,38.22299957275391 -437,2016-07-19 05:00:00,45.90499877929688,17.423999786376953,43.07699966430664,14.609000205993652,2.559000015258789,0.0,38.00299835205078 -438,2016-07-19 06:00:00,45.65399932861328,16.166999816894528,42.43399810791016,13.161999702453612,2.559000015258789,0.0,38.00299835205078 -439,2016-07-19 07:00:00,43.72700119018555,15.413000106811523,41.28099822998047,12.760000228881836,2.559000015258789,0.0,38.00299835205078 -440,2016-07-19 08:00:00,39.95700073242188,12.314000129699709,38.54700088500977,10.401000022888184,1.343000054359436,0.0,39.10150146484375 -441,2016-07-19 09:00:00,47.24499893188477,17.004999160766598,45.75699996948242,14.501999855041506,1.343000054359436,0.0,40.85950088500977 -442,2016-07-19 10:00:00,43.89400100708008,13.402999877929688,42.62099838256836,11.33899974822998,1.343000054359436,0.0,42.61750030517578 -443,2016-07-19 11:00:00,49.0880012512207,16.334999084472653,47.74100112915039,13.859000205993652,1.343000054359436,0.0,41.95800018310547 -444,2016-07-19 12:00:00,48.16699981689453,16.586000442504886,46.9370002746582,14.152999877929688,1.2369999885559082,0.0,41.95800018310547 -445,2016-07-19 13:00:00,51.34999847412109,17.926000595092773,49.48300170898438,15.38700008392334,1.2690000534057615,0.0,39.54100036621094 -446,2016-07-19 14:00:00,48.75299835205078,17.423999786376953,47.6870002746582,15.145000457763672,1.2690000534057615,0.0,41.29899978637695 -447,2016-07-19 15:00:00,43.64300155639648,17.172000885009766,42.32600021362305,14.743000030517578,1.2690000534057615,0.0,41.73799896240234 -448,2016-07-19 16:00:00,48.50199890136719,18.0939998626709,46.2130012512207,15.494000434875488,1.2690000534057615,0.0,42.178001403808594 -449,2016-07-19 17:00:00,49.67399978637695,18.34499931335449,47.6609992980957,15.680999755859377,1.2690000534057615,0.0,43.05649948120117 -450,2016-07-19 18:00:00,49.3390007019043,15.581000328063965,47.23199844360352,13.027999877929688,2.483999967575073,0.0,42.397499084472656 -451,2016-07-19 19:00:00,44.0620002746582,12.984000205993652,41.46799850463867,10.401000022888184,3.6989998817443848,0.0,41.95800018310547 -452,2016-07-19 20:00:00,46.32400131225586,13.402999877929688,43.31800079345703,10.74899959564209,2.4730000495910645,0.0,41.51850128173828 -453,2016-07-19 21:00:00,52.77399826049805,17.843000411987305,49.32300186157226,14.20699977874756,2.4730000495910645,0.0,41.07899856567383 -454,2016-07-19 22:00:00,48.16699981689453,15.83199977874756,46.07899856567383,13.187999725341797,2.4730000495910645,0.0,40.63999938964844 -455,2016-07-19 23:00:00,42.97299957275391,13.821999549865724,40.74499893188477,11.33899974822998,2.4730000495910645,0.0,40.20000076293945 -456,2016-07-20 00:00:00,39.874000549316406,12.732999801635742,37.98400115966797,10.722000122070312,2.4730000495910645,0.0,40.20000076293945 -457,2016-07-20 01:00:00,40.79499816894531,11.727999687194824,38.33200073242188,9.435999870300291,2.4730000495910645,0.0,39.76100158691406 -458,2016-07-20 02:00:00,41.46500015258789,13.402999877929688,38.84199905395508,10.90999984741211,2.4730000495910645,0.0,38.88199996948242 -459,2016-07-20 03:00:00,40.20899963378906,11.895000457763672,38.46599960327149,10.105999946594238,1.2369999885559082,0.0,38.88199996948242 -460,2016-07-20 04:00:00,40.79499816894531,13.402999877929688,38.52000045776367,11.043999671936035,2.45199990272522,0.0,38.6619987487793 -461,2016-07-20 05:00:00,40.04100036621094,12.984000205993652,39.21699905395508,11.28499984741211,0.0,0.0,38.44250106811523 -462,2016-07-20 06:00:00,40.71099853515625,12.480999946594238,39.72600173950195,10.74899959564209,1.246999979019165,0.0,38.22299957275391 -463,2016-07-20 07:00:00,43.05699920654297,13.98900032043457,40.52999877929688,11.741000175476074,2.45199990272522,0.0,38.44250106811523 -464,2016-07-20 08:00:00,40.79499816894531,12.984000205993652,39.45800018310547,11.071000099182127,1.2369999885559082,0.0,39.54100036621094 -465,2016-07-20 09:00:00,44.229000091552734,15.916000366210938,42.75500106811523,13.697999954223633,1.2150000333786009,0.0,40.85950088500977 -466,2016-07-20 10:00:00,43.391998291015625,12.984000205993652,41.62900161743164,10.96399974822998,1.2150000333786009,0.0,43.71549987792969 -467,2016-07-20 11:00:00,47.915000915527344,15.413000106811523,46.749000549316406,13.161999702453612,1.22599995136261,0.0,46.79199981689453 -468,2016-07-20 12:00:00,50.512001037597656,16.50200080871582,49.67100143432617,14.20699977874756,0.0,0.0,47.23149871826172 -469,2016-07-20 13:00:00,51.93600082397461,17.759000778198242,49.99300003051758,14.79699993133545,2.430999994277954,0.0,46.352500915527344 -470,2016-07-20 14:00:00,50.59600067138672,17.423999786376953,48.16999816894531,14.447999954223633,2.430999994277954,0.0,46.79199981689453 -471,2016-07-20 15:00:00,47.83200073242188,15.496999740600586,44.92599868774414,12.517999649047852,2.430999994277954,0.0,47.23149871826172 -472,2016-07-20 16:00:00,53.2760009765625,18.0939998626709,50.63600158691406,15.0649995803833,2.430999994277954,0.0,47.23149871826172 -473,2016-07-20 17:00:00,53.61100006103516,19.099000930786133,51.14500045776367,15.842000007629396,2.430999994277954,0.0,46.13249969482422 -474,2016-07-20 18:00:00,51.34999847412109,17.926000595092773,49.1619987487793,15.038000106811523,2.430999994277954,0.0,45.03400039672852 -475,2016-07-20 19:00:00,51.09799957275391,16.92099952697754,48.5989990234375,13.859000205993652,2.430999994277954,0.0,43.93550109863281 -476,2016-07-20 20:00:00,56.3759994506836,19.51799964904785,53.665000915527344,15.680999755859377,2.430999994277954,0.0,43.49599838256836 -477,2016-07-20 21:00:00,57.46500015258789,21.277000427246094,54.81800079345703,17.208999633789062,3.688999891281128,0.0,43.05649948120117 -478,2016-07-20 22:00:00,55.37099838256836,20.27199935913086,52.70000076293945,16.780000686645508,2.3350000381469727,0.0,43.05649948120117 -479,2016-07-20 23:00:00,51.93600082397461,18.51300048828125,50.20700073242188,15.333000183105469,2.3350000381469727,0.0,43.05649948120117 -480,2016-07-21 00:00:00,49.50699996948242,17.926000595092773,47.6870002746582,15.038000106811523,2.3350000381469727,0.0,42.83649826049805 -481,2016-07-21 01:00:00,48.75299835205078,17.004999160766598,45.62300109863281,13.885000228881836,2.3350000381469727,0.0,42.178001403808594 -482,2016-07-21 02:00:00,47.915000915527344,17.004999160766598,44.73899841308594,13.859000205993652,2.3350000381469727,0.0,41.73799896240234 -483,2016-07-21 03:00:00,43.72700119018555,14.659000396728516,40.58399963378906,12.222999572753904,2.4730000495910645,0.0,41.29899978637695 -484,2016-07-21 04:00:00,47.32899856567383,17.34000015258789,45.2750015258789,14.850000381469728,2.4730000495910645,0.0,40.63949966430664 -485,2016-07-21 05:00:00,47.07799911499024,17.507999420166016,45.06000137329102,14.79699993133545,1.503000020980835,0.0,40.20050048828125 -486,2016-07-21 06:00:00,47.999000549316406,17.674999237060547,45.91799926757813,15.0649995803833,1.2369999885559082,0.0,39.760501861572266 -487,2016-07-21 07:00:00,47.49599838256836,17.172000885009766,45.16799926757813,14.368000030517578,1.2369999885559082,0.0,39.98049926757813 -488,2016-07-21 08:00:00,41.46500015258789,13.487000465393065,40.28900146484375,11.767999649047852,0.0,0.0,41.51850128173828 -489,2016-07-21 09:00:00,49.00400161743164,16.92099952697754,47.6870002746582,14.663000106811523,1.3860000371932983,0.0,43.93550109863281 -490,2016-07-21 10:00:00,47.24499893188477,15.07800006866455,45.97200012207031,13.081000328063965,1.246999979019165,0.0,46.13299942016602 -491,2016-07-21 11:00:00,51.18199920654297,17.089000701904293,50.20700073242188,14.609000205993652,1.22599995136261,0.0,48.76950073242188 -492,2016-07-21 12:00:00,55.53799819946289,19.26700019836425,54.01399993896485,15.895999908447266,0.0,0.0,50.0880012512207 -493,2016-07-21 13:00:00,53.52799987792969,18.010000228881836,52.16400146484375,15.359999656677244,0.0,0.0,51.40650177001953 -494,2016-07-21 14:00:00,52.94100189208984,17.590999603271484,51.81600189208984,14.79699993133545,1.22599995136261,0.0,51.6259994506836 -495,2016-07-21 15:00:00,50.59600067138672,16.50200080871582,49.3489990234375,13.75100040435791,1.2369999885559082,0.0,52.50500106811523 -496,2016-07-21 16:00:00,54.19800186157226,18.17799949645996,53.20899963378906,15.4399995803833,0.0,0.0,52.28499984741211 -497,2016-07-21 17:00:00,53.69499969482422,17.759000778198242,52.37799835205078,15.092000007629396,1.3109999895095823,0.0,50.30749893188477 -498,2016-07-21 18:00:00,50.34500122070313,16.0,48.54499816894531,13.081000328063965,2.632999897003174,0.0,48.98899841308594 -499,2016-07-21 19:00:00,45.82099914550781,13.904999732971191,43.07699966430664,11.312000274658203,2.5369999408721924,0.0,47.89049911499024 -500,2016-07-21 20:00:00,47.58000183105469,14.156999588012695,45.35499954223633,11.392000198364258,2.5480000972747803,0.0,46.13299942016602 -501,2016-07-21 21:00:00,55.0359992980957,16.586000442504886,52.40499877929688,13.241999626159668,2.5480000972747803,0.0,45.03450012207031 -502,2016-07-21 22:00:00,53.69499969482422,17.590999603271484,50.58200073242188,14.286999702453612,2.5480000972747803,0.0,44.375 -503,2016-07-21 23:00:00,51.09799957275391,16.250999450683597,48.2239990234375,13.135000228881836,2.5480000972747803,0.0,43.93550109863281 -504,2016-07-22 00:00:00,48.75299835205078,16.334999084472653,47.23199844360352,13.83199977874756,1.3329999446868896,0.0,43.49599838256836 -505,2016-07-22 01:00:00,49.0880012512207,16.50200080871582,46.6150016784668,13.37600040435791,2.622999906539917,0.0,42.83649826049805 -506,2016-07-22 02:00:00,48.41799926757813,16.250999450683597,45.89099884033203,13.21500015258789,2.622999906539917,0.0,42.397499084472656 -507,2016-07-22 03:00:00,45.82099914550781,15.916000366210938,43.02299880981445,13.053999900817873,2.622999906539917,0.0,42.178001403808594 -508,2016-07-22 04:00:00,43.55899810791016,14.743000030517578,41.38800048828125,12.46500015258789,2.687000036239624,0.0,41.95800018310547 -509,2016-07-22 05:00:00,45.56999969482422,15.664999961853027,42.64799880981445,12.866999626159668,2.687000036239624,0.0,41.29899978637695 -510,2016-07-22 06:00:00,43.2239990234375,13.234999656677244,41.60300064086914,11.204999923706056,1.8339999914169312,0.0,40.85950088500977 -511,2016-07-22 07:00:00,42.303001403808594,14.241000175476074,40.262001037597656,12.222999572753904,1.8339999914169312,0.0,40.85950088500977 -512,2016-07-22 08:00:00,42.88899993896485,14.407999992370604,41.84400177001953,12.652000427246096,1.2369999885559082,0.0,42.1775016784668 -513,2016-07-22 09:00:00,49.92599868774414,17.926000595092773,48.67900085449219,15.680999755859377,1.2790000438690186,0.0,44.375 -514,2016-07-22 10:00:00,47.83200073242188,14.743000030517578,46.374000549316406,12.706000328063965,1.2790000438690186,0.0,46.352500915527344 -515,2016-07-22 11:00:00,52.94100189208984,17.172000885009766,51.73500061035156,14.555999755859377,1.22599995136261,0.0,49.42850112915039 -516,2016-07-22 12:00:00,54.86800003051758,18.010000228881836,53.88000106811523,15.359999656677244,0.0,0.0,50.52750015258789 -517,2016-07-22 13:00:00,56.79499816894531,18.847999572753903,55.35400009155274,15.8149995803833,1.2150000333786009,0.0,52.28499984741211 -518,2016-07-22 14:00:00,53.36000061035156,18.26099967956543,51.73500061035156,14.824000358581545,1.2150000333786009,0.0,54.04299926757813 -519,2016-07-22 15:00:00,56.20800018310547,19.350000381469727,54.81800079345703,16.19099998474121,1.2150000333786009,0.0,55.14149856567383 -520,2016-07-22 16:00:00,54.70000076293945,18.93199920654297,53.55799865722656,15.949000358581545,1.22599995136261,0.0,54.48199844360352 -521,2016-07-22 17:00:00,56.125,19.43400001525879,54.14799880981445,15.92300033569336,1.2150000333786009,0.0,52.28549957275391 -522,2016-07-22 18:00:00,56.96200180053711,18.93199920654297,55.40700149536133,15.842000007629396,1.2150000333786009,0.0,51.186500549316406 -523,2016-07-22 19:00:00,52.77399826049805,15.916000366210938,50.77000045776367,13.053999900817873,1.2150000333786009,0.0,49.64849853515625 -524,2016-07-22 20:00:00,60.14500045776367,19.51799964904785,56.90900039672852,15.467000007629396,2.5369999408721924,0.0,47.89049911499024 -525,2016-07-22 21:00:00,58.05099868774414,18.17799949645996,54.87099838256836,14.475000381469728,2.5369999408721924,0.0,47.012001037597656 -526,2016-07-22 22:00:00,58.97299957275391,19.601999282836918,57.65900039672852,16.19099998474121,1.5670000314712524,0.0,46.13299942016602 -527,2016-07-22 23:00:00,53.52799987792969,17.507999420166016,50.74300003051758,14.126999855041506,2.96399998664856,0.0,45.69350051879883 -528,2016-07-23 00:00:00,53.86299896240234,17.926000595092773,51.36000061035156,14.6899995803833,2.494999885559082,0.0,44.81449890136719 -529,2016-07-23 01:00:00,50.34500122070313,16.0,49.0009994506836,13.564000129699709,2.494999885559082,0.0,44.15549850463867 -530,2016-07-23 02:00:00,48.75299835205078,15.916000366210938,46.2130012512207,12.920000076293944,2.494999885559082,0.0,43.2765007019043 -531,2016-07-23 03:00:00,45.56999969482422,14.072999954223633,43.74700164794922,11.821000099182127,1.2790000438690186,0.0,42.617000579833984 -532,2016-07-23 04:00:00,47.1609992980957,15.413000106811523,44.81900024414063,12.84000015258789,2.505000114440918,0.0,41.51850128173828 -533,2016-07-23 05:00:00,45.31800079345703,14.659000396728516,43.479000091552734,12.383999824523926,1.2690000534057615,0.0,41.079498291015625 -534,2016-07-23 06:00:00,46.57500076293945,15.748000144958494,44.229000091552734,13.161999702453612,2.483999967575073,0.0,40.20050048828125 -535,2016-07-23 07:00:00,42.72200012207031,14.491999626159668,41.415000915527344,12.277000427246096,1.2369999885559082,0.0,40.41999816894531 -536,2016-07-23 08:00:00,45.98899841308594,14.82699966430664,44.65800094604492,12.62600040435791,1.2369999885559082,0.0,42.397499084472656 -537,2016-07-23 09:00:00,53.69499969482422,18.010000228881836,51.14500045776367,14.555999755859377,2.45199990272522,0.0,44.59500122070313 -538,2016-07-23 10:00:00,58.38600158691406,21.025999069213867,55.97000122070313,17.26300048828125,2.45199990272522,0.0,47.23149871826172 -539,2016-07-23 11:00:00,59.47499847412109,21.61199951171875,56.61399841308594,17.503999710083008,2.45199990272522,0.0,50.74700164794922 -540,2016-07-23 12:00:00,60.14500045776367,20.27199935913086,57.92699813842773,16.620000839233402,1.2899999618530271,0.0,52.7244987487793 -541,2016-07-23 13:00:00,60.39699935913086,21.19300079345703,58.59700012207031,17.075000762939453,2.5910000801086426,0.0,53.60350036621094 -542,2016-07-23 14:00:00,60.39699935913086,21.44499969482422,58.40999984741211,17.665000915527344,1.3969999551773071,0.0,55.58100128173828 -543,2016-07-23 15:00:00,60.98300170898438,22.70100021362305,58.8120002746582,18.173999786376957,2.611999988555908,1.246999979019165,56.02050018310547 -544,2016-07-23 16:00:00,60.81600189208984,21.780000686645508,58.51699829101562,17.7450008392334,1.3860000371932983,0.0,54.70199966430664 -545,2016-07-23 17:00:00,59.72700119018555,21.527999877929688,57.57899856567383,17.181999206542972,2.6010000705718994,1.2150000333786009,52.7244987487793 -546,2016-07-23 18:00:00,57.54899978637695,19.684999465942383,54.87099838256836,16.030000686645508,2.6010000705718994,0.0,51.6259994506836 -547,2016-07-23 19:00:00,52.60599899291992,15.413000106811523,50.31399917602539,12.383999824523926,2.6010000705718994,0.0,50.30749893188477 -548,2016-07-23 20:00:00,56.62699890136719,17.590999603271484,53.88000106811523,13.965999603271484,2.6010000705718994,0.0,48.76950073242188 -549,2016-07-23 21:00:00,62.32300186157226,21.11000061035156,59.5890007019043,17.04800033569336,2.6010000705718994,0.0,47.45100021362305 -550,2016-07-23 22:00:00,60.89899826049805,20.69099998474121,57.63199996948242,16.29800033569336,2.6010000705718994,1.3109999895095823,46.571998596191406 -551,2016-07-23 23:00:00,58.72100067138672,20.27199935913086,55.38100051879883,15.949000358581545,2.622999906539917,1.2150000333786009,45.91350173950195 -552,2016-07-24 00:00:00,53.52799987792969,18.0939998626709,51.25299835205078,15.038000106811523,2.622999906539917,0.0,45.4734992980957 -553,2016-07-24 01:00:00,52.68999862670898,18.010000228881836,50.98500061035156,15.17199993133545,1.2150000333786009,0.0,44.59450149536133 -554,2016-07-24 02:00:00,52.85800170898438,18.010000228881836,49.99300003051758,14.501999855041506,2.7079999446868896,0.0,43.71549987792969 -555,2016-07-24 03:00:00,51.09799957275391,17.926000595092773,49.8849983215332,15.279000282287598,1.2150000333786009,0.0,43.2765007019043 -556,2016-07-24 04:00:00,52.94100189208984,18.34499931335449,49.40299987792969,14.850000381469728,2.569000005722046,0.0,42.617000579833984 -557,2016-07-24 05:00:00,51.68500137329102,18.17799949645996,49.26900100708008,15.279000282287598,2.697000026702881,0.0,41.95800018310547 -558,2016-07-24 06:00:00,50.76300048828125,18.429000854492188,48.14300155639648,14.904000282287598,2.697000026702881,1.2150000333786009,41.51850128173828 -559,2016-07-24 07:00:00,41.88399887084961,13.654000282287598,40.74499893188477,11.847999572753904,1.2580000162124634,0.0,41.73799896240234 -560,2016-07-24 08:00:00,46.2400016784668,14.82699966430664,44.81900024414063,12.571999549865724,1.3220000267028809,0.0,43.71599960327149 -561,2016-07-24 09:00:00,53.86299896240234,17.759000778198242,51.95000076293945,14.609000205993652,1.3220000267028809,0.0,46.13299942016602 -562,2016-07-24 10:00:00,55.45399856567383,18.26099967956543,53.10200119018555,15.199000358581545,1.3220000267028809,0.0,48.54949951171875 -563,2016-07-24 11:00:00,56.62699890136719,18.429000854492188,54.22800064086914,15.118000030517578,2.5369999408721924,0.0,50.30749893188477 -564,2016-07-24 12:00:00,59.39099884033203,19.099000930786133,57.17699813842773,15.76200008392334,2.440999984741211,0.0,52.94400024414063 -565,2016-07-24 13:00:00,60.98300170898438,19.601999282836918,57.84700012207031,15.8149995803833,2.440999984741211,0.0,54.70199966430664 -566,2016-07-24 14:00:00,58.38600158691406,18.26099967956543,55.48799896240234,14.63599967956543,2.440999984741211,0.0,56.89950180053711 -567,2016-07-24 15:00:00,58.21900177001953,19.26700019836425,56.34600067138672,15.359999656677244,1.246999979019165,0.0,57.77849960327149 -568,2016-07-24 16:00:00,58.72100067138672,19.26700019836425,56.50699996948242,15.895999908447266,2.4730000495910645,0.0,56.459999084472656 -569,2016-07-24 17:00:00,51.93600082397461,15.581000328063965,49.5099983215332,12.41100025177002,2.463000059127808,0.0,54.26300048828125 -570,2016-07-24 18:00:00,56.125,16.836999893188473,53.85300064086914,13.482999801635742,2.463000059127808,0.0,52.94400024414063 -571,2016-07-24 19:00:00,54.02999877929688,16.166999816894528,52.05699920654297,13.135000228881836,2.463000059127808,0.0,51.186500549316406 -572,2016-07-24 20:00:00,60.14500045776367,19.099000930786133,57.36399841308594,15.145000457763672,2.463000059127808,0.0,49.42850112915039 -573,2016-07-24 21:00:00,58.21900177001953,17.674999237060547,56.07799911499024,14.126999855041506,2.463000059127808,0.0,48.33000183105469 -574,2016-07-24 22:00:00,62.49100112915039,21.025999069213867,59.64300155639648,16.110000610351562,3.688999891281128,1.22599995136261,47.67050170898438 -575,2016-07-24 23:00:00,57.29700088500977,19.183000564575195,55.48799896240234,15.574000358581545,2.3559999465942383,0.0,47.23149871826172 -576,2016-07-25 00:00:00,57.13000106811523,19.684999465942383,53.82600021362305,15.574000358581545,3.5720000267028813,1.3109999895095823,46.352500915527344 -577,2016-07-25 01:00:00,49.42300033569336,16.250999450683597,48.35800170898438,13.590999603271484,1.7699999809265137,0.0,45.91350173950195 -578,2016-07-25 02:00:00,52.94100189208984,16.753999710083008,49.40299987792969,12.973999977111816,3.059999942779541,1.246999979019165,45.03450012207031 -579,2016-07-25 03:00:00,51.68500137329102,17.423999786376953,50.82400131225586,14.824000358581545,1.343000054359436,0.0,44.15549850463867 -580,2016-07-25 04:00:00,50.34500122070313,16.836999893188473,47.6609992980957,13.83199977874756,3.006999969482422,0.0,43.71549987792969 -581,2016-07-25 05:00:00,49.59099960327149,16.92099952697754,48.196998596191406,14.42099952697754,0.0,0.0,42.83649826049805 -582,2016-07-25 06:00:00,51.09799957275391,17.34000015258789,48.73300170898438,14.368000030517578,2.5269999504089355,0.0,42.83649826049805 -583,2016-07-25 07:00:00,41.88399887084961,12.984000205993652,40.69100189208984,10.989999771118164,1.7480000257492063,0.0,43.05649948120117 -584,2016-07-25 08:00:00,45.90499877929688,14.576000213623049,45.19400024414063,12.652000427246096,0.0,0.0,43.93550109863281 -585,2016-07-25 09:00:00,54.11399841308594,19.099000930786133,52.64599990844727,16.19099998474121,1.343000054359436,0.0,46.352500915527344 -586,2016-07-25 10:00:00,53.86299896240234,16.586000442504886,52.35200119018555,13.777999877929688,1.2150000333786009,0.0,48.98949813842773 -587,2016-07-25 11:00:00,61.82099914550781,21.780000686645508,60.3129997253418,18.040000915527344,1.2150000333786009,0.0,52.50500106811523 -588,2016-07-25 12:00:00,60.81600189208984,19.601999282836918,59.4020004272461,16.431999206542972,0.0,0.0,54.48249816894531 -589,2016-07-25 13:00:00,59.13999938964844,18.429000854492188,57.68600082397461,15.305999755859377,1.246999979019165,0.0,55.36100006103516 -590,2016-07-25 14:00:00,59.30799865722656,19.937000274658203,57.79299926757813,16.458999633789062,1.246999979019165,0.0,57.11949920654297 -591,2016-07-25 15:00:00,48.16699981689453,13.654000282287598,47.178001403808594,11.312000274658203,0.0,0.0,58.4375 -592,2016-07-25 16:00:00,52.85800170898438,17.256000518798828,51.81600189208984,14.63599967956543,0.0,0.0,56.89950180053711 -593,2016-07-25 17:00:00,52.10400009155274,16.083000183105472,50.52899932861328,13.081000328063965,1.3009999990463257,0.0,54.26300048828125 -594,2016-07-25 18:00:00,54.95199966430664,17.759000778198242,52.80699920654297,14.6899995803833,1.3009999990463257,0.0,52.94400024414063 -595,2016-07-25 19:00:00,49.59099960327149,13.487000465393065,48.35800170898438,11.418999671936035,1.375,0.0,51.186500549316406 -596,2016-07-25 20:00:00,57.88399887084961,17.423999786376953,55.40700149536133,13.590999603271484,2.664999961853028,0.0,48.98949813842773 -597,2016-07-25 21:00:00,60.81600189208984,19.350000381469727,58.03400039672852,15.17199993133545,2.45199990272522,0.0,47.67050170898438 -598,2016-07-25 22:00:00,56.3759994506836,17.843000411987305,54.17399978637695,14.340999603271484,2.440999984741211,0.0,46.79199981689453 -599,2016-07-25 23:00:00,55.0359992980957,17.172000885009766,51.84199905395508,13.29599952697754,3.677999973297119,1.5779999494552612,46.352500915527344 -600,2016-07-26 00:00:00,54.95199966430664,18.0939998626709,52.19100189208984,14.850000381469728,2.463000059127808,0.0,45.4734992980957 -601,2016-07-26 01:00:00,54.86800003051758,18.68000030517578,51.73500061035156,14.824000358581545,3.677999973297119,1.375,44.59450149536133 -602,2016-07-26 02:00:00,52.77399826049805,17.926000595092773,50.28799819946289,14.984000205993652,2.4200000762939453,0.0,43.71549987792969 -603,2016-07-26 03:00:00,51.43399810791016,17.507999420166016,49.61700057983398,14.58199977874756,2.1540000438690186,0.0,43.2765007019043 -604,2016-07-26 04:00:00,51.34999847412109,17.759000778198242,48.5989990234375,14.715999603271484,3.380000114440918,0.0,42.397499084472656 -605,2016-07-26 05:00:00,49.3390007019043,16.753999710083008,47.125,13.993000030517578,1.7480000257492063,0.0,41.95800018310547 -606,2016-07-26 06:00:00,51.93600082397461,18.51300048828125,49.26900100708008,15.305999755859377,2.96399998664856,0.0,41.73799896240234 -607,2016-07-26 07:00:00,49.25600051879883,17.759000778198242,47.6870002746582,15.17199993133545,1.2369999885559082,0.0,41.95800018310547 -608,2016-07-26 08:00:00,49.3390007019043,15.83199977874756,47.98199844360352,13.37600040435791,1.2150000333786009,0.0,43.93550109863281 -609,2016-07-26 09:00:00,56.96200180053711,19.937000274658203,55.99700164794922,17.236000061035153,0.0,0.0,46.13299942016602 -610,2016-07-26 10:00:00,56.04100036621094,17.926000595092773,53.93299865722656,14.770000457763672,1.2150000333786009,0.0,48.33000183105469 -611,2016-07-26 11:00:00,62.2400016784668,21.36100006103516,60.71500015258789,17.63800048828125,1.2150000333786009,0.0,51.84550094604492 -612,2016-07-26 12:00:00,61.1510009765625,20.27199935913086,59.83000183105469,16.861000061035153,1.3109999895095823,0.0,53.60350036621094 -613,2016-07-26 13:00:00,60.3129997253418,19.85300064086914,58.8650016784668,16.458999633789062,1.375,0.0,54.92200088500977 -614,2016-07-26 14:00:00,57.71599960327149,18.763999938964844,56.21200180053711,15.76200008392334,1.2150000333786009,0.0,57.11899948120117 -615,2016-07-26 15:00:00,54.28200149536133,18.847999572753903,52.78099822998047,15.654999732971191,1.2369999885559082,0.0,57.99800109863281 -616,2016-07-26 16:00:00,52.27099990844727,15.83199977874756,50.71599960327149,13.081000328063965,1.22599995136261,0.0,56.67950057983398 -617,2016-07-26 17:00:00,59.30799865722656,20.1879997253418,57.63199996948242,16.88800048828125,1.22599995136261,0.0,54.26300048828125 -618,2016-07-26 18:00:00,61.06700134277344,21.69599914550781,58.35599899291992,17.77199935913086,2.5160000324249268,0.0,52.7244987487793 -619,2016-07-26 19:00:00,55.87300109863281,17.590999603271484,53.53099822998047,14.100000381469728,2.5160000324249268,0.0,51.40599822998047 -620,2016-07-26 20:00:00,59.13999938964844,18.59600067138672,58.06100082397461,15.4399995803833,0.0,0.0,49.64849853515625 -621,2016-07-26 21:00:00,61.56900024414063,20.69099998474121,58.59700012207031,16.270999908447266,3.785000085830689,1.4609999656677246,48.76950073242188 -622,2016-07-26 22:00:00,58.05099868774414,19.183000564575195,55.19300079345703,15.494000434875488,2.494999885559082,0.0,47.89049911499024 -623,2016-07-26 23:00:00,56.3759994506836,18.51300048828125,53.69200134277344,15.038000106811523,3.742000102996826,0.0,47.23149871826172 -624,2016-07-27 00:00:00,53.2760009765625,17.759000778198242,50.20700073242188,14.234000205993652,2.121999979019165,1.2150000333786009,46.571998596191406 -625,2016-07-27 01:00:00,55.53799819946289,18.847999572753903,52.05699920654297,15.118000030517578,2.121999979019165,0.0,45.91350173950195 -626,2016-07-27 02:00:00,54.70000076293945,18.68000030517578,51.65499877929688,15.199000358581545,2.121999979019165,1.2150000333786009,45.25400161743164 -627,2016-07-27 03:00:00,53.86299896240234,18.0939998626709,51.25299835205078,14.850000381469728,2.121999979019165,0.0,44.81449890136719 -628,2016-07-27 04:00:00,53.44400024414063,18.51300048828125,50.47499847412109,15.22599983215332,2.121999979019165,0.0,44.15549850463867 -629,2016-07-27 05:00:00,52.27099990844727,17.590999603271484,49.45700073242188,14.770000457763672,2.121999979019165,0.0,43.93550109863281 -630,2016-07-27 06:00:00,51.09799957275391,17.507999420166016,48.4379997253418,14.529000282287598,2.121999979019165,0.0,43.49599838256836 -631,2016-07-27 07:00:00,51.51699829101562,19.01499938964844,49.5099983215332,15.97599983215332,2.121999979019165,0.0,43.71549987792969 -632,2016-07-27 08:00:00,41.46500015258789,12.732999801635742,40.23500061035156,10.989999771118164,2.121999979019165,0.0,44.81449890136719 -633,2016-07-27 09:00:00,50.59600067138672,16.670000076293945,49.02799987792969,14.340999603271484,1.22599995136261,0.0,46.571998596191406 -634,2016-07-27 10:00:00,51.93600082397461,16.334999084472653,50.31399917602539,13.939000129699709,1.22599995136261,0.0,48.33000183105469 -635,2016-07-27 11:00:00,55.37099838256836,17.843000411987305,53.45100021362305,15.199000358581545,1.2369999885559082,0.0,51.40650177001953 -636,2016-07-27 12:00:00,55.87300109863281,19.01499938964844,54.71099853515625,16.325000762939453,0.0,0.0,52.7244987487793 -637,2016-07-27 13:00:00,54.95199966430664,18.847999572753903,53.77199935913086,16.056999206542972,1.2580000162124634,0.0,53.60350036621094 -638,2016-07-27 14:00:00,55.78900146484375,19.43400001525879,54.25500106811523,16.110000610351562,1.2580000162124634,0.0,54.70199966430664 -639,2016-07-27 15:00:00,57.88399887084961,18.93199920654297,56.29199981689453,15.8149995803833,1.2580000162124634,0.0,48.98899841308594 -640,2016-07-27 16:00:00,60.98300170898438,21.11000061035156,59.50899887084961,17.63800048828125,1.3220000267028809,0.0,51.6259994506836 -641,2016-07-27 17:00:00,61.48600006103516,21.780000686645508,59.72299957275391,17.584999084472653,1.3650000095367432,0.0,51.84550094604492 -642,2016-07-27 18:00:00,60.81600189208984,20.77400016784668,58.51699829101562,16.995000839233402,1.3650000095367432,0.0,51.84550094604492 -643,2016-07-27 19:00:00,56.29199981689453,16.753999710083008,53.07500076293945,13.37600040435791,3.1559998989105225,0.0,50.74700164794922 -644,2016-07-27 20:00:00,58.63800048828125,18.010000228881836,56.21200180053711,14.234000205993652,3.059999942779541,0.0,48.98949813842773 -645,2016-07-27 21:00:00,63.83100128173828,21.94700050354004,60.76900100708008,17.531000137329098,2.9749999046325684,0.0,47.89049911499024 -646,2016-07-27 22:00:00,59.47499847412109,20.43899917602539,56.72100067138672,16.110000610351562,2.9749999046325684,1.246999979019165,46.79199981689453 -647,2016-07-27 23:00:00,57.63199996948242,19.43400001525879,55.13899993896485,15.680999755859377,2.463000059127808,0.0,46.352500915527344 -648,2016-07-28 00:00:00,53.0250015258789,16.419000625610348,50.79700088500977,13.456000328063965,2.463000059127808,0.0,45.69350051879883 -649,2016-07-28 01:00:00,52.35499954223633,17.507999420166016,50.52899932861328,14.501999855041506,1.2150000333786009,0.0,45.25400161743164 -650,2016-07-28 02:00:00,49.00400161743164,16.250999450683597,47.74100112915039,13.725000381469728,2.697000026702881,0.0,44.81449890136719 -651,2016-07-28 03:00:00,50.512001037597656,16.836999893188473,48.11600112915039,14.100000381469728,2.697000026702881,0.0,44.15549850463867 -652,2016-07-28 04:00:00,50.17699813842773,17.507999420166016,47.84799957275391,14.475000381469728,2.697000026702881,0.0,43.49599838256836 -653,2016-07-28 05:00:00,45.4020004272461,14.82699966430664,43.31800079345703,12.41100025177002,1.22599995136261,0.0,43.05649948120117 -654,2016-07-28 06:00:00,41.96799850463867,14.072999954223633,40.15499877929688,11.875,1.3220000267028809,0.0,42.617000579833984 -655,2016-07-28 07:00:00,48.584999084472656,17.256000518798828,46.64199829101562,14.555999755859377,1.2580000162124634,0.0,42.178001403808594 -656,2016-07-28 08:00:00,46.15599822998047,14.407999992370604,44.685001373291016,12.25,1.2580000162124634,0.0,43.2760009765625 -657,2016-07-28 09:00:00,53.36000061035156,17.590999603271484,51.81600189208984,14.79699993133545,1.246999979019165,0.0,45.25400161743164 -658,2016-07-28 10:00:00,54.02999877929688,17.507999420166016,52.512001037597656,14.42099952697754,1.246999979019165,0.0,47.67100143432617 -659,2016-07-28 11:00:00,60.73199844360352,21.69599914550781,59.29399871826172,18.334999084472656,1.246999979019165,0.0,50.74700164794922 -660,2016-07-28 12:00:00,61.06700134277344,20.356000900268555,59.5890007019043,16.995000839233402,1.2580000162124634,0.0,52.7244987487793 -661,2016-07-28 13:00:00,61.65299987792969,20.941999435424805,60.23300170898438,17.423999786376953,1.3539999723434448,0.0,53.82350158691406 -662,2016-07-28 14:00:00,59.39099884033203,20.941999435424805,57.874000549316406,17.611000061035156,1.246999979019165,0.0,56.459999084472656 -663,2016-07-28 15:00:00,59.64300155639648,21.69599914550781,57.98099899291992,18.2549991607666,1.246999979019165,0.0,57.11899948120117 -664,2016-07-28 16:00:00,58.21900177001953,19.768999099731445,56.88199996948242,16.593000411987305,1.2580000162124634,0.0,56.02050018310547 -665,2016-07-28 17:00:00,57.38100051879883,20.27199935913086,55.81000137329102,16.968000411987305,1.2150000333786009,0.0,54.26300048828125 -666,2016-07-28 18:00:00,59.47499847412109,20.77400016784668,58.35599899291992,17.423999786376953,1.3969999551773071,0.0,52.94400024414063 -667,2016-07-28 19:00:00,55.37099838256836,17.256000518798828,54.14799880981445,14.18000030517578,1.2899999618530271,0.0,51.6259994506836 -668,2016-07-28 20:00:00,60.39699935913086,19.183000564575195,57.12300109863281,14.876999855041506,3.82699990272522,1.2150000333786009,49.86800003051758 -669,2016-07-28 21:00:00,61.90499877929688,21.69599914550781,60.17900085449219,17.63800048828125,1.758999943733215,0.0,48.76950073242188 -670,2016-07-28 22:00:00,63.24499893188477,22.36599922180176,60.23300170898438,17.826000213623047,3.006999969482422,1.3329999446868896,47.89049911499024 -671,2016-07-28 23:00:00,59.89400100708008,21.527999877929688,57.76599884033203,17.451000213623047,3.006999969482422,1.3009999990463257,47.45100021362305 -672,2016-07-29 00:00:00,58.05099868774414,19.601999282836918,54.01399993896485,15.520999908447266,2.740000009536743,1.22599995136261,46.79199981689453 -673,2016-07-29 01:00:00,53.946998596191406,18.51300048828125,50.95800018310547,15.22599983215332,2.740000009536743,0.0,45.91350173950195 -674,2016-07-29 02:00:00,51.43399810791016,17.004999160766598,48.7599983215332,14.072999954223633,2.740000009536743,0.0,45.25400161743164 -675,2016-07-29 03:00:00,51.26599884033203,17.507999420166016,49.02799987792969,14.63599967956543,2.740000009536743,0.0,44.59450149536133 -676,2016-07-29 04:00:00,50.93099975585938,17.590999603271484,48.46500015258789,14.395000457763672,2.750999927520752,0.0,43.93550109863281 -677,2016-07-29 05:00:00,52.77399826049805,18.93199920654297,49.61700057983398,15.22599983215332,1.3220000267028809,0.0,43.49599838256836 -678,2016-07-29 06:00:00,52.68999862670898,19.183000564575195,49.48300170898438,15.949000358581545,2.5369999408721924,0.0,42.617000579833984 -679,2016-07-29 07:00:00,49.50699996948242,18.59600067138672,47.28499984741211,15.708000183105469,2.5369999408721924,0.0,42.617000579833984 -680,2016-07-29 08:00:00,50.68000030517578,17.34000015258789,48.196998596191406,14.314000129699709,2.5369999408721924,0.0,43.93550109863281 -681,2016-07-29 09:00:00,57.46500015258789,21.527999877929688,56.10400009155274,18.28199958801269,1.3220000267028809,0.0,46.352500915527344 -682,2016-07-29 10:00:00,55.45399856567383,17.674999237060547,53.71900177001953,14.743000030517578,1.3220000267028809,0.0,48.54949951171875 -683,2016-07-29 11:00:00,60.0620002746582,19.937000274658203,58.6510009765625,16.378000259399414,1.3220000267028809,0.0,52.06549835205078 -684,2016-07-29 12:00:00,62.15599822998047,21.44499969482422,60.76900100708008,17.798999786376953,1.3220000267028809,0.0,53.82350158691406 -685,2016-07-29 13:00:00,59.55899810791016,20.020999908447266,58.678001403808594,16.995000839233402,1.2369999885559082,0.0,53.82350158691406 -686,2016-07-29 14:00:00,62.49100112915039,21.863000869750977,61.0099983215332,18.201000213623047,1.2150000333786009,0.0,54.70199966430664 -687,2016-07-29 15:00:00,61.48600006103516,25.632999420166016,58.6510009765625,17.181999206542972,1.2150000333786009,0.0,55.14149856567383 -688,2016-07-29 16:00:00,58.55400085449219,20.020999908447266,56.90900039672852,17.04800033569336,1.2150000333786009,0.0,54.48199844360352 -689,2016-07-29 17:00:00,60.64799880981445,20.77400016784668,59.0260009765625,17.236000061035153,1.22599995136261,0.0,53.16400146484375 -690,2016-07-29 18:00:00,59.72700119018555,20.60700035095215,58.00799942016602,17.04800033569336,1.246999979019165,0.0,52.28549957275391 -691,2016-07-29 19:00:00,55.95700073242188,17.926000595092773,53.82600021362305,14.743000030517578,2.687000036239624,0.0,51.186500549316406 -692,2016-07-29 20:00:00,62.57500076293945,20.941999435424805,59.0260009765625,16.56599998474121,2.687000036239624,1.3220000267028809,50.0880012512207 -693,2016-07-29 21:00:00,63.32899856567383,21.025999069213867,59.75,16.56599998474121,2.9110000133514404,1.2369999885559082,48.54949951171875 -694,2016-07-29 22:00:00,58.21900177001953,18.68000030517578,56.85499954223633,15.734999656677244,1.4709999561309814,0.0,47.67050170898438 -695,2016-07-29 23:00:00,56.54299926757813,18.763999938964844,54.68399810791016,15.54699993133545,2.719000101089477,0.0,47.23149871826172 -696,2016-07-30 00:00:00,55.0359992980957,18.93199920654297,53.42399978637695,15.895999908447266,2.719000101089477,0.0,46.571998596191406 -697,2016-07-30 01:00:00,53.946998596191406,18.17799949645996,50.82400131225586,14.6899995803833,2.888999938964844,0.0,46.13299942016602 -698,2016-07-30 02:00:00,53.44400024414063,18.429000854492188,51.25299835205078,15.38700008392334,1.22599995136261,0.0,45.91350173950195 -699,2016-07-30 03:00:00,51.93600082397461,17.674999237060547,49.56399917602539,14.79699993133545,2.622999906539917,0.0,45.03450012207031 -700,2016-07-30 04:00:00,52.52299880981445,18.51300048828125,49.61700057983398,15.333000183105469,2.632999897003174,0.0,44.15549850463867 -701,2016-07-30 05:00:00,52.27099990844727,18.68000030517578,49.45700073242188,15.38700008392334,2.632999897003174,0.0,43.71549987792969 -702,2016-07-30 06:00:00,53.10900115966797,19.43400001525879,49.85900115966797,15.97599983215332,2.632999897003174,0.0,42.83649826049805 -703,2016-07-30 07:00:00,49.92599868774414,18.51300048828125,48.4379997253418,15.708000183105469,2.632999897003174,0.0,43.49599838256836 -704,2016-07-30 08:00:00,45.98899841308594,14.491999626159668,44.92599868774414,12.517999649047852,0.0,0.0,44.375 -705,2016-07-30 09:00:00,50.68000030517578,15.83199977874756,49.24200057983398,13.241999626159668,1.246999979019165,0.0,46.352500915527344 -706,2016-07-30 10:00:00,59.81000137329102,21.36100006103516,58.4370002746582,17.826000213623047,1.2150000333786009,0.0,48.98949813842773 -707,2016-07-30 11:00:00,59.55899810791016,19.937000274658203,58.06100082397461,16.511999130249027,1.2150000333786009,0.0,52.94400024414063 -708,2016-07-30 12:00:00,60.0620002746582,19.099000930786133,58.89199829101562,15.8149995803833,1.2150000333786009,0.0,54.04299926757813 -709,2016-07-30 13:00:00,58.88899993896485,18.93199920654297,57.17699813842773,15.628000259399414,1.2150000333786009,0.0,54.70199966430664 -710,2016-07-30 14:00:00,60.3129997253418,20.27199935913086,59.26800155639648,16.861000061035153,1.3329999446868896,0.0,56.89950180053711 -711,2016-07-30 15:00:00,61.4020004272461,21.36100006103516,59.9640007019043,17.691999435424805,1.2150000333786009,0.0,57.55849838256836 -712,2016-07-30 16:00:00,60.89899826049805,21.19300079345703,59.4020004272461,17.691999435424805,1.2150000333786009,0.0,54.92150115966797 -713,2016-07-30 17:00:00,59.13999938964844,19.768999099731445,58.16799926757813,16.700000762939453,0.0,0.0,51.6259994506836 -714,2016-07-30 18:00:00,59.13999938964844,19.183000564575195,56.98899841308594,15.97599983215332,1.2790000438690186,0.0,50.30749893188477 -715,2016-07-30 19:00:00,53.0250015258789,16.836999893188473,52.08399963378906,14.072999954223633,0.0,0.0,49.64849853515625 -716,2016-07-30 20:00:00,63.32899856567383,21.61199951171875,60.01800155639648,17.04800033569336,2.5480000972747803,1.22599995136261,48.54999923706055 -717,2016-07-30 21:00:00,62.2400016784668,20.52300071716309,60.58100128173828,16.726999282836914,1.3329999446868896,0.0,48.33000183105469 -718,2016-07-30 22:00:00,61.31800079345703,0.0,60.09799957275391,0.0,0.0,0.0,48.11050033569336 -719,2016-07-30 23:00:00,56.87799835205078,19.01499938964844,55.75600051879883,15.895999908447266,1.246999979019165,0.0,47.54899978637695 -720,2016-07-31 00:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -721,2016-07-31 01:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -722,2016-07-31 02:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -723,2016-07-31 03:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -724,2016-07-31 04:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -725,2016-07-31 05:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -726,2016-07-31 06:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -727,2016-07-31 07:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -728,2016-07-31 08:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -729,2016-07-31 09:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -730,2016-07-31 10:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -731,2016-07-31 11:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -732,2016-07-31 12:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -733,2016-07-31 13:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -734,2016-07-31 14:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -735,2016-07-31 15:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -736,2016-07-31 16:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -737,2016-07-31 17:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -738,2016-07-31 18:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -739,2016-07-31 19:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -740,2016-07-31 20:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -741,2016-07-31 21:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -742,2016-07-31 22:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -743,2016-07-31 23:00:00,57.13000106811523,19.43400001525879,56.02399826049805,16.163999557495114,1.2150000333786009,0.0,47.32899856567383 -744,2016-08-01 00:00:00,50.68000030517578,16.836999893188473,48.16999816894531,13.456000328063965,2.719000101089477,0.0,45.13199996948242 -745,2016-08-01 01:00:00,51.76900100708008,17.256000518798828,48.70600128173828,13.725000381469728,2.5910000801086426,0.0,44.69250106811523 -746,2016-08-01 02:00:00,48.66899871826172,16.250999450683597,46.803001403808594,13.321999549865724,2.5910000801086426,0.0,43.8134994506836 -747,2016-08-01 03:00:00,51.68500137329102,17.674999237060547,48.51800155639648,14.26099967956543,2.7929999828338623,0.0,42.93450164794922 -748,2016-08-01 04:00:00,49.59099960327149,17.172000885009766,47.7140007019043,14.100000381469728,2.7929999828338623,0.0,42.49499893188477 -749,2016-08-01 05:00:00,51.01499938964844,17.926000595092773,47.20500183105469,14.529000282287598,2.5910000801086426,1.2150000333786009,41.83599853515625 -750,2016-08-01 06:00:00,49.17200088500977,17.34000015258789,48.16999816894531,14.876999855041506,1.375,0.0,41.17649841308594 -751,2016-08-01 07:00:00,49.67399978637695,17.507999420166016,47.25899887084961,14.609000205993652,2.5910000801086426,0.0,41.17649841308594 -752,2016-08-01 08:00:00,45.48600006103516,15.581000328063965,43.98799896240234,13.29599952697754,2.5910000801086426,0.0,41.39649963378906 -753,2016-08-01 09:00:00,49.67399978637695,16.92099952697754,48.33100128173828,14.100000381469728,2.5910000801086426,0.0,43.374000549316406 -754,2016-08-01 10:00:00,51.09799957275391,16.753999710083008,49.72499847412109,13.83199977874756,2.5910000801086426,0.0,45.35150146484375 -755,2016-08-01 11:00:00,54.86800003051758,17.674999237060547,53.15599822998047,14.6899995803833,1.2790000438690186,0.0,49.5265007019043 -756,2016-08-01 12:00:00,58.80500030517578,18.68000030517578,57.49800109863281,15.680999755859377,1.2790000438690186,0.0,50.84450149536133 -757,2016-08-01 13:00:00,56.54299926757813,18.0939998626709,55.22000122070313,15.038000106811523,1.2790000438690186,0.0,51.7234992980957 -758,2016-08-01 14:00:00,58.63800048828125,19.937000274658203,57.41799926757813,16.67300033569336,1.2150000333786009,0.0,52.38249969482422 -759,2016-08-01 15:00:00,56.96200180053711,19.350000381469727,55.56800079345703,16.270999908447266,1.2150000333786009,0.0,53.92100143432617 -760,2016-08-01 16:00:00,58.303001403808594,19.85300064086914,56.88199996948242,16.378000259399414,1.2150000333786009,0.0,53.04199981689453 -761,2016-08-01 17:00:00,58.80500030517578,20.1879997253418,57.36399841308594,16.726999282836914,1.2150000333786009,0.0,51.50400161743164 -762,2016-08-01 18:00:00,56.71099853515625,19.01499938964844,55.03200149536133,15.734999656677244,1.2150000333786009,0.0,50.18600082397461 -763,2016-08-01 19:00:00,53.44400024414063,16.166999816894528,51.03799819946289,13.21500015258789,2.463000059127808,0.0,48.86700057983398 -764,2016-08-01 20:00:00,59.13999938964844,19.350000381469727,56.72100067138672,15.520999908447266,2.463000059127808,0.0,47.54899978637695 -765,2016-08-01 21:00:00,58.72100067138672,19.350000381469727,56.45299911499024,16.030000686645508,2.463000059127808,0.0,46.88949966430664 -766,2016-08-01 22:00:00,54.61700057983398,17.423999786376953,53.12900161743164,14.475000381469728,2.463000059127808,0.0,46.66999816894531 -767,2016-08-01 23:00:00,55.70600128173828,18.763999938964844,53.55799865722656,15.520999908447266,2.463000059127808,0.0,45.79100036621094 -768,2016-08-02 00:00:00,52.27099990844727,17.507999420166016,50.12699890136719,14.314000129699709,2.463000059127808,0.0,45.35200119018555 -769,2016-08-02 01:00:00,53.44400024414063,17.926000595092773,50.23400115966797,14.019000053405762,2.463000059127808,1.2150000333786009,44.69250106811523 -770,2016-08-02 02:00:00,52.77399826049805,17.423999786376953,49.56399917602539,13.885000228881836,3.7100000381469727,1.3329999446868896,43.8134994506836 -771,2016-08-02 03:00:00,52.02000045776367,17.590999603271484,48.73300170898438,14.286999702453612,2.494999885559082,0.0,43.59400177001953 -772,2016-08-02 04:00:00,51.18199920654297,17.759000778198242,48.2770004272461,14.340999603271484,2.494999885559082,1.2150000333786009,43.15399932861328 -773,2016-08-02 05:00:00,50.34500122070313,17.507999420166016,48.09000015258789,14.447999954223633,2.5269999504089355,0.0,42.71500015258789 -774,2016-08-02 06:00:00,49.42300033569336,17.004999160766598,47.09799957275391,14.20699977874756,2.5269999504089355,0.0,42.275001525878906 -775,2016-08-02 07:00:00,47.74800109863281,16.586000442504886,46.72200012207031,14.340999603271484,0.0,0.0,42.49499893188477 -776,2016-08-02 08:00:00,49.17200088500977,17.674999237060547,47.98199844360352,15.22599983215332,1.2150000333786009,0.0,43.374000549316406 -777,2016-08-02 09:00:00,54.44900131225586,19.768999099731445,53.18299865722656,16.88800048828125,1.2150000333786009,0.0,45.57099914550781 -778,2016-08-02 10:00:00,50.17699813842773,14.241000175476074,48.70600128173828,11.821000099182127,1.22599995136261,0.0,47.54850006103516 -779,2016-08-02 11:00:00,56.87799835205078,18.68000030517578,55.48799896240234,15.574000358581545,1.22599995136261,0.0,49.74599838256836 -780,2016-08-02 12:00:00,58.63800048828125,18.51300048828125,57.39099884033203,15.467000007629396,1.22599995136261,0.0,50.625 -781,2016-08-02 13:00:00,57.96699905395508,18.93199920654297,56.18500137329102,15.8149995803833,1.246999979019165,0.0,50.84450149536133 -782,2016-08-02 14:00:00,52.52299880981445,20.1879997253418,50.39500045776367,15.279000282287598,1.246999979019165,0.0,46.45000076293945 -783,2016-08-02 15:00:00,54.95199966430664,20.1879997253418,53.34299850463867,17.236000061035153,1.246999979019165,0.0,42.71500015258789 -784,2016-08-02 16:00:00,55.70600128173828,20.77400016784668,54.20100021362305,17.7189998626709,1.246999979019165,0.0,43.15449905395508 -785,2016-08-02 17:00:00,55.37099838256836,19.937000274658203,53.53099822998047,16.726999282836914,1.22599995136261,0.0,43.15449905395508 -786,2016-08-02 18:00:00,55.20299911499024,19.26700019836425,53.55799865722656,16.19099998474121,1.22599995136261,0.0,42.71500015258789 -787,2016-08-02 19:00:00,48.584999084472656,16.670000076293945,47.3120002746582,14.314000129699709,1.2150000333786009,0.0,41.39599990844727 -788,2016-08-02 20:00:00,55.45399856567383,18.847999572753903,53.34299850463867,15.17199993133545,2.611999988555908,0.0,41.39599990844727 -789,2016-08-02 21:00:00,56.54299926757813,19.85300064086914,53.36999893188477,15.680999755859377,2.611999988555908,1.2150000333786009,40.95700073242188 -790,2016-08-02 22:00:00,54.86800003051758,19.601999282836918,53.39699935913086,16.378000259399414,1.8980000019073489,0.0,40.51800155639648 -791,2016-08-02 23:00:00,49.50699996948242,15.916000366210938,46.53499984741211,12.598999977111816,3.134000062942505,0.0,36.78200149536133 -792,2016-08-03 00:00:00,49.42300033569336,17.843000411987305,47.28499984741211,14.850000381469728,2.7929999828338623,0.0,34.14550018310547 -793,2016-08-03 01:00:00,49.25600051879883,17.507999420166016,46.9370002746582,14.447999954223633,2.7929999828338623,0.0,34.365501403808594 -794,2016-08-03 02:00:00,47.41299819946289,16.92099952697754,45.2750015258789,14.072999954223633,2.6010000705718994,0.0,34.365001678466804 -795,2016-08-03 03:00:00,46.071998596191406,16.0,44.63199996948242,13.911999702453612,1.2690000534057615,0.0,34.14550018310547 -796,2016-08-03 04:00:00,44.81600189208984,15.83199977874756,41.73699951171875,12.920000076293944,2.483999967575073,0.0,34.80500030517578 -797,2016-08-03 05:00:00,45.48600006103516,16.670000076293945,44.25600051879883,14.340999603271484,1.2690000534057615,0.0,35.02450180053711 -798,2016-08-03 06:00:00,49.25600051879883,17.590999603271484,45.999000549316406,14.340999603271484,2.6010000705718994,0.0,35.24399948120117 -799,2016-08-03 07:00:00,42.05199813842773,14.659000396728516,40.04800033569336,12.652000427246096,1.3539999723434448,0.0,35.903499603271484 -800,2016-08-03 08:00:00,42.88899993896485,14.241000175476074,40.39599990844727,12.170000076293944,2.569000005722046,0.0,36.78200149536133 -801,2016-08-03 09:00:00,47.49599838256836,16.753999710083008,46.29399871826172,14.475000381469728,0.0,0.0,38.10049819946289 -802,2016-08-03 10:00:00,41.632999420166016,12.732999801635742,40.50299835205078,10.642000198364258,1.2150000333786009,0.0,39.85850143432617 -803,2016-08-03 11:00:00,41.2140007019043,11.5600004196167,40.28900146484375,9.756999969482422,0.0,0.0,39.41899871826172 -804,2016-08-03 12:00:00,41.88399887084961,10.722000122070312,40.71799850463867,9.006999969482422,1.2150000333786009,0.0,38.540000915527344 -805,2016-08-03 13:00:00,44.39699935913086,13.821999549865724,42.83599853515625,11.66100025177002,1.2150000333786009,0.0,40.07799911499024 -806,2016-08-03 14:00:00,45.31800079345703,15.581000328063965,44.28300094604492,13.37600040435791,1.2150000333786009,0.0,41.39599990844727 -807,2016-08-03 15:00:00,49.50699996948242,17.34000015258789,47.875,14.395000457763672,1.2150000333786009,0.0,42.05550003051758 -808,2016-08-03 16:00:00,51.76900100708008,17.926000595092773,50.07300186157226,14.930999755859377,1.2150000333786009,0.0,41.83599853515625 -809,2016-08-03 17:00:00,51.60100173950195,17.590999603271484,50.26100158691406,14.79699993133545,1.2150000333786009,0.0,41.17649841308594 -810,2016-08-03 18:00:00,52.1870002746582,17.089000701904293,49.96599960327149,13.859000205993652,2.494999885559082,0.0,39.85850143432617 -811,2016-08-03 19:00:00,48.75299835205078,14.576000213623049,45.94499969482422,11.526000022888184,2.494999885559082,0.0,39.63899993896485 -812,2016-08-03 20:00:00,52.35499954223633,15.83199977874756,50.52899932861328,12.894000053405762,2.494999885559082,0.0,39.19900131225586 -813,2016-08-03 21:00:00,53.2760009765625,17.843000411987305,50.07300186157226,14.100000381469728,2.494999885559082,1.2150000333786009,38.31999969482422 -814,2016-08-03 22:00:00,49.59099960327149,16.250999450683597,46.29399871826172,12.946999549865724,2.740000009536743,0.0,38.10049819946289 -815,2016-08-03 23:00:00,43.72700119018555,12.062999725341797,40.39599990844727,9.194000244140623,2.740000009536743,1.2690000534057615,37.44100189208984 -816,2016-08-04 00:00:00,42.303001403808594,14.072999954223633,39.75299835205078,11.33899974822998,2.559000015258789,0.0,37.6609992980957 -817,2016-08-04 01:00:00,42.05199813842773,13.654000282287598,39.77999877929688,11.33899974822998,2.559000015258789,0.0,37.44100189208984 -818,2016-08-04 02:00:00,36.43899917602539,10.470999717712402,35.141998291015625,8.791999816894531,2.559000015258789,0.0,37.00199890136719 -819,2016-08-04 03:00:00,35.518001556396484,10.303000450134276,34.097000122070305,8.604999542236326,1.343000054359436,0.0,37.00199890136719 -820,2016-08-04 04:00:00,40.3759994506836,13.487000465393065,38.198001861572266,11.28499984741211,1.22599995136261,0.0,36.5620002746582 -821,2016-08-04 05:00:00,45.23500061035156,15.496999740600586,43.104000091552734,13.081000328063965,1.2150000333786009,0.0,36.12300109863281 -822,2016-08-04 06:00:00,46.57500076293945,16.250999450683597,45.73099899291992,14.126999855041506,0.0,0.0,36.12300109863281 -823,2016-08-04 07:00:00,45.90499877929688,16.0,44.95299911499024,14.126999855041506,0.0,0.0,36.12300109863281 -824,2016-08-04 08:00:00,43.64300155639648,14.576000213623049,42.165000915527344,12.598999977111816,1.3220000267028809,0.0,37.22150039672852 -825,2016-08-04 09:00:00,51.01499938964844,19.183000564575195,49.72499847412109,16.511999130249027,1.2580000162124634,0.0,39.63850021362305 -826,2016-08-04 10:00:00,48.66899871826172,16.166999816894528,46.9900016784668,13.348999977111816,1.3969999551773071,0.0,41.39649963378906 -827,2016-08-04 11:00:00,51.01499938964844,17.172000885009766,50.18000030517578,14.368000030517578,0.0,0.0,43.8134994506836 -828,2016-08-04 12:00:00,51.68500137329102,17.34000015258789,50.79700088500977,14.58199977874756,0.0,0.0,45.57099914550781 -829,2016-08-04 13:00:00,53.44400024414063,19.684999465942383,52.512001037597656,16.620000839233402,0.0,0.0,44.91249847412109 -830,2016-08-04 14:00:00,53.36000061035156,20.020999908447266,52.11000061035156,16.753999710083008,0.0,0.0,44.47249984741211 -831,2016-08-04 15:00:00,53.2760009765625,19.768999099731445,52.53900146484375,16.833999633789062,0.0,0.0,46.01100158691406 -832,2016-08-04 16:00:00,52.35499954223633,19.183000564575195,51.43999862670898,16.056999206542972,0.0,0.0,47.32899856567383 -833,2016-08-04 17:00:00,52.77399826049805,18.68000030517578,51.54700088500977,15.708000183105469,0.0,0.0,46.88949966430664 -834,2016-08-04 18:00:00,53.2760009765625,18.847999572753903,51.86899948120117,15.574000358581545,1.2369999885559082,0.0,45.35200119018555 -835,2016-08-04 19:00:00,49.84199905395508,15.83199977874756,47.09799957275391,12.652000427246096,2.45199990272522,0.0,44.03300094604492 -836,2016-08-04 20:00:00,53.946998596191406,18.34499931335449,52.45899963378906,15.54699993133545,2.45199990272522,0.0,42.49499893188477 -837,2016-08-04 21:00:00,58.1349983215332,21.19300079345703,54.41600036621094,17.101999282836914,3.688999891281128,1.2150000333786009,41.61600112915039 -838,2016-08-04 22:00:00,52.43899917602539,18.847999572753903,48.571998596191406,15.305999755859377,3.5720000267028813,1.2580000162124634,40.95700073242188 -839,2016-08-04 23:00:00,51.26599884033203,18.34499931335449,48.67900085449219,14.984000205993652,2.782999992370605,0.0,40.51800155639648 -840,2016-08-05 00:00:00,49.59099960327149,18.34499931335449,45.97200012207031,14.984000205993652,2.782999992370605,0.0,40.07799911499024 -841,2016-08-05 01:00:00,47.49599838256836,16.92099952697754,45.32899856567383,14.340999603271484,2.611999988555908,0.0,39.63899993896485 -842,2016-08-05 02:00:00,46.57500076293945,16.50200080871582,43.98799896240234,13.725000381469728,2.984999895095825,0.0,39.19900131225586 -843,2016-08-05 03:00:00,45.4020004272461,16.250999450683597,42.43399810791016,13.510000228881836,2.984999895095825,0.0,38.7599983215332 -844,2016-08-05 04:00:00,44.14599990844727,16.419000625610348,40.93199920654297,13.777999877929688,2.984999895095825,0.0,38.540000915527344 -845,2016-08-05 05:00:00,43.97800064086914,16.0,41.09299850463867,13.269000053405762,2.6010000705718994,0.0,38.31999969482422 -846,2016-08-05 06:00:00,45.56999969482422,17.423999786376953,42.88899993896485,14.609000205993652,2.6010000705718994,0.0,38.10049819946289 -847,2016-08-05 07:00:00,43.55899810791016,15.161999702453612,41.17399978637695,12.760000228881836,2.6010000705718994,0.0,38.10049819946289 -848,2016-08-05 08:00:00,39.874000549316406,12.229999542236328,38.680999755859375,10.508000373840332,0.0,0.0,38.97949981689453 -849,2016-08-05 09:00:00,49.25600051879883,18.010000228881836,48.49200057983398,15.17199993133545,0.0,0.0,41.39649963378906 -850,2016-08-05 10:00:00,46.99399948120117,15.496999740600586,45.73099899291992,12.894000053405762,0.0,0.0,43.374000549316406 -851,2016-08-05 11:00:00,50.34500122070313,16.670000076293945,49.24200057983398,14.04599952697754,0.0,0.0,43.59400177001953 -852,2016-08-05 12:00:00,49.92599868774414,17.089000701904293,49.1349983215332,14.26099967956543,0.0,0.0,44.25299835205078 -853,2016-08-05 13:00:00,48.41799926757813,17.004999160766598,47.74100112915039,14.58199977874756,0.0,0.0,42.05550003051758 -854,2016-08-05 14:00:00,51.34999847412109,19.85300064086914,50.23400115966797,17.128999710083008,1.2580000162124634,0.0,41.61600112915039 -855,2016-08-05 15:00:00,51.93600082397461,19.937000274658203,50.74300003051758,16.94099998474121,0.0,0.0,46.45000076293945 -856,2016-08-05 16:00:00,48.41799926757813,18.68000030517578,47.7140007019043,15.895999908447266,0.0,0.0,46.01050186157226 -857,2016-08-05 17:00:00,50.26100158691406,18.763999938964844,49.24200057983398,15.869000434875488,0.0,0.0,45.35150146484375 -858,2016-08-05 18:00:00,53.69499969482422,19.43400001525879,51.43999862670898,16.29800033569336,2.505000114440918,0.0,44.47299957275391 -859,2016-08-05 19:00:00,51.18199920654297,17.590999603271484,47.3120002746582,14.18000030517578,3.720999956130981,1.2150000333786009,43.59400177001953 -860,2016-08-05 20:00:00,55.11899948120117,19.350000381469727,51.52099990844727,15.413000106811523,3.4219999313354488,1.22599995136261,42.71500015258789 -861,2016-08-05 21:00:00,52.60599899291992,18.26099967956543,49.72499847412109,15.01099967956543,3.4219999313354488,0.0,41.83599853515625 -862,2016-08-05 22:00:00,52.35499954223633,19.099000930786133,48.84000015258789,15.494000434875488,3.3580000400543213,1.2150000333786009,41.61600112915039 -863,2016-08-05 23:00:00,47.915000915527344,17.089000701904293,46.2130012512207,13.83199977874756,1.758999943733215,0.0,41.17649841308594 -864,2016-08-06 00:00:00,48.83700180053711,17.926000595092773,46.05199813842773,15.01099967956543,3.0699999332427983,0.0,40.51800155639648 -865,2016-08-06 01:00:00,46.49100112915039,16.250999450683597,43.58599853515625,13.564000129699709,2.868000030517578,0.0,40.07799911499024 -866,2016-08-06 02:00:00,47.41299819946289,16.753999710083008,44.20299911499024,13.83199977874756,2.868000030517578,0.0,39.19900131225586 -867,2016-08-06 03:00:00,45.56999969482422,16.250999450683597,43.104000091552734,13.67099952697754,3.0280001163482666,0.0,38.7599983215332 -868,2016-08-06 04:00:00,42.303001403808594,15.664999961853027,39.59199905395508,12.866999626159668,3.0280001163482666,0.0,38.31999969482422 -869,2016-08-06 05:00:00,42.63800048828125,13.654000282287598,39.80699920654297,10.937000274658203,2.931999921798706,1.3329999446868896,37.88100051879883 -870,2016-08-06 06:00:00,41.96799850463867,13.821999549865724,39.430999755859375,11.392000198364258,2.9210000038146973,1.2150000333786009,37.44100189208984 -871,2016-08-06 07:00:00,48.08300018310547,17.926000595092773,45.89099884033203,15.145000457763672,2.430999994277954,0.0,37.6609992980957 -872,2016-08-06 08:00:00,43.391998291015625,14.491999626159668,41.01300048828125,11.875,2.430999994277954,0.0,39.41899871826172 -873,2016-08-06 09:00:00,49.17200088500977,18.51300048828125,46.5880012512207,15.494000434875488,2.430999994277954,0.0,41.61600112915039 -874,2016-08-06 10:00:00,52.77399826049805,18.34499931335449,49.83200073242188,14.958000183105469,2.430999994277954,0.0,43.59400177001953 -875,2016-08-06 11:00:00,53.69499969482422,18.010000228881836,50.71599960327149,14.6899995803833,2.430999994277954,0.0,46.22999954223633 -876,2016-08-06 12:00:00,53.36000061035156,18.34499931335449,52.08399963378906,15.54699993133545,2.430999994277954,0.0,47.10950088500977 -877,2016-08-06 13:00:00,50.76300048828125,17.843000411987305,48.7599983215332,14.715999603271484,2.430999994277954,0.0,46.88949966430664 -878,2016-08-06 14:00:00,53.52799987792969,19.684999465942383,51.17200088500977,16.378000259399414,2.430999994277954,0.0,45.79100036621094 -879,2016-08-06 15:00:00,53.2760009765625,19.099000930786133,51.54700088500977,16.163999557495114,2.430999994277954,0.0,47.54899978637695 -880,2016-08-06 16:00:00,53.44400024414063,19.183000564575195,52.19100189208984,16.351999282836914,2.430999994277954,0.0,49.30699920654297 -881,2016-08-06 17:00:00,52.60599899291992,17.507999420166016,50.58200073242188,14.475000381469728,2.430999994277954,0.0,47.98799896240234 -882,2016-08-06 18:00:00,51.43399810791016,17.089000701904293,49.93899917602539,14.475000381469728,2.430999994277954,0.0,47.10900115966797 -883,2016-08-06 19:00:00,49.17200088500977,16.334999084472653,45.67699813842773,13.29599952697754,2.430999994277954,0.0,45.35200119018555 -884,2016-08-06 20:00:00,54.61700057983398,19.26700019836425,52.02999877929688,15.708000183105469,2.45199990272522,0.0,44.03300094604492 -885,2016-08-06 21:00:00,55.70600128173828,19.51799964904785,53.34299850463867,16.030000686645508,2.45199990272522,0.0,42.93450164794922 -886,2016-08-06 22:00:00,55.62200164794922,20.27199935913086,52.512001037597656,16.378000259399414,2.45199990272522,1.3650000095367432,42.49499893188477 -887,2016-08-06 23:00:00,51.09799957275391,18.17799949645996,48.30400085449219,14.904000282287598,2.45199990272522,0.0,42.275001525878906 -888,2016-08-07 00:00:00,47.41299819946289,16.836999893188473,45.30199813842773,14.019000053405762,2.45199990272522,0.0,41.83599853515625 -889,2016-08-07 01:00:00,46.82600021362305,16.586000442504886,44.63199996948242,13.75100040435791,2.45199990272522,0.0,41.39599990844727 -890,2016-08-07 02:00:00,46.32400131225586,15.748000144958494,43.55899810791016,13.053999900817873,2.45199990272522,0.0,40.95700073242188 -891,2016-08-07 03:00:00,45.48600006103516,16.083000183105472,42.13899993896485,13.187999725341797,2.45199990272522,0.0,40.07799911499024 -892,2016-08-07 04:00:00,45.56999969482422,16.0,43.42499923706055,13.482999801635742,2.750999927520752,0.0,39.41899871826172 -893,2016-08-07 05:00:00,46.74300003051758,16.50200080871582,43.37200164794922,13.75100040435791,2.750999927520752,0.0,39.19900131225586 -894,2016-08-07 06:00:00,43.72700119018555,14.407999992370604,40.69100189208984,11.795000076293944,2.4730000495910645,0.0,38.7599983215332 -895,2016-08-07 07:00:00,44.81600189208984,15.664999961853027,43.55899810791016,13.590999603271484,1.2580000162124634,0.0,39.19900131225586 -896,2016-08-07 08:00:00,45.31800079345703,14.576000213623049,42.99599838256836,12.277000427246096,2.4730000495910645,0.0,40.29800033569336 -897,2016-08-07 09:00:00,51.18199920654297,18.26099967956543,48.4379997253418,14.930999755859377,2.4730000495910645,0.0,41.39649963378906 -898,2016-08-07 10:00:00,51.76900100708008,17.423999786376953,49.21500015258789,14.475000381469728,2.4730000495910645,0.0,43.8134994506836 -899,2016-08-07 11:00:00,45.90499877929688,14.659000396728516,42.99599838256836,11.795000076293944,2.4730000495910645,1.22599995136261,47.54850006103516 -900,2016-08-07 12:00:00,47.41299819946289,15.916000366210938,45.16799926757813,13.402999877929688,2.4730000495910645,0.0,48.86750030517578 -901,2016-08-07 13:00:00,49.0880012512207,16.670000076293945,47.74100112915039,14.286999702453612,2.4730000495910645,0.0,49.74649810791016 -902,2016-08-07 14:00:00,51.09799957275391,18.26099967956543,47.84799957275391,15.118000030517578,2.4730000495910645,0.0,51.28450012207031 -903,2016-08-07 15:00:00,48.584999084472656,17.34000015258789,46.72200012207031,14.447999954223633,1.2369999885559082,0.0,52.16299819946289 -904,2016-08-07 16:00:00,46.82600021362305,15.664999961853027,45.2750015258789,13.29599952697754,1.2790000438690186,0.0,49.74649810791016 -905,2016-08-07 17:00:00,47.41299819946289,17.256000518798828,46.2130012512207,14.475000381469728,1.2150000333786009,0.0,48.428001403808594 -906,2016-08-07 18:00:00,49.50699996948242,17.004999160766598,47.3120002746582,14.368000030517578,2.505000114440918,0.0,47.10900115966797 -907,2016-08-07 19:00:00,45.90499877929688,14.241000175476074,43.18399810791016,11.579999923706056,2.559000015258789,0.0,46.22999954223633 -908,2016-08-07 20:00:00,52.85800170898438,16.250999450683597,49.45700073242188,12.652000427246096,2.559000015258789,1.246999979019165,45.35200119018555 -909,2016-08-07 21:00:00,55.87300109863281,19.768999099731445,54.46900177001953,16.486000061035153,1.343000054359436,0.0,44.25299835205078 -910,2016-08-07 22:00:00,54.61700057983398,19.099000930786133,52.61999893188477,16.110000610351562,2.687000036239624,0.0,43.8134994506836 -911,2016-08-07 23:00:00,51.51699829101562,18.010000228881836,49.29600143432617,14.58199977874756,2.687000036239624,1.2790000438690186,43.59400177001953 -912,2016-08-08 00:00:00,47.49599838256836,16.753999710083008,45.2750015258789,13.83199977874756,2.687000036239624,0.0,42.71500015258789 -913,2016-08-08 01:00:00,48.08300018310547,16.50200080871582,45.75699996948242,13.644000053405762,2.687000036239624,0.0,42.49499893188477 -914,2016-08-08 02:00:00,47.41299819946289,16.250999450683597,44.81900024414063,13.00100040435791,2.687000036239624,1.3860000371932983,41.83599853515625 -915,2016-08-08 03:00:00,46.65900039672852,16.083000183105472,43.21099853515625,12.973999977111816,2.687000036239624,0.0,41.39599990844727 -916,2016-08-08 04:00:00,45.90499877929688,16.083000183105472,43.18399810791016,13.29599952697754,2.697000026702881,0.0,40.73749923706055 -917,2016-08-08 05:00:00,47.83200073242188,16.670000076293945,44.95299911499024,13.859000205993652,2.697000026702881,0.0,40.07799911499024 -918,2016-08-08 06:00:00,43.391998291015625,14.659000396728516,41.11999893188477,12.277000427246096,1.343000054359436,0.0,39.63899993896485 -919,2016-08-08 07:00:00,45.31800079345703,15.664999961853027,42.91600036621094,13.107999801635742,2.5799999237060547,0.0,39.63899993896485 -920,2016-08-08 08:00:00,41.632999420166016,13.402999877929688,40.61100006103516,11.446000099182127,0.0,0.0,40.51750183105469 -921,2016-08-08 09:00:00,46.65900039672852,14.91100025177002,45.14099884033203,12.760000228881836,0.0,0.0,42.2755012512207 -922,2016-08-08 10:00:00,47.24499893188477,14.576000213623049,46.29399871826172,12.277000427246096,0.0,0.0,44.25299835205078 -923,2016-08-08 11:00:00,53.61100006103516,18.93199920654297,52.45899963378906,15.97599983215332,0.0,0.0,47.54899978637695 -924,2016-08-08 12:00:00,53.77899932861328,17.674999237060547,52.94100189208984,14.715999603271484,0.0,0.0,47.98849868774414 -925,2016-08-08 13:00:00,53.946998596191406,18.429000854492188,53.26300048828125,15.76200008392334,0.0,0.0,47.76850128173828 -926,2016-08-08 14:00:00,54.11399841308594,19.099000930786133,53.665000915527344,16.270999908447266,0.0,0.0,47.76850128173828 -927,2016-08-08 15:00:00,55.37099838256836,19.684999465942383,54.60300064086914,16.913999557495114,0.0,0.0,49.30649948120117 -928,2016-08-08 16:00:00,52.60599899291992,18.010000228881836,51.84199905395508,15.413000106811523,0.0,0.0,49.5265007019043 -929,2016-08-08 17:00:00,55.11899948120117,19.26700019836425,54.92499923706055,16.458999633789062,0.0,0.0,48.428001403808594 -930,2016-08-08 18:00:00,55.62200164794922,18.68000030517578,53.88000106811523,15.60099983215332,1.3009999990463257,0.0,47.54899978637695 -931,2016-08-08 19:00:00,50.26100158691406,16.334999084472653,47.553001403808594,13.348999977111816,2.6760001182556152,0.0,46.66999816894531 -932,2016-08-08 20:00:00,51.01499938964844,15.413000106811523,49.69800186157226,12.46500015258789,1.4500000476837158,0.0,45.79100036621094 -933,2016-08-08 21:00:00,56.3759994506836,18.429000854492188,54.22800064086914,15.092000007629396,2.7290000915527344,0.0,44.69250106811523 -934,2016-08-08 22:00:00,53.2760009765625,17.507999420166016,51.89599990844727,14.850000381469728,1.3009999990463257,0.0,43.8134994506836 -935,2016-08-08 23:00:00,53.44400024414063,18.0939998626709,50.20700073242188,14.6899995803833,2.5269999504089355,0.0,43.15399932861328 -936,2016-08-09 00:00:00,50.428001403808594,16.92099952697754,48.51800155639648,14.26099967956543,1.4290000200271606,0.0,43.15399932861328 -937,2016-08-09 01:00:00,48.75299835205078,16.670000076293945,45.62300109863281,13.269000053405762,2.6549999713897705,0.0,42.71500015258789 -938,2016-08-09 02:00:00,46.49100112915039,15.413000106811523,44.81900024414063,12.946999549865724,1.4290000200271606,0.0,41.83599853515625 -939,2016-08-09 03:00:00,47.58000183105469,15.83199977874756,44.95299911499024,13.027999877929688,2.6549999713897705,0.0,41.39599990844727 -940,2016-08-09 04:00:00,43.89400100708008,15.246000289916992,42.56800079345703,13.027999877929688,1.2690000534057615,0.0,40.95700073242188 -941,2016-08-09 05:00:00,47.49599838256836,16.334999084472653,44.76599884033203,13.725000381469728,2.505000114440918,0.0,40.07799911499024 -942,2016-08-09 06:00:00,46.65900039672852,15.916000366210938,45.59700012207031,13.83199977874756,1.2690000534057615,0.0,39.63899993896485 -943,2016-08-09 07:00:00,46.65900039672852,16.0,44.229000091552734,13.482999801635742,2.5799999237060547,0.0,39.63899993896485 -944,2016-08-09 08:00:00,42.47000122070313,13.821999549865724,41.49499893188477,11.928999900817873,0.0,0.0,40.51800155639648 -945,2016-08-09 09:00:00,50.76300048828125,18.17799949645996,50.12699890136719,15.788999557495115,0.0,0.0,42.93450164794922 -946,2016-08-09 10:00:00,48.584999084472656,15.07800006866455,47.47299957275391,12.598999977111816,0.0,0.0,44.69250106811523 -947,2016-08-09 11:00:00,49.59099960327149,16.166999816894528,48.46500015258789,13.510000228881836,0.0,0.0,46.88949966430664 -948,2016-08-09 12:00:00,53.52799987792969,17.843000411987305,52.61999893188477,15.0649995803833,0.0,0.0,48.20800018310547 -949,2016-08-09 13:00:00,52.85800170898438,16.92099952697754,51.84199905395508,14.18000030517578,0.0,0.0,49.5265007019043 -950,2016-08-09 14:00:00,53.10900115966797,17.590999603271484,51.95000076293945,14.6899995803833,0.0,0.0,50.625 -951,2016-08-09 15:00:00,50.512001037597656,16.753999710083008,49.0009994506836,14.18000030517578,1.2790000438690186,0.0,48.647499084472656 -952,2016-08-09 16:00:00,52.77399826049805,17.926000595092773,51.33300018310547,14.79699993133545,1.246999979019165,0.0,49.08700180053711 -953,2016-08-09 17:00:00,54.61700057983398,18.763999938964844,53.26300048828125,15.54699993133545,0.0,0.0,48.647499084472656 -954,2016-08-09 18:00:00,55.0359992980957,18.34499931335449,53.90599822998047,15.467000007629396,1.2369999885559082,0.0,47.10900115966797 -955,2016-08-09 19:00:00,50.84700012207031,16.166999816894528,49.08100128173828,13.027999877929688,1.2369999885559082,0.0,45.57149887084961 -956,2016-08-09 20:00:00,54.78400039672852,17.256000518798828,52.56600189208984,13.885000228881836,2.463000059127808,0.0,44.47299957275391 -957,2016-08-09 21:00:00,57.63199996948242,19.51799964904785,54.73699951171875,15.628000259399414,2.463000059127808,0.0,43.59400177001953 -958,2016-08-09 22:00:00,53.946998596191406,18.010000228881836,50.02000045776367,14.340999603271484,3.753000020980835,1.22599995136261,43.15399932861328 -959,2016-08-09 23:00:00,51.01499938964844,17.004999160766598,48.49200057983398,13.75100040435791,2.388000011444092,0.0,42.71500015258789 -960,2016-08-10 00:00:00,46.82600021362305,15.07800006866455,44.87300109863281,12.706000328063965,2.388000011444092,0.0,42.275001525878906 -961,2016-08-10 01:00:00,50.26100158691406,16.753999710083008,47.553001403808594,13.482999801635742,2.388000011444092,0.0,41.83599853515625 -962,2016-08-10 02:00:00,49.3390007019043,16.50200080871582,46.803001403808594,13.29599952697754,2.388000011444092,0.0,41.61600112915039 -963,2016-08-10 03:00:00,47.41299819946289,16.083000183105472,45.06000137329102,13.187999725341797,2.388000011444092,0.0,41.17649841308594 -964,2016-08-10 04:00:00,48.16699981689453,16.250999450683597,45.2750015258789,13.37600040435791,2.388000011444092,0.0,40.29800033569336 -965,2016-08-10 05:00:00,47.1609992980957,16.166999816894528,44.47100067138672,13.536999702453612,2.388000011444092,0.0,39.41899871826172 -966,2016-08-10 06:00:00,44.14599990844727,14.994000434875488,41.25400161743164,12.571999549865724,2.388000011444092,0.0,39.41899871826172 -967,2016-08-10 07:00:00,46.99399948120117,16.166999816894528,43.935001373291016,13.321999549865724,2.388000011444092,0.0,38.10049819946289 -968,2016-08-10 08:00:00,44.81600189208984,14.994000434875488,43.26399993896485,12.383999824523926,2.388000011444092,0.0,38.540000915527344 -969,2016-08-10 09:00:00,47.41299819946289,17.590999603271484,46.48099899291992,15.01099967956543,0.0,0.0,40.51800155639648 -970,2016-08-10 10:00:00,49.59099960327149,16.419000625610348,48.54499816894531,13.939000129699709,1.2369999885559082,0.0,41.83599853515625 -971,2016-08-10 11:00:00,53.946998596191406,18.17799949645996,52.915000915527344,15.38700008392334,1.2150000333786009,0.0,44.69250106811523 -972,2016-08-10 12:00:00,56.459999084472656,20.1879997253418,55.51499938964844,16.833999633789062,0.0,0.0,46.23049926757813 -973,2016-08-10 13:00:00,57.13000106811523,20.60700035095215,55.86299896240234,17.370000839233402,1.2150000333786009,0.0,47.76850128173828 -974,2016-08-10 14:00:00,55.53799819946289,20.857999801635746,54.12099838256836,17.7189998626709,0.0,0.0,46.88949966430664 -975,2016-08-10 15:00:00,55.62200164794922,0.0,54.63000106811523,17.558000564575195,0.0,0.0,46.45000076293945 -976,2016-08-10 16:00:00,55.62200164794922,0.0,52.72700119018555,16.861000061035153,0.0,0.0,46.66999816894531 -977,2016-08-10 17:00:00,55.62200164794922,0.0,54.040000915527344,15.92300033569336,0.0,0.0,47.10900115966797 -978,2016-08-10 18:00:00,55.62200164794922,0.0,53.55799865722656,14.958000183105469,2.6760001182556152,0.0,47.10900115966797 -979,2016-08-10 19:00:00,55.62200164794922,0.0,49.1349983215332,12.973999977111816,2.6760001182556152,0.0,46.22999954223633 -980,2016-08-10 20:00:00,55.62200164794922,0.0,49.5099983215332,12.357000350952148,2.6760001182556152,0.0,45.35200119018555 -981,2016-08-10 21:00:00,55.62200164794922,0.0,49.67100143432617,12.331000328063965,2.6760001182556152,0.0,44.69250106811523 -982,2016-08-10 22:00:00,55.62200164794922,0.0,52.32500076293945,14.904000282287598,2.6760001182556152,0.0,43.8134994506836 -983,2016-08-10 23:00:00,55.62200164794922,0.0,49.45700073242188,13.616999626159668,2.6760001182556152,1.2150000333786009,43.374000549316406 -984,2016-08-11 00:00:00,55.62200164794922,0.0,48.7599983215332,14.04599952697754,2.6760001182556152,0.0,43.15399932861328 -985,2016-08-11 01:00:00,55.62200164794922,0.0,43.02299880981445,11.687000274658203,2.6760001182556152,0.0,42.93450164794922 -986,2016-08-11 02:00:00,55.62200164794922,0.0,43.77399826049805,11.579999923706056,2.6760001182556152,0.0,42.05550003051758 -987,2016-08-11 03:00:00,55.62200164794922,0.0,43.69300079345703,12.170000076293944,2.6760001182556152,0.0,41.61600112915039 -988,2016-08-11 04:00:00,55.62200164794922,0.0,41.95100021362305,11.821000099182127,2.6760001182556152,0.0,41.17649841308594 -989,2016-08-11 05:00:00,55.62200164794922,0.0,43.55899810791016,12.25,1.22599995136261,0.0,40.95700073242188 -990,2016-08-11 06:00:00,55.62200164794922,0.0,43.98799896240234,12.46500015258789,2.622999906539917,0.0,40.51800155639648 -991,2016-08-11 07:00:00,55.62200164794922,0.0,43.02299880981445,12.383999824523926,1.2790000438690186,0.0,40.51800155639648 -992,2016-08-11 08:00:00,55.62200164794922,0.0,39.29700088500977,10.185999870300291,0.0,0.0,41.39649963378906 -993,2016-08-11 09:00:00,55.62200164794922,0.0,47.25899887084961,13.564000129699709,0.0,0.0,43.15449905395508 -994,2016-08-11 10:00:00,55.62200164794922,0.0,43.02299880981445,11.017000198364258,0.0,0.0,45.13199996948242 -995,2016-08-11 11:00:00,48.83700180053711,14.994000434875488,47.5270004272461,12.222999572753904,0.0,0.0,48.20800018310547 -996,2016-08-11 12:00:00,55.37099838256836,17.674999237060547,54.71099853515625,14.447999954223633,0.0,0.0,49.74599838256836 -997,2016-08-11 13:00:00,55.37099838256836,18.0939998626709,54.68399810791016,14.850000381469728,0.0,0.0,50.18550109863281 -998,2016-08-11 14:00:00,56.54299926757813,19.85300064086914,55.35400009155274,16.378000259399414,0.0,0.0,52.16299819946289 -999,2016-08-11 15:00:00,56.96200180053711,20.43899917602539,55.64899826049805,16.861000061035153,1.22599995136261,0.0,52.16299819946289 -1000,2016-08-11 16:00:00,56.71099853515625,20.69099998474121,55.67599868774414,17.101999282836914,0.0,0.0,51.94300079345703 -1001,2016-08-11 17:00:00,57.54899978637695,20.43899917602539,56.69400024414063,16.806999206542972,0.0,0.0,50.625 -1002,2016-08-11 18:00:00,55.0359992980957,18.763999938964844,53.36999893188477,15.17199993133545,1.2150000333786009,0.0,49.08700180053711 -1003,2016-08-11 19:00:00,55.45399856567383,18.34499931335449,51.43999862670898,14.286999702453612,2.687000036239624,1.343000054359436,47.32899856567383 -1004,2016-08-11 20:00:00,58.72100067138672,19.85300064086914,55.48799896240234,15.38700008392334,2.687000036239624,1.2150000333786009,46.45000076293945 -1005,2016-08-11 21:00:00,58.97299957275391,20.857999801635746,57.01599884033203,16.88800048828125,2.7290000915527344,0.0,45.79100036621094 -1006,2016-08-11 22:00:00,57.29700088500977,20.857999801635746,53.82600021362305,16.700000762939453,2.7290000915527344,1.246999979019165,45.79100036621094 -1007,2016-08-11 23:00:00,55.0359992980957,19.43400001525879,51.19900131225586,15.54699993133545,2.7290000915527344,0.0,44.9119987487793 -1008,2016-08-12 00:00:00,52.94100189208984,19.183000564575195,49.72499847412109,15.574000358581545,2.7290000915527344,0.0,44.47299957275391 -1009,2016-08-12 01:00:00,48.41799926757813,16.836999893188473,45.08700180053711,13.37600040435791,2.740000009536743,0.0,44.03300094604492 -1010,2016-08-12 02:00:00,50.26100158691406,18.26099967956543,48.33100128173828,14.984000205993652,2.760999917984009,0.0,43.374000549316406 -1011,2016-08-12 03:00:00,49.25600051879883,17.926000595092773,46.0250015258789,14.529000282287598,2.760999917984009,0.0,42.71500015258789 -1012,2016-08-12 04:00:00,48.91999816894531,17.843000411987305,46.2400016784668,14.904000282287598,2.760999917984009,0.0,42.275001525878906 -1013,2016-08-12 05:00:00,48.584999084472656,17.590999603271484,45.81100082397461,14.340999603271484,2.760999917984009,0.0,41.61600112915039 -1014,2016-08-12 06:00:00,48.91999816894531,16.670000076293945,47.5,15.145000457763672,2.760999917984009,0.0,41.17649841308594 -1015,2016-08-12 07:00:00,39.874000549316406,14.156999588012695,37.90299987792969,11.553000450134276,2.760999917984009,0.0,41.17649841308594 -1016,2016-08-12 08:00:00,44.56499862670898,15.161999702453612,43.39899826049805,12.812999725341797,0.0,0.0,42.05550003051758 -1017,2016-08-12 09:00:00,36.43899917602539,14.659000396728516,34.98199844360352,12.760000228881836,0.0,0.0,43.374000549316406 -1018,2016-08-12 10:00:00,31.832000732421875,11.057000160217283,30.77300071716309,9.409000396728516,0.0,0.0,45.13199996948242 -1019,2016-08-12 11:00:00,34.512001037597656,11.727999687194824,33.69499969482422,10.29300022125244,0.0,0.0,46.88949966430664 -1020,2016-08-12 12:00:00,35.43399810791016,13.319000244140623,34.740001678466804,11.633999824523926,0.0,0.0,47.98849868774414 -1021,2016-08-12 13:00:00,36.35499954223633,13.487000465393065,35.11600112915039,11.741000175476074,0.0,0.0,49.08700180053711 -1022,2016-08-12 14:00:00,37.69599914550781,15.748000144958494,36.9119987487793,13.67099952697754,0.0,0.0,51.50400161743164 -1023,2016-08-12 15:00:00,39.45500183105469,16.753999710083008,39.055999755859375,14.876999855041506,0.0,0.0,52.16299819946289 -1024,2016-08-12 16:00:00,38.44900131225586,15.581000328063965,38.11800003051758,13.993000030517578,0.0,0.0,50.84450149536133 -1025,2016-08-12 17:00:00,38.78499984741211,15.83199977874756,37.93000030517578,13.993000030517578,0.0,0.0,49.08700180053711 -1026,2016-08-12 18:00:00,38.03099822998047,15.329999923706056,37.18000030517578,13.67099952697754,0.0,0.0,47.54899978637695 -1027,2016-08-12 19:00:00,35.518001556396484,12.732999801635742,33.13199996948242,10.883000373840332,2.697000026702881,0.0,46.22999954223633 -1028,2016-08-12 20:00:00,38.44900131225586,13.73799991607666,35.73199844360352,11.178000450134276,2.632999897003174,1.2150000333786009,44.9119987487793 -1029,2016-08-12 21:00:00,38.86800003051758,14.994000434875488,36.1879997253418,12.41100025177002,2.632999897003174,0.0,44.25299835205078 -1030,2016-08-12 22:00:00,39.70600128173828,15.83199977874756,37.448001861572266,13.536999702453612,2.5910000801086426,0.0,43.374000549316406 -1031,2016-08-12 23:00:00,33.50699996948242,12.39799976348877,31.52400016784668,10.560999870300291,2.5910000801086426,0.0,42.71500015258789 -1032,2016-08-13 00:00:00,35.60100173950195,13.904999732971191,32.514999389648445,11.579999923706056,2.5910000801086426,0.0,42.49499893188477 -1033,2016-08-13 01:00:00,35.518001556396484,13.152000427246096,32.72999954223633,10.722000122070312,2.4730000495910645,0.0,42.05550003051758 -1034,2016-08-13 02:00:00,47.915000915527344,16.166999816894528,45.6500015258789,12.973999977111816,2.4730000495910645,0.0,41.39599990844727 -1035,2016-08-13 03:00:00,49.00400161743164,16.419000625610348,45.8380012512207,13.00100040435791,2.4730000495910645,0.0,41.39599990844727 -1036,2016-08-13 04:00:00,49.25600051879883,17.172000885009766,47.44599914550781,14.20699977874756,2.4730000495910645,0.0,40.95700073242188 -1037,2016-08-13 05:00:00,47.74800109863281,16.753999710083008,45.62300109863281,13.885000228881836,2.4730000495910645,0.0,40.95700073242188 -1038,2016-08-13 06:00:00,45.06700134277344,15.496999740600586,42.97000122070313,12.84000015258789,2.4730000495910645,0.0,40.95700073242188 -1039,2016-08-13 07:00:00,46.90999984741211,16.753999710083008,44.95299911499024,13.965999603271484,2.4730000495910645,0.0,40.73749923706055 -1040,2016-08-13 08:00:00,42.47000122070313,13.067999839782717,41.17399978637695,10.668999671936035,1.2690000534057615,0.0,42.2755012512207 -1041,2016-08-13 09:00:00,49.25600051879883,15.581000328063965,47.58000183105469,12.732999801635742,1.2690000534057615,0.0,44.03350067138672 -1042,2016-08-13 10:00:00,54.95199966430664,18.763999938964844,53.45100021362305,15.4399995803833,1.2690000534057615,0.0,46.01100158691406 -1043,2016-08-13 11:00:00,55.53799819946289,19.26700019836425,54.20100021362305,15.788999557495115,1.2690000534057615,0.0,49.08700180053711 -1044,2016-08-13 12:00:00,54.78400039672852,17.590999603271484,53.71900177001953,14.340999603271484,0.0,0.0,50.625 -1045,2016-08-13 13:00:00,56.87799835205078,19.937000274658203,55.94400024414063,16.56599998474121,1.2150000333786009,0.0,51.06449890136719 -1046,2016-08-13 14:00:00,56.29199981689453,19.183000564575195,54.84500122070313,15.949000358581545,1.22599995136261,0.0,53.70149993896485 -1047,2016-08-13 15:00:00,57.46500015258789,20.69099998474121,56.05099868774414,17.208999633789062,1.22599995136261,0.0,55.01950073242188 -1048,2016-08-13 16:00:00,56.125,20.27199935913086,54.44200134277344,16.726999282836914,1.22599995136261,0.0,53.92100143432617 -1049,2016-08-13 17:00:00,56.459999084472656,18.763999938964844,54.12099838256836,15.17199993133545,2.440999984741211,0.0,52.16299819946289 -1050,2016-08-13 18:00:00,57.71599960327149,20.10400009155273,54.65700149536133,16.003000259399414,2.440999984741211,0.0,50.40549850463867 -1051,2016-08-13 19:00:00,54.70000076293945,17.843000411987305,52.05699920654297,14.20699977874756,2.440999984741211,0.0,49.30699920654297 -1052,2016-08-13 20:00:00,53.2760009765625,16.0,49.67100143432617,12.222999572753904,3.720999956130981,1.22599995136261,47.98799896240234 -1053,2016-08-13 21:00:00,59.55899810791016,20.27199935913086,55.94400024414063,15.628000259399414,3.5179998874664307,1.2150000333786009,47.32899856567383 -1054,2016-08-13 22:00:00,51.85200119018555,18.763999938964844,50.12699890136719,15.60099983215332,2.2920000553131104,0.0,46.66999816894531 -1055,2016-08-13 23:00:00,51.93600082397461,15.916000366210938,48.30400085449219,12.170000076293944,3.507999897003174,1.2150000333786009,46.22999954223633 -1056,2016-08-14 00:00:00,53.19300079345703,17.843000411987305,50.66299819946289,14.340999603271484,1.8229999542236328,0.0,45.35200119018555 -1057,2016-08-14 01:00:00,52.1870002746582,17.507999420166016,48.89400100708008,13.644000053405762,3.0380001068115234,1.2580000162124634,44.25299835205078 -1058,2016-08-14 02:00:00,48.08300018310547,15.329999923706056,45.06000137329102,11.847999572753904,2.6549999713897705,1.2150000333786009,43.8134994506836 -1059,2016-08-14 03:00:00,48.91999816894531,16.670000076293945,47.178001403808594,13.590999603271484,1.4179999828338623,0.0,43.59400177001953 -1060,2016-08-14 04:00:00,45.31800079345703,15.413000106811523,42.86199951171875,12.196999549865724,2.687000036239624,0.0,43.15399932861328 -1061,2016-08-14 05:00:00,44.3129997253418,14.994000434875488,42.35300064086914,12.46500015258789,2.0899999141693115,0.0,42.275001525878906 -1062,2016-08-14 06:00:00,46.82600021362305,16.0,43.935001373291016,13.081000328063965,2.0899999141693115,0.0,41.61600112915039 -1063,2016-08-14 07:00:00,46.49100112915039,16.083000183105472,44.09500122070313,13.29599952697754,1.2150000333786009,0.0,41.61600112915039 -1064,2016-08-14 08:00:00,42.88899993896485,11.895000457763672,40.71799850463867,9.409000396728516,2.4730000495910645,0.0,42.49499893188477 -1065,2016-08-14 09:00:00,42.88899993896485,10.638999938964844,41.76300048828125,8.604999542236326,1.2150000333786009,0.0,44.25299835205078 -1066,2016-08-14 10:00:00,47.24499893188477,13.56999969482422,45.75699996948242,10.803000450134276,1.343000054359436,0.0,46.88949966430664 -1067,2016-08-14 11:00:00,49.42300033569336,13.654000282287598,47.98199844360352,10.96399974822998,1.3969999551773071,0.0,49.96599960327149 -1068,2016-08-14 12:00:00,55.0359992980957,16.083000183105472,53.85300064086914,12.812999725341797,1.2580000162124634,0.0,50.40499877929688 -1069,2016-08-14 13:00:00,52.43899917602539,15.329999923706056,51.49399948120117,12.41100025177002,1.22599995136261,0.0,52.16299819946289 -1070,2016-08-14 14:00:00,50.512001037597656,13.98900032043457,49.02799987792969,11.071000099182127,1.22599995136261,0.0,53.262001037597656 -1071,2016-08-14 15:00:00,50.34500122070313,13.654000282287598,48.84000015258789,11.043999671936035,1.22599995136261,0.0,54.14099884033203 -1072,2016-08-14 16:00:00,50.84700012207031,14.491999626159668,49.7509994506836,11.553000450134276,1.22599995136261,0.0,52.821998596191406 -1073,2016-08-14 17:00:00,51.85200119018555,14.82699966430664,50.28799819946289,11.902000427246096,1.22599995136261,0.0,51.50400161743164 -1074,2016-08-14 18:00:00,54.11399841308594,15.581000328063965,51.762001037597656,11.795000076293944,1.22599995136261,0.0,50.18600082397461 -1075,2016-08-14 19:00:00,51.18199920654297,13.654000282287598,47.9020004272461,10.105999946594238,2.45199990272522,0.0,48.86700057983398 -1076,2016-08-14 20:00:00,52.35499954223633,14.156999588012695,49.7509994506836,10.642000198364258,2.45199990272522,0.0,47.76850128173828 -1077,2016-08-14 21:00:00,54.28200149536133,16.250999450683597,50.79700088500977,12.517999649047852,3.6679999828338623,1.2150000333786009,46.88949966430664 -1078,2016-08-14 22:00:00,48.75299835205078,13.904999732971191,45.78400039672852,10.776000022888184,2.45199990272522,0.0,46.45000076293945 -1079,2016-08-14 23:00:00,49.50699996948242,14.156999588012695,45.62300109863281,10.427000045776367,3.720999956130981,0.0,45.79100036621094 -1080,2016-08-15 00:00:00,48.08300018310547,14.156999588012695,45.30199813842773,11.017000198364258,2.3989999294281006,0.0,44.9119987487793 -1081,2016-08-15 01:00:00,46.57500076293945,14.072999954223633,43.34500122070313,10.803000450134276,3.720999956130981,0.0,44.03300094604492 -1082,2016-08-15 02:00:00,45.65399932861328,13.73799991607666,42.35300064086914,10.614999771118164,3.486000061035156,0.0,43.59400177001953 -1083,2016-08-15 03:00:00,41.88399887084961,12.229999542236328,38.62699890136719,9.248000144958496,3.486000061035156,1.2150000333786009,42.49499893188477 -1084,2016-08-15 04:00:00,42.21900177001953,13.067999839782717,39.02899932861328,10.427000045776367,2.4730000495910645,0.0,41.83599853515625 -1085,2016-08-15 05:00:00,44.0620002746582,14.072999954223633,41.60300064086914,11.33899974822998,2.430999994277954,0.0,40.95700073242188 -1086,2016-08-15 06:00:00,41.29800033569336,12.732999801635742,37.87699890136719,9.864999771118164,2.430999994277954,0.0,40.07799911499024 -1087,2016-08-15 07:00:00,36.02000045776367,10.973999977111816,35.089000701904304,9.623000144958496,2.131999969482422,0.0,40.07799911499024 -1088,2016-08-15 08:00:00,39.53799819946289,11.309000015258787,38.09099960327149,9.354999542236328,1.2899999618530271,0.0,41.61600112915039 -1089,2016-08-15 09:00:00,49.42300033569336,18.17799949645996,47.95500183105469,15.413000106811523,1.2899999618530271,0.0,43.59400177001953 -1090,2016-08-15 10:00:00,48.08300018310547,14.91100025177002,46.10599899291992,12.196999549865724,1.2899999618530271,0.0,45.79100036621094 -1091,2016-08-15 11:00:00,51.93600082397461,16.50200080871582,50.26100158691406,13.37600040435791,1.2899999618530271,0.0,49.5265007019043 -1092,2016-08-15 12:00:00,53.69499969482422,17.843000411987305,53.10200119018555,14.770000457763672,0.0,0.0,51.28400039672852 -1093,2016-08-15 13:00:00,53.52799987792969,17.590999603271484,52.61999893188477,14.58199977874756,0.0,0.0,53.26150131225586 -1094,2016-08-15 14:00:00,54.70000076293945,18.68000030517578,53.61100006103516,15.628000259399414,1.246999979019165,0.0,55.23949813842773 -1095,2016-08-15 15:00:00,49.0880012512207,15.07800006866455,47.95500183105469,12.277000427246096,1.246999979019165,0.0,56.11800003051758 -1096,2016-08-15 16:00:00,53.19300079345703,18.26099967956543,52.29800033569336,15.251999855041506,1.246999979019165,0.0,55.45899963378906 -1097,2016-08-15 17:00:00,54.3650016784668,18.17799949645996,53.02199935913086,15.01099967956543,1.246999979019165,0.0,53.48149871826172 -1098,2016-08-15 18:00:00,54.53300094604492,18.17799949645996,51.762001037597656,14.663000106811523,2.5269999504089355,0.0,51.50400161743164 -1099,2016-08-15 19:00:00,52.35499954223633,16.50200080871582,48.7859992980957,12.760000228881836,2.5269999504089355,1.3009999990463257,49.74599838256836 -1100,2016-08-15 20:00:00,55.20299911499024,17.34000015258789,51.762001037597656,13.053999900817873,2.5269999504089355,1.2369999885559082,48.20800018310547 -1101,2016-08-15 21:00:00,55.62200164794922,19.01499938964844,53.53099822998047,14.984000205993652,3.753000020980835,1.503000020980835,47.10900115966797 -1102,2016-08-15 22:00:00,55.95700073242188,19.099000930786133,52.11000061035156,14.79699993133545,3.390000104904175,1.2580000162124634,46.22999954223633 -1103,2016-08-15 23:00:00,51.85200119018555,16.836999893188473,49.45700073242188,13.43000030517578,3.390000104904175,0.0,45.79100036621094 -1104,2016-08-16 00:00:00,51.93600082397461,17.843000411987305,48.46500015258789,13.590999603271484,3.433000087738037,1.4290000200271606,45.13199996948242 -1105,2016-08-16 01:00:00,47.915000915527344,14.743000030517578,45.03400039672852,11.607000350952148,3.2839999198913574,0.0,44.47299957275391 -1106,2016-08-16 02:00:00,49.42300033569336,16.0,45.73099899291992,12.517999649047852,3.2839999198913574,1.2150000333786009,43.59400177001953 -1107,2016-08-16 03:00:00,47.24499893188477,15.581000328063965,44.71200180053711,12.491000175476074,2.227999925613404,0.0,42.93450164794922 -1108,2016-08-16 04:00:00,41.13000106811523,13.487000465393065,39.887001037597656,11.472999572753904,2.227999925613404,0.0,42.275001525878906 -1109,2016-08-16 05:00:00,35.014999389648445,9.465999603271484,32.435001373291016,7.184000015258789,2.430999994277954,0.0,41.39599990844727 -1110,2016-08-16 06:00:00,25.04700088500977,6.701000213623048,23.347999572753903,5.1469998359680185,1.22599995136261,0.0,40.51800155639648 -1111,2016-08-16 07:00:00,24.459999084472656,6.533999919891357,22.382999420166016,4.90500020980835,2.440999984741211,0.0,40.51800155639648 -1112,2016-08-16 08:00:00,21.69599914550781,5.445000171661377,20.66699981689453,4.3429999351501465,0.0,0.0,41.39599990844727 -1113,2016-08-16 09:00:00,23.37100028991699,7.037000179290772,22.757999420166016,5.869999885559082,0.0,0.0,43.15449905395508 -1114,2016-08-16 10:00:00,25.80100059509277,6.86899995803833,25.0629997253418,5.923999786376952,0.0,0.0,44.69250106811523 -1115,2016-08-16 11:00:00,26.88999938964844,6.7849998474121085,26.00200080871582,5.763000011444093,0.0,0.0,48.20800018310547 -1116,2016-08-16 12:00:00,28.145999908447266,5.947999954223633,27.690000534057607,4.932000160217285,0.0,0.0,49.96599960327149 -1117,2016-08-16 13:00:00,28.81599998474121,6.449999809265138,28.011999130249023,5.254000186920166,0.0,0.0,51.28400039672852 -1118,2016-08-16 14:00:00,28.145999908447266,7.454999923706055,27.44899940490723,6.245999813079834,0.0,0.0,53.262001037597656 -1119,2016-08-16 15:00:00,28.229999542236328,7.037000179290772,27.288000106811523,5.683000087738037,0.0,0.0,52.38299942016602 -1120,2016-08-16 16:00:00,27.559999465942383,7.372000217437744,27.12700080871582,6.191999912261963,0.0,0.0,51.06399917602539 -1121,2016-08-16 17:00:00,29.40299987792969,7.789999961853027,28.09199905395508,5.763000011444093,1.2690000534057615,0.0,49.74599838256836 -1122,2016-08-16 18:00:00,29.82099914550781,8.125,28.06599998474121,6.164999961853027,1.2369999885559082,0.0,47.98799896240234 -1123,2016-08-16 19:00:00,29.90500068664551,7.874000072479247,27.82399940490723,5.869999885559082,1.2369999885559082,0.0,45.79100036621094 -1124,2016-08-16 20:00:00,30.32399940490723,7.623000144958496,28.386999130249023,5.602000236511231,2.5369999408721924,0.0,44.03300094604492 -1125,2016-08-16 21:00:00,32.16699981689453,8.125,30.23699951171875,6.191999912261963,2.5369999408721924,0.0,43.15399932861328 -1126,2016-08-16 22:00:00,28.31399917602539,7.372000217437744,26.322999954223643,5.548999786376953,1.22599995136261,0.0,42.275001525878906 -1127,2016-08-16 23:00:00,27.895000457763672,6.953000068664551,25.65299987792969,5.065999984741211,2.45199990272522,0.0,41.39599990844727 -1128,2016-08-17 00:00:00,29.40299987792969,8.041999816894531,26.940000534057607,6.058000087738037,2.463000059127808,0.0,40.51800155639648 -1129,2016-08-17 01:00:00,32.92100143432617,8.376999855041504,30.10300064086914,6.138999938964844,2.463000059127808,1.2150000333786009,40.07799911499024 -1130,2016-08-17 02:00:00,35.85300064086914,9.550000190734863,32.91699981689453,7.130000114440918,2.463000059127808,1.2150000333786009,39.63899993896485 -1131,2016-08-17 03:00:00,35.518001556396484,10.973999977111816,34.17699813842773,8.899999618530273,2.463000059127808,0.0,39.41899871826172 -1132,2016-08-17 04:00:00,35.60100173950195,11.727999687194824,34.57899856567383,9.784000396728516,1.2369999885559082,0.0,38.97949981689453 -1133,2016-08-17 05:00:00,37.44400024414063,11.47599983215332,35.11600112915039,9.086999893188477,2.505000114440918,0.0,38.7599983215332 -1134,2016-08-17 06:00:00,37.86299896240234,12.145999908447266,36.027000427246094,9.864999771118164,1.3860000371932983,0.0,38.7599983215332 -1135,2016-08-17 07:00:00,34.763999938964844,10.890000343322754,32.89099884033203,8.604999542236326,2.6010000705718994,0.0,38.7599983215332 -1136,2016-08-17 08:00:00,34.09400177001953,10.722000122070312,33.588001251220696,9.11400032043457,0.0,0.0,39.85850143432617 -1137,2016-08-17 09:00:00,40.29199981689453,14.156999588012695,39.80699920654297,11.982000350952148,0.0,0.0,41.83549880981445 -1138,2016-08-17 10:00:00,43.05699920654297,14.156999588012695,42.78200149536133,11.954999923706056,0.0,0.0,44.03300094604492 -1139,2016-08-17 11:00:00,45.23500061035156,14.91100025177002,44.79199981689453,12.652000427246096,0.0,0.0,47.10950088500977 -1140,2016-08-17 12:00:00,45.90499877929688,14.407999992370604,45.70399856567383,12.25,0.0,0.0,48.86750030517578 -1141,2016-08-17 13:00:00,47.41299819946289,15.496999740600586,47.25899887084961,13.348999977111816,0.0,0.0,50.625 -1142,2016-08-17 14:00:00,45.73699951171875,16.334999084472653,45.2750015258789,14.019000053405762,0.0,0.0,51.06399917602539 -1143,2016-08-17 15:00:00,42.387001037597656,12.64900016784668,41.89699935913086,10.722000122070312,0.0,0.0,51.7234992980957 -1144,2016-08-17 16:00:00,41.46500015258789,12.64900016784668,40.58399963378906,10.480999946594238,0.0,0.0,51.28400039672852 -1145,2016-08-17 17:00:00,44.0620002746582,14.491999626159668,43.50600051879883,12.277000427246096,0.0,0.0,50.18600082397461 -1146,2016-08-17 18:00:00,43.89400100708008,14.324000358581545,41.76300048828125,11.767999649047852,1.2790000438690186,0.0,48.86700057983398 -1147,2016-08-17 19:00:00,42.387001037597656,12.229999542236328,41.49499893188477,9.94499969482422,0.0,0.0,47.32899856567383 -1148,2016-08-17 20:00:00,44.73199844360352,13.56999969482422,42.00500106811523,10.480999946594238,2.463000059127808,0.0,45.79100036621094 -1149,2016-08-17 21:00:00,44.81600189208984,13.067999839782717,42.24599838256836,9.864999771118164,2.687000036239624,0.0,44.47299957275391 -1150,2016-08-17 22:00:00,41.46500015258789,12.5649995803833,40.04800033569336,10.37399959564209,2.687000036239624,0.0,43.59400177001953 -1151,2016-08-17 23:00:00,40.87900161743164,12.815999984741213,38.73400115966797,10.347000122070312,2.931999921798706,0.0,42.93450164794922 -1152,2016-08-18 00:00:00,44.64799880981445,14.576000213623049,42.459999084472656,11.821000099182127,2.8359999656677246,0.0,42.05550003051758 -1153,2016-08-18 01:00:00,39.790000915527344,12.229999542236328,38.22499847412109,9.99899959564209,1.7799999713897705,0.0,41.39599990844727 -1154,2016-08-18 02:00:00,41.632999420166016,13.234999656677244,39.37799835205078,10.74899959564209,2.45199990272522,0.0,40.95700073242188 -1155,2016-08-18 03:00:00,39.790000915527344,11.727999687194824,36.858001708984375,9.274999618530272,2.6549999713897705,0.0,40.51800155639648 -1156,2016-08-18 04:00:00,37.19300079345703,11.225000381469728,36.24100112915039,9.354999542236328,0.0,0.0,40.07799911499024 -1157,2016-08-18 05:00:00,39.95700073242188,12.480999946594238,36.992000579833984,9.864999771118164,2.664999961853028,0.0,39.41899871826172 -1158,2016-08-18 06:00:00,36.02000045776367,11.309000015258787,33.42699813842773,9.0600004196167,2.7290000915527344,0.0,38.97949981689453 -1159,2016-08-18 07:00:00,38.53300094604492,12.984000205993652,36.42900085449219,10.37399959564209,1.493000030517578,0.0,38.97949981689453 -1160,2016-08-18 08:00:00,35.349998474121094,10.890000343322754,34.98199844360352,9.48900032043457,0.0,0.0,40.73749923706055 -1161,2016-08-18 09:00:00,41.04600143432617,13.654000282287598,40.23500061035156,11.66100025177002,0.0,0.0,42.275001525878906 -1162,2016-08-18 10:00:00,45.1510009765625,14.576000213623049,44.25600051879883,12.170000076293944,0.0,0.0,44.69250106811523 -1163,2016-08-18 11:00:00,49.0880012512207,15.496999740600586,48.4109992980957,12.78600025177002,0.0,0.0,48.20800018310547 -1164,2016-08-18 12:00:00,47.49599838256836,13.904999732971191,46.749000549316406,11.366000175476074,0.0,0.0,49.96549987792969 -1165,2016-08-18 13:00:00,50.93099975585938,17.256000518798828,50.20700073242188,14.340999603271484,0.0,0.0,51.50350189208984 -1166,2016-08-18 14:00:00,49.25600051879883,17.590999603271484,48.54499816894531,14.824000358581545,0.0,0.0,53.92100143432617 -1167,2016-08-18 15:00:00,49.17200088500977,16.836999893188473,48.38399887084961,14.019000053405762,0.0,0.0,55.01950073242188 -1168,2016-08-18 16:00:00,58.21900177001953,21.780000686645508,56.96200180053711,18.121000289916992,1.22599995136261,0.0,53.92100143432617 -1169,2016-08-18 17:00:00,60.73199844360352,22.53400039672852,58.249000549316406,17.9060001373291,2.6440000534057617,0.0,52.602500915527344 -1170,2016-08-18 18:00:00,59.97800064086914,22.53400039672852,57.41799926757813,18.173999786376957,2.6440000534057617,0.0,51.06449890136719 -1171,2016-08-18 19:00:00,53.946998596191406,18.429000854492188,51.73500061035156,14.340999603271484,3.220000028610228,1.375,49.96599960327149 -1172,2016-08-18 20:00:00,54.78400039672852,16.753999710083008,52.02999877929688,12.760000228881836,3.240999937057495,1.2150000333786009,48.647499084472656 -1173,2016-08-18 21:00:00,56.71099853515625,18.68000030517578,54.63000106811523,14.79699993133545,2.0150001049041752,0.0,47.76850128173828 -1174,2016-08-18 22:00:00,53.52799987792969,18.17799949645996,51.62799835205078,14.743000030517578,1.8550000190734863,0.0,47.32899856567383 -1175,2016-08-18 23:00:00,50.512001037597656,16.586000442504886,47.6870002746582,12.812999725341797,2.687000036239624,1.246999979019165,46.66999816894531 -1176,2016-08-19 00:00:00,54.78400039672852,20.10400009155273,53.69200134277344,16.431999206542972,0.0,0.0,45.79100036621094 -1177,2016-08-19 01:00:00,54.11399841308594,19.601999282836918,50.90399932861328,15.520999908447266,2.7720000743865967,1.2150000333786009,45.57149887084961 -1178,2016-08-19 02:00:00,49.92599868774414,17.674999237060547,46.7760009765625,13.885000228881836,2.5910000801086426,1.2369999885559082,45.13199996948242 -1179,2016-08-19 03:00:00,50.09299850463867,17.926000595092773,48.30400085449219,14.663000106811523,1.375,0.0,44.69250106811523 -1180,2016-08-19 04:00:00,49.0880012512207,17.089000701904293,48.2239990234375,14.529000282287598,0.0,0.0,44.03300094604492 -1181,2016-08-19 05:00:00,48.584999084472656,17.590999603271484,48.0359992980957,14.930999755859377,0.0,0.0,43.374000549316406 -1182,2016-08-19 06:00:00,48.83700180053711,17.507999420166016,48.30400085449219,14.984000205993652,0.0,0.0,42.71500015258789 -1183,2016-08-19 07:00:00,45.23500061035156,16.250999450683597,44.900001525878906,14.126999855041506,0.0,0.0,42.71500015258789 -1184,2016-08-19 08:00:00,43.89400100708008,14.072999954223633,43.04999923706055,11.875,0.0,0.0,43.8134994506836 -1185,2016-08-19 09:00:00,51.26599884033203,18.0939998626709,50.39500045776367,15.22599983215332,0.0,0.0,46.01050186157226 -1186,2016-08-19 10:00:00,49.92599868774414,14.91100025177002,48.89400100708008,12.357000350952148,0.0,0.0,47.32899856567383 -1187,2016-08-19 11:00:00,51.68500137329102,15.413000106811523,51.19900131225586,12.760000228881836,0.0,0.0,49.08700180053711 -1188,2016-08-19 12:00:00,56.125,18.010000228881836,55.86299896240234,15.145000457763672,0.0,0.0,50.18600082397461 -1189,2016-08-19 13:00:00,57.63199996948242,18.93199920654297,57.04299926757813,15.654999732971191,0.0,0.0,51.28400039672852 -1190,2016-08-19 14:00:00,54.78400039672852,18.17799949645996,53.93299865722656,14.984000205993652,0.0,0.0,52.602500915527344 -1191,2016-08-19 15:00:00,49.17200088500977,16.166999816894528,48.35800170898438,13.75100040435791,0.0,0.0,55.89799880981445 -1192,2016-08-19 16:00:00,51.34999847412109,17.423999786376953,50.55599975585938,14.850000381469728,0.0,0.0,56.11800003051758 -1193,2016-08-19 17:00:00,57.04600143432617,19.51799964904785,56.15800094604492,16.083000183105472,0.0,0.0,53.48149871826172 -1194,2016-08-19 18:00:00,58.72100067138672,20.941999435424805,57.55199813842773,17.423999786376953,0.0,0.0,51.7234992980957 -1195,2016-08-19 19:00:00,53.52799987792969,16.753999710083008,52.29800033569336,13.777999877929688,0.0,0.0,50.18600082397461 -1196,2016-08-19 20:00:00,56.459999084472656,17.843000411987305,54.09400177001953,13.83199977874756,2.505000114440918,0.0,49.08700180053711 -1197,2016-08-19 21:00:00,61.31800079345703,21.44499969482422,58.0880012512207,16.88800048828125,3.720999956130981,1.2369999885559082,48.20800018310547 -1198,2016-08-19 22:00:00,60.22900009155274,21.94700050354004,57.95399856567383,17.503999710083008,2.494999885559082,0.0,47.76850128173828 -1199,2016-08-19 23:00:00,59.2239990234375,21.19300079345703,55.40700149536133,16.270999908447266,3.753000020980835,1.493000030517578,47.10900115966797 -1200,2016-08-20 00:00:00,55.37099838256836,19.43400001525879,52.53900146484375,15.734999656677244,2.5269999504089355,0.0,46.45000076293945 -1201,2016-08-20 01:00:00,51.68500137329102,17.590999603271484,49.5369987487793,14.234000205993652,2.45199990272522,0.0,45.79100036621094 -1202,2016-08-20 02:00:00,53.0250015258789,18.429000854492188,49.59099960327149,14.501999855041506,3.677999973297119,1.2150000333786009,44.9119987487793 -1203,2016-08-20 03:00:00,51.26599884033203,18.59600067138672,48.0629997253418,14.876999855041506,3.401000022888184,0.0,44.47299957275391 -1204,2016-08-20 04:00:00,49.59099960327149,17.759000778198242,46.9900016784668,14.368000030517578,3.401000022888184,0.0,43.8134994506836 -1205,2016-08-20 05:00:00,48.16699981689453,16.92099952697754,45.16799926757813,13.37600040435791,2.664999961853028,1.2150000333786009,43.15399932861328 -1206,2016-08-20 06:00:00,50.26100158691406,17.926000595092773,47.84799957275391,14.58199977874756,2.7079999446868896,0.0,42.71500015258789 -1207,2016-08-20 07:00:00,46.65900039672852,16.586000442504886,44.44400024414063,13.75100040435791,2.7079999446868896,0.0,42.49499893188477 -1208,2016-08-20 08:00:00,45.48600006103516,14.659000396728516,44.09500122070313,12.277000427246096,1.3650000095367432,0.0,43.374000549316406 -1209,2016-08-20 09:00:00,54.19800186157226,19.26700019836425,52.67300033569336,15.76200008392334,1.3650000095367432,0.0,45.35150146484375 -1210,2016-08-20 10:00:00,58.303001403808594,21.44499969482422,56.72100067138672,17.558000564575195,1.3650000095367432,0.0,47.32899856567383 -1211,2016-08-20 11:00:00,61.1510009765625,22.198999404907227,59.72299957275391,18.066999435424805,1.3650000095367432,0.0,49.30649948120117 -1212,2016-08-20 12:00:00,56.29199981689453,19.01499938964844,55.11299896240234,15.76200008392334,0.0,0.0,51.06449890136719 -1213,2016-08-20 13:00:00,56.79499816894531,19.51799964904785,55.19300079345703,15.788999557495115,1.246999979019165,0.0,49.30699920654297 -1214,2016-08-20 14:00:00,53.19300079345703,19.01499938964844,52.43199920654297,15.97599983215332,0.0,0.0,41.83599853515625 -1215,2016-08-20 15:00:00,52.68999862670898,18.51300048828125,51.33300018310547,15.708000183105469,1.2150000333786009,0.0,38.97949981689453 -1216,2016-08-20 16:00:00,52.68999862670898,18.51300048828125,51.46699905395508,15.494000434875488,1.3329999446868896,0.0,38.97949981689453 -1217,2016-08-20 17:00:00,54.95199966430664,18.847999572753903,52.48600006103516,15.17199993133545,2.463000059127808,0.0,40.51750183105469 -1218,2016-08-20 18:00:00,55.11899948120117,18.847999572753903,52.99499893188477,15.145000457763672,2.4730000495910645,0.0,38.7599983215332 -1219,2016-08-20 19:00:00,48.83700180053711,15.496999740600586,46.05199813842773,12.062999725341797,2.4730000495910645,0.0,35.68349838256836 -1220,2016-08-20 20:00:00,53.19300079345703,18.010000228881836,51.14500045776367,14.395000457763672,2.5269999504089355,0.0,35.68399810791016 -1221,2016-08-20 21:00:00,54.02999877929688,17.507999420166016,50.52899932861328,13.510000228881836,2.5269999504089355,0.0,36.78200149536133 -1222,2016-08-20 22:00:00,51.34999847412109,17.423999786376953,48.9739990234375,13.777999877929688,2.611999988555908,0.0,37.44100189208984 -1223,2016-08-20 23:00:00,49.00400161743164,16.419000625610348,47.84799957275391,13.80500030517578,1.3220000267028809,0.0,38.10049819946289 -1224,2016-08-21 00:00:00,48.33399963378906,16.166999816894528,46.05199813842773,13.241999626159668,1.662999987602234,0.0,38.540000915527344 -1225,2016-08-21 01:00:00,45.56999969482422,14.407999992370604,43.854000091552734,12.196999549865724,1.662999987602234,0.0,38.540000915527344 -1226,2016-08-21 02:00:00,45.23500061035156,14.491999626159668,42.67499923706055,11.954999923706056,1.246999979019165,0.0,38.540000915527344 -1227,2016-08-21 03:00:00,44.229000091552734,14.743000030517578,42.48699951171875,12.331000328063965,1.22599995136261,0.0,37.88050079345703 -1228,2016-08-21 04:00:00,41.88399887084961,13.654000282287598,39.67300033569336,11.12399959564209,2.440999984741211,0.0,37.88050079345703 -1229,2016-08-21 05:00:00,45.65399932861328,15.664999961853027,43.50600051879883,12.946999549865724,1.3329999446868896,0.0,36.78200149536133 -1230,2016-08-21 06:00:00,44.983001708984375,15.664999961853027,44.44400024414063,13.644000053405762,0.0,0.0,37.22150039672852 -1231,2016-08-21 07:00:00,41.13000106811523,14.491999626159668,39.11000061035156,12.303999900817873,1.22599995136261,0.0,37.6609992980957 -1232,2016-08-21 08:00:00,42.55400085449219,15.748000144958494,41.57600021362305,13.67099952697754,0.0,0.0,37.6609992980957 -1233,2016-08-21 09:00:00,47.999000549316406,17.926000595092773,46.85599899291992,15.305999755859377,0.0,0.0,37.6609992980957 -1234,2016-08-21 10:00:00,50.76300048828125,18.51300048828125,49.69800186157226,15.869000434875488,1.2150000333786009,0.0,38.540000915527344 -1235,2016-08-21 11:00:00,52.35499954223633,18.59600067138672,50.95800018310547,15.38700008392334,1.3329999446868896,0.0,40.73749923706055 -1236,2016-08-21 12:00:00,54.11399841308594,18.763999938964844,53.18299865722656,15.8149995803833,0.0,0.0,43.8134994506836 -1237,2016-08-21 13:00:00,55.62200164794922,19.684999465942383,54.73699951171875,16.620000839233402,0.0,0.0,45.79100036621094 -1238,2016-08-21 14:00:00,50.00899887084961,17.507999420166016,48.70600128173828,14.663000106811523,1.22599995136261,0.0,47.54899978637695 -1239,2016-08-21 15:00:00,53.946998596191406,19.85300064086914,52.915000915527344,16.538999557495114,1.22599995136261,0.0,44.03350067138672 -1240,2016-08-21 16:00:00,54.44900131225586,19.601999282836918,53.04899978637695,16.29800033569336,1.22599995136261,0.0,44.47249984741211 -1241,2016-08-21 17:00:00,55.95700073242188,19.601999282836918,53.584999084472656,15.949000358581545,2.440999984741211,0.0,44.47249984741211 -1242,2016-08-21 18:00:00,55.78900146484375,19.183000564575195,53.36999893188477,15.413000106811523,2.440999984741211,0.0,43.8134994506836 -1243,2016-08-21 19:00:00,51.34999847412109,17.172000885009766,48.91999816894531,13.725000381469728,2.440999984741211,0.0,42.93450164794922 -1244,2016-08-21 20:00:00,56.29199981689453,19.099000930786133,53.88000106811523,15.467000007629396,2.440999984741211,0.0,42.275001525878906 -1245,2016-08-21 21:00:00,57.38100051879883,20.1879997253418,54.60300064086914,15.949000358581545,2.440999984741211,0.0,41.83599853515625 -1246,2016-08-21 22:00:00,54.53300094604492,20.43899917602539,53.04899978637695,16.511999130249027,2.440999984741211,0.0,41.61600112915039 -1247,2016-08-21 23:00:00,50.84700012207031,18.010000228881836,48.49200057983398,14.79699993133545,2.440999984741211,0.0,41.39599990844727 -1248,2016-08-22 00:00:00,49.59099960327149,17.843000411987305,48.33100128173828,14.984000205993652,2.440999984741211,0.0,41.17649841308594 -1249,2016-08-22 01:00:00,45.82099914550781,15.916000366210938,43.31800079345703,13.00100040435791,2.440999984741211,0.0,40.95700073242188 -1250,2016-08-22 02:00:00,47.24499893188477,16.586000442504886,46.05199813842773,14.019000053405762,2.440999984741211,0.0,40.51800155639648 -1251,2016-08-22 03:00:00,47.07799911499024,16.836999893188473,44.20299911499024,13.564000129699709,2.440999984741211,0.0,40.29800033569336 -1252,2016-08-22 04:00:00,42.387001037597656,15.161999702453612,41.709999084472656,13.135000228881836,0.0,0.0,40.07799911499024 -1253,2016-08-22 05:00:00,46.32400131225586,17.004999160766598,43.98799896240234,14.126999855041506,2.6440000534057617,0.0,39.63899993896485 -1254,2016-08-22 06:00:00,45.90499877929688,16.50200080871582,44.60499954223633,13.885000228881836,1.4290000200271606,0.0,39.63899993896485 -1255,2016-08-22 07:00:00,41.96799850463867,14.659000396728516,39.72600173950195,12.142999649047852,2.697000026702881,0.0,39.63899993896485 -1256,2016-08-22 08:00:00,44.64799880981445,15.161999702453612,43.23799896240234,12.678999900817873,2.687000036239624,0.0,40.07799911499024 -1257,2016-08-22 09:00:00,51.68500137329102,19.350000381469727,50.47499847412109,16.29800033569336,1.4609999656677246,0.0,41.39599990844727 -1258,2016-08-22 10:00:00,50.09299850463867,19.01499938964844,48.30400085449219,15.76200008392334,1.4609999656677246,0.0,41.61600112915039 -1259,2016-08-22 11:00:00,51.51699829101562,19.601999282836918,49.69800186157226,16.270999908447266,1.4609999656677246,0.0,42.275001525878906 -1260,2016-08-22 12:00:00,53.44400024414063,18.847999572753903,52.02999877929688,15.60099983215332,1.4609999656677246,0.0,44.03300094604492 -1261,2016-08-22 13:00:00,56.54299926757813,20.69099998474121,54.68399810791016,17.208999633789062,1.4609999656677246,0.0,45.79100036621094 -1262,2016-08-22 14:00:00,53.77899932861328,20.60700035095215,52.08399963378906,17.290000915527347,1.4609999656677246,0.0,47.98799896240234 -1263,2016-08-22 15:00:00,56.3759994506836,21.780000686645508,55.08599853515625,18.334999084472656,1.4609999656677246,0.0,48.86700057983398 -1264,2016-08-22 16:00:00,55.78900146484375,21.19300079345703,54.41600036621094,17.611000061035156,1.4609999656677246,0.0,49.30699920654297 -1265,2016-08-22 17:00:00,58.21900177001953,22.36599922180176,56.82799911499024,18.41600036621093,1.4609999656677246,0.0,48.428001403808594 -1266,2016-08-22 18:00:00,57.38100051879883,21.863000869750977,55.99700164794922,18.2549991607666,1.4609999656677246,0.0,47.98799896240234 -1267,2016-08-22 19:00:00,53.44400024414063,18.93199920654297,51.97600173950195,15.8149995803833,1.3329999446868896,0.0,47.10900115966797 -1268,2016-08-22 20:00:00,57.88399887084961,20.857999801635746,55.99700164794922,17.101999282836914,2.569000005722046,0.0,46.01050186157226 -1269,2016-08-22 21:00:00,58.21900177001953,20.857999801635746,55.51499938964844,16.833999633789062,2.569000005722046,0.0,45.13199996948242 -1270,2016-08-22 22:00:00,55.53799819946289,21.025999069213867,53.77199935913086,17.7189998626709,1.3650000095367432,0.0,44.47299957275391 -1271,2016-08-22 23:00:00,52.27099990844727,19.51799964904785,50.71599960327149,16.325000762939453,1.2150000333786009,0.0,43.8134994506836 -1272,2016-08-23 00:00:00,51.18199920654297,19.01499938964844,50.02000045776367,16.136999130249027,1.2150000333786009,0.0,43.15399932861328 -1273,2016-08-23 01:00:00,46.82600021362305,17.674999237060547,44.14899826049805,14.555999755859377,2.5269999504089355,0.0,42.49499893188477 -1274,2016-08-23 02:00:00,48.584999084472656,18.51300048828125,47.3390007019043,15.654999732971191,1.3109999895095823,0.0,42.05550003051758 -1275,2016-08-23 03:00:00,49.0880012512207,19.099000930786133,46.4010009765625,15.574000358581545,2.7929999828338623,0.0,41.83599853515625 -1276,2016-08-23 04:00:00,47.83200073242188,19.099000930786133,45.43600082397461,16.030000686645508,1.5460000038146973,0.0,41.39599990844727 -1277,2016-08-23 05:00:00,45.1510009765625,17.34000015258789,43.02299880981445,14.475000381469728,1.5460000038146973,0.0,40.73749923706055 -1278,2016-08-23 06:00:00,47.32899856567383,17.926000595092773,44.92599868774414,14.555999755859377,2.740000009536743,0.0,40.51800155639648 -1279,2016-08-23 07:00:00,40.3759994506836,15.496999740600586,38.94900131225586,13.00100040435791,1.4609999656677246,0.0,40.07799911499024 -1280,2016-08-23 08:00:00,43.05699920654297,14.743000030517578,41.57600021362305,12.437999725341797,1.22599995136261,0.0,41.39599990844727 -1281,2016-08-23 09:00:00,52.02000045776367,13.904999732971191,50.50199890136719,11.071000099182127,1.22599995136261,0.0,42.49499893188477 -1282,2016-08-23 10:00:00,44.3129997253418,13.73799991607666,42.56800079345703,11.204999923706056,1.22599995136261,0.0,45.13199996948242 -1283,2016-08-23 11:00:00,50.76300048828125,16.92099952697754,49.67100143432617,14.04599952697754,1.22599995136261,0.0,48.20800018310547 -1284,2016-08-23 12:00:00,53.2760009765625,17.674999237060547,52.19100189208984,14.609000205993652,0.0,0.0,49.74599838256836 -1285,2016-08-23 13:00:00,54.95199966430664,18.93199920654297,53.85300064086914,15.76200008392334,1.2580000162124634,0.0,49.96599960327149 -1286,2016-08-23 14:00:00,57.29700088500977,21.61199951171875,55.51499938964844,18.0939998626709,1.246999979019165,0.0,51.06399917602539 -1287,2016-08-23 15:00:00,57.79999923706055,22.0310001373291,56.26499938964844,18.36199951171875,1.246999979019165,0.0,53.04199981689453 -1288,2016-08-23 16:00:00,57.29700088500977,22.28199958801269,55.56800079345703,18.6299991607666,1.5989999771118164,0.0,52.16299819946289 -1289,2016-08-23 17:00:00,55.53799819946289,20.356000900268555,53.42399978637695,16.806999206542972,1.3220000267028809,0.0,50.84450149536133 -1290,2016-08-23 18:00:00,57.04600143432617,21.11000061035156,55.86299896240234,17.798999786376953,1.2150000333786009,0.0,49.30699920654297 -1291,2016-08-23 19:00:00,55.37099838256836,19.601999282836918,52.16400146484375,15.895999908447266,2.687000036239624,0.0,47.54899978637695 -1292,2016-08-23 20:00:00,58.303001403808594,22.36599922180176,55.19300079345703,18.01300048828125,2.687000036239624,0.0,46.66999816894531 -1293,2016-08-23 21:00:00,58.38600158691406,21.69599914550781,56.23799896240234,18.066999435424805,1.4709999561309814,0.0,45.57149887084961 -1294,2016-08-23 22:00:00,51.60100173950195,19.183000564575195,49.32300186157226,16.136999130249027,2.687000036239624,0.0,44.9119987487793 -1295,2016-08-23 23:00:00,52.43899917602539,19.684999465942383,51.22600173950195,16.753999710083008,1.3539999723434448,0.0,44.25299835205078 -1296,2016-08-24 00:00:00,50.512001037597656,18.51300048828125,47.1510009765625,15.038000106811523,2.9210000038146973,0.0,43.59400177001953 -1297,2016-08-24 01:00:00,50.428001403808594,18.93199920654297,47.95500183105469,15.494000434875488,1.7059999704360962,0.0,43.15399932861328 -1298,2016-08-24 02:00:00,49.50699996948242,18.26099967956543,46.803001403808594,14.824000358581545,3.0920000076293945,0.0,42.275001525878906 -1299,2016-08-24 03:00:00,49.84199905395508,19.43400001525879,47.01699829101562,15.949000358581545,2.6760001182556152,0.0,41.61600112915039 -1300,2016-08-24 04:00:00,48.33399963378906,18.59600067138672,46.07899856567383,15.38700008392334,2.6760001182556152,0.0,40.95700073242188 -1301,2016-08-24 05:00:00,48.16699981689453,18.010000228881836,44.900001525878906,14.876999855041506,2.5799999237060547,0.0,40.51800155639648 -1302,2016-08-24 06:00:00,48.75299835205078,18.763999938964844,46.374000549316406,15.413000106811523,2.5799999237060547,0.0,40.07799911499024 -1303,2016-08-24 07:00:00,38.70100021362305,12.64900016784668,36.321998596191406,10.642000198364258,1.3329999446868896,0.0,40.07799911499024 -1304,2016-08-24 08:00:00,40.87900161743164,13.402999877929688,39.48500061035156,11.5,0.0,0.0,40.73749923706055 -1305,2016-08-24 09:00:00,47.07799911499024,17.759000778198242,45.97200012207031,15.333000183105469,0.0,0.0,42.2755012512207 -1306,2016-08-24 10:00:00,45.65399932861328,14.407999992370604,44.36399841308594,12.08899974822998,1.2150000333786009,0.0,44.91249847412109 -1307,2016-08-24 11:00:00,49.00400161743164,15.161999702453612,47.76800155639648,12.652000427246096,1.246999979019165,0.0,47.98799896240234 -1308,2016-08-24 12:00:00,52.52299880981445,17.843000411987305,51.65499877929688,14.770000457763672,0.0,0.0,50.18550109863281 -1309,2016-08-24 13:00:00,52.94100189208984,17.926000595092773,51.92300033569336,15.0649995803833,0.0,0.0,51.94350051879883 -1310,2016-08-24 14:00:00,51.93600082397461,17.674999237060547,50.79700088500977,14.876999855041506,1.22599995136261,0.0,54.36050033569336 -1311,2016-08-24 15:00:00,55.62200164794922,21.277000427246094,54.09400177001953,17.476999282836914,1.22599995136261,0.0,55.67850112915039 -1312,2016-08-24 16:00:00,54.44900131225586,21.11000061035156,53.04899978637695,17.451000213623047,1.2150000333786009,0.0,54.58050155639648 -1313,2016-08-24 17:00:00,55.70600128173828,21.11000061035156,54.41600036621094,17.423999786376953,1.2150000333786009,0.0,51.7234992980957 -1314,2016-08-24 18:00:00,52.68999862670898,19.85300064086914,50.66299819946289,16.431999206542972,1.343000054359436,0.0,49.30699920654297 -1315,2016-08-24 19:00:00,49.84199905395508,17.089000701904293,48.11600112915039,13.965999603271484,2.569000005722046,0.0,47.54899978637695 -1316,2016-08-24 20:00:00,55.78900146484375,20.10400009155273,53.02199935913086,16.270999908447266,2.569000005722046,0.0,46.22999954223633 -1317,2016-08-24 21:00:00,56.79499816894531,20.77400016784668,53.34299850463867,16.645999908447266,2.569000005722046,0.0,44.9119987487793 -1318,2016-08-24 22:00:00,52.52299880981445,19.684999465942383,49.99300003051758,16.19099998474121,2.569000005722046,0.0,44.03300094604492 -1319,2016-08-24 23:00:00,47.1609992980957,16.334999084472653,46.64199829101562,14.314000129699709,0.0,0.0,43.374000549316406 -1320,2016-08-25 00:00:00,47.07799911499024,16.836999893188473,45.24800109863281,14.100000381469728,1.3650000095367432,0.0,42.275001525878906 -1321,2016-08-25 01:00:00,47.1609992980957,16.670000076293945,44.09500122070313,13.590999603271484,2.6549999713897705,0.0,41.39599990844727 -1322,2016-08-25 02:00:00,45.48600006103516,15.83199977874756,43.02299880981445,13.161999702453612,2.719000101089477,0.0,40.51800155639648 -1323,2016-08-25 03:00:00,39.37099838256836,13.234999656677244,36.50899887084961,10.96399974822998,2.5799999237060547,0.0,40.07799911499024 -1324,2016-08-25 04:00:00,34.345001220703125,11.057000160217283,33.15900039672852,9.409000396728516,1.5570000410079956,0.0,39.19900131225586 -1325,2016-08-25 05:00:00,44.81600189208984,16.419000625610348,42.72800064086914,13.75100040435791,2.8469998836517334,0.0,38.31999969482422 -1326,2016-08-25 06:00:00,45.90499877929688,15.83199977874756,43.18399810791016,12.946999549865724,2.7079999446868896,0.0,37.88100051879883 -1327,2016-08-25 07:00:00,44.81600189208984,16.083000183105472,42.99599838256836,13.697999954223633,1.4609999656677246,0.0,37.88100051879883 -1328,2016-08-25 08:00:00,39.20299911499024,12.64900016784668,37.233001708984375,10.642000198364258,1.4609999656677246,0.0,39.41899871826172 -1329,2016-08-25 09:00:00,48.83700180053711,17.590999603271484,48.0629997253418,15.413000106811523,0.0,0.0,41.39649963378906 -1330,2016-08-25 10:00:00,46.57500076293945,14.659000396728516,45.75699996948242,12.491000175476074,0.0,0.0,43.8134994506836 -1331,2016-08-25 11:00:00,52.94100189208984,17.926000595092773,52.35200119018555,15.251999855041506,0.0,0.0,47.32899856567383 -1332,2016-08-25 12:00:00,54.70000076293945,19.601999282836918,54.06700134277344,16.726999282836914,0.0,0.0,49.96599960327149 -1333,2016-08-25 13:00:00,56.62699890136719,20.69099998474121,55.78300094604492,17.584999084472653,0.0,0.0,51.7234992980957 -1334,2016-08-25 14:00:00,56.04100036621094,21.11000061035156,55.11299896240234,17.77199935913086,0.0,0.0,54.14099884033203 -1335,2016-08-25 15:00:00,55.11899948120117,20.69099998474121,54.22800064086914,17.691999435424805,0.0,0.0,55.67850112915039 -1336,2016-08-25 16:00:00,55.95700073242188,21.69599914550781,55.05899810791016,18.28199958801269,0.0,0.0,53.70100021362305 -1337,2016-08-25 17:00:00,55.87300109863281,21.61199951171875,54.60300064086914,17.959999084472656,1.3329999446868896,0.0,51.7234992980957 -1338,2016-08-25 18:00:00,55.95700073242188,20.941999435424805,54.49599838256836,17.63800048828125,1.3329999446868896,0.0,50.18600082397461 -1339,2016-08-25 19:00:00,51.51699829101562,17.926000595092773,50.87699890136719,15.199000358581545,0.0,0.0,48.428001403808594 -1340,2016-08-25 20:00:00,53.946998596191406,18.34499931335449,52.27099990844727,15.22599983215332,2.505000114440918,0.0,47.10900115966797 -1341,2016-08-25 21:00:00,56.04100036621094,21.277000427246094,54.38899993896485,17.7189998626709,2.505000114440918,0.0,45.79100036621094 -1342,2016-08-25 22:00:00,55.53799819946289,21.44499969482422,52.80699920654297,17.691999435424805,2.505000114440918,0.0,44.9119987487793 -1343,2016-08-25 23:00:00,53.946998596191406,20.52300071716309,51.54700088500977,16.968000411987305,2.494999885559082,0.0,44.47299957275391 -1344,2016-08-26 00:00:00,50.59600067138672,18.847999572753903,49.10800170898438,16.136999130249027,2.494999885559082,0.0,43.59400177001953 -1345,2016-08-26 01:00:00,48.75299835205078,18.010000228881836,47.07099914550781,15.4399995803833,2.494999885559082,0.0,42.93450164794922 -1346,2016-08-26 02:00:00,47.83200073242188,18.34499931335449,45.81100082397461,15.680999755859377,2.5369999408721924,0.0,42.05550003051758 -1347,2016-08-26 03:00:00,47.58000183105469,17.926000595092773,44.97999954223633,14.824000358581545,2.996000051498413,0.0,41.39599990844727 -1348,2016-08-26 04:00:00,47.915000915527344,18.26099967956543,45.30199813842773,15.22599983215332,2.803999900817871,0.0,40.73749923706055 -1349,2016-08-26 05:00:00,45.1510009765625,17.256000518798828,44.47100067138672,15.038000106811523,0.0,0.0,40.51800155639648 -1350,2016-08-26 06:00:00,48.08300018310547,18.17799949645996,45.43600082397461,15.038000106811523,2.664999961853028,0.0,39.41899871826172 -1351,2016-08-26 07:00:00,40.9630012512207,14.659000396728516,39.45800018310547,12.760000228881836,1.2690000534057615,0.0,38.97949981689453 -1352,2016-08-26 08:00:00,37.10900115966797,12.145999908447266,35.19599914550781,10.105999946594238,1.2690000534057615,0.0,38.540000915527344 -1353,2016-08-26 09:00:00,41.13000106811523,14.241000175476074,40.52999877929688,12.46500015258789,0.0,0.0,38.759498596191406 -1354,2016-08-26 10:00:00,41.29800033569336,13.73799991607666,40.18199920654297,12.062999725341797,1.2369999885559082,0.0,39.41899871826172 -1355,2016-08-26 11:00:00,42.21900177001953,14.324000358581545,41.01300048828125,12.196999549865724,1.2150000333786009,0.0,41.39599990844727 -1356,2016-08-26 12:00:00,43.391998291015625,14.82699966430664,42.084999084472656,12.78600025177002,0.0,0.0,42.49499893188477 -1357,2016-08-26 13:00:00,43.391998291015625,16.0,42.13899993896485,13.83199977874756,0.0,0.0,39.85850143432617 -1358,2016-08-26 14:00:00,42.80500030517578,16.334999084472653,41.76300048828125,14.152999877929688,0.0,0.0,38.10049819946289 -1359,2016-08-26 15:00:00,43.30799865722656,16.250999450683597,42.48699951171875,14.234000205993652,0.0,0.0,37.6609992980957 -1360,2016-08-26 16:00:00,43.391998291015625,16.836999893188473,42.32600021362305,14.314000129699709,0.0,0.0,37.22150039672852 -1361,2016-08-26 17:00:00,45.06700134277344,16.250999450683597,42.88899993896485,13.510000228881836,2.45199990272522,0.0,37.22150039672852 -1362,2016-08-26 18:00:00,41.46500015258789,14.407999992370604,40.31600189208984,12.357000350952148,1.3329999446868896,0.0,36.5620002746582 -1363,2016-08-26 19:00:00,40.54399871826172,13.067999839782717,39.45800018310547,10.90999984741211,0.0,0.0,35.68399810791016 -1364,2016-08-26 20:00:00,44.48099899291992,14.659000396728516,41.46799850463867,11.687000274658203,2.7290000915527344,0.0,35.02450180053711 -1365,2016-08-26 21:00:00,41.46500015258789,12.899999618530272,38.52000045776367,10.31999969482422,3.124000072479248,0.0,34.584999084472656 -1366,2016-08-26 22:00:00,41.46500015258789,13.152000427246096,39.56499862670898,11.071000099182127,2.6010000705718994,0.0,34.14550018310547 -1367,2016-08-26 23:00:00,40.62699890136719,13.487000465393065,37.34000015258789,10.96399974822998,3.0699999332427983,0.0,33.92599868774414 -1368,2016-08-27 00:00:00,36.94200134277344,13.487000465393065,34.365001678466804,11.258000373840332,2.440999984741211,0.0,33.92599868774414 -1369,2016-08-27 01:00:00,36.1879997253418,13.402999877929688,34.41899871826172,11.526000022888184,1.2899999618530271,0.0,33.70600128173828 -1370,2016-08-27 02:00:00,37.277000427246094,13.152000427246096,34.01599884033203,10.642000198364258,2.8469998836517334,0.0,33.48600006103516 -1371,2016-08-27 03:00:00,37.44400024414063,14.241000175476074,35.35699844360352,12.08899974822998,2.494999885559082,0.0,33.04700088500977 -1372,2016-08-27 04:00:00,36.858001708984375,13.487000465393065,35.141998291015625,11.446000099182127,2.494999885559082,0.0,32.60699844360352 -1373,2016-08-27 05:00:00,35.0989990234375,12.984000205993652,32.03300094604492,10.668999671936035,2.611999988555908,0.0,32.167999267578125 -1374,2016-08-27 06:00:00,36.858001708984375,12.984000205993652,35.03499984741211,11.232000350952148,1.2899999618530271,0.0,32.167999267578125 -1375,2016-08-27 07:00:00,37.61199951171875,13.73799991607666,36.42900085449219,11.982000350952148,0.0,0.0,32.167999267578125 -1376,2016-08-27 08:00:00,33.50699996948242,10.805999755859377,31.65800094604492,9.006999969482422,1.2150000333786009,0.0,32.387500762939446 -1377,2016-08-27 09:00:00,36.52299880981445,11.392000198364258,35.70500183105469,9.864999771118164,0.0,0.0,33.70600128173828 -1378,2016-08-27 10:00:00,39.790000915527344,13.56999969482422,38.59999847412109,11.687000274658203,1.22599995136261,0.0,35.903499603271484 -1379,2016-08-27 11:00:00,42.387001037597656,15.161999702453612,41.17399978637695,12.866999626159668,0.0,0.0,38.540000915527344 -1380,2016-08-27 12:00:00,39.62200164794922,12.39799976348877,38.70800018310547,10.614999771118164,0.0,0.0,41.61600112915039 -1381,2016-08-27 13:00:00,38.28200149536133,13.067999839782717,37.4739990234375,11.232000350952148,0.0,0.0,45.13150024414063 -1382,2016-08-27 14:00:00,45.56999969482422,16.419000625610348,44.63199996948242,14.152999877929688,0.0,0.0,44.69250106811523 -1383,2016-08-27 15:00:00,45.90499877929688,16.166999816894528,45.22100067138672,13.80500030517578,0.0,0.0,43.59349822998047 -1384,2016-08-27 16:00:00,48.16699981689453,17.926000595092773,47.178001403808594,15.4399995803833,0.0,0.0,41.61600112915039 -1385,2016-08-27 17:00:00,49.0880012512207,17.423999786376953,48.14300155639648,14.850000381469728,0.0,0.0,40.29800033569336 -1386,2016-08-27 18:00:00,47.999000549316406,16.670000076293945,47.23199844360352,14.18000030517578,0.0,0.0,39.63899993896485 -1387,2016-08-27 19:00:00,44.48099899291992,13.654000282287598,42.70199966430664,11.258000373840332,1.2899999618530271,0.0,38.10049819946289 -1388,2016-08-27 20:00:00,47.83200073242188,15.07800006866455,45.35499954223633,11.954999923706056,2.505000114440918,0.0,37.44100189208984 -1389,2016-08-27 21:00:00,48.33399963378906,16.50200080871582,45.81100082397461,13.321999549865724,2.687000036239624,0.0,36.5620002746582 -1390,2016-08-27 22:00:00,47.24499893188477,16.92099952697754,45.35499954223633,13.993000030517578,2.687000036239624,0.0,35.68399810791016 -1391,2016-08-27 23:00:00,46.99399948120117,16.419000625610348,44.38999938964844,13.321999549865724,2.664999961853028,0.0,35.02450180053711 -1392,2016-08-28 00:00:00,43.97800064086914,16.334999084472653,41.92399978637695,13.697999954223633,2.5480000972747803,0.0,34.14550018310547 -1393,2016-08-28 01:00:00,42.72200012207031,15.581000328063965,41.76300048828125,13.402999877929688,2.5480000972747803,0.0,33.26649856567383 -1394,2016-08-28 02:00:00,43.89400100708008,16.0,41.38800048828125,13.564000129699709,2.5910000801086426,0.0,31.94849967956543 -1395,2016-08-28 03:00:00,42.1349983215332,15.246000289916992,39.512001037597656,12.894000053405762,2.5910000801086426,0.0,31.28899955749512 -1396,2016-08-28 04:00:00,43.30799865722656,16.0,41.14699935913086,13.161999702453612,1.4819999933242798,0.0,30.40999984741211 -1397,2016-08-28 05:00:00,43.64300155639648,15.748000144958494,41.54899978637695,13.348999977111816,2.430999994277954,0.0,29.5310001373291 -1398,2016-08-28 06:00:00,41.38100051879883,14.156999588012695,39.45800018310547,12.062999725341797,2.430999994277954,0.0,29.09199905395508 -1399,2016-08-28 07:00:00,34.261001586914055,9.633000373840332,32.35499954223633,8.095000267028809,1.3539999723434448,0.0,28.65200042724609 -1400,2016-08-28 08:00:00,34.345001220703125,9.968000411987305,32.648998260498054,8.336999893188478,1.3539999723434448,0.0,31.289499282836918 -1401,2016-08-28 09:00:00,42.88899993896485,15.748000144958494,41.790000915527344,13.83199977874756,0.0,0.0,34.14550018310547 -1402,2016-08-28 10:00:00,44.229000091552734,16.0,43.61299896240234,13.939000129699709,0.0,0.0,37.88050079345703 -1403,2016-08-28 11:00:00,43.2239990234375,15.246000289916992,42.13899993896485,13.269000053405762,0.0,0.0,41.39649963378906 -1404,2016-08-28 12:00:00,44.73199844360352,15.413000106811523,44.14899826049805,13.644000053405762,0.0,0.0,43.15449905395508 -1405,2016-08-28 13:00:00,44.0620002746582,15.581000328063965,44.04199981689453,14.019000053405762,0.0,0.0,44.69250106811523 -1406,2016-08-28 14:00:00,44.14599990844727,16.753999710083008,43.58599853515625,14.609000205993652,0.0,0.0,46.66949844360352 -1407,2016-08-28 15:00:00,43.30799865722656,15.83199977874756,42.21900177001953,13.75100040435791,0.0,0.0,48.20800018310547 -1408,2016-08-28 16:00:00,44.900001525878906,15.916000366210938,44.310001373291016,13.725000381469728,0.0,0.0,47.10900115966797 -1409,2016-08-28 17:00:00,45.82099914550781,15.581000328063965,43.80099868774414,13.00100040435791,1.343000054359436,0.0,44.69250106811523 -1410,2016-08-28 18:00:00,42.72200012207031,12.145999908447266,41.30799865722656,10.052000045776367,1.2369999885559082,0.0,42.49499893188477 -1411,2016-08-28 19:00:00,42.21900177001953,12.984000205993652,39.430999755859375,10.401000022888184,2.5799999237060547,0.0,40.73749923706055 -1412,2016-08-28 20:00:00,42.303001403808594,12.815999984741213,39.61899948120117,9.972000122070312,2.5799999237060547,0.0,38.7599983215332 -1413,2016-08-28 21:00:00,44.0620002746582,13.56999969482422,40.93199920654297,10.937000274658203,2.6010000705718994,0.0,37.00199890136719 -1414,2016-08-28 22:00:00,42.97299957275391,14.82699966430664,41.20000076293945,12.973999977111816,1.4709999561309814,0.0,36.12300109863281 -1415,2016-08-28 23:00:00,42.97299957275391,14.91100025177002,39.99399948120117,11.928999900817873,2.687000036239624,0.0,34.80500030517578 -1416,2016-08-29 00:00:00,39.874000549316406,14.072999954223633,38.41299819946289,11.767999649047852,1.3220000267028809,0.0,33.92599868774414 -1417,2016-08-29 01:00:00,40.459999084472656,14.156999588012695,37.52799987792969,11.633999824523926,2.5369999408721924,0.0,33.04700088500977 -1418,2016-08-29 02:00:00,37.77899932861328,13.319000244140623,36.402000427246094,11.232000350952148,1.684000015258789,0.0,32.167999267578125 -1419,2016-08-29 03:00:00,35.76900100708008,11.979000091552734,33.613998413085945,10.024999618530272,2.664999961853028,0.0,31.72900009155273 -1420,2016-08-29 04:00:00,38.03099822998047,13.56999969482422,36.29499816894531,11.151000022888184,2.664999961853028,0.0,30.85000038146973 -1421,2016-08-29 05:00:00,40.29199981689453,13.904999732971191,37.448001861572266,11.446000099182127,2.803999900817871,0.0,30.40999984741211 -1422,2016-08-29 06:00:00,41.96799850463867,14.241000175476074,39.67300033569336,11.928999900817873,2.803999900817871,0.0,29.750999450683597 -1423,2016-08-29 07:00:00,39.874000549316406,12.899999618530272,37.68899917602539,10.69499969482422,2.6440000534057617,0.0,29.750999450683597 -1424,2016-08-29 08:00:00,37.52799987792969,12.984000205993652,36.5629997253418,11.258000373840332,0.0,0.0,31.94849967956543 -1425,2016-08-29 09:00:00,44.3129997253418,15.748000144958494,43.45199966430664,13.75100040435791,0.0,0.0,35.02450180053711 -1426,2016-08-29 10:00:00,39.95700073242188,12.314000129699709,38.78799819946289,10.347000122070312,1.3539999723434448,0.0,38.97949981689453 -1427,2016-08-29 11:00:00,41.04600143432617,12.480999946594238,39.53799819946289,10.560999870300291,0.0,0.0,42.71500015258789 -1428,2016-08-29 12:00:00,44.900001525878906,15.246000289916992,43.854000091552734,13.081000328063965,0.0,0.0,44.69250106811523 -1429,2016-08-29 13:00:00,44.0620002746582,15.07800006866455,43.53300094604492,13.081000328063965,0.0,0.0,46.01050186157226 -1430,2016-08-29 14:00:00,43.72700119018555,15.664999961853027,42.83599853515625,13.482999801635742,0.0,0.0,47.98799896240234 -1431,2016-08-29 15:00:00,42.1349983215332,15.413000106811523,40.85200119018555,13.269000053405762,0.0,0.0,49.5265007019043 -1432,2016-08-29 16:00:00,42.88899993896485,15.581000328063965,42.084999084472656,13.697999954223633,0.0,0.0,47.54850006103516 -1433,2016-08-29 17:00:00,44.81600189208984,15.916000366210938,43.104000091552734,13.564000129699709,1.3860000371932983,0.0,45.35200119018555 -1434,2016-08-29 18:00:00,44.14599990844727,15.246000289916992,42.56800079345703,13.053999900817873,1.503000020980835,0.0,42.93450164794922 -1435,2016-08-29 19:00:00,43.30799865722656,14.743000030517578,39.96699905395508,11.954999923706056,2.505000114440918,0.0,40.73749923706055 -1436,2016-08-29 20:00:00,46.65900039672852,15.748000144958494,44.310001373291016,12.866999626159668,2.505000114440918,0.0,38.7599983215332 -1437,2016-08-29 21:00:00,45.98899841308594,16.166999816894528,43.479000091552734,13.402999877929688,2.7720000743865967,0.0,36.78200149536133 -1438,2016-08-29 22:00:00,44.900001525878906,16.0,41.95100021362305,13.081000328063965,2.7720000743865967,0.0,35.4640007019043 -1439,2016-08-29 23:00:00,44.3129997253418,16.0,41.30799865722656,13.161999702453612,2.494999885559082,0.0,34.365001678466804 -1440,2016-08-30 00:00:00,40.9630012512207,14.407999992370604,39.27000045776367,12.062999725341797,1.3109999895095823,0.0,33.26649856567383 -1441,2016-08-30 01:00:00,41.79999923706055,14.91100025177002,38.73400115966797,12.116000175476074,2.5269999504089355,0.0,32.167999267578125 -1442,2016-08-30 02:00:00,38.78499984741211,13.98900032043457,36.08100128173828,11.71399974822998,2.5269999504089355,0.0,31.72900009155273 -1443,2016-08-30 03:00:00,36.94200134277344,12.39799976348877,33.722000122070305,10.024999618530272,2.5269999504089355,0.0,30.85000038146973 -1444,2016-08-30 04:00:00,39.37099838256836,14.072999954223633,36.9119987487793,11.767999649047852,2.5269999504089355,0.0,29.97100067138672 -1445,2016-08-30 05:00:00,40.79499816894531,14.576000213623049,38.01100158691406,11.902000427246096,2.5269999504089355,0.0,29.31150054931641 -1446,2016-08-30 06:00:00,42.05199813842773,14.82699966430664,39.91400146484375,12.303999900817873,2.505000114440918,0.0,28.871999740600582 -1447,2016-08-30 07:00:00,39.95700073242188,13.98900032043457,38.27899932861328,11.821000099182127,1.2150000333786009,0.0,29.09199905395508 -1448,2016-08-30 08:00:00,37.946998596191406,13.234999656677244,35.946998596191406,10.90999984741211,2.430999994277954,0.0,31.50900077819824 -1449,2016-08-30 09:00:00,38.78499984741211,13.821999549865724,37.98400115966797,12.142999649047852,0.0,0.0,34.584999084472656 -1450,2016-08-30 10:00:00,33.005001068115234,10.052000045776367,32.24700164794922,8.819000244140625,0.0,0.0,38.540000915527344 -1451,2016-08-30 11:00:00,34.17699813842773,11.140999794006348,33.45399856567383,10.024999618530272,0.0,0.0,41.17699813842773 -1452,2016-08-30 12:00:00,36.52299880981445,11.5600004196167,35.678001403808594,10.105999946594238,0.0,0.0,43.15399932861328 -1453,2016-08-30 13:00:00,34.59600067138672,11.140999794006348,33.56100082397461,9.91800022125244,0.0,0.0,44.9119987487793 -1454,2016-08-30 14:00:00,39.790000915527344,13.402999877929688,38.84199905395508,11.392000198364258,0.0,0.0,47.32899856567383 -1455,2016-08-30 15:00:00,42.387001037597656,14.994000434875488,41.20000076293945,12.78600025177002,0.0,0.0,47.98799896240234 -1456,2016-08-30 16:00:00,41.71599960327149,14.82699966430664,40.50299835205078,12.545000076293944,0.0,0.0,45.57099914550781 -1457,2016-08-30 17:00:00,46.74300003051758,15.161999702453612,44.92599868774414,12.571999549865724,1.246999979019165,0.0,43.374000549316406 -1458,2016-08-30 18:00:00,45.56999969482422,14.576000213623049,44.38999938964844,12.142999649047852,1.246999979019165,0.0,41.83549880981445 -1459,2016-08-30 19:00:00,43.55899810791016,12.5649995803833,41.040000915527344,9.972000122070312,2.494999885559082,0.0,40.29800033569336 -1460,2016-08-30 20:00:00,43.81100082397461,12.062999725341797,41.36100006103516,9.461999893188477,2.45199990272522,0.0,38.31999969482422 -1461,2016-08-30 21:00:00,46.2400016784668,14.407999992370604,43.96099853515625,11.767999649047852,2.45199990272522,0.0,36.34249877929688 -1462,2016-08-30 22:00:00,42.05199813842773,13.234999656677244,39.21699905395508,10.722000122070312,2.5799999237060547,0.0,35.24399948120117 -1463,2016-08-30 23:00:00,42.47000122070313,13.821999549865724,40.31600189208984,11.33899974822998,2.5799999237060547,0.0,33.92599868774414 -1464,2016-08-31 00:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1465,2016-08-31 01:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1466,2016-08-31 02:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1467,2016-08-31 03:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1468,2016-08-31 04:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1469,2016-08-31 05:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1470,2016-08-31 06:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1471,2016-08-31 07:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1472,2016-08-31 08:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1473,2016-08-31 09:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1474,2016-08-31 10:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1475,2016-08-31 11:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1476,2016-08-31 12:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1477,2016-08-31 13:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1478,2016-08-31 14:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1479,2016-08-31 15:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1480,2016-08-31 16:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1481,2016-08-31 17:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1482,2016-08-31 18:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1483,2016-08-31 19:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1484,2016-08-31 20:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1485,2016-08-31 21:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1486,2016-08-31 22:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1487,2016-08-31 23:00:00,42.63800048828125,13.402999877929688,39.83300018310547,10.668999671936035,2.5799999237060547,0.0,33.48600006103516 -1488,2016-09-01 00:00:00,41.632999420166016,13.234999656677244,40.12799835205078,11.204999923706056,1.22599995136261,0.0,36.12300109863281 -1489,2016-09-01 01:00:00,41.29800033569336,13.152000427246096,39.08300018310547,10.668999671936035,2.440999984741211,0.0,35.903499603271484 -1490,2016-09-01 02:00:00,38.78499984741211,12.145999908447266,35.86600112915039,9.70400047302246,2.7929999828338623,0.0,35.4640007019043 -1491,2016-09-01 03:00:00,41.2140007019043,12.899999618530272,38.14500045776367,10.239999771118164,2.7929999828338623,0.0,34.80500030517578 -1492,2016-09-01 04:00:00,39.62200164794922,12.314000129699709,37.5009994506836,10.185999870300291,2.760999917984009,0.0,34.584999084472656 -1493,2016-09-01 05:00:00,37.19300079345703,11.810999870300291,36.24100112915039,10.052000045776367,0.0,0.0,34.14550018310547 -1494,2016-09-01 06:00:00,40.125,12.899999618530272,37.39400100708008,10.347000122070312,2.697000026702881,0.0,33.70600128173828 -1495,2016-09-01 07:00:00,40.125,12.815999984741213,37.34000015258789,10.480999946594238,2.697000026702881,0.0,33.70600128173828 -1496,2016-09-01 08:00:00,36.104000091552734,9.717000007629396,34.042999267578125,7.665999889373777,2.697000026702881,0.0,34.804500579833984 -1497,2016-09-01 09:00:00,41.54899978637695,13.904999732971191,40.69100189208984,11.821000099182127,0.0,0.0,36.34299850463867 -1498,2016-09-01 10:00:00,37.69599914550781,10.220000267028809,36.777000427246094,8.550999641418457,0.0,0.0,38.97949981689453 -1499,2016-09-01 11:00:00,39.95700073242188,11.225000381469728,38.92200088500977,9.32800006866455,0.0,0.0,41.83599853515625 -1500,2016-09-01 12:00:00,44.3129997253418,13.654000282287598,43.26399993896485,11.553000450134276,0.0,0.0,44.03350067138672 -1501,2016-09-01 13:00:00,44.73199844360352,14.82699966430664,43.63999938964844,12.571999549865724,0.0,0.0,45.79100036621094 -1502,2016-09-01 14:00:00,44.983001708984375,15.496999740600586,44.33700180053711,13.107999801635742,0.0,0.0,47.98849868774414 -1503,2016-09-01 15:00:00,44.81600189208984,14.994000434875488,43.82699966430664,12.894000053405762,0.0,0.0,48.647499084472656 -1504,2016-09-01 16:00:00,47.66400146484375,16.083000183105472,46.26699829101562,13.321999549865724,1.3329999446868896,0.0,47.32899856567383 -1505,2016-09-01 17:00:00,49.42300033569336,16.0,47.3390007019043,13.081000328063965,1.3329999446868896,0.0,45.13199996948242 -1506,2016-09-01 18:00:00,48.75299835205078,15.748000144958494,47.23199844360352,12.84000015258789,2.611999988555908,0.0,43.8134994506836 -1507,2016-09-01 19:00:00,45.06700134277344,13.067999839782717,42.48699951171875,10.508000373840332,2.5269999504089355,0.0,42.05550003051758 -1508,2016-09-01 20:00:00,49.0880012512207,14.994000434875488,47.23199844360352,12.116000175476074,1.7910000085830688,0.0,40.73749923706055 -1509,2016-09-01 21:00:00,46.2400016784668,13.487000465393065,43.66699981689453,10.803000450134276,3.0169999599456787,0.0,39.85850143432617 -1510,2016-09-01 22:00:00,45.48600006103516,14.324000358581545,43.53300094604492,11.847999572753904,2.8469998836517334,0.0,38.97949981689453 -1511,2016-09-01 23:00:00,42.97299957275391,13.402999877929688,42.21900177001953,11.5,0.0,0.0,38.540000915527344 -1512,2016-09-02 00:00:00,40.79499816894531,12.5649995803833,38.14500045776367,9.972000122070312,2.878999948501587,0.0,38.10049819946289 -1513,2016-09-02 01:00:00,40.9630012512207,12.732999801635742,39.27000045776367,10.588000297546388,2.6549999713897705,0.0,37.22150039672852 -1514,2016-09-02 02:00:00,42.47000122070313,13.402999877929688,39.37799835205078,10.776000022888184,2.6549999713897705,0.0,36.78200149536133 -1515,2016-09-02 03:00:00,41.96799850463867,13.234999656677244,39.37799835205078,10.642000198364258,2.719000101089477,0.0,35.903499603271484 -1516,2016-09-02 04:00:00,39.874000549316406,12.64900016784668,36.59000015258789,10.052000045776367,2.719000101089477,0.0,35.4640007019043 -1517,2016-09-02 05:00:00,40.04100036621094,13.152000427246096,36.80400085449219,10.53499984741211,2.9749999046325684,0.0,34.80500030517578 -1518,2016-09-02 06:00:00,39.790000915527344,12.64900016784668,38.54700088500977,10.560999870300291,1.63100004196167,0.0,34.584999084472656 -1519,2016-09-02 07:00:00,41.71599960327149,13.56999969482422,38.52000045776367,11.043999671936035,2.9530000686645512,0.0,34.365001678466804 -1520,2016-09-02 08:00:00,35.60100173950195,9.717000007629396,34.713001251220696,8.496999740600586,0.0,0.0,35.24449920654297 -1521,2016-09-02 09:00:00,41.71599960327149,14.156999588012695,41.09299850463867,12.222999572753904,0.0,0.0,36.78200149536133 -1522,2016-09-02 10:00:00,39.874000549316406,11.392000198364258,39.13600158691406,9.515999794006348,0.0,0.0,39.85850143432617 -1523,2016-09-02 11:00:00,41.29800033569336,12.062999725341797,40.58399963378906,10.159000396728516,0.0,0.0,43.374000549316406 -1524,2016-09-02 12:00:00,46.49100112915039,14.659000396728516,45.32899856567383,12.383999824523926,0.0,0.0,46.01050186157226 -1525,2016-09-02 13:00:00,47.58000183105469,15.246000289916992,46.5620002746582,12.812999725341797,0.0,0.0,48.20800018310547 -1526,2016-09-02 14:00:00,45.56999969482422,15.07800006866455,44.63199996948242,12.84000015258789,0.0,0.0,48.4275016784668 -1527,2016-09-02 15:00:00,47.66400146484375,16.334999084472653,46.6150016784668,13.965999603271484,0.0,0.0,49.30699920654297 -1528,2016-09-02 16:00:00,47.74800109863281,16.083000183105472,46.749000549316406,13.67099952697754,0.0,0.0,49.30649948120117 -1529,2016-09-02 17:00:00,46.57500076293945,14.82699966430664,44.52399826049805,12.03600025177002,1.2790000438690186,0.0,47.54899978637695 -1530,2016-09-02 18:00:00,49.59099960327149,15.748000144958494,47.04399871826172,12.62600040435791,2.494999885559082,0.0,45.57149887084961 -1531,2016-09-02 19:00:00,44.900001525878906,13.152000427246096,42.70199966430664,10.45400047302246,2.6549999713897705,0.0,43.8134994506836 -1532,2016-09-02 20:00:00,47.915000915527344,15.07800006866455,46.10599899291992,12.652000427246096,1.2690000534057615,0.0,41.83599853515625 -1533,2016-09-02 21:00:00,49.25600051879883,16.250999450683597,47.04399871826172,13.456000328063965,1.7380000352859497,0.0,40.29800033569336 -1534,2016-09-02 22:00:00,42.80500030517578,13.152000427246096,41.06600189208984,11.017000198364258,2.5369999408721924,0.0,39.19900131225586 -1535,2016-09-02 23:00:00,45.1510009765625,14.576000213623049,43.18399810791016,12.008999824523926,2.5369999408721924,0.0,38.31999969482422 -1536,2016-09-03 00:00:00,43.89400100708008,13.904999732971191,40.71799850463867,11.258000373840332,2.5369999408721924,0.0,37.44100189208984 -1537,2016-09-03 01:00:00,41.29800033569336,12.5649995803833,38.62699890136719,10.267000198364258,2.750999927520752,0.0,36.5620002746582 -1538,2016-09-03 02:00:00,41.38100051879883,12.984000205993652,39.29700088500977,10.668999671936035,2.750999927520752,0.0,35.68399810791016 -1539,2016-09-03 03:00:00,41.54899978637695,13.152000427246096,39.08300018310547,10.45400047302246,2.750999927520752,0.0,35.24399948120117 -1540,2016-09-03 04:00:00,37.86299896240234,11.644000053405762,35.303001403808594,9.381999969482422,2.750999927520752,0.0,35.02450180053711 -1541,2016-09-03 05:00:00,37.86299896240234,11.225000381469728,35.4370002746582,9.034000396728516,2.750999927520752,0.0,34.365001678466804 -1542,2016-09-03 06:00:00,43.72700119018555,14.324000358581545,41.46799850463867,11.847999572753904,2.750999927520752,0.0,33.92599868774414 -1543,2016-09-03 07:00:00,41.04600143432617,13.487000465393065,38.198001861572266,10.937000274658203,2.750999927520752,0.0,33.92599868774414 -1544,2016-09-03 08:00:00,38.198001861572266,10.805999755859377,37.76900100708008,11.312000274658203,0.0,0.0,35.903499603271484 -1545,2016-09-03 09:00:00,42.88899993896485,14.576000213623049,41.73699951171875,12.437999725341797,0.0,0.0,38.10049819946289 -1546,2016-09-03 10:00:00,44.39699935913086,14.576000213623049,43.77399826049805,12.652000427246096,0.0,0.0,40.07799911499024 -1547,2016-09-03 11:00:00,46.32400131225586,15.07800006866455,45.30199813842773,12.84000015258789,1.2150000333786009,0.0,43.374000549316406 -1548,2016-09-03 12:00:00,42.88899993896485,13.487000465393065,42.13899993896485,11.607000350952148,0.0,0.0,46.23049926757813 -1549,2016-09-03 13:00:00,43.97800064086914,13.56999969482422,42.83599853515625,11.472999572753904,0.0,0.0,47.76850128173828 -1550,2016-09-03 14:00:00,43.81100082397461,14.407999992370604,42.99599838256836,12.491000175476074,0.0,0.0,48.86700057983398 -1551,2016-09-03 15:00:00,42.387001037597656,13.904999732971191,41.65599822998047,12.008999824523926,0.0,0.0,46.66949844360352 -1552,2016-09-03 16:00:00,44.56499862670898,14.91100025177002,43.29100036621094,12.652000427246096,0.0,0.0,47.10900115966797 -1553,2016-09-03 17:00:00,48.25,15.161999702453612,46.66899871826172,12.383999824523926,1.375,0.0,46.45000076293945 -1554,2016-09-03 18:00:00,50.84700012207031,16.50200080871582,47.79499816894531,13.21500015258789,2.8469998836517334,0.0,45.35200119018555 -1555,2016-09-03 19:00:00,44.39699935913086,12.64900016784668,41.62900161743164,10.024999618530272,2.782999992370605,0.0,43.8134994506836 -1556,2016-09-03 20:00:00,47.999000549316406,13.654000282287598,45.78400039672852,11.017000198364258,2.782999992370605,0.0,41.83599853515625 -1557,2016-09-03 21:00:00,46.49100112915039,14.659000396728516,43.69300079345703,11.526000022888184,2.45199990272522,0.0,40.51800155639648 -1558,2016-09-03 22:00:00,46.65900039672852,14.91100025177002,45.75699996948242,12.678999900817873,0.0,0.0,40.07799911499024 -1559,2016-09-03 23:00:00,44.39699935913086,13.904999732971191,41.97800064086914,11.151000022888184,2.494999885559082,0.0,39.63899993896485 -1560,2016-09-04 00:00:00,42.88899993896485,13.402999877929688,40.39599990844727,10.776000022888184,1.2790000438690186,0.0,38.7599983215332 -1561,2016-09-04 01:00:00,43.391998291015625,13.402999877929688,40.23500061035156,10.74899959564209,2.494999885559082,0.0,37.88100051879883 -1562,2016-09-04 02:00:00,41.88399887084961,13.487000465393065,39.72600173950195,10.883000373840332,3.252000093460083,0.0,37.44100189208984 -1563,2016-09-04 03:00:00,41.38100051879883,12.984000205993652,39.32400131225586,10.642000198364258,3.252000093460083,0.0,37.00199890136719 -1564,2016-09-04 04:00:00,41.632999420166016,13.319000244140623,38.680999755859375,10.69499969482422,2.8250000476837163,0.0,36.78200149536133 -1565,2016-09-04 05:00:00,41.38100051879883,13.487000465393065,39.21699905395508,11.204999923706056,1.493000030517578,0.0,36.78200149536133 -1566,2016-09-04 06:00:00,39.95700073242188,12.229999542236328,36.617000579833984,9.56999969482422,2.45199990272522,0.0,36.5620002746582 -1567,2016-09-04 07:00:00,42.1349983215332,13.402999877929688,39.99399948120117,10.989999771118164,2.2920000553131104,0.0,36.12300109863281 -1568,2016-09-04 08:00:00,37.10900115966797,9.550000190734863,34.6870002746582,7.61299991607666,2.2920000553131104,0.0,36.12300109863281 -1569,2016-09-04 09:00:00,41.54899978637695,12.815999984741213,40.52999877929688,10.937000274658203,0.0,0.0,37.88100051879883 -1570,2016-09-04 10:00:00,45.56999969482422,15.496999740600586,44.28300094604492,13.00100040435791,0.0,0.0,42.05550003051758 -1571,2016-09-04 11:00:00,46.49100112915039,15.413000106811523,45.32899856567383,13.081000328063965,0.0,0.0,44.25299835205078 -1572,2016-09-04 12:00:00,44.3129997253418,13.821999549865724,43.02299880981445,11.66100025177002,0.0,0.0,45.13199996948242 -1573,2016-09-04 13:00:00,44.81600189208984,14.491999626159668,43.88100051879883,12.62600040435791,0.0,0.0,44.69250106811523 -1574,2016-09-04 14:00:00,41.54899978637695,13.56999969482422,40.42300033569336,11.553000450134276,0.0,0.0,44.9119987487793 -1575,2016-09-04 15:00:00,43.97800064086914,14.659000396728516,43.23799896240234,12.706000328063965,0.0,0.0,44.47299957275391 -1576,2016-09-04 16:00:00,38.36600112915039,11.979000091552734,37.52799987792969,10.29300022125244,0.0,0.0,43.374000549316406 -1577,2016-09-04 17:00:00,37.277000427246094,10.722000122070312,35.972999572753906,9.140999794006348,1.2150000333786009,0.0,42.275001525878906 -1578,2016-09-04 18:00:00,47.41299819946289,14.072999954223633,44.28300094604492,11.12399959564209,2.4730000495910645,0.0,41.39599990844727 -1579,2016-09-04 19:00:00,42.88899993896485,12.145999908447266,39.77999877929688,9.220999717712402,2.5480000972747803,0.0,40.29800033569336 -1580,2016-09-04 20:00:00,43.14099884033203,12.145999908447266,40.66400146484375,9.756999969482422,1.5989999771118164,0.0,39.63899993896485 -1581,2016-09-04 21:00:00,37.86299896240234,10.973999977111816,36.9379997253418,9.48900032043457,0.0,0.0,38.7599983215332 -1582,2016-09-04 22:00:00,44.14599990844727,13.73799991607666,41.89699935913086,10.883000373840332,2.440999984741211,0.0,38.31999969482422 -1583,2016-09-04 23:00:00,43.89400100708008,13.319000244140623,41.06600189208984,10.69499969482422,1.8760000467300413,0.0,37.44100189208984 -1584,2016-09-05 00:00:00,37.277000427246094,10.973999977111816,35.089000701904304,8.979999542236328,3.16599988937378,0.0,36.34249877929688 -1585,2016-09-05 01:00:00,40.9630012512207,12.39799976348877,37.68899917602539,9.70400047302246,2.5269999504089355,0.0,35.68399810791016 -1586,2016-09-05 02:00:00,37.36100006103516,10.890000343322754,36.5629997253418,9.435999870300291,0.0,0.0,34.80500030517578 -1587,2016-09-05 03:00:00,39.20299911499024,11.47599983215332,36.1609992980957,9.16800022125244,2.6440000534057617,0.0,33.92599868774414 -1588,2016-09-05 04:00:00,36.104000091552734,10.55500030517578,34.31100082397461,8.979999542236328,2.6760001182556152,0.0,33.48600006103516 -1589,2016-09-05 05:00:00,40.29199981689453,12.314000129699709,37.1259994506836,9.677000045776367,2.6760001182556152,1.2150000333786009,33.04700088500977 -1590,2016-09-05 06:00:00,36.60699844360352,9.885000228881836,34.391998291015625,8.041999816894531,1.3969999551773071,0.0,32.60699844360352 -1591,2016-09-05 07:00:00,39.2869987487793,11.644000053405762,38.43899917602539,9.91800022125244,0.0,0.0,32.387500762939446 -1592,2016-09-05 08:00:00,36.52299880981445,11.140999794006348,35.57099914550781,9.409000396728516,1.2150000333786009,0.0,34.365001678466804 -1593,2016-09-05 09:00:00,39.45500183105469,12.229999542236328,38.14500045776367,10.37399959564209,1.22599995136261,0.0,37.00199890136719 -1594,2016-09-05 10:00:00,39.37099838256836,10.13599967956543,38.33200073242188,8.550999641418457,0.0,0.0,39.19900131225586 -1595,2016-09-05 11:00:00,43.30799865722656,12.314000129699709,42.084999084472656,10.133000373840332,0.0,0.0,42.2755012512207 -1596,2016-09-05 12:00:00,43.97800064086914,11.979000091552734,43.07699966430664,9.94499969482422,0.0,0.0,44.9119987487793 -1597,2016-09-05 13:00:00,44.64799880981445,13.319000244140623,43.69300079345703,11.392000198364258,0.0,0.0,45.13199996948242 -1598,2016-09-05 14:00:00,41.79999923706055,12.5649995803833,40.66400146484375,10.588000297546388,0.0,0.0,44.91249847412109 -1599,2016-09-05 15:00:00,45.31800079345703,14.576000213623049,44.12200164794922,12.222999572753904,0.0,0.0,45.57149887084961 -1600,2016-09-05 16:00:00,46.57500076293945,15.161999702453612,45.40900039672852,12.598999977111816,0.0,0.0,44.03300094604492 -1601,2016-09-05 17:00:00,48.41799926757813,14.82699966430664,47.3390007019043,12.437999725341797,0.0,0.0,44.03300094604492 -1602,2016-09-05 18:00:00,48.83700180053711,14.91100025177002,46.2400016784668,11.875,2.5160000324249268,0.0,43.374000549316406 -1603,2016-09-05 19:00:00,44.48099899291992,11.895000457763672,40.93199920654297,9.0600004196167,2.5160000324249268,0.0,42.275001525878906 -1604,2016-09-05 20:00:00,45.56999969482422,14.072999954223633,43.66699981689453,11.418999671936035,2.5369999408721924,0.0,41.39599990844727 -1605,2016-09-05 21:00:00,49.50699996948242,16.0,46.85599899291992,12.894000053405762,2.5369999408721924,0.0,40.07799911499024 -1606,2016-09-05 22:00:00,46.82600021362305,15.664999961853027,44.229000091552734,12.678999900817873,1.2580000162124634,0.0,39.63899993896485 -1607,2016-09-05 23:00:00,44.14599990844727,14.82699966430664,41.65599822998047,12.196999549865724,2.4730000495910645,0.0,38.7599983215332 -1608,2016-09-06 00:00:00,43.64300155639648,14.491999626159668,41.415000915527344,12.116000175476074,1.3109999895095823,0.0,38.31999969482422 -1609,2016-09-06 01:00:00,39.95700073242188,13.152000427246096,39.45800018310547,11.312000274658203,0.0,0.0,38.31999969482422 -1610,2016-09-06 02:00:00,40.125,13.234999656677244,37.608001708984375,10.668999671936035,1.3329999446868896,0.0,37.88100051879883 -1611,2016-09-06 03:00:00,40.87900161743164,13.234999656677244,38.35900115966797,10.560999870300291,2.5910000801086426,0.0,37.22150039672852 -1612,2016-09-06 04:00:00,40.125,13.402999877929688,38.14500045776367,11.097999572753906,1.2150000333786009,0.0,36.78200149536133 -1613,2016-09-06 05:00:00,40.29199981689453,13.654000282287598,37.84999847412109,11.017000198364258,2.430999994277954,0.0,35.903499603271484 -1614,2016-09-06 06:00:00,41.54899978637695,13.904999732971191,38.65399932861328,11.204999923706056,2.5269999504089355,0.0,34.584999084472656 -1615,2016-09-06 07:00:00,39.11999893188477,12.899999618530272,38.0369987487793,11.071000099182127,0.0,0.0,33.48600006103516 -1616,2016-09-06 08:00:00,35.60100173950195,10.722000122070312,33.238998413085945,8.470999717712402,2.463000059127808,0.0,32.38800048828125 -1617,2016-09-06 09:00:00,40.79499816894531,13.98900032043457,39.64599990844727,12.03600025177002,0.0,0.0,31.728500366210927 -1618,2016-09-06 10:00:00,34.0099983215332,9.717000007629396,33.722000122070305,8.041999816894531,0.0,0.0,31.728500366210927 -1619,2016-09-06 11:00:00,34.512001037597656,9.29800033569336,33.31999969482422,7.800000190734862,1.22599995136261,0.0,31.94849967956543 -1620,2016-09-06 12:00:00,38.617000579833984,11.392000198364258,37.04600143432617,9.409000396728516,1.2150000333786009,0.0,33.26649856567383 -1621,2016-09-06 13:00:00,37.025001525878906,10.638999938964844,35.972999572753906,8.791999816894531,1.22599995136261,0.0,33.70600128173828 -1622,2016-09-06 14:00:00,39.874000549316406,11.309000015258787,38.65399932861328,9.140999794006348,1.2369999885559082,0.0,32.607498168945305 -1623,2016-09-06 15:00:00,40.87900161743164,12.145999908447266,39.72600173950195,9.756999969482422,1.2150000333786009,0.0,31.72900009155273 -1624,2016-09-06 16:00:00,40.87900161743164,12.145999908447266,38.70800018310547,9.623000144958496,1.2150000333786009,0.0,31.28899955749512 -1625,2016-09-06 17:00:00,47.58000183105469,13.56999969482422,44.44400024414063,10.45400047302246,2.440999984741211,0.0,31.28899955749512 -1626,2016-09-06 18:00:00,45.98899841308594,13.152000427246096,44.06900024414063,10.45400047302246,2.440999984741211,0.0,30.85000038146973 -1627,2016-09-06 19:00:00,38.36600112915039,8.628000259399414,35.7859992980957,6.138999938964844,2.440999984741211,0.0,29.97100067138672 -1628,2016-09-06 20:00:00,41.632999420166016,11.140999794006348,38.54700088500977,8.310000419616701,3.6570000648498535,0.0,29.750999450683597 -1629,2016-09-06 21:00:00,40.29199981689453,12.815999984741213,37.6619987487793,10.07900047302246,3.6570000648498535,1.662999987602234,29.5310001373291 -1630,2016-09-06 22:00:00,40.29199981689453,13.152000427246096,37.367000579833984,10.401000022888184,3.2939999103546143,0.0,27.77300071716309 -1631,2016-09-06 23:00:00,37.77899932861328,12.145999908447266,36.08100128173828,9.864999771118164,1.9299999475479128,0.0,27.11450004577637 -1632,2016-09-07 00:00:00,39.0359992980957,12.5649995803833,35.893001556396484,9.838000297546388,3.16599988937378,0.0,26.894500732421875 -1633,2016-09-07 01:00:00,38.53300094604492,12.062999725341797,35.678001403808594,9.677000045776367,2.5269999504089355,0.0,27.333999633789062 -1634,2016-09-07 02:00:00,36.104000091552734,11.140999794006348,33.775001525878906,8.845999717712402,2.5269999504089355,0.0,27.11450004577637 -1635,2016-09-07 03:00:00,37.61199951171875,11.810999870300291,34.49900054931641,9.220999717712402,2.664999961853028,0.0,26.894500732421875 -1636,2016-09-07 04:00:00,33.757999420166016,10.470999717712402,32.38100051879883,8.630999565124513,1.4390000104904177,0.0,27.333999633789062 -1637,2016-09-07 05:00:00,39.0359992980957,12.64900016784668,35.8120002746582,9.972000122070312,2.6760001182556152,0.0,27.77300071716309 -1638,2016-09-07 06:00:00,39.45500183105469,12.5649995803833,36.1609992980957,9.756999969482422,3.0380001068115234,0.0,28.21299934387207 -1639,2016-09-07 07:00:00,38.78499984741211,12.39799976348877,36.96500015258789,10.159000396728516,1.6529999971389768,0.0,28.21299934387207 -1640,2016-09-07 08:00:00,38.78499984741211,11.727999687194824,35.73199844360352,9.32800006866455,1.684000015258789,0.0,28.65200042724609 -1641,2016-09-07 09:00:00,40.29199981689453,13.234999656677244,39.16299819946289,11.366000175476074,1.2580000162124634,0.0,29.09199905395508 -1642,2016-09-07 10:00:00,36.35499954223633,9.885000228881836,34.928001403808594,8.015000343322754,1.246999979019165,0.0,29.97100067138672 -1643,2016-09-07 11:00:00,36.27199935913086,9.29800033569336,35.38399887084961,7.827000141143799,1.246999979019165,0.0,31.72900009155273 -1644,2016-09-07 12:00:00,39.53799819946289,12.39799976348877,38.35900115966797,10.347000122070312,1.2899999618530271,0.0,33.26649856567383 -1645,2016-09-07 13:00:00,40.125,13.402999877929688,38.573001861572266,11.151000022888184,1.246999979019165,0.0,35.02450180053711 -1646,2016-09-07 14:00:00,40.79499816894531,13.654000282287598,39.61899948120117,11.418999671936035,1.246999979019165,0.0,37.44150161743164 -1647,2016-09-07 15:00:00,41.2140007019043,14.156999588012695,40.12799835205078,11.66100025177002,1.246999979019165,0.0,38.759498596191406 -1648,2016-09-07 16:00:00,37.025001525878906,11.309000015258787,35.33000183105469,9.194000244140623,1.246999979019165,0.0,38.97949981689453 -1649,2016-09-07 17:00:00,42.63800048828125,13.98900032043457,40.15499877929688,11.178000450134276,2.463000059127808,0.0,37.6609992980957 -1650,2016-09-07 18:00:00,41.88399887084961,13.319000244140623,38.78799819946289,10.53499984741211,2.463000059127808,0.0,35.903499603271484 -1651,2016-09-07 19:00:00,40.29199981689453,11.979000091552734,37.31399917602539,9.515999794006348,2.463000059127808,0.0,34.584999084472656 -1652,2016-09-07 20:00:00,44.81600189208984,14.576000213623049,41.52199935913086,11.446000099182127,2.463000059127808,0.0,33.70600128173828 -1653,2016-09-07 21:00:00,44.14599990844727,14.407999992370604,41.76300048828125,11.633999824523926,2.463000059127808,0.0,32.82699966430664 -1654,2016-09-07 22:00:00,37.946998596191406,12.39799976348877,35.70500183105469,9.91800022125244,2.463000059127808,0.0,32.387500762939446 -1655,2016-09-07 23:00:00,40.20899963378906,13.234999656677244,37.6349983215332,10.588000297546388,2.4730000495910645,0.0,31.94849967956543 -1656,2016-09-08 00:00:00,40.459999084472656,13.402999877929688,36.9379997253418,10.45400047302246,2.4730000495910645,1.2150000333786009,31.28899955749512 -1657,2016-09-08 01:00:00,35.85300064086914,11.5600004196167,33.21200180053711,9.16800022125244,2.4730000495910645,0.0,30.85000038146973 -1658,2016-09-08 02:00:00,37.36100006103516,12.062999725341797,34.49900054931641,9.302000045776367,2.4730000495910645,0.0,30.40999984741211 -1659,2016-09-08 03:00:00,37.44400024414063,12.062999725341797,35.007999420166016,9.623000144958496,2.4730000495910645,0.0,29.97100067138672 -1660,2016-09-08 04:00:00,36.77399826049805,11.644000053405762,34.31100082397461,9.435999870300291,2.4730000495910645,0.0,29.5310001373291 -1661,2016-09-08 05:00:00,35.85300064086914,11.5600004196167,33.10499954223633,9.274999618530272,2.4730000495910645,0.0,29.5310001373291 -1662,2016-09-08 06:00:00,36.858001708984375,10.973999977111816,34.553001403808594,9.006999969482422,2.4730000495910645,0.0,29.09199905395508 -1663,2016-09-08 07:00:00,39.0359992980957,12.64900016784668,36.617000579833984,10.29300022125244,2.45199990272522,0.0,29.09199905395508 -1664,2016-09-08 08:00:00,36.1879997253418,10.470999717712402,35.33000183105469,8.791999816894531,1.2150000333786009,0.0,30.40999984741211 -1665,2016-09-08 09:00:00,39.874000549316406,11.47599983215332,38.680999755859375,9.54300022125244,0.0,0.0,31.94849967956543 -1666,2016-09-08 10:00:00,36.94200134277344,9.04699993133545,35.8390007019043,6.915999889373777,1.2790000438690186,0.0,34.14550018310547 -1667,2016-09-08 11:00:00,37.52799987792969,8.963000297546387,36.64300155639648,7.372000217437744,1.2150000333786009,0.0,35.68399810791016 -1668,2016-09-08 12:00:00,41.632999420166016,11.895000457763672,40.66400146484375,10.052000045776367,0.0,0.0,38.759498596191406 -1669,2016-09-08 13:00:00,41.96799850463867,12.984000205993652,40.87900161743164,10.883000373840332,1.2369999885559082,0.0,41.83549880981445 -1670,2016-09-08 14:00:00,41.96799850463867,13.234999656677244,40.74499893188477,10.803000450134276,1.2369999885559082,0.0,44.69250106811523 -1671,2016-09-08 15:00:00,42.47000122070313,13.319000244140623,41.11999893188477,10.829999923706056,1.2369999885559082,0.0,44.03300094604492 -1672,2016-09-08 16:00:00,42.88899993896485,12.899999618530272,40.71799850463867,10.185999870300291,1.2150000333786009,0.0,43.8134994506836 -1673,2016-09-08 17:00:00,45.65399932861328,14.324000358581545,43.23799896240234,11.392000198364258,2.440999984741211,0.0,42.05550003051758 -1674,2016-09-08 18:00:00,45.1510009765625,13.402999877929688,42.29899978637695,10.31999969482422,2.440999984741211,0.0,40.29800033569336 -1675,2016-09-08 19:00:00,43.81100082397461,11.5600004196167,40.07500076293945,8.416999816894531,3.720999956130981,1.2369999885559082,38.7599983215332 -1676,2016-09-08 20:00:00,42.21900177001953,10.722000122070312,39.37799835205078,8.069000244140625,2.6440000534057617,0.0,37.00199890136719 -1677,2016-09-08 21:00:00,46.071998596191406,13.73799991607666,42.67499923706055,10.427000045776367,2.6440000534057617,1.3860000371932983,36.12300109863281 -1678,2016-09-08 22:00:00,43.97800064086914,13.319000244140623,40.69100189208984,10.185999870300291,2.6760001182556152,1.2150000333786009,35.4640007019043 -1679,2016-09-08 23:00:00,41.04600143432617,12.145999908447266,38.78799819946289,9.595999717712402,2.687000036239624,0.0,35.24399948120117 -1680,2016-09-09 00:00:00,40.71099853515625,12.39799976348877,37.55500030517578,9.649999618530272,2.687000036239624,1.2150000333786009,34.80500030517578 -1681,2016-09-09 01:00:00,37.61199951171875,10.890000343322754,35.089000701904304,8.52400016784668,2.697000026702881,0.0,34.365001678466804 -1682,2016-09-09 02:00:00,38.53300094604492,10.973999977111816,35.7859992980957,8.36299991607666,2.697000026702881,0.0,33.48600006103516 -1683,2016-09-09 03:00:00,36.02000045776367,10.303000450134276,33.400001525878906,7.907999992370605,2.45199990272522,0.0,32.82699966430664 -1684,2016-09-09 04:00:00,35.518001556396484,10.052000045776367,33.47999954223633,8.041999816894531,2.131999969482422,0.0,32.167999267578125 -1685,2016-09-09 05:00:00,36.43899917602539,10.220000267028809,34.01599884033203,8.175999641418457,2.6549999713897705,0.0,31.72900009155273 -1686,2016-09-09 06:00:00,40.459999084472656,11.225000381469728,37.95700073242188,8.444000244140625,2.6549999713897705,0.0,31.28899955749512 -1687,2016-09-09 07:00:00,39.62200164794922,11.057000160217283,37.2869987487793,8.765000343322754,2.6549999713897705,0.0,31.28899955749512 -1688,2016-09-09 08:00:00,38.198001861572266,9.21399974822998,36.96500015258789,7.425000190734862,1.22599995136261,0.0,33.04700088500977 -1689,2016-09-09 09:00:00,41.88399887084961,12.815999984741213,40.58399963378906,10.480999946594238,1.2369999885559082,0.0,35.4640007019043 -1690,2016-09-09 10:00:00,40.459999084472656,10.55500030517578,39.11000061035156,8.550999641418457,1.2369999885559082,0.0,38.97949981689453 -1691,2016-09-09 11:00:00,42.63800048828125,14.241000175476074,41.60300064086914,11.847999572753904,1.2369999885559082,0.0,41.61600112915039 -1692,2016-09-09 12:00:00,44.3129997253418,15.07800006866455,43.21099853515625,12.866999626159668,0.0,0.0,44.25299835205078 -1693,2016-09-09 13:00:00,37.86299896240234,13.067999839782717,36.7239990234375,11.33899974822998,0.0,0.0,45.57099914550781 -1694,2016-09-09 14:00:00,37.61199951171875,13.73799991607666,36.5629997253418,11.847999572753904,0.0,0.0,46.66949844360352 -1695,2016-09-09 15:00:00,37.52799987792969,10.722000122070312,36.3489990234375,8.73900032043457,1.22599995136261,0.0,46.88949966430664 -1696,2016-09-09 16:00:00,45.4020004272461,14.576000213623049,43.53300094604492,11.902000427246096,1.22599995136261,0.0,45.13199996948242 -1697,2016-09-09 17:00:00,48.66899871826172,16.166999816894528,47.04399871826172,13.107999801635742,1.22599995136261,0.0,43.15449905395508 -1698,2016-09-09 18:00:00,48.91999816894531,16.334999084472653,46.85599899291992,13.135000228881836,1.2580000162124634,0.0,42.275001525878906 -1699,2016-09-09 19:00:00,45.1510009765625,12.732999801635742,42.32600021362305,9.729999542236328,2.6549999713897705,0.0,40.95700073242188 -1700,2016-09-09 20:00:00,48.08300018310547,13.821999549865724,44.65800094604492,10.614999771118164,2.6549999713897705,1.246999979019165,40.07799911499024 -1701,2016-09-09 21:00:00,48.584999084472656,15.496999740600586,45.56999969482422,12.170000076293944,3.134000062942505,0.0,39.63899993896485 -1702,2016-09-09 22:00:00,46.99399948120117,15.329999923706056,44.63199996948242,12.196999549865724,3.134000062942505,0.0,39.19900131225586 -1703,2016-09-09 23:00:00,45.73699951171875,14.91100025177002,42.94300079345703,11.847999572753904,3.134000062942505,0.0,38.7599983215332 -1704,2016-09-10 00:00:00,41.632999420166016,13.152000427246096,39.21699905395508,10.401000022888184,3.134000062942505,0.0,37.6609992980957 -1705,2016-09-10 01:00:00,42.55400085449219,13.487000465393065,39.18999862670898,10.29300022125244,3.134000062942505,1.3650000095367432,37.44150161743164 -1706,2016-09-10 02:00:00,40.9630012512207,12.480999946594238,38.11800003051758,9.784000396728516,3.124000072479248,1.2150000333786009,36.78200149536133 -1707,2016-09-10 03:00:00,42.303001403808594,13.402999877929688,38.73400115966797,10.668999671936035,3.124000072479248,0.0,36.5620002746582 -1708,2016-09-10 04:00:00,41.88399887084961,13.234999656677244,38.30500030517578,10.347000122070312,2.559000015258789,1.2150000333786009,36.34249877929688 -1709,2016-09-10 05:00:00,41.13000106811523,13.319000244140623,38.680999755859375,10.776000022888184,2.6549999713897705,0.0,35.68399810791016 -1710,2016-09-10 06:00:00,41.13000106811523,13.402999877929688,38.14500045776367,10.588000297546388,3.869999885559082,0.0,35.24399948120117 -1711,2016-09-10 07:00:00,42.63800048828125,14.072999954223633,40.66400146484375,11.847999572753904,2.45199990272522,0.0,35.02450180053711 -1712,2016-09-10 08:00:00,36.68999862670898,10.220000267028809,34.1510009765625,8.203000068664549,2.45199990272522,0.0,34.804500579833984 -1713,2016-09-10 09:00:00,38.617000579833984,10.805999755859377,37.34000015258789,8.578000068664549,1.2150000333786009,0.0,34.804500579833984 -1714,2016-09-10 10:00:00,41.71599960327149,15.83199977874756,39.86000061035156,13.269000053405762,1.2150000333786009,0.0,36.34249877929688 -1715,2016-09-10 11:00:00,46.40700149536133,8.878999710083008,44.52399826049805,6.031000137329103,1.2150000333786009,0.0,37.44100189208984 -1716,2016-09-10 12:00:00,45.31800079345703,7.874000072479247,44.12200164794922,5.548999786376953,1.2150000333786009,0.0,38.97949981689453 -1717,2016-09-10 13:00:00,43.391998291015625,7.539000034332275,42.29899978637695,5.227000236511231,1.2150000333786009,0.0,41.39599990844727 -1718,2016-09-10 14:00:00,45.56999969482422,8.125,44.229000091552734,5.602000236511231,1.2150000333786009,0.0,43.59400177001953 -1719,2016-09-10 15:00:00,46.57500076293945,9.04699993133545,44.97999954223633,6.326000213623048,1.2150000333786009,0.0,45.57149887084961 -1720,2016-09-10 16:00:00,46.32400131225586,8.711999893188478,43.77399826049805,5.978000164031982,2.7720000743865967,0.0,44.69250106811523 -1721,2016-09-10 17:00:00,48.83700180053711,8.963000297546387,46.18600082397461,6.164999961853027,2.7720000743865967,0.0,42.2755012512207 -1722,2016-09-10 18:00:00,40.87900161743164,5.52899980545044,40.66400146484375,4.0209999084472665,0.0,0.0,39.41899871826172 -1723,2016-09-10 19:00:00,44.81600189208984,12.480999946594238,40.98600006103516,9.0600004196167,3.9660000801086426,1.2150000333786009,37.88050079345703 -1724,2016-09-10 20:00:00,45.4020004272461,12.732999801635742,43.21099853515625,10.052000045776367,2.750999927520752,0.0,37.22150039672852 -1725,2016-09-10 21:00:00,47.58000183105469,15.581000328063965,44.63199996948242,12.383999824523926,2.750999927520752,0.0,36.5625 -1726,2016-09-10 22:00:00,45.06700134277344,14.91100025177002,41.97800064086914,11.633999824523926,2.750999927520752,1.2150000333786009,36.34249877929688 -1727,2016-09-10 23:00:00,41.46500015258789,13.821999549865724,37.84999847412109,10.855999946594238,2.750999927520752,1.2150000333786009,36.34249877929688 -1728,2016-09-11 00:00:00,44.229000091552734,14.743000030517578,40.71799850463867,11.446000099182127,2.750999927520752,1.2690000534057615,36.34249877929688 -1729,2016-09-11 01:00:00,40.125,13.402999877929688,38.49300003051758,11.017000198364258,2.750999927520752,0.0,36.12300109863281 -1730,2016-09-11 02:00:00,41.71599960327149,13.821999549865724,38.73400115966797,11.043999671936035,2.750999927520752,1.2150000333786009,35.903499603271484 -1731,2016-09-11 03:00:00,38.617000579833984,12.815999984741213,36.21500015258789,10.239999771118164,3.252000093460083,0.0,35.4640007019043 -1732,2016-09-11 04:00:00,41.79999923706055,14.156999588012695,38.11800003051758,11.043999671936035,3.252000093460083,1.2150000333786009,35.24399948120117 -1733,2016-09-11 05:00:00,40.71099853515625,13.654000282287598,37.5009994506836,10.69499969482422,3.240999937057495,1.2150000333786009,35.02450180053711 -1734,2016-09-11 06:00:00,41.13000106811523,13.319000244140623,39.80699920654297,11.312000274658203,1.5889999866485596,0.0,34.584999084472656 -1735,2016-09-11 07:00:00,42.21900177001953,13.56999969482422,39.055999755859375,10.642000198364258,2.8250000476837163,1.22599995136261,34.584999084472656 -1736,2016-09-11 08:00:00,34.93099975585937,9.717000007629396,33.613998413085945,8.121999740600586,1.4390000104904177,0.0,34.365001678466804 -1737,2016-09-11 09:00:00,38.36600112915039,12.314000129699709,37.15299987792969,10.427000045776367,1.4390000104904177,0.0,34.584999084472656 -1738,2016-09-11 10:00:00,40.71099853515625,12.732999801635742,39.27000045776367,10.53499984741211,1.4390000104904177,0.0,34.80500030517578 -1739,2016-09-11 11:00:00,44.56499862670898,14.407999992370604,42.91600036621094,12.008999824523926,1.4390000104904177,0.0,35.02450180053711 -1740,2016-09-11 12:00:00,41.54899978637695,13.487000465393065,40.66400146484375,11.5,1.4390000104904177,0.0,35.4640007019043 -1741,2016-09-11 13:00:00,40.04100036621094,12.899999618530272,38.52000045776367,10.883000373840332,1.3650000095367432,0.0,35.68349838256836 -1742,2016-09-11 14:00:00,41.88399887084961,14.072999954223633,40.77199935913086,11.875,1.22599995136261,0.0,35.68349838256836 -1743,2016-09-11 15:00:00,42.80500030517578,14.324000358581545,41.54899978637695,11.982000350952148,1.2150000333786009,0.0,36.34249877929688 -1744,2016-09-11 16:00:00,43.05699920654297,14.072999954223633,41.790000915527344,11.902000427246096,1.2150000333786009,0.0,35.903499603271484 -1745,2016-09-11 17:00:00,36.1879997253418,10.722000122070312,34.87400054931641,9.006999969482422,1.2150000333786009,0.0,34.365501403808594 -1746,2016-09-11 18:00:00,36.77399826049805,11.392000198364258,34.12400054931641,9.194000244140623,2.430999994277954,0.0,33.70600128173828 -1747,2016-09-11 19:00:00,41.38100051879883,11.5600004196167,38.49300003051758,8.791999816894531,3.486000061035156,0.0,32.60699844360352 -1748,2016-09-11 20:00:00,41.632999420166016,11.979000091552734,38.49300003051758,9.006999969482422,3.4649999141693115,1.2790000438690186,31.94849967956543 -1749,2016-09-11 21:00:00,46.2400016784668,15.329999923706056,43.58599853515625,12.222999572753904,2.740000009536743,0.0,31.069499969482425 -1750,2016-09-11 22:00:00,43.2239990234375,14.241000175476074,40.95899963378906,11.579999923706056,2.803999900817871,0.0,31.069499969482425 -1751,2016-09-11 23:00:00,39.20299911499024,12.64900016784668,35.678001403808594,9.972000122070312,2.740000009536743,1.3860000371932983,31.069499969482425 -1752,2016-09-12 00:00:00,38.86800003051758,12.229999542236328,35.35699844360352,9.354999542236328,2.8250000476837163,1.3650000095367432,30.6299991607666 -1753,2016-09-12 01:00:00,38.86800003051758,12.984000205993652,37.4739990234375,10.855999946594238,1.2580000162124634,0.0,30.6299991607666 -1754,2016-09-12 02:00:00,39.874000549316406,12.899999618530272,36.321998596191406,10.133000373840332,2.494999885559082,1.22599995136261,30.40999984741211 -1755,2016-09-12 03:00:00,39.70600128173828,12.984000205993652,36.5359992980957,10.213000297546388,2.6549999713897705,1.2150000333786009,29.5310001373291 -1756,2016-09-12 04:00:00,38.53300094604492,12.062999725341797,35.597999572753906,9.595999717712402,2.6549999713897705,0.0,29.09199905395508 -1757,2016-09-12 05:00:00,41.2140007019043,13.487000465393065,37.39400100708008,10.347000122070312,2.6549999713897705,1.2150000333786009,28.65200042724609 -1758,2016-09-12 06:00:00,41.96799850463867,12.984000205993652,39.16299819946289,10.239999771118164,2.5160000324249268,0.0,28.65200042724609 -1759,2016-09-12 07:00:00,40.125,12.815999984741213,37.93000030517578,10.427000045776367,2.5160000324249268,0.0,28.65200042724609 -1760,2016-09-12 08:00:00,38.617000579833984,12.314000129699709,37.31399917602539,10.159000396728516,0.0,0.0,30.40999984741211 -1761,2016-09-12 09:00:00,38.70100021362305,12.815999984741213,37.6619987487793,10.642000198364258,0.0,0.0,32.387500762939446 -1762,2016-09-12 10:00:00,38.03099822998047,11.392000198364258,37.15299987792969,9.677000045776367,0.0,0.0,35.4640007019043 -1763,2016-09-12 11:00:00,43.2239990234375,12.899999618530272,41.81700134277344,10.508000373840332,1.4390000104904177,0.0,38.97949981689453 -1764,2016-09-12 12:00:00,44.0620002746582,13.98900032043457,43.104000091552734,11.633999824523926,0.0,0.0,41.61650085449219 -1765,2016-09-12 13:00:00,46.15599822998047,15.748000144958494,44.73899841308594,12.920000076293944,1.2150000333786009,0.0,43.59349822998047 -1766,2016-09-12 14:00:00,44.983001708984375,15.581000328063965,43.63999938964844,12.920000076293944,1.2150000333786009,0.0,44.47249984741211 -1767,2016-09-12 15:00:00,41.29800033569336,13.98900032043457,39.99399948120117,11.633999824523926,1.2150000333786009,0.0,45.35150146484375 -1768,2016-09-12 16:00:00,44.14599990844727,14.82699966430664,43.23799896240234,12.357000350952148,1.3009999990463257,0.0,44.25299835205078 -1769,2016-09-12 17:00:00,48.584999084472656,16.083000183105472,47.09799957275391,12.866999626159668,1.2150000333786009,0.0,42.49499893188477 -1770,2016-09-12 18:00:00,46.2400016784668,14.491999626159668,43.37200164794922,11.687000274658203,2.45199990272522,0.0,40.73749923706055 -1771,2016-09-12 19:00:00,43.64300155639648,12.480999946594238,40.52999877929688,9.32800006866455,2.494999885559082,1.3109999895095823,38.97949981689453 -1772,2016-09-12 20:00:00,48.66899871826172,16.419000625610348,45.40900039672852,12.84000015258789,3.7100000381469727,1.2369999885559082,37.88100051879883 -1773,2016-09-12 21:00:00,46.74300003051758,15.413000106811523,43.26399993896485,11.954999923706056,2.483999967575073,1.2580000162124634,37.44100189208984 -1774,2016-09-12 22:00:00,43.72700119018555,14.743000030517578,41.25400161743164,11.795000076293944,2.4730000495910645,1.246999979019165,36.78200149536133 -1775,2016-09-12 23:00:00,42.80500030517578,13.73799991607666,40.04800033569336,10.90999984741211,3.688999891281128,0.0,36.5620002746582 -1776,2016-09-13 00:00:00,41.71599960327149,13.152000427246096,38.680999755859375,10.347000122070312,2.5799999237060547,0.0,35.903499603271484 -1777,2016-09-13 01:00:00,39.874000549316406,12.480999946594238,37.2869987487793,10.159000396728516,2.5799999237060547,0.0,34.80500030517578 -1778,2016-09-13 02:00:00,39.70600128173828,12.984000205993652,37.2869987487793,10.37399959564209,2.5799999237060547,0.0,33.92599868774414 -1779,2016-09-13 03:00:00,38.36600112915039,12.64900016784668,35.33000183105469,9.94499969482422,2.5799999237060547,0.0,33.26649856567383 -1780,2016-09-13 04:00:00,39.45500183105469,13.319000244140623,36.617000579833984,10.427000045776367,2.5799999237060547,0.0,33.04700088500977 -1781,2016-09-13 05:00:00,39.2869987487793,12.64900016784668,36.59000015258789,10.185999870300291,2.5799999237060547,0.0,32.82699966430664 -1782,2016-09-13 06:00:00,41.04600143432617,12.5649995803833,38.89500045776367,10.133000373840332,2.483999967575073,0.0,32.167999267578125 -1783,2016-09-13 07:00:00,40.29199981689453,12.815999984741213,38.06399917602539,10.401000022888184,2.483999967575073,0.0,32.167999267578125 -1784,2016-09-13 08:00:00,36.52299880981445,9.633000373840332,35.007999420166016,7.747000217437744,2.483999967575073,0.0,33.26649856567383 -1785,2016-09-13 09:00:00,40.62699890136719,11.810999870300291,39.08300018310547,9.354999542236328,1.2369999885559082,0.0,35.24399948120117 -1786,2016-09-13 10:00:00,35.349998474121094,9.130999565124512,33.667999267578125,7.184000015258789,1.2369999885559082,0.0,38.759498596191406 -1787,2016-09-13 11:00:00,37.10900115966797,11.392000198364258,35.518001556396484,9.54300022125244,1.2369999885559082,0.0,41.17699813842773 -1788,2016-09-13 12:00:00,36.1879997253418,10.805999755859377,34.766998291015625,8.819000244140625,1.2369999885559082,0.0,43.59400177001953 -1789,2016-09-13 13:00:00,39.790000915527344,13.067999839782717,38.97600173950195,11.043999671936035,0.0,0.0,45.13150024414063 -1790,2016-09-13 14:00:00,36.52299880981445,11.140999794006348,34.820999145507805,9.006999969482422,1.2150000333786009,0.0,46.66949844360352 -1791,2016-09-13 15:00:00,38.198001861572266,11.895000457763672,37.0989990234375,9.677000045776367,1.2150000333786009,0.0,47.32899856567383 -1792,2016-09-13 16:00:00,43.30799865722656,13.654000282287598,41.76300048828125,11.017000198364258,1.2150000333786009,0.0,45.57099914550781 -1793,2016-09-13 17:00:00,45.23500061035156,13.487000465393065,42.43399810791016,10.45400047302246,2.430999994277954,1.2580000162124634,43.374000549316406 -1794,2016-09-13 18:00:00,49.3390007019043,14.994000434875488,45.67699813842773,11.232000350952148,3.7100000381469727,1.2369999885559082,41.17649841308594 -1795,2016-09-13 19:00:00,44.81600189208984,12.899999618530272,42.35300064086914,9.784000396728516,3.7100000381469727,1.5140000581741333,39.85850143432617 -1796,2016-09-13 20:00:00,48.91999816894531,14.241000175476074,44.81900024414063,10.267000198364258,3.1559998989105225,1.22599995136261,39.19900131225586 -1797,2016-09-13 21:00:00,46.99399948120117,13.402999877929688,43.74700164794922,10.024999618530272,3.1559998989105225,1.2580000162124634,38.31999969482422 -1798,2016-09-13 22:00:00,46.2400016784668,14.156999588012695,43.31800079345703,10.883000373840332,3.1559998989105225,1.2369999885559082,37.6609992980957 -1799,2016-09-13 23:00:00,42.63800048828125,12.899999618530272,38.94900131225586,9.32800006866455,3.1559998989105225,1.3220000267028809,37.22150039672852 -1800,2016-09-14 00:00:00,39.2869987487793,11.140999794006348,37.0989990234375,8.657999992370605,3.1559998989105225,0.0,36.5625 -1801,2016-09-14 01:00:00,39.790000915527344,11.727999687194824,37.95700073242188,9.248000144958496,1.7480000257492063,0.0,36.12300109863281 -1802,2016-09-14 02:00:00,39.20299911499024,11.5600004196167,37.71599960327149,9.194000244140623,1.7480000257492063,0.0,35.24399948120117 -1803,2016-09-14 03:00:00,39.62200164794922,11.057000160217283,37.34000015258789,8.416999816894531,1.7480000257492063,0.0,34.365001678466804 -1804,2016-09-14 04:00:00,37.946998596191406,10.55500030517578,36.5629997253418,8.711999893188478,1.7480000257492063,0.0,33.48600006103516 -1805,2016-09-14 05:00:00,40.79499816894531,12.145999908447266,38.89500045776367,9.649999618530272,2.483999967575073,0.0,32.60699844360352 -1806,2016-09-14 06:00:00,39.62200164794922,11.057000160217283,38.49300003051758,9.0600004196167,2.483999967575073,0.0,32.167999267578125 -1807,2016-09-14 07:00:00,40.62699890136719,12.062999725341797,39.59199905395508,10.239999771118164,1.2150000333786009,0.0,31.94849967956543 -1808,2016-09-14 08:00:00,38.03099822998047,10.470999717712402,36.5629997253418,8.711999893188478,1.2150000333786009,0.0,32.60699844360352 -1809,2016-09-14 09:00:00,43.391998291015625,13.904999732971191,41.92399978637695,11.767999649047852,1.22599995136261,0.0,34.365001678466804 -1810,2016-09-14 10:00:00,41.46500015258789,12.39799976348877,40.31600189208984,10.07900047302246,1.2150000333786009,0.0,34.80500030517578 -1811,2016-09-14 11:00:00,42.88899993896485,11.810999870300291,41.57600021362305,9.409000396728516,1.2150000333786009,0.0,35.4640007019043 -1812,2016-09-14 12:00:00,41.632999420166016,10.973999977111816,40.66400146484375,8.925999641418457,0.0,0.0,36.5620002746582 -1813,2016-09-14 13:00:00,42.97299957275391,12.984000205993652,41.790000915527344,10.722000122070312,1.22599995136261,0.0,35.90299987792969 -1814,2016-09-14 14:00:00,39.37099838256836,11.309000015258787,37.55500030517578,9.302000045776367,1.2369999885559082,0.0,35.903499603271484 -1815,2016-09-14 15:00:00,38.86800003051758,11.392000198364258,37.79600143432617,9.48900032043457,0.0,0.0,34.584999084472656 -1816,2016-09-14 16:00:00,42.303001403808594,12.5649995803833,40.95899963378906,10.560999870300291,1.22599995136261,0.0,34.365001678466804 -1817,2016-09-14 17:00:00,43.97800064086914,12.899999618530272,42.459999084472656,10.347000122070312,1.2150000333786009,0.0,33.70600128173828 -1818,2016-09-14 18:00:00,46.2400016784668,13.402999877929688,43.21099853515625,10.74899959564209,2.45199990272522,0.0,33.04700088500977 -1819,2016-09-14 19:00:00,39.874000549316406,9.717000007629396,38.38600158691406,7.71999979019165,2.45199990272522,0.0,32.387500762939446 -1820,2016-09-14 20:00:00,43.64300155639648,13.152000427246096,40.10100173950195,9.784000396728516,3.677999973297119,1.22599995136261,32.167999267578125 -1821,2016-09-14 21:00:00,45.90499877929688,13.98900032043457,42.43399810791016,10.427000045776367,3.4649999141693115,1.2899999618530271,31.94849967956543 -1822,2016-09-14 22:00:00,41.88399887084961,13.402999877929688,39.18999862670898,10.239999771118164,3.4649999141693115,1.2899999618530271,31.94849967956543 -1823,2016-09-14 23:00:00,41.632999420166016,12.984000205993652,38.76100158691406,10.159000396728516,3.101999998092652,0.0,31.94849967956543 -1824,2016-09-15 00:00:00,39.62200164794922,11.810999870300291,37.233001708984375,9.515999794006348,1.715999960899353,0.0,31.72900009155273 -1825,2016-09-15 01:00:00,37.52799987792969,10.805999755859377,34.01599884033203,8.14900016784668,3.0699999332427983,1.4500000476837158,31.72900009155273 -1826,2016-09-15 02:00:00,39.37099838256836,11.727999687194824,36.26800155639648,9.086999893188477,2.7290000915527344,0.0,31.50900077819824 -1827,2016-09-15 03:00:00,36.52299880981445,10.470999717712402,32.97100067138672,7.934999942779541,2.7290000915527344,1.2150000333786009,30.6299991607666 -1828,2016-09-15 04:00:00,36.68999862670898,10.55500030517578,34.042999267578125,8.336999893188478,2.7290000915527344,0.0,29.09149932861328 -1829,2016-09-15 05:00:00,38.03099822998047,11.140999794006348,34.820999145507805,8.685000419616701,2.5910000801086426,0.0,29.09149932861328 -1830,2016-09-15 06:00:00,38.86800003051758,11.140999794006348,36.1609992980957,8.765000343322754,2.5910000801086426,0.0,29.5310001373291 -1831,2016-09-15 07:00:00,39.53799819946289,11.727999687194824,36.9119987487793,9.302000045776367,2.5910000801086426,0.0,29.750999450683597 -1832,2016-09-15 08:00:00,36.52299880981445,9.717000007629396,35.38399887084961,8.310000419616701,1.3109999895095823,0.0,30.19050025939941 -1833,2016-09-15 09:00:00,39.45500183105469,11.225000381469728,38.38600158691406,9.54300022125244,1.2150000333786009,0.0,28.65200042724609 -1834,2016-09-15 10:00:00,34.0099983215332,7.037000179290772,33.077999114990234,5.896999835968018,0.0,0.0,27.55349922180176 -1835,2016-09-15 11:00:00,35.93600082397461,14.072999954223633,33.775001525878906,7.692999839782715,0.0,0.0,27.11450004577637 -1836,2016-09-15 12:00:00,35.43399810791016,10.55500030517578,33.88199996948242,8.979999542236328,2.7929999828338623,0.0,27.11450004577637 -1837,2016-09-15 13:00:00,38.11399841308594,11.057000160217283,36.24100112915039,9.006999969482422,1.503000020980835,0.0,27.77300071716309 -1838,2016-09-15 14:00:00,38.36600112915039,11.140999794006348,36.59000015258789,9.354999542236328,1.503000020980835,0.0,27.993000030517567 -1839,2016-09-15 15:00:00,38.44900131225586,11.47599983215332,37.15299987792969,9.810999870300291,1.503000020980835,0.0,27.993000030517567 -1840,2016-09-15 16:00:00,40.459999084472656,11.895000457763672,38.54700088500977,9.810999870300291,1.503000020980835,0.0,27.993000030517567 -1841,2016-09-15 17:00:00,41.13000106811523,11.47599983215332,38.73400115966797,9.595999717712402,2.719000101089477,0.0,27.773500442504893 -1842,2016-09-15 18:00:00,42.303001403808594,12.229999542236328,38.81499862670898,9.70400047302246,2.719000101089477,0.0,27.773500442504893 -1843,2016-09-15 19:00:00,35.60100173950195,9.381999969482422,32.863998413085945,7.532000064849853,2.719000101089477,0.0,27.773500442504893 -1844,2016-09-15 20:00:00,40.04100036621094,11.895000457763672,38.0369987487793,9.972000122070312,2.719000101089477,0.0,27.333999633789062 -1845,2016-09-15 21:00:00,39.11999893188477,11.644000053405762,35.70500183105469,9.274999618530272,2.719000101089477,0.0,27.11450004577637 -1846,2016-09-15 22:00:00,39.37099838256836,11.225000381469728,36.321998596191406,9.006999969482422,2.719000101089477,0.0,26.894500732421875 -1847,2016-09-15 23:00:00,36.104000091552734,10.13599967956543,34.257999420166016,8.604999542236326,2.719000101089477,0.0,26.67499923706055 -1848,2016-09-16 00:00:00,35.43399810791016,10.470999717712402,32.59600067138672,8.444000244140625,2.719000101089477,0.0,26.67499923706055 -1849,2016-09-16 01:00:00,35.43399810791016,10.38700008392334,32.514999389648445,8.282999992370605,2.719000101089477,0.0,26.67499923706055 -1850,2016-09-16 02:00:00,32.75299835205078,8.963000297546387,30.45100021362305,7.34499979019165,2.719000101089477,0.0,25.576499938964844 -1851,2016-09-16 03:00:00,33.674999237060554,9.465999603271484,31.363000869750977,7.907999992370605,2.719000101089477,0.0,25.35650062561035 -1852,2016-09-16 04:00:00,33.50699996948242,10.052000045776367,31.22900009155273,8.310000419616701,2.719000101089477,0.0,24.91699981689453 -1853,2016-09-16 05:00:00,35.685001373291016,11.392000198364258,32.78300094604492,9.409000396728516,2.719000101089477,0.0,24.91699981689453 -1854,2016-09-16 06:00:00,36.858001708984375,11.309000015258787,33.64099884033203,9.32800006866455,2.719000101089477,0.0,24.477500915527344 -1855,2016-09-16 07:00:00,35.26599884033203,10.805999755859377,33.775001525878906,9.381999969482422,2.719000101089477,0.0,24.477500915527344 -1856,2016-09-16 08:00:00,35.60100173950195,10.303000450134276,32.435001373291016,8.416999816894531,2.719000101089477,0.0,24.257999420166016 -1857,2016-09-16 09:00:00,38.03099822998047,11.895000457763672,36.42900085449219,10.37399959564209,1.4819999933242798,0.0,24.257999420166016 -1858,2016-09-16 10:00:00,40.20899963378906,12.39799976348877,38.198001861572266,10.722000122070312,1.4819999933242798,0.0,24.477500915527344 -1859,2016-09-16 11:00:00,40.29199981689453,12.732999801635742,38.70800018310547,10.96399974822998,1.4819999933242798,0.0,24.91699981689453 -1860,2016-09-16 12:00:00,39.790000915527344,12.732999801635742,38.38600158691406,10.855999946594238,1.4819999933242798,0.0,25.35650062561035 -1861,2016-09-16 13:00:00,37.61199951171875,11.644000053405762,36.5629997253418,10.239999771118164,1.4819999933242798,0.0,25.79599952697754 -1862,2016-09-16 14:00:00,34.847000122070305,10.052000045776367,33.31999969482422,8.711999893188478,1.4819999933242798,0.0,26.23550033569336 -1863,2016-09-16 15:00:00,36.60699844360352,11.057000160217283,35.38399887084961,9.677000045776367,1.4819999933242798,0.0,26.67499923706055 -1864,2016-09-16 16:00:00,39.37099838256836,12.64900016784668,38.01100158691406,10.937000274658203,1.4819999933242798,0.0,26.45499992370605 -1865,2016-09-16 17:00:00,42.1349983215332,12.899999618530272,38.680999755859375,10.31999969482422,2.7079999446868896,0.0,26.23550033569336 -1866,2016-09-16 18:00:00,43.14099884033203,13.654000282287598,39.512001037597656,11.017000198364258,3.954999923706055,0.0,26.67499923706055 -1867,2016-09-16 19:00:00,38.70100021362305,11.140999794006348,35.4640007019043,8.578000068664549,3.869999885559082,1.2369999885559082,27.333999633789062 -1868,2016-09-16 20:00:00,41.13000106811523,12.732999801635742,37.71599960327149,10.347000122070312,3.6570000648498535,0.0,27.993000030517567 -1869,2016-09-16 21:00:00,41.88399887084961,12.984000205993652,37.98400115966797,10.347000122070312,4.872000217437744,0.0,28.65200042724609 -1870,2016-09-16 22:00:00,40.62699890136719,13.067999839782717,36.858001708984375,10.45400047302246,3.5820000171661377,1.2150000333786009,29.09199905395508 -1871,2016-09-16 23:00:00,38.95199966430664,12.815999984741213,34.391998291015625,9.99899959564209,4.914999961853027,1.4390000104904177,29.5310001373291 -1872,2016-09-17 00:00:00,38.36600112915039,12.145999908447266,34.01599884033203,9.56999969482422,3.4649999141693115,0.0,29.750999450683597 -1873,2016-09-17 01:00:00,37.025001525878906,11.225000381469728,33.025001525878906,8.979999542236328,2.803999900817871,0.0,29.97100067138672 -1874,2016-09-17 02:00:00,37.69599914550781,11.47599983215332,34.01599884033203,9.11400032043457,4.030000209808351,1.2150000333786009,29.97100067138672 -1875,2016-09-17 03:00:00,35.60100173950195,10.722000122070312,31.97900009155273,8.444000244140625,3.4440000057220463,0.0,29.97100067138672 -1876,2016-09-17 04:00:00,36.858001708984375,11.47599983215332,33.13199996948242,9.140999794006348,4.679999828338623,0.0,29.750999450683597 -1877,2016-09-17 05:00:00,37.10900115966797,11.225000381469728,34.17699813842773,9.274999618530272,3.4219999313354488,0.0,29.5310001373291 -1878,2016-09-17 06:00:00,37.025001525878906,11.810999870300291,34.17699813842773,9.838000297546388,3.4219999313354488,0.0,29.5310001373291 -1879,2016-09-17 07:00:00,38.28200149536133,11.979000091552734,34.65999984741211,9.409000396728516,3.4219999313354488,0.0,29.5310001373291 -1880,2016-09-17 08:00:00,36.104000091552734,10.890000343322754,32.91699981689453,8.657999992370605,3.2090001106262207,0.0,30.19050025939941 -1881,2016-09-17 09:00:00,37.277000427246094,11.979000091552734,35.49100112915039,10.427000045776367,1.7799999713897705,0.0,31.72900009155273 -1882,2016-09-17 10:00:00,39.2869987487793,11.644000053405762,37.76900100708008,9.864999771118164,1.7799999713897705,0.0,34.14550018310547 -1883,2016-09-17 11:00:00,40.125,12.314000129699709,38.11800003051758,10.45400047302246,1.7799999713897705,0.0,37.44150161743164 -1884,2016-09-17 12:00:00,40.125,11.979000091552734,38.38600158691406,10.185999870300291,1.7799999713897705,0.0,38.10049819946289 -1885,2016-09-17 13:00:00,40.29199981689453,13.234999656677244,38.76100158691406,11.33899974822998,1.7799999713897705,0.0,38.10049819946289 -1886,2016-09-17 14:00:00,39.37099838256836,12.899999618530272,37.84999847412109,11.12399959564209,1.7799999713897705,0.0,37.6609992980957 -1887,2016-09-17 15:00:00,36.52299880981445,11.140999794006348,34.87400054931641,9.354999542236328,1.7799999713897705,0.0,39.19900131225586 -1888,2016-09-17 16:00:00,42.80500030517578,13.654000282287598,40.95899963378906,11.366000175476074,1.7799999713897705,0.0,39.41899871826172 -1889,2016-09-17 17:00:00,45.4020004272461,13.73799991607666,41.06600189208984,10.239999771118164,4.243000030517578,1.2580000162124634,39.63850021362305 -1890,2016-09-17 18:00:00,45.90499877929688,14.407999992370604,41.57600021362305,10.855999946594238,4.243000030517578,1.2580000162124634,38.31999969482422 -1891,2016-09-17 19:00:00,42.1349983215332,11.057000160217283,36.7509994506836,7.61299991607666,5.427000045776367,1.2790000438690186,36.5620002746582 -1892,2016-09-17 20:00:00,42.21900177001953,12.64900016784668,38.92200088500977,10.024999618530272,2.6010000705718994,0.0,35.68399810791016 -1893,2016-09-17 21:00:00,44.3129997253418,13.152000427246096,39.83300018310547,9.838000297546388,5.117000102996826,1.22599995136261,34.80500030517578 -1894,2016-09-17 22:00:00,40.9630012512207,12.229999542236328,36.10699844360352,9.354999542236328,3.785000085830689,1.2790000438690186,33.92599868774414 -1895,2016-09-17 23:00:00,39.790000915527344,11.810999870300291,37.84999847412109,10.105999946594238,1.7910000085830688,0.0,33.48600006103516 -1896,2016-09-18 00:00:00,41.46500015258789,12.229999542236328,36.80400085449219,9.32800006866455,4.392000198364259,1.2580000162124634,32.60699844360352 -1897,2016-09-18 01:00:00,37.52799987792969,10.722000122070312,33.15900039672852,8.36299991607666,4.1579999923706055,1.2580000162124634,32.167999267578125 -1898,2016-09-18 02:00:00,38.95199966430664,10.890000343322754,35.35699844360352,8.685000419616701,4.1579999923706055,0.0,31.28899955749512 -1899,2016-09-18 03:00:00,38.28200149536133,10.973999977111816,35.625,8.899999618530273,3.5720000267028813,0.0,30.40999984741211 -1900,2016-09-18 04:00:00,38.11399841308594,11.140999794006348,34.472000122070305,8.73900032043457,3.5720000267028813,0.0,29.97100067138672 -1901,2016-09-18 05:00:00,37.69599914550781,11.309000015258787,34.49900054931641,9.0600004196167,3.4219999313354488,0.0,29.31150054931641 -1902,2016-09-18 06:00:00,38.28200149536133,11.057000160217283,34.44499969482422,8.604999542236326,4.690999984741211,0.0,28.871999740600582 -1903,2016-09-18 07:00:00,40.54399871826172,12.5649995803833,36.1609992980957,9.94499969482422,4.690999984741211,1.22599995136261,28.65200042724609 -1904,2016-09-18 08:00:00,38.36600112915039,10.38700008392334,35.38399887084961,8.203000068664549,3.3159999847412114,0.0,29.97100067138672 -1905,2016-09-18 09:00:00,39.37099838256836,12.145999908447266,37.15299987792969,9.810999870300291,3.3159999847412114,0.0,32.167999267578125 -1906,2016-09-18 10:00:00,37.025001525878906,8.878999710083008,35.16899871826172,6.888999938964844,2.0999999046325684,0.0,35.68349838256836 -1907,2016-09-18 11:00:00,40.20899963378906,9.885000228881836,37.71599960327149,7.77400016784668,2.0999999046325684,0.0,38.7599983215332 -1908,2016-09-18 12:00:00,42.88899993896485,12.062999725341797,40.61100006103516,9.972000122070312,2.0999999046325684,0.0,41.17699813842773 -1909,2016-09-18 13:00:00,41.46500015258789,12.64900016784668,39.45800018310547,10.31999969482422,2.0999999046325684,0.0,42.93450164794922 -1910,2016-09-18 14:00:00,41.2140007019043,12.815999984741213,38.86800003051758,10.401000022888184,2.0999999046325684,0.0,44.69250106811523 -1911,2016-09-18 15:00:00,39.790000915527344,12.39799976348877,37.31399917602539,9.864999771118164,2.0999999046325684,0.0,45.79100036621094 -1912,2016-09-18 16:00:00,43.391998291015625,13.487000465393065,40.02099990844727,10.239999771118164,3.4119999408721924,1.2690000534057615,44.03350067138672 -1913,2016-09-18 17:00:00,42.88899993896485,12.64900016784668,39.32400131225586,9.677000045776367,4.541999816894531,1.3539999723434448,41.61600112915039 -1914,2016-09-18 18:00:00,43.47600173950195,12.229999542236328,38.30500030517578,8.604999542236326,4.541999816894531,1.3539999723434448,38.97949981689453 -1915,2016-09-18 19:00:00,42.1349983215332,11.5600004196167,37.20600128173828,8.175999641418457,4.59499979019165,1.5889999866485596,37.00199890136719 -1916,2016-09-18 20:00:00,44.3129997253418,12.815999984741213,39.21699905395508,9.194000244140623,4.6479997634887695,1.2690000534057615,35.68399810791016 -1917,2016-09-18 21:00:00,42.303001403808594,13.067999839782717,37.448001861572266,9.248000144958496,4.6479997634887695,1.2690000534057615,34.80500030517578 -1918,2016-09-18 22:00:00,41.29800033569336,12.39799976348877,36.26800155639648,8.979999542236328,4.6479997634887695,2.483999967575073,33.92599868774414 -1919,2016-09-18 23:00:00,39.11999893188477,11.140999794006348,34.766998291015625,8.14900016784668,4.6479997634887695,2.483999967575073,33.04700088500977 -1920,2016-09-19 00:00:00,39.95700073242188,12.229999542236328,36.45600128173828,9.140999794006348,4.6479997634887695,2.483999967575073,32.167999267578125 -1921,2016-09-19 01:00:00,39.37099838256836,11.727999687194824,34.31100082397461,8.390000343322754,4.6479997634887695,2.5369999408721924,31.28899955749512 -1922,2016-09-19 02:00:00,38.53300094604492,10.890000343322754,34.097000122070305,7.88100004196167,4.169000148773193,1.3009999990463257,30.40999984741211 -1923,2016-09-19 03:00:00,35.518001556396484,9.800999641418455,31.22900009155273,7.1040000915527335,4.169000148773193,1.3009999990463257,29.5310001373291 -1924,2016-09-19 04:00:00,37.10900115966797,10.722000122070312,33.077999114990234,8.282999992370605,3.901999950408936,1.2369999885559082,28.65200042724609 -1925,2016-09-19 05:00:00,36.43899917602539,10.638999938964844,33.85599899291992,8.336999893188478,2.3989999294281006,0.0,28.4325008392334 -1926,2016-09-19 06:00:00,41.29800033569336,11.979000091552734,36.80400085449219,8.873000144958496,3.6459999084472656,1.2150000333786009,28.21299934387207 -1927,2016-09-19 07:00:00,41.46500015258789,12.64900016784668,37.18000030517578,9.381999969482422,3.6459999084472656,1.2580000162124634,28.21299934387207 -1928,2016-09-19 08:00:00,36.02000045776367,8.376999855041504,32.060001373291016,5.763000011444093,3.6459999084472656,1.684000015258789,29.31150054931641 -1929,2016-09-19 09:00:00,40.29199981689453,12.145999908447266,37.742000579833984,9.756999969482422,2.3559999465942383,0.0,30.85000038146973 -1930,2016-09-19 10:00:00,35.85300064086914,8.376999855041504,33.93600082397461,6.486999988555907,2.3559999465942383,0.0,33.925498962402344 -1931,2016-09-19 11:00:00,38.03099822998047,10.722000122070312,35.4640007019043,8.255999565124513,2.3559999465942383,0.0,37.22150039672852 -1932,2016-09-19 12:00:00,41.88399887084961,12.899999618530272,39.56499862670898,10.159000396728516,2.3559999465942383,0.0,38.97949981689453 -1933,2016-09-19 13:00:00,40.62699890136719,13.402999877929688,38.25199890136719,10.642000198364258,2.3559999465942383,0.0,39.41899871826172 -1934,2016-09-19 14:00:00,38.95199966430664,13.067999839782717,36.29499816894531,10.159000396728516,2.3559999465942383,1.22599995136261,40.51800155639648 -1935,2016-09-19 15:00:00,41.71599960327149,14.072999954223633,39.21699905395508,11.204999923706056,2.3559999465942383,1.22599995136261,41.39599990844727 -1936,2016-09-19 16:00:00,44.14599990844727,14.82699966430664,40.58399963378906,11.418999671936035,3.5820000171661377,1.2369999885559082,40.51750183105469 -1937,2016-09-19 17:00:00,46.57500076293945,15.664999961853027,40.52999877929688,11.097999572753906,6.0980000495910645,2.5269999504089355,38.31999969482422 -1938,2016-09-19 18:00:00,44.900001525878906,13.98900032043457,39.08300018310547,9.810999870300291,5.96999979019165,2.5269999504089355,36.12300109863281 -1939,2016-09-19 19:00:00,39.62200164794922,10.38700008392334,34.713001251220696,7.130000114440918,4.797999858856201,2.5269999504089355,34.584999084472656 -1940,2016-09-19 20:00:00,40.9630012512207,11.895000457763672,35.946998596191406,8.14900016784668,4.958000183105469,2.5269999504089355,33.48600006103516 -1941,2016-09-19 21:00:00,45.31800079345703,14.156999588012695,39.08300018310547,9.784000396728516,6.248000144958496,2.5269999504089355,32.60699844360352 -1942,2016-09-19 22:00:00,40.9630012512207,12.899999618530272,35.73199844360352,9.302000045776367,4.787000179290772,2.5269999504089355,31.72900009155273 -1943,2016-09-19 23:00:00,36.858001708984375,10.890000343322754,32.35499954223633,7.747000217437744,4.797999858856201,2.5269999504089355,30.85000038146973 -1944,2016-09-20 00:00:00,36.858001708984375,12.062999725341797,30.961000442504893,7.452000141143799,4.829999923706055,1.3109999895095823,29.750999450683597 -1945,2016-09-20 01:00:00,38.11399841308594,11.895000457763672,33.26599884033203,8.711999893188478,4.829999923706055,1.246999979019165,28.65200042724609 -1946,2016-09-20 02:00:00,35.685001373291016,10.973999977111816,33.21200180053711,8.604999542236326,3.3580000400543213,1.2899999618530271,27.77300071716309 -1947,2016-09-20 03:00:00,39.20299911499024,11.979000091552734,33.80199813842773,8.578000068664549,4.605999946594238,1.343000054359436,27.333999633789062 -1948,2016-09-20 04:00:00,38.44900131225586,12.229999542236328,33.748001098632805,8.925999641418457,4.285999774932861,1.343000054359436,26.23550033569336 -1949,2016-09-20 05:00:00,39.62200164794922,12.480999946594238,35.16899871826172,9.56999969482422,4.285999774932861,1.343000054359436,25.79599952697754 -1950,2016-09-20 06:00:00,39.874000549316406,12.39799976348877,35.089000701904304,9.248000144958496,5.554999828338623,1.2369999885559082,25.35650062561035 -1951,2016-09-20 07:00:00,38.11399841308594,11.5600004196167,33.82899856567383,8.95300006866455,3.997999906539917,1.375,25.136999130249023 -1952,2016-09-20 08:00:00,34.847000122070305,9.04699993133545,32.623001098632805,7.263999938964844,2.750999927520752,0.0,27.333999633789062 -1953,2016-09-20 09:00:00,40.62699890136719,12.815999984741213,38.22499847412109,10.560999870300291,2.750999927520752,0.0,29.5310001373291 -1954,2016-09-20 10:00:00,35.518001556396484,8.461000442504883,33.21200180053711,6.540999889373777,2.750999927520752,0.0,33.70600128173828 -1955,2016-09-20 11:00:00,39.45500183105469,10.052000045776367,36.9379997253418,7.854000091552732,2.750999927520752,0.0,37.00199890136719 -1956,2016-09-20 12:00:00,38.617000579833984,10.220000267028809,36.5359992980957,8.416999816894531,2.750999927520752,0.0,39.63850021362305 -1957,2016-09-20 13:00:00,41.2140007019043,12.815999984741213,38.92200088500977,10.642000198364258,2.750999927520752,0.0,40.73749923706055 -1958,2016-09-20 14:00:00,40.125,12.314000129699709,37.52799987792969,9.756999969482422,2.750999927520752,0.0,41.83599853515625 -1959,2016-09-20 15:00:00,40.29199981689453,13.319000244140623,37.98400115966797,10.508000373840332,2.750999927520752,0.0,42.93450164794922 -1960,2016-09-20 16:00:00,42.55400085449219,13.487000465393065,39.35100173950195,10.480999946594238,2.750999927520752,1.3009999990463257,41.17699813842773 -1961,2016-09-20 17:00:00,44.0620002746582,13.821999549865724,39.72600173950195,10.159000396728516,4.051000118255615,1.3009999990463257,38.97949981689453 -1962,2016-09-20 18:00:00,44.3129997253418,13.319000244140623,39.61899948120117,9.890999794006348,3.4119999408721924,1.5460000038146973,36.34249877929688 -1963,2016-09-20 19:00:00,41.46500015258789,10.722000122070312,36.321998596191406,7.34499979019165,4.958000183105469,1.5460000038146973,33.92599868774414 -1964,2016-09-20 20:00:00,46.071998596191406,14.407999992370604,40.39599990844727,10.31999969482422,4.958000183105469,1.5460000038146973,32.167999267578125 -1965,2016-09-20 21:00:00,45.65399932861328,13.98900032043457,40.18199920654297,9.99899959564209,5.223999977111816,1.5779999494552612,31.28899955749512 -1966,2016-09-20 22:00:00,41.29800033569336,12.64900016784668,37.233001708984375,9.461999893188477,3.954999923706055,1.5779999494552612,30.6299991607666 -1967,2016-09-20 23:00:00,38.70100021362305,11.5600004196167,33.90900039672852,8.36299991607666,5.203000068664551,1.5779999494552612,29.97100067138672 -1968,2016-09-21 00:00:00,36.60699844360352,11.309000015258787,31.76499938964844,8.255999565124513,5.2129998207092285,1.4709999561309814,29.5310001373291 -1969,2016-09-21 01:00:00,38.86800003051758,11.727999687194824,34.28499984741211,8.604999542236326,5.171000003814697,1.4709999561309814,28.871999740600582 -1970,2016-09-21 02:00:00,38.86800003051758,11.392000198364258,34.01599884033203,8.310000419616701,4.85099983215332,1.3009999990463257,28.21299934387207 -1971,2016-09-21 03:00:00,38.03099822998047,11.057000160217283,33.64099884033203,8.175999641418457,4.872000217437744,1.3009999990463257,27.77300071716309 -1972,2016-09-21 04:00:00,34.93099975585937,10.220000267028809,31.14800071716309,7.747000217437744,4.872000217437744,1.246999979019165,27.55349922180176 -1973,2016-09-21 05:00:00,40.29199981689453,11.895000457763672,35.19599914550781,8.819000244140625,4.861999988555908,1.2150000333786009,27.55349922180176 -1974,2016-09-21 06:00:00,41.29800033569336,12.39799976348877,36.13399887084961,8.979999542236328,5.736000061035156,1.246999979019165,27.333999633789062 -1975,2016-09-21 07:00:00,40.62699890136719,12.314000129699709,37.1259994506836,9.32800006866455,3.763000011444092,1.2150000333786009,27.11450004577637 -1976,2016-09-21 08:00:00,37.44400024414063,10.638999938964844,34.472000122070305,8.175999641418457,2.4730000495910645,0.0,27.55349922180176 -1977,2016-09-21 09:00:00,41.29800033569336,12.984000205993652,38.81499862670898,10.37399959564209,2.302999973297119,0.0,28.871999740600582 -1978,2016-09-21 10:00:00,37.025001525878906,9.381999969482422,34.632999420166016,7.290999889373777,2.302999973297119,0.0,30.6299991607666 -1979,2016-09-21 11:00:00,37.277000427246094,9.465999603271484,35.222999572753906,7.692999839782715,2.302999973297119,0.0,33.925498962402344 -1980,2016-09-21 12:00:00,39.11999893188477,11.392000198364258,37.15299987792969,9.354999542236328,2.302999973297119,0.0,35.68349838256836 -1981,2016-09-21 13:00:00,41.2140007019043,13.067999839782717,38.70800018310547,10.883000373840332,2.302999973297119,0.0,36.34249877929688 -1982,2016-09-21 14:00:00,37.946998596191406,12.145999908447266,35.972999572753906,9.864999771118164,2.302999973297119,0.0,36.12300109863281 -1983,2016-09-21 15:00:00,40.87900161743164,13.487000465393065,38.70800018310547,10.855999946594238,2.302999973297119,0.0,35.24399948120117 -1984,2016-09-21 16:00:00,41.13000106811523,12.899999618530272,38.49300003051758,10.37399959564209,2.302999973297119,0.0,34.365001678466804 -1985,2016-09-21 17:00:00,44.48099899291992,13.152000427246096,39.45800018310547,9.56999969482422,4.755000114440918,1.2580000162124634,33.26649856567383 -1986,2016-09-21 18:00:00,46.65900039672852,13.654000282287598,41.01300048828125,9.756999969482422,4.755000114440918,1.2580000162124634,32.60699844360352 -1987,2016-09-21 19:00:00,41.13000106811523,11.225000381469728,36.66999816894531,8.14900016784668,4.679999828338623,1.2580000162124634,31.72900009155273 -1988,2016-09-21 20:00:00,44.81600189208984,13.821999549865724,40.12799835205078,10.159000396728516,5.671999931335449,1.2580000162124634,31.069499969482425 -1989,2016-09-21 21:00:00,44.48099899291992,13.73799991607666,39.45800018310547,9.838000297546388,5.491000175476074,1.2580000162124634,30.40999984741211 -1990,2016-09-21 22:00:00,40.3759994506836,12.480999946594238,36.321998596191406,9.32800006866455,4.072999954223634,1.2580000162124634,29.97100067138672 -1991,2016-09-21 23:00:00,40.459999084472656,12.815999984741213,35.49100112915039,9.302000045776367,4.679999828338623,1.375,29.5310001373291 -1992,2016-09-22 00:00:00,38.36600112915039,11.727999687194824,34.12400054931641,8.470999717712402,4.317999839782715,1.375,28.871999740600582 -1993,2016-09-22 01:00:00,37.277000427246094,11.057000160217283,32.91699981689453,7.854000091552732,4.317999839782715,2.611999988555908,28.21299934387207 -1994,2016-09-22 02:00:00,37.77899932861328,11.225000381469728,32.648998260498054,7.77400016784668,4.339000225067139,1.2150000333786009,27.77300071716309 -1995,2016-09-22 03:00:00,33.005001068115234,9.465999603271484,29.298999786376957,6.861999988555907,4.339000225067139,1.2150000333786009,27.11450004577637 -1996,2016-09-22 04:00:00,38.53300094604492,12.145999908447266,33.990001678466804,8.711999893188478,4.1579999923706055,1.246999979019165,26.67499923706055 -1997,2016-09-22 05:00:00,34.512001037597656,10.470999717712402,30.3439998626709,7.3979997634887695,4.061999797821045,1.3220000267028809,26.45549964904785 -1998,2016-09-22 06:00:00,37.946998596191406,10.805999755859377,33.025001525878906,7.532000064849853,5.330999851226807,1.3220000267028809,26.23550033569336 -1999,2016-09-22 07:00:00,39.53799819946289,11.309000015258787,36.777000427246094,8.925999641418457,2.888999938964844,0.0,25.79599952697754 -2000,2016-09-22 08:00:00,33.17200088500977,9.21399974822998,30.85300064086914,7.184000015258789,2.888999938964844,0.0,27.333999633789062 -2001,2016-09-22 09:00:00,35.85300064086914,10.805999755859377,33.85599899291992,9.0600004196167,1.662999987602234,0.0,29.750999450683597 -2002,2016-09-22 10:00:00,37.44400024414063,11.309000015258787,35.652000427246094,9.32800006866455,1.662999987602234,0.0,33.92599868774414 -2003,2016-09-22 11:00:00,41.96799850463867,13.56999969482422,39.75299835205078,11.28499984741211,1.662999987602234,0.0,37.22150039672852 -2004,2016-09-22 12:00:00,41.71599960327149,13.73799991607666,39.77999877929688,11.579999923706056,1.662999987602234,0.0,39.858001708984375 -2005,2016-09-22 13:00:00,38.53300094604492,13.319000244140623,36.42900085449219,11.232000350952148,1.662999987602234,0.0,40.73699951171875 -2006,2016-09-22 14:00:00,41.96799850463867,15.413000106811523,40.07500076293945,12.920000076293944,1.662999987602234,0.0,42.05550003051758 -2007,2016-09-22 15:00:00,38.36600112915039,13.487000465393065,36.42900085449219,11.446000099182127,1.662999987602234,0.0,39.85850143432617 -2008,2016-09-22 16:00:00,42.303001403808594,14.82699966430664,39.99399948120117,12.008999824523926,1.662999987602234,0.0,37.88100051879883 -2009,2016-09-22 17:00:00,44.983001708984375,14.324000358581545,40.79800033569336,10.776000022888184,4.114999771118163,1.2690000534057615,37.44100189208984 -2010,2016-09-22 18:00:00,41.88399887084961,13.654000282287598,38.35900115966797,10.855999946594238,4.114999771118163,0.0,36.5620002746582 -2011,2016-09-22 19:00:00,40.71099853515625,12.062999725341797,36.59000015258789,9.302000045776367,4.040999889373778,1.2580000162124634,34.365001678466804 -2012,2016-09-22 20:00:00,41.632999420166016,12.39799976348877,37.95700073242188,9.515999794006348,3.986999988555908,0.0,33.04700088500977 -2013,2016-09-22 21:00:00,45.06700134277344,15.329999923706056,40.262001037597656,11.71399974822998,5.235000133514403,1.22599995136261,31.94849967956543 -2014,2016-09-22 22:00:00,39.62200164794922,13.73799991607666,34.955001831054695,10.401000022888184,4.2109999656677255,1.2690000534057615,30.85000038146973 -2015,2016-09-22 23:00:00,36.52299880981445,12.480999946594238,33.42699813842773,9.972000122070312,4.2109999656677255,1.2690000534057615,30.19050025939941 -2016,2016-09-23 00:00:00,35.518001556396484,12.062999725341797,31.738000869750977,9.409000396728516,4.0939998626708975,1.22599995136261,29.750999450683597 -2017,2016-09-23 01:00:00,36.1879997253418,12.39799976348877,33.025001525878906,9.91800022125244,4.061999797821045,0.0,29.31150054931641 -2018,2016-09-23 02:00:00,35.93600082397461,12.480999946594238,32.327999114990234,9.409000396728516,4.061999797821045,1.524999976158142,29.31150054931641 -2019,2016-09-23 03:00:00,35.93600082397461,12.229999542236328,31.28199958801269,9.086999893188477,4.1579999923706055,1.4609999656677246,29.31150054931641 -2020,2016-09-23 04:00:00,35.182998657226555,11.979000091552734,31.22900009155273,9.381999969482422,4.040999889373778,1.2790000438690186,28.871999740600582 -2021,2016-09-23 05:00:00,37.52799987792969,12.732999801635742,32.46200180053711,9.595999717712402,5.298999786376953,1.2790000438690186,28.65200042724609 -2022,2016-09-23 06:00:00,40.3759994506836,13.234999656677244,35.38399887084961,10.052000045776367,5.117000102996826,1.4390000104904177,28.4325008392334 -2023,2016-09-23 07:00:00,40.29199981689453,13.487000465393065,36.777000427246094,10.69499969482422,3.6989998817443848,1.2899999618530271,28.65200042724609 -2024,2016-09-23 08:00:00,34.345001220703125,9.381999969482422,31.20199966430664,7.077000141143799,3.6989998817443848,1.2150000333786009,29.750999450683597 -2025,2016-09-23 09:00:00,39.37099838256836,13.067999839782717,37.42100143432617,10.642000198364258,1.962000012397766,0.0,31.069499969482425 -2026,2016-09-23 10:00:00,35.685001373291016,9.800999641418455,33.56100082397461,7.800000190734862,1.962000012397766,0.0,32.82699966430664 -2027,2016-09-23 11:00:00,40.62699890136719,12.39799976348877,38.70800018310547,10.052000045776367,1.962000012397766,0.0,36.5625 -2028,2016-09-23 12:00:00,41.54899978637695,13.487000465393065,39.29700088500977,11.312000274658203,1.962000012397766,0.0,38.10049819946289 -2029,2016-09-23 13:00:00,41.632999420166016,14.324000358581545,39.430999755859375,12.08899974822998,1.962000012397766,0.0,39.63850021362305 -2030,2016-09-23 14:00:00,40.04100036621094,13.98900032043457,37.79600143432617,11.472999572753904,1.962000012397766,0.0,41.39649963378906 -2031,2016-09-23 15:00:00,39.790000915527344,13.654000282287598,37.6349983215332,11.312000274658203,1.962000012397766,0.0,42.49499893188477 -2032,2016-09-23 16:00:00,41.38100051879883,14.407999992370604,39.32400131225586,11.902000427246096,1.962000012397766,0.0,40.73749923706055 -2033,2016-09-23 17:00:00,45.31800079345703,15.748000144958494,41.09299850463867,12.03600025177002,4.563000202178955,1.2580000162124634,39.199501037597656 -2034,2016-09-23 18:00:00,46.15599822998047,15.83199977874756,41.09299850463867,11.875,5.789000034332275,2.4730000495910645,37.6609992980957 -2035,2016-09-23 19:00:00,41.46500015258789,12.229999542236328,36.66999816894531,8.765000343322754,4.275000095367432,1.2369999885559082,35.68399810791016 -2036,2016-09-23 20:00:00,41.04600143432617,12.314000129699709,37.448001861572266,9.11400032043457,4.392000198364259,1.2369999885559082,34.365001678466804 -2037,2016-09-23 21:00:00,44.229000091552734,15.413000106811523,40.45000076293945,11.847999572753904,4.392000198364259,2.483999967575073,33.48600006103516 -2038,2016-09-23 22:00:00,42.88899993896485,14.994000434875488,38.17100143432617,11.312000274658203,4.573999881744385,2.483999967575073,32.60699844360352 -2039,2016-09-23 23:00:00,40.459999084472656,14.491999626159668,36.96500015258789,11.446000099182127,4.573999881744385,2.483999967575073,32.167999267578125 -2040,2016-09-24 00:00:00,40.29199981689453,14.156999588012695,35.7859992980957,11.12399959564209,3.3580000400543213,1.22599995136261,31.72900009155273 -2041,2016-09-24 01:00:00,35.685001373291016,11.895000457763672,31.363000869750977,9.086999893188477,4.573999881744385,1.524999976158142,31.28899955749512 -2042,2016-09-24 02:00:00,37.69599914550781,12.899999618530272,34.41899871826172,10.480999946594238,3.240999937057495,0.0,31.28899955749512 -2043,2016-09-24 03:00:00,35.182998657226555,11.727999687194824,30.61199951171875,8.819000244140625,4.455999851226807,1.246999979019165,30.85000038146973 -2044,2016-09-24 04:00:00,38.198001861572266,13.56999969482422,34.766998291015625,10.776000022888184,3.753000020980835,0.0,30.40999984741211 -2045,2016-09-24 05:00:00,38.53300094604492,13.402999877929688,36.24100112915039,11.472999572753904,2.4730000495910645,0.0,30.19050025939941 -2046,2016-09-24 06:00:00,41.04600143432617,13.73799991607666,37.15299987792969,11.043999671936035,3.6989998817443848,1.343000054359436,29.97100067138672 -2047,2016-09-24 07:00:00,40.04100036621094,13.821999549865724,37.233001708984375,11.392000198364258,3.5720000267028813,0.0,29.97100067138672 -2048,2016-09-24 08:00:00,37.36100006103516,11.5600004196167,34.31100082397461,9.32800006866455,3.5720000267028813,0.0,31.28899955749512 -2049,2016-09-24 09:00:00,39.874000549316406,13.98900032043457,37.39400100708008,11.151000022888184,2.3239998817443848,1.2790000438690186,33.04700088500977 -2050,2016-09-24 10:00:00,38.03099822998047,12.229999542236328,35.73199844360352,10.159000396728516,2.3239998817443848,0.0,35.4640007019043 -2051,2016-09-24 11:00:00,44.48099899291992,15.581000328063965,42.21900177001953,13.053999900817873,2.3239998817443848,0.0,38.540000915527344 -2052,2016-09-24 12:00:00,43.14099884033203,14.659000396728516,40.98600006103516,12.196999549865724,2.3239998817443848,0.0,40.95700073242188 -2053,2016-09-24 13:00:00,44.3129997253418,15.83199977874756,41.87099838256836,13.21500015258789,2.3239998817443848,0.0,42.49499893188477 -2054,2016-09-24 14:00:00,41.71599960327149,14.91100025177002,39.37799835205078,12.277000427246096,2.3239998817443848,0.0,43.8134994506836 -2055,2016-09-24 15:00:00,44.900001525878906,16.670000076293945,42.19200134277344,13.482999801635742,2.3239998817443848,1.3009999990463257,43.8134994506836 -2056,2016-09-24 16:00:00,46.74300003051758,17.172000885009766,42.83599853515625,13.348999977111816,3.549999952316284,1.246999979019165,42.71500015258789 -2057,2016-09-24 17:00:00,46.99399948120117,16.419000625610348,43.07699966430664,12.46500015258789,3.549999952316284,1.246999979019165,40.95700073242188 -2058,2016-09-24 18:00:00,47.07799911499024,16.083000183105472,42.88899993896485,12.383999824523926,3.4219999313354488,1.22599995136261,39.63899993896485 -2059,2016-09-24 19:00:00,44.56499862670898,13.98900032043457,39.27000045776367,10.239999771118164,4.882999897003174,1.22599995136261,38.31999969482422 -2060,2016-09-24 20:00:00,46.071998596191406,14.407999992370604,41.06600189208984,10.614999771118164,4.4780001640319815,1.2369999885559082,37.44100189208984 -2061,2016-09-24 21:00:00,42.387001037597656,12.64900016784668,38.52000045776367,9.623000144958496,3.625,1.2369999885559082,36.5620002746582 -2062,2016-09-24 22:00:00,44.73199844360352,15.413000106811523,40.10100173950195,11.954999923706056,5.0,1.2369999885559082,36.34249877929688 -2063,2016-09-24 23:00:00,42.88899993896485,15.161999702453612,38.14500045776367,11.553000450134276,5.0219998359680185,1.2369999885559082,35.903499603271484 -2064,2016-09-25 00:00:00,38.70100021362305,13.402999877929688,35.946998596191406,11.232000350952148,2.174999952316284,0.0,35.68399810791016 -2065,2016-09-25 01:00:00,33.42300033569336,10.38700008392334,29.433000564575195,7.71999979019165,4.083000183105469,1.2899999618530271,34.80500030517578 -2066,2016-09-25 02:00:00,39.0359992980957,12.229999542236328,34.042999267578125,9.274999618530272,4.072999954223634,1.22599995136261,34.14550018310547 -2067,2016-09-25 03:00:00,34.429000854492195,10.722000122070312,31.76499938964844,8.73900032043457,2.8469998836517334,0.0,33.92599868774414 -2068,2016-09-25 04:00:00,35.182998657226555,11.057000160217283,31.041000366210927,8.444000244140625,4.13700008392334,1.3220000267028809,33.48600006103516 -2069,2016-09-25 05:00:00,36.35499954223633,11.979000091552734,31.711000442504893,8.925999641418457,4.125999927520752,1.343000054359436,33.04700088500977 -2070,2016-09-25 06:00:00,39.874000549316406,12.815999984741213,35.86600112915039,10.052000045776367,3.9660000801086426,1.22599995136261,32.60699844360352 -2071,2016-09-25 07:00:00,39.20299911499024,12.984000205993652,34.98199844360352,9.838000297546388,3.9660000801086426,1.2150000333786009,32.387500762939446 -2072,2016-09-25 08:00:00,34.512001037597656,11.057000160217283,31.22900009155273,8.604999542236326,3.9660000801086426,1.22599995136261,32.60699844360352 -2073,2016-09-25 09:00:00,39.45500183105469,13.98900032043457,37.071998596191406,11.526000022888184,2.5799999237060547,0.0,34.365001678466804 -2074,2016-09-25 10:00:00,40.9630012512207,13.402999877929688,38.198001861572266,10.855999946594238,2.5799999237060547,0.0,36.5620002746582 -2075,2016-09-25 11:00:00,40.9630012512207,13.487000465393065,38.62699890136719,10.668999671936035,2.5799999237060547,0.0,39.41899871826172 -2076,2016-09-25 12:00:00,42.72200012207031,13.821999549865724,40.15499877929688,11.258000373840332,2.5799999237060547,0.0,41.83599853515625 -2077,2016-09-25 13:00:00,42.88899993896485,14.156999588012695,40.262001037597656,11.472999572753904,2.5799999237060547,0.0,44.25299835205078 -2078,2016-09-25 14:00:00,42.1349983215332,14.324000358581545,40.02099990844727,11.71399974822998,2.5799999237060547,0.0,44.91249847412109 -2079,2016-09-25 15:00:00,42.72200012207031,14.156999588012695,40.15499877929688,11.366000175476074,2.5799999237060547,0.0,45.35150146484375 -2080,2016-09-25 16:00:00,44.73199844360352,15.748000144958494,42.00500106811523,12.652000427246096,2.5799999237060547,1.246999979019165,43.59349822998047 -2081,2016-09-25 17:00:00,47.1609992980957,15.916000366210938,43.104000091552734,12.25,3.82699990272522,1.2580000162124634,41.83549880981445 -2082,2016-09-25 18:00:00,46.15599822998047,14.659000396728516,41.73699951171875,11.204999923706056,5.085000038146973,1.2580000162124634,40.29800033569336 -2083,2016-09-25 19:00:00,40.9630012512207,11.47599983215332,36.05400085449219,7.960999965667725,5.14900016784668,2.4730000495910645,38.97949981689453 -2084,2016-09-25 20:00:00,37.86299896240234,11.309000015258787,31.92600059509277,7.50600004196167,5.138999938964844,2.4730000495910645,37.88100051879883 -2085,2016-09-25 21:00:00,37.025001525878906,10.220000267028809,33.93600082397461,7.559000015258789,3.913000106811523,2.4730000495910645,37.22150039672852 -2086,2016-09-25 22:00:00,36.68999862670898,10.052000045776367,31.76499938964844,7.130000114440918,5.459000110626222,1.22599995136261,36.5620002746582 -2087,2016-09-25 23:00:00,39.790000915527344,11.810999870300291,36.42900085449219,8.979999542236328,3.7309999465942383,1.3009999990463257,35.903499603271484 -2088,2016-09-26 00:00:00,40.125,11.979000091552734,36.42900085449219,9.32800006866455,3.7309999465942383,1.2150000333786009,35.24399948120117 -2089,2016-09-26 01:00:00,37.69599914550781,11.140999794006348,32.97100067138672,8.069000244140625,3.496999979019165,1.343000054359436,34.80500030517578 -2090,2016-09-26 02:00:00,38.78499984741211,11.47599983215332,35.007999420166016,8.711999893188478,3.614000082015991,0.0,34.365001678466804 -2091,2016-09-26 03:00:00,37.44400024414063,11.225000381469728,34.12400054931641,8.444000244140625,3.795000076293945,1.4390000104904177,33.92599868774414 -2092,2016-09-26 04:00:00,35.26599884033203,10.220000267028809,31.738000869750977,7.559000015258789,3.785000085830689,1.22599995136261,33.48600006103516 -2093,2016-09-26 05:00:00,38.95199966430664,11.979000091552734,36.13399887084961,9.220999717712402,3.785000085830689,0.0,33.04700088500977 -2094,2016-09-26 06:00:00,40.29199981689453,12.145999908447266,36.80400085449219,9.302000045776367,3.7309999465942383,1.2369999885559082,32.60699844360352 -2095,2016-09-26 07:00:00,38.198001861572266,10.973999977111816,35.303001403808594,8.657999992370605,2.494999885559082,0.0,32.60699844360352 -2096,2016-09-26 08:00:00,30.40800094604492,7.119999885559082,28.28000068664551,5.308000087738037,2.494999885559082,0.0,33.26649856567383 -2097,2016-09-26 09:00:00,22.617000579833984,6.366000175476074,20.426000595092773,5.065999984741211,2.494999885559082,0.0,34.14550018310547 -2098,2016-09-26 10:00:00,27.392000198364247,8.376999855041504,25.46500015258789,6.620999813079834,2.494999885559082,0.0,37.6609992980957 -2099,2016-09-26 11:00:00,29.066999435424805,7.874000072479247,26.72500038146973,6.111999988555907,2.494999885559082,0.0,40.73699951171875 -2100,2016-09-26 12:00:00,27.97900009155273,7.119999885559082,25.840999603271484,5.4679999351501465,2.494999885559082,0.0,43.374000549316406 -2101,2016-09-26 13:00:00,29.65399932861328,8.711999893188478,27.26099967956543,6.888999938964844,2.494999885559082,0.0,44.9119987487793 -2102,2016-09-26 14:00:00,27.22500038146973,8.376999855041504,25.09000015258789,6.540999889373777,2.494999885559082,0.0,46.45000076293945 -2103,2016-09-26 15:00:00,28.565000534057607,7.789999961853027,25.97500038146973,5.548999786376953,2.494999885559082,0.0,46.88949966430664 -2104,2016-09-26 16:00:00,29.319000244140625,7.789999961853027,26.993000030517567,5.736000061035156,2.494999885559082,0.0,44.9119987487793 -2105,2016-09-26 17:00:00,31.74799919128418,8.125,28.36000061035156,5.896999835968018,2.494999885559082,1.2790000438690186,42.714500427246094 -2106,2016-09-26 18:00:00,38.03099822998047,10.303000450134276,34.553001403808594,7.77400016784668,2.5269999504089355,1.2580000162124634,40.29800033569336 -2107,2016-09-26 19:00:00,36.104000091552734,9.381999969482422,32.78300094604492,6.915999889373777,3.763000011444092,1.343000054359436,38.540000915527344 -2108,2016-09-26 20:00:00,36.27199935913086,9.465999603271484,32.514999389648445,6.861999988555907,3.753000020980835,1.2369999885559082,37.22150039672852 -2109,2016-09-26 21:00:00,38.53300094604492,11.140999794006348,34.1510009765625,7.50600004196167,4.861999988555908,1.2369999885559082,36.34249877929688 -2110,2016-09-26 22:00:00,38.28200149536133,11.140999794006348,34.17699813842773,7.98799991607666,3.614000082015991,1.2369999885559082,35.903499603271484 -2111,2016-09-26 23:00:00,42.1349983215332,14.324000358581545,38.41299819946289,11.232000350952148,4.85099983215332,1.2150000333786009,35.68399810791016 -2112,2016-09-27 00:00:00,40.459999084472656,13.56999969482422,36.402000427246094,10.267000198364258,4.85099983215332,1.2150000333786009,35.4640007019043 -2113,2016-09-27 01:00:00,40.29199981689453,13.319000244140623,35.49100112915039,9.756999969482422,4.679999828338623,1.2150000333786009,35.24399948120117 -2114,2016-09-27 02:00:00,36.858001708984375,12.062999725341797,32.16699981689453,8.765000343322754,4.679999828338623,1.2150000333786009,34.80500030517578 -2115,2016-09-27 03:00:00,37.86299896240234,12.229999542236328,33.50699996948242,8.979999542236328,4.679999828338623,1.2150000333786009,34.14550018310547 -2116,2016-09-27 04:00:00,37.52799987792969,11.979000091552734,33.50699996948242,8.899999618530273,4.328999996185304,1.2150000333786009,33.48600006103516 -2117,2016-09-27 05:00:00,38.86800003051758,12.39799976348877,34.41899871826172,9.248000144958496,4.434999942779541,1.3220000267028809,33.04700088500977 -2118,2016-09-27 06:00:00,40.9630012512207,12.899999618530272,35.972999572753906,9.381999969482422,4.434999942779541,1.3220000267028809,32.60699844360352 -2119,2016-09-27 07:00:00,41.46500015258789,13.319000244140623,36.21500015258789,9.381999969482422,4.434999942779541,1.3220000267028809,32.60699844360352 -2120,2016-09-27 08:00:00,38.44900131225586,12.984000205993652,35.597999572753906,10.31999969482422,2.96399998664856,1.2369999885559082,33.48600006103516 -2121,2016-09-27 09:00:00,37.61199951171875,11.057000160217283,35.2760009765625,8.630999565124513,2.96399998664856,0.0,35.4640007019043 -2122,2016-09-27 10:00:00,38.53300094604492,12.5649995803833,36.42900085449219,10.07900047302246,2.96399998664856,0.0,37.6609992980957 -2123,2016-09-27 11:00:00,43.05699920654297,13.319000244140623,40.39599990844727,10.69499969482422,2.96399998664856,0.0,39.63850021362305 -2124,2016-09-27 12:00:00,41.88399887084961,11.810999870300291,39.512001037597656,9.48900032043457,2.96399998664856,0.0,41.61650085449219 -2125,2016-09-27 13:00:00,41.79999923706055,12.062999725341797,39.83300018310547,10.105999946594238,2.96399998664856,0.0,44.03350067138672 -2126,2016-09-27 14:00:00,40.62699890136719,12.480999946594238,38.0369987487793,9.623000144958496,2.96399998664856,0.0,44.9119987487793 -2127,2016-09-27 15:00:00,45.1510009765625,16.250999450683597,41.92399978637695,12.760000228881836,2.96399998664856,1.246999979019165,46.23049926757813 -2128,2016-09-27 16:00:00,47.49599838256836,16.586000442504886,43.61299896240234,12.760000228881836,4.232999801635741,1.246999979019165,45.35150146484375 -2129,2016-09-27 17:00:00,48.33399963378906,16.419000625610348,43.34500122070313,12.25,4.243000030517578,2.5269999504089355,43.8134994506836 -2130,2016-09-27 18:00:00,49.17200088500977,16.670000076293945,43.72000122070313,11.982000350952148,5.459000110626222,2.5269999504089355,42.275001525878906 -2131,2016-09-27 19:00:00,46.15599822998047,15.413000106811523,40.63800048828125,10.96399974822998,5.61899995803833,2.6440000534057617,41.17649841308594 -2132,2016-09-27 20:00:00,46.57500076293945,15.916000366210938,42.24599838256836,12.222999572753904,4.381999969482422,1.4179999828338623,39.85850143432617 -2133,2016-09-27 21:00:00,48.83700180053711,17.004999160766598,43.02299880981445,12.46500015258789,5.724999904632568,1.4179999828338623,38.97949981689453 -2134,2016-09-27 22:00:00,45.48600006103516,15.581000328063965,40.90599822998047,11.875,4.4780001640319815,2.687000036239624,38.10049819946289 -2135,2016-09-27 23:00:00,45.23500061035156,16.50200080871582,39.94100189208984,12.008999824523926,5.703999996185303,2.687000036239624,37.6609992980957 -2136,2016-09-28 00:00:00,41.54899978637695,14.994000434875488,36.9379997253418,11.12399959564209,5.352000236511231,1.4709999561309814,37.00199890136719 -2137,2016-09-28 01:00:00,41.46500015258789,14.241000175476074,36.696998596191406,10.53499984741211,3.9660000801086426,1.4709999561309814,36.78200149536133 -2138,2016-09-28 02:00:00,38.70100021362305,13.234999656677244,34.632999420166016,9.972000122070312,5.2129998207092285,1.4709999561309814,35.903499603271484 -2139,2016-09-28 03:00:00,37.69599914550781,12.815999984741213,32.702999114990234,9.274999618530272,5.244999885559082,1.3539999723434448,34.584999084472656 -2140,2016-09-28 04:00:00,34.512001037597656,11.225000381469728,32.139999389648445,9.140999794006348,2.697000026702881,0.0,34.365001678466804 -2141,2016-09-28 05:00:00,38.11399841308594,12.899999618530272,33.400001525878906,9.864999771118164,4.008999824523927,1.2369999885559082,33.70600128173828 -2142,2016-09-28 06:00:00,41.54899978637695,13.654000282287598,37.52799987792969,10.668999671936035,4.190000057220459,1.2150000333786009,33.26649856567383 -2143,2016-09-28 07:00:00,39.53799819946289,13.402999877929688,36.9119987487793,10.829999923706056,2.8570001125335693,0.0,33.04700088500977 -2144,2016-09-28 08:00:00,38.03099822998047,12.5649995803833,34.740001678466804,10.133000373840332,2.8570001125335693,1.2150000333786009,32.82699966430664 -2145,2016-09-28 09:00:00,41.88399887084961,14.407999992370604,39.37799835205078,11.795000076293944,2.8570001125335693,0.0,31.94849967956543 -2146,2016-09-28 10:00:00,38.36600112915039,11.644000053405762,35.70500183105469,9.006999969482422,2.8570001125335693,0.0,31.50900077819824 -2147,2016-09-28 11:00:00,37.44400024414063,10.470999717712402,35.40999984741211,8.496999740600586,2.8570001125335693,0.0,29.09199905395508 -2148,2016-09-28 12:00:00,40.29199981689453,13.234999656677244,38.14500045776367,10.937000274658203,2.8570001125335693,0.0,27.77300071716309 -2149,2016-09-28 13:00:00,40.459999084472656,13.904999732971191,38.97600173950195,11.875,2.8570001125335693,0.0,27.333999633789062 -2150,2016-09-28 14:00:00,37.946998596191406,13.319000244140623,35.972999572753906,10.90999984741211,2.8570001125335693,0.0,27.55349922180176 -2151,2016-09-28 15:00:00,41.54899978637695,15.83199977874756,39.69900131225586,13.269000053405762,2.8570001125335693,0.0,27.55349922180176 -2152,2016-09-28 16:00:00,35.518001556396484,11.644000053405762,32.623001098632805,9.194000244140623,2.8570001125335693,0.0,27.55349922180176 -2153,2016-09-28 17:00:00,41.632999420166016,12.480999946594238,38.84199905395508,9.972000122070312,2.8570001125335693,0.0,27.333999633789062 -2154,2016-09-28 18:00:00,41.88399887084961,12.815999984741213,38.680999755859375,9.810999870300291,4.114999771118163,1.2369999885559082,26.67499923706055 -2155,2016-09-28 19:00:00,38.03099822998047,8.878999710083008,34.472000122070305,6.353000164031982,2.697000026702881,0.0,25.136999130249023 -2156,2016-09-28 20:00:00,41.79999923706055,12.815999984741213,37.79600143432617,9.756999969482422,3.92300009727478,1.2369999885559082,24.69700050354004 -2157,2016-09-28 21:00:00,40.3759994506836,12.480999946594238,35.678001403808594,9.0600004196167,4.829999923706055,1.684000015258789,24.257999420166016 -2158,2016-09-28 22:00:00,40.54399871826172,12.5649995803833,35.652000427246094,9.381999969482422,4.829999923706055,1.2369999885559082,24.257999420166016 -2159,2016-09-28 23:00:00,36.104000091552734,11.140999794006348,32.89099884033203,8.819000244140625,3.6989998817443848,0.0,24.257999420166016 -2160,2016-09-29 00:00:00,35.76900100708008,11.225000381469728,31.57699966430664,8.550999641418457,3.6989998817443848,1.5779999494552612,23.81800079345703 -2161,2016-09-29 01:00:00,37.10900115966797,11.140999794006348,32.91699981689453,8.604999542236326,3.858999967575073,1.2369999885559082,22.93899917602539 -2162,2016-09-29 02:00:00,36.52299880981445,11.392000198364258,32.488998413085945,8.657999992370605,3.858999967575073,1.6529999971389768,22.06100082397461 -2163,2016-09-29 03:00:00,36.43899917602539,11.309000015258787,32.24700164794922,8.36299991607666,4.169000148773193,1.2580000162124634,21.621000289916992 -2164,2016-09-29 04:00:00,36.02000045776367,11.392000198364258,32.863998413085945,8.925999641418457,2.9530000686645512,0.0,21.621000289916992 -2165,2016-09-29 05:00:00,36.60699844360352,11.644000053405762,33.373001098632805,9.32800006866455,2.9530000686645512,0.0,21.401500701904297 -2166,2016-09-29 06:00:00,39.11999893188477,11.644000053405762,34.472000122070305,8.657999992370605,4.455999851226807,1.343000054359436,20.96199989318848 -2167,2016-09-29 07:00:00,37.61199951171875,11.057000160217283,35.089000701904304,8.899999618530273,2.622999906539917,0.0,20.742000579833984 -2168,2016-09-29 08:00:00,32.501998901367195,7.203999996185303,30.53199958801269,5.576000213623047,2.622999906539917,0.0,20.522499084472656 -2169,2016-09-29 09:00:00,39.53799819946289,12.145999908447266,37.95700073242188,10.133000373840332,2.622999906539917,0.0,20.522499084472656 -2170,2016-09-29 10:00:00,31.2450008392334,7.203999996185303,29.433000564575195,5.763000011444093,2.622999906539917,0.0,20.96199989318848 -2171,2016-09-29 11:00:00,38.617000579833984,11.057000160217283,36.8849983215332,9.248000144958496,2.622999906539917,0.0,21.401500701904297 -2172,2016-09-29 12:00:00,35.85300064086914,10.973999977111816,33.990001678466804,9.302000045776367,2.622999906539917,0.0,21.401500701904297 -2173,2016-09-29 13:00:00,38.53300094604492,12.39799976348877,36.858001708984375,10.31999969482422,2.622999906539917,0.0,22.280500411987305 -2174,2016-09-29 14:00:00,36.104000091552734,11.727999687194824,34.257999420166016,9.864999771118164,2.622999906539917,0.0,22.280500411987305 -2175,2016-09-29 15:00:00,36.27199935913086,11.979000091552734,34.820999145507805,10.052000045776367,2.622999906539917,0.0,22.280500411987305 -2176,2016-09-29 16:00:00,40.125,12.984000205993652,38.25199890136719,10.855999946594238,2.622999906539917,0.0,22.280500411987305 -2177,2016-09-29 17:00:00,42.47000122070313,13.402999877929688,39.055999755859375,10.722000122070312,2.622999906539917,0.0,22.71949958801269 -2178,2016-09-29 18:00:00,43.72700119018555,13.904999732971191,38.70800018310547,10.722000122070312,3.88100004196167,1.4609999656677246,22.71949958801269 -2179,2016-09-29 19:00:00,37.61199951171875,10.638999938964844,33.45399856567383,8.121999740600586,5.10699987411499,1.2150000333786009,22.5 -2180,2016-09-29 20:00:00,37.36100006103516,10.890000343322754,32.810001373291016,7.827000141143799,5.171000003814697,1.2369999885559082,22.5 -2181,2016-09-29 21:00:00,40.71099853515625,13.654000282287598,38.01100158691406,11.204999923706056,3.9449999332427983,0.0,22.5 -2182,2016-09-29 22:00:00,35.85300064086914,12.314000129699709,33.26599884033203,10.133000373840332,2.6760001182556152,0.0,22.280500411987305 -2183,2016-09-29 23:00:00,39.11999893188477,12.984000205993652,34.79399871826172,10.159000396728516,3.901999950408936,1.22599995136261,22.280500411987305 -2184,2016-09-30 00:00:00,34.429000854492195,11.225000381469728,30.42499923706055,8.73900032043457,3.88100004196167,0.0,22.06100082397461 -2185,2016-09-30 01:00:00,35.85300064086914,11.644000053405762,32.03300094604492,9.034000396728516,3.88100004196167,1.22599995136261,21.840999603271484 -2186,2016-09-30 02:00:00,33.757999420166016,9.885000228881836,31.06800079345703,7.960999965667725,3.816999912261963,0.0,21.840999603271484 -2187,2016-09-30 03:00:00,34.429000854492195,10.973999977111816,31.416000366210927,8.899999618530273,2.483999967575073,0.0,21.840999603271484 -2188,2016-09-30 04:00:00,31.74799919128418,10.052000045776367,29.88800048828125,8.550999641418457,2.463000059127808,0.0,21.401500701904297 -2189,2016-09-30 05:00:00,34.429000854492195,10.470999717712402,30.961000442504893,8.229000091552733,3.6040000915527344,0.0,20.96199989318848 -2190,2016-09-30 06:00:00,37.19300079345703,11.727999687194824,34.766998291015625,9.756999969482422,2.3559999465942383,0.0,20.522499084472656 -2191,2016-09-30 07:00:00,39.874000549316406,12.815999984741213,35.8390007019043,10.105999946594238,3.5720000267028813,0.0,20.522499084472656 -2192,2016-09-30 08:00:00,35.76900100708008,10.973999977111816,33.26599884033203,8.925999641418457,2.3350000381469727,0.0,21.18149948120117 -2193,2016-09-30 09:00:00,39.11999893188477,13.487000465393065,37.42100143432617,11.472999572753904,2.3350000381469727,0.0,21.18149948120117 -2194,2016-09-30 10:00:00,36.35499954223633,10.805999755859377,34.65999984741211,9.086999893188477,2.3350000381469727,0.0,21.62150001525879 -2195,2016-09-30 11:00:00,37.277000427246094,10.220000267028809,35.75899887084961,8.604999542236326,2.3350000381469727,0.0,22.280500411987305 -2196,2016-09-30 12:00:00,37.61199951171875,11.47599983215332,36.26800155639648,9.756999969482422,2.3350000381469727,0.0,22.71949958801269 -2197,2016-09-30 13:00:00,35.518001556396484,11.644000053405762,34.097000122070305,10.052000045776367,2.3350000381469727,0.0,23.15900039672852 -2198,2016-09-30 14:00:00,35.685001373291016,12.229999542236328,34.472000122070305,10.31999969482422,1.4390000104904177,0.0,23.598499298095703 -2199,2016-09-30 15:00:00,35.26599884033203,12.145999908447266,33.722000122070305,10.508000373840332,1.4819999933242798,0.0,24.477500915527344 -2200,2016-09-30 16:00:00,39.37099838256836,13.319000244140623,37.608001708984375,11.232000350952148,1.4819999933242798,0.0,25.136999130249023 -2201,2016-09-30 17:00:00,42.55400085449219,13.402999877929688,38.573001861572266,10.855999946594238,3.9660000801086426,0.0,25.13649940490723 -2202,2016-09-30 18:00:00,39.70600128173828,12.480999946594238,35.86600112915039,9.972000122070312,2.6760001182556152,0.0,25.13649940490723 -2203,2016-09-30 19:00:00,37.36100006103516,10.890000343322754,33.45399856567383,8.416999816894531,3.913000106811523,0.0,24.91699981689453 -2204,2016-09-30 20:00:00,39.62200164794922,11.727999687194824,35.972999572753906,9.409000396728516,3.8059999942779537,0.0,25.13649940490723 -2205,2016-09-30 21:00:00,37.10900115966797,11.979000091552734,34.31100082397461,9.99899959564209,3.8059999942779537,0.0,25.35650062561035 -2206,2016-09-30 22:00:00,40.20899963378906,13.402999877929688,35.625,10.29300022125244,3.82699990272522,1.5779999494552612,25.136999130249023 -2207,2016-09-30 23:00:00,37.19300079345703,12.39799976348877,33.400001525878906,9.864999771118164,3.82699990272522,0.0,25.35650062561035 -2208,2016-10-01 00:00:00,37.025001525878906,12.480999946594238,33.613998413085945,10.133000373840332,3.82699990272522,0.0,25.79599952697754 -2209,2016-10-01 01:00:00,37.025001525878906,12.145999908447266,33.05099868774414,9.756999969482422,3.5290000438690186,0.0,25.79599952697754 -2210,2016-10-01 02:00:00,32.669998168945305,10.303000450134276,28.708999633789062,8.282999992370605,3.5290000438690186,0.0,25.79599952697754 -2211,2016-10-01 03:00:00,35.43399810791016,11.644000053405762,31.363000869750977,9.086999893188477,3.5290000438690186,1.2790000438690186,26.23550033569336 -2212,2016-10-01 04:00:00,34.763999938964844,11.392000198364258,31.76499938964844,9.302000045776367,3.2730000019073486,0.0,26.23550033569336 -2213,2016-10-01 05:00:00,37.61199951171875,12.5649995803833,33.400001525878906,9.972000122070312,4.563000202178955,1.2580000162124634,26.23550033569336 -2214,2016-10-01 06:00:00,36.94200134277344,12.062999725341797,32.623001098632805,9.435999870300291,4.519999980926514,1.2150000333786009,25.79599952697754 -2215,2016-10-01 07:00:00,36.02000045776367,11.727999687194824,34.17699813842773,10.31999969482422,2.6440000534057617,0.0,25.136999130249023 -2216,2016-10-01 08:00:00,31.832000732421875,8.293000221252441,28.92300033569336,6.164999961853027,4.040999889373778,1.246999979019165,24.91699981689453 -2217,2016-10-01 09:00:00,35.76900100708008,10.13599967956543,33.963001251220696,8.604999542236326,2.003999948501587,0.0,25.136999130249023 -2218,2016-10-01 10:00:00,34.09400177001953,9.04699993133545,31.871999740600582,7.50600004196167,2.003999948501587,0.0,25.79599952697754 -2219,2016-10-01 11:00:00,41.13000106811523,13.654000282287598,39.24399948120117,11.741000175476074,2.003999948501587,0.0,26.45499992370605 -2220,2016-10-01 12:00:00,40.04100036621094,12.984000205993652,37.98400115966797,10.989999771118164,2.003999948501587,0.0,27.333999633789062 -2221,2016-10-01 13:00:00,38.617000579833984,13.067999839782717,36.80400085449219,11.258000373840332,2.003999948501587,0.0,28.871999740600582 -2222,2016-10-01 14:00:00,38.53300094604492,12.732999801635742,36.50899887084961,10.883000373840332,2.003999948501587,0.0,31.28899955749512 -2223,2016-10-01 15:00:00,38.03099822998047,13.152000427246096,36.375,11.472999572753904,2.003999948501587,0.0,32.60699844360352 -2224,2016-10-01 16:00:00,37.10900115966797,12.229999542236328,35.4370002746582,10.508000373840332,2.003999948501587,0.0,32.387500762939446 -2225,2016-10-01 17:00:00,39.53799819946289,12.480999946594238,36.45600128173828,10.267000198364258,3.240999937057495,0.0,32.60699844360352 -2226,2016-10-01 18:00:00,37.86299896240234,11.810999870300291,34.44499969482422,9.515999794006348,4.499000072479248,0.0,32.387500762939446 -2227,2016-10-01 19:00:00,37.77899932861328,10.470999717712402,33.963001251220696,8.229000091552733,4.201000213623047,0.0,31.94849967956543 -2228,2016-10-01 20:00:00,37.77899932861328,10.890000343322754,33.13199996948242,8.121999740600586,4.201000213623047,1.22599995136261,31.28899955749512 -2229,2016-10-01 21:00:00,41.29800033569336,13.904999732971191,36.5629997253418,10.989999771118164,4.2220001220703125,1.3009999990463257,31.28899955749512 -2230,2016-10-01 22:00:00,41.04600143432617,14.241000175476074,36.0,11.043999671936035,4.2220001220703125,1.406999945640564,30.85000038146973 -2231,2016-10-01 23:00:00,38.78499984741211,13.73799991607666,34.820999145507805,11.071000099182127,4.030000209808351,0.0,30.6299991607666 -2232,2016-10-02 00:00:00,36.52299880981445,12.64900016784668,33.50699996948242,10.53499984741211,2.7929999828338623,0.0,30.40999984741211 -2233,2016-10-02 01:00:00,33.674999237060554,11.392000198364258,30.3439998626709,9.435999870300291,4.051000118255615,0.0,30.40999984741211 -2234,2016-10-02 02:00:00,35.349998474121094,12.062999725341797,32.08599853515625,9.890999794006348,2.8250000476837163,0.0,29.97100067138672 -2235,2016-10-02 03:00:00,35.85300064086914,12.39799976348877,31.92600059509277,9.972000122070312,4.243000030517578,0.0,29.750999450683597 -2236,2016-10-02 04:00:00,36.27199935913086,12.732999801635742,32.327999114990234,10.133000373840332,3.677999973297119,1.22599995136261,29.750999450683597 -2237,2016-10-02 05:00:00,36.43899917602539,12.732999801635742,32.59600067138672,10.052000045776367,4.914999961853027,0.0,29.750999450683597 -2238,2016-10-02 06:00:00,36.02000045776367,12.145999908447266,31.496999740600582,9.677000045776367,4.414000034332275,1.22599995136261,29.750999450683597 -2239,2016-10-02 07:00:00,37.025001525878906,11.979000091552734,33.667999267578125,9.838000297546388,2.6549999713897705,0.0,29.750999450683597 -2240,2016-10-02 08:00:00,35.349998474121094,9.800999641418455,31.06800079345703,7.585999965667725,3.891000032424927,0.0,29.750999450683597 -2241,2016-10-02 09:00:00,36.858001708984375,12.314000129699709,35.007999420166016,10.642000198364258,2.632999897003174,0.0,30.40999984741211 -2242,2016-10-02 10:00:00,33.088001251220696,9.465999603271484,31.06800079345703,7.77400016784668,2.632999897003174,0.0,31.069499969482425 -2243,2016-10-02 11:00:00,37.277000427246094,11.727999687194824,35.11600112915039,9.94499969482422,2.632999897003174,0.0,30.19050025939941 -2244,2016-10-02 12:00:00,37.52799987792969,12.145999908447266,35.678001403808594,10.347000122070312,2.632999897003174,0.0,29.5310001373291 -2245,2016-10-02 13:00:00,36.02000045776367,12.062999725341797,34.06999969482422,10.480999946594238,2.632999897003174,0.0,30.19050025939941 -2246,2016-10-02 14:00:00,36.104000091552734,12.39799976348877,34.01599884033203,10.855999946594238,2.632999897003174,0.0,30.40999984741211 -2247,2016-10-02 15:00:00,34.93099975585937,11.979000091552734,33.292999267578125,10.508000373840332,2.632999897003174,0.0,30.85000038146973 -2248,2016-10-02 16:00:00,38.70100021362305,13.402999877929688,35.86600112915039,11.232000350952148,2.632999897003174,0.0,30.6299991607666 -2249,2016-10-02 17:00:00,41.46500015258789,13.98900032043457,37.68899917602539,11.071000099182127,3.901999950408936,1.2899999618530271,29.09149932861328 -2250,2016-10-02 18:00:00,39.790000915527344,12.480999946594238,35.40999984741211,9.70400047302246,4.2109999656677255,0.0,27.77300071716309 -2251,2016-10-02 19:00:00,36.60699844360352,9.800999641418455,32.40800094604492,7.665999889373777,4.2109999656677255,0.0,27.55349922180176 -2252,2016-10-02 20:00:00,37.10900115966797,10.052000045776367,33.21200180053711,7.88100004196167,4.2109999656677255,0.0,27.77300071716309 -2253,2016-10-02 21:00:00,37.277000427246094,12.39799976348877,32.569000244140625,9.435999870300291,4.2109999656677255,1.3539999723434448,27.993000030517567 -2254,2016-10-02 22:00:00,37.946998596191406,12.64900016784668,33.50699996948242,9.972000122070312,4.125999927520752,1.22599995136261,28.212499618530277 -2255,2016-10-02 23:00:00,35.518001556396484,12.229999542236328,32.89099884033203,10.185999870300291,2.697000026702881,0.0,28.4325008392334 -2256,2016-10-03 00:00:00,34.345001220703125,11.392000198364258,29.72800064086914,9.034000396728516,3.9340000152587886,1.5140000581741333,28.4325008392334 -2257,2016-10-03 01:00:00,35.685001373291016,11.47599983215332,32.112998962402344,9.409000396728516,3.954999923706055,0.0,28.65200042724609 -2258,2016-10-03 02:00:00,36.77399826049805,12.5649995803833,32.569000244140625,9.99899959564209,3.954999923706055,1.6419999599456787,28.65200042724609 -2259,2016-10-03 03:00:00,33.088001251220696,9.717000007629396,29.64699935913086,7.71999979019165,2.697000026702881,0.0,28.65200042724609 -2260,2016-10-03 04:00:00,34.17699813842773,11.727999687194824,29.9689998626709,9.11400032043457,3.986999988555908,1.4179999828338623,28.65250015258789 -2261,2016-10-03 05:00:00,37.19300079345703,13.234999656677244,33.588001251220696,10.668999671936035,4.061999797821045,0.0,28.65250015258789 -2262,2016-10-03 06:00:00,39.70600128173828,13.402999877929688,35.40999984741211,10.588000297546388,4.061999797821045,0.0,28.871999740600582 -2263,2016-10-03 07:00:00,36.77399826049805,12.229999542236328,33.963001251220696,10.427000045776367,2.8359999656677246,0.0,29.09199905395508 -2264,2016-10-03 08:00:00,34.512001037597656,10.220000267028809,30.45100021362305,7.479000091552732,4.105000019073486,1.343000054359436,29.5310001373291 -2265,2016-10-03 09:00:00,36.27199935913086,11.392000198364258,34.472000122070305,9.623000144958496,2.0580000877380367,0.0,29.750999450683597 -2266,2016-10-03 10:00:00,34.512001037597656,9.717000007629396,32.54199981689453,8.175999641418457,2.0580000877380367,0.0,29.97100067138672 -2267,2016-10-03 11:00:00,40.29199981689453,13.487000465393065,38.11800003051758,11.553000450134276,2.0580000877380367,0.0,32.167999267578125 -2268,2016-10-03 12:00:00,39.53799819946289,12.984000205993652,37.34000015258789,11.043999671936035,2.0580000877380367,0.0,35.903499603271484 -2269,2016-10-03 13:00:00,39.11999893188477,13.487000465393065,37.01900100708008,11.28499984741211,2.0580000877380367,0.0,38.10049819946289 -2270,2016-10-03 14:00:00,38.78499984741211,13.402999877929688,36.83100128173828,11.5,2.0580000877380367,0.0,40.73749923706055 -2271,2016-10-03 15:00:00,38.28200149536133,13.402999877929688,36.13399887084961,11.418999671936035,2.0580000877380367,0.0,41.61600112915039 -2272,2016-10-03 16:00:00,40.29199981689453,15.07800006866455,38.01100158691406,12.78600025177002,2.0580000877380367,0.0,40.73699951171875 -2273,2016-10-03 17:00:00,37.52799987792969,13.402999877929688,33.93600082397461,10.937000274658203,3.5290000438690186,0.0,39.41899871826172 -2274,2016-10-03 18:00:00,42.63800048828125,15.07800006866455,38.43899917602539,12.142999649047852,4.829999923706055,1.246999979019165,37.00199890136719 -2275,2016-10-03 19:00:00,40.125,12.732999801635742,35.141998291015625,9.729999542236328,4.829999923706055,1.2369999885559082,34.365001678466804 -2276,2016-10-03 20:00:00,42.97299957275391,14.407999992370604,38.46599960327149,11.28499984741211,4.829999923706055,1.22599995136261,32.60699844360352 -2277,2016-10-03 21:00:00,42.1349983215332,15.246000289916992,38.35900115966797,12.331000328063965,3.614000082015991,1.246999979019165,31.72900009155273 -2278,2016-10-03 22:00:00,40.71099853515625,14.743000030517578,37.58200073242188,12.357000350952148,3.625,0.0,30.85000038146973 -2279,2016-10-03 23:00:00,37.69599914550781,12.732999801635742,34.57899856567383,10.45400047302246,2.559000015258789,0.0,30.40999984741211 -2280,2016-10-04 00:00:00,35.85300064086914,12.229999542236328,32.91699981689453,10.347000122070312,2.45199990272522,0.0,29.5310001373291 -2281,2016-10-04 01:00:00,32.333999633789055,9.29800033569336,29.083999633789062,7.34499979019165,3.677999973297119,0.0,29.09199905395508 -2282,2016-10-04 02:00:00,30.743000030517567,8.208999633789062,27.636999130249023,6.380000114440918,3.561000108718872,0.0,29.09199905395508 -2283,2016-10-04 03:00:00,31.99900054931641,8.963000297546387,28.54800033569336,7.23799991607666,3.4760000705718994,0.0,28.65200042724609 -2284,2016-10-04 04:00:00,36.104000091552734,12.314000129699709,33.400001525878906,10.37399959564209,3.240999937057495,0.0,28.21299934387207 -2285,2016-10-04 05:00:00,37.52799987792969,12.815999984741213,34.713001251220696,10.776000022888184,3.240999937057495,0.0,27.77300071716309 -2286,2016-10-04 06:00:00,38.28200149536133,12.815999984741213,35.35699844360352,10.401000022888184,3.240999937057495,0.0,27.77300071716309 -2287,2016-10-04 07:00:00,33.25600051879883,10.722000122070312,30.77300071716309,9.006999969482422,2.0150001049041752,0.0,27.55349922180176 -2288,2016-10-04 08:00:00,33.25600051879883,9.717000007629396,30.61199951171875,8.041999816894531,2.0150001049041752,0.0,28.65200042724609 -2289,2016-10-04 09:00:00,36.858001708984375,10.973999977111816,34.49900054931641,9.220999717712402,3.2730000019073486,0.0,30.40999984741211 -2290,2016-10-04 10:00:00,37.025001525878906,11.979000091552734,34.60599899291992,9.91800022125244,3.2730000019073486,0.0,32.387500762939446 -2291,2016-10-04 11:00:00,41.29800033569336,13.98900032043457,38.81499862670898,11.954999923706056,3.2730000019073486,0.0,33.48600006103516 -2292,2016-10-04 12:00:00,38.95199966430664,12.815999984741213,37.0989990234375,10.937000274658203,2.0469999313354488,0.0,34.14550018310547 -2293,2016-10-04 13:00:00,39.790000915527344,13.654000282287598,37.608001708984375,11.607000350952148,2.0469999313354488,0.0,34.365001678466804 -2294,2016-10-04 14:00:00,40.459999084472656,14.407999992370604,38.573001861572266,12.357000350952148,2.0469999313354488,0.0,34.365001678466804 -2295,2016-10-04 15:00:00,37.44400024414063,13.402999877929688,35.2760009765625,11.392000198364258,2.0469999313354488,0.0,34.365001678466804 -2296,2016-10-04 16:00:00,40.87900161743164,14.324000358581545,39.16299819946289,12.303999900817873,2.0469999313354488,0.0,33.70600128173828 -2297,2016-10-04 17:00:00,42.55400085449219,13.904999732971191,39.48500061035156,11.607000350952148,2.0469999313354488,0.0,33.04700088500977 -2298,2016-10-04 18:00:00,41.2140007019043,13.654000282287598,38.09099960327149,11.071000099182127,2.0469999313354488,0.0,32.167999267578125 -2299,2016-10-04 19:00:00,33.92599868774414,10.38700008392334,31.06800079345703,8.578000068664549,3.26200008392334,0.0,31.72900009155273 -2300,2016-10-04 20:00:00,40.125,11.895000457763672,35.91999816894531,8.711999893188478,3.26200008392334,1.22599995136261,31.50900077819824 -2301,2016-10-04 21:00:00,41.71599960327149,14.407999992370604,37.20600128173828,10.937000274658203,4.48799991607666,1.22599995136261,31.069499969482425 -2302,2016-10-04 22:00:00,42.1349983215332,15.246000289916992,37.42100143432617,11.767999649047852,4.605999946594238,1.22599995136261,30.6299991607666 -2303,2016-10-04 23:00:00,38.198001861572266,12.229999542236328,34.1510009765625,9.56999969482422,4.510000228881836,1.406999945640564,30.40999984741211 -2304,2016-10-05 00:00:00,39.790000915527344,14.407999992370604,34.766998291015625,10.937000274658203,4.510000228881836,1.406999945640564,30.40999984741211 -2305,2016-10-05 01:00:00,38.44900131225586,13.319000244140623,33.667999267578125,9.91800022125244,4.285999774932861,1.3969999551773071,30.40999984741211 -2306,2016-10-05 02:00:00,39.0359992980957,13.654000282287598,33.80199813842773,10.133000373840332,4.285999774932861,1.3969999551773071,30.19050025939941 -2307,2016-10-05 03:00:00,37.025001525878906,12.815999984741213,32.83700180053711,9.91800022125244,4.370999813079834,1.5570000410079956,30.19050025939941 -2308,2016-10-05 04:00:00,37.36100006103516,13.234999656677244,33.238998413085945,10.29300022125244,4.370999813079834,1.5570000410079956,29.97100067138672 -2309,2016-10-05 05:00:00,38.617000579833984,13.73799991607666,34.17699813842773,10.347000122070312,4.381999969482422,1.2150000333786009,29.750999450683597 -2310,2016-10-05 06:00:00,35.60100173950195,11.727999687194824,32.810001373291016,9.595999717712402,3.006999969482422,0.0,29.5310001373291 -2311,2016-10-05 07:00:00,39.95700073242188,13.73799991607666,36.1879997253418,10.937000274658203,4.2220001220703125,0.0,29.5310001373291 -2312,2016-10-05 08:00:00,34.09400177001953,10.220000267028809,31.28199958801269,7.98799991607666,2.984999895095825,1.2580000162124634,30.40999984741211 -2313,2016-10-05 09:00:00,38.617000579833984,12.732999801635742,36.13399887084961,10.347000122070312,2.984999895095825,0.0,32.60699844360352 -2314,2016-10-05 10:00:00,37.277000427246094,12.145999908447266,34.65999984741211,9.91800022125244,2.984999895095825,0.0,36.34249877929688 -2315,2016-10-05 11:00:00,40.87900161743164,13.98900032043457,38.30500030517578,11.847999572753904,2.984999895095825,0.0,38.540000915527344 -2316,2016-10-05 12:00:00,41.04600143432617,13.821999549865724,38.573001861572266,11.392000198364258,2.984999895095825,0.0,37.44150161743164 -2317,2016-10-05 13:00:00,40.29199981689453,14.576000213623049,38.33200073242188,12.303999900817873,2.984999895095825,0.0,37.00149917602539 -2318,2016-10-05 14:00:00,36.27199935913086,12.5649995803833,34.12400054931641,10.508000373840332,2.984999895095825,0.0,37.22150039672852 -2319,2016-10-05 15:00:00,39.790000915527344,14.743000030517578,37.79600143432617,11.954999923706056,2.984999895095825,0.0,38.10049819946289 -2320,2016-10-05 16:00:00,39.70600128173828,13.73799991607666,37.71599960327149,11.446000099182127,1.7380000352859497,0.0,38.10049819946289 -2321,2016-10-05 17:00:00,39.0359992980957,12.64900016784668,34.847000122070305,9.515999794006348,4.169000148773193,1.2150000333786009,37.44100189208984 -2322,2016-10-05 18:00:00,44.14599990844727,14.743000030517578,39.91400146484375,11.33899974822998,4.169000148773193,1.2150000333786009,36.12300109863281 -2323,2016-10-05 19:00:00,38.53300094604492,10.973999977111816,35.0620002746582,8.52400016784668,4.1579999923706055,1.2150000333786009,34.80500030517578 -2324,2016-10-05 20:00:00,41.71599960327149,12.64900016784668,36.96500015258789,9.11400032043457,5.491000175476074,2.4730000495910645,33.48600006103516 -2325,2016-10-05 21:00:00,39.20299911499024,13.234999656677244,35.35699844360352,10.267000198364258,4.829999923706055,1.3650000095367432,32.60699844360352 -2326,2016-10-05 22:00:00,43.05699920654297,14.91100025177002,38.30500030517578,11.579999923706056,4.361000061035156,1.2899999618530271,32.167999267578125 -2327,2016-10-05 23:00:00,39.874000549316406,14.072999954223633,35.25,10.74899959564209,3.891000032424927,1.3650000095367432,31.72900009155273 -2328,2016-10-06 00:00:00,35.518001556396484,12.64900016784668,30.961000442504893,9.677000045776367,4.935999870300293,1.3650000095367432,31.72900009155273 -2329,2016-10-06 01:00:00,38.53300094604492,13.319000244140623,34.391998291015625,10.105999946594238,3.795000076293945,1.3650000095367432,31.28899955749512 -2330,2016-10-06 02:00:00,34.429000854492195,11.895000457763672,30.316999435424805,8.925999641418457,3.561000108718872,1.3650000095367432,30.85000038146973 -2331,2016-10-06 03:00:00,33.590999603271484,11.309000015258787,29.37899971008301,8.390000343322754,5.011000156402588,1.3650000095367432,30.40999984741211 -2332,2016-10-06 04:00:00,33.84199905395508,12.229999542236328,29.70100021362305,9.220999717712402,4.797999858856201,1.3650000095367432,29.97100067138672 -2333,2016-10-06 05:00:00,38.95199966430664,13.487000465393065,34.257999420166016,10.401000022888184,4.499000072479248,1.3650000095367432,29.31150054931641 -2334,2016-10-06 06:00:00,40.29199981689453,13.98900032043457,35.91999816894531,10.989999771118164,4.499000072479248,1.3650000095367432,28.871999740600582 -2335,2016-10-06 07:00:00,39.95700073242188,13.904999732971191,36.3489990234375,10.614999771118164,4.190000057220459,1.22599995136261,28.871999740600582 -2336,2016-10-06 08:00:00,35.349998474121094,10.638999938964844,31.09499931335449,7.585999965667725,4.2220001220703125,1.22599995136261,29.31150054931641 -2337,2016-10-06 09:00:00,37.69599914550781,11.5600004196167,34.65999984741211,9.034000396728516,2.8359999656677246,1.2369999885559082,29.97050094604492 -2338,2016-10-06 10:00:00,37.77899932861328,12.64900016784668,35.35699844360352,10.588000297546388,2.8359999656677246,0.0,31.069499969482425 -2339,2016-10-06 11:00:00,42.55400085449219,15.07800006866455,38.86800003051758,11.928999900817873,2.8359999656677246,1.3009999990463257,32.167999267578125 -2340,2016-10-06 12:00:00,39.20299911499024,12.984000205993652,36.992000579833984,10.803000450134276,2.8359999656677246,0.0,33.04650115966797 -2341,2016-10-06 13:00:00,37.946998596191406,13.067999839782717,34.766998291015625,10.722000122070312,2.8359999656677246,0.0,33.486499786376946 -2342,2016-10-06 14:00:00,37.10900115966797,12.5649995803833,35.141998291015625,10.508000373840332,2.8359999656677246,0.0,33.486499786376946 -2343,2016-10-06 15:00:00,41.04600143432617,14.91100025177002,37.79600143432617,11.875,2.8359999656677246,1.3220000267028809,33.70600128173828 -2344,2016-10-06 16:00:00,41.71599960327149,14.91100025177002,38.14500045776367,12.03600025177002,2.8359999656677246,1.22599995136261,33.70600128173828 -2345,2016-10-06 17:00:00,44.39699935913086,15.664999961853027,39.94100189208984,11.954999923706056,4.178999900817871,1.3860000371932983,32.387500762939446 -2346,2016-10-06 18:00:00,43.391998291015625,14.91100025177002,39.055999755859375,11.66100025177002,4.178999900817871,1.3220000267028809,31.069499969482425 -2347,2016-10-06 19:00:00,40.71099853515625,12.5649995803833,34.632999420166016,8.578000068664549,5.714000225067139,1.3220000267028809,30.19050025939941 -2348,2016-10-06 20:00:00,39.37099838256836,11.895000457763672,34.955001831054695,8.711999893188478,4.446000099182129,1.3220000267028809,29.750999450683597 -2349,2016-10-06 21:00:00,41.88399887084961,13.821999549865724,38.14500045776367,10.803000450134276,4.48799991607666,1.3220000267028809,29.31150054931641 -2350,2016-10-06 22:00:00,42.55400085449219,14.91100025177002,37.608001708984375,11.258000373840332,5.736000061035156,1.3220000267028809,29.31150054931641 -2351,2016-10-06 23:00:00,40.459999084472656,14.407999992370604,37.2599983215332,11.472999572753904,4.040999889373778,1.3220000267028809,29.09199905395508 -2352,2016-10-07 00:00:00,38.78499984741211,13.98900032043457,33.292999267578125,10.401000022888184,5.043000221252441,1.3220000267028809,28.65200042724609 -2353,2016-10-07 01:00:00,39.53799819946289,13.487000465393065,34.472000122070305,10.052000045776367,5.10699987411499,2.559000015258789,28.21299934387207 -2354,2016-10-07 02:00:00,36.68999862670898,12.062999725341797,31.416000366210927,8.657999992370605,5.10699987411499,2.559000015258789,25.576499938964844 -2355,2016-10-07 03:00:00,38.36600112915039,13.152000427246096,33.05099868774414,9.91800022125244,5.10699987411499,1.2580000162124634,24.91699981689453 -2356,2016-10-07 04:00:00,37.025001525878906,12.984000205993652,32.22100067138672,9.91800022125244,5.127999782562256,1.3109999895095823,25.136999130249023 -2357,2016-10-07 05:00:00,37.10900115966797,12.815999984741213,33.31999969482422,10.37399959564209,3.433000087738037,0.0,25.57600021362305 -2358,2016-10-07 06:00:00,36.27199935913086,12.314000129699709,32.35499954223633,9.99899959564209,4.702000141143799,0.0,25.79599952697754 -2359,2016-10-07 07:00:00,39.11999893188477,13.487000465393065,34.12400054931641,10.427000045776367,4.776000022888184,1.4179999828338623,26.23550033569336 -2360,2016-10-07 08:00:00,37.61199951171875,11.979000091552734,32.273998260498054,8.470999717712402,4.776000022888184,1.4179999828338623,26.67499923706055 -2361,2016-10-07 09:00:00,39.37099838256836,11.895000457763672,36.027000427246094,9.302000045776367,3.059999942779541,0.0,26.67499923706055 -2362,2016-10-07 10:00:00,36.60699844360352,10.470999717712402,32.67599868774414,8.015000343322754,3.059999942779541,1.2899999618530271,26.015499114990234 -2363,2016-10-07 11:00:00,35.85300064086914,10.722000122070312,32.112998962402344,8.685000419616701,4.381999969482422,0.0,25.35650062561035 -2364,2016-10-07 12:00:00,40.54399871826172,11.644000053405762,37.34000015258789,9.354999542236328,3.16599988937378,0.0,23.818500518798828 -2365,2016-10-07 13:00:00,39.0359992980957,11.895000457763672,36.696998596191406,10.07900047302246,3.16599988937378,0.0,23.37849998474121 -2366,2016-10-07 14:00:00,39.0359992980957,12.64900016784668,36.1879997253418,10.31999969482422,3.16599988937378,0.0,23.37849998474121 -2367,2016-10-07 15:00:00,42.55400085449219,13.319000244140623,39.53799819946289,10.803000450134276,3.16599988937378,0.0,23.818500518798828 -2368,2016-10-07 16:00:00,43.05699920654297,13.402999877929688,39.69900131225586,10.829999923706056,3.16599988937378,0.0,24.477500915527344 -2369,2016-10-07 17:00:00,46.49100112915039,14.659000396728516,41.84400177001953,10.96399974822998,5.660999774932861,1.6100000143051147,24.477500915527344 -2370,2016-10-07 18:00:00,45.48600006103516,13.402999877929688,40.79800033569336,9.972000122070312,4.446000099182129,1.3969999551773071,24.477500915527344 -2371,2016-10-07 19:00:00,41.632999420166016,11.47599983215332,36.08100128173828,8.36299991607666,4.402999877929688,1.22599995136261,24.477500915527344 -2372,2016-10-07 20:00:00,42.72200012207031,11.392000198364258,37.608001708984375,8.255999565124513,5.309000015258789,1.4390000104904177,24.477500915527344 -2373,2016-10-07 21:00:00,42.47000122070313,11.895000457763672,37.5009994506836,8.685000419616701,5.267000198364258,1.3539999723434448,24.477500915527344 -2374,2016-10-07 22:00:00,42.47000122070313,13.152000427246096,37.98400115966797,10.159000396728516,5.235000133514403,1.3329999446868896,25.136999130249023 -2375,2016-10-07 23:00:00,41.38100051879883,13.402999877929688,36.45600128173828,9.94499969482422,5.127999782562256,1.2369999885559082,25.57600021362305 -2376,2016-10-08 00:00:00,40.54399871826172,13.402999877929688,36.0,10.267000198364258,3.6459999084472656,1.2580000162124634,26.016000747680664 -2377,2016-10-08 01:00:00,34.847000122070305,10.55500030517578,31.06800079345703,8.095000267028809,4.702000141143799,1.343000054359436,26.23550033569336 -2378,2016-10-08 02:00:00,33.757999420166016,9.885000228881836,29.298999786376957,7.532000064849853,4.797999858856201,1.2580000162124634,26.45499992370605 -2379,2016-10-08 03:00:00,29.15099906921387,8.628000259399414,24.5,6.111999988555907,4.797999858856201,1.5889999866485596,26.45499992370605 -2380,2016-10-08 04:00:00,33.005001068115234,9.717000007629396,29.27199935913086,7.61299991607666,4.787000179290772,1.2150000333786009,26.45499992370605 -2381,2016-10-08 05:00:00,38.95199966430664,11.979000091552734,34.23099899291992,9.354999542236328,4.74399995803833,1.2690000534057615,26.45499992370605 -2382,2016-10-08 06:00:00,38.70100021362305,11.727999687194824,34.097000122070305,8.819000244140625,4.74399995803833,1.2150000333786009,26.016000747680664 -2383,2016-10-08 07:00:00,40.20899963378906,12.314000129699709,35.73199844360352,9.248000144958496,4.573999881744385,1.2580000162124634,25.79599952697754 -2384,2016-10-08 08:00:00,36.77399826049805,9.633000373840332,32.112998962402344,6.888999938964844,4.563000202178955,1.2580000162124634,26.23550033569336 -2385,2016-10-08 09:00:00,41.54899978637695,12.480999946594238,38.41299819946289,9.756999969482422,3.2939999103546143,0.0,28.21299934387207 -2386,2016-10-08 10:00:00,36.68999862670898,9.21399974822998,33.90900039672852,7.130000114440918,2.0580000877380367,0.0,31.069499969482425 -2387,2016-10-08 11:00:00,38.28200149536133,11.810999870300291,35.222999572753906,9.220999717712402,3.2730000019073486,0.0,33.04650115966797 -2388,2016-10-08 12:00:00,41.2140007019043,14.491999626159668,38.59999847412109,11.33899974822998,3.26200008392334,1.2790000438690186,31.28899955749512 -2389,2016-10-08 13:00:00,41.38100051879883,14.743000030517578,39.13600158691406,12.41100025177002,3.26200008392334,0.0,32.82699966430664 -2390,2016-10-08 14:00:00,41.71599960327149,14.324000358581545,39.56499862670898,11.553000450134276,3.26200008392334,0.0,34.80500030517578 -2391,2016-10-08 15:00:00,40.87900161743164,13.56999969482422,37.90299987792969,10.803000450134276,3.26200008392334,0.0,35.24399948120117 -2392,2016-10-08 16:00:00,42.72200012207031,13.487000465393065,38.86800003051758,10.37399959564209,3.336999893188477,1.2150000333786009,34.365501403808594 -2393,2016-10-08 17:00:00,45.48600006103516,14.491999626159668,40.23500061035156,10.45400047302246,4.552000045776367,2.505000114440918,33.04700088500977 -2394,2016-10-08 18:00:00,46.65900039672852,14.659000396728516,41.54899978637695,10.614999771118164,4.894000053405762,1.4709999561309814,31.28899955749512 -2395,2016-10-08 19:00:00,38.86800003051758,10.052000045776367,35.49100112915039,7.559000015258789,2.9110000133514404,0.0,29.5310001373291 -2396,2016-10-08 20:00:00,41.04600143432617,13.234999656677244,38.14500045776367,10.31999969482422,4.169000148773193,0.0,28.21299934387207 -2397,2016-10-08 21:00:00,44.56499862670898,15.496999740600586,40.77199935913086,11.954999923706056,2.8570001125335693,1.406999945640564,27.333999633789062 -2398,2016-10-08 22:00:00,40.04100036621094,13.98900032043457,36.05400085449219,10.855999946594238,4.232999801635741,1.6419999599456787,26.895000457763672 -2399,2016-10-08 23:00:00,38.28200149536133,13.487000465393065,33.69499969482422,10.31999969482422,4.243000030517578,1.2150000333786009,26.45499992370605 -2400,2016-10-09 00:00:00,39.11999893188477,13.73799991607666,35.73199844360352,11.178000450134276,4.243000030517578,1.406999945640564,25.57600021362305 -2401,2016-10-09 01:00:00,38.86800003051758,13.234999656677244,34.98199844360352,10.347000122070312,4.072999954223634,1.493000030517578,24.477500915527344 -2402,2016-10-09 02:00:00,37.36100006103516,12.984000205993652,34.9010009765625,10.776000022888184,2.4089999198913574,0.0,23.598499298095703 -2403,2016-10-09 03:00:00,36.77399826049805,12.899999618530272,33.13199996948242,10.31999969482422,3.753000020980835,1.2150000333786009,23.15900039672852 -2404,2016-10-09 04:00:00,36.77399826049805,12.815999984741213,34.28499984741211,10.722000122070312,2.259999990463257,0.0,23.15900039672852 -2405,2016-10-09 05:00:00,34.93099975585937,12.229999542236328,31.871999740600582,10.133000373840332,3.614000082015991,0.0,22.93899917602539 -2406,2016-10-09 06:00:00,41.71599960327149,14.407999992370604,37.5009994506836,11.366000175476074,3.496999979019165,1.22599995136261,22.280500411987305 -2407,2016-10-09 07:00:00,39.874000549316406,13.487000465393065,37.42100143432617,11.392000198364258,2.1540000438690186,0.0,21.401500701904297 -2408,2016-10-09 08:00:00,37.025001525878906,11.225000381469728,32.91699981689453,8.282999992370605,4.787000179290772,1.406999945640564,22.5 -2409,2016-10-09 09:00:00,39.0359992980957,14.156999588012695,36.50899887084961,11.5,2.3350000381469727,1.22599995136261,25.136999130249023 -2410,2016-10-09 10:00:00,33.17200088500977,8.795999526977539,29.88800048828125,6.138999938964844,3.5720000267028813,1.5349999666213991,27.55349922180176 -2411,2016-10-09 11:00:00,36.60699844360352,10.722000122070312,33.15900039672852,7.639999866485598,3.5720000267028813,1.5349999666213991,29.31150054931641 -2412,2016-10-09 12:00:00,31.16200065612793,7.539000034332275,28.25300025939941,5.548999786376953,2.3350000381469727,0.0,30.410499572753903 -2413,2016-10-09 13:00:00,35.93600082397461,10.890000343322754,33.47999954223633,8.550999641418457,3.4649999141693115,1.2150000333786009,31.947999954223643 -2414,2016-10-09 14:00:00,36.27199935913086,10.13599967956543,32.72999954223633,7.532000064849853,3.4649999141693115,1.2369999885559082,32.607498168945305 -2415,2016-10-09 15:00:00,32.250999450683594,9.381999969482422,29.37899971008301,6.755000114440918,3.36899995803833,1.2790000438690186,31.728500366210927 -2416,2016-10-09 16:00:00,33.674999237060554,9.381999969482422,31.22900009155273,7.077000141143799,3.36899995803833,1.2790000438690186,30.410499572753903 -2417,2016-10-09 17:00:00,41.632999420166016,11.309000015258787,37.93000030517578,8.121999740600586,3.401000022888184,1.5670000314712524,29.5314998626709 -2418,2016-10-09 18:00:00,47.07799911499024,13.152000427246096,41.81700134277344,9.16800022125244,4.638000011444092,1.2150000333786009,28.4325008392334 -2419,2016-10-09 19:00:00,42.1349983215332,10.052000045776367,37.42100143432617,6.5939998626708975,4.808000087738037,1.2150000333786009,26.895000457763672 -2420,2016-10-09 20:00:00,40.459999084472656,11.47599983215332,34.955001831054695,7.665999889373777,5.756999969482423,2.45199990272522,26.016000747680664 -2421,2016-10-09 21:00:00,43.81100082397461,14.324000358581545,39.69900131225586,10.776000022888184,4.455999851226807,2.45199990272522,25.57600021362305 -2422,2016-10-09 22:00:00,44.0620002746582,14.659000396728516,38.84199905395508,10.427000045776367,4.455999851226807,2.45199990272522,24.91699981689453 -2423,2016-10-09 23:00:00,41.38100051879883,13.821999549865724,36.80400085449219,10.052000045776367,4.679999828338623,1.2580000162124634,24.477500915527344 -2424,2016-10-10 00:00:00,39.37099838256836,13.319000244140623,35.70500183105469,10.267000198364258,2.9210000038146973,1.5889999866485596,24.477500915527344 -2425,2016-10-10 01:00:00,38.78499984741211,12.480999946594238,34.01599884033203,9.274999618530272,4.201000213623047,1.3220000267028809,24.038000106811523 -2426,2016-10-10 02:00:00,36.27199935913086,11.5600004196167,33.90900039672852,9.381999969482422,2.632999897003174,0.0,23.598499298095703 -2427,2016-10-10 03:00:00,39.37099838256836,11.47599983215332,35.518001556396484,8.630999565124513,3.848999977111816,1.2369999885559082,23.37899971008301 -2428,2016-10-10 04:00:00,37.61199951171875,10.722000122070312,32.89099884033203,7.585999965667725,3.848999977111816,1.493000030517578,22.93899917602539 -2429,2016-10-10 05:00:00,38.44900131225586,11.5600004196167,33.31999969482422,8.229000091552733,4.74399995803833,1.493000030517578,22.06100082397461 -2430,2016-10-10 06:00:00,37.61199951171875,10.13599967956543,33.13199996948242,7.317999839782715,4.626999855041504,1.3650000095367432,21.621000289916992 -2431,2016-10-10 07:00:00,37.61199951171875,9.885000228881836,35.40999984741211,8.175999641418457,4.563000202178955,1.4179999828338623,21.840999603271484 -2432,2016-10-10 08:00:00,38.11399841308594,9.633000373840332,32.78300094604492,6.138999938964844,4.563000202178955,1.4179999828338623,23.15900039672852 -2433,2016-10-10 09:00:00,37.44400024414063,10.13599967956543,34.57899856567383,7.184000015258789,3.16599988937378,1.4179999828338623,25.57600021362305 -2434,2016-10-10 10:00:00,37.025001525878906,9.29800033569336,34.928001403808594,6.809000015258789,1.866000056266785,1.22599995136261,28.65200042724609 -2435,2016-10-10 11:00:00,42.72200012207031,12.732999801635742,39.45800018310547,9.48900032043457,3.0810000896453857,1.22599995136261,29.5310001373291 -2436,2016-10-10 12:00:00,43.55899810791016,14.072999954223633,40.82500076293945,11.392000198364258,3.16599988937378,0.0,30.6299991607666 -2437,2016-10-10 13:00:00,42.303001403808594,14.576000213623049,39.86000061035156,11.607000350952148,1.919000029563904,0.0,30.410499572753903 -2438,2016-10-10 14:00:00,41.79999923706055,15.07800006866455,40.20899963378906,12.491000175476074,1.9299999475479128,0.0,31.94849967956543 -2439,2016-10-10 15:00:00,41.46500015258789,14.743000030517578,39.887001037597656,12.277000427246096,1.9299999475479128,0.0,33.486499786376946 -2440,2016-10-10 16:00:00,45.82099914550781,15.748000144958494,41.040000915527344,11.982000350952148,4.59499979019165,1.2150000333786009,32.167999267578125 -2441,2016-10-10 17:00:00,45.73699951171875,15.329999923706056,41.54899978637695,11.5,4.4780001640319815,1.2150000333786009,31.069499969482425 -2442,2016-10-10 18:00:00,49.00400161743164,15.748000144958494,43.66699981689453,11.553000450134276,4.317999839782715,1.3220000267028809,29.750999450683597 -2443,2016-10-10 19:00:00,42.55400085449219,11.140999794006348,37.608001708984375,7.61299991607666,4.370999813079834,1.3220000267028809,29.09199905395508 -2444,2016-10-10 20:00:00,43.97800064086914,12.64900016784668,38.94900131225586,8.711999893188478,4.85099983215332,1.2369999885559082,28.65200042724609 -2445,2016-10-10 21:00:00,45.82099914550781,13.56999969482422,41.30799865722656,9.756999969482422,4.947000026702881,2.4730000495910645,27.993000030517567 -2446,2016-10-10 22:00:00,43.97800064086914,13.487000465393065,38.38600158691406,9.381999969482422,4.690999984741211,1.3329999446868896,27.55349922180176 -2447,2016-10-10 23:00:00,42.55400085449219,13.487000465393065,37.2599983215332,9.48900032043457,4.616000175476074,1.4819999933242798,27.11450004577637 -2448,2016-10-11 00:00:00,39.874000549316406,12.39799976348877,36.5629997253418,9.302000045776367,4.552000045776367,1.5140000581741333,26.67499923706055 -2449,2016-10-11 01:00:00,39.874000549316406,11.644000053405762,35.222999572753906,8.175999641418457,4.552000045776367,1.5140000581741333,26.67499923706055 -2450,2016-10-11 02:00:00,39.874000549316406,11.810999870300291,34.391998291015625,7.960999965667725,4.626999855041504,1.5140000581741333,26.23550033569336 -2451,2016-10-11 03:00:00,36.52299880981445,10.303000450134276,33.613998413085945,7.665999889373777,2.9749999046325684,1.5140000581741333,26.23550033569336 -2452,2016-10-11 04:00:00,37.52799987792969,11.057000160217283,32.30099868774414,7.77400016784668,4.48799991607666,1.4609999656677246,26.23550033569336 -2453,2016-10-11 05:00:00,36.77399826049805,10.55500030517578,32.810001373291016,7.88100004196167,3.2090001106262207,1.4290000200271606,25.79599952697754 -2454,2016-10-11 06:00:00,40.62699890136719,11.895000457763672,35.893001556396484,8.73900032043457,4.584000110626222,1.4290000200271606,25.57600021362305 -2455,2016-10-11 07:00:00,42.387001037597656,12.480999946594238,38.06399917602539,9.435999870300291,4.519999980926514,1.22599995136261,25.35650062561035 -2456,2016-10-11 08:00:00,36.60699844360352,10.220000267028809,32.97100067138672,7.532000064849853,4.519999980926514,1.662999987602234,25.79599952697754 -2457,2016-10-11 09:00:00,42.88899993896485,14.156999588012695,39.94100189208984,11.312000274658203,2.9210000038146973,1.2150000333786009,26.23550033569336 -2458,2016-10-11 10:00:00,39.0359992980957,11.644000053405762,35.678001403808594,8.657999992370605,2.9210000038146973,1.22599995136261,27.11450004577637 -2459,2016-10-11 11:00:00,41.79999923706055,11.979000091552734,39.64599990844727,9.48900032043457,2.9210000038146973,0.0,27.773500442504893 -2460,2016-10-11 12:00:00,41.71599960327149,13.319000244140623,39.80699920654297,10.722000122070312,2.9210000038146973,0.0,28.212499618530277 -2461,2016-10-11 13:00:00,40.54399871826172,13.487000465393065,37.42100143432617,10.588000297546388,2.9210000038146973,1.246999979019165,28.4325008392334 -2462,2016-10-11 14:00:00,40.04100036621094,13.904999732971191,37.1259994506836,11.204999923706056,2.9210000038146973,1.5570000410079956,28.4325008392334 -2463,2016-10-11 15:00:00,43.47600173950195,14.324000358581545,40.87900161743164,11.526000022888184,2.9210000038146973,0.0,28.4325008392334 -2464,2016-10-11 16:00:00,39.95700073242188,12.899999618530272,37.742000579833984,10.31999969482422,2.9210000038146973,0.0,28.21299934387207 -2465,2016-10-11 17:00:00,47.915000915527344,14.91100025177002,42.70199966430664,10.96399974822998,4.125999927520752,1.5140000581741333,27.77300071716309 -2466,2016-10-11 18:00:00,48.41799926757813,15.246000289916992,43.96099853515625,11.151000022888184,4.243000030517578,1.5140000581741333,27.77300071716309 -2467,2016-10-11 19:00:00,40.71099853515625,11.140999794006348,36.3489990234375,7.639999866485598,4.541999816894531,1.5140000581741333,27.333999633789062 -2468,2016-10-11 20:00:00,41.04600143432617,10.55500030517578,36.0,6.835000038146973,4.541999816894531,1.5140000581741333,27.333999633789062 -2469,2016-10-11 21:00:00,46.65900039672852,14.994000434875488,41.36100006103516,10.668999671936035,6.204999923706055,1.5140000581741333,26.895000457763672 -2470,2016-10-11 22:00:00,44.3129997253418,14.659000396728516,39.35100173950195,10.803000450134276,4.232999801635741,1.2690000534057615,26.45499992370605 -2471,2016-10-11 23:00:00,40.459999084472656,13.067999839782717,36.375,9.838000297546388,4.947000026702881,2.569000005722046,26.45499992370605 -2472,2016-10-12 00:00:00,38.53300094604492,12.480999946594238,34.06999969482422,9.461999893188477,4.061999797821045,1.22599995136261,25.35650062561035 -2473,2016-10-12 01:00:00,39.95700073242188,12.145999908447266,36.13399887084961,9.32800006866455,4.008999824523927,1.3009999990463257,23.15900039672852 -2474,2016-10-12 02:00:00,38.198001861572266,11.225000381469728,34.472000122070305,8.578000068664549,3.1559998989105225,1.493000030517578,22.71949958801269 -2475,2016-10-12 03:00:00,34.261001586914055,10.38700008392334,31.871999740600582,8.14900016784668,2.377000093460083,0.0,22.93899917602539 -2476,2016-10-12 04:00:00,36.94200134277344,11.225000381469728,32.46200180053711,8.229000091552733,3.785000085830689,2.463000059127808,22.71949958801269 -2477,2016-10-12 05:00:00,39.0359992980957,12.314000129699709,35.972999572753906,9.890999794006348,3.36899995803833,0.0,22.5 -2478,2016-10-12 06:00:00,38.03099822998047,11.895000457763672,34.713001251220696,9.595999717712402,3.0699999332427983,0.0,21.840999603271484 -2479,2016-10-12 07:00:00,40.71099853515625,12.815999984741213,36.96500015258789,9.94499969482422,4.040999889373778,1.2899999618530271,22.06100082397461 -2480,2016-10-12 08:00:00,34.93099975585937,9.717000007629396,31.17499923706055,7.184000015258789,4.040999889373778,1.2369999885559082,22.71949958801269 -2481,2016-10-12 09:00:00,39.790000915527344,12.145999908447266,37.15299987792969,9.302000045776367,2.815000057220459,1.2150000333786009,23.598499298095703 -2482,2016-10-12 10:00:00,40.71099853515625,11.644000053405762,37.6349983215332,8.36299991607666,2.815000057220459,1.2150000333786009,25.136999130249023 -2483,2016-10-12 11:00:00,43.89400100708008,13.904999732971191,41.84400177001953,10.829999923706056,2.815000057220459,1.2899999618530271,25.57600021362305 -2484,2016-10-12 12:00:00,44.229000091552734,13.73799991607666,41.11999893188477,10.53499984741211,2.815000057220459,1.246999979019165,26.016000747680664 -2485,2016-10-12 13:00:00,43.30799865722656,14.241000175476074,40.87900161743164,11.312000274658203,2.815000057220459,1.2150000333786009,27.11450004577637 -2486,2016-10-12 14:00:00,42.05199813842773,14.241000175476074,39.887001037597656,11.366000175476074,2.815000057220459,1.2150000333786009,27.993000030517567 -2487,2016-10-12 15:00:00,44.39699935913086,14.82699966430664,40.66400146484375,11.633999824523926,2.815000057220459,1.2369999885559082,28.4325008392334 -2488,2016-10-12 16:00:00,41.96799850463867,13.152000427246096,39.02899932861328,10.29300022125244,2.719000101089477,1.2369999885559082,28.4325008392334 -2489,2016-10-12 17:00:00,48.08300018310547,14.994000434875488,42.67499923706055,10.614999771118164,5.383999824523926,2.483999967575073,28.4325008392334 -2490,2016-10-12 18:00:00,48.91999816894531,15.246000289916992,43.69300079345703,10.883000373840332,5.447999954223633,1.22599995136261,27.993000030517567 -2491,2016-10-12 19:00:00,41.96799850463867,11.5600004196167,38.46599960327149,8.282999992370605,3.986999988555908,1.22599995136261,27.55349922180176 -2492,2016-10-12 20:00:00,44.900001525878906,13.067999839782717,40.50299835205078,9.515999794006348,5.276999950408936,1.524999976158142,27.11450004577637 -2493,2016-10-12 21:00:00,44.900001525878906,13.98900032043457,40.63800048828125,10.508000373840332,4.030000209808351,1.22599995136261,26.895000457763672 -2494,2016-10-12 22:00:00,42.63800048828125,13.234999656677244,38.73400115966797,9.99899959564209,4.030000209808351,1.22599995136261,26.67499923706055 -2495,2016-10-12 23:00:00,41.88399887084961,12.480999946594238,38.0369987487793,9.354999542236328,4.190000057220459,1.2150000333786009,26.45499992370605 -2496,2016-10-13 00:00:00,40.20899963378906,12.64900016784668,36.483001708984375,9.595999717712402,4.040999889373778,1.4179999828338623,26.45499992370605 -2497,2016-10-13 01:00:00,39.20299911499024,11.5600004196167,35.303001403808594,8.36299991607666,4.040999889373778,1.4179999828338623,26.23550033569336 -2498,2016-10-13 02:00:00,39.0359992980957,11.5600004196167,34.98199844360352,8.282999992370605,3.858999967575073,1.3109999895095823,26.23550033569336 -2499,2016-10-13 03:00:00,38.36600112915039,11.225000381469728,35.35699844360352,8.52400016784668,3.858999967575073,1.3109999895095823,26.23550033569336 -2500,2016-10-13 04:00:00,39.53799819946289,11.979000091552734,35.35699844360352,8.791999816894531,3.9660000801086426,1.3109999895095823,26.23550033569336 -2501,2016-10-13 05:00:00,40.62699890136719,12.314000129699709,37.18000030517578,9.248000144958496,3.954999923706055,1.3109999895095823,25.57600021362305 -2502,2016-10-13 06:00:00,37.61199951171875,11.057000160217283,33.64099884033203,8.36299991607666,3.954999923706055,1.2690000534057615,25.57600021362305 -2503,2016-10-13 07:00:00,43.391998291015625,12.39799976348877,38.17100143432617,9.220999717712402,4.254000186920166,1.22599995136261,25.57600021362305 -2504,2016-10-13 08:00:00,36.94200134277344,9.633000373840332,32.35499954223633,6.486999988555907,4.254000186920166,1.22599995136261,25.35650062561035 -2505,2016-10-13 09:00:00,43.30799865722656,13.73799991607666,40.55699920654297,10.90999984741211,2.984999895095825,0.0,26.016000747680664 -2506,2016-10-13 10:00:00,38.95199966430664,10.220000267028809,36.0,8.041999816894531,2.984999895095825,0.0,26.23550033569336 -2507,2016-10-13 11:00:00,42.47000122070313,11.47599983215332,39.53799819946289,8.845999717712402,2.984999895095825,0.0,26.67499923706055 -2508,2016-10-13 12:00:00,41.04600143432617,12.480999946594238,38.06399917602539,9.99899959564209,3.11299991607666,0.0,27.11450004577637 -2509,2016-10-13 13:00:00,43.391998291015625,14.241000175476074,40.04800033569336,11.472999572753904,3.11299991607666,0.0,27.333999633789062 -2510,2016-10-13 14:00:00,40.54399871826172,13.73799991607666,37.5009994506836,11.071000099182127,3.11299991607666,0.0,27.333999633789062 -2511,2016-10-13 15:00:00,41.04600143432617,14.241000175476074,38.30500030517578,11.526000022888184,3.11299991607666,0.0,27.333999633789062 -2512,2016-10-13 16:00:00,47.07799911499024,16.250999450683597,42.72800064086914,12.437999725341797,4.381999969482422,1.6100000143051147,27.11450004577637 -2513,2016-10-13 17:00:00,49.50699996948242,16.083000183105472,43.15700149536133,11.526000022888184,5.651000022888184,1.6100000143051147,27.11450004577637 -2514,2016-10-13 18:00:00,48.584999084472656,15.748000144958494,43.23799896240234,11.607000350952148,5.736000061035156,1.6100000143051147,26.895000457763672 -2515,2016-10-13 19:00:00,44.983001708984375,13.904999732971191,38.81499862670898,9.56999969482422,5.736000061035156,1.6100000143051147,26.67499923706055 -2516,2016-10-13 20:00:00,44.900001525878906,13.487000465393065,39.512001037597656,9.623000144958496,5.2129998207092285,1.246999979019165,25.57600021362305 -2517,2016-10-13 21:00:00,45.65399932861328,14.659000396728516,41.73699951171875,11.017000198364258,3.954999923706055,1.3860000371932983,24.257999420166016 -2518,2016-10-13 22:00:00,44.39699935913086,14.576000213623049,38.70800018310547,10.614999771118164,5.203000068664551,1.3860000371932983,24.257999420166016 -2519,2016-10-13 23:00:00,43.55899810791016,14.241000175476074,38.46599960327149,10.401000022888184,5.14900016784668,1.3860000371932983,24.477500915527344 -2520,2016-10-14 00:00:00,40.62699890136719,13.904999732971191,36.0,10.185999870300291,4.9790000915527335,1.3860000371932983,24.477500915527344 -2521,2016-10-14 01:00:00,40.04100036621094,12.480999946594238,35.007999420166016,9.086999893188477,4.9790000915527335,1.3860000371932983,24.477500915527344 -2522,2016-10-14 02:00:00,40.125,12.39799976348877,35.518001556396484,9.140999794006348,4.947000026702881,1.3009999990463257,24.477500915527344 -2523,2016-10-14 03:00:00,39.0359992980957,12.314000129699709,34.65999984741211,8.845999717712402,3.688999891281128,1.3009999990463257,24.257999420166016 -2524,2016-10-14 04:00:00,39.874000549316406,12.64900016784668,35.7859992980957,9.54300022125244,4.48799991607666,1.3539999723434448,22.71949958801269 -2525,2016-10-14 05:00:00,40.87900161743164,12.899999618530272,36.1879997253418,9.435999870300291,4.414000034332275,1.503000020980835,22.280500411987305 -2526,2016-10-14 06:00:00,38.78499984741211,12.314000129699709,33.775001525878906,9.086999893188477,4.541999816894531,1.503000020980835,22.06100082397461 -2527,2016-10-14 07:00:00,42.21900177001953,13.402999877929688,37.01900100708008,9.838000297546388,4.519999980926514,1.3329999446868896,21.840999603271484 -2528,2016-10-14 08:00:00,38.198001861572266,11.140999794006348,33.963001251220696,8.14900016784668,4.552000045776367,1.3329999446868896,22.71949958801269 -2529,2016-10-14 09:00:00,44.3129997253418,15.161999702453612,41.38800048828125,12.116000175476074,3.2090001106262207,0.0,22.93899917602539 -2530,2016-10-14 10:00:00,38.86800003051758,10.722000122070312,36.402000427246094,8.444000244140625,3.2090001106262207,0.0,23.37899971008301 -2531,2016-10-14 11:00:00,42.63800048828125,12.480999946594238,39.00199890136719,9.48900032043457,3.2090001106262207,1.2899999618530271,23.81800079345703 -2532,2016-10-14 12:00:00,43.14099884033203,13.152000427246096,40.39599990844727,10.239999771118164,3.2090001106262207,0.0,23.598499298095703 -2533,2016-10-14 13:00:00,44.14599990844727,15.07800006866455,40.61100006103516,12.062999725341797,3.2090001106262207,0.0,23.81800079345703 -2534,2016-10-14 14:00:00,40.9630012512207,13.402999877929688,38.27899932861328,10.722000122070312,3.2090001106262207,0.0,24.477500915527344 -2535,2016-10-14 15:00:00,45.48600006103516,15.246000289916992,42.00500106811523,12.142999649047852,3.2090001106262207,1.2150000333786009,24.257999420166016 -2536,2016-10-14 16:00:00,46.40700149536133,15.581000328063965,42.54100036621094,12.116000175476074,3.2090001106262207,1.2150000333786009,24.477500915527344 -2537,2016-10-14 17:00:00,48.75299835205078,16.166999816894528,43.23799896240234,11.847999572753904,5.629000186920166,1.5460000038146973,25.35650062561035 -2538,2016-10-14 18:00:00,48.08300018310547,14.91100025177002,43.45199966430664,11.071000099182127,4.243000030517578,1.5460000038146973,25.79599952697754 -2539,2016-10-14 19:00:00,43.47600173950195,12.39799976348877,37.93000030517578,8.578000068664549,5.5329999923706055,1.5460000038146973,26.23550033569336 -2540,2016-10-14 20:00:00,41.79999923706055,11.810999870300291,36.50899887084961,8.203000068664549,5.244999885559082,1.2690000534057615,26.23550033569336 -2541,2016-10-14 21:00:00,44.3129997253418,14.324000358581545,40.74499893188477,11.232000350952148,3.496999979019165,1.7269999980926514,26.23550033569336 -2542,2016-10-14 22:00:00,43.47600173950195,14.491999626159668,38.84199905395508,10.776000022888184,4.765999794006348,1.7269999980926514,26.016000747680664 -2543,2016-10-14 23:00:00,40.71099853515625,12.984000205993652,37.90299987792969,10.159000396728516,3.1879999637603764,0.0,25.57600021362305 -2544,2016-10-15 00:00:00,40.9630012512207,13.56999969482422,36.9379997253418,10.052000045776367,3.2939999103546143,1.3650000095367432,25.57600021362305 -2545,2016-10-15 01:00:00,39.790000915527344,12.5649995803833,35.54399871826172,9.435999870300291,4.519999980926514,1.4500000476837158,24.69700050354004 -2546,2016-10-15 02:00:00,38.78499984741211,11.727999687194824,33.990001678466804,8.444000244140625,4.434999942779541,1.4500000476837158,24.477500915527344 -2547,2016-10-15 03:00:00,35.014999389648445,10.303000450134276,31.28199958801269,7.747000217437744,4.446000099182129,1.2150000333786009,23.81800079345703 -2548,2016-10-15 04:00:00,35.685001373291016,11.057000160217283,31.336000442504893,8.041999816894531,4.446000099182129,1.63100004196167,23.81800079345703 -2549,2016-10-15 05:00:00,41.2140007019043,13.402999877929688,37.1259994506836,10.427000045776367,3.16599988937378,1.246999979019165,23.598499298095703 -2550,2016-10-15 06:00:00,42.55400085449219,13.73799991607666,38.11800003051758,10.45400047302246,4.381999969482422,1.246999979019165,23.598499298095703 -2551,2016-10-15 07:00:00,40.79499816894531,12.732999801635742,37.84999847412109,9.94499969482422,3.0699999332427983,0.0,23.598499298095703 -2552,2016-10-15 08:00:00,37.61199951171875,11.47599983215332,34.79399871826172,8.685000419616701,3.0699999332427983,1.2690000534057615,23.15900039672852 -2553,2016-10-15 09:00:00,42.97299957275391,14.241000175476074,40.15499877929688,11.151000022888184,3.0699999332427983,1.246999979019165,23.37899971008301 -2554,2016-10-15 10:00:00,44.81600189208984,15.581000328063965,42.38000106811523,12.678999900817873,3.0699999332427983,0.0,24.69700050354004 -2555,2016-10-15 11:00:00,42.63800048828125,14.407999992370604,40.45000076293945,11.982000350952148,3.0699999332427983,0.0,26.23550033569336 -2556,2016-10-15 12:00:00,42.63800048828125,13.152000427246096,40.52999877929688,10.989999771118164,3.0699999332427983,0.0,27.55349922180176 -2557,2016-10-15 13:00:00,42.47000122070313,13.98900032043457,40.34299850463867,11.633999824523926,3.0699999332427983,0.0,28.4325008392334 -2558,2016-10-15 14:00:00,41.79999923706055,13.654000282287598,39.77999877929688,11.312000274658203,1.8550000190734863,0.0,28.65200042724609 -2559,2016-10-15 15:00:00,41.04600143432617,13.73799991607666,38.76100158691406,11.12399959564209,1.8550000190734863,0.0,29.31150054931641 -2560,2016-10-15 16:00:00,40.9630012512207,13.152000427246096,38.0369987487793,10.69499969482422,3.0810000896453857,0.0,29.5310001373291 -2561,2016-10-15 17:00:00,42.80500030517578,13.067999839782717,38.78799819946289,10.024999618530272,4.307000160217285,1.3009999990463257,29.5310001373291 -2562,2016-10-15 18:00:00,47.49599838256836,14.994000434875488,42.75500106811523,11.178000450134276,4.178999900817871,1.22599995136261,29.5310001373291 -2563,2016-10-15 19:00:00,36.94200134277344,10.38700008392334,32.59600067138672,7.747000217437744,4.201000213623047,1.3539999723434448,29.5310001373291 -2564,2016-10-15 20:00:00,40.71099853515625,12.5649995803833,36.13399887084961,9.354999542236328,4.1579999923706055,1.2580000162124634,29.31150054931641 -2565,2016-10-15 21:00:00,45.82099914550781,15.748000144958494,40.39599990844727,11.954999923706056,5.61899995803833,1.2580000162124634,28.871999740600582 -2566,2016-10-15 22:00:00,41.632999420166016,13.98900032043457,36.64300155639648,10.588000297546388,5.5329999923706055,1.2580000162124634,28.65250015258789 -2567,2016-10-15 23:00:00,39.2869987487793,12.815999984741213,34.87400054931641,10.133000373840332,4.2109999656677255,1.2580000162124634,28.871999740600582 -2568,2016-10-16 00:00:00,35.014999389648445,11.5600004196167,31.496999740600582,9.006999969482422,4.2109999656677255,1.2580000162124634,29.09199905395508 -2569,2016-10-16 01:00:00,39.95700073242188,13.487000465393065,35.57099914550781,10.159000396728516,4.328999996185304,1.2369999885559082,28.871999740600582 -2570,2016-10-16 02:00:00,38.95199966430664,13.234999656677244,34.766998291015625,10.185999870300291,4.446000099182129,1.6529999971389768,28.871999740600582 -2571,2016-10-16 03:00:00,36.60699844360352,12.314000129699709,32.112998962402344,9.354999542236328,4.361000061035156,1.2369999885559082,28.4325008392334 -2572,2016-10-16 04:00:00,34.68000030517578,11.392000198364258,30.85300064086914,8.899999618530273,4.232999801635741,0.0,28.21299934387207 -2573,2016-10-16 05:00:00,41.29800033569336,14.241000175476074,36.3489990234375,10.855999946594238,4.232999801635741,1.2150000333786009,28.21299934387207 -2574,2016-10-16 06:00:00,41.46500015258789,13.56999969482422,36.696998596191406,10.560999870300291,4.1469998359680185,1.3539999723434448,27.993000030517567 -2575,2016-10-16 07:00:00,41.29800033569336,13.487000465393065,37.58200073242188,10.989999771118164,4.13700008392334,0.0,27.77300071716309 -2576,2016-10-16 08:00:00,37.86299896240234,11.057000160217283,32.810001373291016,7.77400016784668,5.352000236511231,1.2899999618530271,27.993000030517567 -2577,2016-10-16 09:00:00,41.632999420166016,12.5649995803833,38.86800003051758,9.91800022125244,2.4089999198913574,0.0,28.4325008392334 -2578,2016-10-16 10:00:00,42.63800048828125,14.407999992370604,39.86000061035156,11.71399974822998,2.430999994277954,0.0,29.5310001373291 -2579,2016-10-16 11:00:00,42.303001403808594,13.904999732971191,38.81499862670898,10.90999984741211,3.625,1.2150000333786009,30.84950065612793 -2580,2016-10-16 12:00:00,43.55899810791016,13.98900032043457,40.18199920654297,10.989999771118164,2.377000093460083,0.0,31.50900077819824 -2581,2016-10-16 13:00:00,42.72200012207031,14.156999588012695,39.91400146484375,11.5,2.3559999465942383,0.0,31.94849967956543 -2582,2016-10-16 14:00:00,38.86800003051758,13.904999732971191,36.3489990234375,11.312000274658203,2.4200000762939453,0.0,31.94849967956543 -2583,2016-10-16 15:00:00,39.790000915527344,13.904999732971191,37.6619987487793,11.204999923706056,2.345999956130981,1.406999945640564,32.607498168945305 -2584,2016-10-16 16:00:00,44.56499862670898,14.91100025177002,40.45000076293945,11.446000099182127,3.4649999141693115,1.2150000333786009,32.167999267578125 -2585,2016-10-16 17:00:00,44.229000091552734,14.743000030517578,38.70800018310547,10.829999923706056,5.0320000648498535,2.5269999504089355,31.289499282836918 -2586,2016-10-16 18:00:00,46.15599822998047,14.072999954223633,41.89699935913086,10.668999671936035,4.829999923706055,1.493000030517578,30.6299991607666 -2587,2016-10-16 19:00:00,43.55899810791016,12.984000205993652,37.93000030517578,9.086999893188477,4.829999923706055,1.4709999561309814,30.19050025939941 -2588,2016-10-16 20:00:00,42.303001403808594,12.145999908447266,37.79600143432617,8.845999717712402,4.702000141143799,0.0,29.97100067138672 -2589,2016-10-16 21:00:00,43.81100082397461,14.407999992370604,38.30500030517578,10.53499984741211,4.605999946594238,1.2150000333786009,29.5310001373291 -2590,2016-10-16 22:00:00,43.30799865722656,14.743000030517578,38.35900115966797,11.178000450134276,4.626999855041504,1.246999979019165,29.09199905395508 -2591,2016-10-16 23:00:00,37.946998596191406,12.39799976348877,35.19599914550781,9.649999618530272,3.4440000057220463,2.5160000324249268,29.09199905395508 -2592,2016-10-17 00:00:00,39.37099838256836,13.73799991607666,34.042999267578125,9.972000122070312,4.829999923706055,2.505000114440918,28.65200042724609 -2593,2016-10-17 01:00:00,38.70100021362305,13.152000427246096,34.338001251220696,9.838000297546388,3.838000059127808,1.2790000438690186,28.21299934387207 -2594,2016-10-17 02:00:00,39.20299911499024,13.234999656677244,34.257999420166016,9.864999771118164,5.052999973297119,1.2790000438690186,27.77300071716309 -2595,2016-10-17 03:00:00,35.43399810791016,11.309000015258787,31.631000518798828,8.578000068664549,3.869999885559082,1.3539999723434448,26.895000457763672 -2596,2016-10-17 04:00:00,39.11999893188477,13.487000465393065,34.740001678466804,10.239999771118164,5.171000003814697,1.3539999723434448,26.23550033569336 -2597,2016-10-17 05:00:00,36.94200134277344,12.732999801635742,31.60400009155273,9.220999717712402,5.117000102996826,1.3539999723434448,25.79599952697754 -2598,2016-10-17 06:00:00,40.3759994506836,12.815999984741213,36.42900085449219,9.784000396728516,3.901999950408936,1.3539999723434448,25.79599952697754 -2599,2016-10-17 07:00:00,42.303001403808594,14.156999588012695,38.0369987487793,10.776000022888184,3.901999950408936,1.5460000038146973,25.79599952697754 -2600,2016-10-17 08:00:00,35.85300064086914,9.885000228881836,32.38100051879883,7.34499979019165,3.901999950408936,1.5460000038146973,26.23550033569336 -2601,2016-10-17 09:00:00,43.97800064086914,16.083000183105472,40.42300033569336,12.706000328063965,3.7739999294281006,1.22599995136261,28.4325008392334 -2602,2016-10-17 10:00:00,40.459999084472656,12.5649995803833,36.24100112915039,9.48900032043457,3.7739999294281006,1.2369999885559082,29.31150054931641 -2603,2016-10-17 11:00:00,40.125,11.979000091552734,36.9379997253418,9.034000396728516,2.430999994277954,1.2369999885559082,30.19050025939941 -2604,2016-10-17 12:00:00,42.387001037597656,14.407999992370604,39.430999755859375,11.633999824523926,2.440999984741211,1.2369999885559082,31.947999954223643 -2605,2016-10-17 13:00:00,42.387001037597656,15.329999923706056,40.04800033569336,12.41100025177002,2.4730000495910645,1.2580000162124634,35.68349838256836 -2606,2016-10-17 14:00:00,42.55400085449219,15.748000144958494,39.48500061035156,12.383999824523926,3.7100000381469727,1.2580000162124634,36.5625 -2607,2016-10-17 15:00:00,45.56999969482422,16.753999710083008,41.44200134277344,12.84000015258789,3.7100000381469727,1.2580000162124634,35.24449920654297 -2608,2016-10-17 16:00:00,42.72200012207031,14.659000396728516,38.65399932861328,11.312000274658203,3.7100000381469727,1.2580000162124634,33.70600128173828 -2609,2016-10-17 17:00:00,46.071998596191406,15.664999961853027,41.46799850463867,11.687000274658203,4.935999870300293,1.2580000162124634,32.387500762939446 -2610,2016-10-17 18:00:00,48.66899871826172,16.083000183105472,42.86199951171875,11.633999824523926,6.172999858856201,1.2580000162124634,31.50900077819824 -2611,2016-10-17 19:00:00,41.96799850463867,12.145999908447266,37.2869987487793,8.657999992370605,4.6589999198913565,1.343000054359436,30.85000038146973 -2612,2016-10-17 20:00:00,40.79499816894531,11.727999687194824,35.893001556396484,8.390000343322754,4.6479997634887695,2.632999897003174,29.97100067138672 -2613,2016-10-17 21:00:00,41.71599960327149,12.229999542236328,37.34000015258789,8.899999618530273,4.74399995803833,1.3539999723434448,29.5310001373291 -2614,2016-10-17 22:00:00,39.11999893188477,13.402999877929688,34.06999969482422,9.623000144958496,4.74399995803833,1.3539999723434448,29.09199905395508 -2615,2016-10-17 23:00:00,33.92599868774414,10.722000122070312,28.708999633789062,7.559000015258789,4.808000087738037,1.3539999723434448,28.871999740600582 -2616,2016-10-18 00:00:00,37.86299896240234,12.062999725341797,33.26599884033203,8.791999816894531,4.808000087738037,1.3539999723434448,28.65200042724609 -2617,2016-10-18 01:00:00,39.2869987487793,13.402999877929688,34.632999420166016,9.972000122070312,4.7230000495910645,1.22599995136261,28.65200042724609 -2618,2016-10-18 02:00:00,35.518001556396484,12.145999908447266,32.16699981689453,9.515999794006348,3.4760000705718994,1.22599995136261,27.993000030517567 -2619,2016-10-18 03:00:00,40.29199981689453,13.654000282287598,35.652000427246094,10.267000198364258,4.626999855041504,1.22599995136261,27.993000030517567 -2620,2016-10-18 04:00:00,37.61199951171875,12.899999618530272,34.097000122070305,10.159000396728516,3.7100000381469727,1.5889999866485596,27.993000030517567 -2621,2016-10-18 05:00:00,42.55400085449219,15.07800006866455,37.98400115966797,11.687000274658203,3.677999973297119,1.5889999866485596,27.77300071716309 -2622,2016-10-18 06:00:00,37.69599914550781,12.314000129699709,34.17699813842773,9.729999542236328,3.26200008392334,1.246999979019165,27.77300071716309 -2623,2016-10-18 07:00:00,43.89400100708008,14.659000396728516,39.48500061035156,11.33899974822998,4.499000072479248,1.2690000534057615,27.55349922180176 -2624,2016-10-18 08:00:00,41.632999420166016,12.732999801635742,36.45600128173828,9.194000244140623,5.436999797821045,1.22599995136261,27.55349922180176 -2625,2016-10-18 09:00:00,44.39699935913086,15.246000289916992,40.71799850463867,12.222999572753904,4.2109999656677255,1.2150000333786009,28.4325008392334 -2626,2016-10-18 10:00:00,39.53799819946289,12.062999725341797,37.233001708984375,9.56999969482422,2.664999961853028,0.0,29.31150054931641 -2627,2016-10-18 11:00:00,39.53799819946289,11.810999870300291,35.222999572753906,8.604999542236326,3.954999923706055,1.2690000534057615,30.84950065612793 -2628,2016-10-18 12:00:00,40.54399871826172,13.152000427246096,36.83100128173828,9.729999542236328,4.008999824523927,1.2690000534057615,32.607498168945305 -2629,2016-10-18 13:00:00,39.53799819946289,13.487000465393065,36.13399887084961,10.37399959564209,2.750999927520752,1.2690000534057615,33.70600128173828 -2630,2016-10-18 14:00:00,39.20299911499024,13.73799991607666,36.50899887084961,10.69499969482422,4.019000053405762,1.2690000534057615,33.26649856567383 -2631,2016-10-18 15:00:00,40.20899963378906,13.821999549865724,36.7239990234375,10.560999870300291,3.742000102996826,1.2690000534057615,33.26649856567383 -2632,2016-10-18 16:00:00,41.54899978637695,13.654000282287598,37.31399917602539,10.07900047302246,3.7739999294281006,1.2690000534057615,33.04650115966797 -2633,2016-10-18 17:00:00,43.391998291015625,13.73799991607666,38.43899917602539,9.729999542236328,4.85099983215332,2.483999967575073,32.60699844360352 -2634,2016-10-18 18:00:00,40.71099853515625,12.145999908447266,36.24100112915039,8.873000144958496,3.891000032424927,2.483999967575073,32.167999267578125 -2635,2016-10-18 19:00:00,39.874000549316406,11.392000198364258,34.097000122070305,7.479000091552732,5.127999782562256,2.483999967575073,31.94849967956543 -2636,2016-10-18 20:00:00,44.73199844360352,14.241000175476074,39.45800018310547,10.31999969482422,4.552000045776367,1.3009999990463257,31.50900077819824 -2637,2016-10-18 21:00:00,43.47600173950195,14.491999626159668,40.61100006103516,11.607000350952148,4.030000209808351,0.0,31.069499969482425 -2638,2016-10-18 22:00:00,43.47600173950195,15.246000289916992,38.70800018310547,11.607000350952148,4.0939998626708975,1.2150000333786009,30.85000038146973 -2639,2016-10-18 23:00:00,40.3759994506836,13.821999549865724,36.617000579833984,10.588000297546388,3.1770000457763667,1.524999976158142,30.6299991607666 -2640,2016-10-19 00:00:00,37.44400024414063,12.732999801635742,33.69499969482422,9.623000144958496,4.59499979019165,1.524999976158142,30.40999984741211 -2641,2016-10-19 01:00:00,35.182998657226555,10.805999755859377,31.76499938964844,8.550999641418457,3.2939999103546143,0.0,30.40999984741211 -2642,2016-10-19 02:00:00,39.0359992980957,12.899999618530272,35.8390007019043,10.105999946594238,4.563000202178955,1.5349999666213991,29.750999450683597 -2643,2016-10-19 03:00:00,37.52799987792969,12.314000129699709,33.42699813842773,9.354999542236328,3.3159999847412114,1.406999945640564,29.5310001373291 -2644,2016-10-19 04:00:00,38.44900131225586,13.067999839782717,35.49100112915039,10.588000297546388,2.96399998664856,0.0,29.31150054931641 -2645,2016-10-19 05:00:00,38.198001861572266,12.64900016784668,35.089000701904304,10.159000396728516,2.96399998664856,0.0,29.31150054931641 -2646,2016-10-19 06:00:00,41.46500015258789,13.56999969482422,38.14500045776367,10.829999923706056,4.2220001220703125,1.2690000534057615,29.09199905395508 -2647,2016-10-19 07:00:00,39.70600128173828,12.64900016784668,35.946998596191406,10.213000297546388,4.317999839782715,0.0,28.871999740600582 -2648,2016-10-19 08:00:00,38.70100021362305,10.890000343322754,33.10499954223633,7.665999889373777,5.544000148773193,1.3650000095367432,29.31150054931641 -2649,2016-10-19 09:00:00,40.125,12.062999725341797,37.2869987487793,9.54300022125244,2.9110000133514404,0.0,29.750999450683597 -2650,2016-10-19 10:00:00,38.78499984741211,11.644000053405762,36.66999816894531,9.194000244140623,2.9110000133514404,0.0,30.6299991607666 -2651,2016-10-19 11:00:00,40.87900161743164,12.229999542236328,37.20600128173828,9.48900032043457,2.9110000133514404,1.2369999885559082,31.069499969482425 -2652,2016-10-19 12:00:00,41.79999923706055,12.899999618530272,39.512001037597656,10.45400047302246,2.9110000133514404,0.0,31.50900077819824 -2653,2016-10-19 13:00:00,43.30799865722656,14.91100025177002,40.42300033569336,11.982000350952148,2.9110000133514404,1.22599995136261,31.50900077819824 -2654,2016-10-19 14:00:00,42.72200012207031,15.246000289916992,40.71799850463867,12.652000427246096,2.9110000133514404,0.0,31.50900077819824 -2655,2016-10-19 15:00:00,41.04600143432617,14.241000175476074,38.11800003051758,11.446000099182127,2.9110000133514404,1.2580000162124634,31.50900077819824 -2656,2016-10-19 16:00:00,47.66400146484375,16.92099952697754,42.05799865722656,12.383999824523926,5.341000080108644,1.3650000095367432,31.28899955749512 -2657,2016-10-19 17:00:00,48.66899871826172,16.586000442504886,43.02299880981445,12.08899974822998,5.341000080108644,1.3650000095367432,31.069499969482425 -2658,2016-10-19 18:00:00,48.25,15.496999740600586,44.01499938964844,11.928999900817873,5.074999809265137,1.2369999885559082,30.6299991607666 -2659,2016-10-19 19:00:00,41.96799850463867,12.145999908447266,38.41299819946289,8.925999641418457,3.688999891281128,1.2369999885559082,30.40999984741211 -2660,2016-10-19 20:00:00,42.387001037597656,12.39799976348877,37.823001861572266,8.845999717712402,4.882999897003174,1.2369999885559082,30.19050025939941 -2661,2016-10-19 21:00:00,45.73699951171875,15.246000289916992,40.95899963378906,11.33899974822998,4.829999923706055,1.2369999885559082,29.97100067138672 -2662,2016-10-19 22:00:00,41.79999923706055,13.904999732971191,36.7509994506836,10.480999946594238,4.829999923706055,1.2369999885559082,29.97100067138672 -2663,2016-10-19 23:00:00,41.96799850463867,14.994000434875488,37.84999847412109,11.33899974822998,3.561000108718872,1.2369999885559082,29.97100067138672 -2664,2016-10-20 00:00:00,40.79499816894531,14.241000175476074,36.21500015258789,10.855999946594238,4.711999893188477,1.2369999885559082,29.750999450683597 -2665,2016-10-20 01:00:00,38.78499984741211,13.319000244140623,35.0620002746582,10.133000373840332,4.74399995803833,1.2150000333786009,29.750999450683597 -2666,2016-10-20 02:00:00,39.45500183105469,13.904999732971191,35.19599914550781,10.508000373840332,4.74399995803833,1.2150000333786009,29.31150054931641 -2667,2016-10-20 03:00:00,37.36100006103516,12.815999984741213,33.613998413085945,9.54300022125244,3.5290000438690186,1.4500000476837158,28.4325008392334 -2668,2016-10-20 04:00:00,33.84199905395508,11.895000457763672,31.46999931335449,9.864999771118164,2.868000030517578,0.0,27.11450004577637 -2669,2016-10-20 05:00:00,39.70600128173828,13.654000282287598,35.7859992980957,10.829999923706056,4.125999927520752,1.3329999446868896,26.45549964904785 -2670,2016-10-20 06:00:00,40.20899963378906,13.654000282287598,37.5009994506836,11.017000198364258,2.888999938964844,0.0,25.79599952697754 -2671,2016-10-20 07:00:00,38.95199966430664,12.480999946594238,36.5359992980957,10.29300022125244,1.621000051498413,0.0,25.79599952697754 -2672,2016-10-20 08:00:00,34.93099975585937,9.885000228881836,33.400001525878906,8.229000091552733,1.621000051498413,0.0,26.45499992370605 -2673,2016-10-20 09:00:00,37.86299896240234,11.5600004196167,35.4370002746582,9.595999717712402,1.621000051498413,0.0,27.333999633789062 -2674,2016-10-20 10:00:00,34.59600067138672,10.052000045776367,32.24700164794922,8.095000267028809,1.621000051498413,0.0,28.21299934387207 -2675,2016-10-20 11:00:00,34.512001037597656,9.717000007629396,31.89900016784668,7.71999979019165,2.8570001125335693,0.0,27.55349922180176 -2676,2016-10-20 12:00:00,31.2450008392334,7.874000072479247,29.11100006103516,6.058000087738037,2.8570001125335693,0.0,27.333999633789062 -2677,2016-10-20 13:00:00,35.43399810791016,10.805999755859377,31.52400016784668,8.310000419616701,2.8570001125335693,1.22599995136261,26.895000457763672 -2678,2016-10-20 14:00:00,32.75299835205078,9.717000007629396,29.298999786376957,7.532000064849853,2.8570001125335693,0.0,26.67499923706055 -2679,2016-10-20 15:00:00,35.518001556396484,11.47599983215332,32.16699981689453,9.354999542236328,4.083000183105469,0.0,26.45549964904785 -2680,2016-10-20 16:00:00,46.49100112915039,15.329999923706056,41.49499893188477,11.418999671936035,5.36299991607666,1.22599995136261,25.79599952697754 -2681,2016-10-20 17:00:00,49.42300033569336,16.334999084472653,43.98799896240234,12.170000076293944,5.309000015258789,1.22599995136261,25.576499938964844 -2682,2016-10-20 18:00:00,44.73199844360352,13.654000282287598,40.39599990844727,10.427000045776367,5.309000015258789,1.22599995136261,25.35650062561035 -2683,2016-10-20 19:00:00,41.04600143432617,12.062999725341797,36.5629997253418,9.034000396728516,5.330999851226807,1.2899999618530271,25.13649940490723 -2684,2016-10-20 20:00:00,41.96799850463867,13.98900032043457,37.2869987487793,10.90999984741211,5.309000015258789,1.3009999990463257,25.576499938964844 -2685,2016-10-20 21:00:00,44.81600189208984,14.743000030517578,40.87900161743164,11.71399974822998,5.0320000648498535,1.2150000333786009,26.23550033569336 -2686,2016-10-20 22:00:00,40.459999084472656,14.156999588012695,37.367000579833984,11.446000099182127,3.059999942779541,1.3329999446868896,27.333999633789062 -2687,2016-10-20 23:00:00,41.29800033569336,13.904999732971191,37.4739990234375,11.043999671936035,4.414000034332275,1.246999979019165,27.77300071716309 -2688,2016-10-21 00:00:00,37.52799987792969,12.732999801635742,34.1510009765625,10.29300022125244,4.349999904632568,0.0,27.993000030517567 -2689,2016-10-21 01:00:00,38.03099822998047,12.815999984741213,33.667999267578125,9.99899959564209,4.361000061035156,1.4500000476837158,28.21299934387207 -2690,2016-10-21 02:00:00,36.77399826049805,12.062999725341797,32.30099868774414,9.32800006866455,4.1469998359680185,1.375,27.993000030517567 -2691,2016-10-21 03:00:00,34.512001037597656,11.644000053405762,31.363000869750977,9.623000144958496,2.9210000038146973,0.0,26.67499923706055 -2692,2016-10-21 04:00:00,39.790000915527344,13.487000465393065,35.11600112915039,10.803000450134276,4.626999855041504,1.524999976158142,26.67499923706055 -2693,2016-10-21 05:00:00,40.04100036621094,13.73799991607666,36.617000579833984,11.178000450134276,3.390000104904175,0.0,26.23550033569336 -2694,2016-10-21 06:00:00,41.71599960327149,13.904999732971191,36.777000427246094,10.90999984741211,4.605999946594238,1.406999945640564,26.45499992370605 -2695,2016-10-21 07:00:00,38.198001861572266,12.5649995803833,33.69499969482422,9.756999969482422,4.169000148773193,1.2369999885559082,26.67499923706055 -2696,2016-10-21 08:00:00,39.62200164794922,12.815999984741213,34.60599899291992,9.756999969482422,5.0,1.4290000200271606,27.11450004577637 -2697,2016-10-21 09:00:00,43.47600173950195,15.329999923706056,40.36899948120117,12.706000328063965,2.7079999446868896,0.0,27.55349922180176 -2698,2016-10-21 10:00:00,39.790000915527344,11.979000091552734,36.696998596191406,9.435999870300291,2.7079999446868896,0.0,27.993000030517567 -2699,2016-10-21 11:00:00,43.72700119018555,13.821999549865724,40.42300033569336,11.043999671936035,2.7079999446868896,0.0,26.67499923706055 -2700,2016-10-21 12:00:00,43.97800064086914,14.156999588012695,41.040000915527344,11.5,2.7079999446868896,0.0,26.45549964904785 -2701,2016-10-21 13:00:00,41.46500015258789,14.156999588012695,38.198001861572266,11.446000099182127,2.7079999446868896,1.22599995136261,26.67499923706055 -2702,2016-10-21 14:00:00,40.04100036621094,14.241000175476074,37.233001708984375,11.875,2.7079999446868896,0.0,27.77300071716309 -2703,2016-10-21 15:00:00,44.48099899291992,15.916000366210938,41.57600021362305,13.081000328063965,2.7079999446868896,0.0,28.65200042724609 -2704,2016-10-21 16:00:00,45.73699951171875,16.083000183105472,41.84400177001953,12.78600025177002,3.986999988555908,1.2899999618530271,28.65200042724609 -2705,2016-10-21 17:00:00,48.75299835205078,16.166999816894528,43.479000091552734,12.062999725341797,4.947000026702881,1.2899999618530271,27.773500442504893 -2706,2016-10-21 18:00:00,48.75299835205078,15.916000366210938,43.104000091552734,11.767999649047852,6.216000080108643,1.2899999618530271,28.4325008392334 -2707,2016-10-21 19:00:00,43.89400100708008,12.984000205993652,37.95700073242188,9.248000144958496,5.948999881744385,1.3109999895095823,29.31150054931641 -2708,2016-10-21 20:00:00,46.99399948120117,15.161999702453612,40.82500076293945,11.097999572753906,5.927999973297119,1.3109999895095823,29.750999450683597 -2709,2016-10-21 21:00:00,43.391998291015625,14.241000175476074,38.11800003051758,10.96399974822998,5.085000038146973,1.2369999885559082,28.4325008392334 -2710,2016-10-21 22:00:00,40.125,13.402999877929688,36.027000427246094,10.668999671936035,3.858999967575073,1.2369999885559082,28.4325008392334 -2711,2016-10-21 23:00:00,42.1349983215332,14.407999992370604,37.2869987487793,11.28499984741211,5.0960001945495605,1.246999979019165,28.4325008392334 -2712,2016-10-22 00:00:00,39.37099838256836,12.984000205993652,36.1609992980957,10.45400047302246,3.848999977111816,0.0,27.77300071716309 -2713,2016-10-22 01:00:00,39.37099838256836,13.402999877929688,35.54399871826172,10.508000373840332,3.869999885559082,1.3650000095367432,27.333999633789062 -2714,2016-10-22 02:00:00,39.37099838256836,12.899999618530272,35.33000183105469,10.105999946594238,3.9449999332427983,1.2150000333786009,26.895000457763672 -2715,2016-10-22 03:00:00,35.93600082397461,11.810999870300291,31.28199958801269,8.979999542236328,3.9449999332427983,1.22599995136261,26.67499923706055 -2716,2016-10-22 04:00:00,35.182998657226555,11.810999870300291,31.06800079345703,9.194000244140623,3.785000085830689,1.375,26.67499923706055 -2717,2016-10-22 05:00:00,36.43899917602539,11.979000091552734,31.631000518798828,9.16800022125244,3.785000085830689,1.6100000143051147,26.45549964904785 -2718,2016-10-22 06:00:00,36.43899917602539,11.810999870300291,32.623001098632805,9.220999717712402,3.785000085830689,1.22599995136261,26.67499923706055 -2719,2016-10-22 07:00:00,41.79999923706055,13.904999732971191,36.617000579833984,10.74899959564209,5.074999809265137,1.22599995136261,26.45499992370605 -2720,2016-10-22 08:00:00,38.11399841308594,11.810999870300291,33.64099884033203,9.034000396728516,5.127999782562256,1.2150000333786009,26.23550033569336 -2721,2016-10-22 09:00:00,42.05199813842773,14.659000396728516,39.16299819946289,11.902000427246096,2.5480000972747803,0.0,26.015499114990234 -2722,2016-10-22 10:00:00,40.54399871826172,12.984000205993652,36.9379997253418,10.401000022888184,3.838000059127808,0.0,25.79599952697754 -2723,2016-10-22 11:00:00,45.73699951171875,14.659000396728516,41.84400177001953,11.741000175476074,3.9340000152587886,0.0,25.79599952697754 -2724,2016-10-22 12:00:00,43.64300155639648,13.487000465393065,40.90599822998047,10.96399974822998,2.664999961853028,0.0,24.91699981689453 -2725,2016-10-22 13:00:00,43.81100082397461,14.659000396728516,41.040000915527344,12.170000076293944,2.664999961853028,0.0,24.91699981689453 -2726,2016-10-22 14:00:00,38.78499984741211,12.39799976348877,36.24100112915039,10.31999969482422,2.664999961853028,0.0,24.25749969482422 -2727,2016-10-22 15:00:00,40.04100036621094,12.984000205993652,37.0989990234375,10.74899959564209,2.664999961853028,0.0,23.818500518798828 -2728,2016-10-22 16:00:00,43.55899810791016,13.98900032043457,40.61100006103516,11.446000099182127,2.664999961853028,0.0,24.038000106811523 -2729,2016-10-22 17:00:00,44.64799880981445,13.654000282287598,39.56499862670898,10.133000373840332,4.030000209808351,1.22599995136261,24.257999420166016 -2730,2016-10-22 18:00:00,46.65900039672852,14.072999954223633,41.709999084472656,10.427000045776367,5.267000198364258,1.3109999895095823,25.136999130249023 -2731,2016-10-22 19:00:00,43.30799865722656,11.979000091552734,38.41299819946289,8.73900032043457,4.914999961853027,1.4390000104904177,26.016000747680664 -2732,2016-10-22 20:00:00,45.90499877929688,14.407999992370604,41.14699935913086,11.017000198364258,4.914999961853027,1.2150000333786009,26.67499923706055 -2733,2016-10-22 21:00:00,42.21900177001953,13.234999656677244,37.4739990234375,10.024999618530272,4.4780001640319815,1.22599995136261,26.67499923706055 -2734,2016-10-22 22:00:00,41.54899978637695,12.64900016784668,36.402000427246094,9.515999794006348,4.4780001640319815,1.4179999828338623,26.67499923706055 -2735,2016-10-22 23:00:00,41.632999420166016,12.480999946594238,37.1259994506836,9.274999618530272,4.072999954223634,1.2790000438690186,25.35650062561035 -2736,2016-10-23 00:00:00,39.11999893188477,12.39799976348877,35.54399871826172,9.70400047302246,3.8059999942779537,0.0,25.35650062561035 -2737,2016-10-23 01:00:00,36.858001708984375,10.973999977111816,33.42699813842773,8.630999565124513,3.8059999942779537,0.0,25.79599952697754 -2738,2016-10-23 02:00:00,39.37099838256836,12.5649995803833,34.5260009765625,9.302000045776367,3.8059999942779537,1.3329999446868896,25.79599952697754 -2739,2016-10-23 03:00:00,37.52799987792969,11.309000015258787,34.01599884033203,8.899999618530273,3.8059999942779537,0.0,25.35650062561035 -2740,2016-10-23 04:00:00,38.617000579833984,11.644000053405762,33.82899856567383,8.73900032043457,3.8059999942779537,1.22599995136261,24.91699981689453 -2741,2016-10-23 05:00:00,40.459999084472656,12.5649995803833,35.625,9.220999717712402,3.8059999942779537,1.2580000162124634,24.477500915527344 -2742,2016-10-23 06:00:00,39.70600128173828,12.732999801635742,36.696998596191406,10.105999946594238,3.486000061035156,0.0,24.257999420166016 -2743,2016-10-23 07:00:00,41.2140007019043,12.480999946594238,37.071998596191406,9.595999717712402,4.702000141143799,1.2369999885559082,24.257999420166016 -2744,2016-10-23 08:00:00,37.86299896240234,11.979000091552734,34.365001678466804,9.11400032043457,3.0280001163482666,1.2899999618530271,24.257999420166016 -2745,2016-10-23 09:00:00,40.20899963378906,12.64900016784668,37.42100143432617,10.024999618530272,3.0380001068115234,0.0,24.257999420166016 -2746,2016-10-23 10:00:00,42.1349983215332,12.984000205993652,39.72600173950195,10.401000022888184,3.0380001068115234,0.0,24.477500915527344 -2747,2016-10-23 11:00:00,37.19300079345703,10.303000450134276,33.990001678466804,8.069000244140625,3.0380001068115234,0.0,25.136999130249023 -2748,2016-10-23 12:00:00,40.04100036621094,10.55500030517578,36.777000427246094,8.255999565124513,3.0380001068115234,0.0,25.57600021362305 -2749,2016-10-23 13:00:00,41.2140007019043,12.5649995803833,38.76100158691406,10.07900047302246,3.0380001068115234,0.0,25.136999130249023 -2750,2016-10-23 14:00:00,38.198001861572266,10.303000450134276,35.33000183105469,8.282999992370605,3.0380001068115234,0.0,26.016000747680664 -2751,2016-10-23 15:00:00,38.53300094604492,10.890000343322754,35.57099914550781,8.336999893188478,3.0380001068115234,0.0,26.23550033569336 -2752,2016-10-23 16:00:00,44.229000091552734,12.39799976348877,39.80699920654297,9.274999618530272,4.254000186920166,1.343000054359436,25.79599952697754 -2753,2016-10-23 17:00:00,43.30799865722656,12.145999908447266,38.680999755859375,8.657999992370605,4.114999771118163,1.4609999656677246,25.136999130249023 -2754,2016-10-23 18:00:00,46.40700149536133,12.899999618530272,42.48699951171875,9.972000122070312,4.13700008392334,0.0,24.91699981689453 -2755,2016-10-23 19:00:00,42.63800048828125,11.895000457763672,37.15299987792969,8.416999816894531,5.415999889373778,1.2369999885559082,24.69700050354004 -2756,2016-10-23 20:00:00,40.62699890136719,12.5649995803833,37.04600143432617,9.890999794006348,3.7100000381469727,1.22599995136261,24.257999420166016 -2757,2016-10-23 21:00:00,45.1510009765625,14.994000434875488,40.23500061035156,11.28499984741211,4.947000026702881,1.246999979019165,24.257999420166016 -2758,2016-10-23 22:00:00,40.54399871826172,12.815999984741213,36.7509994506836,10.07900047302246,3.1559998989105225,1.2369999885559082,24.038000106811523 -2759,2016-10-23 23:00:00,39.874000549316406,12.480999946594238,35.86600112915039,9.595999717712402,4.423999786376953,1.4609999656677246,23.81800079345703 -2760,2016-10-24 00:00:00,35.60100173950195,10.470999717712402,30.98699951171875,7.88100004196167,4.563000202178955,1.2369999885559082,23.81800079345703 -2761,2016-10-24 01:00:00,39.95700073242188,12.899999618530272,35.19599914550781,9.729999542236328,4.702000141143799,1.2369999885559082,23.81800079345703 -2762,2016-10-24 02:00:00,39.95700073242188,13.402999877929688,35.49100112915039,10.45400047302246,4.818999767303467,1.2150000333786009,23.81800079345703 -2763,2016-10-24 03:00:00,38.78499984741211,12.64900016784668,34.65999984741211,10.024999618530272,4.818999767303467,1.2369999885559082,24.257999420166016 -2764,2016-10-24 04:00:00,39.62200164794922,13.067999839782717,35.33000183105469,10.052000045776367,4.605999946594238,1.22599995136261,24.477500915527344 -2765,2016-10-24 05:00:00,36.77399826049805,11.810999870300291,32.488998413085945,9.140999794006348,4.605999946594238,1.3329999446868896,24.477500915527344 -2766,2016-10-24 06:00:00,41.13000106811523,13.654000282287598,36.402000427246094,10.480999946594238,4.670000076293945,1.22599995136261,24.91699981689453 -2767,2016-10-24 07:00:00,39.11999893188477,12.314000129699709,35.73199844360352,9.784000396728516,4.670000076293945,0.0,24.91699981689453 -2768,2016-10-24 08:00:00,38.86800003051758,12.480999946594238,34.365001678466804,9.409000396728516,4.638000011444092,2.505000114440918,25.35650062561035 -2769,2016-10-24 09:00:00,41.13000106811523,14.82699966430664,38.62699890136719,12.170000076293944,2.0899999141693115,0.0,25.79599952697754 -2770,2016-10-24 10:00:00,39.0359992980957,11.810999870300291,35.597999572753906,9.140999794006348,3.3159999847412114,1.2369999885559082,26.67499923706055 -2771,2016-10-24 11:00:00,38.95199966430664,11.727999687194824,36.375,9.354999542236328,3.3159999847412114,0.0,27.11450004577637 -2772,2016-10-24 12:00:00,41.13000106811523,13.487000465393065,38.78799819946289,11.12399959564209,3.3159999847412114,0.0,28.4325008392334 -2773,2016-10-24 13:00:00,40.20899963378906,13.904999732971191,37.5009994506836,11.446000099182127,3.3159999847412114,0.0,29.09199905395508 -2774,2016-10-24 14:00:00,40.459999084472656,13.067999839782717,37.6349983215332,10.560999870300291,3.3159999847412114,0.0,30.19050025939941 -2775,2016-10-24 15:00:00,41.632999420166016,13.234999656677244,38.49300003051758,10.347000122070312,3.2939999103546143,1.2690000534057615,30.40999984741211 -2776,2016-10-24 16:00:00,45.23500061035156,14.324000358581545,39.887001037597656,10.560999870300291,4.519999980926514,1.2150000333786009,29.750999450683597 -2777,2016-10-24 17:00:00,48.33399963378906,14.91100025177002,42.48699951171875,10.560999870300291,5.756999969482423,2.5369999408721924,29.09149932861328 -2778,2016-10-24 18:00:00,49.3390007019043,14.576000213623049,43.74700164794922,10.401000022888184,5.51200008392334,1.3220000267028809,28.4325008392334 -2779,2016-10-24 19:00:00,40.62699890136719,10.470999717712402,35.03499984741211,7.130000114440918,5.51200008392334,1.3220000267028809,27.993000030517567 -2780,2016-10-24 20:00:00,41.71599960327149,11.810999870300291,37.20600128173828,8.630999565124513,4.4780001640319815,1.2690000534057615,27.55349922180176 -2781,2016-10-24 21:00:00,40.71099853515625,12.64900016784668,36.483001708984375,9.461999893188477,4.4780001640319815,1.3009999990463257,27.333999633789062 -2782,2016-10-24 22:00:00,40.62699890136719,12.5649995803833,36.21500015258789,9.623000144958496,4.361000061035156,1.2369999885559082,26.895000457763672 -2783,2016-10-24 23:00:00,38.86800003051758,11.644000053405762,34.60599899291992,8.845999717712402,3.0810000896453857,1.3109999895095823,26.67499923706055 -2784,2016-10-25 00:00:00,35.43399810791016,11.644000053405762,32.72999954223633,9.461999893188477,3.240999937057495,0.0,26.23550033569336 -2785,2016-10-25 01:00:00,37.52799987792969,12.062999725341797,34.12400054931641,9.70400047302246,3.240999937057495,0.0,25.13649940490723 -2786,2016-10-25 02:00:00,38.28200149536133,11.979000091552734,34.365001678466804,9.435999870300291,4.446000099182129,0.0,24.038000106811523 -2787,2016-10-25 03:00:00,37.86299896240234,12.64900016784668,32.998001098632805,9.677000045776367,4.446000099182129,1.246999979019165,23.15900039672852 -2788,2016-10-25 04:00:00,39.45500183105469,12.984000205993652,35.75899887084961,10.480999946594238,3.4649999141693115,0.0,23.37849998474121 -2789,2016-10-25 05:00:00,38.95199966430664,13.152000427246096,35.893001556396484,10.159000396728516,3.4649999141693115,1.22599995136261,23.37849998474121 -2790,2016-10-25 06:00:00,40.54399871826172,13.821999549865724,35.75899887084961,10.829999923706056,4.264999866485597,1.3539999723434448,22.71999931335449 -2791,2016-10-25 07:00:00,42.387001037597656,13.98900032043457,37.93000030517578,10.829999923706056,4.317999839782715,1.246999979019165,22.71999931335449 -2792,2016-10-25 08:00:00,37.77899932861328,11.979000091552734,33.373001098632805,8.819000244140625,3.9449999332427983,1.246999979019165,22.93950080871582 -2793,2016-10-25 09:00:00,43.55899810791016,15.664999961853027,40.262001037597656,12.760000228881836,2.687000036239624,1.3329999446868896,23.37849998474121 -2794,2016-10-25 10:00:00,39.95700073242188,10.722000122070312,36.617000579833984,8.095000267028809,2.687000036239624,1.246999979019165,23.598499298095703 -2795,2016-10-25 11:00:00,41.04600143432617,11.47599983215332,37.448001861572266,8.416999816894531,3.986999988555908,1.4500000476837158,23.598499298095703 -2796,2016-10-25 12:00:00,37.025001525878906,10.13599967956543,33.613998413085945,7.452000141143799,3.92300009727478,1.246999979019165,23.598499298095703 -2797,2016-10-25 13:00:00,41.2140007019043,12.64900016784668,38.94900131225586,10.185999870300291,3.5820000171661377,0.0,23.598499298095703 -2798,2016-10-25 14:00:00,38.70100021362305,11.810999870300291,35.597999572753906,9.086999893188477,3.5929999351501465,1.2580000162124634,23.598499298095703 -2799,2016-10-25 15:00:00,39.2869987487793,12.229999542236328,36.696998596191406,9.784000396728516,2.388000011444092,0.0,23.598499298095703 -2800,2016-10-25 16:00:00,40.62699890136719,12.145999908447266,38.49300003051758,9.838000297546388,2.388000011444092,0.0,23.598499298095703 -2801,2016-10-25 17:00:00,45.82099914550781,13.56999969482422,42.21900177001953,10.267000198364258,3.763000011444092,1.375,23.598499298095703 -2802,2016-10-25 18:00:00,47.66400146484375,13.821999549865724,43.479000091552734,10.29300022125244,3.763000011444092,1.2899999618530271,23.598499298095703 -2803,2016-10-25 19:00:00,43.55899810791016,11.47599983215332,38.22499847412109,7.61299991607666,5.0320000648498535,1.2899999618530271,23.598499298095703 -2804,2016-10-25 20:00:00,47.1609992980957,13.487000465393065,41.09299850463867,9.034000396728516,6.28000020980835,1.2899999618530271,23.598499298095703 -2805,2016-10-25 21:00:00,39.53799819946289,11.5600004196167,34.955001831054695,8.470999717712402,5.10699987411499,1.3650000095367432,23.598499298095703 -2806,2016-10-25 22:00:00,37.277000427246094,11.057000160217283,31.84499931335449,7.665999889373777,5.10699987411499,1.3650000095367432,22.5 -2807,2016-10-25 23:00:00,39.37099838256836,11.47599983215332,35.2760009765625,8.550999641418457,4.818999767303467,1.246999979019165,22.5 -2808,2016-10-26 00:00:00,39.53799819946289,12.480999946594238,35.54399871826172,9.11400032043457,4.818999767303467,1.246999979019165,22.280500411987305 -2809,2016-10-26 01:00:00,37.61199951171875,10.973999977111816,33.45399856567383,8.255999565124513,4.584000110626222,1.2899999618530271,22.06100082397461 -2810,2016-10-26 02:00:00,38.95199966430664,11.5600004196167,34.955001831054695,8.630999565124513,3.3580000400543213,1.2369999885559082,21.18149948120117 -2811,2016-10-26 03:00:00,39.37099838256836,11.727999687194824,34.79399871826172,8.765000343322754,4.670000076293945,1.2150000333786009,20.96199989318848 -2812,2016-10-26 04:00:00,39.20299911499024,11.5600004196167,36.027000427246094,9.034000396728516,3.1979999542236333,0.0,20.522499084472656 -2813,2016-10-26 05:00:00,39.20299911499024,11.392000198364258,36.45600128173828,9.248000144958496,2.943000078201294,0.0,20.302499771118164 -2814,2016-10-26 06:00:00,39.37099838256836,11.810999870300291,34.766998291015625,8.73900032043457,4.1579999923706055,1.2150000333786009,19.863500595092773 -2815,2016-10-26 07:00:00,35.76900100708008,9.381999969482422,30.74600028991699,6.701000213623048,4.105000019073486,1.22599995136261,19.863500595092773 -2816,2016-10-26 08:00:00,36.1879997253418,8.628000259399414,34.01599884033203,6.728000164031982,2.3989999294281006,0.0,20.08300018310547 -2817,2016-10-26 09:00:00,45.82099914550781,14.82699966430664,42.88899993896485,11.633999824523926,2.3989999294281006,0.0,20.08300018310547 -2818,2016-10-26 10:00:00,41.46500015258789,11.309000015258787,38.49300003051758,8.685000419616701,2.3989999294281006,0.0,19.64349937438965 -2819,2016-10-26 11:00:00,44.56499862670898,12.480999946594238,42.48699951171875,9.972000122070312,2.3989999294281006,0.0,19.64349937438965 -2820,2016-10-26 12:00:00,44.81600189208984,14.241000175476074,42.084999084472656,11.418999671936035,2.3989999294281006,0.0,19.863500595092773 -2821,2016-10-26 13:00:00,40.54399871826172,12.732999801635742,38.70800018310547,10.401000022888184,2.3989999294281006,0.0,20.522499084472656 -2822,2016-10-26 14:00:00,44.3129997253418,14.407999992370604,41.38800048828125,11.633999824523926,2.3989999294281006,0.0,21.18149948120117 -2823,2016-10-26 15:00:00,43.72700119018555,13.402999877929688,41.09299850463867,10.937000274658203,2.3989999294281006,0.0,21.62150001525879 -2824,2016-10-26 16:00:00,43.391998291015625,12.732999801635742,40.50299835205078,11.071000099182127,3.5929999351501465,0.0,21.840999603271484 -2825,2016-10-26 17:00:00,45.65399932861328,13.319000244140623,43.02299880981445,10.560999870300291,3.5929999351501465,0.0,22.06049919128418 -2826,2016-10-26 18:00:00,47.66400146484375,13.56999969482422,43.02299880981445,10.052000045776367,4.776000022888184,1.246999979019165,21.840999603271484 -2827,2016-10-26 19:00:00,41.79999923706055,9.550000190734863,37.2869987487793,6.5939998626708975,4.019000053405762,1.22599995136261,21.840999603271484 -2828,2016-10-26 20:00:00,42.21900177001953,10.890000343322754,37.98400115966797,7.88100004196167,3.848999977111816,1.22599995136261,21.18149948120117 -2829,2016-10-26 21:00:00,44.73199844360352,13.402999877929688,40.71799850463867,10.45400047302246,3.614000082015991,0.0,20.74250030517578 -2830,2016-10-26 22:00:00,37.946998596191406,11.644000053405762,35.972999572753906,9.70400047302246,2.345999956130981,0.0,20.74250030517578 -2831,2016-10-26 23:00:00,38.70100021362305,11.225000381469728,33.963001251220696,8.444000244140625,3.677999973297119,1.4179999828338623,20.96199989318848 -2832,2016-10-27 00:00:00,36.94200134277344,10.220000267028809,33.21200180053711,7.907999992370605,3.5820000171661377,0.0,20.302499771118164 -2833,2016-10-27 01:00:00,37.277000427246094,10.052000045776367,32.97100067138672,7.3979997634887695,3.5820000171661377,1.2150000333786009,19.64349937438965 -2834,2016-10-27 02:00:00,37.10900115966797,10.973999977111816,32.91699981689453,8.444000244140625,3.5820000171661377,1.22599995136261,19.20400047302246 -2835,2016-10-27 03:00:00,34.261001586914055,9.968000411987305,29.72800064086914,7.34499979019165,4.861999988555908,1.3650000095367432,18.76449966430664 -2836,2016-10-27 04:00:00,31.916000366210927,9.04699993133545,27.90500068664551,6.7820000648498535,3.390000104904175,1.2150000333786009,19.20400047302246 -2837,2016-10-27 05:00:00,30.65900039672852,8.125,27.770999908447266,6.245999813079834,3.4539999961853027,0.0,19.863000869750977 -2838,2016-10-27 06:00:00,36.35499954223633,10.638999938964844,31.631000518798828,8.041999816894531,4.670000076293945,1.343000054359436,20.08300018310547 -2839,2016-10-27 07:00:00,34.261001586914055,8.963000297546387,29.72800064086914,6.540999889373777,4.541999816894531,1.2690000534057615,20.30299949645996 -2840,2016-10-27 08:00:00,39.0359992980957,9.381999969482422,34.766998291015625,6.675000190734862,4.541999816894531,1.246999979019165,20.522499084472656 -2841,2016-10-27 09:00:00,34.0099983215332,7.874000072479247,32.060001373291016,6.2729997634887695,2.878999948501587,0.0,19.42350006103516 -2842,2016-10-27 10:00:00,39.62200164794922,11.225000381469728,37.448001861572266,9.220999717712402,2.878999948501587,0.0,18.98450088500977 -2843,2016-10-27 11:00:00,39.11999893188477,10.38700008392334,36.483001708984375,8.229000091552733,2.878999948501587,0.0,18.98450088500977 -2844,2016-10-27 12:00:00,36.52299880981445,8.963000297546387,34.766998291015625,7.184000015258789,2.878999948501587,0.0,19.42350006103516 -2845,2016-10-27 13:00:00,36.858001708984375,10.805999755859377,34.31100082397461,8.578000068664549,2.878999948501587,0.0,19.64349937438965 -2846,2016-10-27 14:00:00,35.518001556396484,9.885000228881836,33.34600067138672,7.854000091552732,2.878999948501587,0.0,20.302499771118164 -2847,2016-10-27 15:00:00,39.874000549316406,11.5600004196167,38.11800003051758,9.381999969482422,1.6100000143051147,0.0,21.401500701904297 -2848,2016-10-27 16:00:00,44.14599990844727,13.487000465393065,40.74499893188477,10.480999946594238,4.040999889373778,1.22599995136261,22.280500411987305 -2849,2016-10-27 17:00:00,47.66400146484375,13.821999549865724,42.11199951171875,10.105999946594238,5.276999950408936,1.375,22.93899917602539 -2850,2016-10-27 18:00:00,47.58000183105469,13.654000282287598,43.23799896240234,10.29300022125244,4.755000114440918,0.0,23.81800079345703 -2851,2016-10-27 19:00:00,42.55400085449219,11.309000015258787,37.87699890136719,8.14900016784668,4.755000114440918,1.2150000333786009,24.038000106811523 -2852,2016-10-27 20:00:00,42.97299957275391,12.062999725341797,37.6619987487793,8.791999816894531,4.6589999198913565,1.22599995136261,24.257999420166016 -2853,2016-10-27 21:00:00,45.65399932861328,13.319000244140623,40.66400146484375,9.890999794006348,4.254000186920166,1.22599995136261,24.477500915527344 -2854,2016-10-27 22:00:00,43.47600173950195,13.402999877929688,39.80699920654297,10.614999771118164,4.254000186920166,0.0,24.69750022888184 -2855,2016-10-27 23:00:00,40.459999084472656,12.145999908447266,37.98400115966797,9.864999771118164,2.5369999408721924,0.0,24.91699981689453 -2856,2016-10-28 00:00:00,39.95700073242188,11.810999870300291,36.1879997253418,9.435999870300291,3.913000106811523,0.0,25.13649940490723 -2857,2016-10-28 01:00:00,38.86800003051758,11.392000198364258,35.4370002746582,8.899999618530273,3.6459999084472656,0.0,25.13649940490723 -2858,2016-10-28 02:00:00,38.617000579833984,11.309000015258787,34.338001251220696,8.496999740600586,3.6459999084472656,1.2369999885559082,24.25749969482422 -2859,2016-10-28 03:00:00,38.617000579833984,11.47599983215332,34.6870002746582,9.11400032043457,3.753000020980835,0.0,23.37849998474121 -2860,2016-10-28 04:00:00,38.617000579833984,11.727999687194824,34.57899856567383,9.034000396728516,3.753000020980835,1.343000054359436,23.37849998474121 -2861,2016-10-28 05:00:00,38.44900131225586,11.392000198364258,34.79399871826172,8.899999618530273,3.753000020980835,0.0,22.280000686645508 -2862,2016-10-28 06:00:00,39.790000915527344,12.145999908447266,36.1879997253418,9.595999717712402,3.7309999465942383,0.0,21.840999603271484 -2863,2016-10-28 07:00:00,38.53300094604492,10.220000267028809,34.60599899291992,7.71999979019165,4.9679999351501465,0.0,21.621000289916992 -2864,2016-10-28 08:00:00,35.76900100708008,9.04699993133545,33.05099868774414,7.317999839782715,2.505000114440918,0.0,21.18199920654297 -2865,2016-10-28 09:00:00,39.874000549316406,11.810999870300291,38.41299819946289,9.838000297546388,2.505000114440918,0.0,20.742000579833984 -2866,2016-10-28 10:00:00,38.36600112915039,11.225000381469728,36.50899887084961,9.354999542236328,2.505000114440918,0.0,19.863000869750977 -2867,2016-10-28 11:00:00,39.45500183105469,11.140999794006348,37.39400100708008,9.16800022125244,2.505000114440918,0.0,19.64349937438965 -2868,2016-10-28 12:00:00,42.80500030517578,12.815999984741213,40.15499877929688,10.347000122070312,2.505000114440918,0.0,18.983999252319336 -2869,2016-10-28 13:00:00,44.900001525878906,15.161999702453612,42.21900177001953,12.357000350952148,2.505000114440918,0.0,18.76449966430664 -2870,2016-10-28 14:00:00,41.29800033569336,12.64900016784668,38.76100158691406,10.024999618530272,2.505000114440918,0.0,18.545000076293945 -2871,2016-10-28 15:00:00,42.97299957275391,12.732999801635742,40.34299850463867,10.401000022888184,2.505000114440918,0.0,18.325000762939453 -2872,2016-10-28 16:00:00,39.95700073242188,10.55500030517578,37.233001708984375,8.282999992370605,2.505000114440918,0.0,18.325000762939453 -2873,2016-10-28 17:00:00,46.40700149536133,12.145999908447266,42.48699951171875,9.086999893188477,3.7309999465942383,0.0,18.983999252319336 -2874,2016-10-28 18:00:00,46.32400131225586,12.480999946594238,42.91600036621094,9.677000045776367,3.401000022888184,0.0,19.423999786376957 -2875,2016-10-28 19:00:00,44.229000091552734,11.895000457763672,39.59199905395508,8.604999542236326,4.882999897003174,1.4179999828338623,19.863000869750977 -2876,2016-10-28 20:00:00,43.97800064086914,12.229999542236328,41.11999893188477,9.515999794006348,3.6570000648498535,0.0,19.863000869750977 -2877,2016-10-28 21:00:00,45.73699951171875,13.402999877929688,40.66400146484375,9.729999542236328,4.894000053405762,1.343000054359436,19.423999786376957 -2878,2016-10-28 22:00:00,40.87900161743164,10.220000267028809,37.15299987792969,7.800000190734862,3.4649999141693115,0.0,18.545000076293945 -2879,2016-10-28 23:00:00,39.53799819946289,11.392000198364258,36.08100128173828,9.086999893188477,3.433000087738037,0.0,18.104999542236328 -2880,2016-10-29 00:00:00,38.70100021362305,11.392000198364258,34.955001831054695,8.765000343322754,4.670000076293945,0.0,17.666000366210938 -2881,2016-10-29 01:00:00,40.20899963378906,11.47599983215332,36.3489990234375,8.925999641418457,2.943000078201294,0.0,17.666000366210938 -2882,2016-10-29 02:00:00,37.277000427246094,10.55500030517578,34.5260009765625,8.416999816894531,3.0920000076293945,0.0,17.226999282836914 -2883,2016-10-29 03:00:00,36.94200134277344,10.638999938964844,34.41899871826172,8.36299991607666,3.0920000076293945,0.0,16.78700065612793 -2884,2016-10-29 04:00:00,37.86299896240234,11.225000381469728,34.1510009765625,8.578000068664549,3.0920000076293945,1.2690000534057615,16.567499160766598 -2885,2016-10-29 05:00:00,38.28200149536133,11.225000381469728,35.4640007019043,8.630999565124513,3.0920000076293945,0.0,15.907999992370604 -2886,2016-10-29 06:00:00,37.277000427246094,10.638999938964844,32.89099884033203,7.934999942779541,3.614000082015991,1.246999979019165,15.24899959564209 -2887,2016-10-29 07:00:00,41.46500015258789,12.145999908447266,37.15299987792969,9.302000045776367,4.787000179290772,1.2369999885559082,15.029000282287598 -2888,2016-10-29 08:00:00,36.27199935913086,8.963000297546387,33.667999267578125,6.9689998626708975,3.26200008392334,0.0,14.809499740600586 -2889,2016-10-29 09:00:00,38.28200149536133,10.722000122070312,36.42900085449219,8.630999565124513,1.8869999647140503,0.0,14.59000015258789 -2890,2016-10-29 10:00:00,41.79999923706055,12.062999725341797,39.27000045776367,9.32800006866455,3.101999998092652,0.0,15.029500007629396 -2891,2016-10-29 11:00:00,44.64799880981445,13.402999877929688,41.95100021362305,10.803000450134276,3.101999998092652,0.0,15.68850040435791 -2892,2016-10-29 12:00:00,40.29199981689453,11.225000381469728,38.06399917602539,8.819000244140625,1.866000056266785,0.0,16.78700065612793 -2893,2016-10-29 13:00:00,43.05699920654297,13.152000427246096,40.69100189208984,10.45400047302246,1.866000056266785,0.0,17.666000366210938 -2894,2016-10-29 14:00:00,42.80500030517578,13.067999839782717,40.07500076293945,10.480999946594238,1.866000056266785,0.0,18.104999542236328 -2895,2016-10-29 15:00:00,41.88399887084961,12.229999542236328,39.430999755859375,9.70400047302246,3.134000062942505,0.0,17.666000366210938 -2896,2016-10-29 16:00:00,45.82099914550781,13.319000244140623,41.87099838256836,10.267000198364258,3.16599988937378,0.0,17.226999282836914 -2897,2016-10-29 17:00:00,48.41799926757813,14.072999954223633,42.91600036621094,10.213000297546388,4.381999969482422,1.2150000333786009,17.226999282836914 -2898,2016-10-29 18:00:00,47.74800109863281,13.319000244140623,44.25600051879883,10.185999870300291,4.381999969482422,1.22599995136261,17.226999282836914 -2899,2016-10-29 19:00:00,43.391998291015625,11.5600004196167,38.09099960327149,8.14900016784668,5.683000087738037,1.2369999885559082,17.446500778198242 -2900,2016-10-29 20:00:00,44.3129997253418,13.402999877929688,38.59999847412109,9.784000396728516,5.468999862670898,1.246999979019165,17.666000366210938 -2901,2016-10-29 21:00:00,41.79999923706055,12.062999725341797,37.98400115966797,9.354999542236328,3.5179998874664307,0.0,17.666000366210938 -2902,2016-10-29 22:00:00,42.63800048828125,13.319000244140623,39.77999877929688,10.96399974822998,3.5179998874664307,0.0,17.666000366210938 -2903,2016-10-29 23:00:00,38.44900131225586,12.062999725341797,35.57099914550781,9.838000297546388,3.4440000057220463,0.0,17.666000366210938 -2904,2016-10-30 00:00:00,39.20299911499024,12.984000205993652,35.518001556396484,10.024999618530272,4.499000072479248,1.2580000162124634,17.446500778198242 -2905,2016-10-30 01:00:00,37.44400024414063,10.973999977111816,33.13199996948242,8.255999565124513,4.510000228881836,1.2369999885559082,17.446500778198242 -2906,2016-10-30 02:00:00,36.77399826049805,11.810999870300291,32.22100067138672,9.034000396728516,4.541999816894531,1.2150000333786009,17.226999282836914 -2907,2016-10-30 03:00:00,37.10900115966797,11.727999687194824,32.488998413085945,9.248000144958496,4.519999980926514,1.246999979019165,17.006999969482422 -2908,2016-10-30 04:00:00,34.429000854492195,11.225000381469728,32.194000244140625,9.248000144958496,2.377000093460083,0.0,16.78700065612793 -2909,2016-10-30 05:00:00,37.44400024414063,11.644000053405762,33.26599884033203,8.95300006866455,3.6679999828338623,1.2369999885559082,16.567499160766598 -2910,2016-10-30 06:00:00,35.76900100708008,10.973999977111816,32.327999114990234,8.73900032043457,4.552000045776367,0.0,16.347999572753903 -2911,2016-10-30 07:00:00,40.9630012512207,12.732999801635742,38.01100158691406,10.508000373840332,3.006999969482422,0.0,16.128000259399414 -2912,2016-10-30 08:00:00,36.858001708984375,9.885000228881836,32.91699981689453,7.372000217437744,4.339000225067139,0.0,16.347999572753903 -2913,2016-10-30 09:00:00,35.76900100708008,9.04699993133545,33.292999267578125,7.317999839782715,1.7910000085830688,0.0,18.104999542236328 -2914,2016-10-30 10:00:00,38.28200149536133,9.717000007629396,35.86600112915039,7.827000141143799,1.7910000085830688,0.0,20.742000579833984 -2915,2016-10-30 11:00:00,43.05699920654297,12.899999618530272,40.07500076293945,10.105999946594238,3.0380001068115234,0.0,22.5 -2916,2016-10-30 12:00:00,39.874000549316406,11.225000381469728,37.39400100708008,9.302000045776367,1.8229999542236328,0.0,24.477500915527344 -2917,2016-10-30 13:00:00,40.3759994506836,12.480999946594238,37.93000030517578,10.159000396728516,1.8229999542236328,0.0,26.23550033569336 -2918,2016-10-30 14:00:00,37.36100006103516,11.644000053405762,35.49100112915039,9.48900032043457,1.8229999542236328,0.0,26.23550033569336 -2919,2016-10-30 15:00:00,40.3759994506836,13.067999839782717,37.6619987487793,10.508000373840332,1.8229999542236328,0.0,26.45499992370605 -2920,2016-10-30 16:00:00,43.72700119018555,13.821999549865724,39.887001037597656,10.74899959564209,3.134000062942505,1.22599995136261,25.57600021362305 -2921,2016-10-30 17:00:00,44.229000091552734,13.821999549865724,38.84199905395508,10.052000045776367,4.349999904632568,1.2369999885559082,24.477500915527344 -2922,2016-10-30 18:00:00,43.97800064086914,14.491999626159668,37.823001861572266,10.560999870300291,5.703999996185303,1.2899999618530271,24.038000106811523 -2923,2016-10-30 19:00:00,42.303001403808594,12.732999801635742,37.367000579833984,9.354999542236328,5.671999931335449,1.2899999618530271,22.5 -2924,2016-10-30 20:00:00,42.97299957275391,12.899999618530272,37.93000030517578,9.595999717712402,5.447999954223633,1.2369999885559082,21.401500701904297 -2925,2016-10-30 21:00:00,41.632999420166016,12.39799976348877,38.33200073242188,9.890999794006348,3.763000011444092,0.0,20.522499084472656 -2926,2016-10-30 22:00:00,40.3759994506836,12.314000129699709,35.652000427246094,9.32800006866455,5.085000038146973,1.3220000267028809,20.08300018310547 -2927,2016-10-30 23:00:00,36.858001708984375,10.052000045776367,32.46200180053711,7.61299991607666,5.043000221252441,1.2150000333786009,20.08300018310547 -2928,2016-10-31 00:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2929,2016-10-31 01:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2930,2016-10-31 02:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2931,2016-10-31 03:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2932,2016-10-31 04:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2933,2016-10-31 05:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2934,2016-10-31 06:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2935,2016-10-31 07:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2936,2016-10-31 08:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2937,2016-10-31 09:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2938,2016-10-31 10:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2939,2016-10-31 11:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2940,2016-10-31 12:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2941,2016-10-31 13:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2942,2016-10-31 14:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2943,2016-10-31 15:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2944,2016-10-31 16:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2945,2016-10-31 17:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2946,2016-10-31 18:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2947,2016-10-31 19:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2948,2016-10-31 20:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2949,2016-10-31 21:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2950,2016-10-31 22:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2951,2016-10-31 23:00:00,33.92599868774414,8.795999526977539,30.37100028991699,6.566999912261963,3.763000011444092,0.0,19.64349937438965 -2952,2016-11-01 00:00:00,31.2450008392334,8.878999710083008,26.590999603271484,6.513999938964844,4.690999984741211,1.2150000333786009,18.104999542236328 -2953,2016-11-01 01:00:00,30.072999954223643,8.543999671936035,25.518999099731445,5.8439998626708975,4.573999881744385,1.246999979019165,18.104999542236328 -2954,2016-11-01 02:00:00,27.64299964904785,7.454999923706055,24.92900085449219,5.951000213623048,2.943000078201294,0.0,17.666000366210938 -2955,2016-11-01 03:00:00,30.1560001373291,8.543999671936035,25.733999252319336,6.031000137329103,4.264999866485597,1.3539999723434448,17.226999282836914 -2956,2016-11-01 04:00:00,30.40800094604492,8.963000297546387,26.40399932861328,6.835000038146973,4.243000030517578,1.3860000371932983,17.006999969482422 -2957,2016-11-01 05:00:00,29.98900032043457,8.208999633789062,25.33099937438965,5.710000038146973,4.414000034332275,1.22599995136261,16.78700065612793 -2958,2016-11-01 06:00:00,24.125,5.276999950408936,19.35400009155273,3.2699999809265137,5.043000221252441,1.22599995136261,16.347999572753903 -2959,2016-11-01 07:00:00,21.025999069213867,0.0,17.370000839233402,1.6080000400543213,3.6679999828338623,0.0,16.128000259399414 -2960,2016-11-01 08:00:00,17.34000015258789,0.0,12.142999649047852,1.4479999542236328,4.765999794006348,2.494999885559082,16.347999572753903 -2961,2016-11-01 09:00:00,16.92099952697754,0.0,14.42099952697754,2.009999990463257,3.1559998989105225,0.0,17.006999969482422 -2962,2016-11-01 10:00:00,18.93199920654297,4.5229997634887695,15.574000358581545,2.627000093460083,3.1559998989105225,1.621000051498413,17.446500778198242 -2963,2016-11-01 11:00:00,18.847999572753903,4.355999946594238,15.38700008392334,2.4130001068115234,3.1559998989105225,1.621000051498413,17.885499954223633 -2964,2016-11-01 12:00:00,16.166999816894528,0.0,14.20699977874756,1.715999960899353,3.1559998989105225,0.0,18.54450035095215 -2965,2016-11-01 13:00:00,16.250999450683597,0.0,13.402999877929688,1.9029999971389768,1.9299999475479128,1.4709999561309814,19.64349937438965 -2966,2016-11-01 14:00:00,16.419000625610348,0.0,13.67099952697754,2.0369999408721924,3.1770000457763667,1.503000020980835,21.18199920654297 -2967,2016-11-01 15:00:00,15.748000144958494,0.0,13.536999702453612,2.252000093460083,3.11299991607666,1.22599995136261,22.5 -2968,2016-11-01 16:00:00,18.763999938964844,0.0,14.314000129699709,1.6349999904632568,4.414000034332275,1.246999979019165,23.37899971008301 -2969,2016-11-01 17:00:00,20.60700035095215,0.0,15.0649995803833,1.3400000333786009,5.660999774932861,1.246999979019165,22.280500411987305 -2970,2016-11-01 18:00:00,23.45499992370605,0.0,18.36199951171875,1.9029999971389768,5.554999828338623,1.3109999895095823,20.30299949645996 -2971,2016-11-01 19:00:00,23.95800018310547,5.110000133514403,18.6299991607666,2.8949999809265137,5.554999828338623,1.3109999895095823,18.104999542236328 -2972,2016-11-01 20:00:00,24.125,4.775000095367432,18.871000289916992,2.627000093460083,5.459000110626222,1.2580000162124634,17.006999969482422 -2973,2016-11-01 21:00:00,22.36599922180176,4.440000057220459,18.173999786376957,2.493000030517578,4.030000209808351,1.2580000162124634,17.006999969482422 -2974,2016-11-01 22:00:00,22.53400039672852,5.78000020980835,17.531000137329098,3.4309999942779537,5.276999950408936,1.2580000162124634,17.006999969482422 -2975,2016-11-01 23:00:00,19.684999465942383,4.690999984741211,14.475000381469728,2.5999999046325684,5.341000080108644,2.8359999656677246,17.006999969482422 -2976,2016-11-02 00:00:00,17.926000595092773,4.355999946594238,12.894000053405762,2.1979999542236333,5.330999851226807,1.22599995136261,16.78700065612793 -2977,2016-11-02 01:00:00,16.50200080871582,4.2719998359680185,11.204999923706056,2.0369999408721924,4.9790000915527335,1.2369999885559082,16.78700065612793 -2978,2016-11-02 02:00:00,14.743000030517578,0.0,11.28499984741211,1.5820000171661377,3.635999917984009,1.246999979019165,16.78700065612793 -2979,2016-11-02 03:00:00,16.250999450683597,0.0,11.446000099182127,1.6080000400543213,4.947000026702881,1.246999979019165,16.567499160766598 -2980,2016-11-02 04:00:00,16.166999816894528,0.0,11.366000175476074,1.6619999408721924,5.064000129699707,1.2150000333786009,16.567499160766598 -2981,2016-11-02 05:00:00,16.586000442504886,4.105000019073486,12.920000076293944,2.4130001068115234,3.848999977111816,1.2150000333786009,16.567499160766598 -2982,2016-11-02 06:00:00,18.68000030517578,4.355999946594238,13.67099952697754,2.2780001163482666,5.138999938964844,1.2150000333786009,16.34749984741211 -2983,2016-11-02 07:00:00,18.010000228881836,0.0,13.911999702453612,1.9299999475479128,5.138999938964844,1.2150000333786009,16.128000259399414 -2984,2016-11-02 08:00:00,23.37100028991699,6.953000068664551,17.878999710083008,4.155000209808351,5.138999938964844,2.430999994277954,16.128000259399414 -2985,2016-11-02 09:00:00,22.78499984741211,6.449999809265138,19.78300094604492,4.797999858856201,3.625,0.0,16.567499160766598 -2986,2016-11-02 10:00:00,23.1200008392334,6.618000030517577,19.488000869750977,4.3959999084472665,3.625,1.3650000095367432,19.64349937438965 -2987,2016-11-02 11:00:00,24.208999633789062,6.86899995803833,20.29199981689453,4.449999809265137,3.625,1.3650000095367432,23.818500518798828 -2988,2016-11-02 12:00:00,20.857999801635746,5.193999767303467,17.423999786376953,3.190000057220459,3.625,1.4709999561309814,26.23550033569336 -2989,2016-11-02 13:00:00,20.43899917602539,5.78000020980835,17.101999282836914,3.6989998817443848,3.625,1.4709999561309814,28.871999740600582 -2990,2016-11-02 14:00:00,20.27199935913086,6.114999771118164,16.861000061035153,4.127999782562257,3.625,1.4709999561309814,30.6299991607666 -2991,2016-11-02 15:00:00,21.36100006103516,6.449999809265138,18.22800064086914,4.422999858856201,3.625,1.4709999561309814,30.40999984741211 -2992,2016-11-02 16:00:00,23.70599937438965,6.953000068664551,20.827999114990234,5.441999912261963,3.625,1.246999979019165,28.433000564575195 -2993,2016-11-02 17:00:00,26.386999130249023,6.366000175476074,20.184999465942383,3.1630001068115234,6.151999950408936,2.505000114440918,25.795499801635746 -2994,2016-11-02 18:00:00,22.86899948120117,4.440000057220459,18.81800079345703,2.438999891281128,4.894000053405762,2.505000114440918,23.15950012207031 -2995,2016-11-02 19:00:00,25.214000701904297,5.78000020980835,19.05900001525879,2.868000030517578,5.745999813079834,2.483999967575073,20.08300018310547 -2996,2016-11-02 20:00:00,22.450000762939453,4.941999912261963,18.040000915527344,2.868000030517578,4.13700008392334,2.483999967575073,18.105499267578125 -2997,2016-11-02 21:00:00,22.86899948120117,5.696000099182129,18.334999084472656,3.243000030517578,5.36299991607666,2.483999967575073,16.78700065612793 -2998,2016-11-02 22:00:00,19.43400001525879,4.188000202178955,14.850000381469728,2.1979999542236333,4.85099983215332,1.2690000534057615,16.128000259399414 -2999,2016-11-02 23:00:00,18.26099967956543,4.2719998359680185,13.107999801635742,1.8760000467300413,4.85099983215332,1.2690000534057615,15.468500137329102 -3000,2016-11-03 00:00:00,16.836999893188473,0.0,12.277000427246096,1.7419999837875366,4.349999904632568,1.22599995136261,15.029500007629396 -3001,2016-11-03 01:00:00,17.34000015258789,4.355999946594238,11.795000076293944,1.9029999971389768,5.576000213623047,1.22599995136261,14.59000015258789 -3002,2016-11-03 02:00:00,15.916000366210938,0.0,11.28499984741211,2.0369999408721924,5.043000221252441,1.6100000143051147,13.711000442504885 -3003,2016-11-03 03:00:00,15.916000366210938,0.0,11.5,1.7960000038146973,3.8059999942779537,1.6100000143051147,13.271499633789062 -3004,2016-11-03 04:00:00,15.07800006866455,0.0,11.607000350952148,2.0639998912811284,4.818999767303467,1.22599995136261,13.271499633789062 -3005,2016-11-03 05:00:00,16.250999450683597,4.355999946594238,12.062999725341797,2.2249999046325684,4.638000011444092,1.22599995136261,12.83199977874756 -3006,2016-11-03 06:00:00,16.753999710083008,0.0,12.812999725341797,1.9570000171661377,4.072999954223634,2.440999984741211,12.392499923706056 -3007,2016-11-03 07:00:00,17.256000518798828,0.0,12.973999977111816,1.4479999542236328,4.083000183105469,1.22599995136261,12.392499923706056 -3008,2016-11-03 08:00:00,15.83199977874756,0.0,11.553000450134276,0.0,4.051000118255615,1.2150000333786009,13.271499633789062 -3009,2016-11-03 09:00:00,17.172000885009766,0.0,14.072999954223633,1.9570000171661377,2.9210000038146973,1.2150000333786009,16.347999572753903 -3010,2016-11-03 10:00:00,18.010000228881836,0.0,14.58199977874756,1.6890000104904177,2.9210000038146973,1.3220000267028809,20.302499771118164 -3011,2016-11-03 11:00:00,18.59600067138672,0.0,14.958000183105469,1.9029999971389768,2.9210000038146973,1.4179999828338623,24.91699981689453 -3012,2016-11-03 12:00:00,16.334999084472653,0.0,13.135000228881836,0.0,2.9210000038146973,0.0,27.11400032043457 -3013,2016-11-03 13:00:00,17.507999420166016,0.0,14.63599967956543,2.3320000171661377,2.9210000038146973,1.3329999446868896,29.09199905395508 -3014,2016-11-03 14:00:00,17.172000885009766,4.188000202178955,14.072999954223633,2.438999891281128,2.9210000038146973,1.4179999828338623,30.19050025939941 -3015,2016-11-03 15:00:00,18.763999938964844,4.775000095367432,15.22599983215332,2.9749999046325684,2.9210000038146973,1.22599995136261,30.40999984741211 -3016,2016-11-03 16:00:00,21.94700050354004,6.031000137329103,17.476999282836914,3.7260000705718994,4.201000213623047,1.22599995136261,29.09149932861328 -3017,2016-11-03 17:00:00,23.95800018310547,5.947999954223633,19.78300094604492,3.6459999084472656,4.201000213623047,1.22599995136261,27.11450004577637 -3018,2016-11-03 18:00:00,26.88999938964844,6.701000213623048,21.33699989318848,3.99399995803833,5.415999889373778,1.22599995136261,24.69750022888184 -3019,2016-11-03 19:00:00,26.88999938964844,7.539000034332275,21.202999114990234,4.611000061035156,5.415999889373778,1.22599995136261,22.06049919128418 -3020,2016-11-03 20:00:00,27.559999465942383,7.454999923706055,22.972999572753903,4.959000110626222,4.264999866485597,1.22599995136261,19.423999786376957 -3021,2016-11-03 21:00:00,28.64900016784668,9.130999565124512,23.61599922180176,6.2189998626708975,5.491000175476074,1.2580000162124634,17.446500778198242 -3022,2016-11-03 22:00:00,24.208999633789062,7.539000034332275,20.131000518798828,4.959000110626222,3.816999912261963,2.6010000705718994,16.34749984741211 -3023,2016-11-03 23:00:00,18.847999572753903,5.193999767303467,13.564000129699709,2.6540000438690186,5.25600004196167,2.6010000705718994,15.908499717712402 -3024,2016-11-04 00:00:00,18.59600067138672,4.859000205993652,15.145000457763672,2.9219999313354488,3.3580000400543213,1.3539999723434448,15.468500137329102 -3025,2016-11-04 01:00:00,20.77400016784668,6.031000137329103,15.467000007629396,3.2170000076293945,5.863999843597412,2.6440000534057617,15.468500137329102 -3026,2016-11-04 02:00:00,19.43400001525879,5.110000133514403,15.680999755859377,3.0829999446868896,4.616000175476074,1.406999945640564,15.468500137329102 -3027,2016-11-04 03:00:00,20.60700035095215,7.454999923706055,15.4399995803833,4.744999885559082,4.616000175476074,1.406999945640564,15.24899959564209 -3028,2016-11-04 04:00:00,18.429000854492188,5.52899980545044,13.37600040435791,3.0559999942779537,4.414000034332275,1.406999945640564,14.809499740600586 -3029,2016-11-04 05:00:00,18.59600067138672,5.193999767303467,13.859000205993652,2.7880001068115234,4.423999786376953,1.406999945640564,14.59000015258789 -3030,2016-11-04 06:00:00,21.277000427246094,5.52899980545044,16.486000061035153,2.868000030517578,4.307000160217285,1.406999945640564,14.59000015258789 -3031,2016-11-04 07:00:00,21.277000427246094,5.52899980545044,18.28199958801269,3.8329999446868896,4.1469998359680185,1.2369999885559082,14.37049961090088 -3032,2016-11-04 08:00:00,23.45499992370605,7.203999996185303,18.8439998626709,4.422999858856201,5.373000144958496,2.463000059127808,15.468500137329102 -3033,2016-11-04 09:00:00,22.53400039672852,6.86899995803833,19.91699981689453,5.013000011444092,2.815000057220459,1.493000030517578,18.32550048828125 -3034,2016-11-04 10:00:00,27.392000198364247,9.550000190734863,23.347999572753903,6.7820000648498535,4.254000186920166,1.493000030517578,21.401500701904297 -3035,2016-11-04 11:00:00,30.57500076293945,11.5600004196167,26.858999252319336,8.845999717712402,3.0380001068115234,1.493000030517578,25.35650062561035 -3036,2016-11-04 12:00:00,26.88999938964844,8.543999671936035,23.53499984741211,6.353000164031982,3.0380001068115234,1.493000030517578,27.55400085449219 -3037,2016-11-04 13:00:00,25.04700088500977,8.293000221252441,21.604999542236328,6.031000137329103,3.0380001068115234,1.493000030517578,30.190000534057607 -3038,2016-11-04 14:00:00,27.141000747680664,9.968000411987305,23.10700035095215,7.71999979019165,4.264999866485597,1.493000030517578,32.167999267578125 -3039,2016-11-04 15:00:00,29.066999435424805,10.973999977111816,24.82200050354004,8.310000419616701,4.243000030517578,1.493000030517578,32.82699966430664 -3040,2016-11-04 16:00:00,30.99399948120117,11.810999870300291,25.43899917602539,8.336999893188478,5.459000110626222,1.493000030517578,31.728500366210927 -3041,2016-11-04 17:00:00,33.50699996948242,12.314000129699709,27.04700088500977,8.444000244140625,6.684999942779541,2.7079999446868896,29.97050094604492 -3042,2016-11-04 18:00:00,34.0099983215332,12.062999725341797,28.36000061035156,8.390000343322754,6.418000221252441,2.7079999446868896,27.55349922180176 -3043,2016-11-04 19:00:00,32.92100143432617,9.381999969482422,27.23500061035156,6.298999786376952,4.85099983215332,2.7079999446868896,24.91699981689453 -3044,2016-11-04 20:00:00,33.088001251220696,9.633000373840332,26.67200088500977,5.978000164031982,6.695000171661378,2.7079999446868896,22.71949958801269 -3045,2016-11-04 21:00:00,31.66399955749512,9.550000190734863,25.868000030517567,6.138999938964844,5.703999996185303,2.7079999446868896,21.840499877929688 -3046,2016-11-04 22:00:00,29.90500068664551,8.878999710083008,24.17900085449219,5.548999786376953,5.703999996185303,2.7079999446868896,21.18149948120117 -3047,2016-11-04 23:00:00,27.97900009155273,8.376999855041504,22.70400047302246,5.334000110626222,5.76800012588501,2.7079999446868896,20.522499084472656 -3048,2016-11-05 00:00:00,26.88999938964844,8.711999893188478,21.68600082397461,5.683000087738037,5.447999954223633,2.7079999446868896,20.08300018310547 -3049,2016-11-05 01:00:00,26.386999130249023,8.711999893188478,21.09600067138672,5.548999786376953,5.436999797821045,2.7079999446868896,19.423999786376957 -3050,2016-11-05 02:00:00,25.1299991607666,7.454999923706055,19.996999740600582,4.422999858856201,4.626999855041504,1.4819999933242798,18.76449966430664 -3051,2016-11-05 03:00:00,23.53899955749512,6.953000068664551,19.78300094604492,4.690999984741211,4.605999946594238,1.4819999933242798,18.32550048828125 -3052,2016-11-05 04:00:00,24.292999267578125,7.372000217437744,20.21199989318848,4.7179999351501465,4.702000141143799,1.4819999933242798,17.666000366210938 -3053,2016-11-05 05:00:00,26.88999938964844,8.208999633789062,21.44499969482422,5.414999961853027,4.702000141143799,2.740000009536743,17.226499557495114 -3054,2016-11-05 06:00:00,27.05699920654297,8.376999855041504,22.275999069213867,5.683000087738037,5.927999973297119,2.740000009536743,16.78700065612793 -3055,2016-11-05 07:00:00,28.64900016784668,8.963000297546387,22.99900054931641,5.951000213623048,5.809999942779541,2.6549999713897705,16.34749984741211 -3056,2016-11-05 08:00:00,27.726999282836918,8.795999526977539,23.375,5.896999835968018,4.584000110626222,2.6549999713897705,17.445999145507812 -3057,2016-11-05 09:00:00,27.895000457763672,9.130999565124512,25.19700050354004,7.452000141143799,2.0469999313354488,0.0,20.96199989318848 -3058,2016-11-05 10:00:00,29.15099906921387,8.963000297546387,25.840999603271484,6.915999889373777,3.3580000400543213,1.2150000333786009,24.69750022888184 -3059,2016-11-05 11:00:00,28.983999252319336,8.795999526977539,26.69899940490723,6.888999938964844,2.131999969482422,1.4709999561309814,28.21299934387207 -3060,2016-11-05 12:00:00,26.72200012207031,7.119999885559082,23.187000274658203,5.039000034332275,3.3580000400543213,1.2369999885559082,30.6299991607666 -3061,2016-11-05 13:00:00,26.88999938964844,8.543999671936035,23.99099922180176,6.245999813079834,3.3580000400543213,1.4290000200271606,33.486499786376946 -3062,2016-11-05 14:00:00,25.381999969482425,6.7849998474121085,22.812000274658203,4.90500020980835,3.3580000400543213,1.4290000200271606,35.68349838256836 -3063,2016-11-05 15:00:00,27.81100082397461,7.539000034332275,24.23200035095215,5.1469998359680185,3.3580000400543213,1.4290000200271606,36.34249877929688 -3064,2016-11-05 16:00:00,29.066999435424805,8.125,24.95599937438965,4.959000110626222,3.3580000400543213,1.4290000200271606,35.24399948120117 -3065,2016-11-05 17:00:00,33.088001251220696,8.461000442504883,26.37700080871582,4.449999809265137,5.831999778747559,2.6760001182556152,33.04700088500977 -3066,2016-11-05 18:00:00,33.088001251220696,8.041999816894531,27.288000106811523,4.664000034332275,5.352000236511231,1.4609999656677246,30.19050025939941 -3067,2016-11-05 19:00:00,33.25600051879883,9.04699993133545,27.10099983215332,5.576000213623047,6.001999855041504,2.7079999446868896,27.11450004577637 -3068,2016-11-05 20:00:00,31.32900047302246,7.789999961853027,26.618000030517567,4.664000034332275,5.639999866485598,2.7079999446868896,24.91699981689453 -3069,2016-11-05 21:00:00,31.32900047302246,7.789999961853027,25.46500015258789,4.53000020980835,5.639999866485598,2.7079999446868896,23.598499298095703 -3070,2016-11-05 22:00:00,30.57500076293945,8.711999893188478,25.572999954223643,5.548999786376953,5.607999801635742,2.7079999446868896,22.5 -3071,2016-11-05 23:00:00,28.229999542236328,7.037000179290772,23.9379997253418,4.2890000343322745,4.361000061035156,2.7079999446868896,21.840499877929688 -3072,2016-11-06 00:00:00,27.64299964904785,7.623000144958496,22.03400039672852,4.209000110626222,5.576000213623047,2.7079999446868896,21.18149948120117 -3073,2016-11-06 01:00:00,28.145999908447266,7.539000034332275,23.07999992370605,4.824999809265137,4.264999866485597,1.2899999618530271,20.522499084472656 -3074,2016-11-06 02:00:00,27.308000564575195,7.119999885559082,22.03400039672852,4.26200008392334,5.544000148773193,1.2899999618530271,19.863500595092773 -3075,2016-11-06 03:00:00,27.05699920654297,7.454999923706055,22.32900047302246,4.664000034332275,5.298999786376953,2.622999906539917,19.423999786376957 -3076,2016-11-06 04:00:00,26.63800048828125,7.539000034332275,22.83799934387207,4.959000110626222,4.083000183105469,2.622999906539917,18.98450088500977 -3077,2016-11-06 05:00:00,28.145999908447266,8.376999855041504,23.15999984741211,5.361000061035156,5.309000015258789,2.622999906539917,18.545000076293945 -3078,2016-11-06 06:00:00,29.48600006103516,8.711999893188478,23.88400077819824,5.4679999351501465,5.2129998207092285,2.622999906539917,18.105499267578125 -3079,2016-11-06 07:00:00,30.1560001373291,8.543999671936035,24.95599937438965,5.5219998359680185,5.2129998207092285,2.622999906539917,17.666000366210938 -3080,2016-11-06 08:00:00,26.972999572753903,5.863999843597412,22.275999069213867,3.4040000438690186,5.2129998207092285,2.622999906539917,18.545000076293945 -3081,2016-11-06 09:00:00,26.88999938964844,7.789999961853027,23.347999572753903,5.494999885559082,3.954999923706055,2.622999906539917,22.280500411987305 -3082,2016-11-06 10:00:00,28.145999908447266,7.372000217437744,24.44700050354004,5.0929999351501465,3.848999977111816,1.343000054359436,26.23500061035156 -3083,2016-11-06 11:00:00,28.39699935913086,6.953000068664551,24.92900085449219,4.557000160217285,3.848999977111816,1.2369999885559082,29.750999450683597 -3084,2016-11-06 12:00:00,28.481000900268555,7.203999996185303,24.15200042724609,4.690999984741211,3.848999977111816,1.2369999885559082,32.167999267578125 -3085,2016-11-06 13:00:00,27.308000564575195,7.789999961853027,23.48200035095215,5.361000061035156,3.848999977111816,1.2369999885559082,34.365501403808594 -3086,2016-11-06 14:00:00,27.47599983215332,8.711999893188478,23.75,5.816999912261963,3.848999977111816,1.2369999885559082,35.68349838256836 -3087,2016-11-06 15:00:00,26.88999938964844,7.958000183105469,23.910999298095703,5.576000213623047,3.848999977111816,1.2369999885559082,35.4635009765625 -3088,2016-11-06 16:00:00,30.743000030517567,8.461000442504883,26.83300018310547,5.576000213623047,3.848999977111816,1.2369999885559082,33.92599868774414 -3089,2016-11-06 17:00:00,39.62200164794922,11.225000381469728,33.42699813842773,7.184000015258789,6.333000183105469,2.45199990272522,32.167999267578125 -3090,2016-11-06 18:00:00,39.95700073242188,11.979000091552734,35.2760009765625,8.711999893188478,5.117000102996826,2.45199990272522,30.19050025939941 -3091,2016-11-06 19:00:00,39.0359992980957,10.722000122070312,31.871999740600582,6.433000087738037,6.172999858856201,2.45199990272522,28.65250015258789 -3092,2016-11-06 20:00:00,37.277000427246094,11.140999794006348,31.54999923706055,7.425000190734862,5.831999778747559,2.45199990272522,27.333999633789062 -3093,2016-11-06 21:00:00,41.71599960327149,12.899999618530272,34.391998291015625,8.041999816894531,7.196000099182129,2.45199990272522,26.45499992370605 -3094,2016-11-06 22:00:00,36.60699844360352,10.722000122070312,30.85300064086914,6.915999889373777,5.40500020980835,2.45199990272522,25.57600021362305 -3095,2016-11-06 23:00:00,38.86800003051758,12.314000129699709,32.24700164794922,7.907999992370605,6.610000133514402,2.45199990272522,25.35650062561035 -3096,2016-11-07 00:00:00,39.874000549316406,13.487000465393065,33.775001525878906,9.248000144958496,5.500999927520752,2.45199990272522,24.69750022888184 -3097,2016-11-07 01:00:00,34.261001586914055,11.47599983215332,28.468000411987305,7.665999889373777,5.500999927520752,2.45199990272522,24.69750022888184 -3098,2016-11-07 02:00:00,33.25600051879883,11.057000160217283,27.690000534057607,7.452000141143799,5.436999797821045,2.45199990272522,24.25749969482422 -3099,2016-11-07 03:00:00,40.29199981689453,13.56999969482422,33.722000122070305,9.194000244140623,6.610000133514402,2.45199990272522,24.038000106811523 -3100,2016-11-07 04:00:00,36.77399826049805,12.062999725341797,32.03300094604492,8.685000419616701,5.0,2.45199990272522,24.038000106811523 -3101,2016-11-07 05:00:00,38.86800003051758,13.319000244140623,34.06999969482422,9.838000297546388,5.011000156402588,2.45199990272522,24.038000106811523 -3102,2016-11-07 06:00:00,41.46500015258789,13.73799991607666,36.29499816894531,10.267000198364258,5.074999809265137,2.45199990272522,24.25749969482422 -3103,2016-11-07 07:00:00,42.80500030517578,13.904999732971191,38.14500045776367,10.213000297546388,5.0960001945495605,2.45199990272522,24.69750022888184 -3104,2016-11-07 08:00:00,38.11399841308594,11.140999794006348,34.5260009765625,7.98799991607666,3.858999967575073,2.45199990272522,25.13649940490723 -3105,2016-11-07 09:00:00,40.04100036621094,12.062999725341797,36.5629997253418,8.819000244140625,3.848999977111816,1.246999979019165,25.35650062561035 -3106,2016-11-07 10:00:00,40.459999084472656,12.229999542236328,37.071998596191406,8.873000144958496,3.848999977111816,1.246999979019165,25.35650062561035 -3107,2016-11-07 11:00:00,42.21900177001953,12.815999984741213,38.41299819946289,9.48900032043457,3.848999977111816,1.246999979019165,25.57600021362305 -3108,2016-11-07 12:00:00,39.0359992980957,10.13599967956543,35.75899887084961,7.50600004196167,2.5910000801086426,0.0,25.35650062561035 -3109,2016-11-07 13:00:00,42.1349983215332,13.56999969482422,38.89500045776367,10.883000373840332,2.5910000801086426,0.0,23.818500518798828 -3110,2016-11-07 14:00:00,40.04100036621094,12.314000129699709,38.35900115966797,10.401000022888184,2.6010000705718994,0.0,23.15950012207031 -3111,2016-11-07 15:00:00,37.19300079345703,10.973999977111816,34.9010009765625,8.845999717712402,2.6010000705718994,0.0,22.71949958801269 -3112,2016-11-07 16:00:00,38.36600112915039,11.225000381469728,34.632999420166016,8.041999816894531,3.9449999332427983,1.246999979019165,22.280500411987305 -3113,2016-11-07 17:00:00,42.97299957275391,11.392000198364258,38.49300003051758,8.282999992370605,3.9449999332427983,1.246999979019165,21.401500701904297 -3114,2016-11-07 18:00:00,42.303001403808594,11.47599983215332,38.41299819946289,8.282999992370605,3.4219999313354488,1.246999979019165,20.522499084472656 -3115,2016-11-07 19:00:00,36.68999862670898,9.04699993133545,32.22100067138672,5.869999885559082,4.690999984741211,1.246999979019165,20.08300018310547 -3116,2016-11-07 20:00:00,44.3129997253418,12.5649995803833,39.24399948120117,8.845999717712402,4.690999984741211,1.2580000162124634,19.64349937438965 -3117,2016-11-07 21:00:00,42.21900177001953,11.309000015258787,38.43899917602539,8.14900016784668,4.690999984741211,1.2580000162124634,19.64349937438965 -3118,2016-11-07 22:00:00,42.63800048828125,13.234999656677244,38.35900115966797,10.052000045776367,5.0,1.5349999666213991,19.20450019836425 -3119,2016-11-07 23:00:00,42.72200012207031,12.732999801635742,37.233001708984375,8.95300006866455,5.052999973297119,1.22599995136261,18.76449966430664 -3120,2016-11-08 00:00:00,38.198001861572266,10.38700008392334,33.93600082397461,7.747000217437744,3.816999912261963,1.246999979019165,18.32550048828125 -3121,2016-11-08 01:00:00,38.70100021362305,11.309000015258787,35.007999420166016,8.685000419616701,3.785000085830689,1.246999979019165,17.885499954223633 -3122,2016-11-08 02:00:00,37.19300079345703,10.13599967956543,33.31999969482422,7.559000015258789,3.785000085830689,1.246999979019165,17.006500244140625 -3123,2016-11-08 03:00:00,37.19300079345703,10.220000267028809,33.292999267578125,7.665999889373777,4.0939998626708975,1.2369999885559082,16.567499160766598 -3124,2016-11-08 04:00:00,37.10900115966797,10.722000122070312,33.990001678466804,8.390000343322754,4.125999927520752,0.0,16.34749984741211 -3125,2016-11-08 05:00:00,39.790000915527344,11.727999687194824,35.0620002746582,8.52400016784668,3.6989998817443848,1.22599995136261,15.68850040435791 -3126,2016-11-08 06:00:00,40.125,11.727999687194824,36.321998596191406,9.006999969482422,3.390000104904175,0.0,15.24899959564209 -3127,2016-11-08 07:00:00,41.46500015258789,11.309000015258787,35.75899887084961,7.747000217437744,5.885000228881836,1.3109999895095823,15.029500007629396 -3128,2016-11-08 08:00:00,33.757999420166016,8.208999633789062,32.97100067138672,6.5939998626708975,0.0,0.0,15.24899959564209 -3129,2016-11-08 09:00:00,36.94200134277344,10.55500030517578,35.73199844360352,8.979999542236328,0.0,0.0,15.468999862670898 -3130,2016-11-08 10:00:00,34.93099975585937,8.461000442504883,34.1510009765625,7.1040000915527335,0.0,0.0,16.128000259399414 -3131,2016-11-08 11:00:00,39.11999893188477,10.052000045776367,36.0,7.532000064849853,2.559000015258789,0.0,17.445999145507812 -3132,2016-11-08 12:00:00,37.86299896240234,10.55500030517578,35.03499984741211,8.229000091552733,2.559000015258789,0.0,18.545000076293945 -3133,2016-11-08 13:00:00,38.198001861572266,11.225000381469728,34.98199844360352,8.73900032043457,3.7100000381469727,0.0,18.98450088500977 -3134,2016-11-08 14:00:00,39.11999893188477,12.984000205993652,36.0,10.133000373840332,3.7100000381469727,1.2580000162124634,19.64349937438965 -3135,2016-11-08 15:00:00,42.88899993896485,14.743000030517578,39.35100173950195,11.526000022888184,2.4200000762939453,1.3220000267028809,19.20450019836425 -3136,2016-11-08 16:00:00,45.48600006103516,15.581000328063965,41.30799865722656,11.795000076293944,3.5820000171661377,1.2790000438690186,18.76449966430664 -3137,2016-11-08 17:00:00,49.75799942016602,17.256000518798828,45.16799926757813,13.081000328063965,4.4780001640319815,1.2790000438690186,18.105499267578125 -3138,2016-11-08 18:00:00,50.26100158691406,17.172000885009766,44.25600051879883,12.062999725341797,5.692999839782715,2.494999885559082,17.885499954223633 -3139,2016-11-08 19:00:00,45.73699951171875,14.407999992370604,39.75299835205078,10.159000396728516,5.703999996185303,2.494999885559082,17.666000366210938 -3140,2016-11-08 20:00:00,47.915000915527344,15.161999702453612,41.54899978637695,10.829999923706056,5.703999996185303,2.494999885559082,17.446500778198242 -3141,2016-11-08 21:00:00,47.1609992980957,14.743000030517578,40.90599822998047,10.427000045776367,5.756999969482423,1.4179999828338623,17.226499557495114 -3142,2016-11-08 22:00:00,46.071998596191406,15.83199977874756,40.23500061035156,11.633999824523926,5.5329999923706055,1.4179999828338623,17.006500244140625 -3143,2016-11-08 23:00:00,44.56499862670898,15.496999740600586,38.92200088500977,11.472999572753904,5.40500020980835,1.2150000333786009,16.78700065612793 -3144,2016-11-09 00:00:00,42.1349983215332,14.743000030517578,36.696998596191406,11.151000022888184,5.40500020980835,2.5160000324249268,16.34749984741211 -3145,2016-11-09 01:00:00,42.1349983215332,14.407999992370604,36.992000579833984,10.829999923706056,5.171000003814697,1.2790000438690186,15.908499717712402 -3146,2016-11-09 02:00:00,40.87900161743164,14.156999588012695,35.91999816894531,10.722000122070312,5.171000003814697,1.2790000438690186,15.468500137329102 -3147,2016-11-09 03:00:00,39.95700073242188,13.98900032043457,34.31100082397461,10.213000297546388,5.171000003814697,1.2790000438690186,15.24899959564209 -3148,2016-11-09 04:00:00,41.88399887084961,14.743000030517578,36.027000427246094,10.96399974822998,5.171000003814697,1.2790000438690186,15.24899959564209 -3149,2016-11-09 05:00:00,40.9630012512207,14.324000358581545,35.86600112915039,10.855999946594238,5.171000003814697,1.2790000438690186,15.24899959564209 -3150,2016-11-09 06:00:00,43.47600173950195,14.994000434875488,38.54700088500977,11.526000022888184,5.171000003814697,1.2790000438690186,15.029500007629396 -3151,2016-11-09 07:00:00,44.3129997253418,14.743000030517578,38.46599960327149,10.90999984741211,5.960000038146973,1.2580000162124634,14.809499740600586 -3152,2016-11-09 08:00:00,40.20899963378906,12.64900016784668,35.303001403808594,9.0600004196167,5.960000038146973,2.5269999504089355,14.809499740600586 -3153,2016-11-09 09:00:00,41.54899978637695,13.821999549865724,37.71599960327149,10.29300022125244,3.507999897003174,2.5269999504089355,15.908499717712402 -3154,2016-11-09 10:00:00,41.2140007019043,12.815999984741213,37.15299987792969,9.515999794006348,3.507999897003174,2.5269999504089355,17.226499557495114 -3155,2016-11-09 11:00:00,44.64799880981445,13.98900032043457,40.58399963378906,10.508000373840332,3.507999897003174,2.5269999504089355,19.64349937438965 -3156,2016-11-09 12:00:00,42.97299957275391,14.576000213623049,39.83300018310547,11.553000450134276,3.507999897003174,1.2899999618530271,20.742000579833984 -3157,2016-11-09 13:00:00,44.81600189208984,15.916000366210938,41.01300048828125,12.277000427246096,3.507999897003174,1.2899999618530271,20.08300018310547 -3158,2016-11-09 14:00:00,44.48099899291992,16.166999816894528,40.85200119018555,12.78600025177002,3.507999897003174,1.2899999618530271,20.08300018310547 -3159,2016-11-09 15:00:00,45.1510009765625,16.753999710083008,41.52199935913086,13.081000328063965,3.507999897003174,1.2899999618530271,19.863500595092773 -3160,2016-11-09 16:00:00,48.50199890136719,16.166999816894528,44.01499938964844,12.142999649047852,4.734000205993652,1.2899999618530271,19.423999786376957 -3161,2016-11-09 17:00:00,49.25600051879883,15.329999923706056,45.06000137329102,11.312000274658203,4.734000205993652,1.2899999618530271,19.20400047302246 -3162,2016-11-09 18:00:00,49.75799942016602,15.413000106811523,45.16799926757813,11.33899974822998,4.755000114440918,1.2899999618530271,18.98450088500977 -3163,2016-11-09 19:00:00,40.459999084472656,10.55500030517578,35.54399871826172,7.1570000648498535,5.992000102996826,2.559000015258789,18.98450088500977 -3164,2016-11-09 20:00:00,41.71599960327149,11.47599983215332,36.42900085449219,7.452000141143799,4.914999961853027,2.559000015258789,18.98450088500977 -3165,2016-11-09 21:00:00,40.20899963378906,11.392000198364258,35.597999572753906,7.747000217437744,4.6589999198913565,2.559000015258789,18.32550048828125 -3166,2016-11-09 22:00:00,44.900001525878906,12.899999618530272,39.24399948120117,8.765000343322754,5.885000228881836,2.559000015258789,17.666000366210938 -3167,2016-11-09 23:00:00,44.48099899291992,13.152000427246096,39.59199905395508,9.220999717712402,4.734000205993652,2.559000015258789,17.666000366210938 -3168,2016-11-10 00:00:00,42.303001403808594,12.899999618530272,36.8849983215332,8.791999816894531,5.906000137329103,2.559000015258789,17.446500778198242 -3169,2016-11-10 01:00:00,37.77899932861328,10.220000267028809,34.338001251220696,7.3979997634887695,4.190000057220459,1.3009999990463257,17.226499557495114 -3170,2016-11-10 02:00:00,39.95700073242188,11.309000015258787,35.141998291015625,7.692999839782715,4.190000057220459,1.3009999990463257,16.78700065612793 -3171,2016-11-10 03:00:00,38.53300094604492,11.057000160217283,35.33000183105469,7.98799991607666,4.190000057220459,1.3009999990463257,16.34749984741211 -3172,2016-11-10 04:00:00,38.198001861572266,11.309000015258787,35.089000701904304,8.336999893188478,3.869999885559082,1.3009999990463257,16.34749984741211 -3173,2016-11-10 05:00:00,40.459999084472656,11.644000053405762,36.0,8.069000244140625,3.7739999294281006,1.3009999990463257,16.34749984741211 -3174,2016-11-10 06:00:00,41.54899978637695,12.062999725341797,37.79600143432617,8.765000343322754,3.82699990272522,1.3009999990463257,16.128000259399414 -3175,2016-11-10 07:00:00,45.23500061035156,13.402999877929688,40.262001037597656,9.435999870300291,4.9679999351501465,1.2369999885559082,15.468500137329102 -3176,2016-11-10 08:00:00,40.71099853515625,10.55500030517578,35.75899887084961,6.995999813079834,4.9679999351501465,2.483999967575073,15.029500007629396 -3177,2016-11-10 09:00:00,42.21900177001953,12.145999908447266,38.89500045776367,9.0600004196167,3.507999897003174,1.2899999618530271,15.24899959564209 -3178,2016-11-10 10:00:00,41.46500015258789,11.225000381469728,39.16299819946289,8.685000419616701,3.507999897003174,0.0,15.68850040435791 -3179,2016-11-10 11:00:00,43.47600173950195,12.145999908447266,39.45800018310547,8.925999641418457,3.507999897003174,1.246999979019165,16.567499160766598 -3180,2016-11-10 12:00:00,42.303001403808594,12.5649995803833,39.35100173950195,9.729999542236328,3.507999897003174,0.0,17.885499954223633 -3181,2016-11-10 13:00:00,40.79499816894531,13.73799991607666,37.18000030517578,10.427000045776367,3.507999897003174,1.2369999885559082,20.08300018310547 -3182,2016-11-10 14:00:00,44.81600189208984,14.743000030517578,41.28099822998047,11.633999824523926,3.507999897003174,0.0,21.401500701904297 -3183,2016-11-10 15:00:00,44.229000091552734,14.743000030517578,40.87900161743164,11.687000274658203,3.507999897003174,1.3329999446868896,21.840999603271484 -3184,2016-11-10 16:00:00,44.900001525878906,14.324000358581545,42.56800079345703,11.821000099182127,2.25,0.0,21.400999069213867 -3185,2016-11-10 17:00:00,47.66400146484375,14.659000396728516,43.80099868774414,11.418999671936035,3.496999979019165,1.2790000438690186,19.863500595092773 -3186,2016-11-10 18:00:00,49.25600051879883,14.82699966430664,44.25600051879883,10.855999946594238,4.85099983215332,1.246999979019165,18.76449966430664 -3187,2016-11-10 19:00:00,45.65399932861328,13.152000427246096,39.77999877929688,8.925999641418457,4.85099983215332,2.483999967575073,17.885499954223633 -3188,2016-11-10 20:00:00,45.23500061035156,12.480999946594238,39.48500061035156,8.496999740600586,4.958000183105469,2.483999967575073,17.226499557495114 -3189,2016-11-10 21:00:00,46.65900039672852,14.407999992370604,41.36100006103516,10.024999618530272,6.065999984741211,2.483999967575073,17.006500244140625 -3190,2016-11-10 22:00:00,45.73699951171875,14.743000030517578,40.61100006103516,10.69499969482422,5.2129998207092285,2.483999967575073,17.006500244140625 -3191,2016-11-10 23:00:00,40.79499816894531,11.895000457763672,35.518001556396484,7.98799991607666,5.2129998207092285,2.483999967575073,16.567499160766598 -3192,2016-11-11 00:00:00,40.3759994506836,12.39799976348877,36.05400085449219,9.220999717712402,3.901999950408936,2.483999967575073,16.567499160766598 -3193,2016-11-11 01:00:00,40.62699890136719,12.64900016784668,36.05400085449219,9.11400032043457,5.138999938964844,2.483999967575073,16.567499160766598 -3194,2016-11-11 02:00:00,40.79499816894531,13.067999839782717,36.321998596191406,9.461999893188477,4.787000179290772,2.483999967575073,16.34749984741211 -3195,2016-11-11 03:00:00,40.125,13.487000465393065,35.11600112915039,9.461999893188477,4.787000179290772,2.483999967575073,16.128000259399414 -3196,2016-11-11 04:00:00,40.20899963378906,13.319000244140623,35.625,9.784000396728516,5.14900016784668,2.483999967575073,15.68850040435791 -3197,2016-11-11 05:00:00,41.29800033569336,13.654000282287598,36.7509994506836,10.159000396728516,3.891000032424927,2.483999967575073,15.68850040435791 -3198,2016-11-11 06:00:00,43.64300155639648,14.324000358581545,38.70800018310547,10.722000122070312,5.10699987411499,2.483999967575073,15.24899959564209 -3199,2016-11-11 07:00:00,43.89400100708008,13.654000282287598,38.94900131225586,9.91800022125244,4.935999870300293,1.22599995136261,15.029500007629396 -3200,2016-11-11 08:00:00,40.54399871826172,11.225000381469728,35.597999572753906,7.88100004196167,4.935999870300293,1.22599995136261,15.24899959564209 -3201,2016-11-11 09:00:00,41.54899978637695,11.727999687194824,38.0369987487793,8.819000244140625,3.6679999828338623,1.2150000333786009,18.105499267578125 -3202,2016-11-11 10:00:00,41.2140007019043,11.644000053405762,37.39400100708008,8.416999816894531,3.6679999828338623,1.2150000333786009,20.74250030517578 -3203,2016-11-11 11:00:00,44.81600189208984,14.072999954223633,41.57600021362305,10.668999671936035,3.6679999828338623,1.2150000333786009,24.257999420166016 -3204,2016-11-11 12:00:00,42.1349983215332,12.480999946594238,39.29700088500977,9.623000144958496,3.6679999828338623,0.0,26.23500061035156 -3205,2016-11-11 13:00:00,42.1349983215332,13.152000427246096,38.43899917602539,9.94499969482422,3.6679999828338623,1.2150000333786009,28.871999740600582 -3206,2016-11-11 14:00:00,41.54899978637695,13.319000244140623,37.58200073242188,10.105999946594238,3.6679999828338623,1.2150000333786009,29.97050094604492 -3207,2016-11-11 15:00:00,44.3129997253418,14.743000030517578,39.48500061035156,11.178000450134276,3.6679999828338623,1.2150000333786009,29.750999450683597 -3208,2016-11-11 16:00:00,46.82600021362305,15.916000366210938,41.46799850463867,11.472999572753904,4.90399980545044,2.45199990272522,27.993000030517567 -3209,2016-11-11 17:00:00,48.50199890136719,15.413000106811523,42.91600036621094,11.258000373840332,6.162000179290772,2.45199990272522,25.795499801635746 -3210,2016-11-11 18:00:00,48.91999816894531,15.664999961853027,44.229000091552734,11.28499984741211,4.947000026702881,2.45199990272522,23.37899971008301 -3211,2016-11-11 19:00:00,45.31800079345703,13.402999877929688,39.48500061035156,9.16800022125244,6.248000144958496,2.45199990272522,22.06049919128418 -3212,2016-11-11 20:00:00,45.31800079345703,12.39799976348877,40.10100173950195,8.310000419616701,6.0879998207092285,2.45199990272522,21.18149948120117 -3213,2016-11-11 21:00:00,44.39699935913086,12.5649995803833,40.23500061035156,8.873000144958496,4.755000114440918,2.45199990272522,20.522499084472656 -3214,2016-11-11 22:00:00,45.31800079345703,14.324000358581545,40.71799850463867,10.53499984741211,4.755000114440918,2.45199990272522,19.863500595092773 -3215,2016-11-11 23:00:00,43.72700119018555,14.241000175476074,39.53799819946289,10.588000297546388,4.690999984741211,2.45199990272522,19.423999786376957 -3216,2016-11-12 00:00:00,43.72700119018555,14.576000213623049,38.0369987487793,10.185999870300291,5.916999816894531,2.45199990272522,19.423999786376957 -3217,2016-11-12 01:00:00,43.05699920654297,13.56999969482422,36.9119987487793,9.54300022125244,5.96999979019165,2.45199990272522,19.64349937438965 -3218,2016-11-12 02:00:00,41.96799850463867,13.234999656677244,36.05400085449219,9.354999542236328,5.96999979019165,2.45199990272522,19.64349937438965 -3219,2016-11-12 03:00:00,38.617000579833984,11.810999870300291,33.56100082397461,8.121999740600586,5.853000164031982,2.45199990272522,19.20450019836425 -3220,2016-11-12 04:00:00,38.198001861572266,11.727999687194824,33.238998413085945,8.203000068664549,4.638000011444092,2.45199990272522,18.98450088500977 -3221,2016-11-12 05:00:00,38.11399841308594,10.973999977111816,32.060001373291016,7.130000114440918,5.863999843597412,2.45199990272522,18.76449966430664 -3222,2016-11-12 06:00:00,42.47000122070313,13.56999969482422,37.0989990234375,9.784000396728516,5.777999877929688,2.45199990272522,18.545000076293945 -3223,2016-11-12 07:00:00,44.39699935913086,13.821999549865724,37.742000579833984,9.461999893188477,5.777999877929688,2.45199990272522,18.545000076293945 -3224,2016-11-12 08:00:00,37.61199951171875,9.800999641418455,33.613998413085945,6.835000038146973,4.510000228881836,2.45199990272522,18.76449966430664 -3225,2016-11-12 09:00:00,41.79999923706055,11.644000053405762,37.79600143432617,8.255999565124513,4.510000228881836,2.45199990272522,19.863000869750977 -3226,2016-11-12 10:00:00,45.31800079345703,14.241000175476074,41.790000915527344,11.071000099182127,3.2090001106262207,2.45199990272522,20.96199989318848 -3227,2016-11-12 11:00:00,45.56999969482422,13.821999549865724,41.81700134277344,10.53499984741211,3.1979999542236333,2.45199990272522,21.840499877929688 -3228,2016-11-12 12:00:00,43.47600173950195,12.815999984741213,39.83300018310547,9.461999893188477,3.1979999542236333,1.22599995136261,23.15950012207031 -3229,2016-11-12 13:00:00,41.2140007019043,12.229999542236328,37.42100143432617,8.899999618530273,3.1979999542236333,1.2150000333786009,25.79599952697754 -3230,2016-11-12 14:00:00,42.80500030517578,14.324000358581545,38.94900131225586,10.614999771118164,3.1979999542236333,1.2150000333786009,28.433000564575195 -3231,2016-11-12 15:00:00,42.47000122070313,14.241000175476074,39.512001037597656,10.74899959564209,3.1979999542236333,1.2150000333786009,28.21299934387207 -3232,2016-11-12 16:00:00,42.88899993896485,12.39799976348877,38.680999755859375,8.73900032043457,4.455999851226807,1.2150000333786009,27.11450004577637 -3233,2016-11-12 17:00:00,47.24499893188477,14.241000175476074,41.17399978637695,9.54300022125244,5.724999904632568,2.4730000495910645,26.23550033569336 -3234,2016-11-12 18:00:00,48.16699981689453,15.329999923706056,42.72800064086914,10.803000450134276,5.724999904632568,2.4730000495910645,25.795499801635746 -3235,2016-11-12 19:00:00,45.31800079345703,13.402999877929688,39.59199905395508,8.73900032043457,5.960000038146973,2.4730000495910645,24.91699981689453 -3236,2016-11-12 20:00:00,44.0620002746582,12.062999725341797,38.33200073242188,7.71999979019165,5.544000148773193,2.4730000495910645,24.25749969482422 -3237,2016-11-12 21:00:00,43.2239990234375,11.895000457763672,37.2869987487793,7.317999839782715,5.8420000076293945,2.4730000495910645,23.37899971008301 -3238,2016-11-12 22:00:00,43.81100082397461,13.98900032043457,39.430999755859375,10.052000045776367,4.414000034332275,2.4730000495910645,22.5 -3239,2016-11-12 23:00:00,41.71599960327149,13.067999839782717,36.64300155639648,9.248000144958496,5.660999774932861,2.4730000495910645,22.280500411987305 -3240,2016-11-13 00:00:00,40.459999084472656,11.895000457763672,34.57899856567383,7.71999979019165,5.320000171661377,2.4730000495910645,22.280500411987305 -3241,2016-11-13 01:00:00,40.71099853515625,13.234999656677244,34.713001251220696,8.604999542236326,5.320000171661377,2.4730000495910645,22.280500411987305 -3242,2016-11-13 02:00:00,39.20299911499024,11.895000457763672,33.34600067138672,7.854000091552732,5.427000045776367,2.4730000495910645,22.280500411987305 -3243,2016-11-13 03:00:00,38.44900131225586,11.5600004196167,33.34600067138672,8.095000267028809,4.90399980545044,2.4730000495910645,22.06049919128418 -3244,2016-11-13 04:00:00,38.617000579833984,11.810999870300291,32.648998260498054,7.907999992370605,6.162000179290772,2.4730000495910645,21.621000289916992 -3245,2016-11-13 05:00:00,41.04600143432617,13.319000244140623,35.35699844360352,8.899999618530273,5.916999816894531,2.4730000495910645,21.621000289916992 -3246,2016-11-13 06:00:00,39.45500183105469,11.895000457763672,34.12400054931641,8.282999992370605,4.6589999198913565,2.4730000495910645,21.621000289916992 -3247,2016-11-13 07:00:00,42.47000122070313,13.319000244140623,36.64300155639648,9.54300022125244,5.809999942779541,2.4730000495910645,21.840499877929688 -3248,2016-11-13 08:00:00,36.77399826049805,10.38700008392334,33.775001525878906,7.130000114440918,3.2839999198913574,2.4730000495910645,22.06049919128418 -3249,2016-11-13 09:00:00,38.44900131225586,10.052000045776367,35.38399887084961,7.077000141143799,3.2839999198913574,2.4730000495910645,22.280500411987305 -3250,2016-11-13 10:00:00,40.79499816894531,11.309000015258787,37.79600143432617,8.14900016784668,3.2839999198913574,2.4730000495910645,23.818500518798828 -3251,2016-11-13 11:00:00,43.2239990234375,13.152000427246096,40.34299850463867,9.91800022125244,3.2839999198913574,2.4730000495910645,26.015499114990234 -3252,2016-11-13 12:00:00,41.71599960327149,12.64900016784668,38.70800018310547,9.48900032043457,3.2839999198913574,2.4730000495910645,27.993000030517567 -3253,2016-11-13 13:00:00,42.1349983215332,13.319000244140623,38.11800003051758,9.756999969482422,3.2839999198913574,2.4730000495910645,28.65250015258789 -3254,2016-11-13 14:00:00,39.2869987487793,11.47599983215332,36.10699844360352,8.310000419616701,4.48799991607666,2.4730000495910645,29.31150054931641 -3255,2016-11-13 15:00:00,39.62200164794922,11.810999870300291,35.222999572753906,7.960999965667725,4.48799991607666,2.4730000495910645,29.97050094604492 -3256,2016-11-13 16:00:00,44.900001525878906,14.743000030517578,39.80699920654297,10.133000373840332,4.48799991607666,2.4730000495910645,29.97050094604492 -3257,2016-11-13 17:00:00,44.56499862670898,12.64900016784668,38.41299819946289,8.041999816894531,5.703999996185303,2.4730000495910645,28.871999740600582 -3258,2016-11-13 18:00:00,46.65900039672852,13.402999877929688,41.415000915527344,9.248000144958496,5.235000133514403,2.4730000495910645,27.773500442504893 -3259,2016-11-13 19:00:00,40.3759994506836,10.722000122070312,37.15299987792969,7.77400016784668,3.390000104904175,2.4730000495910645,27.11450004577637 -3260,2016-11-13 20:00:00,44.56499862670898,11.979000091552734,37.742000579833984,7.372000217437744,5.821000099182129,2.4730000495910645,26.67449951171875 -3261,2016-11-13 21:00:00,43.391998291015625,11.727999687194824,37.2869987487793,7.3979997634887695,5.459000110626222,2.4730000495910645,26.23550033569336 -3262,2016-11-13 22:00:00,43.81100082397461,13.56999969482422,37.6349983215332,9.381999969482422,6.749000072479247,2.4730000495910645,26.015499114990234 -3263,2016-11-13 23:00:00,41.29800033569336,13.067999839782717,35.4370002746582,8.845999717712402,5.703999996185303,2.4730000495910645,25.57600021362305 -3264,2016-11-14 00:00:00,37.52799987792969,11.057000160217283,32.91699981689453,7.585999965667725,4.339000225067139,2.4730000495910645,25.13649940490723 -3265,2016-11-14 01:00:00,38.36600112915039,11.727999687194824,33.18600082397461,8.229000091552733,6.065999984741211,2.4730000495910645,24.69750022888184 -3266,2016-11-14 02:00:00,37.36100006103516,10.303000450134276,31.38999938964844,6.5939998626708975,5.745999813079834,2.4730000495910645,24.25749969482422 -3267,2016-11-14 03:00:00,37.277000427246094,11.225000381469728,31.336000442504893,7.3979997634887695,5.745999813079834,2.4730000495910645,23.818500518798828 -3268,2016-11-14 04:00:00,38.617000579833984,11.895000457763672,33.26599884033203,8.336999893188478,6.013000011444093,1.5779999494552612,23.598499298095703 -3269,2016-11-14 05:00:00,41.13000106811523,13.152000427246096,34.928001403808594,9.140999794006348,5.916999816894531,1.5779999494552612,23.37899971008301 -3270,2016-11-14 06:00:00,41.79999923706055,13.152000427246096,36.7239990234375,9.54300022125244,5.276999950408936,1.4609999656677246,23.37899971008301 -3271,2016-11-14 07:00:00,38.36600112915039,11.727999687194824,35.33000183105469,8.791999816894531,4.414000034332275,1.4609999656677246,22.93950080871582 -3272,2016-11-14 08:00:00,37.36100006103516,9.800999641418455,32.67599868774414,6.245999813079834,4.74399995803833,2.6760001182556152,22.93950080871582 -3273,2016-11-14 09:00:00,35.014999389648445,9.130999565124512,34.31100082397461,7.639999866485598,0.0,0.0,23.818500518798828 -3274,2016-11-14 10:00:00,39.53799819946289,10.890000343322754,38.30500030517578,8.95300006866455,0.0,0.0,26.23500061035156 -3275,2016-11-14 11:00:00,38.03099822998047,10.303000450134276,37.04600143432617,8.819000244140625,0.0,0.0,28.65250015258789 -3276,2016-11-14 12:00:00,38.617000579833984,10.722000122070312,37.98400115966797,9.086999893188477,0.0,0.0,31.728500366210927 -3277,2016-11-14 13:00:00,38.53300094604492,11.727999687194824,37.6349983215332,10.185999870300291,0.0,0.0,33.26649856567383 -3278,2016-11-14 14:00:00,38.617000579833984,12.145999908447266,37.95700073242188,10.53499984741211,0.0,0.0,33.486499786376946 -3279,2016-11-14 15:00:00,39.20299911499024,12.899999618530272,38.43899917602539,11.12399959564209,0.0,0.0,32.38800048828125 -3280,2016-11-14 16:00:00,42.72200012207031,13.904999732971191,39.96699905395508,10.722000122070312,2.622999906539917,1.2580000162124634,31.28899955749512 -3281,2016-11-14 17:00:00,46.65900039672852,14.072999954223633,41.17399978637695,9.972000122070312,5.117000102996826,2.782999992370605,30.40999984741211 -3282,2016-11-14 18:00:00,48.08300018310547,14.91100025177002,43.18399810791016,10.668999671936035,5.491000175476074,1.5570000410079956,28.65250015258789 -3283,2016-11-14 19:00:00,42.72200012207031,11.895000457763672,37.84999847412109,8.095000267028809,5.480000019073486,1.5570000410079956,27.99349975585937 -3284,2016-11-14 20:00:00,41.46500015258789,10.55500030517578,36.483001708984375,6.942999839782715,5.500999927520752,1.5570000410079956,26.894500732421875 -3285,2016-11-14 21:00:00,42.303001403808594,11.225000381469728,37.1259994506836,7.34499979019165,5.544000148773193,2.7929999828338623,25.57600021362305 -3286,2016-11-14 22:00:00,38.53300094604492,10.38700008392334,33.82899856567383,6.915999889373777,4.381999969482422,1.5349999666213991,24.69750022888184 -3287,2016-11-14 23:00:00,36.77399826049805,9.633000373840332,32.00600051879883,6.701000213623048,4.381999969482422,1.5349999666213991,24.477500915527344 -3288,2016-11-15 00:00:00,36.77399826049805,9.885000228881836,32.54199981689453,6.9689998626708975,4.381999969482422,1.5349999666213991,24.25749969482422 -3289,2016-11-15 01:00:00,38.78499984741211,12.145999908447266,34.41899871826172,8.873000144958496,4.381999969482422,1.5349999666213991,24.038000106811523 -3290,2016-11-15 02:00:00,39.53799819946289,12.39799976348877,34.391998291015625,9.034000396728516,5.5970001220703125,1.5349999666213991,23.818500518798828 -3291,2016-11-15 03:00:00,39.11999893188477,12.229999542236328,33.82899856567383,8.604999542236326,4.541999816894531,1.5349999666213991,23.37899971008301 -3292,2016-11-15 04:00:00,35.93600082397461,10.220000267028809,32.30099868774414,7.3979997634887695,4.541999816894531,1.5349999666213991,23.15950012207031 -3293,2016-11-15 05:00:00,39.45500183105469,12.480999946594238,34.41899871826172,9.11400032043457,4.541999816894531,1.5349999666213991,22.93950080871582 -3294,2016-11-15 06:00:00,40.62699890136719,12.39799976348877,36.5629997253418,9.274999618530272,4.541999816894531,1.2899999618530271,22.280500411987305 -3295,2016-11-15 07:00:00,41.46500015258789,12.39799976348877,36.21500015258789,8.685000419616701,5.789000034332275,1.2899999618530271,22.06049919128418 -3296,2016-11-15 08:00:00,38.53300094604492,9.800999641418455,33.93600082397461,6.566999912261963,4.455999851226807,2.6010000705718994,22.06049919128418 -3297,2016-11-15 09:00:00,40.04100036621094,10.38700008392334,36.05400085449219,7.425000190734862,4.446000099182129,2.6010000705718994,22.5 -3298,2016-11-15 10:00:00,40.71099853515625,10.470999717712402,36.858001708984375,7.452000141143799,3.2839999198913574,1.2369999885559082,24.477500915527344 -3299,2016-11-15 11:00:00,42.05199813842773,12.062999725341797,38.09099960327149,8.925999641418457,4.531000137329102,1.2369999885559082,26.67499923706055 -3300,2016-11-15 12:00:00,42.303001403808594,12.314000129699709,38.94900131225586,9.354999542236328,3.3159999847412114,1.22599995136261,28.21299934387207 -3301,2016-11-15 13:00:00,42.63800048828125,13.152000427246096,38.89500045776367,10.239999771118164,3.3159999847412114,1.2150000333786009,30.19050025939941 -3302,2016-11-15 14:00:00,43.30799865722656,13.98900032043457,39.13600158691406,10.668999671936035,3.3159999847412114,1.2150000333786009,31.069000244140625 -3303,2016-11-15 15:00:00,43.2239990234375,14.241000175476074,39.80699920654297,11.178000450134276,4.392000198364259,1.2150000333786009,30.40999984741211 -3304,2016-11-15 16:00:00,46.40700149536133,15.246000289916992,41.68299865722656,11.446000099182127,4.531000137329102,1.2150000333786009,28.4325008392334 -3305,2016-11-15 17:00:00,47.24499893188477,14.156999588012695,42.00500106811523,10.185999870300291,5.821000099182129,1.2150000333786009,26.67499923706055 -3306,2016-11-15 18:00:00,48.16699981689453,14.491999626159668,42.67499923706055,10.508000373840332,5.777999877929688,2.440999984741211,25.356000900268555 -3307,2016-11-15 19:00:00,45.23500061035156,12.480999946594238,39.37799835205078,8.390000343322754,5.777999877929688,2.440999984741211,24.25749969482422 -3308,2016-11-15 20:00:00,45.82099914550781,12.64900016784668,40.07500076293945,8.550999641418457,5.692999839782715,2.440999984741211,22.93950080871582 -3309,2016-11-15 21:00:00,46.57500076293945,13.73799991607666,40.77199935913086,9.864999771118164,5.692999839782715,2.440999984741211,22.5 -3310,2016-11-15 22:00:00,45.31800079345703,14.324000358581545,40.61100006103516,10.642000198364258,5.703999996185303,2.440999984741211,21.621000289916992 -3311,2016-11-15 23:00:00,44.3129997253418,13.98900032043457,37.84999847412109,9.810999870300291,5.651000022888184,2.440999984741211,21.18149948120117 -3312,2016-11-16 00:00:00,42.387001037597656,13.402999877929688,37.367000579833984,10.133000373840332,4.307000160217285,1.2369999885559082,20.74250030517578 -3313,2016-11-16 01:00:00,42.55400085449219,13.56999969482422,37.233001708984375,9.729999542236328,5.544000148773193,2.505000114440918,20.74250030517578 -3314,2016-11-16 02:00:00,38.95199966430664,11.810999870300291,34.60599899291992,8.52400016784668,4.317999839782715,2.505000114440918,20.302499771118164 -3315,2016-11-16 03:00:00,41.2140007019043,13.234999656677244,35.86600112915039,9.54300022125244,5.544000148773193,2.505000114440918,19.863500595092773 -3316,2016-11-16 04:00:00,39.874000549316406,12.062999725341797,34.17699813842773,8.175999641418457,5.544000148773193,2.505000114440918,19.423999786376957 -3317,2016-11-16 05:00:00,42.387001037597656,13.319000244140623,36.9119987487793,9.756999969482422,5.5229997634887695,1.2690000534057615,19.423999786376957 -3318,2016-11-16 06:00:00,44.0620002746582,14.407999992370604,37.95700073242188,10.105999946594238,5.5229997634887695,1.2690000534057615,18.98450088500977 -3319,2016-11-16 07:00:00,39.2869987487793,11.309000015258787,35.86600112915039,8.657999992370605,3.858999967575073,0.0,18.545000076293945 -3320,2016-11-16 08:00:00,37.52799987792969,9.130999565124512,34.955001831054695,7.210999965667725,2.483999967575073,0.0,18.76499938964844 -3321,2016-11-16 09:00:00,42.21900177001953,12.5649995803833,39.64599990844727,9.99899959564209,2.483999967575073,0.0,19.643999099731445 -3322,2016-11-16 10:00:00,40.79499816894531,11.140999794006348,38.11800003051758,8.765000343322754,2.483999967575073,0.0,21.840999603271484 -3323,2016-11-16 11:00:00,40.20899963378906,10.052000045776367,37.367000579833984,7.665999889373777,2.483999967575073,0.0,24.69700050354004 -3324,2016-11-16 12:00:00,40.125,11.140999794006348,37.608001708984375,8.925999641418457,2.483999967575073,0.0,25.57600021362305 -3325,2016-11-16 13:00:00,41.46500015258789,12.39799976348877,39.00199890136719,10.07900047302246,2.483999967575073,0.0,25.35650062561035 -3326,2016-11-16 14:00:00,42.05199813842773,13.402999877929688,39.48500061035156,10.883000373840332,2.483999967575073,0.0,24.91699981689453 -3327,2016-11-16 15:00:00,41.632999420166016,12.732999801635742,39.08300018310547,9.94499969482422,2.483999967575073,0.0,24.477500915527344 -3328,2016-11-16 16:00:00,46.071998596191406,15.246000289916992,42.29899978637695,11.902000427246096,3.6989998817443848,1.3009999990463257,24.477500915527344 -3329,2016-11-16 17:00:00,47.32899856567383,14.491999626159668,43.13000106811523,10.96399974822998,4.935999870300293,1.3009999990463257,24.69750022888184 -3330,2016-11-16 18:00:00,48.75299835205078,14.994000434875488,43.42499923706055,10.855999946594238,4.935999870300293,1.3009999990463257,24.477500915527344 -3331,2016-11-16 19:00:00,45.73699951171875,13.654000282287598,39.40399932861328,9.515999794006348,6.204999923706055,1.3009999990463257,24.25749969482422 -3332,2016-11-16 20:00:00,45.82099914550781,12.899999618530272,39.67300033569336,8.470999717712402,6.204999923706055,2.569000005722046,24.25749969482422 -3333,2016-11-16 21:00:00,45.90499877929688,14.241000175476074,39.77999877929688,9.864999771118164,5.96999979019165,2.569000005722046,22.5 -3334,2016-11-16 22:00:00,46.32400131225586,15.07800006866455,40.31600189208984,10.74899959564209,5.96999979019165,2.569000005722046,21.840499877929688 -3335,2016-11-16 23:00:00,43.2239990234375,13.821999549865724,38.65399932861328,10.29300022125244,5.074999809265137,2.569000005722046,21.621000289916992 -3336,2016-11-17 00:00:00,40.04100036621094,12.229999542236328,34.41899871826172,8.416999816894531,5.074999809265137,2.569000005722046,21.621000289916992 -3337,2016-11-17 01:00:00,37.10900115966797,11.140999794006348,32.944000244140625,8.015000343322754,5.276999950408936,2.569000005722046,21.840499877929688 -3338,2016-11-17 02:00:00,38.198001861572266,12.062999725341797,32.46200180053711,8.203000068664549,5.276999950408936,2.569000005722046,20.74250030517578 -3339,2016-11-17 03:00:00,39.45500183105469,11.810999870300291,35.11600112915039,8.685000419616701,4.061999797821045,2.569000005722046,20.08300018310547 -3340,2016-11-17 04:00:00,36.35499954223633,10.470999717712402,31.76499938964844,7.34499979019165,5.40500020980835,2.569000005722046,19.64349937438965 -3341,2016-11-17 05:00:00,38.36600112915039,11.727999687194824,35.25,9.302000045776367,2.900000095367432,1.22599995136261,19.423999786376957 -3342,2016-11-17 06:00:00,42.387001037597656,13.402999877929688,37.448001861572266,9.623000144958496,4.926000118255615,1.8339999914169312,19.20400047302246 -3343,2016-11-17 07:00:00,39.95700073242188,11.979000091552734,35.57099914550781,8.873000144958496,3.6570000648498535,1.2369999885559082,19.20400047302246 -3344,2016-11-17 08:00:00,39.20299911499024,10.38700008392334,34.98199844360352,7.34499979019165,3.625,1.5670000314712524,19.423999786376957 -3345,2016-11-17 09:00:00,39.11999893188477,10.55500030517578,36.08100128173828,7.960999965667725,3.625,1.2790000438690186,20.302499771118164 -3346,2016-11-17 10:00:00,40.54399871826172,11.5600004196167,37.84999847412109,8.765000343322754,3.4219999313354488,0.0,20.74250030517578 -3347,2016-11-17 11:00:00,41.2140007019043,11.309000015258787,38.198001861572266,8.630999565124513,2.25,0.0,21.621000289916992 -3348,2016-11-17 12:00:00,43.64300155639648,12.732999801635742,40.95899963378906,10.07900047302246,2.2390000820159908,0.0,22.280500411987305 -3349,2016-11-17 13:00:00,40.20899963378906,12.480999946594238,38.62699890136719,10.614999771118164,2.131999969482422,0.0,22.71949958801269 -3350,2016-11-17 14:00:00,41.71599960327149,12.899999618530272,38.198001861572266,10.185999870300291,3.3580000400543213,0.0,22.71949958801269 -3351,2016-11-17 15:00:00,41.88399887084961,13.402999877929688,37.84999847412109,10.052000045776367,3.3580000400543213,1.2690000534057615,22.93950080871582 -3352,2016-11-17 16:00:00,46.82600021362305,15.246000289916992,40.61100006103516,10.668999671936035,4.6589999198913565,1.2790000438690186,22.93950080871582 -3353,2016-11-17 17:00:00,39.62200164794922,11.47599983215332,36.0,8.578000068664549,4.6589999198913565,1.2790000438690186,22.93950080871582 -3354,2016-11-17 18:00:00,48.33399963378906,14.91100025177002,43.15700149536133,10.937000274658203,5.885000228881836,2.494999885559082,22.93950080871582 -3355,2016-11-17 19:00:00,42.72200012207031,11.140999794006348,38.97600173950195,7.98799991607666,4.573999881744385,2.494999885559082,22.93950080871582 -3356,2016-11-17 20:00:00,43.05699920654297,11.644000053405762,38.14500045776367,7.907999992370605,4.670000076293945,2.494999885559082,23.15900039672852 -3357,2016-11-17 21:00:00,46.65900039672852,14.576000213623049,42.35300064086914,10.96399974822998,3.4539999961853027,1.2690000534057615,23.37899971008301 -3358,2016-11-17 22:00:00,46.32400131225586,15.161999702453612,40.61100006103516,10.776000022888184,5.8959999084472665,1.2690000534057615,23.37899971008301 -3359,2016-11-17 23:00:00,41.96799850463867,13.319000244140623,38.22499847412109,10.07900047302246,4.573999881744385,1.5140000581741333,23.37899971008301 -3360,2016-11-18 00:00:00,39.62200164794922,12.815999984741213,36.375,10.024999618530272,3.4539999961853027,0.0,23.37899971008301 -3361,2016-11-18 01:00:00,40.87900161743164,12.984000205993652,35.8120002746582,9.302000045776367,5.052999973297119,1.246999979019165,23.37899971008301 -3362,2016-11-18 02:00:00,38.95199966430664,11.727999687194824,33.80199813842773,8.229000091552733,5.052999973297119,1.246999979019165,23.37899971008301 -3363,2016-11-18 03:00:00,38.53300094604492,11.5600004196167,35.007999420166016,8.604999542236326,3.688999891281128,1.246999979019165,23.37899971008301 -3364,2016-11-18 04:00:00,40.04100036621094,12.64900016784668,35.625,9.435999870300291,4.935999870300293,1.246999979019165,23.15950012207031 -3365,2016-11-18 05:00:00,41.13000106811523,13.402999877929688,36.7239990234375,9.756999969482422,4.711999893188477,2.463000059127808,23.15950012207031 -3366,2016-11-18 06:00:00,43.89400100708008,13.56999969482422,38.92200088500977,10.024999618530272,5.011000156402588,2.463000059127808,22.5 -3367,2016-11-18 07:00:00,44.14599990844727,13.234999656677244,39.48500061035156,9.70400047302246,5.011000156402588,2.463000059127808,21.400999069213867 -3368,2016-11-18 08:00:00,32.58599853515625,9.04699993133545,30.048999786376957,6.5939998626708975,3.785000085830689,1.3329999446868896,21.18149948120117 -3369,2016-11-18 09:00:00,39.11999893188477,11.5600004196167,36.7509994506836,9.16800022125244,2.559000015258789,0.0,21.401500701904297 -3370,2016-11-18 10:00:00,38.44900131225586,10.38700008392334,36.321998596191406,8.52400016784668,2.559000015258789,0.0,22.71949958801269 -3371,2016-11-18 11:00:00,42.88899993896485,13.487000465393065,40.39599990844727,11.232000350952148,2.559000015258789,0.0,23.81800079345703 -3372,2016-11-18 12:00:00,40.9630012512207,12.899999618530272,38.52000045776367,10.560999870300291,2.559000015258789,0.0,24.477500915527344 -3373,2016-11-18 13:00:00,42.72200012207031,14.82699966430664,40.10100173950195,12.08899974822998,2.559000015258789,0.0,24.91699981689453 -3374,2016-11-18 14:00:00,39.2869987487793,13.487000465393065,36.777000427246094,11.258000373840332,2.559000015258789,0.0,25.35650062561035 -3375,2016-11-18 15:00:00,38.617000579833984,12.314000129699709,35.972999572753906,9.94499969482422,2.559000015258789,0.0,25.57600021362305 -3376,2016-11-18 16:00:00,42.72200012207031,12.815999984741213,37.31399917602539,9.11400032043457,5.011000156402588,1.2369999885559082,25.57600021362305 -3377,2016-11-18 17:00:00,44.3129997253418,12.480999946594238,37.90299987792969,8.73900032043457,6.513999938964844,1.246999979019165,25.795499801635746 -3378,2016-11-18 18:00:00,40.20899963378906,10.973999977111816,33.963001251220696,7.263999938964844,6.513999938964844,1.246999979019165,25.795499801635746 -3379,2016-11-18 19:00:00,39.790000915527344,11.140999794006348,33.15900039672852,7.532000064849853,6.3439998626708975,1.2150000333786009,25.795499801635746 -3380,2016-11-18 20:00:00,41.88399887084961,13.98900032043457,37.01900100708008,10.588000297546388,5.0,1.2150000333786009,25.795499801635746 -3381,2016-11-18 21:00:00,46.99399948120117,15.748000144958494,41.38800048828125,11.71399974822998,6.140999794006348,1.2150000333786009,25.795499801635746 -3382,2016-11-18 22:00:00,44.900001525878906,15.161999702453612,40.02099990844727,11.795000076293944,4.519999980926514,2.440999984741211,25.795499801635746 -3383,2016-11-18 23:00:00,44.0620002746582,15.581000328063965,38.78799819946289,11.954999923706056,5.703999996185303,2.440999984741211,25.795499801635746 -3384,2016-11-19 00:00:00,41.71599960327149,12.899999618530272,36.3489990234375,9.302000045776367,5.5329999923706055,1.4819999933242798,25.795499801635746 -3385,2016-11-19 01:00:00,40.04100036621094,12.314000129699709,36.10699844360352,9.16800022125244,5.459000110626222,1.2150000333786009,25.795499801635746 -3386,2016-11-19 02:00:00,40.62699890136719,12.314000129699709,35.73199844360352,9.0600004196167,5.459000110626222,1.2150000333786009,25.795499801635746 -3387,2016-11-19 03:00:00,39.37099838256836,11.644000053405762,34.928001403808594,8.765000343322754,3.5820000171661377,1.2369999885559082,25.795499801635746 -3388,2016-11-19 04:00:00,38.78499984741211,11.895000457763672,34.713001251220696,8.873000144958496,4.90399980545044,1.3009999990463257,25.795499801635746 -3389,2016-11-19 05:00:00,39.874000549316406,12.815999984741213,35.33000183105469,9.70400047302246,4.711999893188477,1.4390000104904177,25.795499801635746 -3390,2016-11-19 06:00:00,41.29800033569336,12.480999946594238,36.21500015258789,9.220999717712402,4.702000141143799,1.343000054359436,25.57600021362305 -3391,2016-11-19 07:00:00,42.55400085449219,13.152000427246096,36.80400085449219,9.140999794006348,5.948999881744385,1.343000054359436,25.57600021362305 -3392,2016-11-19 08:00:00,37.52799987792969,9.550000190734863,33.31999969482422,6.809000015258789,4.434999942779541,1.22599995136261,25.57600021362305 -3393,2016-11-19 09:00:00,40.459999084472656,11.727999687194824,36.83100128173828,8.95300006866455,2.931999921798706,1.246999979019165,25.57600021362305 -3394,2016-11-19 10:00:00,42.21900177001953,11.727999687194824,38.680999755859375,8.765000343322754,2.931999921798706,1.2580000162124634,25.795499801635746 -3395,2016-11-19 11:00:00,45.48600006103516,13.402999877929688,42.35300064086914,10.267000198364258,2.931999921798706,1.22599995136261,26.23550033569336 -3396,2016-11-19 12:00:00,43.55899810791016,12.732999801635742,40.77199935913086,9.972000122070312,2.931999921798706,0.0,26.894500732421875 -3397,2016-11-19 13:00:00,42.05199813842773,12.64900016784668,38.73400115966797,9.649999618530272,2.931999921798706,1.22599995136261,26.894500732421875 -3398,2016-11-19 14:00:00,41.13000106811523,12.899999618530272,38.198001861572266,10.105999946594238,2.931999921798706,0.0,26.894500732421875 -3399,2016-11-19 15:00:00,39.53799819946289,11.5600004196167,36.858001708984375,9.194000244140623,2.931999921798706,0.0,27.11450004577637 -3400,2016-11-19 16:00:00,47.24499893188477,14.659000396728516,41.89699935913086,10.53499984741211,4.392000198364259,1.2899999618530271,27.11450004577637 -3401,2016-11-19 17:00:00,48.83700180053711,15.246000289916992,43.39899826049805,10.883000373840332,5.809999942779541,1.2899999618530271,26.894500732421875 -3402,2016-11-19 18:00:00,47.49599838256836,14.491999626159668,43.15700149536133,10.614999771118164,5.76800012588501,1.2899999618530271,26.67449951171875 -3403,2016-11-19 19:00:00,41.54899978637695,10.220000267028809,37.79600143432617,7.317999839782715,4.552000045776367,1.2580000162124634,26.67449951171875 -3404,2016-11-19 20:00:00,45.73699951171875,12.899999618530272,40.15499877929688,8.685000419616701,5.906000137329103,1.2580000162124634,26.67449951171875 -3405,2016-11-19 21:00:00,45.82099914550781,14.491999626159668,41.57600021362305,10.803000450134276,4.552000045776367,2.5369999408721924,26.23550033569336 -3406,2016-11-19 22:00:00,44.81600189208984,14.241000175476074,40.63800048828125,10.776000022888184,4.275000095367432,2.5369999408721924,26.23550033569336 -3407,2016-11-19 23:00:00,43.89400100708008,14.072999954223633,38.41299819946289,10.267000198364258,5.607999801635742,1.3220000267028809,26.23550033569336 -3408,2016-11-20 00:00:00,38.78499984741211,11.810999870300291,34.44499969482422,8.765000343322754,4.563000202178955,1.2369999885559082,26.23550033569336 -3409,2016-11-20 01:00:00,41.38100051879883,13.067999839782717,35.86600112915039,9.461999893188477,5.800000190734862,1.2369999885559082,25.795499801635746 -3410,2016-11-20 02:00:00,40.3759994506836,12.145999908447266,35.33000183105469,8.899999618530273,4.9790000915527335,1.4500000476837158,25.795499801635746 -3411,2016-11-20 03:00:00,38.11399841308594,10.805999755859377,33.722000122070305,7.692999839782715,4.9790000915527335,1.4500000476837158,25.35650062561035 -3412,2016-11-20 04:00:00,38.11399841308594,11.644000053405762,33.613998413085945,8.578000068664549,4.605999946594238,1.493000030517578,24.91699981689453 -3413,2016-11-20 05:00:00,37.77899932861328,11.140999794006348,33.775001525878906,8.390000343322754,4.670000076293945,1.493000030517578,24.477500915527344 -3414,2016-11-20 06:00:00,42.1349983215332,13.487000465393065,37.071998596191406,9.864999771118164,5.459000110626222,1.2369999885559082,24.25749969482422 -3415,2016-11-20 07:00:00,43.81100082397461,13.56999969482422,38.01100158691406,9.677000045776367,5.415999889373778,1.2369999885559082,24.038000106811523 -3416,2016-11-20 08:00:00,38.95199966430664,9.717000007629396,33.34600067138672,6.245999813079834,5.415999889373778,2.5369999408721924,23.818500518798828 -3417,2016-11-20 09:00:00,41.38100051879883,11.727999687194824,37.71599960327149,8.73900032043457,3.858999967575073,1.246999979019165,23.598499298095703 -3418,2016-11-20 10:00:00,41.29800033569336,11.727999687194824,37.2869987487793,8.630999565124513,3.858999967575073,1.2150000333786009,24.69750022888184 -3419,2016-11-20 11:00:00,44.81600189208984,13.402999877929688,41.73699951171875,10.37399959564209,3.858999967575073,0.0,25.13649940490723 -3420,2016-11-20 12:00:00,39.70600128173828,10.973999977111816,36.696998596191406,8.470999717712402,2.569000005722046,0.0,25.57600021362305 -3421,2016-11-20 13:00:00,42.47000122070313,13.402999877929688,40.02099990844727,10.668999671936035,3.7100000381469727,0.0,25.57600021362305 -3422,2016-11-20 14:00:00,41.04600143432617,12.64900016784668,38.11800003051758,9.94499969482422,3.7100000381469727,0.0,25.57600021362305 -3423,2016-11-20 15:00:00,43.391998291015625,13.654000282287598,40.69100189208984,10.96399974822998,3.7100000381469727,0.0,25.35650062561035 -3424,2016-11-20 16:00:00,44.64799880981445,13.067999839782717,39.94100189208984,9.435999870300291,3.7100000381469727,1.2150000333786009,25.13649940490723 -3425,2016-11-20 17:00:00,50.00899887084961,15.07800006866455,44.92599868774414,10.937000274658203,6.3439998626708975,1.2150000333786009,24.69750022888184 -3426,2016-11-20 18:00:00,49.42300033569336,14.994000434875488,44.38999938964844,10.803000450134276,4.894000053405762,1.2150000333786009,24.69750022888184 -3427,2016-11-20 19:00:00,44.14599990844727,11.810999870300291,38.89500045776367,8.095000267028809,4.894000053405762,1.2150000333786009,24.038000106811523 -3428,2016-11-20 20:00:00,43.30799865722656,11.644000053405762,37.90299987792969,7.692999839782715,6.151999950408936,1.2150000333786009,24.038000106811523 -3429,2016-11-20 21:00:00,44.48099899291992,11.644000053405762,39.32400131225586,8.015000343322754,4.455999851226807,1.2150000333786009,24.038000106811523 -3430,2016-11-20 22:00:00,44.229000091552734,13.654000282287598,39.24399948120117,9.864999771118164,5.703999996185303,1.2150000333786009,24.25749969482422 -3431,2016-11-20 23:00:00,41.54899978637695,12.5649995803833,36.50899887084961,9.034000396728516,4.285999774932861,1.2369999885559082,24.25749969482422 -3432,2016-11-21 00:00:00,43.30799865722656,13.904999732971191,37.1259994506836,9.91800022125244,5.5229997634887695,1.2369999885559082,24.25749969482422 -3433,2016-11-21 01:00:00,39.45500183105469,11.810999870300291,33.93600082397461,8.444000244140625,4.787000179290772,1.2150000333786009,24.25749969482422 -3434,2016-11-21 02:00:00,38.53300094604492,10.55500030517578,33.292999267578125,7.0229997634887695,4.797999858856201,1.2150000333786009,24.25749969482422 -3435,2016-11-21 03:00:00,39.37099838256836,11.727999687194824,33.963001251220696,8.229000091552733,5.127999782562256,1.2690000534057615,24.038000106811523 -3436,2016-11-21 04:00:00,37.61199951171875,10.303000450134276,34.391998291015625,7.934999942779541,3.858999967575073,1.2369999885559082,24.038000106811523 -3437,2016-11-21 05:00:00,39.37099838256836,12.229999542236328,33.93600082397461,8.657999992370605,5.40500020980835,1.2369999885559082,23.818500518798828 -3438,2016-11-21 06:00:00,41.632999420166016,12.984000205993652,35.8390007019043,9.006999969482422,5.1599998474121085,1.2369999885559082,23.818500518798828 -3439,2016-11-21 07:00:00,43.47600173950195,12.732999801635742,38.94900131225586,9.381999969482422,5.1599998474121085,1.2369999885559082,23.818500518798828 -3440,2016-11-21 08:00:00,40.29199981689453,10.38700008392334,35.49100112915039,6.942999839782715,5.5329999923706055,1.2369999885559082,23.818500518798828 -3441,2016-11-21 09:00:00,43.89400100708008,12.984000205993652,40.45000076293945,9.864999771118164,4.061999797821045,1.2369999885559082,23.598499298095703 -3442,2016-11-21 10:00:00,40.62699890136719,10.303000450134276,37.6619987487793,7.960999965667725,2.622999906539917,0.0,21.400999069213867 -3443,2016-11-21 11:00:00,40.9630012512207,10.470999717712402,38.30500030517578,8.14900016784668,2.622999906539917,0.0,21.18149948120117 -3444,2016-11-21 12:00:00,42.387001037597656,11.895000457763672,39.24399948120117,9.461999893188477,2.622999906539917,0.0,22.71949958801269 -3445,2016-11-21 13:00:00,41.46500015258789,12.732999801635742,38.59999847412109,10.024999618530272,2.622999906539917,0.0,25.13649940490723 -3446,2016-11-21 14:00:00,38.11399841308594,11.392000198364258,35.972999572753906,9.16800022125244,2.622999906539917,0.0,26.45499992370605 -3447,2016-11-21 15:00:00,43.97800064086914,14.156999588012695,40.31600189208984,11.312000274658203,3.848999977111816,0.0,26.45499992370605 -3448,2016-11-21 16:00:00,45.82099914550781,14.659000396728516,42.38000106811523,11.418999671936035,3.848999977111816,1.22599995136261,26.23550033569336 -3449,2016-11-21 17:00:00,50.17699813842773,15.581000328063965,43.479000091552734,10.855999946594238,6.396999835968018,1.22599995136261,25.35650062561035 -3450,2016-11-21 18:00:00,49.67399978637695,15.413000106811523,43.58599853515625,11.151000022888184,5.223999977111816,1.22599995136261,24.91699981689453 -3451,2016-11-21 19:00:00,44.229000091552734,11.727999687194824,38.41299819946289,8.095000267028809,5.223999977111816,1.3220000267028809,24.038000106811523 -3452,2016-11-21 20:00:00,45.06700134277344,12.145999908447266,39.53799819946289,8.52400016784668,5.223999977111816,1.3220000267028809,24.038000106811523 -3453,2016-11-21 21:00:00,43.14099884033203,11.727999687194824,38.97600173950195,8.470999717712402,5.203000068664551,1.3220000267028809,24.038000106811523 -3454,2016-11-21 22:00:00,44.39699935913086,14.491999626159668,39.86000061035156,10.90999984741211,5.203000068664551,1.3220000267028809,24.038000106811523 -3455,2016-11-21 23:00:00,42.1349983215332,12.899999618530272,37.42100143432617,9.595999717712402,4.926000118255615,1.22599995136261,23.598499298095703 -3456,2016-11-22 00:00:00,41.13000106811523,13.234999656677244,36.80400085449219,9.972000122070312,3.6989998817443848,1.22599995136261,23.598499298095703 -3457,2016-11-22 01:00:00,37.61199951171875,12.062999725341797,31.81800079345703,8.36299991607666,4.947000026702881,1.22599995136261,23.15950012207031 -3458,2016-11-22 02:00:00,39.62200164794922,12.732999801635742,35.089000701904304,9.274999618530272,4.894000053405762,1.5989999771118164,22.71949958801269 -3459,2016-11-22 03:00:00,37.025001525878906,10.55500030517578,32.623001098632805,7.50600004196167,4.776000022888184,1.5989999771118164,20.96199989318848 -3460,2016-11-22 04:00:00,38.78499984741211,12.480999946594238,34.5260009765625,9.56999969482422,4.328999996185304,1.2150000333786009,19.20450019836425 -3461,2016-11-22 05:00:00,38.95199966430664,12.899999618530272,35.16899871826172,9.810999870300291,4.328999996185304,1.2150000333786009,17.885499954223633 -3462,2016-11-22 06:00:00,40.9630012512207,13.152000427246096,36.45600128173828,9.784000396728516,4.178999900817871,1.246999979019165,16.128000259399414 -3463,2016-11-22 07:00:00,40.79499816894531,12.39799976348877,36.80400085449219,9.274999618530272,4.178999900817871,1.2580000162124634,14.809499740600586 -3464,2016-11-22 08:00:00,40.62699890136719,10.638999938964844,35.946998596191406,7.532000064849853,5.703999996185303,1.3109999895095823,13.930500030517578 -3465,2016-11-22 09:00:00,44.39699935913086,13.654000282287598,40.90599822998047,10.53499984741211,4.4780001640319815,1.2580000162124634,13.05150032043457 -3466,2016-11-22 10:00:00,39.0359992980957,9.633000373840332,36.321998596191406,7.1570000648498535,2.7079999446868896,0.0,12.83199977874756 -3467,2016-11-22 11:00:00,38.95199966430664,8.795999526977539,36.66999816894531,6.728000164031982,2.632999897003174,0.0,11.73349952697754 -3468,2016-11-22 12:00:00,42.55400085449219,13.904999732971191,39.887001037597656,11.258000373840332,2.632999897003174,0.0,11.293999671936035 -3469,2016-11-22 13:00:00,47.41299819946289,16.753999710083008,45.19400024414063,13.83199977874756,2.632999897003174,0.0,10.634499549865724 -3470,2016-11-22 14:00:00,47.66400146484375,16.586000442504886,44.47100067138672,13.187999725341797,2.632999897003174,0.0,10.414999961853027 -3471,2016-11-22 15:00:00,49.25600051879883,17.674999237060547,46.2400016784668,14.368000030517578,2.632999897003174,0.0,10.195500373840332 -3472,2016-11-22 16:00:00,49.92599868774414,16.92099952697754,45.97200012207031,13.536999702453612,3.7100000381469727,0.0,9.975500106811523 -3473,2016-11-22 17:00:00,54.28200149536133,18.34499931335449,48.38399887084961,13.321999549865724,5.394999980926514,1.503000020980835,9.536499977111816 -3474,2016-11-22 18:00:00,53.77899932861328,17.590999603271484,47.79499816894531,12.973999977111816,6.02400016784668,1.3220000267028809,9.316499710083008 -3475,2016-11-22 19:00:00,48.33399963378906,14.91100025177002,42.51399993896485,10.722000122070312,6.02400016784668,2.5480000972747803,8.876999855041504 -3476,2016-11-22 20:00:00,45.48600006103516,13.56999969482422,40.23500061035156,9.006999969482422,6.02400016784668,2.5480000972747803,8.4375 -3477,2016-11-22 21:00:00,49.67399978637695,15.664999961853027,44.57799911499024,11.687000274658203,6.013000011444093,1.3329999446868896,7.998000144958496 -3478,2016-11-22 22:00:00,48.75299835205078,16.586000442504886,43.18399810791016,12.437999725341797,4.711999893188477,1.2369999885559082,7.778500080108643 -3479,2016-11-22 23:00:00,38.198001861572266,11.727999687194824,35.141998291015625,9.409000396728516,3.124000072479248,0.0,7.558499813079834 -3480,2016-11-23 00:00:00,41.04600143432617,14.072999954223633,35.972999572753906,10.803000450134276,4.381999969482422,1.2369999885559082,6.89900016784668 -3481,2016-11-23 01:00:00,42.47000122070313,14.324000358581545,37.448001861572266,10.989999771118164,4.6479997634887695,1.2580000162124634,6.240499973297119 -3482,2016-11-23 02:00:00,39.45500183105469,13.402999877929688,36.59000015258789,11.258000373840332,3.625,0.0,6.240499973297119 -3483,2016-11-23 03:00:00,41.96799850463867,14.743000030517578,36.7239990234375,11.151000022888184,4.872000217437744,1.2369999885559082,6.240499973297119 -3484,2016-11-23 04:00:00,40.459999084472656,14.156999588012695,36.483001708984375,11.071000099182127,3.625,1.2790000438690186,5.361499786376953 -3485,2016-11-23 05:00:00,40.9630012512207,14.241000175476074,37.79600143432617,11.392000198364258,3.635999917984009,0.0,5.361499786376953 -3486,2016-11-23 06:00:00,42.97299957275391,15.413000106811523,39.77999877929688,12.357000350952148,2.388000011444092,0.0,5.142000198364258 -3487,2016-11-23 07:00:00,43.05699920654297,14.156999588012695,39.64599990844727,11.366000175476074,3.614000082015991,0.0,4.921999931335449 -3488,2016-11-23 08:00:00,43.2239990234375,13.319000244140623,39.99399948120117,10.45400047302246,3.614000082015991,0.0,4.921999931335449 -3489,2016-11-23 09:00:00,46.82600021362305,14.156999588012695,44.12200164794922,11.418999671936035,3.614000082015991,0.0,5.361499786376953 -3490,2016-11-23 10:00:00,44.81600189208984,11.644000053405762,42.084999084472656,8.711999893188478,3.614000082015991,0.0,5.580999851226807 -3491,2016-11-23 11:00:00,47.1609992980957,13.234999656677244,44.25600051879883,10.052000045776367,3.614000082015991,0.0,5.580999851226807 -3492,2016-11-23 12:00:00,50.76300048828125,15.413000106811523,47.20500183105469,11.607000350952148,3.614000082015991,1.2150000333786009,5.580999851226807 -3493,2016-11-23 13:00:00,50.84700012207031,16.0,47.44599914550781,12.196999549865724,3.614000082015991,1.2899999618530271,5.580999851226807 -3494,2016-11-23 14:00:00,51.34999847412109,16.670000076293945,47.84799957275391,12.894000053405762,3.614000082015991,1.2150000333786009,5.80049991607666 -3495,2016-11-23 15:00:00,52.68999862670898,16.670000076293945,48.196998596191406,12.84000015258789,4.840000152587892,1.246999979019165,5.80049991607666 -3496,2016-11-23 16:00:00,58.88899993896485,18.68000030517578,55.11299896240234,14.475000381469728,4.914999961853027,0.0,5.580999851226807 -3497,2016-11-23 17:00:00,63.32899856567383,19.937000274658203,56.96200180053711,14.072999954223633,6.140999794006348,1.4500000476837158,5.801000118255615 -3498,2016-11-23 18:00:00,60.39699935913086,17.926000595092773,54.46900177001953,12.78600025177002,6.151999950408936,1.2369999885559082,6.020500183105469 -3499,2016-11-23 19:00:00,50.00899887084961,13.234999656677244,44.04199981689453,9.0600004196167,6.257999897003174,1.2369999885559082,6.460000038146973 -3500,2016-11-23 20:00:00,49.92599868774414,12.899999618530272,43.98799896240234,8.630999565124513,6.248000144958496,1.2369999885559082,6.460000038146973 -3501,2016-11-23 21:00:00,51.09799957275391,13.56999969482422,45.56999969482422,9.515999794006348,4.711999893188477,1.2369999885559082,6.89900016784668 -3502,2016-11-23 22:00:00,48.66899871826172,14.91100025177002,44.17599868774414,11.392000198364258,4.541999816894531,1.2369999885559082,6.89900016784668 -3503,2016-11-23 23:00:00,45.73699951171875,13.56999969482422,40.45000076293945,10.024999618530272,4.519999980926514,1.2369999885559082,6.89900016784668 -3504,2016-11-24 00:00:00,42.88899993896485,12.64900016784668,37.6349983215332,9.16800022125244,5.724999904632568,1.3969999551773071,6.679500102996826 -3505,2016-11-24 01:00:00,43.72700119018555,13.402999877929688,39.887001037597656,10.347000122070312,4.423999786376953,0.0,6.240499973297119 -3506,2016-11-24 02:00:00,44.48099899291992,13.402999877929688,39.32400131225586,9.649999618530272,4.423999786376953,1.2369999885559082,5.80049991607666 -3507,2016-11-24 03:00:00,42.72200012207031,13.067999839782717,37.608001708984375,9.729999542236328,4.638000011444092,1.503000020980835,5.361499786376953 -3508,2016-11-24 04:00:00,41.13000106811523,12.815999984741213,36.13399887084961,9.595999717712402,4.638000011444092,1.503000020980835,4.921999931335449 -3509,2016-11-24 05:00:00,45.4020004272461,14.743000030517578,39.96699905395508,11.12399959564209,4.6479997634887695,1.22599995136261,4.482500076293945 -3510,2016-11-24 06:00:00,44.900001525878906,14.743000030517578,41.38800048828125,11.795000076293944,4.702000141143799,0.0,4.263000011444092 -3511,2016-11-24 07:00:00,49.75799942016602,15.748000144958494,43.69300079345703,11.446000099182127,5.127999782562256,1.2899999618530271,4.263000011444092 -3512,2016-11-24 08:00:00,42.88899993896485,11.309000015258787,38.41299819946289,8.069000244140625,3.785000085830689,1.2580000162124634,4.702000141143799 -3513,2016-11-24 09:00:00,43.30799865722656,12.39799976348877,40.262001037597656,9.54300022125244,2.5269999504089355,0.0,6.460000038146973 -3514,2016-11-24 10:00:00,45.31800079345703,12.480999946594238,42.19200134277344,9.649999618530272,2.5160000324249268,0.0,8.4375 -3515,2016-11-24 11:00:00,49.75799942016602,13.56999969482422,46.07899856567383,10.213000297546388,3.742000102996826,0.0,10.854499816894531 -3516,2016-11-24 12:00:00,47.58000183105469,13.56999969482422,44.73899841308594,10.642000198364258,3.7309999465942383,0.0,13.052000045776367 -3517,2016-11-24 13:00:00,48.75299835205078,14.324000358581545,45.24800109863281,11.178000450134276,3.677999973297119,0.0,14.37049961090088 -3518,2016-11-24 14:00:00,46.40700149536133,14.072999954223633,43.55899810791016,11.204999923706056,2.463000059127808,0.0,15.907999992370604 -3519,2016-11-24 15:00:00,47.32899856567383,14.491999626159668,43.80099868774414,11.043999671936035,3.795000076293945,1.2690000534057615,14.59000015258789 -3520,2016-11-24 16:00:00,50.428001403808594,15.748000144958494,46.9640007019043,12.383999824523926,3.795000076293945,0.0,14.59000015258789 -3521,2016-11-24 17:00:00,56.04100036621094,17.507999420166016,48.9739990234375,11.982000350952148,6.5250000953674325,1.5460000038146973,13.052000045776367 -3522,2016-11-24 18:00:00,53.77899932861328,15.664999961853027,47.553001403808594,10.722000122070312,6.5250000953674325,2.803999900817871,12.17300033569336 -3523,2016-11-24 19:00:00,51.01499938964844,14.156999588012695,44.52399826049805,9.248000144958496,6.48199987411499,1.493000030517578,11.732999801635742 -3524,2016-11-24 20:00:00,53.52799987792969,14.659000396728516,47.5,10.052000045776367,6.48199987411499,1.493000030517578,11.513500213623049 -3525,2016-11-24 21:00:00,53.10900115966797,14.324000358581545,46.0250015258789,9.194000244140623,7.314000129699707,1.493000030517578,11.293999671936035 -3526,2016-11-24 22:00:00,52.02000045776367,16.50200080871582,47.178001403808594,12.331000328063965,6.151999950408936,2.7079999446868896,11.07450008392334 -3527,2016-11-24 23:00:00,47.49599838256836,14.156999588012695,40.79800033569336,9.409000396728516,6.4070000648498535,2.7079999446868896,10.854499816894531 -3528,2016-11-25 00:00:00,44.14599990844727,13.319000244140623,38.11800003051758,9.32800006866455,6.045000076293945,1.4390000104904177,10.414999961853027 -3529,2016-11-25 01:00:00,42.303001403808594,11.895000457763672,37.2869987487793,8.604999542236326,4.755000114440918,1.4390000104904177,10.195500373840332 -3530,2016-11-25 02:00:00,46.15599822998047,14.576000213623049,39.96699905395508,10.185999870300291,6.257999897003174,1.4390000104904177,9.97599983215332 -3531,2016-11-25 03:00:00,41.29800033569336,11.727999687194824,35.597999572753906,7.639999866485598,4.9679999351501465,1.4390000104904177,9.97599983215332 -3532,2016-11-25 04:00:00,41.46500015258789,12.984000205993652,35.7859992980957,9.16800022125244,6.257999897003174,1.4390000104904177,9.755999565124512 -3533,2016-11-25 05:00:00,40.87900161743164,11.727999687194824,34.955001831054695,7.98799991607666,5.544000148773193,1.4390000104904177,9.755999565124512 -3534,2016-11-25 06:00:00,43.97800064086914,13.487000465393065,40.07500076293945,10.45400047302246,4.328999996185304,1.4390000104904177,9.755999565124512 -3535,2016-11-25 07:00:00,45.31800079345703,13.402999877929688,38.573001861572266,8.899999618530273,6.876999855041504,1.4390000104904177,9.755999565124512 -3536,2016-11-25 08:00:00,44.64799880981445,11.895000457763672,39.24399948120117,8.121999740600586,4.328999996185304,1.4390000104904177,9.755999565124512 -3537,2016-11-25 09:00:00,46.32400131225586,13.067999839782717,42.29899978637695,9.677000045776367,4.1579999923706055,1.5670000314712524,10.634499549865724 -3538,2016-11-25 10:00:00,44.0620002746582,12.062999725341797,40.55699920654297,9.16800022125244,4.1469998359680185,0.0,12.17300033569336 -3539,2016-11-25 11:00:00,42.303001403808594,11.057000160217283,38.62699890136719,8.255999565124513,4.1469998359680185,0.0,12.612000465393065 -3540,2016-11-25 12:00:00,39.874000549316406,9.550000190734863,36.80400085449219,7.0229997634887695,2.9110000133514404,0.0,13.491000175476074 -3541,2016-11-25 13:00:00,42.55400085449219,11.47599983215332,39.32400131225586,8.630999565124513,2.9110000133514404,0.0,14.369999885559082 -3542,2016-11-25 14:00:00,42.47000122070313,13.56999969482422,39.13600158691406,10.642000198364258,2.9110000133514404,1.2690000534057615,15.24899959564209 -3543,2016-11-25 15:00:00,39.37099838256836,10.722000122070312,36.8849983215332,8.14900016784668,2.9110000133514404,0.0,15.24899959564209 -3544,2016-11-25 16:00:00,49.42300033569336,16.083000183105472,46.15999984741211,12.331000328063965,2.9110000133514404,1.2150000333786009,14.8100004196167 -3545,2016-11-25 17:00:00,54.78400039672852,17.172000885009766,49.59099960327149,12.517999649047852,5.544000148773193,1.2150000333786009,14.59000015258789 -3546,2016-11-25 18:00:00,54.61700057983398,17.423999786376953,49.10800170898438,12.62600040435791,5.586999893188477,1.2150000333786009,14.59000015258789 -3547,2016-11-25 19:00:00,48.75299835205078,13.821999549865724,44.01499938964844,9.810999870300291,5.586999893188477,1.2150000333786009,14.59000015258789 -3548,2016-11-25 20:00:00,51.09799957275391,14.491999626159668,45.54299926757813,10.185999870300291,5.607999801635742,2.440999984741211,14.369999885559082 -3549,2016-11-25 21:00:00,48.83700180053711,13.152000427246096,43.104000091552734,9.140999794006348,5.415999889373778,1.5349999666213991,13.711000442504885 -3550,2016-11-25 22:00:00,51.51699829101562,16.334999084472653,46.5620002746582,12.331000328063965,5.415999889373778,1.5349999666213991,13.05150032043457 -3551,2016-11-25 23:00:00,48.08300018310547,15.329999923706056,43.18399810791016,11.71399974822998,4.019000053405762,1.343000054359436,12.392499923706056 -3552,2016-11-26 00:00:00,43.47600173950195,13.402999877929688,39.055999755859375,10.347000122070312,4.019000053405762,1.2369999885559082,11.95300006866455 -3553,2016-11-26 01:00:00,41.29800033569336,12.314000129699709,36.1609992980957,9.086999893188477,5.0960001945495605,1.343000054359436,11.732999801635742 -3554,2016-11-26 02:00:00,43.2239990234375,14.156999588012695,38.84199905395508,10.480999946594238,3.635999917984009,1.22599995136261,11.293999671936035 -3555,2016-11-26 03:00:00,40.9630012512207,12.984000205993652,37.5009994506836,10.267000198364258,3.677999973297119,0.0,10.854499816894531 -3556,2016-11-26 04:00:00,41.04600143432617,13.152000427246096,37.98400115966797,10.588000297546388,3.677999973297119,0.0,10.195500373840332 -3557,2016-11-26 05:00:00,38.198001861572266,11.727999687194824,35.40999984741211,9.354999542236328,3.677999973297119,0.0,9.755999565124512 -3558,2016-11-26 06:00:00,44.39699935913086,14.407999992370604,40.10100173950195,10.883000373840332,4.690999984741211,1.2369999885559082,9.536499977111816 -3559,2016-11-26 07:00:00,46.40700149536133,14.82699966430664,41.01300048828125,11.097999572753906,4.4780001640319815,1.3109999895095823,9.536499977111816 -3560,2016-11-26 08:00:00,42.05199813842773,11.47599983215332,38.0369987487793,8.416999816894531,4.563000202178955,1.2690000534057615,9.755999565124512 -3561,2016-11-26 09:00:00,45.98899841308594,12.5649995803833,43.07699966430664,9.515999794006348,3.240999937057495,0.0,10.195500373840332 -3562,2016-11-26 10:00:00,45.23500061035156,12.062999725341797,41.46799850463867,9.0600004196167,3.240999937057495,1.2150000333786009,10.634499549865724 -3563,2016-11-26 11:00:00,50.26100158691406,15.83199977874756,46.53499984741211,12.196999549865724,3.240999937057495,1.22599995136261,11.732999801635742 -3564,2016-11-26 12:00:00,47.999000549316406,14.82699966430664,44.900001525878906,11.633999824523926,3.240999937057495,0.0,13.711000442504885 -3565,2016-11-26 13:00:00,47.07799911499024,15.83199977874756,44.33700180053711,12.491000175476074,3.240999937057495,0.0,16.78700065612793 -3566,2016-11-26 14:00:00,47.66400146484375,15.916000366210938,43.34500122070313,12.222999572753904,4.584000110626222,1.4179999828338623,20.08300018310547 -3567,2016-11-26 15:00:00,47.49599838256836,15.83199977874756,42.99599838256836,11.954999923706056,4.563000202178955,1.2150000333786009,20.74250030517578 -3568,2016-11-26 16:00:00,47.32899856567383,14.491999626159668,42.64799880981445,10.829999923706056,4.563000202178955,1.2369999885559082,19.863500595092773 -3569,2016-11-26 17:00:00,51.93600082397461,15.664999961853027,46.18600082397461,11.526000022888184,4.6479997634887695,1.2369999885559082,18.105499267578125 -3570,2016-11-26 18:00:00,50.09299850463867,14.072999954223633,44.63199996948242,10.024999618530272,5.651000022888184,1.2369999885559082,16.34749984741211 -3571,2016-11-26 19:00:00,50.512001037597656,13.654000282287598,44.41699981689453,9.194000244140623,6.172999858856201,1.503000020980835,15.029500007629396 -3572,2016-11-26 20:00:00,51.43399810791016,14.491999626159668,44.49800109863281,9.649999618530272,6.151999950408936,1.503000020980835,13.930999755859377 -3573,2016-11-26 21:00:00,52.60599899291992,15.246000289916992,46.83000183105469,10.722000122070312,6.151999950408936,1.503000020980835,13.271499633789062 -3574,2016-11-26 22:00:00,51.09799957275391,15.161999702453612,46.07899856567383,10.883000373840332,6.151999950408936,1.503000020980835,12.83199977874756 -3575,2016-11-26 23:00:00,49.67399978637695,15.496999740600586,43.61299896240234,11.071000099182127,6.0879998207092285,1.503000020980835,12.17300033569336 -3576,2016-11-27 00:00:00,43.05699920654297,11.727999687194824,38.14500045776367,8.282999992370605,4.605999946594238,1.503000020980835,11.732999801635742 -3577,2016-11-27 01:00:00,43.391998291015625,13.821999549865724,37.233001708984375,9.864999771118164,5.777999877929688,1.503000020980835,11.07450008392334 -3578,2016-11-27 02:00:00,43.64300155639648,13.654000282287598,38.52000045776367,10.105999946594238,5.777999877929688,1.4179999828338623,10.634499549865724 -3579,2016-11-27 03:00:00,39.53799819946289,11.225000381469728,33.90900039672852,7.98799991607666,5.777999877929688,1.4179999828338623,9.97599983215332 -3580,2016-11-27 04:00:00,42.47000122070313,13.487000465393065,37.608001708984375,10.31999969482422,5.756999969482423,1.4179999828338623,9.53600025177002 -3581,2016-11-27 05:00:00,45.73699951171875,15.246000289916992,40.23500061035156,11.446000099182127,4.563000202178955,1.4179999828338623,9.097000122070312 -3582,2016-11-27 06:00:00,46.32400131225586,15.581000328063965,41.60300064086914,11.954999923706056,5.777999877929688,1.4179999828338623,8.656999588012695 -3583,2016-11-27 07:00:00,48.16699981689453,15.581000328063965,41.790000915527344,11.28499984741211,5.76800012588501,1.4179999828338623,8.4375 -3584,2016-11-27 08:00:00,40.9630012512207,11.727999687194824,36.5629997253418,8.229000091552733,4.541999816894531,2.6440000534057617,8.656999588012695 -3585,2016-11-27 09:00:00,45.56999969482422,13.73799991607666,40.82500076293945,10.159000396728516,4.455999851226807,1.4819999933242798,11.293999671936035 -3586,2016-11-27 10:00:00,40.54399871826172,12.39799976348877,37.2869987487793,9.56999969482422,4.402999877929688,1.2369999885559082,15.029500007629396 -3587,2016-11-27 11:00:00,49.3390007019043,14.241000175476074,45.06000137329102,10.668999671936035,4.434999942779541,1.2580000162124634,18.98450088500977 -3588,2016-11-27 12:00:00,41.2140007019043,11.644000053405762,38.54700088500977,9.409000396728516,3.0920000076293945,0.0,21.840499877929688 -3589,2016-11-27 13:00:00,44.3129997253418,14.743000030517578,39.83300018310547,11.12399959564209,4.317999839782715,1.406999945640564,24.477500915527344 -3590,2016-11-27 14:00:00,43.89400100708008,14.072999954223633,39.67300033569336,10.829999923706056,3.2300000190734863,1.406999945640564,26.45499992370605 -3591,2016-11-27 15:00:00,44.81600189208984,14.82699966430664,41.09299850463867,11.472999572753904,4.563000202178955,1.406999945640564,26.23500061035156 -3592,2016-11-27 16:00:00,48.16699981689453,14.994000434875488,41.57600021362305,10.052000045776367,5.992000102996826,2.6440000534057617,24.91650009155273 -3593,2016-11-27 17:00:00,49.59099960327149,15.329999923706056,43.104000091552734,10.560999870300291,5.992000102996826,2.6440000534057617,22.71999931335449 -3594,2016-11-27 18:00:00,52.52299880981445,16.250999450683597,46.66899871826172,11.847999572753904,5.415999889373778,2.6440000534057617,19.863500595092773 -3595,2016-11-27 19:00:00,49.50699996948242,14.743000030517578,42.48699951171875,10.024999618530272,6.63100004196167,2.6440000534057617,18.105499267578125 -3596,2016-11-27 20:00:00,49.92599868774414,13.152000427246096,44.01499938964844,9.006999969482422,5.427000045776367,1.3969999551773071,16.78700065612793 -3597,2016-11-27 21:00:00,48.66899871826172,12.39799976348877,43.37200164794922,8.630999565124513,5.468999862670898,1.3969999551773071,15.468500137329102 -3598,2016-11-27 22:00:00,45.82099914550781,13.56999969482422,40.85200119018555,9.94499969482422,6.065999984741211,1.3969999551773071,14.59000015258789 -3599,2016-11-27 23:00:00,43.97800064086914,12.984000205993652,37.71599960327149,8.925999641418457,6.045000076293945,1.3969999551773071,14.150500297546388 -3600,2016-11-28 00:00:00,44.48099899291992,13.904999732971191,38.86800003051758,10.133000373840332,4.776000022888184,1.246999979019165,13.271499633789062 -3601,2016-11-28 01:00:00,42.97299957275391,13.067999839782717,38.35900115966797,9.784000396728516,4.829999923706055,1.246999979019165,12.83199977874756 -3602,2016-11-28 02:00:00,40.87900161743164,12.145999908447266,35.089000701904304,8.657999992370605,6.056000232696532,1.246999979019165,11.95300006866455 -3603,2016-11-28 03:00:00,39.11999893188477,11.895000457763672,34.28499984741211,8.657999992370605,4.296999931335448,1.246999979019165,11.293999671936035 -3604,2016-11-28 04:00:00,39.20299911499024,11.895000457763672,34.391998291015625,8.95300006866455,4.296999931335448,1.2790000438690186,10.854499816894531 -3605,2016-11-28 05:00:00,40.54399871826172,12.229999542236328,37.04600143432617,9.756999969482422,4.296999931335448,0.0,10.195500373840332 -3606,2016-11-28 06:00:00,44.3129997253418,12.984000205993652,38.78799819946289,9.54300022125244,5.51200008392334,1.2790000438690186,9.97599983215332 -3607,2016-11-28 07:00:00,45.1510009765625,12.984000205993652,41.68299865722656,10.07900047302246,4.2109999656677255,0.0,9.755999565124512 -3608,2016-11-28 08:00:00,40.459999084472656,10.13599967956543,36.696998596191406,7.317999839782715,4.2109999656677255,0.0,9.97599983215332 -3609,2016-11-28 09:00:00,44.14599990844727,12.984000205993652,41.22700119018555,9.864999771118164,3.049000024795532,0.0,12.612000465393065 -3610,2016-11-28 10:00:00,42.21900177001953,11.644000053405762,39.21699905395508,8.845999717712402,3.049000024795532,1.22599995136261,15.907999992370604 -3611,2016-11-28 11:00:00,42.88899993896485,11.810999870300291,39.91400146484375,9.006999969482422,3.049000024795532,0.0,18.98450088500977 -3612,2016-11-28 12:00:00,46.2400016784668,13.067999839782717,43.37200164794922,10.401000022888184,3.049000024795532,0.0,20.96199989318848 -3613,2016-11-28 13:00:00,46.90999984741211,14.994000434875488,43.69300079345703,11.954999923706056,3.049000024795532,0.0,22.93950080871582 -3614,2016-11-28 14:00:00,46.071998596191406,14.91100025177002,42.99599838256836,11.821000099182127,3.049000024795532,0.0,24.91650009155273 -3615,2016-11-28 15:00:00,45.31800079345703,14.994000434875488,42.35300064086914,11.821000099182127,3.049000024795532,0.0,23.818500518798828 -3616,2016-11-28 16:00:00,48.66899871826172,15.748000144958494,45.19400024414063,12.303999900817873,3.049000024795532,1.2150000333786009,23.15950012207031 -3617,2016-11-28 17:00:00,51.76900100708008,16.0,46.83000183105469,11.687000274658203,4.349999904632568,1.4179999828338623,21.400999069213867 -3618,2016-11-28 18:00:00,49.42300033569336,14.241000175476074,43.39899826049805,9.623000144958496,5.607999801635742,1.4179999828338623,19.423999786376957 -3619,2016-11-28 19:00:00,47.915000915527344,12.899999618530272,43.02299880981445,9.0600004196167,5.607999801635742,1.4179999828338623,17.666000366210938 -3620,2016-11-28 20:00:00,37.10900115966797,9.04699993133545,31.52400016784668,5.736000061035156,5.76800012588501,1.4179999828338623,16.78700065612793 -3621,2016-11-28 21:00:00,44.56499862670898,11.47599983215332,39.430999755859375,7.934999942779541,4.190000057220459,1.2580000162124634,16.128000259399414 -3622,2016-11-28 22:00:00,48.584999084472656,14.324000358581545,42.19200134277344,10.052000045776367,5.5970001220703125,1.2580000162124634,15.468500137329102 -3623,2016-11-28 23:00:00,47.07799911499024,15.246000289916992,41.52199935913086,11.366000175476074,5.5970001220703125,1.2580000162124634,14.59000015258789 -3624,2016-11-29 00:00:00,44.81600189208984,14.743000030517578,39.45800018310547,11.043999671936035,5.276999950408936,1.3969999551773071,14.59000015258789 -3625,2016-11-29 01:00:00,44.0620002746582,14.82699966430664,38.25199890136719,10.53499984741211,5.352000236511231,1.3860000371932983,14.150500297546388 -3626,2016-11-29 02:00:00,38.198001861572266,10.973999977111816,34.17699813842773,8.282999992370605,3.997999906539917,1.2150000333786009,14.150500297546388 -3627,2016-11-29 03:00:00,41.13000106811523,13.402999877929688,37.823001861572266,12.331000328063965,3.88100004196167,1.2150000333786009,14.150500297546388 -3628,2016-11-29 04:00:00,41.46500015258789,13.319000244140623,36.8849983215332,10.07900047302246,3.88100004196167,1.2580000162124634,14.150500297546388 -3629,2016-11-29 05:00:00,43.89400100708008,14.407999992370604,38.41299819946289,10.855999946594238,5.203000068664551,1.2580000162124634,13.711000442504885 -3630,2016-11-29 06:00:00,44.229000091552734,14.156999588012695,40.95899963378906,11.472999572753904,3.4649999141693115,0.0,13.271499633789062 -3631,2016-11-29 07:00:00,46.90999984741211,14.91100025177002,40.98600006103516,10.90999984741211,5.938000202178955,1.246999979019165,12.612000465393065 -3632,2016-11-29 08:00:00,41.38100051879883,11.644000053405762,37.42100143432617,8.685000419616701,4.7230000495910645,1.2150000333786009,12.392499923706056 -3633,2016-11-29 09:00:00,47.32899856567383,15.581000328063965,43.69300079345703,12.196999549865724,3.2090001106262207,1.22599995136261,14.150500297546388 -3634,2016-11-29 10:00:00,44.0620002746582,11.5600004196167,39.94100189208984,8.550999641418457,3.2090001106262207,0.0,15.907999992370604 -3635,2016-11-29 11:00:00,44.983001708984375,12.64900016784668,41.415000915527344,9.56999969482422,3.2090001106262207,1.2150000333786009,17.885499954223633 -3636,2016-11-29 12:00:00,45.06700134277344,13.654000282287598,41.38800048828125,10.53499984741211,3.2090001106262207,1.22599995136261,19.423999786376957 -3637,2016-11-29 13:00:00,46.99399948120117,15.496999740600586,43.63999938964844,12.170000076293944,3.0380001068115234,0.0,19.863500595092773 -3638,2016-11-29 14:00:00,45.23500061035156,15.581000328063965,41.36100006103516,11.687000274658203,4.264999866485597,1.5570000410079956,21.401500701904297 -3639,2016-11-29 15:00:00,43.81100082397461,14.156999588012695,41.20000076293945,11.767999649047852,2.7079999446868896,0.0,21.18149948120117 -3640,2016-11-29 16:00:00,49.3390007019043,17.256000518798828,44.685001373291016,12.652000427246096,4.105000019073486,1.5670000314712524,20.08300018310547 -3641,2016-11-29 17:00:00,50.17699813842773,16.419000625610348,43.88100051879883,11.71399974822998,5.394999980926514,1.5670000314712524,19.20400047302246 -3642,2016-11-29 18:00:00,49.59099960327149,15.581000328063965,43.88100051879883,11.258000373840332,6.63100004196167,1.5670000314712524,18.545000076293945 -3643,2016-11-29 19:00:00,48.33399963378906,13.402999877929688,42.165000915527344,9.354999542236328,5.61899995803833,1.5670000314712524,18.545000076293945 -3644,2016-11-29 20:00:00,47.24499893188477,12.899999618530272,41.25400161743164,8.819000244140625,5.61899995803833,1.5670000314712524,18.545000076293945 -3645,2016-11-29 21:00:00,48.83700180053711,13.56999969482422,43.07699966430664,9.729999542236328,5.14900016784668,1.5670000314712524,18.105499267578125 -3646,2016-11-29 22:00:00,47.49599838256836,18.429000854492188,41.33399963378906,11.204999923706056,5.011000156402588,1.5670000314712524,18.105499267578125 -3647,2016-11-29 23:00:00,46.32400131225586,15.161999702453612,40.15499877929688,10.989999771118164,6.172999858856201,1.4179999828338623,17.666000366210938 -3648,2016-11-30 00:00:00,44.48099899291992,14.91100025177002,38.65399932861328,11.071000099182127,4.947000026702881,1.2150000333786009,16.566999435424805 -3649,2016-11-30 01:00:00,42.97299957275391,13.98900032043457,37.52799987792969,10.45400047302246,4.85099983215332,1.2150000333786009,15.68850040435791 -3650,2016-11-30 02:00:00,35.26599884033203,9.465999603271484,31.44300079345703,7.23799991607666,4.414000034332275,1.3329999446868896,15.029500007629396 -3651,2016-11-30 03:00:00,39.874000549316406,12.984000205993652,36.027000427246094,10.07900047302246,3.1770000457763667,1.2150000333786009,14.59000015258789 -3652,2016-11-30 04:00:00,41.54899978637695,13.904999732971191,36.3489990234375,10.29300022125244,5.863999843597412,1.2150000333786009,14.59000015258789 -3653,2016-11-30 05:00:00,38.03099822998047,10.890000343322754,33.45399856567383,7.934999942779541,4.605999946594238,1.3329999446868896,14.59000015258789 -3654,2016-11-30 06:00:00,43.2239990234375,13.904999732971191,39.27000045776367,11.017000198364258,3.390000104904175,0.0,14.59000015258789 -3655,2016-11-30 07:00:00,45.48600006103516,14.407999992370604,40.23500061035156,10.45400047302246,4.328999996185304,1.375,14.37049961090088 -3656,2016-11-30 08:00:00,40.54399871826172,11.140999794006348,36.24100112915039,7.960999965667725,4.552000045776367,1.524999976158142,14.37049961090088 -3657,2016-11-30 09:00:00,46.071998596191406,16.083000183105472,43.15700149536133,12.812999725341797,3.2839999198913574,1.246999979019165,15.24899959564209 -3658,2016-11-30 10:00:00,42.80500030517578,12.39799976348877,39.96699905395508,9.32800006866455,2.996000051498413,1.2369999885559082,17.226499557495114 -3659,2016-11-30 11:00:00,44.81600189208984,12.64900016784668,40.79800033569336,9.32800006866455,4.125999927520752,1.4290000200271606,18.325000762939453 -3660,2016-11-30 12:00:00,48.25,15.161999702453612,43.96099853515625,11.633999824523926,4.13700008392334,1.3009999990463257,18.76499938964844 -3661,2016-11-30 13:00:00,47.66400146484375,15.748000144958494,44.01499938964844,12.491000175476074,4.13700008392334,0.0,19.64349937438965 -3662,2016-11-30 14:00:00,48.25,16.670000076293945,44.25600051879883,12.812999725341797,4.105000019073486,1.5570000410079956,20.083499908447266 -3663,2016-11-30 15:00:00,46.57500076293945,16.166999816894528,42.88899993896485,12.652000427246096,3.9769999980926514,1.5460000038146973,20.522499084472656 -3664,2016-11-30 16:00:00,50.76300048828125,17.507999420166016,46.10599899291992,13.00100040435791,3.954999923706055,1.4500000476837158,20.30299949645996 -3665,2016-11-30 17:00:00,54.28200149536133,17.256000518798828,47.92900085449219,12.678999900817873,5.117000102996826,1.4500000476837158,19.423999786376957 -3666,2016-11-30 18:00:00,53.2760009765625,16.92099952697754,47.553001403808594,12.277000427246096,6.28000020980835,1.4500000476837158,18.76449966430664 -3667,2016-11-30 19:00:00,45.98899841308594,12.815999984741213,41.76300048828125,9.220999717712402,5.064000129699707,1.4500000476837158,18.32550048828125 -3668,2016-11-30 20:00:00,49.67399978637695,13.821999549865724,43.58599853515625,9.32800006866455,6.460999965667725,1.4500000476837158,17.885499954223633 -3669,2016-11-30 21:00:00,47.07799911499024,12.815999984741213,42.48699951171875,9.302000045776367,5.1599998474121085,1.4500000476837158,17.226499557495114 -3670,2016-11-30 22:00:00,49.25600051879883,16.586000442504886,42.80899810791016,11.875,6.269000053405763,2.7079999446868896,16.78700065612793 -3671,2016-11-30 23:00:00,45.82099914550781,15.161999702453612,39.99399948120117,11.017000198364258,5.223999977111816,1.493000030517578,15.908499717712402 -3672,2016-12-01 00:00:00,44.0620002746582,14.491999626159668,39.18999862670898,10.776000022888184,5.223999977111816,1.493000030517578,15.468500137329102 -3673,2016-12-01 01:00:00,43.05699920654297,14.82699966430664,38.38600158691406,10.829999923706056,5.373000144958496,1.2369999885559082,15.029500007629396 -3674,2016-12-01 02:00:00,42.97299957275391,14.324000358581545,36.9119987487793,10.185999870300291,5.415999889373778,1.2369999885559082,14.150500297546388 -3675,2016-12-01 03:00:00,40.79499816894531,12.39799976348877,35.8120002746582,9.220999717712402,5.0219998359680185,1.2369999885559082,13.711000442504885 -3676,2016-12-01 04:00:00,40.125,13.319000244140623,36.402000427246094,10.37399959564209,3.5820000171661377,1.2369999885559082,13.052000045776367 -3677,2016-12-01 05:00:00,39.11999893188477,12.5649995803833,34.20399856567383,8.925999641418457,4.958000183105469,1.343000054359436,12.83199977874756 -3678,2016-12-01 06:00:00,42.72200012207031,14.156999588012695,39.18999862670898,10.883000373840332,4.958000183105469,1.343000054359436,12.17300033569336 -3679,2016-12-01 07:00:00,39.53799819946289,12.062999725341797,35.38399887084961,9.140999794006348,4.690999984741211,1.5779999494552612,11.732999801635742 -3680,2016-12-01 08:00:00,40.87900161743164,11.392000198364258,36.617000579833984,8.121999740600586,4.6589999198913565,1.5779999494552612,11.513500213623049 -3681,2016-12-01 09:00:00,45.23500061035156,14.241000175476074,41.65599822998047,10.560999870300291,4.6589999198913565,1.5779999494552612,13.711000442504885 -3682,2016-12-01 10:00:00,43.89400100708008,13.402999877929688,39.56499862670898,10.267000198364258,4.48799991607666,1.5779999494552612,17.006999969482422 -3683,2016-12-01 11:00:00,43.55899810791016,13.904999732971191,39.91400146484375,10.347000122070312,3.26200008392334,1.5779999494552612,20.96199989318848 -3684,2016-12-01 12:00:00,44.48099899291992,14.072999954223633,40.87900161743164,10.588000297546388,3.2300000190734863,1.5779999494552612,23.818500518798828 -3685,2016-12-01 13:00:00,43.97800064086914,14.994000434875488,40.66400146484375,11.928999900817873,3.2300000190734863,1.4709999561309814,25.795499801635746 -3686,2016-12-01 14:00:00,41.54899978637695,14.659000396728516,38.33200073242188,11.366000175476074,3.2300000190734863,1.4709999561309814,27.773500442504893 -3687,2016-12-01 15:00:00,45.82099914550781,16.0,41.65599822998047,12.303999900817873,4.4780001640319815,1.4709999561309814,27.333999633789062 -3688,2016-12-01 16:00:00,49.25600051879883,16.836999893188473,44.06900024414063,12.598999977111816,4.519999980926514,1.4709999561309814,25.795499801635746 -3689,2016-12-01 17:00:00,47.58000183105469,14.743000030517578,42.459999084472656,10.829999923706056,4.85099983215332,1.4709999561309814,23.59900093078613 -3690,2016-12-01 18:00:00,50.34500122070313,16.166999816894528,44.84600067138672,11.71399974822998,6.065999984741211,1.4709999561309814,21.18149948120117 -3691,2016-12-01 19:00:00,47.83200073242188,14.659000396728516,42.00500106811523,10.347000122070312,6.0980000495910645,1.4709999561309814,19.863500595092773 -3692,2016-12-01 20:00:00,48.33399963378906,13.73799991607666,42.78200149536133,9.56999969482422,6.0980000495910645,2.687000036239624,18.98450088500977 -3693,2016-12-01 21:00:00,51.60100173950195,16.753999710083008,45.78400039672852,12.062999725341797,6.0980000495910645,1.3969999551773071,18.325000762939453 -3694,2016-12-01 22:00:00,50.93099975585938,16.92099952697754,44.41699981689453,12.437999725341797,6.0980000495910645,1.3969999551773071,18.105499267578125 -3695,2016-12-01 23:00:00,43.81100082397461,14.576000213623049,37.448001861572266,10.427000045776367,6.0980000495910645,2.632999897003174,17.666000366210938 -3696,2016-12-02 00:00:00,44.81600189208984,15.916000366210938,40.18199920654297,11.633999824523926,4.787000179290772,2.632999897003174,17.226499557495114 -3697,2016-12-02 01:00:00,42.303001403808594,14.241000175476074,36.10699844360352,10.024999618530272,6.02400016784668,1.375,16.78700065612793 -3698,2016-12-02 02:00:00,38.86800003051758,12.145999908447266,34.28499984741211,9.034000396728516,4.638000011444092,1.375,16.78700065612793 -3699,2016-12-02 03:00:00,42.303001403808594,14.156999588012695,37.367000579833984,10.883000373840332,5.639999866485598,1.375,16.34749984741211 -3700,2016-12-02 04:00:00,43.391998291015625,14.82699966430664,38.11800003051758,11.017000198364258,5.0320000648498535,1.22599995136261,15.468500137329102 -3701,2016-12-02 05:00:00,45.1510009765625,15.748000144958494,38.89500045776367,11.12399959564209,6.269000053405763,2.440999984741211,14.59000015258789 -3702,2016-12-02 06:00:00,46.49100112915039,16.166999816894528,41.22700119018555,12.222999572753904,4.690999984741211,2.440999984741211,13.711000442504885 -3703,2016-12-02 07:00:00,40.04100036621094,11.5600004196167,34.472000122070305,8.041999816894531,6.130000114440918,2.440999984741211,13.052000045776367 -3704,2016-12-02 08:00:00,42.387001037597656,12.64900016784668,38.54700088500977,9.56999969482422,3.4539999961853027,1.22599995136261,12.83199977874756 -3705,2016-12-02 09:00:00,46.2400016784668,15.413000106811523,42.64799880981445,11.902000427246096,3.4539999961853027,1.2150000333786009,15.468500137329102 -3706,2016-12-02 10:00:00,40.9630012512207,11.392000198364258,37.90299987792969,8.73900032043457,3.4539999961853027,1.22599995136261,18.325000762939453 -3707,2016-12-02 11:00:00,42.387001037597656,12.39799976348877,39.00199890136719,9.677000045776367,3.4539999961853027,0.0,21.400999069213867 -3708,2016-12-02 12:00:00,41.38100051879883,12.314000129699709,38.27899932861328,9.220999717712402,3.4539999961853027,1.2150000333786009,23.598499298095703 -3709,2016-12-02 13:00:00,42.387001037597656,14.156999588012695,39.08300018310547,10.937000274658203,3.4539999961853027,1.2150000333786009,25.136999130249023 -3710,2016-12-02 14:00:00,40.62699890136719,12.984000205993652,37.4739990234375,10.052000045776367,3.4539999961853027,1.2150000333786009,26.67449951171875 -3711,2016-12-02 15:00:00,44.983001708984375,15.246000289916992,42.38000106811523,12.196999549865724,3.4539999961853027,1.2580000162124634,26.23500061035156 -3712,2016-12-02 16:00:00,46.32400131225586,15.07800006866455,43.31800079345703,11.71399974822998,3.4539999961853027,1.22599995136261,24.477500915527344 -3713,2016-12-02 17:00:00,49.84199905395508,16.166999816894528,44.73899841308594,11.607000350952148,4.679999828338623,2.45199990272522,22.5 -3714,2016-12-02 18:00:00,50.512001037597656,15.916000366210938,46.05199813842773,11.795000076293944,4.679999828338623,2.45199990272522,21.18149948120117 -3715,2016-12-02 19:00:00,45.56999969482422,13.152000427246096,40.66400146484375,9.16800022125244,4.679999828338623,2.45199990272522,19.863500595092773 -3716,2016-12-02 20:00:00,47.915000915527344,15.413000106811523,43.42499923706055,11.366000175476074,4.679999828338623,2.45199990272522,18.98450088500977 -3717,2016-12-02 21:00:00,47.83200073242188,15.83199977874756,43.63999938964844,12.03600025177002,4.679999828338623,2.45199990272522,18.105499267578125 -3718,2016-12-02 22:00:00,48.75299835205078,17.004999160766598,43.77399826049805,12.732999801635742,4.679999828338623,2.45199990272522,17.666000366210938 -3719,2016-12-02 23:00:00,46.99399948120117,16.753999710083008,42.21900177001953,12.894000053405762,5.267000198364258,2.45199990272522,17.226499557495114 -3720,2016-12-03 00:00:00,45.82099914550781,16.250999450683597,41.040000915527344,12.46500015258789,5.064000129699707,1.2150000333786009,17.006999969482422 -3721,2016-12-03 01:00:00,43.72700119018555,14.994000434875488,38.92200088500977,11.5,5.064000129699707,1.2150000333786009,16.128000259399414 -3722,2016-12-03 02:00:00,40.04100036621094,13.402999877929688,35.893001556396484,10.588000297546388,4.690999984741211,1.375,15.029500007629396 -3723,2016-12-03 03:00:00,43.30799865722656,15.07800006866455,39.56499862670898,11.954999923706056,4.690999984741211,1.22599995136261,14.150500297546388 -3724,2016-12-03 04:00:00,42.88899993896485,15.413000106811523,39.18999862670898,12.142999649047852,4.690999984741211,1.22599995136261,13.491000175476074 -3725,2016-12-03 05:00:00,40.62699890136719,14.072999954223633,36.29499816894531,11.151000022888184,4.6589999198913565,1.2150000333786009,13.052000045776367 -3726,2016-12-03 06:00:00,45.48600006103516,16.419000625610348,41.25400161743164,12.678999900817873,4.6589999198913565,1.2150000333786009,12.612000465393065 -3727,2016-12-03 07:00:00,39.790000915527344,11.392000198364258,35.38399887084961,8.36299991607666,4.455999851226807,1.343000054359436,12.17300033569336 -3728,2016-12-03 08:00:00,40.62699890136719,11.140999794006348,35.946998596191406,7.827000141143799,4.455999851226807,1.2150000333786009,11.95300006866455 -3729,2016-12-03 09:00:00,48.25,17.843000411987305,43.98799896240234,12.678999900817873,4.455999851226807,1.2150000333786009,14.59000015258789 -3730,2016-12-03 10:00:00,48.33399963378906,16.419000625610348,44.47100067138672,12.760000228881836,4.392000198364259,1.2369999885559082,16.567499160766598 -3731,2016-12-03 11:00:00,48.66899871826172,16.586000442504886,45.30199813842773,12.894000053405762,4.392000198364259,1.2369999885559082,19.20400047302246 -3732,2016-12-03 12:00:00,47.915000915527344,15.329999923706056,43.479000091552734,11.33899974822998,4.434999942779541,1.22599995136261,20.74250030517578 -3733,2016-12-03 13:00:00,48.50199890136719,16.753999710083008,44.73899841308594,12.678999900817873,4.434999942779541,1.22599995136261,21.840999603271484 -3734,2016-12-03 14:00:00,44.48099899291992,14.994000434875488,40.18199920654297,11.392000198364258,4.392000198364259,1.22599995136261,22.5 -3735,2016-12-03 15:00:00,46.15599822998047,16.083000183105472,41.22700119018555,11.71399974822998,4.392000198364259,1.22599995136261,23.15900039672852 -3736,2016-12-03 16:00:00,43.81100082397461,13.067999839782717,39.45800018310547,9.140999794006348,5.671999931335449,2.440999984741211,22.71949958801269 -3737,2016-12-03 17:00:00,51.85200119018555,14.659000396728516,46.374000549316406,10.31999969482422,5.724999904632568,2.440999984741211,21.840499877929688 -3738,2016-12-03 18:00:00,50.68000030517578,14.156999588012695,46.53499984741211,10.31999969482422,4.519999980926514,2.440999984741211,20.522499084472656 -3739,2016-12-03 19:00:00,41.88399887084961,8.963000297546387,37.87699890136719,5.8439998626708975,4.519999980926514,2.440999984741211,18.98450088500977 -3740,2016-12-03 20:00:00,49.25600051879883,14.491999626159668,43.42499923706055,9.354999542236328,5.927999973297119,1.2790000438690186,18.105499267578125 -3741,2016-12-03 21:00:00,51.68500137329102,16.586000442504886,45.2750015258789,11.902000427246096,6.172999858856201,1.2790000438690186,17.666000366210938 -3742,2016-12-03 22:00:00,47.83200073242188,15.161999702453612,43.31800079345703,11.472999572753904,4.85099983215332,1.2790000438690186,17.666000366210938 -3743,2016-12-03 23:00:00,46.32400131225586,15.07800006866455,41.14699935913086,11.043999671936035,4.808000087738037,1.2790000438690186,17.666000366210938 -3744,2016-12-04 00:00:00,42.47000122070313,13.56999969482422,36.83100128173828,9.623000144958496,5.736000061035156,1.2790000438690186,17.666000366210938 -3745,2016-12-04 01:00:00,41.632999420166016,13.319000244140623,37.071998596191406,9.838000297546388,5.736000061035156,1.2790000438690186,17.666000366210938 -3746,2016-12-04 02:00:00,41.46500015258789,12.984000205993652,36.3489990234375,9.435999870300291,4.605999946594238,1.3009999990463257,16.78700065612793 -3747,2016-12-04 03:00:00,41.38100051879883,13.402999877929688,37.20600128173828,10.239999771118164,3.134000062942505,1.246999979019165,16.34749984741211 -3748,2016-12-04 04:00:00,37.19300079345703,11.5600004196167,32.112998962402344,8.095000267028809,4.510000228881836,1.2150000333786009,16.34749984741211 -3749,2016-12-04 05:00:00,38.70100021362305,12.062999725341797,35.972999572753906,9.56999969482422,3.401000022888184,0.0,16.128000259399414 -3750,2016-12-04 06:00:00,43.72700119018555,14.072999954223633,39.11000061035156,10.668999671936035,5.885000228881836,1.3650000095367432,15.908499717712402 -3751,2016-12-04 07:00:00,36.02000045776367,9.29800033569336,30.53199958801269,5.896999835968018,5.927999973297119,1.2369999885559082,16.128000259399414 -3752,2016-12-04 08:00:00,38.198001861572266,9.381999969482422,34.41899871826172,6.2189998626708975,4.670000076293945,2.494999885559082,16.128000259399414 -3753,2016-12-04 09:00:00,41.54899978637695,10.890000343322754,39.40399932861328,8.203000068664549,2.7720000743865967,0.0,17.885499954223633 -3754,2016-12-04 10:00:00,46.32400131225586,13.56999969482422,42.19200134277344,10.185999870300291,2.750999927520752,1.3539999723434448,20.08300018310547 -3755,2016-12-04 11:00:00,46.74300003051758,14.156999588012695,43.29100036621094,11.017000198364258,3.997999906539917,1.246999979019165,22.5 -3756,2016-12-04 12:00:00,44.39699935913086,13.234999656677244,41.06600189208984,10.105999946594238,2.782999992370605,1.2790000438690186,24.477500915527344 -3757,2016-12-04 13:00:00,41.46500015258789,12.480999946594238,38.73400115966797,9.784000396728516,2.740000009536743,0.0,26.23500061035156 -3758,2016-12-04 14:00:00,42.05199813842773,12.899999618530272,38.01100158691406,9.623000144958496,3.954999923706055,1.2899999618530271,27.99349975585937 -3759,2016-12-04 15:00:00,45.4020004272461,14.576000213623049,41.57600021362305,11.28499984741211,3.954999923706055,1.2899999618530271,27.55349922180176 -3760,2016-12-04 16:00:00,48.91999816894531,15.496999740600586,43.90800094604492,11.28499984741211,5.171000003814697,1.2899999618530271,26.67499923706055 -3761,2016-12-04 17:00:00,53.19300079345703,16.753999710083008,45.89099884033203,11.232000350952148,6.695000171661378,2.505000114440918,25.13649940490723 -3762,2016-12-04 18:00:00,48.91999816894531,15.329999923706056,43.13000106811523,11.097999572753906,5.544000148773193,2.505000114440918,23.598499298095703 -3763,2016-12-04 19:00:00,46.99399948120117,13.654000282287598,40.262001037597656,9.409000396728516,6.855000019073486,2.505000114440918,22.280500411987305 -3764,2016-12-04 20:00:00,49.17200088500977,15.07800006866455,43.18399810791016,10.53499984741211,5.607999801635742,2.505000114440918,21.18149948120117 -3765,2016-12-04 21:00:00,49.84199905395508,15.581000328063965,44.33700180053711,11.178000450134276,5.565000057220459,1.2899999618530271,20.74250030517578 -3766,2016-12-04 22:00:00,48.08300018310547,14.994000434875488,43.34500122070313,11.204999923706056,5.544000148773193,1.2899999618530271,20.522499084472656 -3767,2016-12-04 23:00:00,44.64799880981445,14.156999588012695,40.42300033569336,10.90999984741211,5.500999927520752,2.7079999446868896,19.863500595092773 -3768,2016-12-05 00:00:00,40.71099853515625,13.152000427246096,35.33000183105469,9.56999969482422,5.948999881744385,2.7079999446868896,18.98450088500977 -3769,2016-12-05 01:00:00,38.95199966430664,11.979000091552734,34.097000122070305,8.711999893188478,4.201000213623047,1.3009999990463257,18.105499267578125 -3770,2016-12-05 02:00:00,39.70600128173828,12.480999946594238,36.992000579833984,9.94499969482422,2.900000095367432,0.0,17.226499557495114 -3771,2016-12-05 03:00:00,41.04600143432617,13.152000427246096,36.26800155639648,9.864999771118164,4.201000213623047,1.2580000162124634,16.34749984741211 -3772,2016-12-05 04:00:00,36.94200134277344,10.973999977111816,33.025001525878906,8.229000091552733,4.083000183105469,1.2580000162124634,15.908499717712402 -3773,2016-12-05 05:00:00,41.46500015258789,13.319000244140623,37.742000579833984,10.239999771118164,4.072999954223634,1.3220000267028809,15.029500007629396 -3774,2016-12-05 06:00:00,43.64300155639648,13.73799991607666,40.02099990844727,10.829999923706056,4.061999797821045,0.0,14.369999885559082 -3775,2016-12-05 07:00:00,35.43399810791016,8.878999710083008,31.52400016784668,6.433000087738037,3.6570000648498535,1.246999979019165,13.711000442504885 -3776,2016-12-05 08:00:00,38.78499984741211,10.220000267028809,34.5260009765625,6.9689998626708975,3.6570000648498535,1.343000054359436,13.711000442504885 -3777,2016-12-05 09:00:00,43.64300155639648,13.402999877929688,39.887001037597656,10.239999771118164,3.6570000648498535,1.343000054359436,16.34749984741211 -3778,2016-12-05 10:00:00,38.78499984741211,11.140999794006348,35.4640007019043,8.121999740600586,3.6570000648498535,1.2690000534057615,20.30299949645996 -3779,2016-12-05 11:00:00,40.04100036621094,11.309000015258787,36.21500015258789,8.578000068664549,3.6570000648498535,1.2899999618530271,23.818500518798828 -3780,2016-12-05 12:00:00,36.104000091552734,9.465999603271484,32.83700180053711,6.888999938964844,3.6570000648498535,1.2150000333786009,26.23500061035156 -3781,2016-12-05 13:00:00,37.69599914550781,11.979000091552734,33.588001251220696,8.657999992370605,3.6570000648498535,1.3109999895095823,28.21299934387207 -3782,2016-12-05 14:00:00,37.946998596191406,11.727999687194824,34.28499984741211,8.685000419616701,3.6570000648498535,1.3109999895095823,29.97050094604492 -3783,2016-12-05 15:00:00,44.64799880981445,13.904999732971191,41.87099838256836,10.829999923706056,3.6570000648498535,1.2150000333786009,29.750999450683597 -3784,2016-12-05 16:00:00,48.91999816894531,14.91100025177002,44.71200180053711,11.204999923706056,3.635999917984009,1.2150000333786009,29.09199905395508 -3785,2016-12-05 17:00:00,47.1609992980957,13.152000427246096,41.57600021362305,8.925999641418457,4.935999870300293,1.2150000333786009,26.45499992370605 -3786,2016-12-05 18:00:00,47.24499893188477,13.067999839782717,42.94300079345703,9.274999618530272,4.935999870300293,1.2150000333786009,23.598499298095703 -3787,2016-12-05 19:00:00,41.13000106811523,9.800999641418455,37.20600128173828,6.835000038146973,3.677999973297119,1.2150000333786009,21.18149948120117 -3788,2016-12-05 20:00:00,44.14599990844727,10.973999977111816,38.62699890136719,7.290999889373777,4.914999961853027,1.2150000333786009,19.863500595092773 -3789,2016-12-05 21:00:00,50.17699813842773,15.916000366210938,44.71200180053711,11.607000350952148,4.914999961853027,1.2150000333786009,19.20450019836425 -3790,2016-12-05 22:00:00,43.47600173950195,13.821999549865724,39.56499862670898,10.239999771118164,4.914999961853027,2.430999994277954,18.32550048828125 -3791,2016-12-05 23:00:00,46.90999984741211,15.07800006866455,41.22700119018555,10.989999771118164,5.789000034332275,1.5889999866485596,17.446500778198242 -3792,2016-12-06 00:00:00,41.46500015258789,13.73799991607666,35.893001556396484,9.70400047302246,5.5970001220703125,1.5889999866485596,17.006500244140625 -3793,2016-12-06 01:00:00,42.1349983215332,13.319000244140623,37.58200073242188,10.024999618530272,4.083000183105469,1.5889999866485596,16.128000259399414 -3794,2016-12-06 02:00:00,42.05199813842773,13.234999656677244,36.777000427246094,9.91800022125244,5.40500020980835,1.5889999866485596,15.468500137329102 -3795,2016-12-06 03:00:00,42.80500030517578,13.821999549865724,36.858001708984375,9.94499969482422,5.629000186920166,1.3329999446868896,14.59000015258789 -3796,2016-12-06 04:00:00,42.72200012207031,14.241000175476074,37.93000030517578,10.37399959564209,4.4670000076293945,1.3329999446868896,13.711000442504885 -3797,2016-12-06 05:00:00,41.38100051879883,13.402999877929688,35.91999816894531,9.729999542236328,5.800000190734862,2.8250000476837163,12.83199977874756 -3798,2016-12-06 06:00:00,46.2400016784668,15.161999702453612,40.69100189208984,11.043999671936035,6.172999858856201,1.6100000143051147,11.95300006866455 -3799,2016-12-06 07:00:00,39.2869987487793,10.973999977111816,34.740001678466804,8.015000343322754,4.6479997634887695,1.246999979019165,11.513500213623049 -3800,2016-12-06 08:00:00,37.52799987792969,9.21399974822998,33.42699813842773,6.298999786376952,4.679999828338623,1.2790000438690186,11.293999671936035 -3801,2016-12-06 09:00:00,44.229000091552734,13.98900032043457,41.01300048828125,10.722000122070312,3.4119999408721924,1.22599995136261,13.052000045776367 -3802,2016-12-06 10:00:00,35.85300064086914,8.963000297546387,31.97900009155273,6.298999786376952,3.4119999408721924,1.2150000333786009,15.68850040435791 -3803,2016-12-06 11:00:00,39.37099838256836,9.633000373840332,35.222999572753906,7.1040000915527335,3.4119999408721924,1.2369999885559082,18.32550048828125 -3804,2016-12-06 12:00:00,39.790000915527344,10.303000450134276,37.2599983215332,8.121999740600586,3.4119999408721924,0.0,19.64349937438965 -3805,2016-12-06 13:00:00,41.38100051879883,11.727999687194824,38.84199905395508,8.95300006866455,3.4119999408721924,1.246999979019165,20.742000579833984 -3806,2016-12-06 14:00:00,46.2400016784668,14.072999954223633,42.75500106811523,10.90999984741211,3.4119999408721924,1.22599995136261,22.06049919128418 -3807,2016-12-06 15:00:00,47.07799911499024,14.994000434875488,43.53300094604492,11.821000099182127,3.4119999408721924,1.2150000333786009,21.401500701904297 -3808,2016-12-06 16:00:00,48.25,13.487000465393065,42.51399993896485,9.354999542236328,4.670000076293945,1.2150000333786009,20.522499084472656 -3809,2016-12-06 17:00:00,50.68000030517578,14.994000434875488,44.17599868774414,9.890999794006348,7.25,2.45199990272522,18.76499938964844 -3810,2016-12-06 18:00:00,54.19800186157226,16.083000183105472,48.4109992980957,11.579999923706056,5.480000019073486,2.45199990272522,16.78700065612793 -3811,2016-12-06 19:00:00,48.08300018310547,13.487000465393065,43.02299880981445,9.56999969482422,5.491000175476074,2.45199990272522,15.908499717712402 -3812,2016-12-06 20:00:00,49.59099960327149,16.670000076293945,43.50600051879883,10.614999771118164,5.586999893188477,1.343000054359436,15.029500007629396 -3813,2016-12-06 21:00:00,50.84700012207031,16.586000442504886,45.73099899291992,12.08899974822998,5.5970001220703125,1.343000054359436,14.59000015258789 -3814,2016-12-06 22:00:00,50.59600067138672,17.507999420166016,43.63999938964844,12.303999900817873,6.813000202178955,2.559000015258789,13.711000442504885 -3815,2016-12-06 23:00:00,45.1510009765625,14.994000434875488,39.08300018310547,10.803000450134276,5.427000045776367,2.559000015258789,13.271499633789062 -3816,2016-12-07 00:00:00,41.632999420166016,13.067999839782717,37.39400100708008,9.595999717712402,5.427000045776367,2.559000015258789,12.83199977874756 -3817,2016-12-07 01:00:00,43.64300155639648,13.402999877929688,38.01100158691406,9.48900032043457,5.341000080108644,2.440999984741211,12.17300033569336 -3818,2016-12-07 02:00:00,41.88399887084961,12.39799976348877,37.18000030517578,9.034000396728516,4.040999889373778,2.440999984741211,11.513500213623049 -3819,2016-12-07 03:00:00,43.72700119018555,13.319000244140623,37.823001861572266,9.32800006866455,5.544000148773193,2.440999984741211,11.07450008392334 -3820,2016-12-07 04:00:00,35.93600082397461,10.55500030517578,31.06800079345703,7.263999938964844,5.447999954223633,2.440999984741211,10.634499549865724 -3821,2016-12-07 05:00:00,42.47000122070313,13.152000427246096,37.87699890136719,9.784000396728516,5.447999954223633,2.440999984741211,10.195500373840332 -3822,2016-12-07 06:00:00,44.983001708984375,13.234999656677244,40.28900146484375,9.677000045776367,3.9769999980926514,2.440999984741211,9.97599983215332 -3823,2016-12-07 07:00:00,38.95199966430664,9.800999641418455,34.338001251220696,6.460000038146973,5.276999950408936,1.22599995136261,9.755999565124512 -3824,2016-12-07 08:00:00,40.54399871826172,10.805999755859377,36.777000427246094,7.934999942779541,3.9769999980926514,1.3009999990463257,9.755999565124512 -3825,2016-12-07 09:00:00,46.49100112915039,15.664999961853027,42.72800064086914,11.982000350952148,3.9769999980926514,1.22599995136261,11.95300006866455 -3826,2016-12-07 10:00:00,43.97800064086914,13.152000427246096,39.94100189208984,9.649999618530272,3.9769999980926514,1.22599995136261,15.24899959564209 -3827,2016-12-07 11:00:00,47.915000915527344,15.748000144958494,44.04199981689453,11.875,3.9769999980926514,1.22599995136261,18.98450088500977 -3828,2016-12-07 12:00:00,46.99399948120117,14.994000434875488,44.14899826049805,12.008999824523926,2.750999927520752,0.0,21.840999603271484 -3829,2016-12-07 13:00:00,46.40700149536133,17.004999160766598,43.39899826049805,14.20699977874756,2.750999927520752,0.0,24.69700050354004 -3830,2016-12-07 14:00:00,44.14599990844727,14.91100025177002,41.415000915527344,12.116000175476074,2.750999927520752,0.0,25.57600021362305 -3831,2016-12-07 15:00:00,45.90499877929688,16.0,43.42499923706055,13.053999900817873,2.750999927520752,0.0,25.35650062561035 -3832,2016-12-07 16:00:00,47.41299819946289,16.0,43.55899810791016,12.357000350952148,3.986999988555908,1.22599995136261,24.69700050354004 -3833,2016-12-07 17:00:00,47.49599838256836,14.659000396728516,43.31800079345703,11.097999572753906,3.986999988555908,1.2150000333786009,23.15900039672852 -3834,2016-12-07 18:00:00,52.68999862670898,17.34000015258789,47.76800155639648,12.946999549865724,3.986999988555908,1.2150000333786009,21.18149948120117 -3835,2016-12-07 19:00:00,48.91999816894531,14.91100025177002,43.26399993896485,10.560999870300291,5.223999977111816,1.2150000333786009,19.863500595092773 -3836,2016-12-07 20:00:00,49.0880012512207,14.576000213623049,43.72000122070313,10.37399959564209,5.330999851226807,2.440999984741211,18.545000076293945 -3837,2016-12-07 21:00:00,49.84199905395508,15.329999923706056,45.999000549316406,11.151000022888184,5.330999851226807,2.440999984741211,17.666000366210938 -3838,2016-12-07 22:00:00,48.33399963378906,15.496999740600586,42.88899993896485,11.017000198364258,5.352000236511231,2.440999984741211,17.226499557495114 -3839,2016-12-07 23:00:00,46.40700149536133,14.156999588012695,41.06600189208984,10.29300022125244,4.531000137329102,1.3109999895095823,16.34749984741211 -3840,2016-12-08 00:00:00,44.73199844360352,14.072999954223633,38.86800003051758,10.133000373840332,5.5229997634887695,1.3109999895095823,15.468500137329102 -3841,2016-12-08 01:00:00,43.391998291015625,13.402999877929688,37.87699890136719,9.32800006866455,5.938000202178955,1.22599995136261,15.029500007629396 -3842,2016-12-08 02:00:00,41.29800033569336,12.5649995803833,36.617000579833984,9.006999969482422,4.734000205993652,2.440999984741211,14.150500297546388 -3843,2016-12-08 03:00:00,42.88899993896485,13.402999877929688,37.39400100708008,9.354999542236328,5.948999881744385,2.440999984741211,13.711000442504885 -3844,2016-12-08 04:00:00,38.78499984741211,11.810999870300291,34.41899871826172,8.604999542236326,4.808000087738037,1.246999979019165,13.271499633789062 -3845,2016-12-08 05:00:00,43.14099884033203,14.743000030517578,38.11800003051758,9.91800022125244,4.531000137329102,1.2790000438690186,12.392499923706056 -3846,2016-12-08 06:00:00,45.4020004272461,14.324000358581545,40.95899963378906,10.74899959564209,4.499000072479248,1.2790000438690186,11.95300006866455 -3847,2016-12-08 07:00:00,37.277000427246094,8.711999893188478,33.963001251220696,6.058000087738037,4.499000072479248,1.2790000438690186,11.513500213623049 -3848,2016-12-08 08:00:00,42.303001403808594,11.309000015258787,38.46599960327149,8.095000267028809,3.252000093460083,1.2790000438690186,11.513500213623049 -3849,2016-12-08 09:00:00,47.32899856567383,15.748000144958494,44.04199981689453,12.170000076293944,3.1979999542236333,1.2790000438690186,13.711000442504885 -3850,2016-12-08 10:00:00,41.2140007019043,11.057000160217283,38.43899917602539,8.36299991607666,3.1979999542236333,0.0,16.78700065612793 -3851,2016-12-08 11:00:00,45.48600006103516,12.480999946594238,41.60300064086914,9.006999969482422,3.1979999542236333,1.246999979019165,20.30299949645996 -3852,2016-12-08 12:00:00,46.82600021362305,13.487000465393065,43.50600051879883,10.07900047302246,3.1979999542236333,1.2150000333786009,22.71949958801269 -3853,2016-12-08 13:00:00,46.071998596191406,14.407999992370604,42.67499923706055,11.151000022888184,3.1979999542236333,1.3650000095367432,24.91699981689453 -3854,2016-12-08 14:00:00,46.32400131225586,14.91100025177002,43.18399810791016,11.579999923706056,3.1979999542236333,1.2899999618530271,26.894500732421875 -3855,2016-12-08 15:00:00,46.99399948120117,15.329999923706056,42.99599838256836,11.71399974822998,3.1979999542236333,1.2899999618530271,26.894500732421875 -3856,2016-12-08 16:00:00,45.06700134277344,17.423999786376953,41.52199935913086,13.67099952697754,3.1979999542236333,1.2150000333786009,26.23550033569336 -3857,2016-12-08 17:00:00,48.25,15.246000289916992,43.104000091552734,11.312000274658203,5.724999904632568,1.2150000333786009,24.69750022888184 -3858,2016-12-08 18:00:00,53.0250015258789,17.590999603271484,47.125,12.84000015258789,5.724999904632568,1.2150000333786009,22.93950080871582 -3859,2016-12-08 19:00:00,46.82600021362305,12.145999908447266,41.20000076293945,7.98799991607666,5.800000190734862,1.2150000333786009,21.18149948120117 -3860,2016-12-08 20:00:00,46.65900039672852,12.899999618530272,41.68299865722656,8.657999992370605,5.800000190734862,2.440999984741211,20.08300018310547 -3861,2016-12-08 21:00:00,51.34999847412109,15.83199977874756,45.24800109863281,11.312000274658203,5.714000225067139,2.440999984741211,18.98450088500977 -3862,2016-12-08 22:00:00,48.50199890136719,14.743000030517578,42.48699951171875,10.668999671936035,5.714000225067139,2.440999984741211,18.105499267578125 -3863,2016-12-08 23:00:00,43.05699920654297,11.644000053405762,38.62699890136719,8.470999717712402,4.6479997634887695,2.440999984741211,17.226499557495114 -3864,2016-12-09 00:00:00,43.55899810791016,13.402999877929688,39.055999755859375,9.864999771118164,4.616000175476074,1.2369999885559082,16.567499160766598 -3865,2016-12-09 01:00:00,38.78499984741211,10.13599967956543,35.2760009765625,7.559000015258789,3.433000087738037,1.2150000333786009,15.908499717712402 -3866,2016-12-09 02:00:00,40.62699890136719,10.890000343322754,36.9119987487793,8.069000244140625,3.433000087738037,1.22599995136261,15.029500007629396 -3867,2016-12-09 03:00:00,39.45500183105469,10.805999755859377,36.45600128173828,8.310000419616701,3.433000087738037,0.0,14.59000015258789 -3868,2016-12-09 04:00:00,40.3759994506836,11.309000015258787,36.483001708984375,8.52400016784668,4.6589999198913565,1.375,14.150500297546388 -3869,2016-12-09 05:00:00,39.45500183105469,11.140999794006348,34.766998291015625,7.854000091552732,4.328999996185304,1.2580000162124634,14.59000015258789 -3870,2016-12-09 06:00:00,42.97299957275391,12.062999725341797,39.83300018310547,9.302000045776367,3.2939999103546143,0.0,14.59000015258789 -3871,2016-12-09 07:00:00,38.617000579833984,8.376999855041504,35.0620002746582,5.816999912261963,3.2939999103546143,0.0,14.150500297546388 -3872,2016-12-09 08:00:00,40.71099853515625,10.55500030517578,37.31399917602539,7.747000217437744,3.2939999103546143,0.0,13.711000442504885 -3873,2016-12-09 09:00:00,46.15599822998047,13.402999877929688,42.70199966430664,9.94499969482422,3.2939999103546143,1.2899999618530271,15.029500007629396 -3874,2016-12-09 10:00:00,44.39699935913086,12.062999725341797,40.98600006103516,8.845999717712402,3.2939999103546143,1.246999979019165,16.78700065612793 -3875,2016-12-09 11:00:00,43.97800064086914,11.5600004196167,41.46799850463867,8.899999618530273,3.2939999103546143,0.0,18.98450088500977 -3876,2016-12-09 12:00:00,47.24499893188477,13.402999877929688,44.33700180053711,10.133000373840332,3.2939999103546143,1.2150000333786009,20.96199989318848 -3877,2016-12-09 13:00:00,44.39699935913086,13.234999656677244,42.40700149536133,10.427000045776367,2.068000078201294,0.0,22.71949958801269 -3878,2016-12-09 14:00:00,45.48600006103516,13.98900032043457,42.72800064086914,10.855999946594238,3.2939999103546143,0.0,23.818500518798828 -3879,2016-12-09 15:00:00,44.39699935913086,13.487000465393065,41.06600189208984,10.401000022888184,3.2939999103546143,1.22599995136261,23.37899971008301 -3880,2016-12-09 16:00:00,48.25,15.07800006866455,45.73099899291992,11.767999649047852,3.2939999103546143,0.0,21.840499877929688 -3881,2016-12-09 17:00:00,43.72700119018555,12.145999908447266,39.94100189208984,8.899999618530273,4.541999816894531,1.2369999885559082,20.30299949645996 -3882,2016-12-09 18:00:00,47.41299819946289,13.98900032043457,44.20299911499024,10.96399974822998,3.1770000457763667,0.0,19.20400047302246 -3883,2016-12-09 19:00:00,47.83200073242188,13.487000465393065,43.18399810791016,9.890999794006348,4.402999877929688,1.4179999828338623,18.325000762939453 -3884,2016-12-09 20:00:00,50.512001037597656,15.83199977874756,46.5620002746582,11.795000076293944,4.2109999656677255,1.4179999828338623,17.445999145507812 -3885,2016-12-09 21:00:00,52.60599899291992,17.089000701904293,46.72200012207031,12.08899974822998,5.61899995803833,2.6440000534057617,16.566999435424805 -3886,2016-12-09 22:00:00,50.00899887084961,16.0,44.81900024414063,11.71399974822998,5.576000213623047,2.6440000534057617,16.128000259399414 -3887,2016-12-09 23:00:00,45.56999969482422,13.98900032043457,41.73699951171875,10.937000274658203,3.954999923706055,0.0,15.468500137329102 -3888,2016-12-10 00:00:00,44.983001708984375,14.491999626159668,39.80699920654297,10.45400047302246,5.5329999923706055,1.2690000534057615,15.24899959564209 -3889,2016-12-10 01:00:00,43.47600173950195,13.904999732971191,37.823001861572266,10.024999618530272,5.927999973297119,2.483999967575073,15.029500007629396 -3890,2016-12-10 02:00:00,44.81600189208984,14.324000358581545,38.573001861572266,10.133000373840332,6.172999858856201,2.483999967575073,14.59000015258789 -3891,2016-12-10 03:00:00,43.47600173950195,13.904999732971191,38.17100143432617,10.024999618530272,5.980999946594237,2.483999967575073,14.150500297546388 -3892,2016-12-10 04:00:00,43.55899810791016,14.491999626159668,38.14500045776367,10.668999671936035,5.853000164031982,2.483999967575073,13.930999755859377 -3893,2016-12-10 05:00:00,43.89400100708008,14.491999626159668,38.38600158691406,9.99899959564209,5.853000164031982,2.483999967575073,13.711000442504885 -3894,2016-12-10 06:00:00,45.65399932861328,14.491999626159668,40.20899963378906,10.614999771118164,5.085000038146973,1.2690000534057615,13.711000442504885 -3895,2016-12-10 07:00:00,42.1349983215332,12.314000129699709,38.22499847412109,9.248000144958496,4.083000183105469,1.2150000333786009,13.271499633789062 -3896,2016-12-10 08:00:00,41.71599960327149,11.140999794006348,37.42100143432617,7.98799991607666,4.083000183105469,1.2369999885559082,13.271499633789062 -3897,2016-12-10 09:00:00,43.72700119018555,13.152000427246096,40.52999877929688,10.024999618530272,4.030000209808351,1.246999979019165,13.930999755859377 -3898,2016-12-10 10:00:00,48.83700180053711,15.329999923706056,44.73899841308594,11.418999671936035,4.030000209808351,1.2690000534057615,14.8100004196167 -3899,2016-12-10 11:00:00,44.0620002746582,12.5649995803833,40.42300033569336,9.274999618530272,4.030000209808351,1.2690000534057615,15.24899959564209 -3900,2016-12-10 12:00:00,47.07799911499024,13.234999656677244,43.18399810791016,9.91800022125244,4.030000209808351,1.2790000438690186,15.907999992370604 -3901,2016-12-10 13:00:00,48.16699981689453,15.161999702453612,44.44400024414063,11.579999923706056,4.030000209808351,1.2790000438690186,16.128000259399414 -3902,2016-12-10 14:00:00,44.73199844360352,13.98900032043457,40.90599822998047,10.401000022888184,4.030000209808351,1.2790000438690186,17.006999969482422 -3903,2016-12-10 15:00:00,44.64799880981445,13.904999732971191,40.36899948120117,10.642000198364258,4.030000209808351,1.2790000438690186,17.445999145507812 -3904,2016-12-10 16:00:00,44.64799880981445,13.152000427246096,40.31600189208984,9.16800022125244,5.267000198364258,1.2790000438690186,17.666000366210938 -3905,2016-12-10 17:00:00,47.999000549316406,13.654000282287598,42.64799880981445,9.32800006866455,5.267000198364258,2.505000114440918,17.445999145507812 -3906,2016-12-10 18:00:00,52.94100189208984,16.250999450683597,47.09799957275391,11.151000022888184,6.493000030517577,2.483999967575073,17.666000366210938 -3907,2016-12-10 19:00:00,46.32400131225586,12.145999908447266,40.82500076293945,8.175999641418457,5.276999950408936,2.483999967575073,17.88599967956543 -3908,2016-12-10 20:00:00,49.92599868774414,13.487000465393065,43.15700149536133,8.73900032043457,6.908999919891357,2.483999967575073,17.88599967956543 -3909,2016-12-10 21:00:00,48.83700180053711,14.91100025177002,41.81700134277344,10.024999618530272,6.610000133514402,2.483999967575073,17.666000366210938 -3910,2016-12-10 22:00:00,47.74800109863281,13.821999549865724,40.85200119018555,9.034000396728516,6.610000133514402,2.483999967575073,17.006999969482422 -3911,2016-12-10 23:00:00,47.74800109863281,15.329999923706056,41.89699935913086,10.776000022888184,5.671999931335449,2.483999967575073,16.34749984741211 -3912,2016-12-11 00:00:00,45.1510009765625,14.994000434875488,39.61899948120117,10.560999870300291,5.714000225067139,2.483999967575073,15.908499717712402 -3913,2016-12-11 01:00:00,41.632999420166016,13.402999877929688,34.98199844360352,8.657999992370605,6.758999824523926,2.5369999408721924,15.468500137329102 -3914,2016-12-11 02:00:00,41.29800033569336,13.56999969482422,36.83100128173828,9.810999870300291,4.679999828338623,2.5369999408721924,15.029500007629396 -3915,2016-12-11 03:00:00,41.2140007019043,13.319000244140623,35.35699844360352,9.034000396728516,6.216000080108643,2.5369999408721924,14.8100004196167 -3916,2016-12-11 04:00:00,41.29800033569336,13.234999656677244,36.05400085449219,9.32800006866455,4.9679999351501465,2.5369999408721924,14.150500297546388 -3917,2016-12-11 05:00:00,42.05199813842773,13.56999969482422,36.483001708984375,9.409000396728516,5.127999782562256,2.5369999408721924,13.711000442504885 -3918,2016-12-11 06:00:00,43.391998291015625,14.241000175476074,38.94900131225586,10.53499984741211,5.203000068664551,2.5369999408721924,13.491000175476074 -3919,2016-12-11 07:00:00,43.55899810791016,12.984000205993652,38.38600158691406,8.845999717712402,5.25600004196167,1.2790000438690186,13.491000175476074 -3920,2016-12-11 08:00:00,41.29800033569336,10.805999755859377,36.483001708984375,7.263999938964844,4.105000019073486,2.505000114440918,13.491000175476074 -3921,2016-12-11 09:00:00,42.88899993896485,11.5600004196167,38.46599960327149,7.827000141143799,4.169000148773193,2.505000114440918,13.491000175476074 -3922,2016-12-11 10:00:00,48.584999084472656,15.07800006866455,44.33700180053711,11.043999671936035,4.169000148773193,2.505000114440918,15.24899959564209 -3923,2016-12-11 11:00:00,48.16699981689453,14.156999588012695,44.25600051879883,10.668999671936035,4.169000148773193,1.2899999618530271,16.566999435424805 -3924,2016-12-11 12:00:00,46.90999984741211,13.98900032043457,42.54100036621094,10.29300022125244,4.169000148773193,1.2899999618530271,17.006500244140625 -3925,2016-12-11 13:00:00,46.40700149536133,14.743000030517578,42.459999084472656,10.96399974822998,4.169000148773193,1.2899999618530271,17.666000366210938 -3926,2016-12-11 14:00:00,46.40700149536133,14.324000358581545,42.48699951171875,10.614999771118164,4.169000148773193,1.2899999618530271,19.423999786376957 -3927,2016-12-11 15:00:00,46.82600021362305,14.743000030517578,42.54100036621094,10.96399974822998,4.169000148773193,2.569000005722046,19.863500595092773 -3928,2016-12-11 16:00:00,49.42300033569336,15.83199977874756,44.47100067138672,11.151000022888184,5.383999824523926,2.569000005722046,20.30299949645996 -3929,2016-12-11 17:00:00,50.17699813842773,14.407999992370604,44.97999954223633,10.29300022125244,5.436999797821045,2.569000005722046,19.423999786376957 -3930,2016-12-11 18:00:00,52.43899917602539,14.82699966430664,45.70399856567383,9.972000122070312,5.436999797821045,2.569000005722046,18.76499938964844 -3931,2016-12-11 19:00:00,45.31800079345703,11.47599983215332,39.67300033569336,7.290999889373777,5.468999862670898,2.569000005722046,18.545000076293945 -3932,2016-12-11 20:00:00,47.32899856567383,12.480999946594238,41.46799850463867,8.095000267028809,5.468999862670898,2.569000005722046,18.32550048828125 -3933,2016-12-11 21:00:00,50.512001037597656,15.161999702453612,44.60499954223633,10.480999946594238,5.554999828338623,1.3539999723434448,17.885499954223633 -3934,2016-12-11 22:00:00,44.64799880981445,11.727999687194824,40.77199935913086,8.657999992370605,4.317999839782715,1.3539999723434448,17.006500244140625 -3935,2016-12-11 23:00:00,42.303001403808594,12.062999725341797,36.992000579833984,8.390000343322754,5.480000019073486,1.3539999723434448,16.567499160766598 -3936,2016-12-12 00:00:00,43.391998291015625,13.234999656677244,38.46599960327149,9.70400047302246,5.341000080108644,1.3539999723434448,16.347999572753903 -3937,2016-12-12 01:00:00,44.14599990844727,13.821999549865724,37.76900100708008,9.515999794006348,5.341000080108644,2.697000026702881,16.347999572753903 -3938,2016-12-12 02:00:00,38.95199966430664,11.5600004196167,33.80199813842773,7.98799991607666,5.447999954223633,1.4819999933242798,16.78700065612793 -3939,2016-12-12 03:00:00,40.71099853515625,12.899999618530272,36.1879997253418,9.220999717712402,5.447999954223633,1.4819999933242798,16.78700065612793 -3940,2016-12-12 04:00:00,41.04600143432617,12.732999801635742,36.0,9.220999717712402,5.447999954223633,1.4819999933242798,16.34749984741211 -3941,2016-12-12 05:00:00,40.9630012512207,12.314000129699709,36.26800155639648,8.979999542236328,4.019000053405762,1.4819999933242798,16.34749984741211 -3942,2016-12-12 06:00:00,41.632999420166016,12.480999946594238,36.29499816894531,8.925999641418457,5.181000232696533,1.4819999933242798,16.34749984741211 -3943,2016-12-12 07:00:00,45.65399932861328,13.821999549865724,40.77199935913086,9.838000297546388,4.9790000915527335,1.4819999933242798,15.908499717712402 -3944,2016-12-12 08:00:00,41.2140007019043,11.47599983215332,36.05400085449219,7.827000141143799,4.9790000915527335,1.4819999933242798,15.908499717712402 -3945,2016-12-12 09:00:00,47.999000549316406,15.581000328063965,43.935001373291016,11.526000022888184,3.742000102996826,1.2790000438690186,16.34749984741211 -3946,2016-12-12 10:00:00,42.05199813842773,10.722000122070312,38.17100143432617,7.61299991607666,3.742000102996826,1.2790000438690186,18.325000762939453 -3947,2016-12-12 11:00:00,44.900001525878906,12.5649995803833,40.50299835205078,9.16800022125244,3.742000102996826,1.2690000534057615,20.522499084472656 -3948,2016-12-12 12:00:00,45.82099914550781,14.072999954223633,42.80899810791016,10.829999923706056,3.742000102996826,1.246999979019165,21.621000289916992 -3949,2016-12-12 13:00:00,48.33399963378906,16.083000183105472,43.74700164794922,12.08899974822998,3.742000102996826,1.246999979019165,22.5 -3950,2016-12-12 14:00:00,48.50199890136719,16.334999084472653,44.47100067138672,12.652000427246096,3.742000102996826,1.246999979019165,22.71999931335449 -3951,2016-12-12 15:00:00,48.83700180053711,16.753999710083008,44.84600067138672,12.946999549865724,3.742000102996826,1.246999979019165,22.71999931335449 -3952,2016-12-12 16:00:00,50.26100158691406,17.004999160766598,45.16799926757813,12.652000427246096,5.052999973297119,1.246999979019165,22.71999931335449 -3953,2016-12-12 17:00:00,53.44400024414063,17.507999420166016,47.39300155639648,12.170000076293944,6.269000053405763,2.463000059127808,22.71999931335449 -3954,2016-12-12 18:00:00,52.35499954223633,16.670000076293945,44.84600067138672,11.392000198364258,7.014999866485598,2.463000059127808,22.06049919128418 -3955,2016-12-12 19:00:00,48.16699981689453,13.487000465393065,42.165000915527344,9.11400032043457,6.130000114440918,2.463000059127808,21.621000289916992 -3956,2016-12-12 20:00:00,49.59099960327149,13.98900032043457,43.15700149536133,9.16800022125244,7.302999973297119,2.463000059127808,21.18149948120117 -3957,2016-12-12 21:00:00,49.84199905395508,16.166999816894528,44.87300109863281,11.579999923706056,5.61899995803833,2.463000059127808,20.96199989318848 -3958,2016-12-12 22:00:00,51.34999847412109,17.674999237060547,44.14899826049805,12.41100025177002,6.88700008392334,2.463000059127808,20.74250030517578 -3959,2016-12-12 23:00:00,45.73699951171875,15.329999923706056,39.72600173950195,10.937000274658203,7.058000087738037,2.463000059127808,20.302499771118164 -3960,2016-12-13 00:00:00,45.4020004272461,15.83199977874756,38.86800003051758,11.553000450134276,5.745999813079834,2.463000059127808,20.08300018310547 -3961,2016-12-13 01:00:00,44.0620002746582,14.743000030517578,37.5009994506836,10.401000022888184,5.651000022888184,2.463000059127808,19.423999786376957 -3962,2016-12-13 02:00:00,38.53300094604492,12.314000129699709,32.998001098632805,8.73900032043457,5.651000022888184,2.463000059127808,18.76499938964844 -3963,2016-12-13 03:00:00,40.87900161743164,13.904999732971191,35.16899871826172,9.972000122070312,4.4670000076293945,2.463000059127808,18.105499267578125 -3964,2016-12-13 04:00:00,41.2140007019043,12.314000129699709,37.367000579833984,9.16800022125244,4.4780001640319815,2.463000059127808,17.666000366210938 -3965,2016-12-13 05:00:00,39.20299911499024,11.392000198364258,33.50699996948242,7.61299991607666,5.724999904632568,2.463000059127808,17.226499557495114 -3966,2016-12-13 06:00:00,40.125,12.062999725341797,36.483001708984375,8.925999641418457,3.858999967575073,1.246999979019165,16.78700065612793 -3967,2016-12-13 07:00:00,42.55400085449219,11.895000457763672,37.31399917602539,8.336999893188478,5.074999809265137,1.246999979019165,16.34749984741211 -3968,2016-12-13 08:00:00,39.62200164794922,9.885000228881836,35.652000427246094,7.1570000648498535,3.625,1.2150000333786009,15.907999992370604 -3969,2016-12-13 09:00:00,46.65900039672852,14.241000175476074,43.39899826049805,11.043999671936035,3.625,0.0,15.68850040435791 -3970,2016-12-13 10:00:00,40.459999084472656,10.38700008392334,36.858001708984375,7.559000015258789,3.7309999465942383,1.246999979019165,15.24899959564209 -3971,2016-12-13 11:00:00,47.999000549316406,14.324000358581545,44.28300094604492,10.855999946594238,3.7309999465942383,1.246999979019165,15.24899959564209 -3972,2016-12-13 12:00:00,47.07799911499024,13.98900032043457,43.74700164794922,11.151000022888184,2.494999885559082,0.0,15.468999862670898 -3973,2016-12-13 13:00:00,48.50199890136719,15.83199977874756,44.49800109863281,12.598999977111816,3.720999956130981,0.0,15.908499717712402 -3974,2016-12-13 14:00:00,43.64300155639648,11.727999687194824,40.31600189208984,8.685000419616701,3.677999973297119,0.0,16.34749984741211 -3975,2016-12-13 15:00:00,43.05699920654297,11.309000015258787,40.12799835205078,8.604999542236326,2.377000093460083,0.0,16.128000259399414 -3976,2016-12-13 16:00:00,50.59600067138672,14.82699966430664,47.07099914550781,11.33899974822998,3.6040000915527344,1.2369999885559082,16.128000259399414 -3977,2016-12-13 17:00:00,52.27099990844727,14.659000396728516,48.35800170898438,10.776000022888184,4.861999988555908,1.3329999446868896,16.128000259399414 -3978,2016-12-13 18:00:00,51.01499938964844,13.402999877929688,47.36600112915039,9.91800022125244,4.894000053405762,1.3220000267028809,16.128000259399414 -3979,2016-12-13 19:00:00,45.48600006103516,10.052000045776367,41.09299850463867,6.995999813079834,4.48799991607666,0.0,16.567499160766598 -3980,2016-12-13 20:00:00,48.50199890136719,11.895000457763672,43.479000091552734,8.470999717712402,4.4670000076293945,1.246999979019165,16.128000259399414 -3981,2016-12-13 21:00:00,49.84199905395508,13.319000244140623,44.49800109863281,9.461999893188477,4.531000137329102,1.5349999666213991,15.68850040435791 -3982,2016-12-13 22:00:00,47.999000549316406,13.152000427246096,42.91600036621094,9.649999618530272,4.531000137329102,0.0,15.468999862670898 -3983,2016-12-13 23:00:00,46.99399948120117,13.487000465393065,41.97800064086914,10.024999618530272,5.330999851226807,1.493000030517578,14.809499740600586 -3984,2016-12-14 00:00:00,43.72700119018555,12.229999542236328,39.24399948120117,9.006999969482422,3.9449999332427983,1.4609999656677246,13.930500030517578 -3985,2016-12-14 01:00:00,42.88899993896485,11.47599983215332,38.27899932861328,8.578000068664549,5.043000221252441,0.0,13.05150032043457 -3986,2016-12-14 02:00:00,39.45500183105469,10.805999755859377,35.54399871826172,7.77400016784668,5.043000221252441,1.4290000200271606,12.612500190734863 -3987,2016-12-14 03:00:00,39.95700073242188,10.470999717712402,34.820999145507805,7.61299991607666,4.541999816894531,1.4609999656677246,12.612500190734863 -3988,2016-12-14 04:00:00,41.13000106811523,11.225000381469728,37.52799987792969,8.657999992370605,4.616000175476074,0.0,11.73349952697754 -3989,2016-12-14 05:00:00,42.1349983215332,11.5600004196167,36.96500015258789,8.36299991607666,4.734000205993652,1.2150000333786009,10.854499816894531 -3990,2016-12-14 06:00:00,40.71099853515625,10.55500030517578,37.2869987487793,8.255999565124513,3.7100000381469727,0.0,10.195500373840332 -3991,2016-12-14 07:00:00,45.98899841308594,12.314000129699709,40.55699920654297,8.657999992370605,5.085000038146973,1.3009999990463257,10.195500373840332 -3992,2016-12-14 08:00:00,45.31800079345703,11.895000457763672,41.415000915527344,8.711999893188478,4.114999771118163,0.0,9.975500106811523 -3993,2016-12-14 09:00:00,49.50699996948242,14.91100025177002,45.89099884033203,11.178000450134276,2.8469998836517334,0.0,10.19499969482422 -3994,2016-12-14 10:00:00,46.74300003051758,11.47599983215332,43.90800094604492,8.578000068664549,2.8469998836517334,0.0,10.414999961853027 -3995,2016-12-14 11:00:00,48.50199890136719,12.145999908447266,44.79199981689453,8.578000068664549,2.8469998836517334,1.2369999885559082,10.854499816894531 -3996,2016-12-14 12:00:00,51.51699829101562,14.241000175476074,47.84799957275391,10.53499984741211,4.061999797821045,1.2369999885559082,11.95300006866455 -3997,2016-12-14 13:00:00,49.25600051879883,13.821999549865724,45.81100082397461,10.53499984741211,4.061999797821045,0.0,13.271499633789062 -3998,2016-12-14 14:00:00,49.3390007019043,14.324000358581545,45.81100082397461,10.90999984741211,4.061999797821045,1.246999979019165,15.68850040435791 -3999,2016-12-14 15:00:00,43.14099884033203,12.732999801635742,39.27000045776367,9.623000144958496,4.105000019073486,1.2369999885559082,16.127500534057614 -4000,2016-12-14 16:00:00,43.64300155639648,11.392000198364258,38.89500045776367,7.88100004196167,4.125999927520752,1.246999979019165,15.249500274658203 -4001,2016-12-14 17:00:00,45.82099914550781,11.47599983215332,40.36899948120117,7.827000141143799,5.352000236511231,2.4730000495910645,13.491000175476074 -4002,2016-12-14 18:00:00,55.11899948120117,15.246000289916992,48.38399887084961,10.69499969482422,6.546000003814697,2.4730000495910645,12.392499923706056 -4003,2016-12-14 19:00:00,50.68000030517578,12.229999542236328,44.33700180053711,8.069000244140625,6.502999782562256,1.22599995136261,11.513500213623049 -4004,2016-12-14 20:00:00,49.75799942016602,11.47599983215332,42.78200149536133,6.861999988555907,6.22599983215332,2.463000059127808,10.854499816894531 -4005,2016-12-14 21:00:00,52.68999862670898,13.98900032043457,46.66899871826172,9.729999542236328,6.216000080108643,2.463000059127808,10.414999961853027 -4006,2016-12-14 22:00:00,50.428001403808594,14.324000358581545,45.08700180053711,10.133000373840332,5.629000186920166,1.5670000314712524,9.97599983215332 -4007,2016-12-14 23:00:00,48.66899871826172,14.241000175476074,42.38000106811523,10.07900047302246,5.629000186920166,1.5670000314712524,9.316499710083008 -4008,2016-12-15 00:00:00,43.89400100708008,12.229999542236328,39.24399948120117,8.95300006866455,5.629000186920166,1.5670000314712524,8.656999588012695 -4009,2016-12-15 01:00:00,44.39699935913086,12.145999908447266,39.055999755859375,8.657999992370605,4.958000183105469,1.22599995136261,7.998000144958496 -4010,2016-12-15 02:00:00,44.81600189208984,12.815999984741213,38.86800003051758,9.086999893188477,4.90399980545044,1.22599995136261,7.339000225067139 -4011,2016-12-15 03:00:00,45.31800079345703,13.234999656677244,39.29700088500977,9.248000144958496,6.162000179290772,1.246999979019165,6.89900016784668 -4012,2016-12-15 04:00:00,40.71099853515625,11.057000160217283,36.1879997253418,8.255999565124513,4.7230000495910645,1.246999979019165,6.460000038146973 -4013,2016-12-15 05:00:00,40.54399871826172,11.47599983215332,35.25,7.98799991607666,5.660999774932861,1.2580000162124634,6.020500183105469 -4014,2016-12-15 06:00:00,41.54899978637695,10.890000343322754,35.57099914550781,7.372000217437744,5.660999774932861,1.2580000162124634,5.580999851226807 -4015,2016-12-15 07:00:00,46.90999984741211,12.64900016784668,41.25400161743164,8.845999717712402,5.043000221252441,1.22599995136261,5.142000198364258 -4016,2016-12-15 08:00:00,45.23500061035156,11.309000015258787,39.45800018310547,7.479000091552732,6.0980000495910645,2.569000005722046,5.142000198364258 -4017,2016-12-15 09:00:00,50.09299850463867,14.994000434875488,44.01499938964844,10.31999969482422,6.077000141143799,2.569000005722046,7.558499813079834 -4018,2016-12-15 10:00:00,49.17200088500977,14.82699966430664,43.23799896240234,10.401000022888184,5.96999979019165,2.569000005722046,10.635000228881836 -4019,2016-12-15 11:00:00,51.76900100708008,16.419000625610348,46.13299942016602,11.579999923706056,5.651000022888184,2.569000005722046,14.150500297546388 -4020,2016-12-15 12:00:00,50.00899887084961,13.98900032043457,45.38199996948242,9.972000122070312,4.392000198364259,2.569000005722046,16.78700065612793 -4021,2016-12-15 13:00:00,51.01499938964844,15.83199977874756,45.43600082397461,11.017000198364258,5.724999904632568,2.6010000705718994,18.325000762939453 -4022,2016-12-15 14:00:00,50.93099975585938,15.916000366210938,45.8650016784668,11.12399959564209,5.724999904632568,2.6010000705718994,19.863000869750977 -4023,2016-12-15 15:00:00,47.41299819946289,14.659000396728516,42.35300064086914,10.480999946594238,3.869999885559082,2.6010000705718994,19.20450019836425 -4024,2016-12-15 16:00:00,50.512001037597656,15.664999961853027,45.22100067138672,10.74899959564209,5.0960001945495605,2.6010000705718994,17.226499557495114 -4025,2016-12-15 17:00:00,54.28200149536133,16.419000625610348,48.196998596191406,11.28499984741211,6.333000183105469,2.6010000705718994,17.226499557495114 -4026,2016-12-15 18:00:00,57.46500015258789,16.50200080871582,51.17200088500977,11.28499984741211,6.269000053405763,2.6010000705718994,13.930999755859377 -4027,2016-12-15 19:00:00,50.59600067138672,12.480999946594238,44.47100067138672,8.015000343322754,6.151999950408936,1.3860000371932983,12.83199977874756 -4028,2016-12-15 20:00:00,54.19800186157226,14.659000396728516,49.29600143432617,10.213000297546388,6.162000179290772,2.6440000534057617,11.95300006866455 -4029,2016-12-15 21:00:00,56.20800018310547,16.166999816894528,49.8849983215332,10.96399974822998,6.364999771118164,1.3860000371932983,10.854499816894531 -4030,2016-12-15 22:00:00,52.52299880981445,15.246000289916992,45.91799926757813,10.213000297546388,6.364999771118164,1.3860000371932983,10.414999961853027 -4031,2016-12-15 23:00:00,49.50699996948242,14.743000030517578,43.34500122070313,10.159000396728516,5.745999813079834,1.246999979019165,9.97599983215332 -4032,2016-12-16 00:00:00,47.41299819946289,13.821999549865724,42.32600021362305,9.94499969482422,5.745999813079834,1.246999979019165,9.316499710083008 -4033,2016-12-16 01:00:00,46.57500076293945,13.821999549865724,40.66400146484375,9.56999969482422,6.065999984741211,1.246999979019165,8.876999855041504 -4034,2016-12-16 02:00:00,45.73699951171875,13.654000282287598,39.16299819946289,9.515999794006348,5.223999977111816,2.494999885559082,8.218000411987305 -4035,2016-12-16 03:00:00,46.15599822998047,13.73799991607666,40.15499877929688,9.48900032043457,6.396999835968018,1.2690000534057615,7.777999877929687 -4036,2016-12-16 04:00:00,45.48600006103516,13.654000282287598,40.42300033569336,9.99899959564209,5.10699987411499,1.2690000534057615,7.339000225067139 -4037,2016-12-16 05:00:00,45.1510009765625,13.319000244140623,39.29700088500977,9.302000045776367,6.460999965667725,1.2690000534057615,6.89900016784668 -4038,2016-12-16 06:00:00,48.91999816894531,14.491999626159668,42.78200149536133,10.105999946594238,5.394999980926514,1.246999979019165,6.89900016784668 -4039,2016-12-16 07:00:00,41.13000106811523,9.21399974822998,36.29499816894531,6.004000186920166,5.127999782562256,1.22599995136261,6.460000038146973 -4040,2016-12-16 08:00:00,45.90499877929688,10.638999938964844,39.24399948120117,6.326000213623048,6.364999771118164,1.22599995136261,6.460000038146973 -4041,2016-12-16 09:00:00,51.43399810791016,14.407999992370604,47.36600112915039,10.722000122070312,4.030000209808351,1.22599995136261,7.777999877929687 -4042,2016-12-16 10:00:00,47.66400146484375,11.979000091552734,43.96099853515625,8.630999565124513,4.030000209808351,0.0,10.854499816894531 -4043,2016-12-16 11:00:00,51.68500137329102,14.156999588012695,46.88299942016602,9.864999771118164,4.030000209808351,1.2369999885559082,14.59000015258789 -4044,2016-12-16 12:00:00,50.68000030517578,14.156999588012695,46.7760009765625,10.53499984741211,4.030000209808351,1.2369999885559082,17.666000366210938 -4045,2016-12-16 13:00:00,49.84199905395508,15.07800006866455,45.62300109863281,11.312000274658203,4.030000209808351,1.4609999656677246,19.863000869750977 -4046,2016-12-16 14:00:00,50.76300048828125,15.664999961853027,46.2400016784668,11.232000350952148,4.307000160217285,1.4609999656677246,21.18149948120117 -4047,2016-12-16 15:00:00,50.00899887084961,15.07800006866455,46.374000549316406,11.204999923706056,3.0920000076293945,1.524999976158142,20.742000579833984 -4048,2016-12-16 16:00:00,52.10400009155274,15.07800006866455,47.178001403808594,10.989999771118164,4.339000225067139,1.3329999446868896,19.64349937438965 -4049,2016-12-16 17:00:00,37.025001525878906,8.711999893188478,31.711000442504893,5.656000137329103,4.339000225067139,1.3009999990463257,17.445999145507812 -4050,2016-12-16 18:00:00,35.76900100708008,6.86899995803833,31.363000869750977,4.100999832153319,5.565000057220459,1.3109999895095823,15.468500137329102 -4051,2016-12-16 19:00:00,35.85300064086914,7.623000144958496,29.9689998626709,4.182000160217285,5.5329999923706055,1.5349999666213991,13.930500030517578 -4052,2016-12-16 20:00:00,36.27199935913086,7.706999778747559,29.941999435424805,4.315999984741212,6.184000015258789,1.5349999666213991,12.392499923706056 -4053,2016-12-16 21:00:00,32.333999633789055,6.031000137329103,26.75200080871582,3.243000030517578,6.236999988555907,1.2369999885559082,11.07450008392334 -4054,2016-12-16 22:00:00,28.229999542236328,4.2719998359680185,23.589000701904297,2.3320000171661377,4.531000137329102,1.2899999618530271,9.755999565124512 -4055,2016-12-16 23:00:00,27.392000198364247,5.863999843597412,21.417999267578125,3.0829999446868896,6.289999961853027,1.22599995136261,8.876999855041504 -4056,2016-12-17 00:00:00,22.450000762939453,4.2719998359680185,18.36199951171875,2.3320000171661377,4.6479997634887695,1.22599995136261,7.998000144958496 -4057,2016-12-17 01:00:00,22.0310001373291,4.105000019073486,16.913999557495114,1.9029999971389768,4.690999984741211,1.2150000333786009,7.558499813079834 -4058,2016-12-17 02:00:00,22.78499984741211,4.690999984741211,17.208999633789062,2.2780001163482666,5.948999881744385,1.2690000534057615,7.558499813079834 -4059,2016-12-17 03:00:00,20.941999435424805,0.0,16.083000183105472,2.0639998912811284,4.679999828338623,1.2899999618530271,7.558499813079834 -4060,2016-12-17 04:00:00,19.51799964904785,0.0,14.715999603271484,1.7690000534057615,4.829999923706055,1.2899999618530271,7.338500022888184 -4061,2016-12-17 05:00:00,20.77400016784668,0.0,15.145000457763672,1.7419999837875366,4.872000217437744,1.2899999618530271,7.11899995803833 -4062,2016-12-17 06:00:00,22.0310001373291,0.0,16.700000762939453,1.6619999408721924,4.85099983215332,1.3650000095367432,6.679999828338622 -4063,2016-12-17 07:00:00,22.450000762939453,0.0,18.308000564575195,2.009999990463257,4.85099983215332,1.2150000333786009,6.240499973297119 -4064,2016-12-17 08:00:00,25.381999969482425,4.775000095367432,20.077999114990234,2.4660000801086426,4.9679999351501465,1.246999979019165,5.80049991607666 -4065,2016-12-17 09:00:00,25.29800033569336,5.445000171661377,21.552000045776367,3.4579999446868896,3.380000114440918,1.2790000438690186,7.778500080108643 -4066,2016-12-17 10:00:00,27.141000747680664,6.198999881744385,22.51700019836425,3.753000020980835,4.6589999198913565,1.2790000438690186,10.195500373840332 -4067,2016-12-17 11:00:00,27.05699920654297,5.947999954223633,22.54400062561035,3.5920000076293945,4.626999855041504,1.2150000333786009,13.711000442504885 -4068,2016-12-17 12:00:00,24.375999450683597,4.690999984741211,20.184999465942383,2.5999999046325684,4.626999855041504,1.2150000333786009,16.567499160766598 -4069,2016-12-17 13:00:00,24.62800025939941,5.193999767303467,19.836000442504886,3.0829999446868896,4.510000228881836,1.22599995136261,18.98450088500977 -4070,2016-12-17 14:00:00,24.125,4.859000205993652,19.488000869750977,2.815000057220459,4.510000228881836,1.2369999885559082,21.840999603271484 -4071,2016-12-17 15:00:00,24.292999267578125,5.52899980545044,19.836000442504886,3.3510000705718994,4.030000209808351,1.5460000038146973,22.06049919128418 -4072,2016-12-17 16:00:00,26.30299949645996,5.696000099182129,21.604999542236328,3.243000030517578,4.030000209808351,1.5460000038146973,20.96199989318848 -4073,2016-12-17 17:00:00,32.501998901367195,7.454999923706055,27.42200088500977,4.26200008392334,5.639999866485598,2.7720000743865967,18.98450088500977 -4074,2016-12-17 18:00:00,35.26599884033203,8.041999816894531,30.666000366210927,5.441999912261963,4.264999866485597,1.5570000410079956,17.226499557495114 -4075,2016-12-17 19:00:00,34.847000122070305,8.125,29.351999282836918,5.254000186920166,5.5229997634887695,1.5570000410079956,16.128000259399414 -4076,2016-12-17 20:00:00,36.27199935913086,8.878999710083008,30.048999786376957,5.281000137329102,5.5970001220703125,1.5570000410079956,14.809499740600586 -4077,2016-12-17 21:00:00,34.345001220703125,8.125,29.433000564575195,5.173999786376953,5.607999801635742,1.5570000410079956,13.711000442504885 -4078,2016-12-17 22:00:00,33.17200088500977,7.706999778747559,27.34199905395508,4.63700008392334,5.629000186920166,1.5570000410079956,13.05150032043457 -4079,2016-12-17 23:00:00,30.743000030517567,7.454999923706055,25.65299987792969,4.7179999351501465,5.683000087738037,1.5570000410079956,12.83199977874756 -4080,2016-12-18 00:00:00,28.983999252319336,6.701000213623048,23.214000701904297,3.8059999942779537,5.683000087738037,1.5570000410079956,12.392499923706056 -4081,2016-12-18 01:00:00,27.97900009155273,6.2829999923706055,22.007999420166016,3.3510000705718994,6.193999767303468,1.5779999494552612,12.172499656677244 -4082,2016-12-18 02:00:00,26.05200004577637,5.611999988555908,20.371999740600582,3.1630001068115234,4.6479997634887695,1.5779999494552612,11.73349952697754 -4083,2016-12-18 03:00:00,25.71699905395508,5.276999950408936,19.91699981689453,2.6540000438690186,5.906000137329103,1.5779999494552612,11.513500213623049 -4084,2016-12-18 04:00:00,25.80100059509277,5.611999988555908,20.051000595092773,3.135999917984009,5.341000080108644,1.2580000162124634,10.634499549865724 -4085,2016-12-18 05:00:00,24.71199989318848,5.193999767303467,20.63999938964844,3.5920000076293945,5.341000080108644,0.0,9.755999565124512 -4086,2016-12-18 06:00:00,26.72200012207031,4.941999912261963,22.06100082397461,3.002000093460083,5.320000171661377,1.2369999885559082,9.316499710083008 -4087,2016-12-18 07:00:00,26.63800048828125,4.2719998359680185,22.302000045776367,2.2780001163482666,4.072999954223634,1.343000054359436,8.876999855041504 -4088,2016-12-18 08:00:00,0.0,0.0,23.05299949645996,3.1630001068115234,5.40500020980835,1.3969999551773071,8.876999855041504 -4089,2016-12-18 09:00:00,0.0,0.0,24.36599922180176,3.7260000705718994,5.25600004196167,1.3969999551773071,10.634499549865724 -4090,2016-12-18 10:00:00,0.0,0.0,26.77899932861328,3.88700008392334,4.541999816894531,1.3329999446868896,13.271499633789062 -4091,2016-12-18 11:00:00,0.0,0.0,27.15399932861328,3.2699999809265137,4.541999816894531,1.2150000333786009,15.24899959564209 -4092,2016-12-18 12:00:00,0.0,0.0,24.660999298095703,2.438999891281128,4.541999816894531,1.4819999933242798,17.445999145507812 -4093,2016-12-18 13:00:00,0.0,0.0,25.03700065612793,3.135999917984009,4.765999794006348,1.2790000438690186,19.643999099731445 -4094,2016-12-18 14:00:00,0.0,0.0,24.34000015258789,3.4040000438690186,4.765999794006348,1.2790000438690186,21.840999603271484 -4095,2016-12-18 15:00:00,0.0,0.0,25.492000579833984,3.484999895095825,4.776000022888184,2.569000005722046,22.06049919128418 -4096,2016-12-18 16:00:00,0.0,0.0,26.13599967956543,3.2699999809265137,6.929999828338622,2.569000005722046,21.401500701904297 -4097,2016-12-18 17:00:00,0.0,0.0,27.87800025939941,3.3510000705718994,5.703999996185303,2.569000005722046,20.522499084472656 -4098,2016-12-18 18:00:00,0.0,0.0,29.2450008392334,3.88700008392334,5.703999996185303,2.569000005722046,19.423999786376957 -4099,2016-12-18 19:00:00,34.68000030517578,7.454999923706055,28.68199920654297,4.2890000343322745,5.629000186920166,2.569000005722046,18.545000076293945 -4100,2016-12-18 20:00:00,33.50699996948242,6.7849998474121085,27.770999908447266,3.6989998817443848,5.629000186920166,2.569000005722046,17.226499557495114 -4101,2016-12-18 21:00:00,33.50699996948242,6.618000030517577,27.44899940490723,3.5920000076293945,5.576000213623047,1.3220000267028809,15.908499717712402 -4102,2016-12-18 22:00:00,31.66399955749512,7.037000179290772,25.22400093078613,3.6719999313354488,5.565000057220459,1.3220000267028809,14.59000015258789 -4103,2016-12-18 23:00:00,29.066999435424805,6.031000137329103,23.05299949645996,2.8949999809265137,5.5329999923706055,1.3220000267028809,14.150500297546388 -4104,2016-12-19 00:00:00,25.88400077819824,4.941999912261963,21.391000747680664,2.760999917984009,5.5329999923706055,1.3220000267028809,13.930999755859377 -4105,2016-12-19 01:00:00,26.80599975585937,6.618000030517577,21.391000747680664,3.7799999713897705,6.119999885559082,1.3220000267028809,13.711000442504885 -4106,2016-12-19 02:00:00,32.250999450683594,8.628000259399414,26.67200088500977,5.656000137329103,4.829999923706055,1.3220000267028809,13.711000442504885 -4107,2016-12-19 03:00:00,30.743000030517567,8.963000297546387,24.92900085449219,5.816999912261963,6.109000205993652,1.3220000267028809,13.711000442504885 -4108,2016-12-19 04:00:00,36.68999862670898,9.968000411987305,31.256000518798828,6.861999988555907,6.204999923706055,1.3220000267028809,13.271499633789062 -4109,2016-12-19 05:00:00,45.56999969482422,15.329999923706056,40.23500061035156,11.472999572753904,6.02400016784668,2.5799999237060547,12.83199977874756 -4110,2016-12-19 06:00:00,46.90999984741211,15.496999740600586,41.73699951171875,11.767999649047852,4.755000114440918,2.5799999237060547,12.83199977874756 -4111,2016-12-19 07:00:00,45.31800079345703,14.156999588012695,42.27299880981445,11.097999572753906,3.4760000705718994,0.0,12.83199977874756 -4112,2016-12-19 08:00:00,42.88899993896485,12.480999946594238,38.01100158691406,9.086999893188477,4.734000205993652,1.4609999656677246,13.052000045776367 -4113,2016-12-19 09:00:00,47.999000549316406,16.586000442504886,44.310001373291016,12.920000076293944,3.433000087738037,1.4179999828338623,15.029500007629396 -4114,2016-12-19 10:00:00,46.071998596191406,13.654000282287598,41.33399963378906,9.99899959564209,4.670000076293945,1.2150000333786009,18.325000762939453 -4115,2016-12-19 11:00:00,48.50199890136719,14.156999588012695,44.14899826049805,10.803000450134276,3.4440000057220463,1.2790000438690186,21.840999603271484 -4116,2016-12-19 12:00:00,48.66899871826172,14.994000434875488,44.04199981689453,11.418999671936035,4.797999858856201,1.22599995136261,23.37899971008301 -4117,2016-12-19 13:00:00,48.91999816894531,16.250999450683597,44.47100067138672,12.571999549865724,4.519999980926514,1.22599995136261,24.91650009155273 -4118,2016-12-19 14:00:00,47.1609992980957,16.166999816894528,43.31800079345703,12.894000053405762,4.519999980926514,1.2580000162124634,27.773500442504893 -4119,2016-12-19 15:00:00,49.84199905395508,18.26099967956543,45.4630012512207,14.395000457763672,4.552000045776367,1.2150000333786009,27.55349922180176 -4120,2016-12-19 16:00:00,48.50199890136719,16.166999816894528,44.60499954223633,12.357000350952148,4.4780001640319815,1.2150000333786009,26.67499923706055 -4121,2016-12-19 17:00:00,53.44400024414063,17.34000015258789,46.5880012512207,12.116000175476074,5.703999996185303,2.5369999408721924,25.57600021362305 -4122,2016-12-19 18:00:00,50.93099975585938,17.004999160766598,45.89099884033203,12.894000053405762,4.872000217437744,2.5369999408721924,23.818500518798828 -4123,2016-12-19 19:00:00,48.25,13.821999549865724,43.23799896240234,10.133000373840332,4.85099983215332,1.3220000267028809,22.93950080871582 -4124,2016-12-19 20:00:00,53.36000061035156,15.916000366210938,47.28499984741211,11.178000450134276,6.065999984741211,1.5140000581741333,22.5 -4125,2016-12-19 21:00:00,55.0359992980957,17.674999237060547,48.946998596191406,12.545000076293944,6.0879998207092285,1.5140000581741333,22.280500411987305 -4126,2016-12-19 22:00:00,52.43899917602539,17.34000015258789,46.85599899291992,12.732999801635742,5.51200008392334,1.5140000581741333,22.280500411987305 -4127,2016-12-19 23:00:00,50.17699813842773,16.670000076293945,45.06000137329102,12.571999549865724,5.491000175476074,1.5140000581741333,22.280500411987305 -4128,2016-12-20 00:00:00,46.32400131225586,14.491999626159668,42.13899993896485,10.96399974822998,4.190000057220459,1.22599995136261,21.621000289916992 -4129,2016-12-20 01:00:00,44.81600189208984,14.576000213623049,40.71799850463867,11.28499984741211,4.190000057220459,1.2790000438690186,19.863500595092773 -4130,2016-12-20 02:00:00,47.32899856567383,15.413000106811523,42.27299880981445,11.472999572753904,4.190000057220459,1.22599995136261,18.105499267578125 -4131,2016-12-20 03:00:00,46.90999984741211,15.161999702453612,41.97800064086914,11.472999572753904,4.317999839782715,1.22599995136261,17.226499557495114 -4132,2016-12-20 04:00:00,43.05699920654297,14.324000358581545,38.30500030517578,10.90999984741211,4.317999839782715,1.246999979019165,16.78700065612793 -4133,2016-12-20 05:00:00,47.1609992980957,15.581000328063965,42.35300064086914,12.008999824523926,4.317999839782715,1.2369999885559082,15.908499717712402 -4134,2016-12-20 06:00:00,48.33399963378906,16.250999450683597,44.900001525878906,13.081000328063965,4.0939998626708975,0.0,15.68850040435791 -4135,2016-12-20 07:00:00,42.05199813842773,12.64900016784668,38.76100158691406,9.838000297546388,3.891000032424927,0.0,15.68850040435791 -4136,2016-12-20 08:00:00,48.83700180053711,15.496999740600586,43.34500122070313,11.472999572753904,5.235000133514403,1.3539999723434448,15.468500137329102 -4137,2016-12-20 09:00:00,51.60100173950195,17.089000701904293,47.6609992980957,12.866999626159668,3.986999988555908,1.246999979019165,15.468500137329102 -4138,2016-12-20 10:00:00,47.74800109863281,13.56999969482422,44.310001373291016,10.213000297546388,2.611999988555908,0.0,16.567499160766598 -4139,2016-12-20 11:00:00,48.66899871826172,13.402999877929688,45.03400039672852,10.213000297546388,3.9449999332427983,0.0,17.226499557495114 -4140,2016-12-20 12:00:00,48.66899871826172,14.576000213623049,44.73899841308594,10.883000373840332,3.5820000171661377,1.3650000095367432,17.666000366210938 -4141,2016-12-20 13:00:00,52.35499954223633,16.753999710083008,47.5270004272461,12.598999977111816,4.861999988555908,1.3539999723434448,18.105499267578125 -4142,2016-12-20 14:00:00,49.67399978637695,15.664999961853027,46.0250015258789,12.008999824523926,3.625,0.0,18.545000076293945 -4143,2016-12-20 15:00:00,53.86299896240234,18.0939998626709,48.86700057983398,13.83199977874756,4.840000152587892,1.4500000476837158,18.545000076293945 -4144,2016-12-20 16:00:00,54.86800003051758,17.674999237060547,49.18899917602539,12.84000015258789,5.480000019073486,1.246999979019165,18.545000076293945 -4145,2016-12-20 17:00:00,57.2140007019043,17.926000595092773,51.09199905395508,12.866999626159668,5.480000019073486,1.246999979019165,18.76499938964844 -4146,2016-12-20 18:00:00,55.95700073242188,17.34000015258789,51.01100158691406,12.973999977111816,5.309000015258789,1.2150000333786009,18.76499938964844 -4147,2016-12-20 19:00:00,51.18199920654297,14.407999992370604,45.67699813842773,10.31999969482422,5.085000038146973,1.22599995136261,18.98450088500977 -4148,2016-12-20 20:00:00,49.92599868774414,13.904999732971191,44.79199981689453,10.213000297546388,5.085000038146973,1.7380000352859497,18.98450088500977 -4149,2016-12-20 21:00:00,52.85800170898438,16.836999893188473,47.6609992980957,12.706000328063965,4.679999828338623,1.246999979019165,18.105499267578125 -4150,2016-12-20 22:00:00,51.60100173950195,16.419000625610348,46.88299942016602,12.383999824523926,4.808000087738037,1.2150000333786009,17.88599967956543 -4151,2016-12-20 23:00:00,48.75299835205078,15.496999740600586,44.38999938964844,12.062999725341797,4.808000087738037,0.0,17.666000366210938 -4152,2016-12-21 00:00:00,44.39699935913086,14.241000175476074,39.80699920654297,11.071000099182127,4.85099983215332,1.2690000534057615,17.666000366210938 -4153,2016-12-21 01:00:00,46.40700149536133,14.743000030517578,41.57600021362305,11.33899974822998,4.958000183105469,1.3860000371932983,17.666000366210938 -4154,2016-12-21 02:00:00,45.65399932861328,14.324000358581545,41.11999893188477,11.232000350952148,4.958000183105469,1.246999979019165,18.105499267578125 -4155,2016-12-21 03:00:00,42.72200012207031,13.98900032043457,37.84999847412109,10.668999671936035,5.043000221252441,1.246999979019165,18.105499267578125 -4156,2016-12-21 04:00:00,42.72200012207031,13.98900032043457,38.76100158691406,10.668999671936035,3.2839999198913574,1.4290000200271606,18.32550048828125 -4157,2016-12-21 05:00:00,47.1609992980957,15.246000289916992,42.27299880981445,11.71399974822998,5.5229997634887695,1.2580000162124634,18.76449966430664 -4158,2016-12-21 06:00:00,47.66400146484375,15.748000144958494,43.13000106811523,12.491000175476074,4.882999897003174,0.0,18.76449966430664 -4159,2016-12-21 07:00:00,45.23500061035156,13.319000244140623,40.262001037597656,9.972000122070312,4.914999961853027,1.2580000162124634,18.105499267578125 -4160,2016-12-21 08:00:00,44.0620002746582,11.392000198364258,40.18199920654297,8.711999893188478,4.541999816894531,0.0,17.666000366210938 -4161,2016-12-21 09:00:00,50.76300048828125,17.34000015258789,46.374000549316406,13.67099952697754,4.317999839782715,1.2690000534057615,18.105499267578125 -4162,2016-12-21 10:00:00,48.83700180053711,14.072999954223633,43.77399826049805,10.427000045776367,4.519999980926514,1.246999979019165,18.105499267578125 -4163,2016-12-21 11:00:00,49.3390007019043,13.402999877929688,45.22100067138672,10.133000373840332,4.423999786376953,0.0,17.88599967956543 -4164,2016-12-21 12:00:00,51.76900100708008,15.581000328063965,47.01699829101562,11.847999572753904,4.423999786376953,1.2369999885559082,17.666000366210938 -4165,2016-12-21 13:00:00,51.85200119018555,16.836999893188473,48.00899887084961,12.973999977111816,3.507999897003174,1.3109999895095823,16.567499160766598 -4166,2016-12-21 14:00:00,50.76300048828125,16.92099952697754,47.3390007019043,13.187999725341797,3.3480000495910645,1.22599995136261,16.34749984741211 -4167,2016-12-21 15:00:00,51.93600082397461,17.256000518798828,48.2239990234375,13.616999626159668,4.328999996185304,1.22599995136261,16.34749984741211 -4168,2016-12-21 16:00:00,51.85200119018555,16.92099952697754,47.9020004272461,13.269000053405762,4.243000030517578,0.0,16.34749984741211 -4169,2016-12-21 17:00:00,55.62200164794922,17.34000015258789,51.17200088500977,13.510000228881836,5.468999862670898,0.0,16.34749984741211 -4170,2016-12-21 18:00:00,56.3759994506836,17.843000411987305,51.11899948120117,13.321999549865724,5.352000236511231,1.3860000371932983,16.128000259399414 -4171,2016-12-21 19:00:00,49.67399978637695,13.234999656677244,44.06900024414063,9.409000396728516,5.352000236511231,1.2150000333786009,16.128000259399414 -4172,2016-12-21 20:00:00,54.11399841308594,17.089000701904293,48.89400100708008,12.866999626159668,5.267000198364258,1.2580000162124634,16.128000259399414 -4173,2016-12-21 21:00:00,53.44400024414063,16.586000442504886,49.40299987792969,12.894000053405762,5.138999938964844,0.0,15.907999992370604 -4174,2016-12-21 22:00:00,49.75799942016602,15.748000144958494,45.67699813842773,12.331000328063965,5.117000102996826,0.0,15.907999992370604 -4175,2016-12-21 23:00:00,45.4020004272461,14.576000213623049,41.14699935913086,11.366000175476074,5.10699987411499,1.3109999895095823,16.128000259399414 -4176,2016-12-22 00:00:00,44.3129997253418,14.156999588012695,39.02899932861328,10.937000274658203,5.181000232696533,1.2369999885559082,15.907999992370604 -4177,2016-12-22 01:00:00,41.46500015258789,12.815999984741213,37.95700073242188,10.508000373840332,3.5399999618530287,0.0,15.249500274658203 -4178,2016-12-22 02:00:00,40.125,12.5649995803833,35.8390007019043,9.864999771118164,4.872000217437744,1.2790000438690186,14.809499740600586 -4179,2016-12-22 03:00:00,43.97800064086914,14.072999954223633,39.512001037597656,10.989999771118164,3.986999988555908,1.2580000162124634,14.59000015258789 -4180,2016-12-22 04:00:00,43.391998291015625,13.98900032043457,39.16299819946289,11.232000350952148,3.954999923706055,0.0,14.369999885559082 -4181,2016-12-22 05:00:00,42.80500030517578,13.73799991607666,38.09099960327149,10.588000297546388,4.882999897003174,1.2690000534057615,14.369999885559082 -4182,2016-12-22 06:00:00,45.48600006103516,14.324000358581545,42.32600021362305,11.687000274658203,3.2090001106262207,0.0,13.930999755859377 -4183,2016-12-22 07:00:00,48.75299835205078,14.994000434875488,43.479000091552734,11.553000450134276,4.499000072479248,1.22599995136261,13.930999755859377 -4184,2016-12-22 08:00:00,42.303001403808594,10.805999755859377,38.0369987487793,7.532000064849853,3.390000104904175,1.2790000438690186,13.930999755859377 -4185,2016-12-22 09:00:00,45.4020004272461,12.5649995803833,41.92399978637695,9.838000297546388,3.390000104904175,0.0,14.369999885559082 -4186,2016-12-22 10:00:00,49.3390007019043,15.161999702453612,44.73899841308594,11.446000099182127,4.734000205993652,1.2150000333786009,14.8100004196167 -4187,2016-12-22 11:00:00,51.76900100708008,16.334999084472653,47.36600112915039,12.46500015258789,4.552000045776367,1.2369999885559082,16.128000259399414 -4188,2016-12-22 12:00:00,50.512001037597656,16.50200080871582,46.64199829101562,13.135000228881836,3.325999975204468,0.0,18.32550048828125 -4189,2016-12-22 13:00:00,49.00400161743164,17.34000015258789,44.55099868774414,13.482999801635742,4.59499979019165,1.406999945640564,20.08300018310547 -4190,2016-12-22 14:00:00,51.09799957275391,17.256000518798828,46.07899856567383,13.00100040435791,4.434999942779541,1.22599995136261,21.18149948120117 -4191,2016-12-22 15:00:00,50.26100158691406,16.586000442504886,45.999000549316406,12.84000015258789,3.1979999542236333,1.4290000200271606,21.621000289916992 -4192,2016-12-22 16:00:00,54.19800186157226,18.0939998626709,49.40299987792969,13.777999877929688,4.499000072479248,1.2369999885559082,21.18149948120117 -4193,2016-12-22 17:00:00,54.95199966430664,17.590999603271484,49.21500015258789,12.678999900817873,5.916999816894531,1.2369999885559082,20.08300018310547 -4194,2016-12-22 18:00:00,56.459999084472656,17.172000885009766,50.55599975585938,12.571999549865724,5.352000236511231,1.3009999990463257,18.98450088500977 -4195,2016-12-22 19:00:00,50.512001037597656,14.156999588012695,45.40900039672852,10.052000045776367,5.352000236511231,1.3860000371932983,18.545000076293945 -4196,2016-12-22 20:00:00,53.0250015258789,15.246000289916992,48.0359992980957,11.312000274658203,5.14900016784668,1.3009999990463257,17.666000366210938 -4197,2016-12-22 21:00:00,53.0250015258789,16.250999450683597,47.5,11.875,5.14900016784668,1.2580000162124634,17.006500244140625 -4198,2016-12-22 22:00:00,49.3390007019043,16.0,43.935001373291016,11.847999572753904,5.415999889373778,1.4609999656677246,16.34749984741211 -4199,2016-12-22 23:00:00,48.08300018310547,15.581000328063965,42.27299880981445,11.553000450134276,5.40500020980835,1.4609999656677246,15.468500137329102 -4200,2016-12-23 00:00:00,48.08300018310547,15.916000366210938,43.104000091552734,12.116000175476074,4.178999900817871,1.3220000267028809,14.59000015258789 -4201,2016-12-23 01:00:00,44.900001525878906,13.56999969482422,40.66400146484375,10.37399959564209,4.1469998359680185,1.3220000267028809,13.711000442504885 -4202,2016-12-23 02:00:00,45.65399932861328,14.659000396728516,40.28900146484375,11.12399959564209,4.894000053405762,1.2150000333786009,12.83199977874756 -4203,2016-12-23 03:00:00,42.55400085449219,14.072999954223633,38.680999755859375,10.69499969482422,4.339000225067139,1.2899999618530271,11.95300006866455 -4204,2016-12-23 04:00:00,41.2140007019043,12.480999946594238,35.91999816894531,9.381999969482422,4.423999786376953,1.4819999933242798,11.513500213623049 -4205,2016-12-23 05:00:00,43.05699920654297,13.654000282287598,38.38600158691406,10.480999946594238,5.352000236511231,1.2899999618530271,10.634499549865724 -4206,2016-12-23 06:00:00,46.49100112915039,14.241000175476074,41.28099822998047,10.69499969482422,5.330999851226807,1.2580000162124634,10.195500373840332 -4207,2016-12-23 07:00:00,48.41799926757813,15.413000106811523,44.229000091552734,11.741000175476074,5.298999786376953,1.2690000534057615,9.97599983215332 -4208,2016-12-23 08:00:00,45.31800079345703,12.899999618530272,41.11999893188477,9.56999969482422,4.552000045776367,1.3009999990463257,9.97599983215332 -4209,2016-12-23 09:00:00,50.93099975585938,16.0,46.10599899291992,11.66100025177002,4.13700008392334,1.3009999990463257,11.07450008392334 -4210,2016-12-23 10:00:00,50.93099975585938,15.83199977874756,45.73099899291992,11.28499984741211,5.415999889373778,1.3009999990463257,12.83199977874756 -4211,2016-12-23 11:00:00,53.77899932861328,17.674999237060547,49.08100128173828,12.973999977111816,5.2129998207092285,2.5480000972747803,15.907999992370604 -4212,2016-12-23 12:00:00,50.76300048828125,16.250999450683597,46.50799942016602,12.170000076293944,5.2129998207092285,2.5480000972747803,18.98450088500977 -4213,2016-12-23 13:00:00,51.18199920654297,17.089000701904293,46.428001403808594,12.78600025177002,5.127999782562256,1.246999979019165,20.522499084472656 -4214,2016-12-23 14:00:00,51.76900100708008,18.34499931335449,47.6609992980957,13.697999954223633,5.10699987411499,1.246999979019165,21.401500701904297 -4215,2016-12-23 15:00:00,52.43899917602539,17.926000595092773,47.20500183105469,13.348999977111816,4.232999801635741,1.246999979019165,21.621000289916992 -4216,2016-12-23 16:00:00,55.11899948120117,19.099000930786133,49.1349983215332,13.939000129699709,5.447999954223633,2.4730000495910645,21.083999633789062 -4217,2016-12-23 17:00:00,55.37099838256836,17.926000595092773,50.31399917602539,13.241999626159668,5.373000144958496,2.4730000495910645,20.131999969482425 -4218,2016-12-23 18:00:00,57.13000106811523,18.34499931335449,51.36000061035156,13.590999603271484,5.298999786376953,2.4730000495910645,18.813499450683597 -4219,2016-12-23 19:00:00,51.18199920654297,15.496999740600586,46.72200012207031,11.5,5.052999973297119,2.4730000495910645,17.714500427246094 -4220,2016-12-23 20:00:00,52.77399826049805,14.491999626159668,46.5880012512207,10.024999618530272,6.184000015258789,2.4730000495910645,16.835500717163086 -4221,2016-12-23 21:00:00,55.11899948120117,16.753999710083008,48.9739990234375,11.741000175476074,6.3439998626708975,2.4730000495910645,16.177000045776367 -4222,2016-12-23 22:00:00,54.53300094604492,17.926000595092773,49.72499847412109,13.616999626159668,4.734000205993652,1.246999979019165,15.737500190734863 -4223,2016-12-23 23:00:00,51.43399810791016,17.34000015258789,46.07899856567383,12.303999900817873,5.544000148773193,1.246999979019165,15.517499923706056 -4224,2016-12-24 00:00:00,48.83700180053711,16.166999816894528,44.28300094604492,12.196999549865724,4.455999851226807,1.2899999618530271,15.078499794006348 -4225,2016-12-24 01:00:00,48.584999084472656,15.916000366210938,42.91600036621094,11.767999649047852,5.703999996185303,1.2899999618530271,14.638500213623049 -4226,2016-12-24 02:00:00,41.96799850463867,13.319000244140623,38.35900115966797,10.213000297546388,4.178999900817871,1.2790000438690186,13.979499816894531 -4227,2016-12-24 03:00:00,44.56499862670898,14.407999992370604,39.72600173950195,11.071000099182127,4.573999881744385,1.2790000438690186,13.100500106811523 -4228,2016-12-24 04:00:00,42.72200012207031,14.156999588012695,38.30500030517578,10.69499969482422,4.573999881744385,1.2790000438690186,12.66100025177002 -4229,2016-12-24 05:00:00,45.98899841308594,15.413000106811523,40.74499893188477,11.579999923706056,4.573999881744385,1.3650000095367432,11.781999588012695 -4230,2016-12-24 06:00:00,47.58000183105469,15.664999961853027,43.66699981689453,12.437999725341797,4.0939998626708975,1.246999979019165,11.5625 -4231,2016-12-24 07:00:00,47.24499893188477,14.576000213623049,44.52399826049805,11.687000274658203,3.5720000267028813,0.0,11.343000411987305 -4232,2016-12-24 08:00:00,43.14099884033203,11.895000457763672,39.45800018310547,8.819000244140625,3.5720000267028813,1.3220000267028809,11.343000411987305 -4233,2016-12-24 09:00:00,46.90999984741211,13.319000244140623,43.39899826049805,10.052000045776367,3.5720000267028813,1.5349999666213991,11.343000411987305 -4234,2016-12-24 10:00:00,49.50699996948242,14.324000358581545,44.49800109863281,10.401000022888184,4.872000217437744,1.22599995136261,12.001999855041506 -4235,2016-12-24 11:00:00,55.45399856567383,17.926000595092773,50.02000045776367,13.43000030517578,5.127999782562256,1.3009999990463257,12.221500396728516 -4236,2016-12-24 12:00:00,50.59600067138672,15.413000106811523,45.14099884033203,11.178000450134276,5.127999782562256,1.3009999990463257,12.880999565124512 -4237,2016-12-24 13:00:00,49.0880012512207,14.576000213623049,44.65800094604492,10.829999923706056,5.127999782562256,1.406999945640564,13.760000228881836 -4238,2016-12-24 14:00:00,52.43899917602539,17.674999237060547,46.9900016784668,13.241999626159668,5.138999938964844,1.22599995136261,14.199000358581545 -4239,2016-12-24 15:00:00,46.90999984741211,13.402999877929688,43.42499923706055,10.96399974822998,5.138999938964844,1.246999979019165,14.638999938964846 -4240,2016-12-24 16:00:00,55.87300109863281,18.68000030517578,49.64400100708008,13.697999954223633,6.386000156402588,2.5160000324249268,14.638999938964846 -4241,2016-12-24 17:00:00,55.78900146484375,18.26099967956543,49.1619987487793,12.973999977111816,6.790999889373777,2.5160000324249268,14.418999671936035 -4242,2016-12-24 18:00:00,54.02999877929688,17.172000885009766,50.02000045776367,13.269000053405762,4.178999900817871,0.0,14.418999671936035 -4243,2016-12-24 19:00:00,53.19300079345703,16.836999893188473,47.01699829101562,11.795000076293944,5.373000144958496,2.6760001182556152,14.418999671936035 -4244,2016-12-24 20:00:00,54.3650016784668,16.50200080871582,48.30400085449219,11.472999572753904,5.138999938964844,2.6760001182556152,14.85849952697754 -4245,2016-12-24 21:00:00,53.61100006103516,16.250999450683597,49.40299987792969,12.170000076293944,4.2109999656677255,2.6760001182556152,14.85849952697754 -4246,2016-12-24 22:00:00,54.44900131225586,18.429000854492188,48.46500015258789,13.348999977111816,5.491000175476074,2.6760001182556152,14.85849952697754 -4247,2016-12-24 23:00:00,53.36000061035156,18.26099967956543,47.178001403808594,13.321999549865724,5.544000148773193,1.4609999656677246,14.85849952697754 -4248,2016-12-25 00:00:00,48.25,16.334999084472653,43.82699966430664,12.545000076293944,3.816999912261963,1.3539999723434448,15.29800033569336 -4249,2016-12-25 01:00:00,47.915000915527344,16.334999084472653,43.13000106811523,12.491000175476074,4.90399980545044,1.3539999723434448,15.29800033569336 -4250,2016-12-25 02:00:00,46.49100112915039,15.664999961853027,40.77199935913086,11.66100025177002,6.140999794006348,1.22599995136261,15.29800033569336 -4251,2016-12-25 03:00:00,48.08300018310547,16.836999893188473,42.05799865722656,12.652000427246096,6.130000114440918,1.22599995136261,15.29800033569336 -4252,2016-12-25 04:00:00,44.56499862670898,14.91100025177002,40.36899948120117,11.5,4.894000053405762,1.375,14.418999671936035 -4253,2016-12-25 05:00:00,46.99399948120117,16.334999084472653,41.57600021362305,12.437999725341797,4.958000183105469,1.3009999990463257,13.320500373840332 -4254,2016-12-25 06:00:00,47.83200073242188,15.496999740600586,43.18399810791016,12.170000076293944,4.414000034332275,1.246999979019165,13.320500373840332 -4255,2016-12-25 07:00:00,47.58000183105469,15.07800006866455,43.04999923706055,11.607000350952148,5.235000133514403,1.2150000333786009,12.880499839782717 -4256,2016-12-25 08:00:00,45.4020004272461,12.5649995803833,39.91400146484375,8.604999542236326,6.22599983215332,1.22599995136261,12.66100025177002 -4257,2016-12-25 09:00:00,49.0880012512207,14.91100025177002,44.36399841308594,11.28499984741211,4.9679999351501465,1.343000054359436,13.320500373840332 -4258,2016-12-25 10:00:00,50.00899887084961,16.0,46.26699829101562,12.571999549865724,4.9679999351501465,0.0,13.320500373840332 -4259,2016-12-25 11:00:00,53.77899932861328,16.334999084472653,48.0629997253418,11.928999900817873,5.043000221252441,1.6529999971389768,13.539999961853027 -4260,2016-12-25 12:00:00,51.34999847412109,14.91100025177002,46.803001403808594,11.204999923706056,4.264999866485597,0.0,14.418999671936035 -4261,2016-12-25 13:00:00,50.512001037597656,16.0,48.49200057983398,13.564000129699709,3.006999969482422,0.0,14.85849952697754 -4262,2016-12-25 14:00:00,50.68000030517578,16.166999816894528,45.56999969482422,12.03600025177002,4.563000202178955,1.22599995136261,14.85849952697754 -4263,2016-12-25 15:00:00,50.93099975585938,15.748000144958494,45.89099884033203,11.553000450134276,4.6589999198913565,1.2150000333786009,15.078499794006348 -4264,2016-12-25 16:00:00,50.59600067138672,15.07800006866455,46.2130012512207,11.526000022888184,4.499000072479248,1.2369999885559082,15.078499794006348 -4265,2016-12-25 17:00:00,54.78400039672852,17.004999160766598,48.7599983215332,12.357000350952148,5.938000202178955,1.2369999885559082,15.29800033569336 -4266,2016-12-25 18:00:00,52.77399826049805,15.581000328063965,47.44599914550781,11.204999923706056,5.938000202178955,1.2369999885559082,15.29800033569336 -4267,2016-12-25 19:00:00,49.59099960327149,13.904999732971191,44.49800109863281,9.890999794006348,6.056000232696532,1.2369999885559082,15.737500190734863 -4268,2016-12-25 20:00:00,56.04100036621094,17.256000518798828,49.29600143432617,11.954999923706056,6.557000160217285,1.246999979019165,15.737500190734863 -4269,2016-12-25 21:00:00,55.0359992980957,17.926000595092773,50.15399932861328,13.616999626159668,4.765999794006348,1.4179999828338623,15.737500190734863 -4270,2016-12-25 22:00:00,54.86800003051758,18.59600067138672,48.91999816894531,13.725000381469728,6.033999919891357,1.4179999828338623,16.177000045776367 -4271,2016-12-25 23:00:00,49.92599868774414,16.250999450683597,45.22100067138672,12.517999649047852,5.724999904632568,1.4709999561309814,16.177000045776367 -4272,2016-12-26 00:00:00,48.08300018310547,15.916000366210938,43.15700149536133,12.383999824523926,4.339000225067139,1.4709999561309814,15.95699977874756 -4273,2016-12-26 01:00:00,46.49100112915039,15.496999740600586,41.415000915527344,11.767999649047852,4.434999942779541,1.2369999885559082,15.95699977874756 -4274,2016-12-26 02:00:00,44.229000091552734,14.91100025177002,40.45000076293945,11.795000076293944,4.402999877929688,1.2369999885559082,15.737500190734863 -4275,2016-12-26 03:00:00,45.48600006103516,15.07800006866455,41.54899978637695,11.875,4.339000225067139,1.22599995136261,15.517999649047852 -4276,2016-12-26 04:00:00,46.32400131225586,15.581000328063965,41.30799865722656,11.902000427246096,4.264999866485597,1.4709999561309814,14.418999671936035 -4277,2016-12-26 05:00:00,46.2400016784668,15.748000144958494,41.17399978637695,12.062999725341797,4.605999946594238,1.4390000104904177,14.418999671936035 -4278,2016-12-26 06:00:00,48.08300018310547,15.664999961853027,43.935001373291016,12.46500015258789,3.2939999103546143,0.0,14.199000358581545 -4279,2016-12-26 07:00:00,43.2239990234375,13.402999877929688,39.27000045776367,10.427000045776367,4.541999816894531,0.0,14.199000358581545 -4280,2016-12-26 08:00:00,45.06700134277344,12.314000129699709,40.12799835205078,8.630999565124513,4.563000202178955,1.246999979019165,14.418999671936035 -4281,2016-12-26 09:00:00,53.69499969482422,18.0939998626709,48.84000015258789,14.04599952697754,4.083000183105469,1.3009999990463257,14.638500213623049 -4282,2016-12-26 10:00:00,51.76900100708008,15.83199977874756,46.90999984741211,11.875,4.083000183105469,1.2369999885559082,15.29800033569336 -4283,2016-12-26 11:00:00,54.86800003051758,17.089000701904293,50.04600143432617,12.946999549865724,5.276999950408936,1.22599995136261,15.29800033569336 -4284,2016-12-26 12:00:00,54.86800003051758,17.423999786376953,50.34099960327149,13.564000129699709,3.82699990272522,1.2369999885559082,15.29800033569336 -4285,2016-12-26 13:00:00,54.61700057983398,18.34499931335449,50.71599960327149,14.314000129699709,3.9660000801086426,0.0,15.29800033569336 -4286,2016-12-26 14:00:00,52.10400009155274,17.759000778198242,49.05500030517578,14.447999954223633,3.8059999942779537,0.0,14.85849952697754 -4287,2016-12-26 15:00:00,54.02999877929688,18.34499931335449,50.02000045776367,14.368000030517578,3.88100004196167,0.0,14.85849952697754 -4288,2016-12-26 16:00:00,56.20800018310547,18.847999572753903,51.60100173950195,14.6899995803833,4.958000183105469,1.2899999618530271,14.19950008392334 -4289,2016-12-26 17:00:00,55.37099838256836,17.926000595092773,51.60100173950195,14.395000457763672,3.677999973297119,0.0,13.31999969482422 -4290,2016-12-26 18:00:00,57.96699905395508,18.59600067138672,52.72700119018555,14.20699977874756,4.894000053405762,1.4500000476837158,13.100500106811523 -4291,2016-12-26 19:00:00,49.17200088500977,13.73799991607666,44.20299911499024,10.07900047302246,5.043000221252441,1.343000054359436,13.100500106811523 -4292,2016-12-26 20:00:00,49.59099960327149,13.904999732971191,44.01499938964844,9.972000122070312,5.043000221252441,1.2369999885559082,13.100500106811523 -4293,2016-12-26 21:00:00,50.09299850463867,14.994000434875488,45.78400039672852,11.33899974822998,3.763000011444092,1.246999979019165,13.100500106811523 -4294,2016-12-26 22:00:00,45.65399932861328,13.56999969482422,40.18199920654297,9.94499969482422,5.394999980926514,1.2690000534057615,12.66100025177002 -4295,2016-12-26 23:00:00,41.88399887084961,12.899999618530272,37.5009994506836,10.024999618530272,4.072999954223634,0.0,12.66100025177002 -4296,2016-12-27 00:00:00,48.16699981689453,16.083000183105472,42.78200149536133,12.357000350952148,4.285999774932861,1.503000020980835,12.66100025177002 -4297,2016-12-27 01:00:00,46.40700149536133,15.496999740600586,42.21900177001953,12.142999649047852,4.361000061035156,0.0,12.221500396728516 -4298,2016-12-27 02:00:00,46.40700149536133,14.994000434875488,41.38800048828125,11.526000022888184,5.586999893188477,1.3009999990463257,12.001999855041506 -4299,2016-12-27 03:00:00,43.2239990234375,13.487000465393065,37.233001708984375,10.159000396728516,5.320000171661377,1.2899999618530271,11.342499732971191 -4300,2016-12-27 04:00:00,43.05699920654297,14.91100025177002,37.93000030517578,11.633999824523926,5.330999851226807,1.22599995136261,10.903499603271484 -4301,2016-12-27 05:00:00,45.90499877929688,15.161999702453612,41.92399978637695,12.062999725341797,4.264999866485597,0.0,10.46399974822998 -4302,2016-12-27 06:00:00,48.33399963378906,15.246000289916992,43.45199966430664,11.741000175476074,4.243000030517578,1.2369999885559082,10.46399974822998 -4303,2016-12-27 07:00:00,47.915000915527344,14.241000175476074,44.60499954223633,11.418999671936035,4.243000030517578,0.0,10.244000434875488 -4304,2016-12-27 08:00:00,45.23500061035156,11.225000381469728,40.63800048828125,7.960999965667725,4.243000030517578,0.0,10.244000434875488 -4305,2016-12-27 09:00:00,52.94100189208984,17.507999420166016,50.60900115966797,14.234000205993652,2.803999900817871,0.0,10.903499603271484 -4306,2016-12-27 10:00:00,48.83700180053711,12.899999618530272,46.2400016784668,10.133000373840332,2.803999900817871,0.0,12.441499710083008 -4307,2016-12-27 11:00:00,53.77899932861328,15.413000106811523,50.34099960327149,11.821000099182127,2.815000057220459,0.0,13.979499816894531 -4308,2016-12-27 12:00:00,53.44400024414063,15.748000144958494,49.99300003051758,12.571999549865724,2.7290000915527344,0.0,15.07800006866455 -4309,2016-12-27 13:00:00,53.52799987792969,17.004999160766598,50.39500045776367,13.590999603271484,2.7290000915527344,0.0,16.17650032043457 -4310,2016-12-27 14:00:00,52.68999862670898,17.843000411987305,50.04600143432617,14.20699977874756,2.7290000915527344,0.0,16.836000442504886 -4311,2016-12-27 15:00:00,54.19800186157226,17.843000411987305,50.68999862670898,13.911999702453612,2.7720000743865967,1.22599995136261,17.274999618530273 -4312,2016-12-27 16:00:00,57.46500015258789,19.099000930786133,52.37799835205078,13.777999877929688,3.986999988555908,1.2369999885559082,17.055500030517578 -4313,2016-12-27 17:00:00,59.30799865722656,19.350000381469727,53.39699935913086,13.911999702453612,5.203000068664551,1.2369999885559082,15.29800033569336 -4314,2016-12-27 18:00:00,62.74200057983398,20.27199935913086,56.45299911499024,14.340999603271484,6.375999927520753,2.45199990272522,13.539999961853027 -4315,2016-12-27 19:00:00,57.13000106811523,16.50200080871582,52.27099990844727,11.875,4.872000217437744,2.45199990272522,12.66100025177002 -4316,2016-12-27 20:00:00,60.39699935913086,17.926000595092773,54.30799865722656,12.303999900817873,6.001999855041504,2.45199990272522,11.343000411987305 -4317,2016-12-27 21:00:00,60.98300170898438,19.01499938964844,55.56800079345703,13.80500030517578,5.5229997634887695,2.45199990272522,10.683500289916992 -4318,2016-12-27 22:00:00,55.53799819946289,17.256000518798828,50.44800186157226,12.437999725341797,5.5229997634887695,2.45199990272522,10.244500160217283 -4319,2016-12-27 23:00:00,50.00899887084961,15.83199977874756,46.5620002746582,12.196999549865724,4.1579999923706055,2.45199990272522,9.585000038146973 -4320,2016-12-28 00:00:00,48.41799926757813,15.246000289916992,44.73899841308594,11.66100025177002,4.1579999923706055,1.246999979019165,9.145500183105469 -4321,2016-12-28 01:00:00,46.40700149536133,14.659000396728516,42.40700149536133,11.312000274658203,4.1579999923706055,1.246999979019165,8.706000328063965 -4322,2016-12-28 02:00:00,48.25,15.07800006866455,43.04999923706055,11.258000373840332,4.190000057220459,1.4290000200271606,7.827000141143799 -4323,2016-12-28 03:00:00,47.915000915527344,15.916000366210938,44.36399841308594,12.491000175476074,4.190000057220459,0.0,6.947999954223633 -4324,2016-12-28 04:00:00,49.75799942016602,16.334999084472653,44.47100067138672,12.116000175476074,5.447999954223633,1.2369999885559082,6.508999824523926 -4325,2016-12-28 05:00:00,48.66899871826172,15.916000366210938,44.17599868774414,11.847999572753904,3.92300009727478,1.4179999828338623,6.069499969482423 -4326,2016-12-28 06:00:00,49.3390007019043,15.83199977874756,45.19400024414063,11.767999649047852,3.9769999980926514,2.5910000801086426,5.630000114440918 -4327,2016-12-28 07:00:00,43.47600173950195,12.5649995803833,38.46599960327149,8.979999542236328,5.223999977111816,1.343000054359436,5.4099998474121085 -4328,2016-12-28 08:00:00,47.74800109863281,12.314000129699709,42.78200149536133,8.390000343322754,5.500999927520752,1.3329999446868896,5.190499782562256 -4329,2016-12-28 09:00:00,54.78400039672852,18.0939998626709,50.95800018310547,14.072999954223633,3.0280001163482666,1.246999979019165,7.387499809265138 -4330,2016-12-28 10:00:00,52.52299880981445,15.413000106811523,48.86700057983398,11.633999824523926,3.0280001163482666,1.2369999885559082,8.486000061035156 -4331,2016-12-28 11:00:00,53.61100006103516,16.334999084472653,50.79700088500977,12.946999549865724,3.0280001163482666,0.0,9.585000038146973 -4332,2016-12-28 12:00:00,47.24499893188477,13.821999549865724,43.72000122070313,10.480999946594238,3.0280001163482666,1.22599995136261,12.880499839782717 -4333,2016-12-28 13:00:00,45.4020004272461,12.39799976348877,42.21900177001953,9.140999794006348,3.0280001163482666,1.2150000333786009,15.517499923706056 -4334,2016-12-28 14:00:00,52.77399826049805,16.0,49.5099983215332,12.196999549865724,3.0280001163482666,1.3329999446868896,16.836000442504886 -4335,2016-12-28 15:00:00,53.61100006103516,16.50200080871582,50.34099960327149,12.732999801635742,3.0280001163482666,0.0,16.836000442504886 -4336,2016-12-28 16:00:00,55.53799819946289,17.172000885009766,52.75400161743164,13.321999549865724,3.0280001163482666,0.0,16.836000442504886 -4337,2016-12-28 17:00:00,58.05099868774414,17.590999603271484,53.47700119018555,12.706000328063965,4.264999866485597,1.22599995136261,15.07800006866455 -4338,2016-12-28 18:00:00,60.14500045776367,17.759000778198242,55.51499938964844,12.894000053405762,4.264999866485597,1.22599995136261,13.539999961853027 -4339,2016-12-28 19:00:00,55.78900146484375,15.413000106811523,50.77000045776367,10.855999946594238,4.264999866485597,1.22599995136261,12.66100025177002 -4340,2016-12-28 20:00:00,56.54299926757813,17.674999237060547,51.41299819946289,12.46500015258789,5.500999927520752,2.740000009536743,11.781999588012695 -4341,2016-12-28 21:00:00,60.56399917602539,19.183000564575195,55.00500106811523,13.67099952697754,5.671999931335449,1.493000030517578,10.903499603271484 -4342,2016-12-28 22:00:00,58.05099868774414,18.51300048828125,52.137001037597656,13.269000053405762,5.671999931335449,1.493000030517578,10.244500160217283 -4343,2016-12-28 23:00:00,52.94100189208984,16.586000442504886,47.39300155639648,12.03600025177002,5.629000186920166,1.2150000333786009,9.804499626159668 -4344,2016-12-29 00:00:00,50.09299850463867,15.83199977874756,46.07899856567383,12.116000175476074,3.1770000457763667,1.2790000438690186,9.145500183105469 -4345,2016-12-29 01:00:00,49.25600051879883,15.664999961853027,44.685001373291016,11.687000274658203,4.455999851226807,1.2899999618530271,8.486000061035156 -4346,2016-12-29 02:00:00,48.83700180053711,15.916000366210938,43.77399826049805,11.66100025177002,4.510000228881836,1.22599995136261,7.827000141143799 -4347,2016-12-29 03:00:00,49.00400161743164,16.419000625610348,43.854000091552734,12.331000328063965,4.510000228881836,1.22599995136261,7.387499809265138 -4348,2016-12-29 04:00:00,49.00400161743164,16.250999450683597,43.88100051879883,12.062999725341797,4.510000228881836,1.2369999885559082,6.728499889373777 -4349,2016-12-29 05:00:00,47.74800109863281,15.496999740600586,44.63199996948242,12.142999649047852,4.510000228881836,0.0,6.069499969482423 -4350,2016-12-29 06:00:00,50.512001037597656,16.250999450683597,45.16799926757813,12.08899974822998,4.776000022888184,1.3109999895095823,5.630000114440918 -4351,2016-12-29 07:00:00,46.49100112915039,13.402999877929688,41.38800048828125,9.623000144958496,4.755000114440918,1.2150000333786009,5.630000114440918 -4352,2016-12-29 08:00:00,47.66400146484375,13.402999877929688,43.58599853515625,10.052000045776367,4.755000114440918,1.3109999895095823,5.630000114440918 -4353,2016-12-29 09:00:00,54.28200149536133,17.759000778198242,51.30599975585938,13.911999702453612,3.5399999618530287,0.0,7.168000221252441 -4354,2016-12-29 10:00:00,51.26599884033203,14.491999626159668,47.60699844360352,10.803000450134276,3.5399999618530287,1.2150000333786009,10.46399974822998 -4355,2016-12-29 11:00:00,56.20800018310547,17.590999603271484,52.88800048828125,13.348999977111816,3.5399999618530287,1.22599995136261,14.19950008392334 -4356,2016-12-29 12:00:00,53.77899932861328,16.250999450683597,50.68999862670898,12.598999977111816,2.313999891281128,0.0,17.055500030517578 -4357,2016-12-29 13:00:00,53.86299896240234,17.172000885009766,50.74300003051758,13.402999877929688,2.313999891281128,1.2690000534057615,18.15399932861328 -4358,2016-12-29 14:00:00,53.77899932861328,17.843000411987305,50.87699890136719,13.965999603271484,3.5399999618530287,1.2580000162124634,18.15449905395508 -4359,2016-12-29 15:00:00,53.86299896240234,17.256000518798828,50.26100158691406,13.37600040435791,2.3239998817443848,0.0,17.934499740600586 -4360,2016-12-29 16:00:00,55.70600128173828,17.926000595092773,51.57400131225586,13.616999626159668,3.549999952316284,1.3329999446868896,16.836000442504886 -4361,2016-12-29 17:00:00,57.79999923706055,17.507999420166016,52.02999877929688,12.331000328063965,6.045000076293945,1.3329999446868896,15.517999649047852 -4362,2016-12-29 18:00:00,61.73699951171875,19.51799964904785,55.56800079345703,13.482999801635742,6.045000076293945,2.931999921798706,14.418999671936035 -4363,2016-12-29 19:00:00,57.2140007019043,16.50200080871582,52.00299835205078,11.741000175476074,4.797999858856201,1.684000015258789,13.100500106811523 -4364,2016-12-29 20:00:00,58.303001403808594,17.759000778198242,53.74599838256836,13.081000328063965,4.797999858856201,1.2150000333786009,11.781999588012695 -4365,2016-12-29 21:00:00,59.64300155639648,18.763999938964844,54.41600036621094,13.697999954223633,4.797999858856201,1.2150000333786009,10.903499603271484 -4366,2016-12-29 22:00:00,57.96699905395508,18.59600067138672,53.39699935913086,14.019000053405762,4.818999767303467,1.5570000410079956,10.46399974822998 -4367,2016-12-29 23:00:00,53.52799987792969,16.419000625610348,49.9119987487793,12.760000228881836,3.6040000915527344,0.0,10.024499893188477 -4368,2016-12-30 00:00:00,42.387001037597656,12.815999984741213,39.69900131225586,11.607000350952148,3.6040000915527344,0.0,9.804499626159668 -4369,2016-12-30 01:00:00,49.42300033569336,15.664999961853027,45.38199996948242,11.767999649047852,3.6040000915527344,1.3539999723434448,9.585000038146973 -4370,2016-12-30 02:00:00,46.071998596191406,13.487000465393065,42.35300064086914,10.239999771118164,3.6040000915527344,1.3329999446868896,9.145500183105469 -4371,2016-12-30 03:00:00,45.48600006103516,13.654000282287598,42.51399993896485,10.53499984741211,3.6040000915527344,1.22599995136261,8.486499786376951 -4372,2016-12-30 04:00:00,46.49100112915039,14.659000396728516,43.90800094604492,11.633999824523926,2.2390000820159908,0.0,8.046500205993652 -4373,2016-12-30 05:00:00,46.071998596191406,14.659000396728516,42.78200149536133,11.579999923706056,2.2390000820159908,0.0,7.827000141143799 -4374,2016-12-30 06:00:00,48.66899871826172,15.07800006866455,45.38199996948242,12.142999649047852,2.2390000820159908,0.0,7.387499809265138 -4375,2016-12-30 07:00:00,46.99399948120117,12.732999801635742,44.65800094604492,10.239999771118164,3.4649999141693115,0.0,6.947999954223633 -4376,2016-12-30 08:00:00,47.66400146484375,13.654000282287598,44.65800094604492,10.480999946594238,3.4649999141693115,0.0,6.947999954223633 -4377,2016-12-30 09:00:00,53.36000061035156,17.590999603271484,49.93899917602539,13.616999626159668,3.4649999141693115,1.2150000333786009,8.486000061035156 -4378,2016-12-30 10:00:00,51.68500137329102,16.166999816894528,48.49200057983398,12.357000350952148,3.4649999141693115,0.0,10.46399974822998 -4379,2016-12-30 11:00:00,48.83700180053711,13.402999877929688,45.62300109863281,10.07900047302246,3.4649999141693115,0.0,11.343000411987305 -4380,2016-12-30 12:00:00,52.10400009155274,14.743000030517578,49.1349983215332,11.312000274658203,3.4649999141693115,0.0,13.320500373840332 -4381,2016-12-30 13:00:00,50.76300048828125,15.246000289916992,47.79499816894531,11.847999572753904,3.4649999141693115,0.0,15.517999649047852 -4382,2016-12-30 14:00:00,45.23500061035156,13.234999656677244,42.43399810791016,9.864999771118164,3.4649999141693115,1.22599995136261,18.15399932861328 -4383,2016-12-30 15:00:00,45.4020004272461,14.491999626159668,41.62900161743164,10.803000450134276,3.4649999141693115,1.22599995136261,18.5939998626709 -4384,2016-12-30 16:00:00,46.90999984741211,14.91100025177002,42.88899993896485,11.12399959564209,3.4440000057220463,1.22599995136261,18.5939998626709 -4385,2016-12-30 17:00:00,52.35499954223633,14.994000434875488,46.6150016784668,10.159000396728516,4.840000152587892,2.463000059127808,17.495000839233402 -4386,2016-12-30 18:00:00,59.30799865722656,17.926000595092773,53.53099822998047,12.678999900817873,5.736000061035156,2.463000059127808,15.29800033569336 -4387,2016-12-30 19:00:00,56.125,16.083000183105472,49.99300003051758,11.071000099182127,5.756999969482423,2.463000059127808,13.539999961853027 -4388,2016-12-30 20:00:00,59.97800064086914,17.759000778198242,53.71900177001953,12.357000350952148,5.756999969482423,2.463000059127808,12.66100025177002 -4389,2016-12-30 21:00:00,61.1510009765625,19.601999282836918,54.95199966430664,14.072999954223633,5.777999877929688,1.246999979019165,12.001500129699709 -4390,2016-12-30 22:00:00,58.1349983215332,18.010000228881836,52.80699920654297,13.241999626159668,5.651000022888184,1.246999979019165,11.343000411987305 -4391,2016-12-30 23:00:00,54.11399841308594,16.334999084472653,49.85900115966797,12.25,4.339000225067139,1.2150000333786009,10.903499603271484 -4392,2016-12-31 00:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4393,2016-12-31 01:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4394,2016-12-31 02:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4395,2016-12-31 03:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4396,2016-12-31 04:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4397,2016-12-31 05:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4398,2016-12-31 06:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4399,2016-12-31 07:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4400,2016-12-31 08:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4401,2016-12-31 09:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4402,2016-12-31 10:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4403,2016-12-31 11:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4404,2016-12-31 12:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4405,2016-12-31 13:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4406,2016-12-31 14:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4407,2016-12-31 15:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4408,2016-12-31 16:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4409,2016-12-31 17:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4410,2016-12-31 18:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4411,2016-12-31 19:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4412,2016-12-31 20:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4413,2016-12-31 21:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4414,2016-12-31 22:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4415,2016-12-31 23:00:00,52.02000045776367,17.423999786376953,47.5270004272461,13.081000328063965,4.381999969482422,1.2150000333786009,10.683500289916992 -4416,2017-01-01 00:00:00,48.41799926757813,15.413000106811523,45.06000137329102,11.71399974822998,3.5179998874664307,1.22599995136261,12.001500129699709 -4417,2017-01-01 01:00:00,49.67399978637695,16.250999450683597,45.8650016784668,12.142999649047852,3.5179998874664307,1.2150000333786009,11.343000411987305 -4418,2017-01-01 02:00:00,42.80500030517578,13.73799991607666,39.887001037597656,11.017000198364258,3.5179998874664307,0.0,10.903499603271484 -4419,2017-01-01 03:00:00,43.55899810791016,13.904999732971191,41.33399963378906,11.366000175476074,3.5179998874664307,0.0,10.024499893188477 -4420,2017-01-01 04:00:00,43.391998291015625,13.73799991607666,41.06600189208984,11.204999923706056,2.302999973297119,0.0,9.585000038146973 -4421,2017-01-01 05:00:00,45.23500061035156,14.324000358581545,43.02299880981445,11.741000175476074,2.302999973297119,0.0,9.145500183105469 -4422,2017-01-01 06:00:00,46.82600021362305,15.496999740600586,44.06900024414063,12.303999900817873,3.5399999618530287,0.0,8.706000328063965 -4423,2017-01-01 07:00:00,47.41299819946289,14.743000030517578,45.16799926757813,11.902000427246096,3.5399999618530287,0.0,8.706000328063965 -4424,2017-01-01 08:00:00,46.2400016784668,13.067999839782717,41.36100006103516,9.409000396728516,4.808000087738037,1.2690000534057615,8.266500473022461 -4425,2017-01-01 09:00:00,47.58000183105469,13.487000465393065,44.65800094604492,10.427000045776367,3.486000061035156,0.0,9.804499626159668 -4426,2017-01-01 10:00:00,47.1609992980957,13.402999877929688,43.50600051879883,10.133000373840332,3.486000061035156,1.2150000333786009,12.880999565124512 -4427,2017-01-01 11:00:00,51.93600082397461,15.916000366210938,48.4379997253418,12.25,3.6679999828338623,1.22599995136261,16.616500854492188 -4428,2017-01-01 12:00:00,48.08300018310547,14.743000030517578,45.94499969482422,11.687000274658203,2.0789999961853027,0.0,19.912500381469727 -4429,2017-01-01 13:00:00,49.3390007019043,16.0,45.56999969482422,11.902000427246096,3.2939999103546143,1.2150000333786009,21.88999938964844 -4430,2017-01-01 14:00:00,45.31800079345703,14.241000175476074,42.05799865722656,10.96399974822998,3.2939999103546143,1.2790000438690186,24.52599906921387 -4431,2017-01-01 15:00:00,47.74800109863281,15.329999923706056,43.66699981689453,11.741000175476074,3.2939999103546143,1.2790000438690186,25.18549919128418 -4432,2017-01-01 16:00:00,51.18199920654297,16.0,46.9640007019043,11.954999923706056,4.519999980926514,1.2150000333786009,24.74600028991699 -4433,2017-01-01 17:00:00,52.10400009155274,15.161999702453612,47.3390007019043,11.043999671936035,5.703999996185303,1.3220000267028809,23.20800018310547 -4434,2017-01-01 18:00:00,53.86299896240234,16.670000076293945,49.21500015258789,12.62600040435791,4.285999774932861,1.3220000267028809,21.88949966430664 -4435,2017-01-01 19:00:00,52.02000045776367,14.491999626159668,47.04399871826172,10.213000297546388,4.381999969482422,1.2369999885559082,21.230499267578125 -4436,2017-01-01 20:00:00,50.68000030517578,13.654000282287598,46.83000183105469,10.052000045776367,4.381999969482422,1.2369999885559082,19.912500381469727 -4437,2017-01-01 21:00:00,53.19300079345703,14.576000213623049,48.6520004272461,10.37399959564209,5.607999801635742,1.375,19.03350067138672 -4438,2017-01-01 22:00:00,54.28200149536133,17.089000701904293,48.86700057983398,12.545000076293944,4.392000198364259,1.2369999885559082,17.714500427246094 -4439,2017-01-01 23:00:00,50.09299850463867,15.581000328063965,46.13299942016602,11.767999649047852,4.392000198364259,1.2369999885559082,17.27549934387207 -4440,2017-01-02 00:00:00,47.49599838256836,15.246000289916992,44.09500122070313,11.847999572753904,3.0810000896453857,1.2369999885559082,17.055500030517578 -4441,2017-01-02 01:00:00,44.983001708984375,14.156999588012695,41.87099838256836,11.151000022888184,3.0810000896453857,0.0,17.055500030517578 -4442,2017-01-02 02:00:00,45.4020004272461,14.407999992370604,41.95100021362305,11.043999671936035,3.0810000896453857,1.3650000095367432,16.835500717163086 -4443,2017-01-02 03:00:00,44.3129997253418,14.072999954223633,41.57600021362305,11.043999671936035,3.0810000896453857,0.0,16.835500717163086 -4444,2017-01-02 04:00:00,44.73199844360352,14.324000358581545,41.11999893188477,11.043999671936035,3.0810000896453857,1.2150000333786009,16.615999221801758 -4445,2017-01-02 05:00:00,45.1510009765625,14.659000396728516,41.76300048828125,11.472999572753904,3.0810000896453857,1.2150000333786009,16.396499633789062 -4446,2017-01-02 06:00:00,45.1510009765625,14.576000213623049,41.44200134277344,11.526000022888184,3.0810000896453857,0.0,16.396499633789062 -4447,2017-01-02 07:00:00,46.99399948120117,14.994000434875488,43.02299880981445,11.579999923706056,3.0810000896453857,1.2690000534057615,16.396499633789062 -4448,2017-01-02 08:00:00,42.80500030517578,11.895000457763672,39.77999877929688,9.140999794006348,3.88100004196167,0.0,16.396499633789062 -4449,2017-01-02 09:00:00,47.74800109863281,14.072999954223633,45.2750015258789,11.392000198364258,2.611999988555908,0.0,16.615999221801758 -4450,2017-01-02 10:00:00,49.25600051879883,15.329999923706056,46.83000183105469,12.517999649047852,2.611999988555908,0.0,17.714500427246094 -4451,2017-01-02 11:00:00,51.60100173950195,16.586000442504886,48.6259994506836,13.29599952697754,2.611999988555908,0.0,19.03350067138672 -4452,2017-01-02 12:00:00,48.75299835205078,14.072999954223633,45.78400039672852,10.96399974822998,2.611999988555908,0.0,20.79100036621093 -4453,2017-01-02 13:00:00,49.3390007019043,15.664999961853027,46.5880012512207,12.383999824523926,2.611999988555908,0.0,22.108999252319336 -4454,2017-01-02 14:00:00,49.42300033569336,16.083000183105472,46.5620002746582,12.706000328063965,2.611999988555908,0.0,23.20800018310547 -4455,2017-01-02 15:00:00,51.01499938964844,17.256000518798828,47.6609992980957,13.482999801635742,2.611999988555908,1.2369999885559082,24.08699989318848 -4456,2017-01-02 16:00:00,52.77399826049805,17.089000701904293,48.30400085449219,12.84000015258789,3.848999977111816,1.22599995136261,24.526500701904297 -4457,2017-01-02 17:00:00,56.04100036621094,17.926000595092773,49.3489990234375,12.517999649047852,6.546000003814697,2.5269999504089355,23.20800018310547 -4458,2017-01-02 18:00:00,56.04100036621094,18.010000228881836,50.44800186157226,12.84000015258789,6.705999851226808,2.5269999504089355,21.450000762939453 -4459,2017-01-02 19:00:00,54.19800186157226,16.0,47.125,10.07900047302246,6.578000068664551,2.5269999504089355,20.131999969482425 -4460,2017-01-02 20:00:00,56.79499816894531,17.423999786376953,50.20700073242188,11.741000175476074,6.02400016784668,2.5269999504089355,19.03350067138672 -4461,2017-01-02 21:00:00,57.96699905395508,18.429000854492188,51.19900131225586,12.84000015258789,6.311999797821045,2.5269999504089355,18.374000549316406 -4462,2017-01-02 22:00:00,53.61100006103516,17.843000411987305,47.178001403808594,12.491000175476074,6.109000205993652,2.5269999504089355,17.714500427246094 -4463,2017-01-02 23:00:00,47.999000549316406,15.748000144958494,43.13000106811523,11.902000427246096,4.872000217437744,2.5269999504089355,17.27549934387207 -4464,2017-01-03 00:00:00,45.56999969482422,14.576000213623049,40.58399963378906,10.855999946594238,4.872000217437744,2.5269999504089355,16.396499633789062 -4465,2017-01-03 01:00:00,43.89400100708008,13.904999732971191,39.00199890136719,10.267000198364258,4.861999988555908,1.2369999885559082,15.517499923706056 -4466,2017-01-03 02:00:00,42.21900177001953,13.56999969482422,36.9119987487793,9.838000297546388,4.861999988555908,1.2369999885559082,14.85849952697754 -4467,2017-01-03 03:00:00,43.47600173950195,13.73799991607666,38.30500030517578,10.185999870300291,4.670000076293945,1.246999979019165,13.979499816894531 -4468,2017-01-03 04:00:00,43.89400100708008,13.904999732971191,39.64599990844727,10.401000022888184,4.552000045776367,1.2369999885559082,13.320500373840332 -4469,2017-01-03 05:00:00,44.73199844360352,14.576000213623049,40.12799835205078,11.178000450134276,3.26200008392334,1.4609999656677246,12.66100025177002 -4470,2017-01-03 06:00:00,44.64799880981445,14.156999588012695,40.90599822998047,10.90999984741211,3.26200008392334,1.2580000162124634,12.221500396728516 -4471,2017-01-03 07:00:00,46.071998596191406,14.576000213623049,41.97800064086914,11.043999671936035,3.2730000019073486,1.2150000333786009,11.781999588012695 -4472,2017-01-03 08:00:00,42.21900177001953,10.638999938964844,38.22499847412109,7.479000091552732,4.519999980926514,1.2150000333786009,11.781999588012695 -4473,2017-01-03 09:00:00,42.387001037597656,11.727999687194824,39.40399932861328,9.11400032043457,3.2939999103546143,0.0,12.66100025177002 -4474,2017-01-03 10:00:00,43.14099884033203,12.899999618530272,40.52999877929688,10.07900047302246,3.2939999103546143,0.0,14.85849952697754 -4475,2017-01-03 11:00:00,48.50199890136719,13.904999732971191,44.63199996948242,10.347000122070312,3.2939999103546143,1.3539999723434448,18.374000549316406 -4476,2017-01-03 12:00:00,45.31800079345703,11.392000198364258,42.11199951171875,8.310000419616701,3.2939999103546143,1.2790000438690186,21.230499267578125 -4477,2017-01-03 13:00:00,48.41799926757813,15.413000106811523,44.84600067138672,11.821000099182127,3.2939999103546143,1.2150000333786009,23.42799949645996 -4478,2017-01-03 14:00:00,50.84700012207031,16.92099952697754,47.125,13.135000228881836,3.2939999103546143,1.2150000333786009,24.74600028991699 -4479,2017-01-03 15:00:00,50.428001403808594,17.34000015258789,47.1510009765625,13.75100040435791,3.2939999103546143,0.0,24.526500701904297 -4480,2017-01-03 16:00:00,53.86299896240234,18.26099967956543,48.09000015258789,12.894000053405762,5.756999969482423,2.750999927520752,23.867000579833984 -4481,2017-01-03 17:00:00,54.86800003051758,18.26099967956543,50.20700073242188,13.67099952697754,4.519999980926514,2.750999927520752,22.76849937438965 -4482,2017-01-03 18:00:00,57.46500015258789,18.51300048828125,51.70800018310547,13.027999877929688,5.853000164031982,2.750999927520752,21.88949966430664 -4483,2017-01-03 19:00:00,52.52299880981445,16.586000442504886,47.1510009765625,11.847999572753904,5.821000099182129,2.750999927520752,21.01099967956543 -4484,2017-01-03 20:00:00,53.61100006103516,17.089000701904293,47.7140007019043,12.277000427246096,6.322000026702881,2.750999927520752,20.35149955749512 -4485,2017-01-03 21:00:00,55.78900146484375,18.26099967956543,49.93899917602539,12.973999977111816,6.3540000915527335,2.803999900817871,19.912500381469727 -4486,2017-01-03 22:00:00,50.428001403808594,17.256000518798828,44.57799911499024,12.116000175476074,5.703999996185303,2.803999900817871,19.912500381469727 -4487,2017-01-03 23:00:00,50.26100158691406,17.004999160766598,45.43600082397461,12.545000076293944,5.415999889373778,2.803999900817871,19.912500381469727 -4488,2017-01-04 00:00:00,45.4020004272461,14.659000396728516,40.36899948120117,10.69499969482422,5.138999938964844,2.803999900817871,19.47249984741211 -4489,2017-01-04 01:00:00,45.06700134277344,14.743000030517578,39.18999862670898,10.401000022888184,4.59499979019165,2.803999900817871,19.47249984741211 -4490,2017-01-04 02:00:00,47.1609992980957,16.586000442504886,41.62900161743164,11.767999649047852,5.874000072479247,2.803999900817871,19.03350067138672 -4491,2017-01-04 03:00:00,46.65900039672852,15.07800006866455,41.81700134277344,11.151000022888184,4.499000072479248,1.5460000038146973,18.5935001373291 -4492,2017-01-04 04:00:00,47.41299819946289,17.004999160766598,41.95100021362305,12.25,5.5970001220703125,1.5460000038146973,18.15449905395508 -4493,2017-01-04 05:00:00,45.98899841308594,15.496999740600586,40.42300033569336,11.33899974822998,5.565000057220459,1.5460000038146973,18.15449905395508 -4494,2017-01-04 06:00:00,47.24499893188477,15.07800006866455,41.84400177001953,10.989999771118164,5.447999954223633,1.3329999446868896,18.15449905395508 -4495,2017-01-04 07:00:00,40.79499816894531,12.480999946594238,37.823001861572266,9.864999771118164,3.5399999618530287,0.0,18.15449905395508 -4496,2017-01-04 08:00:00,44.56499862670898,13.73799991607666,40.02099990844727,10.37399959564209,4.765999794006348,1.2690000534057615,18.15449905395508 -4497,2017-01-04 09:00:00,49.3390007019043,15.83199977874756,46.85599899291992,12.732999801635742,3.496999979019165,0.0,18.374000549316406 -4498,2017-01-04 10:00:00,45.90499877929688,12.984000205993652,43.15700149536133,10.024999618530272,3.496999979019165,0.0,19.03350067138672 -4499,2017-01-04 11:00:00,51.68500137329102,16.334999084472653,48.7599983215332,12.732999801635742,3.496999979019165,0.0,19.47249984741211 -4500,2017-01-04 12:00:00,50.428001403808594,15.246000289916992,47.5,11.847999572753904,3.496999979019165,0.0,19.912500381469727 -4501,2017-01-04 13:00:00,51.51699829101562,16.92099952697754,48.84000015258789,13.510000228881836,3.496999979019165,0.0,20.131999969482425 -4502,2017-01-04 14:00:00,48.33399963378906,16.0,45.38199996948242,12.331000328063965,3.496999979019165,1.2150000333786009,20.131999969482425 -4503,2017-01-04 15:00:00,49.3390007019043,16.419000625610348,46.50799942016602,12.678999900817873,3.496999979019165,1.2150000333786009,19.03350067138672 -4504,2017-01-04 16:00:00,51.09799957275391,16.166999816894528,47.84799957275391,12.598999977111816,3.496999979019165,0.0,18.5935001373291 -4505,2017-01-04 17:00:00,54.53300094604492,17.926000595092773,49.40299987792969,12.920000076293944,4.765999794006348,2.5269999504089355,18.5935001373291 -4506,2017-01-04 18:00:00,56.79499816894531,18.429000854492188,51.19900131225586,13.402999877929688,4.765999794006348,2.5269999504089355,18.5935001373291 -4507,2017-01-04 19:00:00,48.91999816894531,13.904999732971191,43.42499923706055,9.515999794006348,4.765999794006348,2.5269999504089355,18.15449905395508 -4508,2017-01-04 20:00:00,50.512001037597656,14.994000434875488,46.5880012512207,11.258000373840332,3.5179998874664307,2.5269999504089355,18.15449905395508 -4509,2017-01-04 21:00:00,55.20299911499024,18.010000228881836,49.9119987487793,13.027999877929688,5.138999938964844,2.5269999504089355,17.934499740600586 -4510,2017-01-04 22:00:00,53.0250015258789,17.674999237060547,48.7599983215332,13.456000328063965,4.434999942779541,1.3969999551773071,17.495000839233402 -4511,2017-01-04 23:00:00,46.2400016784668,14.994000434875488,41.33399963378906,10.74899959564209,5.703999996185303,1.3969999551773071,17.495000839233402 -4512,2017-01-05 00:00:00,48.75299835205078,16.083000183105472,43.63999938964844,12.196999549865724,5.500999927520752,1.3969999551773071,17.055500030517578 -4513,2017-01-05 01:00:00,45.56999969482422,14.324000358581545,42.13899993896485,11.418999671936035,2.888999938964844,0.0,16.615999221801758 -4514,2017-01-05 02:00:00,45.65399932861328,15.329999923706056,41.30799865722656,11.767999649047852,4.114999771118163,1.5779999494552612,16.177000045776367 -4515,2017-01-05 03:00:00,43.30799865722656,13.402999877929688,39.53799819946289,10.401000022888184,2.750999927520752,0.0,15.95699977874756 -4516,2017-01-05 04:00:00,46.15599822998047,14.994000434875488,41.57600021362305,11.607000350952148,4.072999954223634,1.375,15.737500190734863 -4517,2017-01-05 05:00:00,46.2400016784668,15.329999923706056,42.00500106811523,12.008999824523926,4.072999954223634,0.0,15.517999649047852 -4518,2017-01-05 06:00:00,45.31800079345703,13.73799991607666,40.36899948120117,10.213000297546388,5.298999786376953,1.246999979019165,15.517999649047852 -4519,2017-01-05 07:00:00,46.2400016784668,14.743000030517578,41.46799850463867,11.418999671936035,5.244999885559082,1.22599995136261,15.737500190734863 -4520,2017-01-05 08:00:00,44.56499862670898,13.067999839782717,40.71799850463867,10.29300022125244,5.244999885559082,1.22599995136261,15.737500190734863 -4521,2017-01-05 09:00:00,50.34500122070313,17.34000015258789,47.5270004272461,14.019000053405762,2.505000114440918,0.0,15.29800033569336 -4522,2017-01-05 10:00:00,48.41799926757813,14.072999954223633,45.32899856567383,11.043999671936035,2.505000114440918,0.0,15.078499794006348 -4523,2017-01-05 11:00:00,53.19300079345703,16.92099952697754,49.64400100708008,13.29599952697754,2.505000114440918,0.0,14.85849952697754 -4524,2017-01-05 12:00:00,51.85200119018555,15.916000366210938,49.1349983215332,12.46500015258789,2.505000114440918,0.0,14.85849952697754 -4525,2017-01-05 13:00:00,51.51699829101562,16.50200080871582,49.48300170898438,13.564000129699709,2.505000114440918,0.0,15.29800033569336 -4526,2017-01-05 14:00:00,53.36000061035156,17.423999786376953,50.07300186157226,14.04599952697754,2.505000114440918,0.0,15.29800033569336 -4527,2017-01-05 15:00:00,50.512001037597656,16.334999084472653,47.20500183105469,12.920000076293944,2.505000114440918,0.0,15.29800033569336 -4528,2017-01-05 16:00:00,56.79499816894531,19.51799964904785,51.97600173950195,14.984000205993652,5.085000038146973,1.2150000333786009,15.29800033569336 -4529,2017-01-05 17:00:00,54.86800003051758,17.34000015258789,48.84000015258789,12.652000427246096,5.171000003814697,1.2150000333786009,15.29800033569336 -4530,2017-01-05 18:00:00,55.45399856567383,17.34000015258789,50.07300186157226,12.84000015258789,6.322000026702881,1.3109999895095823,15.29800033569336 -4531,2017-01-05 19:00:00,52.68999862670898,14.91100025177002,46.6150016784668,10.53499984741211,5.064000129699707,1.3109999895095823,15.078499794006348 -4532,2017-01-05 20:00:00,53.0250015258789,16.083000183105472,48.0359992980957,11.847999572753904,5.011000156402588,1.3650000095367432,15.517499923706056 -4533,2017-01-05 21:00:00,53.946998596191406,17.34000015258789,48.571998596191406,12.920000076293944,6.109000205993652,1.3650000095367432,15.29800033569336 -4534,2017-01-05 22:00:00,52.52299880981445,17.256000518798828,47.63399887084961,13.081000328063965,5.011000156402588,1.2790000438690186,14.85849952697754 -4535,2017-01-05 23:00:00,46.90999984741211,15.581000328063965,43.07699966430664,11.954999923706056,5.011000156402588,1.2150000333786009,14.85849952697754 -4536,2017-01-06 00:00:00,47.915000915527344,15.748000144958494,42.91600036621094,11.928999900817873,4.4780001640319815,1.3969999551773071,14.638500213623049 -4537,2017-01-06 01:00:00,42.21900177001953,12.39799976348877,38.54700088500977,9.0600004196167,3.101999998092652,1.2580000162124634,14.638500213623049 -4538,2017-01-06 02:00:00,42.303001403808594,12.64900016784668,38.22499847412109,9.623000144958496,4.434999942779541,1.3220000267028809,14.19950008392334 -4539,2017-01-06 03:00:00,43.391998291015625,13.904999732971191,39.40399932861328,10.96399974822998,4.264999866485597,1.22599995136261,13.759499549865724 -4540,2017-01-06 04:00:00,42.1349983215332,14.576000213623049,37.823001861572266,11.392000198364258,4.264999866485597,1.22599995136261,13.320500373840332 -4541,2017-01-06 05:00:00,46.57500076293945,16.166999816894528,41.73699951171875,12.170000076293944,4.254000186920166,1.22599995136261,13.100500106811523 -4542,2017-01-06 06:00:00,47.915000915527344,15.748000144958494,42.91600036621094,12.116000175476074,4.254000186920166,1.3220000267028809,12.880499839782717 -4543,2017-01-06 07:00:00,40.71099853515625,10.13599967956543,36.5359992980957,7.1570000648498535,4.190000057220459,1.2150000333786009,12.66100025177002 -4544,2017-01-06 08:00:00,44.0620002746582,10.55500030517578,38.65399932861328,7.050000190734862,5.427000045776367,1.4609999656677246,12.66100025177002 -4545,2017-01-06 09:00:00,48.08300018310547,13.152000427246096,44.79199981689453,9.729999542236328,3.7100000381469727,1.2150000333786009,12.880499839782717 -4546,2017-01-06 10:00:00,47.74800109863281,12.815999984741213,44.92599868774414,9.623000144958496,3.7100000381469727,0.0,13.759499549865724 -4547,2017-01-06 11:00:00,50.84700012207031,14.82699966430664,47.1510009765625,11.12399959564209,3.7100000381469727,1.2150000333786009,13.759499549865724 -4548,2017-01-06 12:00:00,51.60100173950195,15.329999923706056,48.4379997253418,11.821000099182127,3.7100000381469727,0.0,14.638500213623049 -4549,2017-01-06 13:00:00,51.01499938964844,15.83199977874756,48.0359992980957,12.357000350952148,2.4089999198913574,0.0,14.638500213623049 -4550,2017-01-06 14:00:00,51.68500137329102,16.836999893188473,48.5989990234375,13.161999702453612,3.635999917984009,1.2150000333786009,14.85849952697754 -4551,2017-01-06 15:00:00,52.02000045776367,16.670000076293945,47.95500183105469,12.866999626159668,3.635999917984009,0.0,14.85849952697754 -4552,2017-01-06 16:00:00,49.0880012512207,14.82699966430664,44.14899826049805,11.071000099182127,4.882999897003174,1.5460000038146973,15.078499794006348 -4553,2017-01-06 17:00:00,54.53300094604492,16.836999893188473,49.9119987487793,12.491000175476074,5.171000003814697,1.22599995136261,15.078499794006348 -4554,2017-01-06 18:00:00,51.76900100708008,16.083000183105472,46.64199829101562,12.03600025177002,5.171000003814697,1.22599995136261,15.29800033569336 -4555,2017-01-06 19:00:00,50.512001037597656,15.07800006866455,45.51599884033203,10.829999923706056,6.269000053405763,1.22599995136261,15.517499923706056 -4556,2017-01-06 20:00:00,50.76300048828125,15.581000328063965,46.64199829101562,11.5,4.083000183105469,1.2790000438690186,15.517499923706056 -4557,2017-01-06 21:00:00,53.946998596191406,17.089000701904293,48.86700057983398,12.545000076293944,5.298999786376953,1.22599995136261,15.737500190734863 -4558,2017-01-06 22:00:00,52.10400009155274,16.753999710083008,46.85599899291992,12.357000350952148,5.288000106811523,1.22599995136261,15.957500457763672 -4559,2017-01-06 23:00:00,49.92599868774414,16.250999450683597,44.41699981689453,11.633999824523926,5.756999969482423,1.22599995136261,16.177000045776367 -4560,2017-01-07 00:00:00,44.48099899291992,14.576000213623049,39.08300018310547,10.722000122070312,4.510000228881836,2.440999984741211,16.177000045776367 -4561,2017-01-07 01:00:00,43.89400100708008,13.654000282287598,40.34299850463867,10.29300022125244,4.510000228881836,2.440999984741211,16.177000045776367 -4562,2017-01-07 02:00:00,44.229000091552734,13.98900032043457,39.64599990844727,10.803000450134276,4.6479997634887695,1.5570000410079956,15.95699977874756 -4563,2017-01-07 03:00:00,42.88899993896485,13.654000282287598,40.20899963378906,10.883000373840332,2.984999895095825,0.0,15.517999649047852 -4564,2017-01-07 04:00:00,41.04600143432617,12.984000205993652,36.24100112915039,9.354999542236328,4.2109999656677255,1.3860000371932983,15.517999649047852 -4565,2017-01-07 05:00:00,43.81100082397461,14.324000358581545,40.23500061035156,10.937000274658203,4.264999866485597,1.3860000371932983,15.737500190734863 -4566,2017-01-07 06:00:00,46.071998596191406,14.994000434875488,41.22700119018555,10.989999771118164,5.085000038146973,1.3860000371932983,15.957500457763672 -4567,2017-01-07 07:00:00,47.24499893188477,14.407999992370604,41.65599822998047,10.45400047302246,5.064000129699707,1.621000051498413,16.177000045776367 -4568,2017-01-07 08:00:00,43.97800064086914,11.644000053405762,38.84199905395508,7.934999942779541,5.085000038146973,1.621000051498413,15.957500457763672 -4569,2017-01-07 09:00:00,45.65399932861328,13.319000244140623,42.32600021362305,9.784000396728516,3.8059999942779537,1.22599995136261,15.29800033569336 -4570,2017-01-07 10:00:00,50.34500122070313,15.581000328063965,46.9640007019043,11.821000099182127,3.838000059127808,1.3329999446868896,15.07800006866455 -4571,2017-01-07 11:00:00,50.00899887084961,13.73799991607666,47.553001403808594,10.642000198364258,2.622999906539917,0.0,14.85849952697754 -4572,2017-01-07 12:00:00,50.17699813842773,13.56999969482422,47.23199844360352,10.480999946594238,2.622999906539917,0.0,14.85849952697754 -4573,2017-01-07 13:00:00,49.3390007019043,14.156999588012695,47.1510009765625,11.446000099182127,2.622999906539917,0.0,14.418999671936035 -4574,2017-01-07 14:00:00,49.42300033569336,14.072999954223633,46.9900016784668,11.204999923706056,2.622999906539917,0.0,14.418999671936035 -4575,2017-01-07 15:00:00,49.67399978637695,14.324000358581545,46.34700012207031,11.12399959564209,2.622999906539917,0.0,14.418999671936035 -4576,2017-01-07 16:00:00,51.26599884033203,15.581000328063965,46.69599914550781,11.418999671936035,3.838000059127808,1.22599995136261,14.85849952697754 -4577,2017-01-07 17:00:00,54.70000076293945,15.83199977874756,49.85900115966797,11.579999923706056,4.90399980545044,1.3860000371932983,14.85849952697754 -4578,2017-01-07 18:00:00,56.3759994506836,17.256000518798828,50.55599975585938,12.222999572753904,6.0980000495910645,2.5480000972747803,14.85849952697754 -4579,2017-01-07 19:00:00,53.77899932861328,16.92099952697754,48.09000015258789,11.928999900817873,4.808000087738037,2.5480000972747803,14.85849952697754 -4580,2017-01-07 20:00:00,52.77399826049805,15.329999923706056,46.749000549316406,10.668999671936035,5.809999942779541,1.22599995136261,14.85849952697754 -4581,2017-01-07 21:00:00,50.512001037597656,15.161999702453612,46.5880012512207,11.633999824523926,4.584000110626222,0.0,14.85849952697754 -4582,2017-01-07 22:00:00,52.1870002746582,16.419000625610348,48.33100128173828,12.84000015258789,4.563000202178955,0.0,14.418999671936035 -4583,2017-01-07 23:00:00,48.41799926757813,14.743000030517578,45.6500015258789,11.579999923706056,3.3480000495910645,0.0,14.19950008392334 -4584,2017-01-08 00:00:00,47.32899856567383,14.407999992370604,43.34500122070313,11.418999671936035,5.10699987411499,0.0,13.979499816894531 -4585,2017-01-08 01:00:00,45.82099914550781,13.821999549865724,42.27299880981445,11.017000198364258,3.6040000915527344,0.0,13.979499816894531 -4586,2017-01-08 02:00:00,45.23500061035156,13.821999549865724,40.77199935913086,10.401000022888184,4.349999904632568,1.375,13.539999961853027 -4587,2017-01-08 03:00:00,41.46500015258789,12.5649995803833,37.84999847412109,9.838000297546388,3.9660000801086426,0.0,13.31999969482422 -4588,2017-01-08 04:00:00,44.229000091552734,13.402999877929688,39.80699920654297,10.401000022888184,3.9660000801086426,1.246999979019165,13.100500106811523 -4589,2017-01-08 05:00:00,41.46500015258789,12.480999946594238,38.680999755859375,10.31999969482422,2.664999961853028,0.0,12.880999565124512 -4590,2017-01-08 06:00:00,46.40700149536133,14.491999626159668,41.20000076293945,11.017000198364258,4.264999866485597,1.3329999446868896,12.880999565124512 -4591,2017-01-08 07:00:00,42.97299957275391,13.402999877929688,37.87699890136719,9.972000122070312,4.264999866485597,1.2580000162124634,12.880999565124512 -4592,2017-01-08 08:00:00,42.21900177001953,9.717000007629396,38.17100143432617,7.1570000648498535,4.711999893188477,0.0,12.66100025177002 -4593,2017-01-08 09:00:00,45.56999969482422,12.732999801635742,42.78200149536133,10.052000045776367,3.486000061035156,0.0,12.66100025177002 -4594,2017-01-08 10:00:00,51.34999847412109,16.586000442504886,48.46500015258789,13.187999725341797,3.486000061035156,0.0,12.440999984741213 -4595,2017-01-08 11:00:00,54.28200149536133,16.419000625610348,50.79700088500977,13.135000228881836,3.486000061035156,0.0,12.221500396728516 -4596,2017-01-08 12:00:00,49.3390007019043,13.487000465393065,46.26699829101562,10.480999946594238,3.486000061035156,0.0,12.66100025177002 -4597,2017-01-08 13:00:00,49.25600051879883,14.324000358581545,46.64199829101562,11.526000022888184,3.486000061035156,0.0,12.880999565124512 -4598,2017-01-08 14:00:00,51.51699829101562,16.166999816894528,47.98199844360352,12.491000175476074,3.486000061035156,1.2150000333786009,13.100500106811523 -4599,2017-01-08 15:00:00,50.59600067138672,15.161999702453612,47.28499984741211,11.71399974822998,3.486000061035156,0.0,13.31999969482422 -4600,2017-01-08 16:00:00,52.10400009155274,16.250999450683597,48.196998596191406,12.196999549865724,3.486000061035156,1.2150000333786009,13.31999969482422 -4601,2017-01-08 17:00:00,54.02999877929688,16.334999084472653,49.96599960327149,12.03600025177002,3.486000061035156,1.375,13.31999969482422 -4602,2017-01-08 18:00:00,56.54299926757813,16.419000625610348,53.07500076293945,12.03600025177002,3.486000061035156,1.2369999885559082,13.31999969482422 -4603,2017-01-08 19:00:00,52.10400009155274,15.496999740600586,47.20500183105469,11.232000350952148,4.711999893188477,1.2369999885559082,13.760000228881836 -4604,2017-01-08 20:00:00,55.53799819946289,17.256000518798828,51.68099975585938,12.812999725341797,3.763000011444092,1.375,13.760000228881836 -4605,2017-01-08 21:00:00,55.45399856567383,16.836999893188473,51.387001037597656,12.571999549865724,4.9790000915527335,1.375,13.760000228881836 -4606,2017-01-08 22:00:00,53.52799987792969,16.836999893188473,48.73300170898438,12.331000328063965,4.563000202178955,1.3220000267028809,13.760000228881836 -4607,2017-01-08 23:00:00,50.428001403808594,16.166999816894528,46.9900016784668,12.545000076293944,3.3480000495910645,1.3220000267028809,13.979499816894531 -4608,2017-01-09 00:00:00,50.59600067138672,16.419000625610348,45.8380012512207,12.383999824523926,4.6479997634887695,1.22599995136261,13.760000228881836 -4609,2017-01-09 01:00:00,47.58000183105469,14.743000030517578,42.86199951171875,10.883000373840332,4.307000160217285,1.2580000162124634,13.539999961853027 -4610,2017-01-09 02:00:00,46.65900039672852,15.329999923706056,41.76300048828125,10.96399974822998,5.576000213623047,2.750999927520752,13.539999961853027 -4611,2017-01-09 03:00:00,43.14099884033203,13.152000427246096,38.52000045776367,9.48900032043457,4.019000053405762,1.5349999666213991,13.31999969482422 -4612,2017-01-09 04:00:00,46.15599822998047,14.91100025177002,40.90599822998047,10.642000198364258,5.244999885559082,1.5349999666213991,13.100500106811523 -4613,2017-01-09 05:00:00,44.56499862670898,13.904999732971191,39.96699905395508,10.024999618530272,3.954999923706055,1.5349999666213991,12.880999565124512 -4614,2017-01-09 06:00:00,44.900001525878906,14.241000175476074,42.19200134277344,11.28499984741211,2.632999897003174,0.0,12.66100025177002 -4615,2017-01-09 07:00:00,46.15599822998047,14.156999588012695,42.40700149536133,10.239999771118164,3.891000032424927,1.246999979019165,12.221500396728516 -4616,2017-01-09 08:00:00,47.32899856567383,14.576000213623049,42.78200149536133,10.560999870300291,3.891000032424927,1.3009999990463257,11.781999588012695 -4617,2017-01-09 09:00:00,52.35499954223633,17.089000701904293,48.91999816894531,13.053999900817873,3.891000032424927,1.3009999990463257,12.221500396728516 -4618,2017-01-09 10:00:00,49.0880012512207,14.324000358581545,46.2400016784668,10.829999923706056,3.891000032424927,1.3009999990463257,13.100500106811523 -4619,2017-01-09 11:00:00,54.86800003051758,16.836999893188473,50.90399932861328,12.331000328063965,3.891000032424927,1.3009999990463257,13.979499816894531 -4620,2017-01-09 12:00:00,52.94100189208984,14.659000396728516,48.84000015258789,10.427000045776367,3.891000032424927,1.3009999990463257,15.07800006866455 -4621,2017-01-09 13:00:00,52.94100189208984,17.843000411987305,48.73300170898438,13.161999702453612,3.891000032424927,2.5369999408721924,15.737500190734863 -4622,2017-01-09 14:00:00,52.52299880981445,17.843000411987305,48.73300170898438,13.348999977111816,3.891000032424927,2.5369999408721924,16.836000442504886 -4623,2017-01-09 15:00:00,52.94100189208984,18.429000854492188,49.32300186157226,13.911999702453612,3.891000032424927,2.5369999408721924,16.836000442504886 -4624,2017-01-09 16:00:00,50.26100158691406,16.670000076293945,44.47100067138672,11.633999824523926,5.341000080108644,2.5369999408721924,16.836000442504886 -4625,2017-01-09 17:00:00,54.11399841308594,18.0939998626709,47.3390007019043,12.491000175476074,6.4710001945495605,2.5369999408721924,15.737500190734863 -4626,2017-01-09 18:00:00,56.62699890136719,17.926000595092773,50.09999847412109,12.571999549865724,6.4710001945495605,2.5369999408721924,14.85849952697754 -4627,2017-01-09 19:00:00,59.05599975585938,18.68000030517578,51.89599990844727,12.760000228881836,6.449999809265138,2.5369999408721924,13.979499816894531 -4628,2017-01-09 20:00:00,60.39699935913086,19.51799964904785,53.98699951171875,13.859000205993652,6.598999977111816,2.5369999408721924,13.979499816894531 -4629,2017-01-09 21:00:00,59.13999938964844,19.937000274658203,52.08399963378906,14.019000053405762,6.598999977111816,2.5369999408721924,13.539999961853027 -4630,2017-01-09 22:00:00,54.78400039672852,17.843000411987305,48.2239990234375,12.437999725341797,6.566999912261963,2.5369999408721924,13.539999961853027 -4631,2017-01-09 23:00:00,54.02999877929688,18.0939998626709,48.0359992980957,12.946999549865724,6.119999885559082,2.5369999408721924,13.539999961853027 -4632,2017-01-10 00:00:00,48.25,16.586000442504886,42.83599853515625,12.062999725341797,4.690999984741211,2.5369999408721924,13.539999961853027 -4633,2017-01-10 01:00:00,48.584999084472656,16.0,44.14899826049805,12.03600025177002,4.711999893188477,1.3220000267028809,13.320500373840332 -4634,2017-01-10 02:00:00,47.32899856567383,15.83199977874756,42.459999084472656,11.553000450134276,4.840000152587892,2.611999988555908,12.880499839782717 -4635,2017-01-10 03:00:00,46.82600021362305,16.166999816894528,42.59400177001953,12.008999824523926,4.455999851226807,2.611999988555908,12.66100025177002 -4636,2017-01-10 04:00:00,48.41799926757813,16.836999893188473,42.99599838256836,12.357000350952148,4.541999816894531,2.611999988555908,12.221500396728516 -4637,2017-01-10 05:00:00,46.90999984741211,16.083000183105472,41.92399978637695,11.982000350952148,5.756999969482423,2.611999988555908,12.221500396728516 -4638,2017-01-10 06:00:00,41.88399887084961,13.067999839782717,36.321998596191406,9.32800006866455,5.554999828338623,2.611999988555908,12.221500396728516 -4639,2017-01-10 07:00:00,50.26100158691406,16.0,44.97999954223633,11.847999572753904,4.232999801635741,1.2690000534057615,12.221500396728516 -4640,2017-01-10 08:00:00,42.88899993896485,11.895000457763672,37.20600128173828,8.282999992370605,4.926000118255615,1.406999945640564,12.221500396728516 -4641,2017-01-10 09:00:00,52.94100189208984,17.674999237060547,49.08100128173828,13.644000053405762,3.561000108718872,1.22599995136261,12.221500396728516 -4642,2017-01-10 10:00:00,49.50699996948242,13.487000465393065,45.43600082397461,9.381999969482422,3.561000108718872,1.22599995136261,12.880499839782717 -4643,2017-01-10 11:00:00,51.09799957275391,14.407999992370604,48.38399887084961,10.776000022888184,3.561000108718872,1.22599995136261,13.539999961853027 -4644,2017-01-10 12:00:00,52.27099990844727,15.496999740600586,49.10800170898438,11.446000099182127,3.561000108718872,1.22599995136261,14.638500213623049 -4645,2017-01-10 13:00:00,55.2869987487793,18.34499931335449,51.52099990844727,13.885000228881836,3.561000108718872,1.22599995136261,15.737500190734863 -4646,2017-01-10 14:00:00,53.77899932861328,18.0939998626709,49.85900115966797,13.456000328063965,3.561000108718872,1.22599995136261,15.95699977874756 -4647,2017-01-10 15:00:00,50.34500122070313,16.083000183105472,47.553001403808594,12.598999977111816,3.561000108718872,1.22599995136261,15.95699977874756 -4648,2017-01-10 16:00:00,57.38100051879883,19.51799964904785,52.56600189208984,14.26099967956543,4.882999897003174,2.505000114440918,15.737500190734863 -4649,2017-01-10 17:00:00,57.29700088500977,18.34499931335449,51.17200088500977,13.053999900817873,6.151999950408936,2.505000114440918,15.517499923706056 -4650,2017-01-10 18:00:00,56.62699890136719,17.843000411987305,52.16400146484375,13.00100040435791,4.48799991607666,2.505000114440918,15.517499923706056 -4651,2017-01-10 19:00:00,55.11899948120117,17.172000885009766,49.72499847412109,12.25,5.703999996185303,2.505000114440918,15.517499923706056 -4652,2017-01-10 20:00:00,57.54899978637695,18.34499931335449,51.06499862670898,12.866999626159668,5.703999996185303,2.505000114440918,15.517499923706056 -4653,2017-01-10 21:00:00,59.30799865722656,19.350000381469727,53.290000915527344,13.616999626159668,5.703999996185303,2.505000114440918,15.078499794006348 -4654,2017-01-10 22:00:00,54.02999877929688,17.759000778198242,47.95500183105469,12.62600040435791,6.130000114440918,2.505000114440918,14.638500213623049 -4655,2017-01-10 23:00:00,52.43899917602539,17.34000015258789,47.63399887084961,12.41100025177002,4.882999897003174,2.505000114440918,14.638500213623049 -4656,2017-01-11 00:00:00,46.49100112915039,15.329999923706056,41.87099838256836,11.28499984741211,4.872000217437744,2.505000114440918,13.979499816894531 -4657,2017-01-11 01:00:00,48.16699981689453,16.0,42.78200149536133,11.579999923706056,4.254000186920166,1.2369999885559082,13.979499816894531 -4658,2017-01-11 02:00:00,47.66400146484375,15.581000328063965,41.73699951171875,10.855999946594238,5.576000213623047,2.483999967575073,13.539999961853027 -4659,2017-01-11 03:00:00,47.32899856567383,16.334999084472653,41.60300064086914,11.847999572753904,5.383999824523926,2.4730000495910645,13.320500373840332 -4660,2017-01-11 04:00:00,47.32899856567383,16.250999450683597,41.84400177001953,11.607000350952148,5.383999824523926,2.4730000495910645,13.100500106811523 -4661,2017-01-11 05:00:00,44.983001708984375,14.743000030517578,39.48500061035156,10.614999771118164,5.671999931335449,2.4730000495910645,12.880499839782717 -4662,2017-01-11 06:00:00,43.55899810791016,13.73799991607666,40.47700119018555,10.53499984741211,3.625,2.4730000495910645,12.880499839782717 -4663,2017-01-11 07:00:00,48.75299835205078,15.83199977874756,44.47100067138672,11.821000099182127,3.625,2.4730000495910645,12.66100025177002 -4664,2017-01-11 08:00:00,45.90499877929688,12.899999618530272,41.30799865722656,9.034000396728516,4.882999897003174,1.2580000162124634,12.66100025177002 -4665,2017-01-11 09:00:00,51.01499938964844,16.836999893188473,48.2770004272461,13.269000053405762,3.6570000648498535,1.2369999885559082,13.100500106811523 -4666,2017-01-11 10:00:00,49.00400161743164,14.91100025177002,45.19400024414063,10.829999923706056,3.6570000648498535,1.524999976158142,13.979499816894531 -4667,2017-01-11 11:00:00,50.512001037597656,16.419000625610348,45.97200012207031,11.795000076293944,3.6570000648498535,1.524999976158142,15.737500190734863 -4668,2017-01-11 12:00:00,51.26599884033203,16.166999816894528,48.11600112915039,12.116000175476074,3.6570000648498535,1.524999976158142,18.374000549316406 -4669,2017-01-11 13:00:00,51.43399810791016,17.34000015258789,48.6259994506836,13.027999877929688,3.6570000648498535,1.524999976158142,19.6924991607666 -4670,2017-01-11 14:00:00,51.51699829101562,17.004999160766598,48.73300170898438,13.269000053405762,3.6570000648498535,1.524999976158142,20.35149955749512 -4671,2017-01-11 15:00:00,51.93600082397461,17.34000015258789,49.1619987487793,13.29599952697754,3.6570000648498535,1.2690000534057615,19.03300094604492 -4672,2017-01-11 16:00:00,53.44400024414063,17.590999603271484,49.8849983215332,13.027999877929688,3.6570000648498535,1.2690000534057615,17.934499740600586 -4673,2017-01-11 17:00:00,55.95700073242188,18.847999572753903,51.762001037597656,13.590999603271484,4.872000217437744,1.2690000534057615,17.495000839233402 -4674,2017-01-11 18:00:00,56.62699890136719,18.51300048828125,51.49399948120117,13.081000328063965,4.926000118255615,1.2690000534057615,16.835500717163086 -4675,2017-01-11 19:00:00,51.60100173950195,15.664999961853027,47.553001403808594,10.829999923706056,3.4649999141693115,2.559000015258789,16.396499633789062 -4676,2017-01-11 20:00:00,55.0359992980957,18.010000228881836,49.3489990234375,12.491000175476074,5.938000202178955,2.559000015258789,16.177000045776367 -4677,2017-01-11 21:00:00,56.87799835205078,18.51300048828125,52.35200119018555,13.321999549865724,4.702000141143799,2.559000015258789,15.957500457763672 -4678,2017-01-11 22:00:00,53.77899932861328,18.59600067138672,48.84000015258789,13.644000053405762,4.702000141143799,2.559000015258789,15.737500190734863 -4679,2017-01-11 23:00:00,51.26599884033203,16.836999893188473,46.9370002746582,12.277000427246096,4.702000141143799,2.559000015258789,15.737500190734863 -4680,2017-01-12 00:00:00,48.41799926757813,15.329999923706056,44.73899841308594,11.687000274658203,3.486000061035156,2.559000015258789,15.29800033569336 -4681,2017-01-12 01:00:00,47.24499893188477,16.166999816894528,43.29100036621094,12.116000175476074,4.711999893188477,1.3220000267028809,15.078499794006348 -4682,2017-01-12 02:00:00,47.49599838256836,15.581000328063965,42.80899810791016,11.392000198364258,3.5290000438690186,1.3220000267028809,14.638500213623049 -4683,2017-01-12 03:00:00,46.82600021362305,15.496999740600586,42.75500106811523,11.472999572753904,3.5290000438690186,1.3220000267028809,14.418999671936035 -4684,2017-01-12 04:00:00,45.73699951171875,15.83199977874756,41.62900161743164,12.062999725341797,3.5290000438690186,1.3220000267028809,14.19950008392334 -4685,2017-01-12 05:00:00,46.2400016784668,15.581000328063965,42.084999084472656,11.71399974822998,3.5290000438690186,1.3220000267028809,13.979499816894531 -4686,2017-01-12 06:00:00,47.74800109863281,15.329999923706056,43.77399826049805,11.767999649047852,3.5399999618530287,1.3220000267028809,13.759499549865724 -4687,2017-01-12 07:00:00,48.83700180053711,15.748000144958494,43.96099853515625,11.579999923706056,4.776000022888184,1.3220000267028809,13.759499549865724 -4688,2017-01-12 08:00:00,46.99399948120117,14.82699966430664,42.40700149536133,10.96399974822998,4.776000022888184,1.3220000267028809,13.539999961853027 -4689,2017-01-12 09:00:00,47.1609992980957,15.413000106811523,46.5880012512207,13.29599952697754,3.549999952316284,0.0,13.539999961853027 -4690,2017-01-12 10:00:00,49.00400161743164,14.407999992370604,45.6500015258789,11.017000198364258,3.549999952316284,1.2150000333786009,13.759499549865724 -4691,2017-01-12 11:00:00,49.84199905395508,14.156999588012695,45.94499969482422,10.560999870300291,3.549999952316284,1.3109999895095823,14.638500213623049 -4692,2017-01-12 12:00:00,51.09799957275391,14.91100025177002,48.46500015258789,11.553000450134276,3.549999952316284,0.0,15.29800033569336 -4693,2017-01-12 13:00:00,52.27099990844727,16.836999893188473,48.7859992980957,13.00100040435791,3.549999952316284,1.246999979019165,16.396499633789062 -4694,2017-01-12 14:00:00,51.85200119018555,17.089000701904293,48.11600112915039,13.107999801635742,3.549999952316284,1.2150000333786009,18.374000549316406 -4695,2017-01-12 15:00:00,50.59600067138672,16.753999710083008,46.9370002746582,12.973999977111816,3.549999952316284,1.2150000333786009,18.813499450683597 -4696,2017-01-12 16:00:00,52.10400009155274,17.674999237060547,48.16999816894531,13.456000328063965,3.549999952316284,1.4390000104904177,18.374000549316406 -4697,2017-01-12 17:00:00,51.43399810791016,15.496999740600586,47.39300155639648,11.418999671936035,4.882999897003174,1.4390000104904177,16.835500717163086 -4698,2017-01-12 18:00:00,57.04600143432617,18.010000228881836,50.87699890136719,12.331000328063965,6.364999771118164,2.719000101089477,15.737500190734863 -4699,2017-01-12 19:00:00,53.86299896240234,16.586000442504886,48.16999816894531,11.687000274658203,6.364999771118164,2.719000101089477,15.078499794006348 -4700,2017-01-12 20:00:00,59.05599975585938,19.01499938964844,52.86100006103516,13.053999900817873,6.248000144958496,2.719000101089477,14.638500213623049 -4701,2017-01-12 21:00:00,57.38100051879883,18.010000228881836,51.762001037597656,12.946999549865724,4.90399980545044,1.4819999933242798,14.19950008392334 -4702,2017-01-12 22:00:00,54.61700057983398,18.0939998626709,48.89400100708008,13.027999877929688,4.861999988555908,1.4819999933242798,13.979499816894531 -4703,2017-01-12 23:00:00,52.52299880981445,17.004999160766598,47.60699844360352,12.46500015258789,5.341000080108644,1.4819999933242798,13.759499549865724 -4704,2017-01-13 00:00:00,51.01499938964844,16.836999893188473,45.73099899291992,12.25,5.341000080108644,1.4819999933242798,13.320500373840332 -4705,2017-01-13 01:00:00,47.999000549316406,15.413000106811523,43.23799896240234,11.418999671936035,4.030000209808351,1.4390000104904177,12.880499839782717 -4706,2017-01-13 02:00:00,45.1510009765625,14.407999992370604,40.79800033569336,10.45400047302246,4.499000072479248,1.4390000104904177,12.441499710083008 -4707,2017-01-13 03:00:00,46.99399948120117,15.246000289916992,41.92399978637695,10.829999923706056,5.853000164031982,2.9110000133514404,11.5625 -4708,2017-01-13 04:00:00,45.82099914550781,14.994000434875488,40.15499877929688,10.69499969482422,5.703999996185303,1.4709999561309814,10.903499603271484 -4709,2017-01-13 05:00:00,46.2400016784668,15.581000328063965,41.36100006103516,11.043999671936035,5.703999996185303,1.4709999561309814,10.244500160217283 -4710,2017-01-13 06:00:00,49.84199905395508,16.50200080871582,44.09500122070313,11.982000350952148,5.447999954223633,1.4709999561309814,10.024499893188477 -4711,2017-01-13 07:00:00,42.88899993896485,12.64900016784668,37.79600143432617,9.034000396728516,5.436999797821045,1.4709999561309814,9.804499626159668 -4712,2017-01-13 08:00:00,46.74300003051758,13.56999969482422,41.76300048828125,9.677000045776367,5.436999797821045,2.7079999446868896,9.804499626159668 -4713,2017-01-13 09:00:00,52.27099990844727,16.753999710083008,48.49200057983398,12.920000076293944,3.891000032424927,1.2690000534057615,10.244500160217283 -4714,2017-01-13 10:00:00,46.57500076293945,13.821999549865724,43.29100036621094,10.401000022888184,3.891000032424927,1.2790000438690186,11.123499870300291 -4715,2017-01-13 11:00:00,49.25600051879883,15.664999961853027,45.16799926757813,11.741000175476074,3.891000032424927,1.2790000438690186,13.539999961853027 -4716,2017-01-13 12:00:00,43.72700119018555,12.732999801635742,40.04800033569336,9.194000244140623,3.891000032424927,1.3539999723434448,17.27549934387207 -4717,2017-01-13 13:00:00,50.428001403808594,16.0,46.749000549316406,12.08899974822998,2.8570001125335693,1.3539999723434448,19.25300025939941 -4718,2017-01-13 14:00:00,49.75799942016602,16.0,45.89099884033203,12.062999725341797,4.105000019073486,1.3539999723434448,22.10950088500977 -4719,2017-01-13 15:00:00,49.42300033569336,16.0,45.8380012512207,12.008999824523926,2.760999917984009,1.3539999723434448,22.10950088500977 -4720,2017-01-13 16:00:00,50.34500122070313,16.083000183105472,45.30199813842773,11.553000450134276,5.235000133514403,1.3539999723434448,21.670000076293945 -4721,2017-01-13 17:00:00,53.946998596191406,16.836999893188473,47.20500183105469,11.204999923706056,6.48199987411499,2.6440000534057617,20.35149955749512 -4722,2017-01-13 18:00:00,51.18199920654297,15.07800006866455,46.428001403808594,10.668999671936035,5.011000156402588,2.6440000534057617,18.15399932861328 -4723,2017-01-13 19:00:00,53.52799987792969,15.07800006866455,46.53499984741211,9.729999542236328,6.248000144958496,2.6440000534057617,16.396499633789062 -4724,2017-01-13 20:00:00,55.2869987487793,17.089000701904293,51.17200088500977,13.027999877929688,3.7739999294281006,2.6440000534057617,15.078499794006348 -4725,2017-01-13 21:00:00,55.95700073242188,17.590999603271484,49.7509994506836,12.008999824523926,6.449999809265138,2.6440000534057617,13.979499816894531 -4726,2017-01-13 22:00:00,55.53799819946289,17.590999603271484,48.86700057983398,11.954999923706056,5.235000133514403,2.6440000534057617,13.320500373840332 -4727,2017-01-13 23:00:00,51.01499938964844,16.419000625610348,45.89099884033203,11.902000427246096,5.276999950408936,2.6440000534057617,13.100500106811523 -4728,2017-01-14 00:00:00,48.83700180053711,15.329999923706056,44.52399826049805,11.043999671936035,3.507999897003174,1.3969999551773071,12.880499839782717 -4729,2017-01-14 01:00:00,47.32899856567383,14.994000434875488,42.43399810791016,10.96399974822998,4.90399980545044,1.3969999551773071,12.441499710083008 -4730,2017-01-14 02:00:00,47.74800109863281,14.91100025177002,42.51399993896485,10.45400047302246,5.36299991607666,1.3969999551773071,11.781999588012695 -4731,2017-01-14 03:00:00,45.98899841308594,14.659000396728516,42.03099822998047,11.071000099182127,3.9660000801086426,1.5140000581741333,11.123499870300291 -4732,2017-01-14 04:00:00,46.071998596191406,14.82699966430664,39.887001037597656,10.024999618530272,5.191999912261963,2.7290000915527344,10.683500289916992 -4733,2017-01-14 05:00:00,46.82600021362305,15.161999702453612,42.43399810791016,11.312000274658203,3.954999923706055,2.7290000915527344,10.024499893188477 -4734,2017-01-14 06:00:00,45.4020004272461,13.654000282287598,40.04800033569336,9.70400047302246,5.235000133514403,2.7290000915527344,9.365500450134276 -4735,2017-01-14 07:00:00,49.17200088500977,14.994000434875488,43.50600051879883,10.480999946594238,5.127999782562256,1.5140000581741333,9.145500183105469 -4736,2017-01-14 08:00:00,41.13000106811523,9.550000190734863,39.11000061035156,7.210999965667725,2.259999990463257,0.0,8.92549991607666 -4737,2017-01-14 09:00:00,47.999000549316406,14.072999954223633,45.78400039672852,11.12399959564209,2.377000093460083,0.0,10.46399974822998 -4738,2017-01-14 10:00:00,46.90999984741211,14.576000213623049,45.11399841308594,11.66100025177002,2.377000093460083,0.0,12.880999565124512 -4739,2017-01-14 11:00:00,50.34500122070313,16.083000183105472,47.6870002746582,12.46500015258789,2.377000093460083,0.0,15.737000465393065 -4740,2017-01-14 12:00:00,45.90499877929688,12.899999618530272,44.12200164794922,10.07900047302246,2.377000093460083,0.0,18.374000549316406 -4741,2017-01-14 13:00:00,45.23500061035156,13.234999656677244,43.50600051879883,10.560999870300291,2.377000093460083,0.0,19.25300025939941 -4742,2017-01-14 14:00:00,48.41799926757813,14.91100025177002,45.59700012207031,11.312000274658203,2.377000093460083,1.2369999885559082,21.45050048828125 -4743,2017-01-14 15:00:00,44.39699935913086,12.984000205993652,40.87900161743164,9.461999893188477,3.6989998817443848,1.5570000410079956,21.230499267578125 -4744,2017-01-14 16:00:00,51.34999847412109,16.50200080871582,46.9370002746582,12.116000175476074,3.6989998817443848,1.493000030517578,20.35149955749512 -4745,2017-01-14 17:00:00,48.75299835205078,14.072999954223633,45.03400039672852,10.508000373840332,3.6040000915527344,1.493000030517578,17.934499740600586 -4746,2017-01-14 18:00:00,53.77899932861328,16.166999816894528,49.5369987487793,11.553000450134276,4.829999923706055,1.493000030517578,15.517499923706056 -4747,2017-01-14 19:00:00,52.10400009155274,13.73799991607666,47.7140007019043,9.756999969482422,4.829999923706055,1.493000030517578,14.19950008392334 -4748,2017-01-14 20:00:00,55.78900146484375,16.334999084472653,50.82400131225586,11.472999572753904,4.829999923706055,1.493000030517578,13.320500373840332 -4749,2017-01-14 21:00:00,57.13000106811523,17.256000518798828,51.68099975585938,12.142999649047852,4.829999923706055,1.493000030517578,12.441499710083008 -4750,2017-01-14 22:00:00,52.02000045776367,15.329999923706056,46.90999984741211,10.989999771118164,4.765999794006348,1.493000030517578,12.441499710083008 -4751,2017-01-14 23:00:00,49.84199905395508,15.246000289916992,46.10599899291992,11.446000099182127,3.3159999847412114,1.2150000333786009,12.001500129699709 -4752,2017-01-15 00:00:00,50.428001403808594,15.664999961853027,44.685001373291016,11.017000198364258,5.724999904632568,2.4730000495910645,11.5625 -4753,2017-01-15 01:00:00,47.24499893188477,15.161999702453612,41.38800048828125,10.722000122070312,5.586999893188477,2.4730000495910645,11.123499870300291 -4754,2017-01-15 02:00:00,46.65900039672852,13.821999549865724,42.91600036621094,10.642000198364258,4.2220001220703125,1.246999979019165,10.683500289916992 -4755,2017-01-15 03:00:00,47.41299819946289,14.156999588012695,42.13899993896485,10.480999946594238,4.2109999656677255,1.493000030517578,10.024499893188477 -4756,2017-01-15 04:00:00,42.88899993896485,13.402999877929688,39.13600158691406,10.508000373840332,2.9530000686645512,0.0,9.365500450134276 -4757,2017-01-15 05:00:00,47.32899856567383,14.91100025177002,41.97800064086914,11.071000099182127,5.5229997634887695,1.22599995136261,9.145500183105469 -4758,2017-01-15 06:00:00,48.83700180053711,15.246000289916992,43.39899826049805,11.33899974822998,5.298999786376953,1.3969999551773071,8.706000328063965 -4759,2017-01-15 07:00:00,42.1349983215332,11.47599983215332,37.2869987487793,8.390000343322754,4.914999961853027,1.2150000333786009,8.486499786376951 -4760,2017-01-15 08:00:00,45.1510009765625,12.314000129699709,40.52999877929688,9.006999969482422,4.755000114440918,1.2150000333786009,8.266500473022461 -4761,2017-01-15 09:00:00,48.584999084472656,14.072999954223633,45.19400024414063,10.855999946594238,3.486000061035156,1.2150000333786009,9.585000038146973 -4762,2017-01-15 10:00:00,52.10400009155274,15.83199977874756,48.46500015258789,12.08899974822998,3.486000061035156,1.22599995136261,11.342499732971191 -4763,2017-01-15 11:00:00,44.73199844360352,12.899999618530272,41.709999084472656,10.024999618530272,3.486000061035156,0.0,13.979499816894531 -4764,2017-01-15 12:00:00,45.73699951171875,12.815999984741213,42.59400177001953,9.890999794006348,3.486000061035156,0.0,16.836000442504886 -4765,2017-01-15 13:00:00,49.75799942016602,15.161999702453612,46.5620002746582,11.821000099182127,3.486000061035156,0.0,17.71500015258789 -4766,2017-01-15 14:00:00,49.25600051879883,14.407999992370604,46.10599899291992,11.178000450134276,3.486000061035156,0.0,19.03300094604492 -4767,2017-01-15 15:00:00,49.25600051879883,14.324000358581545,46.64199829101562,11.553000450134276,3.486000061035156,0.0,18.15449905395508 -4768,2017-01-15 16:00:00,52.85800170898438,16.836999893188473,48.73300170898438,12.866999626159668,3.486000061035156,1.2150000333786009,16.616500854492188 -4769,2017-01-15 17:00:00,54.78400039672852,15.916000366210938,49.32300186157226,11.392000198364258,4.702000141143799,1.2150000333786009,14.85849952697754 -4770,2017-01-15 18:00:00,58.21900177001953,17.34000015258789,51.62799835205078,12.142999649047852,5.927999973297119,1.2150000333786009,13.539999961853027 -4771,2017-01-15 19:00:00,51.93600082397461,13.402999877929688,46.9900016784668,9.220999717712402,5.8959999084472665,1.2150000333786009,13.31999969482422 -4772,2017-01-15 20:00:00,56.125,16.083000183105472,49.8849983215332,11.366000175476074,5.8959999084472665,2.430999994277954,12.880499839782717 -4773,2017-01-15 21:00:00,57.13000106811523,19.350000381469727,51.70800018310547,14.019000053405762,5.809999942779541,2.430999994277954,12.221500396728516 -4774,2017-01-15 22:00:00,53.0250015258789,16.670000076293945,47.60699844360352,12.196999549865724,5.809999942779541,2.430999994277954,11.5625 -4775,2017-01-15 23:00:00,50.17699813842773,16.166999816894528,44.36399841308594,11.767999649047852,5.809999942779541,2.430999994277954,11.343000411987305 -4776,2017-01-16 00:00:00,48.91999816894531,16.334999084472653,44.71200180053711,12.84000015258789,4.008999824523927,1.3009999990463257,10.903499603271484 -4777,2017-01-16 01:00:00,47.999000549316406,15.83199977874756,43.07699966430664,11.847999572753904,5.052999973297119,1.3539999723434448,10.46399974822998 -4778,2017-01-16 02:00:00,48.584999084472656,16.334999084472653,43.13000106811523,12.062999725341797,5.0219998359680185,1.2899999618530271,9.804499626159668 -4779,2017-01-16 03:00:00,47.915000915527344,16.0,42.56800079345703,11.767999649047852,4.947000026702881,1.22599995136261,9.145500183105469 -4780,2017-01-16 04:00:00,45.98899841308594,15.413000106811523,41.33399963378906,11.526000022888184,4.914999961853027,1.2690000534057615,8.706000328063965 -4781,2017-01-16 05:00:00,46.2400016784668,15.246000289916992,41.30799865722656,11.472999572753904,4.914999961853027,1.2690000534057615,8.266500473022461 -4782,2017-01-16 06:00:00,47.41299819946289,14.491999626159668,43.02299880981445,11.312000274658203,4.914999961853027,1.2150000333786009,8.046500205993652 -4783,2017-01-16 07:00:00,41.29800033569336,10.722000122070312,36.29499816894531,7.34499979019165,5.436999797821045,1.2150000333786009,7.607500076293945 -4784,2017-01-16 08:00:00,42.303001403808594,10.55500030517578,38.680999755859375,7.585999965667725,3.997999906539917,0.0,7.607500076293945 -4785,2017-01-16 09:00:00,51.18199920654297,16.419000625610348,48.196998596191406,12.812999725341797,2.719000101089477,0.0,8.925999641418457 -4786,2017-01-16 10:00:00,47.83200073242188,13.152000427246096,44.28300094604492,10.024999618530272,3.9340000152587886,0.0,11.123000144958496 -4787,2017-01-16 11:00:00,43.2239990234375,11.225000381469728,40.07500076293945,8.336999893188478,2.7079999446868896,0.0,13.759499549865724 -4788,2017-01-16 12:00:00,49.75799942016602,14.659000396728516,45.81100082397461,11.178000450134276,4.040999889373778,1.2150000333786009,16.836000442504886 -4789,2017-01-16 13:00:00,51.09799957275391,15.748000144958494,47.76800155639648,12.383999824523926,2.388000011444092,0.0,17.934499740600586 -4790,2017-01-16 14:00:00,51.18199920654297,16.250999450683597,47.553001403808594,12.545000076293944,3.6040000915527344,1.2790000438690186,19.91200065612793 -4791,2017-01-16 15:00:00,50.428001403808594,16.0,47.04399871826172,12.277000427246096,3.6040000915527344,1.2790000438690186,20.131999969482425 -4792,2017-01-16 16:00:00,52.10400009155274,17.172000885009766,49.26900100708008,13.456000328063965,3.6679999828338623,0.0,19.03350067138672 -4793,2017-01-16 17:00:00,53.61100006103516,16.586000442504886,49.18899917602539,12.678999900817873,4.926000118255615,1.2150000333786009,17.055500030517578 -4794,2017-01-16 18:00:00,55.95700073242188,18.17799949645996,51.17200088500977,13.859000205993652,4.690999984741211,1.2790000438690186,15.29800033569336 -4795,2017-01-16 19:00:00,48.91999816894531,13.821999549865724,44.84600067138672,10.213000297546388,4.690999984741211,1.2790000438690186,14.19950008392334 -4796,2017-01-16 20:00:00,53.77899932861328,16.586000442504886,49.83200073242188,12.706000328063965,3.390000104904175,0.0,13.539999961853027 -4797,2017-01-16 21:00:00,56.71099853515625,17.34000015258789,51.43999862670898,13.027999877929688,4.455999851226807,1.4290000200271606,13.100500106811523 -4798,2017-01-16 22:00:00,54.19800186157226,17.256000518798828,49.21500015258789,12.84000015258789,4.455999851226807,1.2150000333786009,13.100500106811523 -4799,2017-01-16 23:00:00,52.68999862670898,16.753999710083008,47.44599914550781,12.41100025177002,4.455999851226807,1.2150000333786009,12.880499839782717 -4800,2017-01-17 00:00:00,49.42300033569336,16.50200080871582,45.14099884033203,12.78600025177002,4.190000057220459,1.2690000534057615,12.66100025177002 -4801,2017-01-17 01:00:00,47.66400146484375,14.994000434875488,43.07699966430664,11.472999572753904,4.190000057220459,1.2369999885559082,11.781999588012695 -4802,2017-01-17 02:00:00,47.1609992980957,15.748000144958494,43.479000091552734,12.46500015258789,4.0939998626708975,1.2369999885559082,11.343000411987305 -4803,2017-01-17 03:00:00,47.32899856567383,15.496999740600586,43.53300094604492,11.847999572753904,4.0939998626708975,1.2150000333786009,11.343000411987305 -4804,2017-01-17 04:00:00,45.98899841308594,14.994000434875488,42.27299880981445,11.687000274658203,4.0939998626708975,1.22599995136261,10.903499603271484 -4805,2017-01-17 05:00:00,44.14599990844727,14.072999954223633,40.10100173950195,10.937000274658203,4.0939998626708975,1.2150000333786009,10.903499603271484 -4806,2017-01-17 06:00:00,34.512001037597656,9.465999603271484,30.79999923706055,7.184000015258789,3.7100000381469727,0.0,10.903499603271484 -4807,2017-01-17 07:00:00,26.972999572753903,4.60699987411499,23.589000701904297,2.680999994277954,3.7100000381469727,0.0,10.683500289916992 -4808,2017-01-17 08:00:00,26.88999938964844,5.611999988555908,22.54400062561035,3.3510000705718994,3.7100000381469727,1.3009999990463257,10.683500289916992 -4809,2017-01-17 09:00:00,26.88999938964844,4.941999912261963,24.285999298095703,3.243000030517578,3.7100000381469727,0.0,10.683500289916992 -4810,2017-01-17 10:00:00,27.81100082397461,5.863999843597412,24.420000076293945,3.8059999942779537,3.7100000381469727,1.2150000333786009,11.343000411987305 -4811,2017-01-17 11:00:00,27.141000747680664,4.859000205993652,25.0629997253418,3.51200008392334,2.483999967575073,0.0,11.781999588012695 -4812,2017-01-17 12:00:00,25.71699905395508,0.0,22.67799949645996,2.4660000801086426,2.483999967575073,0.0,13.31999969482422 -4813,2017-01-17 13:00:00,26.88999938964844,5.026000022888184,23.88400077819824,3.484999895095825,2.483999967575073,0.0,13.539999961853027 -4814,2017-01-17 14:00:00,25.46500015258789,4.690999984741211,23.05299949645996,3.3510000705718994,2.4730000495910645,0.0,13.759499549865724 -4815,2017-01-17 15:00:00,25.71699905395508,4.941999912261963,23.187000274658203,3.378000020980835,2.4730000495910645,0.0,13.979499816894531 -4816,2017-01-17 16:00:00,26.63800048828125,4.440000057220459,23.32099914550781,2.493000030517578,2.4730000495910645,0.0,13.979499816894531 -4817,2017-01-17 17:00:00,30.492000579833984,7.288000106811522,26.77899932861328,5.119999885559082,3.688999891281128,1.22599995136261,13.539999961853027 -4818,2017-01-17 18:00:00,31.99900054931641,7.874000072479247,28.68199920654297,5.602000236511231,3.688999891281128,1.22599995136261,12.880499839782717 -4819,2017-01-17 19:00:00,36.35499954223633,8.376999855041504,32.273998260498054,5.576000213623047,3.688999891281128,1.375,12.66100025177002 -4820,2017-01-17 20:00:00,40.04100036621094,9.465999603271484,35.38399887084961,6.4070000648498535,4.935999870300293,1.3009999990463257,12.001500129699709 -4821,2017-01-17 21:00:00,39.2869987487793,10.638999938964844,34.553001403808594,7.532000064849853,4.935999870300293,1.3009999990463257,12.001500129699709 -4822,2017-01-17 22:00:00,38.28200149536133,9.465999603271484,32.998001098632805,6.245999813079834,4.9679999351501465,1.22599995136261,12.221500396728516 -4823,2017-01-17 23:00:00,35.60100173950195,9.130999565124512,31.89900016784668,6.6479997634887695,4.9679999351501465,1.2150000333786009,12.221500396728516 -4824,2017-01-18 00:00:00,40.20899963378906,11.309000015258787,36.21500015258789,8.416999816894531,3.3580000400543213,1.2580000162124634,12.441499710083008 -4825,2017-01-18 01:00:00,37.10900115966797,11.5600004196167,34.01599884033203,9.32800006866455,3.3580000400543213,0.0,12.441499710083008 -4826,2017-01-18 02:00:00,36.27199935913086,11.727999687194824,32.67599868774414,8.979999542236328,3.3580000400543213,1.343000054359436,12.441499710083008 -4827,2017-01-18 03:00:00,38.28200149536133,12.229999542236328,34.472000122070305,9.354999542236328,3.3580000400543213,1.2580000162124634,12.441499710083008 -4828,2017-01-18 04:00:00,39.62200164794922,12.314000129699709,35.8120002746582,9.595999717712402,3.3580000400543213,0.0,12.441499710083008 -4829,2017-01-18 05:00:00,36.02000045776367,10.890000343322754,32.59600067138672,8.336999893188478,3.3580000400543213,0.0,12.66100025177002 -4830,2017-01-18 06:00:00,35.76900100708008,10.38700008392334,32.810001373291016,8.496999740600586,3.3580000400543213,0.0,12.66100025177002 -4831,2017-01-18 07:00:00,37.77899932861328,11.225000381469728,34.042999267578125,8.630999565124513,3.3580000400543213,0.0,12.66100025177002 -4832,2017-01-18 08:00:00,37.36100006103516,8.795999526977539,33.613998413085945,6.326000213623048,3.3580000400543213,1.3860000371932983,11.781999588012695 -4833,2017-01-18 09:00:00,43.2239990234375,11.727999687194824,39.83300018310547,8.685000419616701,4.584000110626222,1.2150000333786009,11.5625 -4834,2017-01-18 10:00:00,41.29800033569336,10.973999977111816,37.823001861572266,7.88100004196167,3.36899995803833,1.2790000438690186,11.5625 -4835,2017-01-18 11:00:00,43.97800064086914,11.644000053405762,40.36899948120117,8.630999565124513,3.36899995803833,1.2369999885559082,11.781999588012695 -4836,2017-01-18 12:00:00,44.56499862670898,11.057000160217283,40.98600006103516,7.747000217437744,3.36899995803833,1.2690000534057615,11.781999588012695 -4837,2017-01-18 13:00:00,44.229000091552734,12.732999801635742,40.85200119018555,9.595999717712402,3.36899995803833,1.2150000333786009,11.781999588012695 -4838,2017-01-18 14:00:00,46.49100112915039,14.156999588012695,43.104000091552734,10.69499969482422,3.36899995803833,0.0,12.001500129699709 -4839,2017-01-18 15:00:00,43.30799865722656,12.815999984741213,39.77999877929688,9.784000396728516,3.36899995803833,0.0,12.001500129699709 -4840,2017-01-18 16:00:00,45.56999969482422,13.487000465393065,41.38800048828125,9.838000297546388,4.616000175476074,1.2150000333786009,12.001500129699709 -4841,2017-01-18 17:00:00,49.92599868774414,14.743000030517578,45.62300109863281,11.017000198364258,4.616000175476074,1.493000030517578,11.781999588012695 -4842,2017-01-18 18:00:00,51.43399810791016,16.083000183105472,47.25899887084961,12.008999824523926,4.616000175476074,1.2150000333786009,11.343000411987305 -4843,2017-01-18 19:00:00,47.1609992980957,13.487000465393065,42.99599838256836,9.784000396728516,3.390000104904175,1.3650000095367432,11.343000411987305 -4844,2017-01-18 20:00:00,44.56499862670898,12.5649995803833,40.90599822998047,9.972000122070312,4.690999984741211,0.0,11.781999588012695 -4845,2017-01-18 21:00:00,48.33399963378906,13.56999969482422,44.01499938964844,10.052000045776367,4.690999984741211,1.406999945640564,12.221500396728516 -4846,2017-01-18 22:00:00,47.74800109863281,14.743000030517578,43.07699966430664,11.097999572753906,4.690999984741211,1.5889999866485596,12.441499710083008 -4847,2017-01-18 23:00:00,43.30799865722656,13.98900032043457,38.78799819946289,10.722000122070312,3.486000061035156,1.4819999933242798,12.66100025177002 -4848,2017-01-19 00:00:00,42.63800048828125,13.402999877929688,38.22499847412109,10.347000122070312,3.486000061035156,1.246999979019165,12.880499839782717 -4849,2017-01-19 01:00:00,36.1879997253418,9.885000228881836,32.810001373291016,7.425000190734862,3.486000061035156,0.0,12.880499839782717 -4850,2017-01-19 02:00:00,33.92599868774414,8.963000297546387,31.416000366210927,7.077000141143799,3.486000061035156,0.0,12.880499839782717 -4851,2017-01-19 03:00:00,37.61199951171875,11.895000457763672,33.85599899291992,9.0600004196167,3.5720000267028813,1.2690000534057615,12.880499839782717 -4852,2017-01-19 04:00:00,35.93600082397461,11.895000457763672,34.06999969482422,9.864999771118164,2.2070000171661377,0.0,12.880499839782717 -4853,2017-01-19 05:00:00,39.874000549316406,12.732999801635742,37.0989990234375,10.052000045776367,2.2070000171661377,0.0,12.66100025177002 -4854,2017-01-19 06:00:00,41.13000106811523,13.319000244140623,37.6619987487793,10.480999946594238,3.4219999313354488,0.0,12.221500396728516 -4855,2017-01-19 07:00:00,37.10900115966797,11.309000015258787,33.93600082397461,8.95300006866455,3.4219999313354488,0.0,12.221500396728516 -4856,2017-01-19 08:00:00,37.10900115966797,9.381999969482422,34.257999420166016,7.077000141143799,3.4219999313354488,0.0,12.221500396728516 -4857,2017-01-19 09:00:00,47.41299819946289,13.402999877929688,44.71200180053711,10.69499969482422,2.0899999141693115,0.0,12.221500396728516 -4858,2017-01-19 10:00:00,46.49100112915039,12.815999984741213,43.61299896240234,9.810999870300291,3.3050000667572017,0.0,12.66100025177002 -4859,2017-01-19 11:00:00,49.75799942016602,13.904999732971191,47.09799957275391,10.74899959564209,3.3050000667572017,0.0,13.100500106811523 -4860,2017-01-19 12:00:00,48.33399963378906,14.072999954223633,44.76599884033203,10.883000373840332,3.3050000667572017,0.0,13.539999961853027 -4861,2017-01-19 13:00:00,51.93600082397461,16.670000076293945,48.2770004272461,12.894000053405762,3.3050000667572017,0.0,13.979499816894531 -4862,2017-01-19 14:00:00,52.52299880981445,16.836999893188473,48.946998596191406,13.135000228881836,3.3050000667572017,0.0,14.199000358581545 -4863,2017-01-19 15:00:00,50.68000030517578,16.670000076293945,47.60699844360352,13.135000228881836,3.3050000667572017,0.0,14.418999671936035 -4864,2017-01-19 16:00:00,52.27099990844727,17.423999786376953,48.73300170898438,13.590999603271484,3.3050000667572017,1.2369999885559082,14.418999671936035 -4865,2017-01-19 17:00:00,54.44900131225586,17.256000518798828,50.26100158691406,12.973999977111816,4.519999980926514,1.3650000095367432,13.979499816894531 -4866,2017-01-19 18:00:00,54.61700057983398,17.590999603271484,50.31399917602539,13.37600040435791,4.519999980926514,1.3329999446868896,13.760000228881836 -4867,2017-01-19 19:00:00,52.94100189208984,16.0,47.95500183105469,11.526000022888184,4.519999980926514,1.5140000581741333,13.760000228881836 -4868,2017-01-19 20:00:00,55.11899948120117,17.089000701904293,51.03799819946289,13.081000328063965,4.519999980926514,0.0,13.760000228881836 -4869,2017-01-19 21:00:00,50.84700012207031,14.82699966430664,47.76800155639648,11.633999824523926,3.26200008392334,0.0,13.760000228881836 -4870,2017-01-19 22:00:00,51.01499938964844,15.161999702453612,46.2130012512207,11.472999572753904,4.4780001640319815,0.0,13.31999969482422 -4871,2017-01-19 23:00:00,47.41299819946289,14.576000213623049,43.77399826049805,11.472999572753904,4.392000198364259,0.0,12.441499710083008 -4872,2017-01-20 00:00:00,47.07799911499024,14.743000030517578,44.01499938964844,11.982000350952148,3.1449999809265137,0.0,12.001500129699709 -4873,2017-01-20 01:00:00,44.48099899291992,13.402999877929688,42.05799865722656,11.232000350952148,3.1449999809265137,0.0,11.343000411987305 -4874,2017-01-20 02:00:00,45.31800079345703,14.576000213623049,41.709999084472656,11.66100025177002,3.5399999618530287,0.0,10.683500289916992 -4875,2017-01-20 03:00:00,45.65399932861328,14.156999588012695,42.32600021362305,11.232000350952148,3.4119999408721924,0.0,10.244500160217283 -4876,2017-01-20 04:00:00,45.73699951171875,14.659000396728516,42.27299880981445,11.633999824523926,3.4119999408721924,0.0,9.585000038146973 -4877,2017-01-20 05:00:00,45.23500061035156,14.241000175476074,41.790000915527344,11.366000175476074,3.4119999408721924,0.0,8.92549991607666 -4878,2017-01-20 06:00:00,43.89400100708008,13.487000465393065,41.92399978637695,11.33899974822998,2.0899999141693115,0.0,8.266500473022461 -4879,2017-01-20 07:00:00,46.32400131225586,14.072999954223633,42.91600036621094,11.071000099182127,2.0899999141693115,0.0,7.827000141143799 -4880,2017-01-20 08:00:00,43.81100082397461,12.229999542236328,40.79800033569336,9.595999717712402,2.0899999141693115,0.0,7.387499809265138 -4881,2017-01-20 09:00:00,47.915000915527344,14.82699966430664,45.75699996948242,12.116000175476074,2.0999999046325684,0.0,8.486000061035156 -4882,2017-01-20 10:00:00,42.303001403808594,11.309000015258787,40.04800033569336,8.791999816894531,2.0999999046325684,0.0,10.46399974822998 -4883,2017-01-20 11:00:00,48.91999816894531,13.654000282287598,45.8650016784668,10.722000122070312,2.0999999046325684,0.0,12.66100025177002 -4884,2017-01-20 12:00:00,51.51699829101562,16.166999816894528,48.30400085449219,12.598999977111816,3.325999975204468,0.0,15.297499656677244 -4885,2017-01-20 13:00:00,51.76900100708008,16.670000076293945,48.09000015258789,12.78600025177002,3.325999975204468,1.22599995136261,15.737500190734863 -4886,2017-01-20 14:00:00,49.25600051879883,16.334999084472653,45.75699996948242,12.866999626159668,3.325999975204468,0.0,17.495500564575195 -4887,2017-01-20 15:00:00,50.34500122070313,17.256000518798828,47.3390007019043,13.402999877929688,3.325999975204468,0.0,17.27549934387207 -4888,2017-01-20 16:00:00,52.35499954223633,18.17799949645996,48.14300155639648,14.18000030517578,3.325999975204468,1.22599995136261,16.17650032043457 -4889,2017-01-20 17:00:00,52.52299880981445,16.50200080871582,48.33100128173828,12.222999572753904,3.325999975204468,1.22599995136261,14.19950008392334 -4890,2017-01-20 18:00:00,54.19800186157226,16.586000442504886,49.7509994506836,12.331000328063965,4.541999816894531,1.2580000162124634,12.440999984741213 -4891,2017-01-20 19:00:00,50.428001403808594,14.156999588012695,45.89099884033203,10.07900047302246,4.541999816894531,1.5460000038146973,10.46399974822998 -4892,2017-01-20 20:00:00,56.20800018310547,17.004999160766598,51.73500061035156,12.545000076293944,4.541999816894531,1.22599995136261,9.585000038146973 -4893,2017-01-20 21:00:00,55.45399856567383,17.423999786376953,51.86899948120117,13.510000228881836,4.541999816894531,0.0,8.706000328063965 -4894,2017-01-20 22:00:00,53.0250015258789,15.83199977874756,49.64400100708008,12.222999572753904,3.220000028610228,0.0,7.827000141143799 -4895,2017-01-20 23:00:00,52.02000045776367,16.419000625610348,48.38399887084961,12.894000053405762,3.220000028610228,0.0,7.387499809265138 -4896,2017-01-21 00:00:00,44.229000091552734,13.73799991607666,40.77199935913086,10.480999946594238,3.220000028610228,0.0,6.508999824523926 -4897,2017-01-21 01:00:00,42.387001037597656,12.39799976348877,39.37799835205078,9.838000297546388,3.252000093460083,0.0,6.069499969482423 -4898,2017-01-21 02:00:00,42.88899993896485,13.487000465393065,40.12799835205078,10.937000274658203,3.252000093460083,0.0,5.190499782562256 -4899,2017-01-21 03:00:00,43.05699920654297,12.984000205993652,39.35100173950195,10.213000297546388,3.252000093460083,0.0,4.531000137329102 -4900,2017-01-21 04:00:00,42.387001037597656,12.899999618530272,39.37799835205078,10.401000022888184,3.401000022888184,0.0,3.871999979019165 -4901,2017-01-21 05:00:00,44.3129997253418,13.402999877929688,41.57600021362305,10.989999771118164,3.6989998817443848,0.0,3.213000059127808 -4902,2017-01-21 06:00:00,45.48600006103516,14.576000213623049,42.64799880981445,11.875,2.3989999294281006,0.0,2.7734999656677246 -4903,2017-01-21 07:00:00,41.13000106811523,12.314000129699709,36.9379997253418,9.32800006866455,3.763000011444092,1.2580000162124634,2.553999900817871 -4904,2017-01-21 08:00:00,44.14599990844727,12.984000205993652,41.415000915527344,10.052000045776367,3.763000011444092,0.0,2.7734999656677246 -4905,2017-01-21 09:00:00,50.428001403808594,16.50200080871582,47.39300155639648,12.812999725341797,2.5369999408721924,0.0,4.750999927520752 -4906,2017-01-21 10:00:00,49.50699996948242,15.161999702453612,45.62300109863281,11.12399959564209,2.5369999408721924,1.2580000162124634,8.266500473022461 -4907,2017-01-21 11:00:00,52.10400009155274,17.172000885009766,49.18899917602539,13.697999954223633,2.5369999408721924,0.0,11.123000144958496 -4908,2017-01-21 12:00:00,48.66899871826172,14.659000396728516,45.40900039672852,11.366000175476074,2.5369999408721924,0.0,13.979499816894531 -4909,2017-01-21 13:00:00,47.24499893188477,15.329999923706056,43.98799896240234,11.902000427246096,2.5369999408721924,0.0,15.517499923706056 -4910,2017-01-21 14:00:00,49.50699996948242,16.50200080871582,46.69599914550781,13.027999877929688,2.5369999408721924,0.0,18.15449905395508 -4911,2017-01-21 15:00:00,47.66400146484375,15.664999961853027,45.22100067138672,12.84000015258789,2.5369999408721924,0.0,17.934499740600586 -4912,2017-01-21 16:00:00,50.26100158691406,16.586000442504886,46.50799942016602,13.027999877929688,3.8059999942779537,0.0,17.495000839233402 -4913,2017-01-21 17:00:00,52.52299880981445,16.586000442504886,48.09000015258789,12.760000228881836,3.496999979019165,0.0,16.17650032043457 -4914,2017-01-21 18:00:00,54.70000076293945,17.423999786376953,50.31399917602539,13.402999877929688,4.797999858856201,0.0,14.418999671936035 -4915,2017-01-21 19:00:00,49.59099960327149,13.152000427246096,44.60499954223633,9.48900032043457,4.797999858856201,1.2150000333786009,13.100500106811523 -4916,2017-01-21 20:00:00,52.02000045776367,15.329999923706056,48.33100128173828,13.939000129699709,4.85099983215332,0.0,12.001500129699709 -4917,2017-01-21 21:00:00,54.95199966430664,17.926000595092773,50.39500045776367,14.072999954223633,4.894000053405762,0.0,10.903499603271484 -4918,2017-01-21 22:00:00,51.34999847412109,16.92099952697754,47.58000183105469,13.29599952697754,3.625,0.0,10.024499893188477 -4919,2017-01-21 23:00:00,45.1510009765625,13.73799991607666,40.50299835205078,10.614999771118164,3.625,0.0,9.145500183105469 -4920,2017-01-22 00:00:00,47.32899856567383,15.07800006866455,43.66699981689453,11.902000427246096,3.625,0.0,8.266500473022461 -4921,2017-01-22 01:00:00,41.88399887084961,12.899999618530272,39.21699905395508,10.45400047302246,3.486000061035156,0.0,7.827000141143799 -4922,2017-01-22 02:00:00,42.63800048828125,13.152000427246096,40.23500061035156,10.776000022888184,3.486000061035156,0.0,6.947999954223633 -4923,2017-01-22 03:00:00,42.303001403808594,12.899999618530272,38.680999755859375,10.07900047302246,3.486000061035156,0.0,6.069499969482423 -4924,2017-01-22 04:00:00,41.2140007019043,12.5649995803833,38.22499847412109,10.024999618530272,3.486000061035156,0.0,5.630000114440918 -4925,2017-01-22 05:00:00,42.55400085449219,13.402999877929688,39.59199905395508,10.614999771118164,3.486000061035156,0.0,4.750999927520752 -4926,2017-01-22 06:00:00,45.48600006103516,14.576000213623049,42.13899993896485,11.71399974822998,3.6570000648498535,0.0,4.311500072479248 -4927,2017-01-22 07:00:00,39.95700073242188,10.973999977111816,36.375,8.52400016784668,3.6570000648498535,0.0,3.871999979019165 -4928,2017-01-22 08:00:00,42.47000122070313,12.062999725341797,39.59199905395508,9.838000297546388,2.2390000820159908,0.0,3.651999950408936 -4929,2017-01-22 09:00:00,47.74800109863281,13.402999877929688,44.71200180053711,10.74899959564209,2.2390000820159908,0.0,5.4099998474121085 -4930,2017-01-22 10:00:00,40.29199981689453,10.220000267028809,37.6349983215332,8.015000343322754,2.2390000820159908,0.0,8.046999931335451 -4931,2017-01-22 11:00:00,42.72200012207031,10.805999755859377,40.262001037597656,8.630999565124513,2.2390000820159908,0.0,11.5625 -4932,2017-01-22 12:00:00,47.32899856567383,13.487000465393065,44.52399826049805,10.642000198364258,2.2390000820159908,0.0,15.29800033569336 -4933,2017-01-22 13:00:00,48.08300018310547,15.161999702453612,45.30199813842773,12.303999900817873,2.2390000820159908,0.0,17.055999755859375 -4934,2017-01-22 14:00:00,39.62200164794922,11.5600004196167,36.858001708984375,9.354999542236328,2.2390000820159908,0.0,19.6924991607666 -4935,2017-01-22 15:00:00,43.14099884033203,12.815999984741213,40.18199920654297,10.37399959564209,2.2390000820159908,0.0,19.91200065612793 -4936,2017-01-22 16:00:00,49.3390007019043,15.916000366210938,46.6150016784668,12.866999626159668,2.2390000820159908,0.0,19.25300025939941 -4937,2017-01-22 17:00:00,49.25600051879883,15.413000106811523,46.29399871826172,12.598999977111816,2.2390000820159908,0.0,17.274999618530273 -4938,2017-01-22 18:00:00,51.01499938964844,14.241000175476074,47.84799957275391,11.446000099182127,2.2390000820159908,0.0,15.078499794006348 -4939,2017-01-22 19:00:00,47.83200073242188,11.895000457763672,44.55099868774414,9.194000244140623,3.4539999961853027,0.0,13.320500373840332 -4940,2017-01-22 20:00:00,48.66899871826172,12.815999984741213,45.14099884033203,9.838000297546388,3.4539999961853027,0.0,11.781999588012695 -4941,2017-01-22 21:00:00,44.56499862670898,10.220000267028809,41.54899978637695,7.960999965667725,3.4539999961853027,0.0,10.903499603271484 -4942,2017-01-22 22:00:00,49.25600051879883,14.743000030517578,47.125,12.196999549865724,2.227999925613404,0.0,10.46399974822998 -4943,2017-01-22 23:00:00,46.82600021362305,13.73799991607666,44.06900024414063,11.178000450134276,2.227999925613404,0.0,10.024499893188477 -4944,2017-01-23 00:00:00,45.06700134277344,13.98900032043457,42.43399810791016,11.553000450134276,2.227999925613404,0.0,9.804499626159668 -4945,2017-01-23 01:00:00,44.3129997253418,13.487000465393065,41.44200134277344,11.043999671936035,2.227999925613404,0.0,9.365500450134276 -4946,2017-01-23 02:00:00,42.63800048828125,13.402999877929688,39.91400146484375,11.392000198364258,2.227999925613404,0.0,9.145500183105469 -4947,2017-01-23 03:00:00,42.72200012207031,13.067999839782717,40.02099990844727,10.90999984741211,2.227999925613404,0.0,8.706000328063965 -4948,2017-01-23 04:00:00,42.88899993896485,13.56999969482422,40.262001037597656,11.312000274658203,2.227999925613404,0.0,8.266500473022461 -4949,2017-01-23 05:00:00,40.9630012512207,12.815999984741213,38.38600158691406,10.722000122070312,2.227999925613404,0.0,7.607500076293945 -4950,2017-01-23 06:00:00,43.2239990234375,13.067999839782717,41.14699935913086,11.232000350952148,2.227999925613404,0.0,7.167500019073486 -4951,2017-01-23 07:00:00,41.79999923706055,11.895000457763672,38.84199905395508,9.623000144958496,2.227999925613404,0.0,6.728499889373777 -4952,2017-01-23 08:00:00,41.46500015258789,10.220000267028809,38.198001861572266,8.121999740600586,2.227999925613404,0.0,6.508999824523926 -4953,2017-01-23 09:00:00,41.54899978637695,11.47599983215332,39.48500061035156,9.70400047302246,2.227999925613404,0.0,7.827000141143799 -4954,2017-01-23 10:00:00,43.2239990234375,10.805999755859377,40.95899963378906,8.899999618530273,2.227999925613404,0.0,10.024499893188477 -4955,2017-01-23 11:00:00,48.50199890136719,13.73799991607666,45.8650016784668,11.12399959564209,2.227999925613404,0.0,12.440999984741213 -4956,2017-01-23 12:00:00,45.1510009765625,12.732999801635742,43.37200164794922,10.508000373840332,2.227999925613404,0.0,15.07800006866455 -4957,2017-01-23 13:00:00,44.900001525878906,13.402999877929688,43.26399993896485,11.204999923706056,2.227999925613404,0.0,15.737000465393065 -4958,2017-01-23 14:00:00,43.81100082397461,13.319000244140623,42.27299880981445,11.12399959564209,2.227999925613404,0.0,18.5935001373291 -4959,2017-01-23 15:00:00,46.57500076293945,14.659000396728516,44.44400024414063,12.357000350952148,2.227999925613404,0.0,19.03300094604492 -4960,2017-01-23 16:00:00,46.49100112915039,14.491999626159668,44.20299911499024,12.03600025177002,2.227999925613404,0.0,18.5939998626709 -4961,2017-01-23 17:00:00,48.83700180053711,14.994000434875488,45.97200012207031,12.46500015258789,2.1640000343322754,0.0,16.836000442504886 -4962,2017-01-23 18:00:00,50.59600067138672,14.82699966430664,48.0359992980957,12.222999572753904,2.1640000343322754,0.0,14.638999938964846 -4963,2017-01-23 19:00:00,46.90999984741211,12.732999801635742,43.15700149536133,9.838000297546388,3.380000114440918,0.0,13.100500106811523 -4964,2017-01-23 20:00:00,52.10400009155274,15.748000144958494,48.89400100708008,12.571999549865724,3.380000114440918,0.0,12.221500396728516 -4965,2017-01-23 21:00:00,50.17699813842773,14.82699966430664,46.48099899291992,11.795000076293944,3.380000114440918,0.0,11.5625 -4966,2017-01-23 22:00:00,49.42300033569336,15.161999702453612,46.31999969482422,12.142999649047852,3.380000114440918,0.0,10.903499603271484 -4967,2017-01-23 23:00:00,43.89400100708008,12.815999984741213,41.89699935913086,10.96399974822998,2.1640000343322754,0.0,10.46399974822998 -4968,2017-01-24 00:00:00,44.81600189208984,13.821999549865724,42.13899993896485,11.472999572753904,2.1640000343322754,0.0,10.024499893188477 -4969,2017-01-24 01:00:00,42.72200012207031,13.56999969482422,40.55699920654297,11.204999923706056,2.1640000343322754,0.0,10.024499893188477 -4970,2017-01-24 02:00:00,40.29199981689453,13.402999877929688,37.5009994506836,11.043999671936035,2.1640000343322754,0.0,9.585000038146973 -4971,2017-01-24 03:00:00,38.198001861572266,11.644000053405762,35.4370002746582,9.649999618530272,2.1640000343322754,0.0,9.145500183105469 -4972,2017-01-24 04:00:00,38.78499984741211,12.815999984741213,36.483001708984375,10.829999923706056,2.1640000343322754,0.0,8.706000328063965 -4973,2017-01-24 05:00:00,37.946998596191406,11.979000091552734,35.40999984741211,10.052000045776367,2.1640000343322754,0.0,8.266500473022461 -4974,2017-01-24 06:00:00,40.79499816894531,12.480999946594238,39.08300018310547,10.347000122070312,2.1640000343322754,0.0,7.387499809265138 -4975,2017-01-24 07:00:00,40.79499816894531,11.810999870300291,38.70800018310547,10.105999946594238,2.1640000343322754,0.0,7.167500019073486 -4976,2017-01-24 08:00:00,39.0359992980957,9.717000007629396,36.80400085449219,8.14900016784668,2.1640000343322754,0.0,7.167500019073486 -4977,2017-01-24 09:00:00,45.4020004272461,13.73799991607666,43.50600051879883,11.687000274658203,2.1640000343322754,0.0,8.486000061035156 -4978,2017-01-24 10:00:00,41.88399887084961,10.722000122070312,40.10100173950195,8.791999816894531,2.1640000343322754,0.0,11.123000144958496 -4979,2017-01-24 11:00:00,42.47000122070313,11.225000381469728,40.58399963378906,9.248000144958496,2.1640000343322754,0.0,13.979499816894531 -4980,2017-01-24 12:00:00,44.81600189208984,13.067999839782717,43.07699966430664,10.883000373840332,2.1640000343322754,0.0,16.836000442504886 -4981,2017-01-24 13:00:00,43.47600173950195,12.480999946594238,41.790000915527344,10.508000373840332,2.1640000343322754,0.0,17.27549934387207 -4982,2017-01-24 14:00:00,45.56999969482422,14.491999626159668,43.96099853515625,12.437999725341797,2.1640000343322754,0.0,17.495000839233402 -4983,2017-01-24 15:00:00,43.64300155639648,12.815999984741213,41.57600021362305,10.937000274658203,2.1640000343322754,0.0,17.71500015258789 -4984,2017-01-24 16:00:00,43.14099884033203,12.815999984741213,41.44200134277344,10.90999984741211,2.1640000343322754,0.0,17.055500030517578 -4985,2017-01-24 17:00:00,45.23500061035156,12.39799976348877,43.58599853515625,10.427000045776367,2.1640000343322754,0.0,15.95699977874756 -4986,2017-01-24 18:00:00,44.14599990844727,12.062999725341797,41.87099838256836,10.105999946594238,2.1640000343322754,0.0,14.418999671936035 -4987,2017-01-24 19:00:00,45.65399932861328,12.145999908447266,43.55899810791016,9.91800022125244,2.1640000343322754,0.0,13.539999961853027 -4988,2017-01-24 20:00:00,48.584999084472656,12.815999984741213,46.0250015258789,10.185999870300291,2.1640000343322754,0.0,13.100500106811523 -4989,2017-01-24 21:00:00,46.82600021362305,13.654000282287598,45.97200012207031,11.982000350952148,2.1640000343322754,0.0,12.880499839782717 -4990,2017-01-24 22:00:00,47.999000549316406,14.491999626159668,46.15999984741211,12.222999572753904,2.1640000343322754,0.0,12.880499839782717 -4991,2017-01-24 23:00:00,45.1510009765625,13.654000282287598,43.26399993896485,11.472999572753904,2.1640000343322754,0.0,12.880499839782717 -4992,2017-01-25 00:00:00,38.617000579833984,11.309000015258787,36.7239990234375,9.677000045776367,2.1640000343322754,0.0,12.66100025177002 -4993,2017-01-25 01:00:00,38.95199966430664,11.5600004196167,37.2599983215332,9.972000122070312,2.1640000343322754,0.0,12.66100025177002 -4994,2017-01-25 02:00:00,40.3759994506836,12.314000129699709,38.73400115966797,10.668999671936035,2.1640000343322754,0.0,12.66100025177002 -4995,2017-01-25 03:00:00,39.11999893188477,11.979000091552734,37.4739990234375,10.45400047302246,2.1640000343322754,0.0,12.221500396728516 -4996,2017-01-25 04:00:00,37.025001525878906,11.727999687194824,35.16899871826172,10.267000198364258,2.1640000343322754,0.0,11.781999588012695 -4997,2017-01-25 05:00:00,38.70100021362305,12.062999725341797,37.2599983215332,10.776000022888184,2.1640000343322754,0.0,11.5625 -4998,2017-01-25 06:00:00,40.29199981689453,12.062999725341797,38.11800003051758,10.267000198364258,2.1640000343322754,0.0,11.5625 -4999,2017-01-25 07:00:00,40.79499816894531,12.229999542236328,38.81499862670898,10.267000198364258,2.1640000343322754,0.0,11.5625 -5000,2017-01-25 08:00:00,38.44900131225586,9.633000373840332,36.321998596191406,8.229000091552733,2.1640000343322754,0.0,11.343000411987305 -5001,2017-01-25 09:00:00,39.95700073242188,11.057000160217283,38.27899932861328,9.595999717712402,2.1640000343322754,0.0,11.781999588012695 -5002,2017-01-25 10:00:00,37.44400024414063,8.543999671936035,35.7859992980957,7.077000141143799,2.1640000343322754,0.0,12.66100025177002 -5003,2017-01-25 11:00:00,40.125,9.130999565124512,38.35900115966797,7.34499979019165,2.1640000343322754,0.0,13.539999961853027 -5004,2017-01-25 12:00:00,42.55400085449219,10.722000122070312,40.74499893188477,9.0600004196167,2.1640000343322754,0.0,15.07800006866455 -5005,2017-01-25 13:00:00,45.48600006103516,13.904999732971191,43.935001373291016,11.902000427246096,2.1640000343322754,0.0,16.615999221801758 -5006,2017-01-25 14:00:00,44.229000091552734,13.98900032043457,42.56800079345703,12.008999824523926,2.1640000343322754,0.0,18.5939998626709 -5007,2017-01-25 15:00:00,43.14099884033203,13.152000427246096,41.92399978637695,11.5,2.1640000343322754,0.0,20.351999282836918 -5008,2017-01-25 16:00:00,43.391998291015625,12.39799976348877,42.084999084472656,10.480999946594238,2.1640000343322754,0.0,21.01049995422364 -5009,2017-01-25 17:00:00,43.64300155639648,12.39799976348877,42.084999084472656,10.614999771118164,2.1640000343322754,0.0,19.91200065612793 -5010,2017-01-25 18:00:00,47.999000549316406,13.904999732971191,46.07899856567383,11.795000076293944,2.1640000343322754,0.0,17.934499740600586 -5011,2017-01-25 19:00:00,42.63800048828125,10.220000267028809,40.87900161743164,8.336999893188478,2.1640000343322754,0.0,15.737500190734863 -5012,2017-01-25 20:00:00,45.06700134277344,11.644000053405762,43.02299880981445,9.649999618530272,2.1640000343322754,0.0,14.19950008392334 -5013,2017-01-25 21:00:00,47.24499893188477,13.234999656677244,45.19400024414063,10.989999771118164,2.1640000343322754,0.0,13.100500106811523 -5014,2017-01-25 22:00:00,47.24499893188477,15.413000106811523,44.81900024414063,11.633999824523926,2.1640000343322754,0.0,12.001500129699709 -5015,2017-01-25 23:00:00,44.39699935913086,12.815999984741213,42.54100036621094,10.90999984741211,2.1640000343322754,0.0,11.343000411987305 -5016,2017-01-26 00:00:00,41.54899978637695,13.319000244140623,39.99399948120117,11.472999572753904,2.1640000343322754,0.0,10.683500289916992 -5017,2017-01-26 01:00:00,38.95199966430664,11.140999794006348,37.20600128173828,9.461999893188477,2.1640000343322754,0.0,10.024499893188477 -5018,2017-01-26 02:00:00,40.125,12.732999801635742,38.52000045776367,11.12399959564209,2.1640000343322754,0.0,9.145500183105469 -5019,2017-01-26 03:00:00,39.62200164794922,12.062999725341797,38.54700088500977,10.427000045776367,2.1640000343322754,0.0,8.706000328063965 -5020,2017-01-26 04:00:00,39.790000915527344,12.5649995803833,38.09099960327149,10.96399974822998,2.1640000343322754,0.0,8.266500473022461 -5021,2017-01-26 05:00:00,39.874000549316406,12.480999946594238,37.98400115966797,10.722000122070312,2.1640000343322754,0.0,8.046500205993652 -5022,2017-01-26 06:00:00,38.03099822998047,11.47599983215332,36.483001708984375,9.99899959564209,2.1640000343322754,0.0,8.266500473022461 -5023,2017-01-26 07:00:00,36.02000045776367,9.550000190734863,34.17699813842773,8.229000091552733,2.1640000343322754,0.0,8.266500473022461 -5024,2017-01-26 08:00:00,36.02000045776367,8.376999855041504,33.90900039672852,6.915999889373777,2.1640000343322754,0.0,8.486499786376951 -5025,2017-01-26 09:00:00,34.847000122070305,8.125,32.810001373291016,6.7820000648498535,2.1640000343322754,0.0,10.244500160217283 -5026,2017-01-26 10:00:00,31.32900047302246,5.276999950408936,29.6200008392334,4.315999984741212,2.1640000343322754,0.0,13.539999961853027 -5027,2017-01-26 11:00:00,40.459999084472656,10.638999938964844,38.62699890136719,9.194000244140623,2.1640000343322754,0.0,17.495000839233402 -5028,2017-01-26 12:00:00,40.54399871826172,10.052000045776367,38.84199905395508,8.416999816894531,2.1640000343322754,0.0,21.01099967956543 -5029,2017-01-26 13:00:00,39.45500183105469,10.38700008392334,37.76900100708008,8.873000144958496,2.1640000343322754,0.0,22.548999786376957 -5030,2017-01-26 14:00:00,38.70100021362305,10.303000450134276,37.2869987487793,8.819000244140625,2.1640000343322754,0.0,24.965999603271484 -5031,2017-01-26 15:00:00,37.025001525878906,9.633000373840332,35.19599914550781,8.14900016784668,2.1640000343322754,0.0,25.18549919128418 -5032,2017-01-26 16:00:00,35.26599884033203,8.711999893188478,33.613998413085945,7.532000064849853,2.1640000343322754,0.0,24.30649948120117 -5033,2017-01-26 17:00:00,39.20299911499024,9.04699993133545,37.76900100708008,7.71999979019165,2.1640000343322754,0.0,22.988000869750977 -5034,2017-01-26 18:00:00,40.29199981689453,9.550000190734863,38.198001861572266,7.88100004196167,2.1640000343322754,0.0,21.01099967956543 -5035,2017-01-26 19:00:00,41.88399887084961,9.29800033569336,39.887001037597656,7.425000190734862,2.1640000343322754,0.0,18.5935001373291 -5036,2017-01-26 20:00:00,43.89400100708008,10.805999755859377,41.57600021362305,8.925999641418457,2.1640000343322754,0.0,17.055500030517578 -5037,2017-01-26 21:00:00,42.55400085449219,10.220000267028809,40.55699920654297,8.52400016784668,2.1640000343322754,0.0,15.517499923706056 -5038,2017-01-26 22:00:00,42.88899993896485,10.890000343322754,40.74499893188477,8.925999641418457,2.1640000343322754,0.0,14.418999671936035 -5039,2017-01-26 23:00:00,39.0359992980957,9.633000373840332,36.992000579833984,7.907999992370605,2.1640000343322754,0.0,13.539999961853027 -5040,2017-01-27 00:00:00,36.52299880981445,9.04699993133545,34.713001251220696,7.77400016784668,2.1640000343322754,0.0,12.880499839782717 -5041,2017-01-27 01:00:00,32.669998168945305,8.208999633789062,31.14800071716309,7.130000114440918,2.1640000343322754,0.0,12.441499710083008 -5042,2017-01-27 02:00:00,31.077999114990234,6.449999809265138,29.27199935913086,5.281000137329102,2.1640000343322754,0.0,11.5625 -5043,2017-01-27 03:00:00,35.26599884033203,9.21399974822998,33.775001525878906,7.854000091552732,2.1640000343322754,0.0,10.903499603271484 -5044,2017-01-27 04:00:00,32.75299835205078,8.543999671936035,31.363000869750977,7.3979997634887695,2.1640000343322754,0.0,10.46399974822998 -5045,2017-01-27 05:00:00,35.685001373291016,9.717000007629396,34.01599884033203,8.496999740600586,2.1640000343322754,0.0,10.024499893188477 -5046,2017-01-27 06:00:00,36.104000091552734,9.381999969482422,34.31100082397461,8.121999740600586,2.1640000343322754,0.0,9.804499626159668 -5047,2017-01-27 07:00:00,31.916000366210927,7.706999778747559,30.07600021362305,6.460000038146973,2.1640000343322754,0.0,10.244500160217283 -5048,2017-01-27 08:00:00,35.685001373291016,7.454999923706055,33.64099884033203,6.111999988555907,2.1640000343322754,0.0,11.123499870300291 -5049,2017-01-27 09:00:00,35.85300064086914,6.7849998474121085,33.82899856567383,5.441999912261963,2.1640000343322754,0.0,11.5625 -5050,2017-01-27 10:00:00,36.858001708984375,6.449999809265138,34.60599899291992,4.879000186920166,2.1640000343322754,0.0,12.221500396728516 -5051,2017-01-27 11:00:00,42.05199813842773,10.13599967956543,39.94100189208984,8.444000244140625,2.1640000343322754,0.0,12.66100025177002 -5052,2017-01-27 12:00:00,42.05199813842773,10.220000267028809,39.99399948120117,8.444000244140625,2.1640000343322754,0.0,14.418999671936035 -5053,2017-01-27 13:00:00,41.29800033569336,9.800999641418455,39.18999862670898,8.041999816894531,2.1640000343322754,0.0,16.17650032043457 -5054,2017-01-27 14:00:00,40.29199981689453,9.550000190734863,38.27899932861328,7.907999992370605,2.1640000343322754,0.0,17.714500427246094 -5055,2017-01-27 15:00:00,39.0359992980957,9.130999565124512,36.992000579833984,7.452000141143799,2.1640000343322754,0.0,18.374000549316406 -5056,2017-01-27 16:00:00,39.11999893188477,8.711999893188478,37.42100143432617,7.184000015258789,2.1640000343322754,0.0,17.71500015258789 -5057,2017-01-27 17:00:00,37.69599914550781,7.958000183105469,35.8390007019043,6.298999786376952,2.1640000343322754,0.0,16.177000045776367 -5058,2017-01-27 18:00:00,36.27199935913086,6.618000030517577,34.12400054931641,5.361000061035156,2.1640000343322754,0.0,14.85849952697754 -5059,2017-01-27 19:00:00,36.858001708984375,7.119999885559082,34.5260009765625,5.5219998359680185,2.1640000343322754,0.0,13.539999961853027 -5060,2017-01-27 20:00:00,44.229000091552734,11.895000457763672,42.00500106811523,9.756999969482422,2.1640000343322754,0.0,12.66100025177002 -5061,2017-01-27 21:00:00,44.56499862670898,12.062999725341797,42.29899978637695,10.024999618530272,2.1640000343322754,0.0,12.221500396728516 -5062,2017-01-27 22:00:00,41.13000106811523,11.309000015258787,39.11000061035156,9.56999969482422,2.1640000343322754,0.0,12.001500129699709 -5063,2017-01-27 23:00:00,42.88899993896485,11.979000091552734,40.85200119018555,9.864999771118164,2.1640000343322754,0.0,11.781999588012695 -5064,2017-01-28 00:00:00,42.21900177001953,11.47599983215332,39.80699920654297,9.649999618530272,2.1640000343322754,0.0,11.5625 -5065,2017-01-28 01:00:00,39.45500183105469,11.392000198364258,37.4739990234375,9.784000396728516,2.1640000343322754,0.0,10.903499603271484 -5066,2017-01-28 02:00:00,34.93099975585937,10.303000450134276,33.10499954223633,8.979999542236328,2.1640000343322754,0.0,10.903499603271484 -5067,2017-01-28 03:00:00,37.277000427246094,11.392000198364258,35.652000427246094,9.91800022125244,2.1640000343322754,0.0,11.123499870300291 -5068,2017-01-28 04:00:00,36.77399826049805,9.717000007629396,34.766998291015625,8.203000068664549,2.1640000343322754,0.0,11.123499870300291 -5069,2017-01-28 05:00:00,36.94200134277344,9.550000190734863,35.16899871826172,8.282999992370605,2.1640000343322754,0.0,11.343000411987305 -5070,2017-01-28 06:00:00,37.44400024414063,10.052000045776367,35.73199844360352,8.657999992370605,2.1640000343322754,0.0,11.343000411987305 -5071,2017-01-28 07:00:00,36.52299880981445,9.130999565124512,34.553001403808594,7.692999839782715,2.1640000343322754,0.0,11.343000411987305 -5072,2017-01-28 08:00:00,35.85300064086914,7.539000034332275,34.01599884033203,6.058000087738037,2.1640000343322754,0.0,11.781999588012695 -5073,2017-01-28 09:00:00,38.53300094604492,9.29800033569336,36.483001708984375,7.88100004196167,2.1640000343322754,0.0,12.441499710083008 -5074,2017-01-28 10:00:00,37.61199951171875,8.041999816894531,35.49100112915039,6.486999988555907,2.1640000343322754,0.0,13.539999961853027 -5075,2017-01-28 11:00:00,40.54399871826172,10.13599967956543,38.49300003051758,8.36299991607666,2.1640000343322754,0.0,14.19950008392334 -5076,2017-01-28 12:00:00,39.95700073242188,10.052000045776367,38.198001861572266,8.416999816894531,2.1640000343322754,0.0,15.737500190734863 -5077,2017-01-28 13:00:00,35.43399810791016,8.878999710083008,33.88199996948242,7.532000064849853,2.1640000343322754,0.0,19.25300025939941 -5078,2017-01-28 14:00:00,32.92100143432617,7.789999961853027,31.711000442504893,6.728000164031982,2.1640000343322754,0.0,22.988000869750977 -5079,2017-01-28 15:00:00,37.025001525878906,9.717000007629396,35.73199844360352,8.255999565124513,2.1640000343322754,0.0,24.30649948120117 -5080,2017-01-28 16:00:00,35.76900100708008,9.04699993133545,34.28499984741211,7.665999889373777,2.1640000343322754,0.0,24.30699920654297 -5081,2017-01-28 17:00:00,33.34000015258789,6.198999881744385,31.65800094604492,5.039000034332275,2.1640000343322754,0.0,23.42799949645996 -5082,2017-01-28 18:00:00,34.429000854492195,7.288000106811522,32.72999954223633,5.923999786376952,2.1640000343322754,0.0,21.66950035095215 -5083,2017-01-28 19:00:00,35.93600082397461,8.041999816894531,33.990001678466804,6.701000213623048,2.1640000343322754,0.0,20.35149955749512 -5084,2017-01-28 20:00:00,38.198001861572266,9.381999969482422,36.3489990234375,7.88100004196167,2.1640000343322754,0.0,19.03350067138672 -5085,2017-01-28 21:00:00,38.03099822998047,10.470999717712402,36.59000015258789,9.11400032043457,2.1640000343322754,0.0,17.714500427246094 -5086,2017-01-28 22:00:00,36.02000045776367,10.13599967956543,34.097000122070305,8.73900032043457,2.1640000343322754,0.0,16.835500717163086 -5087,2017-01-28 23:00:00,37.52799987792969,10.973999977111816,35.946998596191406,9.890999794006348,2.1640000343322754,0.0,15.957500457763672 -5088,2017-01-29 00:00:00,36.02000045776367,10.55500030517578,34.57899856567383,9.16800022125244,2.1640000343322754,0.0,15.517499923706056 -5089,2017-01-29 01:00:00,31.99900054931641,9.21399974822998,30.42499923706055,7.960999965667725,2.1640000343322754,0.0,15.517499923706056 -5090,2017-01-29 02:00:00,34.93099975585937,10.220000267028809,32.91699981689453,8.873000144958496,2.1640000343322754,0.0,15.517499923706056 -5091,2017-01-29 03:00:00,34.0099983215332,10.303000450134276,32.810001373291016,9.16800022125244,2.1640000343322754,0.0,15.517499923706056 -5092,2017-01-29 04:00:00,34.09400177001953,10.052000045776367,32.59600067138672,8.845999717712402,2.1640000343322754,0.0,15.517499923706056 -5093,2017-01-29 05:00:00,34.763999938964844,10.470999717712402,33.26599884033203,9.248000144958496,2.1640000343322754,0.0,15.517499923706056 -5094,2017-01-29 06:00:00,34.59600067138672,10.470999717712402,33.18600082397461,9.194000244140623,2.1640000343322754,0.0,15.078499794006348 -5095,2017-01-29 07:00:00,35.93600082397461,10.052000045776367,34.097000122070305,8.873000144958496,2.1640000343322754,0.0,14.638500213623049 -5096,2017-01-29 08:00:00,31.66399955749512,6.533999919891357,29.834999084472656,5.388000011444092,2.1640000343322754,0.0,14.638500213623049 -5097,2017-01-29 09:00:00,37.44400024414063,10.55500030517578,35.972999572753906,9.16800022125244,2.1640000343322754,0.0,15.517499923706056 -5098,2017-01-29 10:00:00,33.25600051879883,8.041999816894531,31.52400016784668,6.809000015258789,2.1640000343322754,0.0,16.616500854492188 -5099,2017-01-29 11:00:00,37.277000427246094,9.800999641418455,35.625,8.52400016784668,2.1640000343322754,0.0,17.495000839233402 -5100,2017-01-29 12:00:00,35.43399810791016,8.878999710083008,34.01599884033203,7.854000091552732,2.1640000343322754,0.0,16.616500854492188 -5101,2017-01-29 13:00:00,35.0989990234375,9.633000373840332,33.667999267578125,8.390000343322754,2.1640000343322754,0.0,15.95699977874756 -5102,2017-01-29 14:00:00,37.86299896240234,10.638999938964844,36.1609992980957,9.086999893188477,2.1640000343322754,0.0,15.07800006866455 -5103,2017-01-29 15:00:00,38.53300094604492,10.722000122070312,36.992000579833984,9.086999893188477,2.1640000343322754,0.0,14.199000358581545 -5104,2017-01-29 16:00:00,40.54399871826172,11.225000381469728,38.59999847412109,9.54300022125244,2.1640000343322754,0.0,13.539999961853027 -5105,2017-01-29 17:00:00,41.13000106811523,10.805999755859377,39.16299819946289,9.0600004196167,2.1640000343322754,0.0,13.100500106811523 -5106,2017-01-29 18:00:00,40.20899963378906,10.470999717712402,38.01100158691406,8.845999717712402,2.1640000343322754,0.0,12.001999855041506 -5107,2017-01-29 19:00:00,42.05199813842773,10.973999977111816,39.99399948120117,9.086999893188477,2.1640000343322754,0.0,10.903499603271484 -5108,2017-01-29 20:00:00,40.20899963378906,10.55500030517578,38.09099960327149,8.899999618530273,2.1640000343322754,0.0,10.244000434875488 -5109,2017-01-29 21:00:00,41.54899978637695,11.140999794006348,39.45800018310547,9.381999969482422,2.1640000343322754,0.0,9.80500030517578 -5110,2017-01-29 22:00:00,38.28200149536133,10.55500030517578,36.24100112915039,8.925999641418457,2.1640000343322754,0.0,10.024499893188477 -5111,2017-01-29 23:00:00,36.68999862670898,10.220000267028809,35.007999420166016,8.873000144958496,2.1640000343322754,0.0,10.024499893188477 -5112,2017-01-30 00:00:00,36.858001708984375,10.638999938964844,35.007999420166016,9.034000396728516,2.1640000343322754,0.0,10.024499893188477 -5113,2017-01-30 01:00:00,33.92599868774414,9.968000411987305,32.59600067138672,8.630999565124513,2.1640000343322754,0.0,10.024499893188477 -5114,2017-01-30 02:00:00,33.590999603271484,8.711999893188478,31.84499931335449,7.50600004196167,2.1640000343322754,0.0,10.024499893188477 -5115,2017-01-30 03:00:00,35.0989990234375,8.963000297546387,33.588001251220696,7.77400016784668,2.1640000343322754,0.0,9.585000038146973 -5116,2017-01-30 04:00:00,34.68000030517578,8.795999526977539,33.10499954223633,7.71999979019165,2.1640000343322754,0.0,9.365500450134276 -5117,2017-01-30 05:00:00,34.17699813842773,8.795999526977539,32.327999114990234,7.479000091552732,2.1640000343322754,0.0,8.706000328063965 -5118,2017-01-30 06:00:00,34.0099983215332,8.543999671936035,32.623001098632805,7.210999965667725,2.1640000343322754,0.0,7.607500076293945 -5119,2017-01-30 07:00:00,34.68000030517578,8.208999633789062,32.810001373291016,6.755000114440918,2.1640000343322754,0.0,7.167500019073486 -5120,2017-01-30 08:00:00,35.518001556396484,7.288000106811522,33.64099884033203,6.004000186920166,2.1640000343322754,0.0,6.728499889373777 -5121,2017-01-30 09:00:00,35.685001373291016,7.958000183105469,33.80199813842773,6.701000213623048,2.1640000343322754,0.0,7.387499809265138 -5122,2017-01-30 10:00:00,40.54399871826172,10.55500030517578,38.78799819946289,8.925999641418457,2.1640000343322754,0.0,9.365500450134276 -5123,2017-01-30 11:00:00,42.47000122070313,11.225000381469728,40.74499893188477,9.515999794006348,2.1640000343322754,0.0,11.342499732971191 -5124,2017-01-30 12:00:00,40.62699890136719,9.800999641418455,39.18999862670898,8.390000343322754,2.1640000343322754,0.0,13.539999961853027 -5125,2017-01-30 13:00:00,40.29199981689453,10.55500030517578,38.59999847412109,8.899999618530273,2.1640000343322754,0.0,14.85849952697754 -5126,2017-01-30 14:00:00,40.71099853515625,10.973999977111816,39.24399948120117,9.354999542236328,2.1640000343322754,0.0,16.615999221801758 -5127,2017-01-30 15:00:00,41.04600143432617,10.973999977111816,39.56499862670898,9.194000244140623,2.1640000343322754,0.0,16.396499633789062 -5128,2017-01-30 16:00:00,41.632999420166016,11.140999794006348,40.23500061035156,9.32800006866455,2.1640000343322754,0.0,15.078499794006348 -5129,2017-01-30 17:00:00,41.46500015258789,9.885000228881836,39.75299835205078,8.470999717712402,2.1640000343322754,0.0,13.100500106811523 -5130,2017-01-30 18:00:00,42.05199813842773,10.13599967956543,40.28900146484375,8.416999816894531,2.1640000343322754,0.0,10.903499603271484 -5131,2017-01-30 19:00:00,40.9630012512207,9.04699993133545,38.84199905395508,7.425000190734862,2.1640000343322754,0.0,9.585000038146973 -5132,2017-01-30 20:00:00,47.32899856567383,12.5649995803833,45.2750015258789,10.29300022125244,2.1640000343322754,0.0,8.706000328063965 -5133,2017-01-30 21:00:00,46.82600021362305,12.480999946594238,44.92599868774414,10.159000396728516,2.1640000343322754,0.0,8.266500473022461 -5134,2017-01-30 22:00:00,44.56499862670898,11.895000457763672,42.40700149536133,10.024999618530272,2.1640000343322754,0.0,7.607500076293945 -5135,2017-01-30 23:00:00,40.79499816894531,10.638999938964844,39.02899932861328,9.354999542236328,2.1640000343322754,0.0,7.167500019073486 -5136,2017-01-31 00:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5137,2017-01-31 01:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5138,2017-01-31 02:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5139,2017-01-31 03:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5140,2017-01-31 04:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5141,2017-01-31 05:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5142,2017-01-31 06:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5143,2017-01-31 07:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5144,2017-01-31 08:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5145,2017-01-31 09:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5146,2017-01-31 10:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5147,2017-01-31 11:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5148,2017-01-31 12:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5149,2017-01-31 13:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5150,2017-01-31 14:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5151,2017-01-31 15:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5152,2017-01-31 16:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5153,2017-01-31 17:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5154,2017-01-31 18:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5155,2017-01-31 19:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5156,2017-01-31 20:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5157,2017-01-31 21:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5158,2017-01-31 22:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5159,2017-01-31 23:00:00,37.69599914550781,9.968000411987305,35.893001556396484,8.444000244140625,2.1640000343322754,0.0,6.947999954223633 -5160,2017-02-01 00:00:00,39.0359992980957,10.470999717712402,37.2869987487793,8.899999618530273,2.1640000343322754,0.0,10.903499603271484 -5161,2017-02-01 01:00:00,37.77899932861328,9.800999641418455,36.0,8.336999893188478,2.1640000343322754,0.0,9.585000038146973 -5162,2017-02-01 02:00:00,36.77399826049805,9.717000007629396,35.11600112915039,8.282999992370605,2.1640000343322754,0.0,9.365500450134276 -5163,2017-02-01 03:00:00,36.35499954223633,9.633000373840332,34.79399871826172,8.255999565124513,2.1640000343322754,0.0,9.365500450134276 -5164,2017-02-01 04:00:00,34.261001586914055,9.130999565124512,32.623001098632805,7.665999889373777,2.1640000343322754,0.0,9.365500450134276 -5165,2017-02-01 05:00:00,36.77399826049805,9.800999641418455,35.222999572753906,8.550999641418457,2.1640000343322754,0.0,9.145500183105469 -5166,2017-02-01 06:00:00,37.946998596191406,10.55500030517578,36.29499816894531,8.95300006866455,2.1640000343322754,0.0,8.92549991607666 -5167,2017-02-01 07:00:00,33.088001251220696,7.539000034332275,31.22900009155273,6.433000087738037,2.1640000343322754,0.0,8.92549991607666 -5168,2017-02-01 08:00:00,35.85300064086914,7.623000144958496,33.775001525878906,6.138999938964844,2.1640000343322754,0.0,8.92549991607666 -5169,2017-02-01 09:00:00,41.2140007019043,10.638999938964844,39.37799835205078,9.006999969482422,2.1640000343322754,0.0,8.92549991607666 -5170,2017-02-01 10:00:00,43.64300155639648,11.47599983215332,42.00500106811523,9.677000045776367,2.1640000343322754,0.0,9.804499626159668 -5171,2017-02-01 11:00:00,45.90499877929688,12.062999725341797,43.77399826049805,9.91800022125244,2.1640000343322754,0.0,10.244500160217283 -5172,2017-02-01 12:00:00,44.900001525878906,11.895000457763672,43.479000091552734,9.784000396728516,2.1640000343322754,0.0,10.244500160217283 -5173,2017-02-01 13:00:00,41.04600143432617,9.465999603271484,39.21699905395508,7.88100004196167,2.1640000343322754,0.0,10.683500289916992 -5174,2017-02-01 14:00:00,45.1510009765625,12.062999725341797,43.45199966430664,9.91800022125244,2.1640000343322754,0.0,11.123000144958496 -5175,2017-02-01 15:00:00,46.15599822998047,12.39799976348877,44.25600051879883,10.185999870300291,2.1640000343322754,0.0,11.343000411987305 -5176,2017-02-01 16:00:00,46.82600021362305,12.314000129699709,44.73899841308594,10.07900047302246,2.1640000343322754,0.0,11.343000411987305 -5177,2017-02-01 17:00:00,47.32899856567383,12.229999542236328,45.16799926757813,10.024999618530272,2.1640000343322754,0.0,11.343000411987305 -5178,2017-02-01 18:00:00,48.91999816894531,12.984000205993652,46.72200012207031,10.508000373840332,2.1640000343322754,0.0,10.903499603271484 -5179,2017-02-01 19:00:00,42.97299957275391,8.963000297546387,40.82500076293945,7.1570000648498535,2.1640000343322754,0.0,10.024499893188477 -5180,2017-02-01 20:00:00,45.48600006103516,9.800999641418455,43.34500122070313,7.747000217437744,2.1640000343322754,0.0,9.145500183105469 -5181,2017-02-01 21:00:00,45.31800079345703,11.057000160217283,43.13000106811523,9.140999794006348,2.1640000343322754,0.0,8.706000328063965 -5182,2017-02-01 22:00:00,42.72200012207031,10.638999938964844,40.63800048828125,8.819000244140625,2.1640000343322754,0.0,8.706000328063965 -5183,2017-02-01 23:00:00,41.632999420166016,10.55500030517578,39.61899948120117,8.630999565124513,2.1640000343322754,0.0,8.266500473022461 -5184,2017-02-02 00:00:00,39.790000915527344,10.38700008392334,38.11800003051758,8.765000343322754,2.1640000343322754,0.0,7.827000141143799 -5185,2017-02-02 01:00:00,38.86800003051758,10.303000450134276,37.15299987792969,8.711999893188478,2.1640000343322754,0.0,7.827000141143799 -5186,2017-02-02 02:00:00,37.77899932861328,9.800999641418455,36.1879997253418,8.255999565124513,2.1640000343322754,0.0,7.387499809265138 -5187,2017-02-02 03:00:00,37.69599914550781,9.968000411987305,35.8390007019043,8.496999740600586,2.1640000343322754,0.0,7.387499809265138 -5188,2017-02-02 04:00:00,37.77899932861328,10.220000267028809,36.13399887084961,8.73900032043457,2.1640000343322754,0.0,7.167500019073486 -5189,2017-02-02 05:00:00,37.10900115966797,9.633000373840332,35.38399887084961,8.255999565124513,2.1640000343322754,0.0,7.167500019073486 -5190,2017-02-02 06:00:00,36.1879997253418,9.885000228881836,34.740001678466804,8.685000419616701,2.1640000343322754,0.0,7.167500019073486 -5191,2017-02-02 07:00:00,33.674999237060554,8.125,31.60400009155273,6.755000114440918,2.1640000343322754,0.0,7.167500019073486 -5192,2017-02-02 08:00:00,36.68999862670898,7.958000183105469,34.6870002746582,6.326000213623048,2.1640000343322754,0.0,6.947999954223633 -5193,2017-02-02 09:00:00,42.80500030517578,11.309000015258787,40.82500076293945,9.302000045776367,2.1640000343322754,0.0,7.60699987411499 -5194,2017-02-02 10:00:00,43.2239990234375,11.057000160217283,40.87900161743164,9.086999893188477,2.1640000343322754,0.0,8.486000061035156 -5195,2017-02-02 11:00:00,44.39699935913086,11.895000457763672,42.43399810791016,9.677000045776367,2.1640000343322754,0.0,8.925999641418457 -5196,2017-02-02 12:00:00,45.48600006103516,11.810999870300291,43.63999938964844,9.70400047302246,2.1640000343322754,0.0,10.244000434875488 -5197,2017-02-02 13:00:00,45.82099914550781,12.64900016784668,43.98799896240234,10.642000198364258,2.1640000343322754,0.0,11.5625 -5198,2017-02-02 14:00:00,43.72700119018555,11.895000457763672,42.00500106811523,10.024999618530272,2.1640000343322754,0.0,12.880999565124512 -5199,2017-02-02 15:00:00,47.74800109863281,14.156999588012695,45.89099884033203,11.847999572753904,2.1640000343322754,0.0,13.760000228881836 -5200,2017-02-02 16:00:00,47.1609992980957,13.402999877929688,45.2750015258789,10.989999771118164,2.1640000343322754,0.0,13.760000228881836 -5201,2017-02-02 17:00:00,45.06700134277344,11.644000053405762,43.15700149536133,9.677000045776367,2.1640000343322754,0.0,13.31999969482422 -5202,2017-02-02 18:00:00,45.82099914550781,11.979000091552734,43.37200164794922,9.810999870300291,2.1640000343322754,0.0,12.66100025177002 -5203,2017-02-02 19:00:00,40.87900161743164,9.29800033569336,38.52000045776367,7.34499979019165,2.1640000343322754,0.0,12.66100025177002 -5204,2017-02-02 20:00:00,46.2400016784668,11.644000053405762,43.90800094604492,9.461999893188477,2.1640000343322754,0.0,12.221500396728516 -5205,2017-02-02 21:00:00,49.0880012512207,13.56999969482422,46.749000549316406,11.178000450134276,2.1640000343322754,0.0,11.781999588012695 -5206,2017-02-02 22:00:00,41.88399887084961,11.140999794006348,39.99399948120117,9.140999794006348,2.1640000343322754,0.0,11.343000411987305 -5207,2017-02-02 23:00:00,44.0620002746582,12.480999946594238,42.05799865722656,10.427000045776367,2.1640000343322754,0.0,11.781999588012695 -5208,2017-02-03 00:00:00,38.198001861572266,10.303000450134276,36.26800155639648,8.845999717712402,2.1640000343322754,0.0,11.343000411987305 -5209,2017-02-03 01:00:00,39.37099838256836,11.392000198364258,38.0369987487793,9.838000297546388,2.1640000343322754,0.0,10.903499603271484 -5210,2017-02-03 02:00:00,38.53300094604492,10.805999755859377,36.483001708984375,9.302000045776367,2.1640000343322754,0.0,10.683500289916992 -5211,2017-02-03 03:00:00,35.93600082397461,10.638999938964844,34.60599899291992,9.32800006866455,2.1640000343322754,0.0,10.683500289916992 -5212,2017-02-03 04:00:00,38.11399841308594,11.140999794006348,36.29499816894531,9.649999618530272,2.1640000343322754,0.0,10.46399974822998 -5213,2017-02-03 05:00:00,39.11999893188477,11.5600004196167,37.42100143432617,9.890999794006348,2.1640000343322754,0.0,10.244000434875488 -5214,2017-02-03 06:00:00,33.92599868774414,8.963000297546387,32.327999114990234,7.692999839782715,2.1640000343322754,0.0,10.024499893188477 -5215,2017-02-03 07:00:00,33.84199905395508,8.293000221252441,31.97900009155273,6.995999813079834,2.1640000343322754,0.0,9.585000038146973 -5216,2017-02-03 08:00:00,37.86299896240234,9.381999969482422,35.86600112915039,7.98799991607666,2.1640000343322754,0.0,9.585000038146973 -5217,2017-02-03 09:00:00,45.06700134277344,13.319000244140623,43.21099853515625,11.258000373840332,2.1640000343322754,0.0,9.585000038146973 -5218,2017-02-03 10:00:00,41.79999923706055,9.633000373840332,40.15499877929688,8.041999816894531,2.1640000343322754,0.0,10.46399974822998 -5219,2017-02-03 11:00:00,43.14099884033203,10.052000045776367,41.36100006103516,8.095000267028809,2.1640000343322754,0.0,10.903499603271484 -5220,2017-02-03 12:00:00,47.07799911499024,13.067999839782717,45.00699996948242,10.69499969482422,2.1640000343322754,0.0,11.123499870300291 -5221,2017-02-03 13:00:00,48.41799926757813,14.241000175476074,46.4010009765625,11.767999649047852,2.1640000343322754,0.0,11.123499870300291 -5222,2017-02-03 14:00:00,48.66899871826172,14.241000175476074,46.88299942016602,12.08899974822998,2.1640000343322754,0.0,11.123499870300291 -5223,2017-02-03 15:00:00,48.41799926757813,14.072999954223633,45.91799926757813,11.687000274658203,2.1640000343322754,0.0,10.903499603271484 -5224,2017-02-03 16:00:00,48.33399963378906,13.821999549865724,46.13299942016602,11.5,2.1640000343322754,0.0,11.343000411987305 -5225,2017-02-03 17:00:00,46.40700149536133,12.145999908447266,43.88100051879883,9.864999771118164,2.1640000343322754,0.0,11.781999588012695 -5226,2017-02-03 18:00:00,47.66400146484375,13.73799991607666,45.4630012512207,11.418999671936035,2.1640000343322754,0.0,12.001999855041506 -5227,2017-02-03 19:00:00,44.48099899291992,11.140999794006348,41.95100021362305,9.274999618530272,2.1640000343322754,0.0,12.221500396728516 -5228,2017-02-03 20:00:00,44.983001708984375,11.727999687194824,42.56800079345703,9.515999794006348,2.1640000343322754,0.0,12.221500396728516 -5229,2017-02-03 21:00:00,45.98899841308594,12.732999801635742,43.935001373291016,10.45400047302246,2.1640000343322754,0.0,12.441499710083008 -5230,2017-02-03 22:00:00,42.05199813842773,11.810999870300291,40.04800033569336,10.024999618530272,2.1640000343322754,0.0,12.441499710083008 -5231,2017-02-03 23:00:00,34.847000122070305,8.963000297546387,32.998001098632805,7.559000015258789,2.1640000343322754,0.0,12.880499839782717 -5232,2017-02-04 00:00:00,40.04100036621094,11.979000091552734,38.17100143432617,10.31999969482422,2.1640000343322754,0.0,12.880499839782717 -5233,2017-02-04 01:00:00,39.70600128173828,11.979000091552734,37.84999847412109,10.29300022125244,2.1640000343322754,0.0,12.880499839782717 -5234,2017-02-04 02:00:00,36.94200134277344,10.38700008392334,35.38399887084961,8.925999641418457,2.1640000343322754,0.0,12.66100025177002 -5235,2017-02-04 03:00:00,36.104000091552734,9.800999641418455,34.87400054931641,8.470999717712402,2.1640000343322754,0.0,12.221500396728516 -5236,2017-02-04 04:00:00,37.77899932861328,11.727999687194824,36.027000427246094,10.024999618530272,2.1640000343322754,0.0,11.781999588012695 -5237,2017-02-04 05:00:00,36.94200134277344,11.5600004196167,35.597999572753906,10.159000396728516,2.1640000343322754,0.0,11.343000411987305 -5238,2017-02-04 06:00:00,35.93600082397461,10.722000122070312,34.1510009765625,9.409000396728516,2.1640000343322754,0.0,11.123000144958496 -5239,2017-02-04 07:00:00,39.95700073242188,11.309000015258787,37.90299987792969,9.729999542236328,2.1640000343322754,0.0,11.343000411987305 -5240,2017-02-04 08:00:00,37.61199951171875,8.543999671936035,35.86600112915039,7.1570000648498535,2.1640000343322754,0.0,11.343000411987305 -5241,2017-02-04 09:00:00,44.64799880981445,12.984000205993652,42.83599853515625,11.017000198364258,2.1640000343322754,0.0,11.781999588012695 -5242,2017-02-04 10:00:00,41.79999923706055,9.968000411987305,39.99399948120117,8.121999740600586,2.1640000343322754,0.0,12.221500396728516 -5243,2017-02-04 11:00:00,42.72200012207031,10.722000122070312,40.82500076293945,8.711999893188478,2.1640000343322754,0.0,13.100500106811523 -5244,2017-02-04 12:00:00,45.98899841308594,12.732999801635742,44.41699981689453,10.74899959564209,2.1640000343322754,0.0,13.759499549865724 -5245,2017-02-04 13:00:00,46.74300003051758,13.654000282287598,44.900001525878906,11.526000022888184,2.1640000343322754,0.0,14.418999671936035 -5246,2017-02-04 14:00:00,47.07799911499024,14.072999954223633,45.32899856567383,12.008999824523926,2.1640000343322754,0.0,15.078499794006348 -5247,2017-02-04 15:00:00,45.1510009765625,13.487000465393065,43.66699981689453,11.472999572753904,2.1640000343322754,0.0,15.29800033569336 -5248,2017-02-04 16:00:00,46.99399948120117,13.654000282287598,45.19400024414063,11.526000022888184,2.1640000343322754,0.0,15.517999649047852 -5249,2017-02-04 17:00:00,44.14599990844727,11.140999794006348,41.97800064086914,9.248000144958496,2.1640000343322754,0.0,15.737500190734863 -5250,2017-02-04 18:00:00,44.983001708984375,10.973999977111816,42.72800064086914,8.95300006866455,2.1640000343322754,0.0,15.517499923706056 -5251,2017-02-04 19:00:00,44.900001525878906,11.47599983215332,43.02299880981445,9.220999717712402,2.1640000343322754,0.0,15.29800033569336 -5252,2017-02-04 20:00:00,45.31800079345703,12.64900016784668,43.34500122070313,10.347000122070312,2.1640000343322754,0.0,15.078499794006348 -5253,2017-02-04 21:00:00,45.56999969482422,10.805999755859377,43.66699981689453,8.73900032043457,2.1640000343322754,0.0,14.85849952697754 -5254,2017-02-04 22:00:00,42.47000122070313,11.5600004196167,40.28900146484375,9.649999618530272,2.1640000343322754,0.0,14.85849952697754 -5255,2017-02-04 23:00:00,45.82099914550781,13.56999969482422,44.17599868774414,11.633999824523926,2.1640000343322754,0.0,14.85849952697754 -5256,2017-02-05 00:00:00,42.387001037597656,13.487000465393065,40.71799850463867,11.607000350952148,2.1640000343322754,0.0,14.638500213623049 -5257,2017-02-05 01:00:00,41.79999923706055,13.402999877929688,40.50299835205078,11.875,2.1640000343322754,0.0,14.638500213623049 -5258,2017-02-05 02:00:00,41.38100051879883,13.152000427246096,40.55699920654297,11.5,2.1640000343322754,0.0,13.759499549865724 -5259,2017-02-05 03:00:00,38.53300094604492,11.979000091552734,37.04600143432617,10.560999870300291,2.1640000343322754,0.0,12.880499839782717 -5260,2017-02-05 04:00:00,39.70600128173828,12.062999725341797,38.573001861572266,10.642000198364258,2.1640000343322754,0.0,12.441499710083008 -5261,2017-02-05 05:00:00,40.54399871826172,12.732999801635742,38.92200088500977,11.151000022888184,2.1640000343322754,0.0,12.441499710083008 -5262,2017-02-05 06:00:00,39.53799819946289,11.47599983215332,37.87699890136719,9.838000297546388,2.1640000343322754,0.0,12.221500396728516 -5263,2017-02-05 07:00:00,40.04100036621094,10.55500030517578,38.06399917602539,8.925999641418457,2.1640000343322754,0.0,12.221500396728516 -5264,2017-02-05 08:00:00,37.277000427246094,8.461000442504883,35.40999984741211,6.915999889373777,2.1640000343322754,0.0,12.441499710083008 -5265,2017-02-05 09:00:00,41.29800033569336,10.470999717712402,39.67300033569336,8.711999893188478,2.1640000343322754,0.0,13.100500106811523 -5266,2017-02-05 10:00:00,43.14099884033203,12.984000205993652,41.415000915527344,10.989999771118164,2.1640000343322754,0.0,13.759499549865724 -5267,2017-02-05 11:00:00,45.06700134277344,12.062999725341797,43.34500122070313,9.784000396728516,2.1640000343322754,0.0,14.19950008392334 -5268,2017-02-05 12:00:00,44.56499862670898,12.314000129699709,42.88899993896485,10.37399959564209,2.1640000343322754,0.0,15.517499923706056 -5269,2017-02-05 13:00:00,42.55400085449219,12.480999946594238,40.85200119018555,10.642000198364258,2.1640000343322754,0.0,18.374000549316406 -5270,2017-02-05 14:00:00,43.2239990234375,12.229999542236328,41.709999084472656,10.508000373840332,2.1640000343322754,0.0,20.79100036621093 -5271,2017-02-05 15:00:00,41.88399887084961,12.314000129699709,40.39599990844727,10.480999946594238,2.1640000343322754,0.0,22.108999252319336 -5272,2017-02-05 16:00:00,41.79999923706055,11.979000091552734,40.10100173950195,10.267000198364258,2.1640000343322754,0.0,21.88949966430664 -5273,2017-02-05 17:00:00,44.81600189208984,12.899999618530272,43.02299880981445,10.989999771118164,2.1640000343322754,0.0,19.912500381469727 -5274,2017-02-05 18:00:00,46.90999984741211,12.899999618530272,44.60499954223633,10.45400047302246,2.1640000343322754,0.0,17.495000839233402 -5275,2017-02-05 19:00:00,44.900001525878906,11.810999870300291,42.72800064086914,9.890999794006348,2.1640000343322754,0.0,15.957500457763672 -5276,2017-02-05 20:00:00,44.48099899291992,10.805999755859377,42.29899978637695,8.604999542236326,2.1640000343322754,0.0,14.638500213623049 -5277,2017-02-05 21:00:00,49.42300033569336,14.659000396728516,47.63399887084961,12.331000328063965,2.1640000343322754,0.0,13.539999961853027 -5278,2017-02-05 22:00:00,47.24499893188477,14.241000175476074,45.22100067138672,11.875,2.1640000343322754,0.0,12.66100025177002 -5279,2017-02-05 23:00:00,44.14599990844727,13.067999839782717,42.084999084472656,11.071000099182127,2.1640000343322754,0.0,12.221500396728516 -5280,2017-02-06 00:00:00,38.11399841308594,10.470999717712402,36.42900085449219,9.006999969482422,2.1640000343322754,0.0,11.781999588012695 -5281,2017-02-06 01:00:00,40.71099853515625,12.480999946594238,39.13600158691406,10.69499969482422,2.1640000343322754,0.0,11.343000411987305 -5282,2017-02-06 02:00:00,36.858001708984375,10.805999755859377,35.19599914550781,9.354999542236328,2.1640000343322754,0.0,10.903499603271484 -5283,2017-02-06 03:00:00,39.53799819946289,11.895000457763672,38.06399917602539,10.213000297546388,2.1640000343322754,0.0,10.244500160217283 -5284,2017-02-06 04:00:00,39.11999893188477,11.727999687194824,37.58200073242188,10.159000396728516,2.1640000343322754,0.0,10.024499893188477 -5285,2017-02-06 05:00:00,39.62200164794922,12.314000129699709,37.93000030517578,10.614999771118164,2.1640000343322754,0.0,10.024499893188477 -5286,2017-02-06 06:00:00,38.44900131225586,11.644000053405762,36.696998596191406,10.133000373840332,2.1640000343322754,0.0,10.244500160217283 -5287,2017-02-06 07:00:00,41.632999420166016,12.64900016784668,40.04800033569336,10.829999923706056,2.1640000343322754,0.0,10.244500160217283 -5288,2017-02-06 08:00:00,37.277000427246094,8.376999855041504,35.03499984741211,6.620999813079834,2.1640000343322754,0.0,10.244500160217283 -5289,2017-02-06 09:00:00,44.81600189208984,13.98900032043457,43.34500122070313,11.982000350952148,2.1640000343322754,0.0,10.683500289916992 -5290,2017-02-06 10:00:00,42.21900177001953,11.057000160217283,40.61100006103516,9.302000045776367,2.1640000343322754,0.0,11.781999588012695 -5291,2017-02-06 11:00:00,43.30799865722656,11.47599983215332,41.415000915527344,9.461999893188477,2.1640000343322754,0.0,13.31999969482422 -5292,2017-02-06 12:00:00,44.48099899291992,11.392000198364258,42.75500106811523,9.461999893188477,2.1640000343322754,0.0,16.396499633789062 -5293,2017-02-06 13:00:00,46.32400131225586,14.491999626159668,44.33700180053711,11.741000175476074,2.1640000343322754,0.0,17.934499740600586 -5294,2017-02-06 14:00:00,46.2400016784668,14.241000175476074,44.52399826049805,12.08899974822998,2.1640000343322754,0.0,18.374000549316406 -5295,2017-02-06 15:00:00,44.900001525878906,13.821999549865724,43.29100036621094,11.579999923706056,2.1640000343322754,0.0,20.131999969482425 -5296,2017-02-06 16:00:00,46.57500076293945,15.413000106811523,44.41699981689453,12.84000015258789,2.1640000343322754,0.0,19.47249984741211 -5297,2017-02-06 17:00:00,45.48600006103516,13.402999877929688,42.83599853515625,11.043999671936035,2.1640000343322754,0.0,17.274999618530273 -5298,2017-02-06 18:00:00,50.428001403808594,15.246000289916992,47.41899871826172,12.437999725341797,2.1640000343322754,0.0,15.29800033569336 -5299,2017-02-06 19:00:00,46.90999984741211,13.56999969482422,44.20299911499024,11.12399959564209,2.1640000343322754,0.0,14.418999671936035 -5300,2017-02-06 20:00:00,48.91999816894531,13.319000244140623,46.374000549316406,10.74899959564209,2.1640000343322754,0.0,13.539999961853027 -5301,2017-02-06 21:00:00,50.512001037597656,16.250999450683597,47.98199844360352,13.21500015258789,2.1640000343322754,0.0,13.100500106811523 -5302,2017-02-06 22:00:00,45.73699951171875,13.98900032043457,43.69300079345703,11.66100025177002,2.1640000343322754,0.0,12.221500396728516 -5303,2017-02-06 23:00:00,43.97800064086914,13.402999877929688,42.165000915527344,11.392000198364258,2.1640000343322754,0.0,11.781999588012695 -5304,2017-02-07 00:00:00,45.1510009765625,14.576000213623049,43.55899810791016,12.357000350952148,2.1640000343322754,0.0,11.343000411987305 -5305,2017-02-07 01:00:00,43.81100082397461,14.324000358581545,42.13899993896485,12.357000350952148,2.1640000343322754,0.0,10.903499603271484 -5306,2017-02-07 02:00:00,38.95199966430664,11.644000053405762,37.68899917602539,9.890999794006348,2.1640000343322754,0.0,10.46399974822998 -5307,2017-02-07 03:00:00,42.1349983215332,12.984000205993652,40.47700119018555,11.043999671936035,2.1640000343322754,0.0,9.585000038146973 -5308,2017-02-07 04:00:00,39.70600128173828,11.5600004196167,38.0369987487793,9.99899959564209,2.1640000343322754,0.0,9.145500183105469 -5309,2017-02-07 05:00:00,41.71599960327149,12.815999984741213,40.02099990844727,11.071000099182127,2.1640000343322754,0.0,8.706000328063965 -5310,2017-02-07 06:00:00,43.05699920654297,13.98900032043457,41.57600021362305,11.875,2.1640000343322754,0.0,7.827000141143799 -5311,2017-02-07 07:00:00,40.71099853515625,11.644000053405762,38.70800018310547,9.756999969482422,2.1640000343322754,0.0,7.60699987411499 -5312,2017-02-07 08:00:00,38.86800003051758,9.885000228881836,36.992000579833984,8.041999816894531,2.1640000343322754,0.0,7.827000141143799 -5313,2017-02-07 09:00:00,42.63800048828125,11.140999794006348,41.09299850463867,9.32800006866455,2.1640000343322754,0.0,9.145500183105469 -5314,2017-02-07 10:00:00,37.86299896240234,10.052000045776367,36.13399887084961,8.229000091552733,2.1640000343322754,0.0,11.123000144958496 -5315,2017-02-07 11:00:00,38.70100021362305,10.13599967956543,36.5629997253418,8.229000091552733,2.1640000343322754,0.0,13.539999961853027 -5316,2017-02-07 12:00:00,39.0359992980957,8.963000297546387,37.1259994506836,7.3979997634887695,2.1640000343322754,0.0,14.418999671936035 -5317,2017-02-07 13:00:00,39.70600128173828,11.057000160217283,37.87699890136719,9.194000244140623,2.1640000343322754,0.0,13.979499816894531 -5318,2017-02-07 14:00:00,40.29199981689453,11.47599983215332,38.54700088500977,9.54300022125244,2.1640000343322754,0.0,13.760000228881836 -5319,2017-02-07 15:00:00,40.54399871826172,11.5600004196167,38.573001861572266,9.54300022125244,2.1640000343322754,0.0,13.539999961853027 -5320,2017-02-07 16:00:00,40.9630012512207,10.55500030517578,39.00199890136719,8.711999893188478,2.1640000343322754,0.0,13.539999961853027 -5321,2017-02-07 17:00:00,45.98899841308594,12.314000129699709,43.29100036621094,9.838000297546388,2.1640000343322754,0.0,13.100500106811523 -5322,2017-02-07 18:00:00,46.2400016784668,12.145999908447266,44.229000091552734,9.94499969482422,2.1640000343322754,0.0,13.100500106811523 -5323,2017-02-07 19:00:00,46.32400131225586,13.067999839782717,43.90800094604492,10.69499969482422,2.1640000343322754,0.0,13.100500106811523 -5324,2017-02-07 20:00:00,47.07799911499024,13.152000427246096,44.81900024414063,10.74899959564209,2.1640000343322754,0.0,13.100500106811523 -5325,2017-02-07 21:00:00,47.32899856567383,13.402999877929688,45.19400024414063,10.989999771118164,2.1640000343322754,0.0,12.880499839782717 -5326,2017-02-07 22:00:00,48.33399963378906,13.904999732971191,46.07899856567383,11.418999671936035,2.1640000343322754,0.0,11.781999588012695 -5327,2017-02-07 23:00:00,44.39699935913086,13.152000427246096,42.459999084472656,10.803000450134276,2.1640000343322754,0.0,11.123499870300291 -5328,2017-02-08 00:00:00,42.55400085449219,12.5649995803833,40.85200119018555,10.480999946594238,2.1640000343322754,0.0,10.683500289916992 -5329,2017-02-08 01:00:00,40.29199981689453,11.057000160217283,38.46599960327149,9.274999618530272,2.1640000343322754,0.0,10.244500160217283 -5330,2017-02-08 02:00:00,40.62699890136719,11.47599983215332,38.76100158691406,9.48900032043457,2.1640000343322754,0.0,9.804499626159668 -5331,2017-02-08 03:00:00,40.3759994506836,11.5600004196167,38.78799819946289,9.810999870300291,2.1640000343322754,0.0,9.365500450134276 -5332,2017-02-08 04:00:00,40.04100036621094,11.727999687194824,38.30500030517578,9.890999794006348,2.1640000343322754,0.0,8.92549991607666 -5333,2017-02-08 05:00:00,39.45500183105469,11.309000015258787,38.01100158691406,9.649999618530272,2.1640000343322754,0.0,8.486499786376951 -5334,2017-02-08 06:00:00,41.96799850463867,12.062999725341797,40.18199920654297,9.94499969482422,2.1640000343322754,0.0,8.266500473022461 -5335,2017-02-08 07:00:00,38.86800003051758,9.800999641418455,36.83100128173828,8.255999565124513,2.1640000343322754,0.0,8.046500205993652 -5336,2017-02-08 08:00:00,41.2140007019043,11.47599983215332,39.08300018310547,9.515999794006348,2.1640000343322754,0.0,7.607500076293945 -5337,2017-02-08 09:00:00,48.584999084472656,15.748000144958494,45.999000549316406,12.973999977111816,2.1640000343322754,0.0,7.167500019073486 -5338,2017-02-08 10:00:00,46.49100112915039,13.821999549865724,44.47100067138672,11.446000099182127,2.1640000343322754,0.0,7.167500019073486 -5339,2017-02-08 11:00:00,49.67399978637695,15.246000289916992,47.20500183105469,12.331000328063965,2.1640000343322754,0.0,7.167500019073486 -5340,2017-02-08 12:00:00,49.92599868774414,14.241000175476074,47.44599914550781,11.902000427246096,2.1640000343322754,0.0,7.167500019073486 -5341,2017-02-08 13:00:00,50.17699813842773,15.83199977874756,47.84799957275391,12.946999549865724,2.1640000343322754,0.0,7.607500076293945 -5342,2017-02-08 14:00:00,51.85200119018555,16.836999893188473,48.7599983215332,13.402999877929688,2.1640000343322754,0.0,7.827000141143799 -5343,2017-02-08 15:00:00,49.92599868774414,15.496999740600586,46.90999984741211,12.517999649047852,2.1640000343322754,0.0,8.046500205993652 -5344,2017-02-08 16:00:00,52.02000045776367,16.92099952697754,49.83200073242188,14.126999855041506,2.1640000343322754,0.0,8.486499786376951 -5345,2017-02-08 17:00:00,48.75299835205078,13.067999839782717,45.30199813842773,9.99899959564209,3.380000114440918,0.0,8.486499786376951 -5346,2017-02-08 18:00:00,53.0250015258789,14.491999626159668,48.30400085449219,10.69499969482422,3.380000114440918,0.0,8.046500205993652 -5347,2017-02-08 19:00:00,55.20299911499024,14.82699966430664,51.387001037597656,11.446000099182127,3.380000114440918,0.0,7.607500076293945 -5348,2017-02-08 20:00:00,56.3759994506836,16.50200080871582,52.86100006103516,12.894000053405762,3.380000114440918,0.0,7.607500076293945 -5349,2017-02-08 21:00:00,56.125,17.089000701904293,52.40499877929688,13.321999549865724,3.380000114440918,0.0,7.827000141143799 -5350,2017-02-08 22:00:00,50.68000030517578,15.07800006866455,47.875,12.303999900817873,3.380000114440918,0.0,7.827000141143799 -5351,2017-02-08 23:00:00,48.584999084472656,14.576000213623049,46.6150016784668,12.062999725341797,3.380000114440918,0.0,8.046999931335451 -5352,2017-02-09 00:00:00,47.49599838256836,14.659000396728516,44.92599868774414,12.142999649047852,2.1640000343322754,0.0,8.046999931335451 -5353,2017-02-09 01:00:00,44.900001525878906,13.654000282287598,42.86199951171875,11.5,2.1640000343322754,0.0,7.827000141143799 -5354,2017-02-09 02:00:00,42.97299957275391,12.899999618530272,40.262001037597656,10.803000450134276,2.1640000343322754,0.0,7.827000141143799 -5355,2017-02-09 03:00:00,40.125,11.727999687194824,37.823001861572266,9.91800022125244,2.1640000343322754,0.0,7.827000141143799 -5356,2017-02-09 04:00:00,40.79499816894531,11.895000457763672,38.22499847412109,9.784000396728516,2.1640000343322754,0.0,7.827000141143799 -5357,2017-02-09 05:00:00,41.96799850463867,12.64900016784668,39.35100173950195,10.239999771118164,2.1640000343322754,0.0,7.387499809265138 -5358,2017-02-09 06:00:00,43.05699920654297,12.5649995803833,41.28099822998047,10.480999946594238,2.1640000343322754,0.0,6.948500156402588 -5359,2017-02-09 07:00:00,45.48600006103516,12.732999801635742,43.53300094604492,10.722000122070312,2.1640000343322754,0.0,6.948500156402588 -5360,2017-02-09 08:00:00,42.05199813842773,10.722000122070312,39.59199905395508,8.711999893188478,2.1640000343322754,0.0,6.508500099182129 -5361,2017-02-09 09:00:00,44.229000091552734,11.979000091552734,41.09299850463867,9.274999618530272,2.1640000343322754,0.0,6.948500156402588 -5362,2017-02-09 10:00:00,42.1349983215332,10.805999755859377,39.08300018310547,8.444000244140625,2.1640000343322754,0.0,8.706000328063965 -5363,2017-02-09 11:00:00,47.32899856567383,12.64900016784668,44.63199996948242,10.133000373840332,2.1640000343322754,0.0,11.5625 -5364,2017-02-09 12:00:00,48.83700180053711,14.407999992370604,46.428001403808594,11.821000099182127,2.1640000343322754,0.0,15.07800006866455 -5365,2017-02-09 13:00:00,50.17699813842773,15.83199977874756,47.28499984741211,12.652000427246096,2.1640000343322754,0.0,16.17650032043457 -5366,2017-02-09 14:00:00,48.83700180053711,15.413000106811523,45.999000549316406,12.517999649047852,2.1640000343322754,0.0,17.934999465942386 -5367,2017-02-09 15:00:00,48.25,14.91100025177002,45.8650016784668,12.277000427246096,2.1640000343322754,0.0,18.15399932861328 -5368,2017-02-09 16:00:00,48.91999816894531,15.664999961853027,46.83000183105469,13.027999877929688,2.1640000343322754,0.0,17.055500030517578 -5369,2017-02-09 17:00:00,52.27099990844727,16.419000625610348,48.571998596191406,12.652000427246096,3.390000104904175,1.22599995136261,14.418999671936035 -5370,2017-02-09 18:00:00,53.77899932861328,16.670000076293945,50.82400131225586,13.269000053405762,3.390000104904175,0.0,12.66100025177002 -5371,2017-02-09 19:00:00,52.02000045776367,14.659000396728516,48.7859992980957,11.392000198364258,3.390000104904175,0.0,11.782500267028809 -5372,2017-02-09 20:00:00,51.51699829101562,13.821999549865724,47.76800155639648,10.347000122070312,3.390000104904175,0.0,11.342499732971191 -5373,2017-02-09 21:00:00,52.60599899291992,17.256000518798828,49.72499847412109,13.697999954223633,3.390000104904175,0.0,11.123000144958496 -5374,2017-02-09 22:00:00,52.52299880981445,17.004999160766598,48.9739990234375,13.644000053405762,3.390000104904175,1.22599995136261,10.903499603271484 -5375,2017-02-09 23:00:00,46.74300003051758,15.581000328063965,43.72000122070313,12.678999900817873,3.390000104904175,0.0,10.903499603271484 -5376,2017-02-10 00:00:00,46.49100112915039,15.664999961853027,44.14899826049805,12.812999725341797,3.390000104904175,0.0,10.684000015258787 -5377,2017-02-10 01:00:00,43.30799865722656,13.98900032043457,39.69900131225586,10.937000274658203,3.390000104904175,0.0,9.80500030517578 -5378,2017-02-10 02:00:00,42.72200012207031,13.821999549865724,39.56499862670898,11.043999671936035,3.390000104904175,0.0,9.145500183105469 -5379,2017-02-10 03:00:00,43.55899810791016,13.904999732971191,40.42300033569336,11.204999923706056,3.390000104904175,0.0,8.706000328063965 -5380,2017-02-10 04:00:00,42.55400085449219,13.73799991607666,40.63800048828125,11.472999572753904,2.0469999313354488,0.0,8.266500473022461 -5381,2017-02-10 05:00:00,45.06700134277344,14.743000030517578,41.62900161743164,11.446000099182127,3.2839999198913574,0.0,7.60699987411499 -5382,2017-02-10 06:00:00,41.96799850463867,12.984000205993652,39.45800018310547,10.37399959564209,3.2839999198913574,0.0,6.947999954223633 -5383,2017-02-10 07:00:00,45.31800079345703,13.654000282287598,42.56800079345703,10.90999984741211,3.2839999198913574,0.0,6.069499969482423 -5384,2017-02-10 08:00:00,43.30799865722656,12.5649995803833,39.77999877929688,9.56999969482422,3.2839999198913574,1.22599995136261,5.630000114440918 -5385,2017-02-10 09:00:00,48.91999816894531,14.82699966430664,45.14099884033203,11.258000373840332,3.2839999198913574,1.2150000333786009,7.60699987411499 -5386,2017-02-10 10:00:00,45.56999969482422,12.145999908447266,42.084999084472656,8.95300006866455,3.2839999198913574,1.2580000162124634,10.684000015258787 -5387,2017-02-10 11:00:00,47.07799911499024,12.899999618530272,44.01499938964844,10.024999618530272,3.2839999198913574,0.0,13.539999961853027 -5388,2017-02-10 12:00:00,48.91999816894531,14.241000175476074,46.85599899291992,11.795000076293944,2.068000078201294,0.0,16.616500854492188 -5389,2017-02-10 13:00:00,48.50199890136719,14.491999626159668,45.89099884033203,11.71399974822998,2.068000078201294,0.0,17.495000839233402 -5390,2017-02-10 14:00:00,47.66400146484375,15.07800006866455,45.14099884033203,12.437999725341797,2.0150001049041752,0.0,19.691999435424805 -5391,2017-02-10 15:00:00,45.90499877929688,14.156999588012695,43.90800094604492,11.767999649047852,2.026000022888184,0.0,19.912500381469727 -5392,2017-02-10 16:00:00,45.82099914550781,14.241000175476074,42.35300064086914,11.017000198364258,3.240999937057495,1.3009999990463257,18.15399932861328 -5393,2017-02-10 17:00:00,48.25,14.576000213623049,43.98799896240234,10.776000022888184,4.519999980926514,1.22599995136261,15.95699977874756 -5394,2017-02-10 18:00:00,51.34999847412109,14.994000434875488,48.09000015258789,11.607000350952148,4.48799991607666,0.0,14.199000358581545 -5395,2017-02-10 19:00:00,48.91999816894531,13.402999877929688,44.47100067138672,9.729999542236328,4.4670000076293945,1.4179999828338623,12.66100025177002 -5396,2017-02-10 20:00:00,53.36000061035156,16.419000625610348,49.02799987792969,12.437999725341797,4.446000099182129,1.2150000333786009,11.343000411987305 -5397,2017-02-10 21:00:00,51.76900100708008,14.91100025177002,48.9739990234375,11.687000274658203,3.1559998989105225,0.0,10.46399974822998 -5398,2017-02-10 22:00:00,49.59099960327149,14.659000396728516,46.72200012207031,11.553000450134276,3.0810000896453857,0.0,9.585000038146973 -5399,2017-02-10 23:00:00,47.83200073242188,14.743000030517578,44.92599868774414,11.633999824523926,3.006999969482422,0.0,9.145500183105469 -5400,2017-02-11 00:00:00,45.73699951171875,13.98900032043457,42.78200149536133,11.258000373840332,2.9110000133514404,0.0,8.266500473022461 -5401,2017-02-11 01:00:00,42.72200012207031,13.319000244140623,40.36899948120117,10.803000450134276,2.9110000133514404,0.0,7.607500076293945 -5402,2017-02-11 02:00:00,41.54899978637695,12.64900016784668,38.35900115966797,9.784000396728516,2.9110000133514404,0.0,6.947999954223633 -5403,2017-02-11 03:00:00,40.04100036621094,12.229999542236328,37.98400115966797,9.810999870300291,2.9110000133514404,0.0,6.069499969482423 -5404,2017-02-11 04:00:00,41.13000106811523,12.815999984741213,39.055999755859375,10.53499984741211,2.9110000133514404,0.0,5.190499782562256 -5405,2017-02-11 05:00:00,42.88899993896485,13.821999549865724,39.32400131225586,10.74899959564209,2.9110000133514404,1.22599995136261,4.750999927520752 -5406,2017-02-11 06:00:00,41.04600143432617,12.39799976348877,38.49300003051758,10.105999946594238,2.9110000133514404,0.0,3.871999979019165 -5407,2017-02-11 07:00:00,46.2400016784668,14.156999588012695,42.24599838256836,11.097999572753906,2.9110000133514404,1.2150000333786009,3.651999950408936 -5408,2017-02-11 08:00:00,40.20899963378906,9.04699993133545,36.83100128173828,6.755000114440918,3.006999969482422,0.0,3.432499885559082 -5409,2017-02-11 09:00:00,43.72700119018555,12.314000129699709,40.90599822998047,9.864999771118164,3.006999969482422,0.0,6.069499969482423 -5410,2017-02-11 10:00:00,48.16699981689453,14.82699966430664,45.40900039672852,11.472999572753904,3.006999969482422,0.0,10.683500289916992 -5411,2017-02-11 11:00:00,50.428001403808594,16.50200080871582,46.26699829101562,12.652000427246096,4.2109999656677255,1.4609999656677246,15.07800006866455 -5412,2017-02-11 12:00:00,46.74300003051758,14.156999588012695,43.07699966430664,10.74899959564209,2.9110000133514404,1.2150000333786009,18.813499450683597 -5413,2017-02-11 13:00:00,45.06700134277344,13.98900032043457,41.790000915527344,10.722000122070312,2.9110000133514404,1.2150000333786009,19.91200065612793 -5414,2017-02-11 14:00:00,43.05699920654297,13.234999656677244,40.63800048828125,10.508000373840332,2.9110000133514404,0.0,21.670000076293945 -5415,2017-02-11 15:00:00,45.4020004272461,14.576000213623049,42.91600036621094,11.741000175476074,2.9110000133514404,0.0,22.32900047302246 -5416,2017-02-11 16:00:00,47.58000183105469,15.916000366210938,44.63199996948242,12.678999900817873,2.9110000133514404,0.0,21.450000762939453 -5417,2017-02-11 17:00:00,42.72200012207031,12.64900016784668,39.96699905395508,9.756999969482422,2.9110000133514404,0.0,19.47249984741211 -5418,2017-02-11 18:00:00,42.303001403808594,11.140999794006348,39.56499862670898,8.765000343322754,2.9110000133514404,0.0,17.055500030517578 -5419,2017-02-11 19:00:00,46.74300003051758,13.487000465393065,43.45199966430664,10.53499984741211,2.9110000133514404,0.0,14.638500213623049 -5420,2017-02-11 20:00:00,49.17200088500977,13.821999549865724,46.13299942016602,10.722000122070312,2.9110000133514404,0.0,12.441499710083008 -5421,2017-02-11 21:00:00,50.512001037597656,15.329999923706056,47.84799957275391,12.383999824523926,2.9110000133514404,0.0,11.123499870300291 -5422,2017-02-11 22:00:00,46.57500076293945,13.904999732971191,43.935001373291016,11.017000198364258,2.9110000133514404,0.0,10.024499893188477 -5423,2017-02-11 23:00:00,43.89400100708008,12.815999984741213,40.61100006103516,9.91800022125244,2.9110000133514404,0.0,9.365500450134276 -5424,2017-02-12 00:00:00,41.46500015258789,12.145999908447266,38.09099960327149,9.48900032043457,2.9110000133514404,0.0,8.706000328063965 -5425,2017-02-12 01:00:00,36.60699844360352,10.890000343322754,34.391998291015625,8.73900032043457,2.9110000133514404,0.0,7.827000141143799 -5426,2017-02-12 02:00:00,40.125,10.890000343322754,36.96500015258789,8.36299991607666,2.9110000133514404,0.0,7.167500019073486 -5427,2017-02-12 03:00:00,39.20299911499024,10.722000122070312,36.9379997253418,8.873000144958496,2.9110000133514404,0.0,6.289500236511231 -5428,2017-02-12 04:00:00,38.95199966430664,11.225000381469728,36.29499816894531,9.16800022125244,2.9110000133514404,0.0,5.630000114440918 -5429,2017-02-12 05:00:00,39.53799819946289,11.225000381469728,36.80400085449219,9.140999794006348,2.9110000133514404,0.0,5.190499782562256 -5430,2017-02-12 06:00:00,39.95700073242188,11.225000381469728,37.93000030517578,9.48900032043457,2.9110000133514404,0.0,4.531000137329102 -5431,2017-02-12 07:00:00,41.54899978637695,11.47599983215332,39.13600158691406,9.32800006866455,2.9110000133514404,0.0,4.311500072479248 -5432,2017-02-12 08:00:00,40.71099853515625,9.717000007629396,37.79600143432617,7.372000217437744,2.9110000133514404,0.0,4.311500072479248 -5433,2017-02-12 09:00:00,45.4020004272461,13.402999877929688,42.80899810791016,10.90999984741211,2.9110000133514404,0.0,7.167500019073486 -5434,2017-02-12 10:00:00,44.14599990844727,12.062999725341797,41.46799850463867,9.220999717712402,2.9110000133514404,0.0,11.343000411987305 -5435,2017-02-12 11:00:00,46.071998596191406,13.319000244140623,43.29100036621094,10.052000045776367,2.9110000133514404,0.0,15.517999649047852 -5436,2017-02-12 12:00:00,45.82099914550781,12.815999984741213,43.61299896240234,10.239999771118164,2.9110000133514404,0.0,19.91200065612793 -5437,2017-02-12 13:00:00,46.40700149536133,13.56999969482422,43.53300094604492,10.883000373840332,2.9110000133514404,0.0,21.670000076293945 -5438,2017-02-12 14:00:00,45.73699951171875,14.407999992370604,42.86199951171875,11.12399959564209,2.9110000133514404,0.0,24.74600028991699 -5439,2017-02-12 15:00:00,44.81600189208984,13.904999732971191,42.43399810791016,10.96399974822998,2.9110000133514404,1.3009999990463257,25.625 -5440,2017-02-12 16:00:00,47.07799911499024,14.576000213623049,43.66699981689453,10.90999984741211,2.9110000133514404,1.3009999990463257,24.74600028991699 -5441,2017-02-12 17:00:00,48.91999816894531,14.407999992370604,44.55099868774414,10.480999946594238,4.201000213623047,1.3009999990463257,22.988000869750977 -5442,2017-02-12 18:00:00,49.59099960327149,13.73799991607666,45.78400039672852,10.185999870300291,2.9110000133514404,1.22599995136261,20.79150009155273 -5443,2017-02-12 19:00:00,48.584999084472656,13.821999549865724,44.44400024414063,9.91800022125244,4.13700008392334,1.2150000333786009,18.15449905395508 -5444,2017-02-12 20:00:00,49.42300033569336,14.072999954223633,46.0250015258789,10.776000022888184,4.13700008392334,1.2150000333786009,15.957500457763672 -5445,2017-02-12 21:00:00,50.34500122070313,14.407999992370604,47.3390007019043,11.418999671936035,2.719000101089477,0.0,14.638500213623049 -5446,2017-02-12 22:00:00,49.25600051879883,14.324000358581545,45.73099899291992,11.097999572753906,4.072999954223634,0.0,13.320500373840332 -5447,2017-02-12 23:00:00,46.49100112915039,13.56999969482422,42.459999084472656,10.508000373840332,2.8570001125335693,0.0,12.441499710083008 -5448,2017-02-13 00:00:00,43.391998291015625,12.314000129699709,40.87900161743164,10.185999870300291,2.4089999198913574,0.0,12.441499710083008 -5449,2017-02-13 01:00:00,41.54899978637695,12.314000129699709,39.61899948120117,10.024999618530272,2.4089999198913574,0.0,12.001500129699709 -5450,2017-02-13 02:00:00,41.04600143432617,12.062999725341797,38.62699890136719,9.838000297546388,2.4089999198913574,0.0,11.5625 -5451,2017-02-13 03:00:00,41.54899978637695,12.314000129699709,38.78799819946289,9.70400047302246,2.4089999198913574,0.0,10.683500289916992 -5452,2017-02-13 04:00:00,37.277000427246094,9.717000007629396,35.25,7.854000091552732,2.4089999198913574,0.0,10.024499893188477 -5453,2017-02-13 05:00:00,39.0359992980957,11.727999687194824,36.26800155639648,9.409000396728516,2.4089999198913574,0.0,9.145500183105469 -5454,2017-02-13 06:00:00,41.46500015258789,12.480999946594238,39.45800018310547,10.642000198364258,2.4089999198913574,0.0,8.486499786376951 -5455,2017-02-13 07:00:00,43.89400100708008,12.5649995803833,40.61100006103516,10.024999618530272,2.4089999198913574,0.0,7.827000141143799 -5456,2017-02-13 08:00:00,41.71599960327149,10.303000450134276,38.49300003051758,7.71999979019165,3.6570000648498535,0.0,7.827000141143799 -5457,2017-02-13 09:00:00,46.32400131225586,14.241000175476074,43.04999923706055,11.178000450134276,2.367000102996826,0.0,10.244500160217283 -5458,2017-02-13 10:00:00,42.88899993896485,10.973999977111816,39.69900131225586,8.203000068664549,3.6040000915527344,0.0,14.199000358581545 -5459,2017-02-13 11:00:00,47.58000183105469,13.067999839782717,43.82699966430664,9.838000297546388,3.5820000171661377,0.0,18.5939998626709 -5460,2017-02-13 12:00:00,46.99399948120117,13.821999549865724,44.01499938964844,10.722000122070312,2.367000102996826,0.0,22.98850059509277 -5461,2017-02-13 13:00:00,43.97800064086914,13.152000427246096,41.28099822998047,10.213000297546388,2.367000102996826,0.0,25.405500411987305 -5462,2017-02-13 14:00:00,43.47600173950195,12.815999984741213,41.040000915527344,10.29300022125244,2.367000102996826,0.0,28.70100021362305 -5463,2017-02-13 15:00:00,44.48099899291992,13.487000465393065,41.95100021362305,10.803000450134276,2.367000102996826,0.0,30.019500732421875 -5464,2017-02-13 16:00:00,43.30799865722656,13.319000244140623,40.39599990844727,10.508000373840332,2.367000102996826,0.0,29.57999992370605 -5465,2017-02-13 17:00:00,43.72700119018555,12.732999801635742,41.17399978637695,10.159000396728516,2.367000102996826,0.0,27.602500915527344 -5466,2017-02-13 18:00:00,41.2140007019043,10.55500030517578,38.76100158691406,8.630999565124513,2.367000102996826,0.0,24.74650001525879 -5467,2017-02-13 19:00:00,47.49599838256836,13.067999839782717,44.44400024414063,10.508000373840332,2.367000102996826,0.0,21.88949966430664 -5468,2017-02-13 20:00:00,48.584999084472656,13.56999969482422,45.81100082397461,11.12399959564209,2.3350000381469727,0.0,19.47249984741211 -5469,2017-02-13 21:00:00,49.84199905395508,14.576000213623049,46.26699829101562,11.472999572753904,2.3559999465942383,0.0,17.714500427246094 -5470,2017-02-13 22:00:00,43.14099884033203,13.234999656677244,39.59199905395508,10.07900047302246,3.6040000915527344,0.0,16.396499633789062 -5471,2017-02-13 23:00:00,40.29199981689453,12.314000129699709,37.367000579833984,9.756999969482422,2.377000093460083,0.0,15.078499794006348 -5472,2017-02-14 00:00:00,39.37099838256836,11.810999870300291,36.96500015258789,9.48900032043457,2.302999973297119,0.0,14.19950008392334 -5473,2017-02-14 01:00:00,38.78499984741211,12.480999946594238,35.4370002746582,9.864999771118164,3.5290000438690186,0.0,13.320500373840332 -5474,2017-02-14 02:00:00,38.11399841308594,11.392000198364258,34.955001831054695,9.006999969482422,2.3350000381469727,0.0,12.441499710083008 -5475,2017-02-14 03:00:00,37.946998596191406,11.810999870300291,35.597999572753906,9.354999542236328,2.3350000381469727,0.0,11.781999588012695 -5476,2017-02-14 04:00:00,33.92599868774414,10.220000267028809,31.52400016784668,8.604999542236326,2.3350000381469727,0.0,10.683500289916992 -5477,2017-02-14 05:00:00,42.63800048828125,12.64900016784668,39.37799835205078,10.588000297546388,2.3350000381469727,0.0,10.024499893188477 -5478,2017-02-14 06:00:00,41.88399887084961,12.815999984741213,40.45000076293945,10.829999923706056,2.3350000381469727,0.0,9.145500183105469 -5479,2017-02-14 07:00:00,42.63800048828125,11.140999794006348,39.02899932861328,8.416999816894531,3.549999952316284,0.0,8.706000328063965 -5480,2017-02-14 08:00:00,40.54399871826172,10.220000267028809,37.2869987487793,7.425000190734862,3.549999952316284,0.0,8.92549991607666 -5481,2017-02-14 09:00:00,45.82099914550781,14.407999992370604,43.04999923706055,11.472999572753904,2.2920000553131104,0.0,12.001500129699709 -5482,2017-02-14 10:00:00,38.03099822998047,9.465999603271484,35.70500183105469,7.3979997634887695,2.2920000553131104,0.0,16.615999221801758 -5483,2017-02-14 11:00:00,37.69599914550781,9.465999603271484,34.60599899291992,7.210999965667725,2.2920000553131104,1.2150000333786009,20.131999969482425 -5484,2017-02-14 12:00:00,37.86299896240234,10.052000045776367,35.35699844360352,7.639999866485598,2.2920000553131104,0.0,22.76849937438965 -5485,2017-02-14 13:00:00,35.518001556396484,10.470999717712402,32.40800094604492,8.121999740600586,2.2920000553131104,0.0,24.74600028991699 -5486,2017-02-14 14:00:00,38.95199966430664,11.895000457763672,35.8120002746582,9.140999794006348,3.5290000438690186,1.2150000333786009,26.28400039672852 -5487,2017-02-14 15:00:00,43.64300155639648,13.56999969482422,40.23500061035156,10.213000297546388,3.5179998874664307,1.22599995136261,26.50349998474121 -5488,2017-02-14 16:00:00,45.73699951171875,14.156999588012695,42.32600021362305,10.53499984741211,3.5179998874664307,1.3009999990463257,25.625 -5489,2017-02-14 17:00:00,44.56499862670898,12.64900016784668,42.56800079345703,9.810999870300291,2.174999952316284,0.0,24.08699989318848 -5490,2017-02-14 18:00:00,45.23500061035156,12.815999984741213,43.07699966430664,9.515999794006348,2.174999952316284,1.2150000333786009,22.32900047302246 -5491,2017-02-14 19:00:00,45.82099914550781,12.062999725341797,42.03099822998047,8.711999893188478,3.390000104904175,1.343000054359436,21.01099967956543 -5492,2017-02-14 20:00:00,46.90999984741211,12.984000205993652,43.82699966430664,9.810999870300291,3.390000104904175,0.0,19.912500381469727 -5493,2017-02-14 21:00:00,49.3390007019043,15.329999923706056,46.66899871826172,11.902000427246096,2.0469999313354488,0.0,18.813499450683597 -5494,2017-02-14 22:00:00,44.900001525878906,13.402999877929688,41.09299850463867,9.972000122070312,3.3159999847412114,1.2580000162124634,18.15449905395508 -5495,2017-02-14 23:00:00,44.73199844360352,13.319000244140623,40.87900161743164,10.07900047302246,3.3159999847412114,1.2580000162124634,17.495000839233402 -5496,2017-02-15 00:00:00,43.64300155639648,13.487000465393065,40.63800048828125,10.560999870300291,3.3159999847412114,0.0,16.836000442504886 -5497,2017-02-15 01:00:00,40.459999084472656,12.229999542236328,37.2599983215332,9.595999717712402,3.3159999847412114,0.0,16.396499633789062 -5498,2017-02-15 02:00:00,41.04600143432617,12.314000129699709,37.90299987792969,9.70400047302246,3.3159999847412114,0.0,16.177000045776367 -5499,2017-02-15 03:00:00,39.53799819946289,12.145999908447266,37.2869987487793,9.890999794006348,3.3159999847412114,0.0,15.957500457763672 -5500,2017-02-15 04:00:00,40.29199981689453,12.062999725341797,37.76900100708008,9.864999771118164,1.9079999923706048,0.0,15.517499923706056 -5501,2017-02-15 05:00:00,39.70600128173828,11.810999870300291,38.01100158691406,10.052000045776367,1.9079999923706048,0.0,14.638500213623049 -5502,2017-02-15 06:00:00,40.29199981689453,11.727999687194824,38.33200073242188,10.024999618530272,1.9079999923706048,0.0,13.320500373840332 -5503,2017-02-15 07:00:00,41.2140007019043,11.644000053405762,38.97600173950195,9.515999794006348,1.9079999923706048,0.0,12.441499710083008 -5504,2017-02-15 08:00:00,41.13000106811523,10.973999977111816,38.70800018310547,8.873000144958496,1.9079999923706048,0.0,12.221500396728516 -5505,2017-02-15 09:00:00,45.56999969482422,13.904999732971191,43.23799896240234,11.178000450134276,1.9079999923706048,0.0,14.19950008392334 -5506,2017-02-15 10:00:00,40.71099853515625,10.470999717712402,38.70800018310547,8.52400016784668,1.9079999923706048,0.0,17.274999618530273 -5507,2017-02-15 11:00:00,42.72200012207031,11.5600004196167,40.23500061035156,9.16800022125244,1.9079999923706048,0.0,20.35149955749512 -5508,2017-02-15 12:00:00,41.46500015258789,11.727999687194824,39.69900131225586,9.381999969482422,1.9079999923706048,0.0,24.08699989318848 -5509,2017-02-15 13:00:00,43.30799865722656,13.152000427246096,41.84400177001953,10.96399974822998,1.9079999923706048,0.0,26.06450080871582 -5510,2017-02-15 14:00:00,41.71599960327149,12.145999908447266,39.61899948120117,10.07900047302246,1.9079999923706048,0.0,29.36050033569336 -5511,2017-02-15 15:00:00,41.38100051879883,12.899999618530272,39.35100173950195,10.267000198364258,1.9079999923706048,0.0,30.67849922180176 -5512,2017-02-15 16:00:00,44.229000091552734,14.156999588012695,41.97800064086914,11.258000373840332,1.9079999923706048,0.0,29.57999992370605 -5513,2017-02-15 17:00:00,45.06700134277344,13.654000282287598,42.13899993896485,10.37399959564209,1.9079999923706048,0.0,28.48150062561035 -5514,2017-02-15 18:00:00,45.73699951171875,14.072999954223633,42.72800064086914,11.28499984741211,3.124000072479248,0.0,26.50349998474121 -5515,2017-02-15 19:00:00,42.97299957275391,12.229999542236328,40.04800033569336,9.677000045776367,3.124000072479248,0.0,23.86750030517578 -5516,2017-02-15 20:00:00,46.90999984741211,15.496999740600586,44.17599868774414,12.62600040435791,3.124000072479248,0.0,22.32900047302246 -5517,2017-02-15 21:00:00,48.50199890136719,15.748000144958494,44.92599868774414,12.196999549865724,3.124000072479248,1.22599995136261,21.230499267578125 -5518,2017-02-15 22:00:00,44.229000091552734,15.329999923706056,41.38800048828125,12.196999549865724,3.124000072479248,0.0,20.351999282836918 -5519,2017-02-15 23:00:00,40.79499816894531,12.145999908447266,37.76900100708008,9.409000396728516,3.124000072479248,0.0,20.131999969482425 -5520,2017-02-16 00:00:00,38.44900131225586,11.810999870300291,36.3489990234375,9.756999969482422,3.124000072479248,0.0,19.472999572753903 -5521,2017-02-16 01:00:00,40.9630012512207,12.64900016784668,38.81499862670898,10.29300022125244,3.124000072479248,0.0,19.03300094604492 -5522,2017-02-16 02:00:00,41.38100051879883,13.152000427246096,38.33200073242188,10.588000297546388,3.124000072479248,0.0,18.813499450683597 -5523,2017-02-16 03:00:00,37.44400024414063,11.309000015258787,35.75899887084961,9.435999870300291,3.124000072479248,0.0,18.15449905395508 -5524,2017-02-16 04:00:00,39.95700073242188,12.64900016784668,37.608001708984375,10.29300022125244,3.124000072479248,0.0,18.15449905395508 -5525,2017-02-16 05:00:00,38.70100021362305,12.062999725341797,36.7509994506836,9.890999794006348,3.124000072479248,0.0,17.934499740600586 -5526,2017-02-16 06:00:00,41.29800033569336,12.732999801635742,38.92200088500977,10.213000297546388,3.124000072479248,0.0,16.835500717163086 -5527,2017-02-16 07:00:00,42.21900177001953,12.314000129699709,39.80699920654297,9.784000396728516,3.124000072479248,0.0,16.177000045776367 -5528,2017-02-16 08:00:00,40.71099853515625,11.309000015258787,38.11800003051758,8.73900032043457,3.124000072479248,0.0,15.957500457763672 -5529,2017-02-16 09:00:00,47.32899856567383,14.156999588012695,44.36399841308594,11.097999572753906,3.124000072479248,0.0,16.396499633789062 -5530,2017-02-16 10:00:00,42.1349983215332,10.303000450134276,39.91400146484375,8.121999740600586,3.124000072479248,0.0,16.396499633789062 -5531,2017-02-16 11:00:00,44.64799880981445,11.644000053405762,42.51399993896485,9.16800022125244,3.124000072479248,0.0,18.5939998626709 -5532,2017-02-16 12:00:00,44.81600189208984,13.152000427246096,42.084999084472656,10.105999946594238,3.124000072479248,0.0,22.76849937438965 -5533,2017-02-16 13:00:00,45.4020004272461,13.98900032043457,42.91600036621094,10.989999771118164,3.124000072479248,0.0,25.40500068664551 -5534,2017-02-16 14:00:00,43.97800064086914,14.491999626159668,41.54899978637695,11.472999572753904,3.124000072479248,1.2150000333786009,28.92099952697754 -5535,2017-02-16 15:00:00,40.87900161743164,12.64900016784668,38.30500030517578,9.729999542236328,3.124000072479248,0.0,30.458499908447266 -5536,2017-02-16 16:00:00,40.62699890136719,11.727999687194824,38.41299819946289,9.16800022125244,3.124000072479248,0.0,30.458999633789062 -5537,2017-02-16 17:00:00,42.05199813842773,11.895000457763672,39.29700088500977,9.034000396728516,3.124000072479248,0.0,29.58049964904785 -5538,2017-02-16 18:00:00,44.73199844360352,12.899999618530272,41.54899978637695,9.70400047302246,3.124000072479248,1.2150000333786009,28.701499938964844 -5539,2017-02-16 19:00:00,43.14099884033203,11.309000015258787,40.15499877929688,8.496999740600586,3.124000072479248,1.2150000333786009,27.602500915527344 -5540,2017-02-16 20:00:00,45.98899841308594,13.654000282287598,43.13000106811523,10.480999946594238,3.124000072479248,1.2369999885559082,26.50349998474121 -5541,2017-02-16 21:00:00,45.48600006103516,13.821999549865724,42.56800079345703,11.017000198364258,3.124000072479248,0.0,25.18549919128418 -5542,2017-02-16 22:00:00,43.30799865722656,13.73799991607666,40.45000076293945,10.90999984741211,3.124000072479248,0.0,23.86750030517578 -5543,2017-02-16 23:00:00,38.78499984741211,11.727999687194824,36.64300155639648,9.54300022125244,3.124000072479248,0.0,22.54850006103516 -5544,2017-02-17 00:00:00,38.78499984741211,12.229999542236328,36.9379997253418,10.052000045776367,1.8980000019073489,0.0,21.66950035095215 -5545,2017-02-17 01:00:00,39.11999893188477,11.644000053405762,37.20600128173828,9.515999794006348,1.8980000019073489,0.0,20.79150009155273 -5546,2017-02-17 02:00:00,37.61199951171875,11.727999687194824,35.86600112915039,9.595999717712402,1.8980000019073489,0.0,20.131999969482425 -5547,2017-02-17 03:00:00,37.86299896240234,11.727999687194824,36.402000427246094,9.729999542236328,1.8980000019073489,0.0,19.47249984741211 -5548,2017-02-17 04:00:00,37.77899932861328,11.5600004196167,35.75899887084961,9.623000144958496,1.8980000019073489,0.0,19.47249984741211 -5549,2017-02-17 05:00:00,38.70100021362305,12.229999542236328,36.696998596191406,10.024999618530272,1.8980000019073489,0.0,19.47249984741211 -5550,2017-02-17 06:00:00,39.37099838256836,11.979000091552734,37.1259994506836,9.70400047302246,1.8980000019073489,0.0,19.47249984741211 -5551,2017-02-17 07:00:00,42.05199813842773,13.152000427246096,39.055999755859375,10.37399959564209,1.8980000019073489,0.0,18.374000549316406 -5552,2017-02-17 08:00:00,43.05699920654297,13.067999839782717,39.96699905395508,9.838000297546388,3.16599988937378,1.22599995136261,17.055500030517578 -5553,2017-02-17 09:00:00,45.82099914550781,14.241000175476074,43.37200164794922,11.33899974822998,3.16599988937378,0.0,16.396499633789062 -5554,2017-02-17 10:00:00,44.48099899291992,12.314000129699709,41.57600021362305,9.0600004196167,3.2730000019073486,1.5140000581741333,16.396499633789062 -5555,2017-02-17 11:00:00,49.0880012512207,14.407999992370604,45.08700180053711,10.668999671936035,3.2730000019073486,1.3969999551773071,16.396499633789062 -5556,2017-02-17 12:00:00,40.9630012512207,10.13599967956543,37.90299987792969,7.532000064849853,3.2730000019073486,0.0,16.396499633789062 -5557,2017-02-17 13:00:00,35.685001373291016,9.550000190734863,33.13199996948242,7.317999839782715,3.2730000019073486,0.0,16.835500717163086 -5558,2017-02-17 14:00:00,47.74800109863281,14.91100025177002,45.35499954223633,11.847999572753904,3.2730000019073486,0.0,17.055500030517578 -5559,2017-02-17 15:00:00,48.83700180053711,15.07800006866455,45.999000549316406,11.982000350952148,3.2730000019073486,0.0,15.957500457763672 -5560,2017-02-17 16:00:00,51.01499938964844,15.916000366210938,47.60699844360352,12.571999549865724,3.2730000019073486,0.0,15.737500190734863 -5561,2017-02-17 17:00:00,46.82600021362305,14.659000396728516,43.07699966430664,11.151000022888184,3.2730000019073486,1.2790000438690186,15.737500190734863 -5562,2017-02-17 18:00:00,44.64799880981445,13.821999549865724,41.11999893188477,10.803000450134276,3.2730000019073486,0.0,15.737500190734863 -5563,2017-02-17 19:00:00,47.1609992980957,13.654000282287598,43.07699966430664,10.267000198364258,3.2730000019073486,1.5989999771118164,15.737500190734863 -5564,2017-02-17 20:00:00,44.229000091552734,13.402999877929688,41.25400161743164,10.480999946594238,3.2730000019073486,0.0,15.29800033569336 -5565,2017-02-17 21:00:00,44.3129997253418,13.402999877929688,40.18199920654297,9.972000122070312,3.2730000019073486,1.3860000371932983,15.07800006866455 -5566,2017-02-17 22:00:00,45.06700134277344,14.491999626159668,41.46799850463867,10.989999771118164,3.2730000019073486,1.22599995136261,14.418999671936035 -5567,2017-02-17 23:00:00,39.874000549316406,12.229999542236328,36.80400085449219,9.381999969482422,3.2730000019073486,0.0,14.418999671936035 -5568,2017-02-18 00:00:00,38.86800003051758,11.979000091552734,35.35699844360352,9.220999717712402,3.2730000019073486,1.3109999895095823,13.979499816894531 -5569,2017-02-18 01:00:00,40.29199981689453,12.899999618530272,36.64300155639648,10.024999618530272,3.2730000019073486,1.3860000371932983,13.539999961853027 -5570,2017-02-18 02:00:00,36.104000091552734,11.5600004196167,32.944000244140625,9.16800022125244,3.2730000019073486,0.0,13.100500106811523 -5571,2017-02-18 03:00:00,38.28200149536133,12.229999542236328,35.518001556396484,10.052000045776367,2.174999952316284,0.0,12.66100025177002 -5572,2017-02-18 04:00:00,33.005001068115234,11.979000091552734,30.90699958801269,10.052000045776367,2.4200000762939453,0.0,12.221500396728516 -5573,2017-02-18 05:00:00,34.763999938964844,10.805999755859377,31.30900001525879,8.604999542236326,2.388000011444092,1.22599995136261,11.781999588012695 -5574,2017-02-18 06:00:00,35.518001556396484,10.722000122070312,33.667999267578125,9.006999969482422,2.068000078201294,0.0,10.903499603271484 -5575,2017-02-18 07:00:00,36.858001708984375,9.717000007629396,34.65999984741211,7.98799991607666,2.068000078201294,0.0,10.244500160217283 -5576,2017-02-18 08:00:00,34.09400177001953,7.789999961853027,30.7189998626709,5.683000087738037,3.3159999847412114,0.0,9.804499626159668 -5577,2017-02-18 09:00:00,32.58599853515625,7.372000217437744,29.88800048828125,5.388000011444092,3.3159999847412114,0.0,11.123499870300291 -5578,2017-02-18 10:00:00,33.590999603271484,7.874000072479247,31.256000518798828,6.111999988555907,3.3159999847412114,0.0,13.539999961853027 -5579,2017-02-18 11:00:00,35.0989990234375,8.125,31.65800094604492,5.736000061035156,3.380000114440918,0.0,15.957500457763672 -5580,2017-02-18 12:00:00,30.82699966430664,6.953000068664551,28.601999282836918,5.227000236511231,2.1540000438690186,0.0,19.25300025939941 -5581,2017-02-18 13:00:00,32.92100143432617,8.963000297546387,29.51300048828125,6.540999889373777,3.4649999141693115,1.3650000095367432,21.45050048828125 -5582,2017-02-18 14:00:00,30.072999954223643,7.789999961853027,27.85099983215332,5.951000213623048,2.25,0.0,24.30699920654297 -5583,2017-02-18 15:00:00,30.40800094604492,8.208999633789062,28.28000068664551,6.031000137329103,2.25,0.0,24.965999603271484 -5584,2017-02-18 16:00:00,30.743000030517567,8.041999816894531,27.690000534057607,5.816999912261963,2.25,0.0,24.526500701904297 -5585,2017-02-18 17:00:00,32.250999450683594,7.706999778747559,28.11899948120117,5.013000011444092,3.6459999084472656,1.406999945640564,22.54850006103516 -5586,2017-02-18 18:00:00,33.590999603271484,8.125,29.9689998626709,5.602000236511231,3.6459999084472656,1.406999945640564,20.351999282836918 -5587,2017-02-18 19:00:00,34.763999938964844,8.543999671936035,31.336000442504893,6.004000186920166,3.561000108718872,1.406999945640564,18.5935001373291 -5588,2017-02-18 20:00:00,35.43399810791016,8.795999526977539,31.46999931335449,6.085000038146973,4.776000022888184,1.6740000247955322,16.615999221801758 -5589,2017-02-18 21:00:00,33.005001068115234,7.706999778747559,29.88800048828125,5.710000038146973,3.11299991607666,0.0,15.29800033569336 -5590,2017-02-18 22:00:00,33.42300033569336,8.376999855041504,29.4060001373291,6.004000186920166,3.11299991607666,1.2150000333786009,14.85849952697754 -5591,2017-02-18 23:00:00,36.35499954223633,9.633000373840332,33.21200180053711,7.479000091552732,3.11299991607666,0.0,14.418999671936035 -5592,2017-02-19 00:00:00,34.59600067138672,9.29800033569336,32.863998413085945,7.854000091552732,2.003999948501587,0.0,13.539999961853027 -5593,2017-02-19 01:00:00,35.349998474121094,9.21399974822998,32.327999114990234,7.34499979019165,2.003999948501587,0.0,13.31999969482422 -5594,2017-02-19 02:00:00,33.84199905395508,9.29800033569336,31.28199958801269,7.317999839782715,2.0469999313354488,0.0,12.880999565124512 -5595,2017-02-19 03:00:00,31.66399955749512,8.125,29.00399971008301,6.353000164031982,3.2300000190734863,0.0,12.880999565124512 -5596,2017-02-19 04:00:00,33.005001068115234,8.293000221252441,30.37100028991699,6.138999938964844,3.16599988937378,0.0,12.440999984741213 -5597,2017-02-19 05:00:00,31.832000732421875,9.717000007629396,29.6200008392334,7.71999979019165,3.16599988937378,0.0,12.440999984741213 -5598,2017-02-19 06:00:00,27.392000198364247,6.7849998474121085,25.117000579833984,5.441999912261963,3.16599988937378,0.0,12.221500396728516 -5599,2017-02-19 07:00:00,35.26599884033203,7.789999961853027,31.97900009155273,5.816999912261963,3.1879999637603764,0.0,12.001999855041506 -5600,2017-02-19 08:00:00,34.512001037597656,9.04699993133545,31.041000366210927,6.513999938964844,3.1879999637603764,1.2150000333786009,12.221500396728516 -5601,2017-02-19 09:00:00,39.0359992980957,11.140999794006348,36.45600128173828,8.578000068664549,3.1879999637603764,0.0,13.539999961853027 -5602,2017-02-19 10:00:00,38.198001861572266,10.38700008392334,35.893001556396484,7.960999965667725,2.6549999713897705,0.0,16.396499633789062 -5603,2017-02-19 11:00:00,41.79999923706055,11.979000091552734,37.39400100708008,8.791999816894531,3.891000032424927,1.3969999551773071,20.57150077819824 -5604,2017-02-19 12:00:00,39.53799819946289,10.638999938964844,35.678001403808594,7.907999992370605,3.92300009727478,1.22599995136261,24.965999603271484 -5605,2017-02-19 13:00:00,38.36600112915039,11.5600004196167,35.946998596191406,9.649999618530272,2.5480000972747803,0.0,26.723499298095703 -5606,2017-02-19 14:00:00,37.277000427246094,10.722000122070312,33.53400039672852,7.98799991607666,3.8059999942779537,1.4819999933242798,27.38249969482422 -5607,2017-02-19 15:00:00,39.37099838256836,13.152000427246096,35.33000183105469,9.838000297546388,3.742000102996826,1.2150000333786009,30.019500732421875 -5608,2017-02-19 16:00:00,40.20899963378906,13.152000427246096,36.617000579833984,9.729999542236328,3.9769999980926514,1.2150000333786009,30.23900032043457 -5609,2017-02-19 17:00:00,41.96799850463867,13.152000427246096,37.2599983215332,9.729999542236328,3.997999906539917,1.2150000333786009,29.140499114990234 -5610,2017-02-19 18:00:00,40.29199981689453,11.309000015258787,36.9379997253418,8.390000343322754,2.760999917984009,1.3220000267028809,27.602500915527344 -5611,2017-02-19 19:00:00,39.45500183105469,10.470999717712402,35.597999572753906,7.61299991607666,4.573999881744385,1.3220000267028809,26.723499298095703 -5612,2017-02-19 20:00:00,44.56499862670898,13.402999877929688,39.430999755859375,9.595999717712402,4.178999900817871,1.4819999933242798,25.84449958801269 -5613,2017-02-19 21:00:00,40.71099853515625,12.145999908447266,36.13399887084961,8.550999641418457,4.061999797821045,1.2369999885559082,24.965999603271484 -5614,2017-02-19 22:00:00,39.95700073242188,12.229999542236328,36.1879997253418,9.11400032043457,3.3580000400543213,1.2150000333786009,24.30699920654297 -5615,2017-02-19 23:00:00,34.847000122070305,10.55500030517578,32.623001098632805,8.444000244140625,3.3580000400543213,0.0,24.08699989318848 -5616,2017-02-20 00:00:00,34.261001586914055,10.470999717712402,32.060001373291016,8.550999641418457,2.186000108718872,0.0,23.647499084472656 -5617,2017-02-20 01:00:00,36.02000045776367,11.057000160217283,33.238998413085945,9.220999717712402,2.174999952316284,0.0,23.427499771118164 -5618,2017-02-20 02:00:00,32.501998901367195,9.633000373840332,30.048999786376957,8.095000267028809,2.174999952316284,0.0,22.76849937438965 -5619,2017-02-20 03:00:00,32.58599853515625,10.303000450134276,30.02199935913086,8.416999816894531,2.174999952316284,0.0,22.76849937438965 -5620,2017-02-20 04:00:00,34.847000122070305,10.890000343322754,32.112998962402344,9.086999893188477,2.174999952316284,0.0,22.54850006103516 -5621,2017-02-20 05:00:00,32.92100143432617,10.13599967956543,30.316999435424805,8.52400016784668,2.174999952316284,0.0,21.450000762939453 -5622,2017-02-20 06:00:00,33.25600051879883,9.04699993133545,31.68400001525879,7.747000217437744,2.174999952316284,0.0,21.01099967956543 -5623,2017-02-20 07:00:00,39.45500183105469,10.890000343322754,35.49100112915039,8.095000267028809,3.6040000915527344,1.22599995136261,19.25300025939941 -5624,2017-02-20 08:00:00,35.685001373291016,8.963000297546387,33.15900039672852,7.077000141143799,2.313999891281128,0.0,17.934499740600586 -5625,2017-02-20 09:00:00,38.28200149536133,10.38700008392334,35.57099914550781,8.14900016784668,3.5290000438690186,0.0,17.274999618530273 -5626,2017-02-20 10:00:00,42.21900177001953,10.973999977111816,38.11800003051758,7.77400016784668,3.5290000438690186,1.3969999551773071,15.95699977874756 -5627,2017-02-20 11:00:00,42.21900177001953,11.057000160217283,38.30500030517578,7.800000190734862,3.5290000438690186,1.343000054359436,14.85849952697754 -5628,2017-02-20 12:00:00,44.0620002746582,11.47599983215332,41.06600189208984,8.873000144958496,3.5290000438690186,0.0,14.638500213623049 -5629,2017-02-20 13:00:00,47.41299819946289,15.496999740600586,43.02299880981445,11.418999671936035,4.765999794006348,1.22599995136261,14.638500213623049 -5630,2017-02-20 14:00:00,42.97299957275391,13.067999839782717,39.45800018310547,9.864999771118164,2.750999927520752,1.4179999828338623,14.418999671936035 -5631,2017-02-20 15:00:00,42.72200012207031,12.480999946594238,39.055999755859375,9.086999893188477,4.254000186920166,1.4179999828338623,13.979499816894531 -5632,2017-02-20 16:00:00,44.81600189208984,13.402999877929688,40.20899963378906,9.677000045776367,4.061999797821045,1.246999979019165,13.759499549865724 -5633,2017-02-20 17:00:00,48.25,13.402999877929688,42.459999084472656,9.11400032043457,5.447999954223633,1.22599995136261,13.100500106811523 -5634,2017-02-20 18:00:00,47.07799911499024,13.56999969482422,42.59400177001953,10.29300022125244,4.125999927520752,1.2369999885559082,12.66100025177002 -5635,2017-02-20 19:00:00,44.983001708984375,11.644000053405762,41.73699951171875,8.899999618530273,3.913000106811523,0.0,12.221500396728516 -5636,2017-02-20 20:00:00,52.35499954223633,15.916000366210938,49.32300186157226,12.652000427246096,2.569000005722046,0.0,11.781999588012695 -5637,2017-02-20 21:00:00,50.59600067138672,15.581000328063965,47.6609992980957,12.437999725341797,3.838000059127808,0.0,11.343000411987305 -5638,2017-02-20 22:00:00,48.83700180053711,15.664999961853027,44.57799911499024,12.116000175476074,5.181000232696533,0.0,10.903499603271484 -5639,2017-02-20 23:00:00,44.73199844360352,12.899999618530272,41.68299865722656,10.427000045776367,2.6010000705718994,0.0,10.46399974822998 -5640,2017-02-21 00:00:00,42.05199813842773,13.56999969482422,40.28900146484375,11.446000099182127,2.6010000705718994,0.0,10.024499893188477 -5641,2017-02-21 01:00:00,44.81600189208984,14.576000213623049,41.709999084472656,11.767999649047852,2.6010000705718994,0.0,9.585000038146973 -5642,2017-02-21 02:00:00,42.303001403808594,13.319000244140623,40.50299835205078,11.178000450134276,1.9830000400543213,0.0,8.925999641418457 -5643,2017-02-21 03:00:00,42.387001037597656,13.402999877929688,40.45000076293945,11.5,1.9830000400543213,0.0,8.266500473022461 -5644,2017-02-21 04:00:00,40.54399871826172,13.234999656677244,38.70800018310547,11.071000099182127,1.8869999647140503,0.0,8.046999931335451 -5645,2017-02-21 05:00:00,43.05699920654297,13.821999549865724,40.36899948120117,11.579999923706056,3.0699999332427983,0.0,7.827000141143799 -5646,2017-02-21 06:00:00,45.4020004272461,14.743000030517578,42.70199966430664,12.277000427246096,3.1979999542236333,0.0,7.60699987411499 -5647,2017-02-21 07:00:00,43.89400100708008,12.64900016784668,40.82500076293945,10.213000297546388,3.1979999542236333,0.0,7.60699987411499 -5648,2017-02-21 08:00:00,45.23500061035156,12.480999946594238,42.51399993896485,9.729999542236328,2.9749999046325684,0.0,7.60699987411499 -5649,2017-02-21 09:00:00,47.49599838256836,13.821999549865724,44.76599884033203,10.829999923706056,3.16599988937378,0.0,8.266500473022461 -5650,2017-02-21 10:00:00,51.68500137329102,15.581000328063965,48.14300155639648,12.142999649047852,4.434999942779541,0.0,9.364999771118164 -5651,2017-02-21 11:00:00,53.2760009765625,16.419000625610348,49.3759994506836,12.732999801635742,4.434999942779541,0.0,10.903499603271484 -5652,2017-02-21 12:00:00,52.85800170898438,16.419000625610348,49.08100128173828,12.46500015258789,2.984999895095825,1.4609999656677246,12.221500396728516 -5653,2017-02-21 13:00:00,53.44400024414063,17.507999420166016,48.6520004272461,13.965999603271484,4.605999946594238,1.2150000333786009,12.880999565124512 -5654,2017-02-21 14:00:00,51.01499938964844,16.670000076293945,46.53499984741211,12.331000328063965,4.605999946594238,1.2150000333786009,13.760000228881836 -5655,2017-02-21 15:00:00,48.66899871826172,15.83199977874756,44.60499954223633,12.142999649047852,4.605999946594238,2.430999994277954,14.638999938964846 -5656,2017-02-21 16:00:00,53.0250015258789,17.34000015258789,48.5989990234375,13.482999801635742,4.232999801635741,1.2150000333786009,15.07800006866455 -5657,2017-02-21 17:00:00,53.2760009765625,16.836999893188473,49.05500030517578,12.545000076293944,4.2109999656677255,1.2150000333786009,14.638999938964846 -5658,2017-02-21 18:00:00,52.94100189208984,16.334999084472653,49.0009994506836,12.545000076293944,4.201000213623047,0.0,14.418999671936035 -5659,2017-02-21 19:00:00,51.34999847412109,14.82699966430664,47.9020004272461,11.633999824523926,2.632999897003174,0.0,14.418999671936035 -5660,2017-02-21 20:00:00,47.74800109863281,12.899999618530272,43.98799896240234,9.972000122070312,3.858999967575073,0.0,14.85849952697754 -5661,2017-02-21 21:00:00,53.0250015258789,16.586000442504886,49.21500015258789,13.29599952697754,3.848999977111816,0.0,13.31999969482422 -5662,2017-02-21 22:00:00,49.50699996948242,15.83199977874756,46.50799942016602,12.812999725341797,2.5160000324249268,0.0,12.440999984741213 -5663,2017-02-21 23:00:00,47.74800109863281,15.246000289916992,44.55099868774414,12.383999824523926,2.5160000324249268,0.0,12.001999855041506 -5664,2017-02-22 00:00:00,44.14599990844727,14.241000175476074,41.52199935913086,11.875,2.5160000324249268,0.0,11.123000144958496 -5665,2017-02-22 01:00:00,41.71599960327149,12.984000205993652,39.77999877929688,11.097999572753906,2.5160000324249268,0.0,10.684000015258787 -5666,2017-02-22 02:00:00,43.47600173950195,13.98900032043457,40.45000076293945,11.633999824523926,2.5160000324249268,0.0,10.684000015258787 -5667,2017-02-22 03:00:00,42.88899993896485,13.402999877929688,40.28900146484375,11.258000373840332,2.5160000324249268,0.0,10.024499893188477 -5668,2017-02-22 04:00:00,39.62200164794922,13.067999839782717,37.55500030517578,11.071000099182127,2.5160000324249268,0.0,9.80500030517578 -5669,2017-02-22 05:00:00,41.96799850463867,13.234999656677244,39.00199890136719,11.071000099182127,2.5160000324249268,0.0,9.364999771118164 -5670,2017-02-22 06:00:00,41.29800033569336,12.5649995803833,39.24399948120117,10.508000373840332,2.5160000324249268,0.0,8.925999641418457 -5671,2017-02-22 07:00:00,45.06700134277344,13.067999839782717,42.97000122070313,10.642000198364258,2.5160000324249268,0.0,8.925999641418457 -5672,2017-02-22 08:00:00,48.08300018310547,13.654000282287598,44.95299911499024,10.803000450134276,3.7309999465942383,0.0,8.486000061035156 -5673,2017-02-22 09:00:00,51.18199920654297,15.246000289916992,48.6520004272461,12.25,2.5160000324249268,0.0,7.827000141143799 -5674,2017-02-22 10:00:00,49.84199905395508,13.152000427246096,47.3390007019043,10.07900047302246,2.5160000324249268,0.0,7.607500076293945 -5675,2017-02-22 11:00:00,53.77899932861328,14.241000175476074,51.30599975585938,11.043999671936035,2.5160000324249268,0.0,7.607500076293945 -5676,2017-02-22 12:00:00,54.11399841308594,15.413000106811523,51.387001037597656,12.222999572753904,2.5160000324249268,0.0,7.827000141143799 -5677,2017-02-22 13:00:00,54.70000076293945,16.586000442504886,52.08399963378906,13.241999626159668,2.5160000324249268,0.0,7.827000141143799 -5678,2017-02-22 14:00:00,54.86800003051758,16.753999710083008,52.40499877929688,13.269000053405762,2.5160000324249268,0.0,8.486000061035156 -5679,2017-02-22 15:00:00,54.3650016784668,17.590999603271484,51.73500061035156,13.536999702453612,2.5160000324249268,0.0,8.925999641418457 -5680,2017-02-22 16:00:00,57.46500015258789,18.763999938964844,54.76399993896485,14.715999603271484,2.5160000324249268,0.0,9.364999771118164 -5681,2017-02-22 17:00:00,51.68500137329102,15.329999923706056,47.36600112915039,11.33899974822998,3.816999912261963,1.2690000534057615,9.585000038146973 -5682,2017-02-22 18:00:00,52.1870002746582,14.91100025177002,48.73300170898438,11.258000373840332,3.816999912261963,0.0,9.80500030517578 -5683,2017-02-22 19:00:00,56.04100036621094,16.250999450683597,52.19100189208984,11.982000350952148,3.816999912261963,1.375,9.80500030517578 -5684,2017-02-22 20:00:00,58.21900177001953,17.089000701904293,53.36999893188477,12.303999900817873,5.043000221252441,1.2150000333786009,9.80500030517578 -5685,2017-02-22 21:00:00,58.55400085449219,18.51300048828125,53.82600021362305,13.616999626159668,5.043000221252441,1.2150000333786009,10.024499893188477 -5686,2017-02-22 22:00:00,53.77899932861328,16.670000076293945,49.5369987487793,12.383999824523926,3.816999912261963,1.2150000333786009,10.024499893188477 -5687,2017-02-22 23:00:00,50.00899887084961,15.07800006866455,46.90999984741211,11.954999923706056,3.816999912261963,0.0,10.244000434875488 -5688,2017-02-23 00:00:00,47.74800109863281,14.407999992370604,44.84600067138672,11.607000350952148,2.483999967575073,0.0,10.244000434875488 -5689,2017-02-23 01:00:00,42.97299957275391,12.229999542236328,40.15499877929688,9.623000144958496,2.483999967575073,0.0,9.80500030517578 -5690,2017-02-23 02:00:00,41.71599960327149,12.314000129699709,39.08300018310547,9.70400047302246,2.483999967575073,0.0,9.80500030517578 -5691,2017-02-23 03:00:00,43.89400100708008,12.984000205993652,41.09299850463867,10.239999771118164,2.483999967575073,0.0,9.585000038146973 -5692,2017-02-23 04:00:00,43.64300155639648,13.319000244140623,40.95899963378906,10.614999771118164,2.483999967575073,0.0,9.145500183105469 -5693,2017-02-23 05:00:00,43.64300155639648,13.319000244140623,40.98600006103516,10.74899959564209,2.483999967575073,0.0,8.706000328063965 -5694,2017-02-23 06:00:00,47.24499893188477,14.072999954223633,43.34500122070313,10.829999923706056,3.742000102996826,0.0,8.925999641418457 -5695,2017-02-23 07:00:00,43.72700119018555,12.062999725341797,40.90599822998047,9.48900032043457,2.5269999504089355,0.0,8.925999641418457 -5696,2017-02-23 08:00:00,45.56999969482422,11.727999687194824,41.97800064086914,8.873000144958496,3.869999885559082,0.0,9.145500183105469 -5697,2017-02-23 09:00:00,53.61100006103516,16.0,49.59099960327149,12.196999549865724,3.838000059127808,0.0,9.585000038146973 -5698,2017-02-23 10:00:00,50.68000030517578,13.067999839782717,46.9370002746582,9.56999969482422,3.838000059127808,0.0,10.46399974822998 -5699,2017-02-23 11:00:00,54.19800186157226,13.98900032043457,50.39500045776367,10.401000022888184,3.838000059127808,0.0,12.221500396728516 -5700,2017-02-23 12:00:00,54.28200149536133,14.994000434875488,50.28799819946289,11.33899974822998,3.7739999294281006,0.0,13.539999961853027 -5701,2017-02-23 13:00:00,55.11899948120117,16.836999893188473,51.49399948120117,12.84000015258789,3.82699990272522,0.0,15.29800033569336 -5702,2017-02-23 14:00:00,54.02999877929688,16.250999450683597,50.87699890136719,12.62600040435791,2.559000015258789,0.0,15.517999649047852 -5703,2017-02-23 15:00:00,53.0250015258789,16.586000442504886,49.9119987487793,12.946999549865724,2.868000030517578,1.246999979019165,15.737500190734863 -5704,2017-02-23 16:00:00,55.53799819946289,16.50200080871582,51.09199905395508,12.277000427246096,4.083000183105469,1.2150000333786009,15.737500190734863 -5705,2017-02-23 17:00:00,56.459999084472656,17.004999160766598,51.84199905395508,12.652000427246096,4.232999801635741,1.2580000162124634,15.737500190734863 -5706,2017-02-23 18:00:00,55.95700073242188,16.250999450683597,51.65499877929688,12.196999549865724,4.232999801635741,0.0,15.29800033569336 -5707,2017-02-23 19:00:00,54.61700057983398,15.07800006866455,49.59099960327149,10.829999923706056,5.447999954223633,1.5670000314712524,13.979499816894531 -5708,2017-02-23 20:00:00,56.20800018310547,16.166999816894528,52.05699920654297,12.170000076293944,4.958000183105469,0.0,13.100500106811523 -5709,2017-02-23 21:00:00,55.2869987487793,15.496999740600586,50.77000045776367,11.472999572753904,3.4219999313354488,0.0,12.221500396728516 -5710,2017-02-23 22:00:00,52.77399826049805,16.334999084472653,49.3489990234375,12.678999900817873,3.6570000648498535,0.0,12.001500129699709 -5711,2017-02-23 23:00:00,47.999000549316406,15.916000366210938,43.23799896240234,10.185999870300291,3.6570000648498535,1.3539999723434448,11.781999588012695 -5712,2017-02-24 00:00:00,46.74300003051758,14.241000175476074,43.53300094604492,11.472999572753904,3.5179998874664307,0.0,11.781999588012695 -5713,2017-02-24 01:00:00,45.73699951171875,13.73799991607666,41.30799865722656,10.480999946594238,3.5179998874664307,1.22599995136261,11.343000411987305 -5714,2017-02-24 02:00:00,46.49100112915039,13.821999549865724,41.81700134277344,10.31999969482422,4.755000114440918,1.246999979019165,10.683500289916992 -5715,2017-02-24 03:00:00,45.65399932861328,13.56999969482422,41.62900161743164,10.427000045776367,3.5290000438690186,0.0,10.024499893188477 -5716,2017-02-24 04:00:00,43.55899810791016,13.487000465393065,40.10100173950195,10.803000450134276,4.776000022888184,0.0,9.585000038146973 -5717,2017-02-24 05:00:00,43.14099884033203,12.899999618530272,39.16299819946289,10.024999618530272,3.561000108718872,1.246999979019165,9.145500183105469 -5718,2017-02-24 06:00:00,43.64300155639648,12.5649995803833,40.85200119018555,10.213000297546388,3.3580000400543213,0.0,8.706000328063965 -5719,2017-02-24 07:00:00,41.54899978637695,10.470999717712402,37.98400115966797,7.692999839782715,4.573999881744385,0.0,7.827000141143799 -5720,2017-02-24 08:00:00,40.29199981689453,9.633000373840332,37.34000015258789,7.210999965667725,3.763000011444092,0.0,7.827000141143799 -5721,2017-02-24 09:00:00,52.35499954223633,16.0,47.6609992980957,12.008999824523926,4.178999900817871,1.406999945640564,9.804499626159668 -5722,2017-02-24 10:00:00,43.81100082397461,11.225000381469728,40.12799835205078,8.069000244140625,2.868000030517578,1.2150000333786009,13.31999969482422 -5723,2017-02-24 11:00:00,49.84199905395508,13.234999656677244,45.81100082397461,9.70400047302246,3.901999950408936,0.0,17.055500030517578 -5724,2017-02-24 12:00:00,49.3390007019043,14.994000434875488,45.67699813842773,11.204999923706056,3.848999977111816,1.4709999561309814,19.91200065612793 -5725,2017-02-24 13:00:00,51.51699829101562,16.50200080871582,47.74100112915039,12.894000053405762,3.891000032424927,0.0,20.79100036621093 -5726,2017-02-24 14:00:00,48.16699981689453,15.413000106811523,43.18399810791016,11.097999572753906,5.25600004196167,1.3860000371932983,21.670000076293945 -5727,2017-02-24 15:00:00,50.59600067138672,16.50200080871582,46.83000183105469,12.571999549865724,3.891000032424927,1.2369999885559082,22.76849937438965 -5728,2017-02-24 16:00:00,53.0250015258789,17.423999786376953,49.02799987792969,13.482999801635742,3.816999912261963,1.3969999551773071,22.54850006103516 -5729,2017-02-24 17:00:00,52.85800170898438,16.836999893188473,46.45399856567383,11.607000350952148,5.607999801635742,2.622999906539917,21.230499267578125 -5730,2017-02-24 18:00:00,51.76900100708008,15.329999923706056,46.64199829101562,11.043999671936035,5.671999931335449,2.622999906539917,19.03350067138672 -5731,2017-02-24 19:00:00,48.66899871826172,13.73799991607666,43.15700149536133,9.756999969482422,5.683000087738037,2.559000015258789,17.495000839233402 -5732,2017-02-24 20:00:00,54.11399841308594,17.004999160766598,49.24200057983398,12.517999649047852,5.800000190734862,2.559000015258789,15.957500457763672 -5733,2017-02-24 21:00:00,59.39099884033203,19.43400001525879,52.915000915527344,13.67099952697754,6.48199987411499,2.559000015258789,15.078499794006348 -5734,2017-02-24 22:00:00,51.68500137329102,16.166999816894528,47.07099914550781,11.982000350952148,5.853000164031982,2.559000015258789,13.979499816894531 -5735,2017-02-24 23:00:00,53.44400024414063,17.843000411987305,47.74100112915039,12.652000427246096,5.554999828338623,2.559000015258789,13.539999961853027 -5736,2017-02-25 00:00:00,49.59099960327149,16.50200080871582,44.63199996948242,12.277000427246096,4.882999897003174,1.2580000162124634,12.880499839782717 -5737,2017-02-25 01:00:00,48.584999084472656,16.419000625610348,44.36399841308594,12.303999900817873,4.702000141143799,1.2690000534057615,12.441499710083008 -5738,2017-02-25 02:00:00,49.00400161743164,15.916000366210938,43.34500122070313,11.472999572753904,4.765999794006348,1.2690000534057615,12.001500129699709 -5739,2017-02-25 03:00:00,42.387001037597656,13.487000465393065,37.79600143432617,10.024999618530272,4.670000076293945,1.2899999618530271,11.343000411987305 -5740,2017-02-25 04:00:00,38.95199966430664,11.810999870300291,35.11600112915039,8.845999717712402,4.6589999198913565,2.505000114440918,10.683500289916992 -5741,2017-02-25 05:00:00,44.81600189208984,14.576000213623049,41.54899978637695,11.446000099182127,3.4219999313354488,1.2369999885559082,10.024499893188477 -5742,2017-02-25 06:00:00,46.49100112915039,14.82699966430664,42.64799880981445,11.258000373840332,4.9790000915527335,1.2690000534057615,9.145500183105469 -5743,2017-02-25 07:00:00,44.64799880981445,13.73799991607666,41.040000915527344,10.347000122070312,4.402999877929688,1.2580000162124634,8.92549991607666 -5744,2017-02-25 08:00:00,44.983001708984375,12.145999908447266,38.97600173950195,7.61299991607666,6.065999984741211,2.569000005722046,9.145500183105469 -5745,2017-02-25 09:00:00,50.428001403808594,15.581000328063965,45.51599884033203,11.204999923706056,4.755000114440918,1.63100004196167,11.343000411987305 -5746,2017-02-25 10:00:00,52.85800170898438,17.004999160766598,48.196998596191406,12.678999900817873,4.818999767303467,1.4390000104904177,15.29800033569336 -5747,2017-02-25 11:00:00,53.52799987792969,16.836999893188473,48.7599983215332,12.357000350952148,4.414000034332275,1.375,19.6924991607666 -5748,2017-02-25 12:00:00,48.16699981689453,14.324000358581545,44.04199981689453,10.722000122070312,2.8469998836517334,1.2580000162124634,23.20800018310547 -5749,2017-02-25 13:00:00,47.66400146484375,14.994000434875488,43.50600051879883,11.232000350952148,4.061999797821045,2.483999967575073,24.74600028991699 -5750,2017-02-25 14:00:00,47.07799911499024,14.156999588012695,43.26399993896485,10.69499969482422,4.243000030517578,1.3860000371932983,26.28450012207031 -5751,2017-02-25 15:00:00,47.24499893188477,15.329999923706056,43.39899826049805,11.66100025177002,4.019000053405762,1.4709999561309814,26.94300079345703 -5752,2017-02-25 16:00:00,49.17200088500977,16.250999450683597,44.41699981689453,12.03600025177002,4.861999988555908,1.4290000200271606,25.625 -5753,2017-02-25 17:00:00,51.01499938964844,15.413000106811523,46.4010009765625,11.097999572753906,4.9790000915527335,1.406999945640564,23.42799949645996 -5754,2017-02-25 18:00:00,52.1870002746582,15.413000106811523,48.11600112915039,11.902000427246096,3.625,0.0,21.66950035095215 -5755,2017-02-25 19:00:00,49.25600051879883,13.904999732971191,44.33700180053711,9.99899959564209,4.755000114440918,1.4179999828338623,19.6924991607666 -5756,2017-02-25 20:00:00,47.83200073242188,13.654000282287598,43.26399993896485,9.864999771118164,4.926000118255615,2.6760001182556152,18.15449905395508 -5757,2017-02-25 21:00:00,52.1870002746582,14.491999626159668,47.04399871826172,10.024999618530272,5.085000038146973,2.6760001182556152,17.27549934387207 -5758,2017-02-25 22:00:00,53.69499969482422,17.172000885009766,47.82099914550781,12.03600025177002,5.906000137329103,1.4500000476837158,16.177000045776367 -5759,2017-02-25 23:00:00,43.89400100708008,13.067999839782717,40.23500061035156,9.677000045776367,3.3159999847412114,1.2690000534057615,15.737500190734863 -5760,2017-02-26 00:00:00,44.73199844360352,13.319000244140623,39.18999862670898,9.034000396728516,4.6479997634887695,2.505000114440918,15.517499923706056 -5761,2017-02-26 01:00:00,46.57500076293945,15.161999702453612,41.14699935913086,10.989999771118164,4.584000110626222,1.246999979019165,15.29800033569336 -5762,2017-02-26 02:00:00,42.80500030517578,13.654000282287598,39.69900131225586,10.347000122070312,3.433000087738037,2.483999967575073,14.85849952697754 -5763,2017-02-26 03:00:00,41.38100051879883,12.5649995803833,37.31399917602539,9.354999542236328,5.138999938964844,2.483999967575073,14.19950008392334 -5764,2017-02-26 04:00:00,40.87900161743164,13.319000244140623,37.0989990234375,10.07900047302246,3.986999988555908,1.246999979019165,13.759499549865724 -5765,2017-02-26 05:00:00,44.14599990844727,13.654000282287598,39.72600173950195,10.614999771118164,4.008999824523927,1.2369999885559082,13.539999961853027 -5766,2017-02-26 06:00:00,41.79999923706055,12.314000129699709,38.70800018310547,9.838000297546388,2.803999900817871,0.0,12.880499839782717 -5767,2017-02-26 07:00:00,40.125,11.225000381469728,36.05400085449219,8.578000068664549,4.019000053405762,0.0,12.441499710083008 -5768,2017-02-26 08:00:00,40.87900161743164,10.13599967956543,38.06399917602539,7.585999965667725,2.7720000743865967,0.0,12.221500396728516 -5769,2017-02-26 09:00:00,45.90499877929688,13.402999877929688,43.15700149536133,10.159000396728516,2.878999948501587,0.0,14.19950008392334 -5770,2017-02-26 10:00:00,46.74300003051758,14.743000030517578,43.88100051879883,11.633999824523926,2.8570001125335693,0.0,17.934499740600586 -5771,2017-02-26 11:00:00,47.1609992980957,13.402999877929688,43.98799896240234,10.133000373840332,2.8359999656677246,1.3009999990463257,21.670000076293945 -5772,2017-02-26 12:00:00,46.32400131225586,14.659000396728516,44.01499938964844,11.28499984741211,2.8359999656677246,1.2580000162124634,24.74600028991699 -5773,2017-02-26 13:00:00,44.81600189208984,13.904999732971191,41.97800064086914,10.96399974822998,2.8359999656677246,1.2580000162124634,26.72400093078613 -5774,2017-02-26 14:00:00,45.56999969482422,14.576000213623049,42.72800064086914,11.258000373840332,2.8359999656677246,1.2580000162124634,28.701499938964844 -5775,2017-02-26 15:00:00,44.81600189208984,15.329999923706056,42.27299880981445,12.142999649047852,2.8359999656677246,1.2580000162124634,29.141000747680664 -5776,2017-02-26 16:00:00,45.48600006103516,14.659000396728516,42.38000106811523,11.204999923706056,2.8359999656677246,1.2580000162124634,28.04199981689453 -5777,2017-02-26 17:00:00,50.76300048828125,16.753999710083008,46.31999969482422,12.706000328063965,4.169000148773193,1.2580000162124634,25.84499931335449 -5778,2017-02-26 18:00:00,52.35499954223633,16.419000625610348,48.35800170898438,12.437999725341797,4.169000148773193,1.2580000162124634,23.86750030517578 -5779,2017-02-26 19:00:00,49.84199905395508,15.246000289916992,45.43600082397461,11.12399959564209,4.169000148773193,1.2580000162124634,21.66950035095215 -5780,2017-02-26 20:00:00,50.84700012207031,15.413000106811523,46.6150016784668,11.043999671936035,4.169000148773193,1.2580000162124634,19.912500381469727 -5781,2017-02-26 21:00:00,51.43399810791016,16.419000625610348,47.28499984741211,12.08899974822998,4.169000148773193,1.2580000162124634,18.5935001373291 -5782,2017-02-26 22:00:00,46.90999984741211,15.161999702453612,43.58599853515625,11.633999824523926,2.878999948501587,1.2580000162124634,17.714500427246094 -5783,2017-02-26 23:00:00,46.40700149536133,15.329999923706056,43.26399993896485,11.607000350952148,2.878999948501587,1.2580000162124634,16.835500717163086 -5784,2017-02-27 00:00:00,45.48600006103516,15.916000366210938,42.084999084472656,12.598999977111816,2.878999948501587,1.2369999885559082,15.957500457763672 -5785,2017-02-27 01:00:00,40.04100036621094,12.229999542236328,36.992000579833984,9.248000144958496,2.878999948501587,1.3009999990463257,15.29800033569336 -5786,2017-02-27 02:00:00,34.345001220703125,8.963000297546387,31.416000366210927,6.353000164031982,2.878999948501587,1.2580000162124634,14.418999671936035 -5787,2017-02-27 03:00:00,40.9630012512207,13.56999969482422,37.95700073242188,10.642000198364258,2.878999948501587,1.3969999551773071,13.979499816894531 -5788,2017-02-27 04:00:00,41.46500015258789,13.067999839782717,38.65399932861328,10.185999870300291,2.878999948501587,1.3009999990463257,13.100500106811523 -5789,2017-02-27 05:00:00,41.79999923706055,13.654000282287598,39.29700088500977,10.722000122070312,2.878999948501587,0.0,11.781999588012695 -5790,2017-02-27 06:00:00,44.900001525878906,14.743000030517578,42.32600021362305,11.767999649047852,2.878999948501587,0.0,11.343000411987305 -5791,2017-02-27 07:00:00,45.4020004272461,13.821999549865724,42.91600036621094,11.312000274658203,2.878999948501587,0.0,10.903499603271484 -5792,2017-02-27 08:00:00,41.13000106811523,11.140999794006348,37.90299987792969,8.282999992370605,2.878999948501587,1.2150000333786009,10.903499603271484 -5793,2017-02-27 09:00:00,49.25600051879883,16.670000076293945,45.75699996948242,12.894000053405762,2.878999948501587,1.246999979019165,12.880499839782717 -5794,2017-02-27 10:00:00,42.303001403808594,11.5600004196167,38.97600173950195,8.95300006866455,2.5480000972747803,0.0,16.615999221801758 -5795,2017-02-27 11:00:00,40.29199981689453,11.140999794006348,37.5009994506836,8.390000343322754,2.622999906539917,0.0,19.912500381469727 -5796,2017-02-27 12:00:00,48.50199890136719,14.156999588012695,45.38199996948242,11.232000350952148,2.6549999713897705,0.0,23.42799949645996 -5797,2017-02-27 13:00:00,47.49599838256836,14.576000213623049,44.55099868774414,11.472999572753904,2.6549999713897705,0.0,25.625 -5798,2017-02-27 14:00:00,45.90499877929688,13.73799991607666,43.45199966430664,11.071000099182127,2.6549999713897705,0.0,27.82200050354004 -5799,2017-02-27 15:00:00,47.41299819946289,16.166999816894528,43.63999938964844,12.62600040435791,2.6549999713897705,1.246999979019165,28.92099952697754 -5800,2017-02-27 16:00:00,49.17200088500977,15.581000328063965,45.22100067138672,12.142999649047852,2.6549999713897705,1.2899999618530271,27.602500915527344 -5801,2017-02-27 17:00:00,49.42300033569336,14.576000213623049,45.16799926757813,11.017000198364258,3.997999906539917,1.22599995136261,25.84449958801269 -5802,2017-02-27 18:00:00,47.74800109863281,14.156999588012695,43.66699981689453,10.989999771118164,4.083000183105469,1.503000020980835,24.08699989318848 -5803,2017-02-27 19:00:00,46.82600021362305,12.480999946594238,42.38000106811523,9.006999969482422,5.330999851226807,1.3220000267028809,22.10950088500977 -5804,2017-02-27 20:00:00,49.0880012512207,13.821999549865724,44.95299911499024,10.427000045776367,4.1469998359680185,1.5140000581741333,20.35149955749512 -5805,2017-02-27 21:00:00,52.10400009155274,15.748000144958494,46.66899871826172,11.5,5.117000102996826,1.3539999723434448,19.6924991607666 -5806,2017-02-27 22:00:00,45.82099914550781,12.899999618530272,41.709999084472656,9.70400047302246,4.243000030517578,0.0,19.25300025939941 -5807,2017-02-27 23:00:00,44.48099899291992,13.234999656677244,40.28900146484375,9.838000297546388,4.275000095367432,1.524999976158142,18.813499450683597 -5808,2017-02-28 00:00:00,43.55899810791016,13.402999877929688,39.00199890136719,10.052000045776367,4.254000186920166,1.2790000438690186,18.15399932861328 -5809,2017-02-28 01:00:00,42.80500030517578,13.152000427246096,39.67300033569336,10.668999671936035,2.7290000915527344,0.0,17.71500015258789 -5810,2017-02-28 02:00:00,41.29800033569336,11.895000457763672,38.33200073242188,9.54300022125244,4.083000183105469,0.0,17.055500030517578 -5811,2017-02-28 03:00:00,44.14599990844727,13.904999732971191,40.02099990844727,10.69499969482422,4.051000118255615,1.2790000438690186,16.615999221801758 -5812,2017-02-28 04:00:00,42.47000122070313,13.152000427246096,37.608001708984375,9.99899959564209,4.051000118255615,1.4390000104904177,16.396499633789062 -5813,2017-02-28 05:00:00,40.9630012512207,12.229999542236328,37.2599983215332,9.48900032043457,4.307000160217285,0.0,16.177000045776367 -5814,2017-02-28 06:00:00,44.73199844360352,13.402999877929688,40.79800033569336,10.024999618530272,4.307000160217285,1.2690000534057615,15.957500457763672 -5815,2017-02-28 07:00:00,46.40700149536133,13.487000465393065,41.20000076293945,9.784000396728516,4.370999813079834,1.3539999723434448,15.078499794006348 -5816,2017-02-28 08:00:00,45.31800079345703,12.062999725341797,40.93199920654297,8.52400016784668,4.307000160217285,1.3860000371932983,14.85849952697754 -5817,2017-02-28 09:00:00,48.91999816894531,15.329999923706056,46.31999969482422,12.196999549865724,2.750999927520752,0.0,16.835500717163086 -5818,2017-02-28 10:00:00,45.98899841308594,12.732999801635742,41.14699935913086,8.578000068664549,3.986999988555908,1.5889999866485596,20.57150077819824 -5819,2017-02-28 11:00:00,45.73699951171875,12.984000205993652,41.89699935913086,9.48900032043457,3.986999988555908,1.3220000267028809,23.647499084472656 -5820,2017-02-28 12:00:00,45.31800079345703,12.984000205993652,42.97000122070313,10.185999870300291,2.569000005722046,0.0,26.06450080871582 -5821,2017-02-28 13:00:00,47.41299819946289,14.82699966430664,43.935001373291016,11.33899974822998,3.795000076293945,1.2369999885559082,26.943500518798828 -5822,2017-02-28 14:00:00,48.16699981689453,15.413000106811523,43.82699966430664,11.579999923706056,3.742000102996826,1.375,28.48150062561035 -5823,2017-02-28 15:00:00,47.24499893188477,15.413000106811523,43.90800094604492,12.196999549865724,2.440999984741211,1.2150000333786009,29.141000747680664 -5824,2017-02-28 16:00:00,49.75799942016602,16.0,46.53499984741211,12.62600040435791,3.742000102996826,1.2150000333786009,28.04199981689453 -5825,2017-02-28 17:00:00,51.09799957275391,16.083000183105472,45.40900039672852,11.553000450134276,5.800000190734862,1.3220000267028809,26.50349998474121 -5826,2017-02-28 18:00:00,49.59099960327149,15.07800006866455,45.2750015258789,11.472999572753904,4.840000152587892,1.2580000162124634,24.965999603271484 -5827,2017-02-28 19:00:00,49.0880012512207,14.156999588012695,43.04999923706055,9.461999893188477,5.2129998207092285,2.494999885559082,23.86750030517578 -5828,2017-02-28 20:00:00,48.16699981689453,13.654000282287598,43.02299880981445,9.729999542236328,5.341000080108644,2.5160000324249268,22.98850059509277 -5829,2017-02-28 21:00:00,50.428001403808594,15.581000328063965,44.73899841308594,10.37399959564209,5.235000133514403,2.782999992370605,22.10950088500977 -5830,2017-02-28 22:00:00,49.42300033569336,15.83199977874756,45.35499954223633,12.08899974822998,3.9340000152587886,1.2150000333786009,21.450000762939453 -5831,2017-02-28 23:00:00,46.40700149536133,15.496999740600586,42.83599853515625,12.142999649047852,3.496999979019165,0.0,21.01099967956543 -5832,2017-03-01 00:00:00,42.72200012207031,13.402999877929688,39.69900131225586,10.668999671936035,2.6440000534057617,0.0,20.57150077819824 -5833,2017-03-01 01:00:00,42.47000122070313,13.487000465393065,38.86800003051758,10.53499984741211,3.82699990272522,1.22599995136261,19.912500381469727 -5834,2017-03-01 02:00:00,39.95700073242188,11.895000457763672,35.007999420166016,8.578000068664549,4.6479997634887695,1.2690000534057615,19.25300025939941 -5835,2017-03-01 03:00:00,40.9630012512207,12.732999801635742,36.42900085449219,9.381999969482422,4.690999984741211,1.22599995136261,18.813499450683597 -5836,2017-03-01 04:00:00,39.53799819946289,12.229999542236328,34.472000122070305,8.791999816894531,4.6479997634887695,1.621000051498413,17.714500427246094 -5837,2017-03-01 05:00:00,41.54899978637695,13.067999839782717,37.52799987792969,9.864999771118164,4.296999931335448,1.2899999618530271,17.27549934387207 -5838,2017-03-01 06:00:00,44.229000091552734,13.654000282287598,39.35100173950195,9.838000297546388,5.629000186920166,1.246999979019165,16.835500717163086 -5839,2017-03-01 07:00:00,42.387001037597656,12.229999542236328,36.9119987487793,8.73900032043457,5.0960001945495605,1.5779999494552612,16.835500717163086 -5840,2017-03-01 08:00:00,40.9630012512207,10.805999755859377,37.0989990234375,7.88100004196167,3.7739999294281006,1.3109999895095823,16.396499633789062 -5841,2017-03-01 09:00:00,46.65900039672852,15.496999740600586,43.02299880981445,12.303999900817873,4.232999801635741,1.3009999990463257,16.836000442504886 -5842,2017-03-01 10:00:00,44.0620002746582,12.64900016784668,42.21900177001953,10.024999618530272,2.068000078201294,0.0,18.5939998626709 -5843,2017-03-01 11:00:00,47.49599838256836,13.821999549865724,45.14099884033203,11.097999572753906,2.068000078201294,0.0,20.79100036621093 -5844,2017-03-01 12:00:00,47.32899856567383,13.98900032043457,45.2750015258789,11.043999671936035,2.068000078201294,0.0,23.42799949645996 -5845,2017-03-01 13:00:00,46.071998596191406,14.91100025177002,42.78200149536133,11.472999572753904,3.325999975204468,1.3220000267028809,25.625 -5846,2017-03-01 14:00:00,47.83200073242188,16.334999084472653,43.29100036621094,12.196999549865724,4.563000202178955,1.2690000534057615,26.943500518798828 -5847,2017-03-01 15:00:00,48.08300018310547,16.166999816894528,45.59700012207031,12.920000076293944,3.2839999198913574,0.0,24.30649948120117 -5848,2017-03-01 16:00:00,48.66899871826172,14.743000030517578,44.84600067138672,11.151000022888184,3.3480000495910645,1.343000054359436,22.548999786376957 -5849,2017-03-01 17:00:00,47.24499893188477,14.91100025177002,44.47100067138672,11.795000076293944,3.4649999141693115,0.0,21.45050048828125 -5850,2017-03-01 18:00:00,52.43899917602539,16.250999450683597,48.8129997253418,12.517999649047852,4.541999816894531,0.0,19.6924991607666 -5851,2017-03-01 19:00:00,49.3390007019043,14.072999954223633,45.70399856567383,10.855999946594238,4.434999942779541,0.0,18.5939998626709 -5852,2017-03-01 20:00:00,50.428001403808594,13.56999969482422,46.5880012512207,9.864999771118164,4.243000030517578,1.246999979019165,17.71500015258789 -5853,2017-03-01 21:00:00,48.83700180053711,15.83199977874756,47.3120002746582,13.107999801635742,1.8020000457763672,0.0,16.836000442504886 -5854,2017-03-01 22:00:00,45.31800079345703,13.234999656677244,42.91600036621094,10.45400047302246,1.8020000457763672,0.0,16.177000045776367 -5855,2017-03-01 23:00:00,41.88399887084961,13.319000244140623,40.47700119018555,11.28499984741211,1.8020000457763672,0.0,15.078499794006348 -5856,2017-03-02 00:00:00,43.97800064086914,14.072999954223633,41.01300048828125,11.258000373840332,1.8020000457763672,0.0,14.19950008392334 -5857,2017-03-02 01:00:00,41.88399887084961,12.984000205993652,39.77999877929688,10.722000122070312,3.0169999599456787,0.0,13.759499549865724 -5858,2017-03-02 02:00:00,42.303001403808594,13.234999656677244,40.71799850463867,10.90999984741211,1.7480000257492063,0.0,12.880499839782717 -5859,2017-03-02 03:00:00,42.88899993896485,13.904999732971191,39.83300018310547,11.151000022888184,3.4219999313354488,1.3650000095367432,12.001500129699709 -5860,2017-03-02 04:00:00,40.71099853515625,12.899999618530272,37.2599983215332,10.159000396728516,3.3580000400543213,1.2150000333786009,10.903499603271484 -5861,2017-03-02 05:00:00,39.11999893188477,11.47599983215332,36.05400085449219,8.873000144958496,3.3580000400543213,0.0,9.804499626159668 -5862,2017-03-02 06:00:00,43.30799865722656,13.821999549865724,40.95899963378906,11.097999572753906,3.3580000400543213,0.0,8.92549991607666 -5863,2017-03-02 07:00:00,46.2400016784668,13.821999549865724,42.56800079345703,10.480999946594238,3.3580000400543213,1.2369999885559082,8.266500473022461 -5864,2017-03-02 08:00:00,40.459999084472656,11.225000381469728,37.79600143432617,8.550999641418457,3.3580000400543213,0.0,8.486499786376951 -5865,2017-03-02 09:00:00,43.55899810791016,13.234999656677244,40.90599822998047,10.614999771118164,3.26200008392334,0.0,10.903499603271484 -5866,2017-03-02 10:00:00,40.3759994506836,10.973999977111816,38.52000045776367,8.791999816894531,1.9830000400543213,0.0,15.29800033569336 -5867,2017-03-02 11:00:00,44.0620002746582,13.402999877929688,41.62900161743164,10.90999984741211,3.049000024795532,0.0,19.6924991607666 -5868,2017-03-02 12:00:00,47.999000549316406,13.98900032043457,45.03400039672852,10.74899959564209,2.9210000038146973,1.22599995136261,22.548999786376957 -5869,2017-03-02 13:00:00,49.17200088500977,15.748000144958494,44.92599868774414,11.821000099182127,4.275000095367432,1.3860000371932983,23.86750030517578 -5870,2017-03-02 14:00:00,47.74800109863281,14.82699966430664,44.92599868774414,11.579999923706056,3.124000072479248,0.0,26.28400039672852 -5871,2017-03-02 15:00:00,46.40700149536133,13.654000282287598,43.07699966430664,10.37399959564209,3.0380001068115234,1.22599995136261,27.82250022888184 -5872,2017-03-02 16:00:00,51.85200119018555,17.34000015258789,46.5880012512207,12.357000350952148,5.480000019073486,2.430999994277954,25.18549919128418 -5873,2017-03-02 17:00:00,49.75799942016602,15.329999923706056,45.89099884033203,11.553000450134276,4.296999931335448,1.4179999828338623,22.76849937438965 -5874,2017-03-02 18:00:00,51.18199920654297,14.994000434875488,47.5,11.418999671936035,4.296999931335448,1.2369999885559082,21.01099967956543 -5875,2017-03-02 19:00:00,44.73199844360352,12.062999725341797,41.09299850463867,8.873000144958496,3.0810000896453857,1.246999979019165,18.5935001373291 -5876,2017-03-02 20:00:00,50.428001403808594,14.659000396728516,46.9640007019043,11.204999923706056,4.414000034332275,1.2369999885559082,16.835500717163086 -5877,2017-03-02 21:00:00,53.44400024414063,17.004999160766598,49.7509994506836,13.161999702453612,4.296999931335448,1.7380000352859497,15.517499923706056 -5878,2017-03-02 22:00:00,52.27099990844727,16.836999893188473,47.9020004272461,12.706000328063965,4.317999839782715,1.343000054359436,14.638500213623049 -5879,2017-03-02 23:00:00,48.75299835205078,15.413000106811523,45.03400039672852,11.66100025177002,4.563000202178955,1.246999979019165,14.19950008392334 -5880,2017-03-03 00:00:00,46.40700149536133,14.91100025177002,42.59400177001953,11.741000175476074,4.446000099182129,1.6740000247955322,14.19950008392334 -5881,2017-03-03 01:00:00,40.87900161743164,12.480999946594238,37.52799987792969,9.54300022125244,3.9340000152587886,1.2790000438690186,14.19950008392334 -5882,2017-03-03 02:00:00,41.13000106811523,12.5649995803833,37.71599960327149,9.729999542236328,3.9769999980926514,0.0,13.539999961853027 -5883,2017-03-03 03:00:00,42.1349983215332,13.234999656677244,38.680999755859375,10.401000022888184,2.8359999656677246,1.2369999885559082,13.100500106811523 -5884,2017-03-03 04:00:00,41.54899978637695,12.480999946594238,38.11800003051758,9.890999794006348,4.019000053405762,0.0,12.66100025177002 -5885,2017-03-03 05:00:00,41.632999420166016,12.899999618530272,38.84199905395508,10.29300022125244,4.083000183105469,0.0,11.781999588012695 -5886,2017-03-03 06:00:00,44.0620002746582,13.56999969482422,40.77199935913086,10.508000373840332,2.8469998836517334,0.0,11.781999588012695 -5887,2017-03-03 07:00:00,42.387001037597656,11.895000457763672,39.37799835205078,9.086999893188477,2.8469998836517334,0.0,11.343000411987305 -5888,2017-03-03 08:00:00,42.80500030517578,12.229999542236328,39.69900131225586,9.48900032043457,2.8469998836517334,0.0,11.5625 -5889,2017-03-03 09:00:00,46.74300003051758,14.994000434875488,44.44400024414063,12.277000427246096,2.8469998836517334,0.0,13.100500106811523 -5890,2017-03-03 10:00:00,43.2239990234375,11.47599983215332,41.040000915527344,8.925999641418457,2.8469998836517334,0.0,15.95699977874756 -5891,2017-03-03 11:00:00,46.40700149536133,11.979000091552734,43.96099853515625,9.409000396728516,2.8469998836517334,0.0,19.03350067138672 -5892,2017-03-03 12:00:00,45.98899841308594,13.402999877929688,43.72000122070313,10.588000297546388,2.8469998836517334,0.0,21.88949966430664 -5893,2017-03-03 13:00:00,46.32400131225586,13.904999732971191,44.25600051879883,11.178000450134276,2.8469998836517334,0.0,23.867000579833984 -5894,2017-03-03 14:00:00,47.49599838256836,14.91100025177002,45.06000137329102,12.008999824523926,2.8469998836517334,0.0,24.526500701904297 -5895,2017-03-03 15:00:00,44.0620002746582,13.487000465393065,41.790000915527344,10.776000022888184,2.8469998836517334,0.0,24.965999603271484 -5896,2017-03-03 16:00:00,46.49100112915039,13.98900032043457,43.98799896240234,10.96399974822998,2.8469998836517334,0.0,25.18549919128418 -5897,2017-03-03 17:00:00,48.08300018310547,14.576000213623049,44.84600067138672,11.312000274658203,2.8469998836517334,1.2369999885559082,25.40500068664551 -5898,2017-03-03 18:00:00,46.82600021362305,13.487000465393065,43.50600051879883,10.024999618530272,2.8469998836517334,1.4290000200271606,24.30649948120117 -5899,2017-03-03 19:00:00,48.50199890136719,13.402999877929688,43.31800079345703,9.48900032043457,5.40500020980835,1.22599995136261,22.98850059509277 -5900,2017-03-03 20:00:00,47.999000549316406,14.324000358581545,45.14099884033203,11.204999923706056,3.5399999618530287,0.0,21.450000762939453 -5901,2017-03-03 21:00:00,51.68500137329102,16.166999816894528,47.6870002746582,12.277000427246096,4.776000022888184,1.524999976158142,20.57150077819824 -5902,2017-03-03 22:00:00,45.23500061035156,13.821999549865724,41.97800064086914,10.803000450134276,3.5290000438690186,1.6419999599456787,19.6924991607666 -5903,2017-03-03 23:00:00,47.74800109863281,14.491999626159668,43.63999938964844,11.178000450134276,3.5290000438690186,1.246999979019165,19.25300025939941 -5904,2017-03-04 00:00:00,41.29800033569336,12.062999725341797,38.54700088500977,9.435999870300291,3.5290000438690186,0.0,18.5935001373291 -5905,2017-03-04 01:00:00,39.11999893188477,11.225000381469728,36.375,8.630999565124513,3.5290000438690186,0.0,17.27549934387207 -5906,2017-03-04 02:00:00,42.387001037597656,13.56999969482422,39.72600173950195,10.642000198364258,3.5290000438690186,0.0,16.396499633789062 -5907,2017-03-04 03:00:00,42.1349983215332,13.234999656677244,39.24399948120117,10.31999969482422,3.5290000438690186,0.0,15.517499923706056 -5908,2017-03-04 04:00:00,39.53799819946289,12.732999801635742,36.5629997253418,10.347000122070312,3.5290000438690186,0.0,14.418999671936035 -5909,2017-03-04 05:00:00,43.14099884033203,13.487000465393065,39.24399948120117,10.722000122070312,3.5290000438690186,0.0,13.759499549865724 -5910,2017-03-04 06:00:00,41.38100051879883,12.899999618530272,38.25199890136719,10.37399959564209,3.5290000438690186,0.0,13.320500373840332 -5911,2017-03-04 07:00:00,53.61100006103516,14.91100025177002,50.26100158691406,11.178000450134276,3.4760000705718994,0.0,12.880499839782717 -5912,2017-03-04 08:00:00,54.02999877929688,14.576000213623049,50.87699890136719,11.232000350952148,3.4760000705718994,0.0,13.759499549865724 -5913,2017-03-04 09:00:00,57.88399887084961,17.423999786376953,55.27299880981445,13.536999702453612,2.259999990463257,0.0,16.177000045776367 -5914,2017-03-04 10:00:00,61.65299987792969,18.59600067138672,59.053001403808594,14.234000205993652,2.259999990463257,0.0,20.351999282836918 -5915,2017-03-04 11:00:00,60.39699935913086,17.089000701904293,57.98099899291992,13.135000228881836,2.259999990463257,0.0,24.74600028991699 -5916,2017-03-04 12:00:00,59.97800064086914,16.083000183105472,56.69400024414063,12.142999649047852,2.259999990463257,0.0,28.04199981689453 -5917,2017-03-04 13:00:00,60.64799880981445,17.926000595092773,57.31100082397461,13.187999725341797,2.259999990463257,1.2790000438690186,28.92099952697754 -5918,2017-03-04 14:00:00,59.13999938964844,17.172000885009766,55.94400024414063,12.732999801635742,3.507999897003174,1.22599995136261,28.701499938964844 -5919,2017-03-04 15:00:00,50.428001403808594,16.334999084472653,47.98199844360352,12.812999725341797,3.507999897003174,1.2790000438690186,27.82200050354004 -5920,2017-03-04 16:00:00,47.999000549316406,14.659000396728516,43.82699966430664,11.071000099182127,3.507999897003174,1.375,27.163000106811523 -5921,2017-03-04 17:00:00,42.303001403808594,11.225000381469728,37.2869987487793,7.479000091552732,4.7230000495910645,1.375,26.723499298095703 -5922,2017-03-04 18:00:00,46.2400016784668,14.156999588012695,41.62900161743164,10.052000045776367,4.519999980926514,1.375,26.28400039672852 -5923,2017-03-04 19:00:00,47.1609992980957,13.234999656677244,41.22700119018555,8.52400016784668,5.800000190734862,2.5910000801086426,24.965999603271484 -5924,2017-03-04 20:00:00,49.59099960327149,13.73799991607666,44.47100067138672,9.515999794006348,5.491000175476074,2.5910000801086426,22.108999252319336 -5925,2017-03-04 21:00:00,47.07799911499024,14.156999588012695,42.54100036621094,10.45400047302246,5.415999889373778,2.5910000801086426,20.131999969482425 -5926,2017-03-04 22:00:00,43.81100082397461,13.234999656677244,38.01100158691406,9.54300022125244,4.9790000915527335,1.5460000038146973,19.03300094604492 -5927,2017-03-04 23:00:00,47.24499893188477,14.743000030517578,41.81700134277344,10.883000373840332,5.127999782562256,1.3009999990463257,18.15399932861328 -5928,2017-03-05 00:00:00,44.64799880981445,13.904999732971191,40.79800033569336,10.855999946594238,3.869999885559082,0.0,17.71500015258789 -5929,2017-03-05 01:00:00,38.617000579833984,11.309000015258787,34.9010009765625,8.765000343322754,3.3159999847412114,0.0,17.495000839233402 -5930,2017-03-05 02:00:00,41.54899978637695,12.899999618530272,38.14500045776367,10.213000297546388,3.3159999847412114,0.0,17.27549934387207 -5931,2017-03-05 03:00:00,38.198001861572266,12.062999725341797,35.8390007019043,9.784000396728516,3.3159999847412114,0.0,16.835500717163086 -5932,2017-03-05 04:00:00,38.86800003051758,11.644000053405762,35.8120002746582,9.302000045776367,3.1449999809265137,0.0,16.615999221801758 -5933,2017-03-05 05:00:00,38.70100021362305,12.314000129699709,35.86600112915039,9.810999870300291,1.919000029563904,0.0,16.396499633789062 -5934,2017-03-05 06:00:00,38.28200149536133,11.47599983215332,35.40999984741211,9.086999893188477,3.124000072479248,0.0,16.615999221801758 -5935,2017-03-05 07:00:00,43.2239990234375,12.815999984741213,39.64599990844727,9.864999771118164,3.124000072479248,0.0,16.615999221801758 -5936,2017-03-05 08:00:00,36.68999862670898,9.29800033569336,34.257999420166016,7.3979997634887695,3.124000072479248,0.0,16.615999221801758 -5937,2017-03-05 09:00:00,42.21900177001953,11.979000091552734,39.83300018310547,9.784000396728516,3.124000072479248,0.0,17.055500030517578 -5938,2017-03-05 10:00:00,43.81100082397461,11.5600004196167,41.76300048828125,9.11400032043457,3.124000072479248,0.0,18.15399932861328 -5939,2017-03-05 11:00:00,45.4020004272461,12.5649995803833,43.39899826049805,9.99899959564209,3.124000072479248,0.0,20.79100036621093 -5940,2017-03-05 12:00:00,44.0620002746582,12.815999984741213,41.415000915527344,9.890999794006348,3.124000072479248,0.0,23.427499771118164 -5941,2017-03-05 13:00:00,44.14599990844727,13.56999969482422,41.49499893188477,10.560999870300291,3.124000072479248,0.0,24.526500701904297 -5942,2017-03-05 14:00:00,41.54899978637695,12.815999984741213,38.81499862670898,10.07900047302246,3.124000072479248,0.0,25.18549919128418 -5943,2017-03-05 15:00:00,42.72200012207031,12.984000205993652,40.45000076293945,10.31999969482422,3.124000072479248,0.0,25.40500068664551 -5944,2017-03-05 16:00:00,43.47600173950195,11.895000457763672,40.82500076293945,9.034000396728516,1.8760000467300413,0.0,24.526500701904297 -5945,2017-03-05 17:00:00,45.48600006103516,12.314000129699709,42.59400177001953,9.248000144958496,3.124000072479248,1.3860000371932983,24.08699989318848 -5946,2017-03-05 18:00:00,43.64300155639648,12.64900016784668,40.61100006103516,9.595999717712402,3.124000072479248,1.2369999885559082,23.42799949645996 -5947,2017-03-05 19:00:00,39.53799819946289,9.381999969482422,36.96500015258789,7.34499979019165,3.124000072479248,0.0,22.76849937438965 -5948,2017-03-05 20:00:00,39.874000549316406,10.470999717712402,37.6349983215332,8.52400016784668,1.7699999809265137,0.0,22.10950088500977 -5949,2017-03-05 21:00:00,44.229000091552734,12.732999801635742,41.81700134277344,10.213000297546388,1.7699999809265137,0.0,21.450000762939453 -5950,2017-03-05 22:00:00,44.81600189208984,13.487000465393065,42.35300064086914,11.178000450134276,1.7699999809265137,0.0,20.79150009155273 -5951,2017-03-05 23:00:00,43.97800064086914,12.984000205993652,41.62900161743164,10.69499969482422,1.7699999809265137,0.0,20.35149955749512 -5952,2017-03-06 00:00:00,41.13000106811523,12.480999946594238,38.73400115966797,10.213000297546388,1.7699999809265137,0.0,19.25300025939941 -5953,2017-03-06 01:00:00,38.95199966430664,11.5600004196167,36.696998596191406,9.56999969482422,1.7699999809265137,0.0,17.934499740600586 -5954,2017-03-06 02:00:00,40.459999084472656,11.895000457763672,38.35900115966797,9.784000396728516,1.7699999809265137,0.0,16.615999221801758 -5955,2017-03-06 03:00:00,37.946998596191406,10.973999977111816,35.91999816894531,9.006999969482422,1.7699999809265137,0.0,15.737500190734863 -5956,2017-03-06 04:00:00,39.45500183105469,11.895000457763672,37.20600128173828,9.972000122070312,1.7699999809265137,0.0,15.29800033569336 -5957,2017-03-06 05:00:00,39.0359992980957,11.392000198364258,37.5009994506836,9.756999969482422,1.7699999809265137,0.0,14.85849952697754 -5958,2017-03-06 06:00:00,40.3759994506836,11.727999687194824,38.84199905395508,9.838000297546388,1.7699999809265137,0.0,14.19950008392334 -5959,2017-03-06 07:00:00,42.72200012207031,11.979000091552734,40.95899963378906,9.864999771118164,1.7699999809265137,0.0,13.320500373840332 -5960,2017-03-06 08:00:00,40.20899963378906,10.722000122070312,38.62699890136719,8.711999893188478,1.7699999809265137,0.0,13.320500373840332 -5961,2017-03-06 09:00:00,43.89400100708008,13.56999969482422,42.27299880981445,11.28499984741211,1.7699999809265137,0.0,14.638500213623049 -5962,2017-03-06 10:00:00,43.2239990234375,11.979000091552734,41.33399963378906,9.56999969482422,1.7699999809265137,0.0,17.495000839233402 -5963,2017-03-06 11:00:00,41.54899978637695,10.052000045776367,40.02099990844727,7.907999992370605,1.7699999809265137,0.0,20.57150077819824 -5964,2017-03-06 12:00:00,45.1510009765625,12.480999946594238,43.45199966430664,10.31999969482422,1.7699999809265137,0.0,23.64699935913086 -5965,2017-03-06 13:00:00,45.56999969482422,13.73799991607666,44.12200164794922,11.66100025177002,1.7699999809265137,0.0,24.965999603271484 -5966,2017-03-06 14:00:00,45.98899841308594,14.407999992370604,44.09500122070313,12.062999725341797,1.7699999809265137,0.0,27.163000106811523 -5967,2017-03-06 15:00:00,39.45500183105469,10.38700008392334,37.84999847412109,8.604999542236326,1.7699999809265137,0.0,28.04199981689453 -5968,2017-03-06 16:00:00,40.125,10.052000045776367,38.573001861572266,8.255999565124513,1.7699999809265137,0.0,26.28450012207031 -5969,2017-03-06 17:00:00,40.62699890136719,9.21399974822998,38.46599960327149,7.479000091552732,1.7699999809265137,0.0,24.526500701904297 -5970,2017-03-06 18:00:00,47.999000549316406,13.98900032043457,45.24800109863281,11.071000099182127,2.984999895095825,0.0,21.88949966430664 -5971,2017-03-06 19:00:00,45.06700134277344,12.732999801635742,42.084999084472656,9.756999969482422,2.984999895095825,0.0,19.6924991607666 -5972,2017-03-06 20:00:00,46.15599822998047,12.314000129699709,43.37200164794922,9.461999893188477,2.984999895095825,0.0,18.5935001373291 -5973,2017-03-06 21:00:00,45.90499877929688,13.234999656677244,42.94300079345703,10.267000198364258,2.984999895095825,0.0,17.27549934387207 -5974,2017-03-06 22:00:00,47.24499893188477,14.82699966430664,44.33700180053711,11.767999649047852,2.984999895095825,0.0,16.396499633789062 -5975,2017-03-06 23:00:00,43.14099884033203,13.067999839782717,41.14699935913086,10.45400047302246,2.984999895095825,0.0,15.517499923706056 -5976,2017-03-07 00:00:00,39.790000915527344,11.979000091552734,38.198001861572266,9.784000396728516,1.7380000352859497,0.0,14.638500213623049 -5977,2017-03-07 01:00:00,38.78499984741211,11.727999687194824,36.83100128173828,9.56999969482422,1.7380000352859497,0.0,13.759499549865724 -5978,2017-03-07 02:00:00,36.60699844360352,9.465999603271484,35.007999420166016,7.854000091552732,1.7380000352859497,0.0,12.880499839782717 -5979,2017-03-07 03:00:00,40.62699890136719,12.314000129699709,39.45800018310547,10.427000045776367,1.7380000352859497,0.0,12.221500396728516 -5980,2017-03-07 04:00:00,38.78499984741211,11.979000091552734,37.68899917602539,10.37399959564209,1.7380000352859497,0.0,11.343000411987305 -5981,2017-03-07 05:00:00,39.62200164794922,12.5649995803833,38.14500045776367,10.722000122070312,1.7380000352859497,0.0,10.683500289916992 -5982,2017-03-07 06:00:00,40.3759994506836,11.895000457763672,38.680999755859375,10.185999870300291,1.7380000352859497,0.0,10.024499893188477 -5983,2017-03-07 07:00:00,44.14599990844727,12.815999984741213,42.00500106811523,10.722000122070312,1.7380000352859497,0.0,9.585000038146973 -5984,2017-03-07 08:00:00,41.96799850463867,10.805999755859377,40.02099990844727,8.899999618530273,1.7380000352859497,0.0,10.244500160217283 -5985,2017-03-07 09:00:00,42.387001037597656,11.47599983215332,41.01300048828125,9.461999893188477,1.7380000352859497,0.0,13.100500106811523 -5986,2017-03-07 10:00:00,42.05199813842773,10.973999977111816,40.50299835205078,8.873000144958496,1.7380000352859497,0.0,17.71500015258789 -5987,2017-03-07 11:00:00,38.28200149536133,9.29800033569336,36.402000427246094,7.585999965667725,1.7380000352859497,0.0,21.88949966430664 -5988,2017-03-07 12:00:00,39.874000549316406,9.717000007629396,38.43899917602539,8.015000343322754,1.7380000352859497,0.0,25.40500068664551 -5989,2017-03-07 13:00:00,46.2400016784668,14.576000213623049,44.92599868774414,12.303999900817873,1.7380000352859497,0.0,26.72400093078613 -5990,2017-03-07 14:00:00,46.071998596191406,14.91100025177002,44.09500122070313,12.437999725341797,1.7380000352859497,0.0,28.92099952697754 -5991,2017-03-07 15:00:00,42.80500030517578,12.984000205993652,41.36100006103516,10.722000122070312,1.7380000352859497,0.0,29.57999992370605 -5992,2017-03-07 16:00:00,45.31800079345703,13.821999549865724,43.90800094604492,11.553000450134276,1.7380000352859497,0.0,28.26149940490723 -5993,2017-03-07 17:00:00,46.32400131225586,13.654000282287598,44.04199981689453,10.829999923706056,1.7380000352859497,0.0,26.28450012207031 -5994,2017-03-07 18:00:00,45.90499877929688,13.904999732971191,43.104000091552734,11.043999671936035,2.9530000686645512,0.0,24.526500701904297 -5995,2017-03-07 19:00:00,45.73699951171875,12.5649995803833,42.64799880981445,9.32800006866455,2.9530000686645512,1.2369999885559082,22.10950088500977 -5996,2017-03-07 20:00:00,47.58000183105469,13.152000427246096,43.88100051879883,9.354999542236328,4.1469998359680185,1.503000020980835,19.912500381469727 -5997,2017-03-07 21:00:00,47.1609992980957,13.56999969482422,43.104000091552734,9.94499969482422,2.931999921798706,1.503000020980835,18.5935001373291 -5998,2017-03-07 22:00:00,47.58000183105469,16.670000076293945,44.52399826049805,13.081000328063965,2.931999921798706,1.2690000534057615,18.15449905395508 -5999,2017-03-07 23:00:00,44.229000091552734,14.241000175476074,42.48699951171875,11.687000274658203,1.715999960899353,0.0,17.714500427246094 -6000,2017-03-08 00:00:00,42.55400085449219,13.319000244140623,40.07500076293945,10.855999946594238,1.715999960899353,0.0,17.27549934387207 -6001,2017-03-08 01:00:00,41.79999923706055,13.487000465393065,39.72600173950195,11.178000450134276,1.715999960899353,0.0,16.835500717163086 -6002,2017-03-08 02:00:00,41.13000106811523,12.984000205993652,39.27000045776367,10.855999946594238,1.715999960899353,0.0,15.957500457763672 -6003,2017-03-08 03:00:00,39.20299911499024,11.810999870300291,37.87699890136719,10.07900047302246,1.715999960899353,0.0,14.638500213623049 -6004,2017-03-08 04:00:00,38.28200149536133,10.973999977111816,35.8390007019043,8.925999641418457,1.715999960899353,0.0,13.759499549865724 -6005,2017-03-08 05:00:00,41.88399887084961,14.407999992370604,39.59199905395508,12.062999725341797,1.715999960899353,0.0,12.66100025177002 -6006,2017-03-08 06:00:00,43.72700119018555,13.402999877929688,41.92399978637695,11.33899974822998,1.715999960899353,0.0,12.001500129699709 -6007,2017-03-08 07:00:00,44.56499862670898,14.491999626159668,42.75500106811523,12.170000076293944,1.715999960899353,0.0,11.5625 -6008,2017-03-08 08:00:00,44.81600189208984,13.319000244140623,43.104000091552734,11.017000198364258,1.715999960899353,0.0,11.781999588012695 -6009,2017-03-08 09:00:00,46.40700149536133,14.491999626159668,44.17599868774414,11.633999824523926,1.715999960899353,0.0,13.979499816894531 -6010,2017-03-08 10:00:00,37.025001525878906,9.633000373840332,34.9010009765625,7.479000091552732,1.715999960899353,0.0,18.15399932861328 -6011,2017-03-08 11:00:00,38.53300094604492,10.13599967956543,36.64300155639648,8.041999816894531,1.715999960899353,0.0,22.10950088500977 -6012,2017-03-08 12:00:00,43.05699920654297,12.39799976348877,41.28099822998047,10.024999618530272,1.715999960899353,0.0,25.18549919128418 -6013,2017-03-08 13:00:00,45.73699951171875,14.156999588012695,43.77399826049805,11.5,1.715999960899353,0.0,26.06450080871582 -6014,2017-03-08 14:00:00,41.04600143432617,11.47599983215332,38.73400115966797,9.16800022125244,1.715999960899353,0.0,28.26149940490723 -6015,2017-03-08 15:00:00,43.64300155639648,13.73799991607666,41.46799850463867,11.12399959564209,1.715999960899353,0.0,29.57999992370605 -6016,2017-03-08 16:00:00,45.65399932861328,13.821999549865724,43.104000091552734,11.043999671936035,1.715999960899353,0.0,27.602500915527344 -6017,2017-03-08 17:00:00,47.74800109863281,14.241000175476074,43.935001373291016,10.588000297546388,4.264999866485597,1.2150000333786009,25.405500411987305 -6018,2017-03-08 18:00:00,49.25600051879883,14.82699966430664,44.87300109863281,11.12399959564209,4.264999866485597,1.2150000333786009,23.647499084472656 -6019,2017-03-08 19:00:00,45.82099914550781,13.234999656677244,41.65599822998047,9.864999771118164,4.264999866485597,1.3009999990463257,21.450000762939453 -6020,2017-03-08 20:00:00,51.85200119018555,16.836999893188473,47.60699844360352,12.491000175476074,4.264999866485597,1.3009999990463257,19.47249984741211 -6021,2017-03-08 21:00:00,51.18199920654297,16.166999816894528,47.3390007019043,12.170000076293944,4.264999866485597,1.3009999990463257,18.15449905395508 -6022,2017-03-08 22:00:00,50.09299850463867,16.670000076293945,45.67699813842773,12.383999824523926,4.317999839782715,1.3009999990463257,17.27549934387207 -6023,2017-03-08 23:00:00,46.32400131225586,15.916000366210938,42.43399810791016,12.008999824523926,2.9110000133514404,1.3009999990463257,16.396499633789062 -6024,2017-03-09 00:00:00,44.73199844360352,14.743000030517578,41.49499893188477,11.472999572753904,2.9110000133514404,0.0,15.517499923706056 -6025,2017-03-09 01:00:00,42.97299957275391,13.821999549865724,40.20899963378906,10.829999923706056,2.9110000133514404,0.0,14.638500213623049 -6026,2017-03-09 02:00:00,37.025001525878906,11.309000015258787,34.31100082397461,8.899999618530273,2.9110000133514404,0.0,13.539999961853027 -6027,2017-03-09 03:00:00,40.9630012512207,12.732999801635742,38.54700088500977,10.052000045776367,2.9110000133514404,0.0,12.880499839782717 -6028,2017-03-09 04:00:00,41.632999420166016,14.156999588012695,39.27000045776367,11.553000450134276,2.9110000133514404,0.0,12.441499710083008 -6029,2017-03-09 05:00:00,43.55899810791016,13.821999549865724,40.50299835205078,10.989999771118164,2.9110000133514404,0.0,12.001500129699709 -6030,2017-03-09 06:00:00,42.387001037597656,13.73799991607666,39.61899948120117,10.883000373840332,2.9110000133514404,0.0,11.5625 -6031,2017-03-09 07:00:00,44.64799880981445,13.319000244140623,41.415000915527344,10.31999969482422,2.9110000133514404,1.22599995136261,11.123499870300291 -6032,2017-03-09 08:00:00,40.125,11.225000381469728,37.34000015258789,8.416999816894531,2.9110000133514404,1.2899999618530271,11.781999588012695 -6033,2017-03-09 09:00:00,48.08300018310547,15.581000328063965,46.0250015258789,12.277000427246096,2.9110000133514404,1.3650000095367432,14.19950008392334 -6034,2017-03-09 10:00:00,38.36600112915039,10.13599967956543,36.1609992980957,7.692999839782715,2.9110000133514404,0.0,18.374000549316406 -6035,2017-03-09 11:00:00,39.95700073242188,10.303000450134276,37.15299987792969,7.854000091552732,2.9110000133514404,0.0,22.32900047302246 -6036,2017-03-09 12:00:00,39.20299911499024,11.47599983215332,37.31399917602539,9.16800022125244,2.9110000133514404,0.0,25.40500068664551 -6037,2017-03-09 13:00:00,41.13000106811523,11.895000457763672,39.16299819946289,9.11400032043457,2.9110000133514404,0.0,27.382999420166016 -6038,2017-03-09 14:00:00,39.53799819946289,11.727999687194824,37.5009994506836,9.515999794006348,2.9110000133514404,0.0,29.79999923706055 -6039,2017-03-09 15:00:00,46.071998596191406,13.654000282287598,43.82699966430664,10.90999984741211,2.9110000133514404,0.0,31.118000030517567 -6040,2017-03-09 16:00:00,47.58000183105469,14.156999588012695,43.61299896240234,10.29300022125244,2.9110000133514404,1.4390000104904177,30.23900032043457 -6041,2017-03-09 17:00:00,47.58000183105469,13.821999549865724,44.49800109863281,10.213000297546388,4.13700008392334,1.4390000104904177,28.701499938964844 -6042,2017-03-09 18:00:00,49.84199905395508,14.91100025177002,45.16799926757813,10.37399959564209,4.13700008392334,1.4390000104904177,26.723499298095703 -6043,2017-03-09 19:00:00,45.06700134277344,13.152000427246096,41.49499893188477,9.354999542236328,4.914999961853027,1.4390000104904177,24.74650001525879 -6044,2017-03-09 20:00:00,45.48600006103516,12.984000205993652,41.49499893188477,9.194000244140623,4.882999897003174,1.4390000104904177,22.98850059509277 -6045,2017-03-09 21:00:00,51.18199920654297,17.089000701904293,46.53499984741211,12.517999649047852,3.635999917984009,1.4390000104904177,22.10950088500977 -6046,2017-03-09 22:00:00,44.14599990844727,14.407999992370604,40.10100173950195,11.097999572753906,3.4539999961853027,1.4390000104904177,20.79150009155273 -6047,2017-03-09 23:00:00,45.56999969482422,16.0,41.73699951171875,12.517999649047852,4.670000076293945,1.246999979019165,20.35149955749512 -6048,2017-03-10 00:00:00,44.39699935913086,15.246000289916992,41.57600021362305,12.517999649047852,3.433000087738037,0.0,20.35149955749512 -6049,2017-03-10 01:00:00,41.46500015258789,13.73799991607666,38.65399932861328,10.96399974822998,3.2730000019073486,0.0,20.35149955749512 -6050,2017-03-10 02:00:00,44.56499862670898,15.413000106811523,40.15499877929688,11.633999824523926,4.872000217437744,1.5670000314712524,19.912500381469727 -6051,2017-03-10 03:00:00,42.97299957275391,14.072999954223633,38.573001861572266,10.53499984741211,4.285999774932861,1.406999945640564,19.47249984741211 -6052,2017-03-10 04:00:00,41.38100051879883,14.576000213623049,37.20600128173828,11.312000274658203,3.26200008392334,1.2369999885559082,19.03350067138672 -6053,2017-03-10 05:00:00,43.47600173950195,15.413000106811523,40.42300033569336,12.222999572753904,2.8469998836517334,1.2790000438690186,18.813499450683597 -6054,2017-03-10 06:00:00,41.71599960327149,13.73799991607666,38.0369987487793,11.151000022888184,2.8469998836517334,1.2369999885559082,18.813499450683597 -6055,2017-03-10 07:00:00,46.49100112915039,15.83199977874756,42.165000915527344,12.142999649047852,3.36899995803833,1.503000020980835,18.5935001373291 -6056,2017-03-10 08:00:00,41.54899978637695,12.062999725341797,37.79600143432617,9.006999969482422,4.734000205993652,1.4609999656677246,18.813499450683597 -6057,2017-03-10 09:00:00,48.33399963378906,17.507999420166016,45.56999969482422,14.340999603271484,2.0899999141693115,0.0,19.912500381469727 -6058,2017-03-10 10:00:00,44.39699935913086,11.644000053405762,40.50299835205078,8.444000244140625,3.4219999313354488,1.2150000333786009,21.66950035095215 -6059,2017-03-10 11:00:00,46.99399948120117,14.324000358581545,43.37200164794922,10.722000122070312,3.4219999313354488,1.5349999666213991,22.76849937438965 -6060,2017-03-10 12:00:00,46.74300003051758,14.576000213623049,43.935001373291016,11.687000274658203,2.1960000991821294,0.0,24.526500701904297 -6061,2017-03-10 13:00:00,46.40700149536133,15.581000328063965,43.21099853515625,12.491000175476074,3.4760000705718994,0.0,25.84449958801269 -6062,2017-03-10 14:00:00,47.74800109863281,16.166999816894528,44.49800109863281,12.946999549865724,2.174999952316284,0.0,27.163000106811523 -6063,2017-03-10 15:00:00,47.32899856567383,16.083000183105472,43.63999938964844,12.437999725341797,3.549999952316284,1.4390000104904177,29.57999992370605 -6064,2017-03-10 16:00:00,48.584999084472656,16.50200080871582,43.90800094604492,12.46500015258789,4.85099983215332,1.22599995136261,29.58049964904785 -6065,2017-03-10 17:00:00,49.42300033569336,15.664999961853027,44.41699981689453,11.366000175476074,4.85099983215332,2.463000059127808,28.26149940490723 -6066,2017-03-10 18:00:00,49.42300033569336,15.916000366210938,44.09500122070313,11.553000450134276,4.711999893188477,2.463000059127808,26.50399971008301 -6067,2017-03-10 19:00:00,46.74300003051758,13.904999732971191,41.68299865722656,9.70400047302246,6.02400016784668,2.463000059127808,24.965999603271484 -6068,2017-03-10 20:00:00,48.584999084472656,14.994000434875488,43.96099853515625,10.90999984741211,4.552000045776367,1.2369999885559082,23.647499084472656 -6069,2017-03-10 21:00:00,48.66899871826172,15.916000366210938,43.935001373291016,11.633999824523926,4.552000045776367,2.463000059127808,22.32900047302246 -6070,2017-03-10 22:00:00,50.428001403808594,17.004999160766598,45.70399856567383,13.00100040435791,5.0960001945495605,1.3009999990463257,21.670000076293945 -6071,2017-03-10 23:00:00,46.40700149536133,15.496999740600586,42.70199966430664,12.303999900817873,3.858999967575073,1.3009999990463257,21.230499267578125 -6072,2017-03-11 00:00:00,43.64300155639648,14.91100025177002,40.42300033569336,12.08899974822998,2.559000015258789,0.0,21.230499267578125 -6073,2017-03-11 01:00:00,45.4020004272461,16.250999450683597,40.79800033569336,12.331000328063965,3.986999988555908,1.3969999551773071,21.01099967956543 -6074,2017-03-11 02:00:00,45.4020004272461,15.413000106811523,41.040000915527344,11.687000274658203,4.030000209808351,1.2580000162124634,20.79100036621093 -6075,2017-03-11 03:00:00,43.72700119018555,15.07800006866455,39.02899932861328,11.178000450134276,4.030000209808351,1.2150000333786009,20.35149955749512 -6076,2017-03-11 04:00:00,43.72700119018555,15.161999702453612,39.64599990844727,11.66100025177002,4.030000209808351,1.2690000534057615,19.47249984741211 -6077,2017-03-11 05:00:00,43.64300155639648,14.491999626159668,40.262001037597656,11.5,4.030000209808351,0.0,18.5935001373291 -6078,2017-03-11 06:00:00,45.56999969482422,15.664999961853027,41.57600021362305,12.331000328063965,4.008999824523927,1.2580000162124634,17.934499740600586 -6079,2017-03-11 07:00:00,44.983001708984375,14.743000030517578,40.63800048828125,11.178000450134276,5.25600004196167,1.4290000200271606,17.714500427246094 -6080,2017-03-11 08:00:00,43.2239990234375,13.56999969482422,39.75299835205078,10.213000297546388,3.913000106811523,1.4290000200271606,18.5935001373291 -6081,2017-03-11 09:00:00,47.999000549316406,15.664999961853027,44.41699981689453,12.277000427246096,3.858999967575073,1.6100000143051147,20.57150077819824 -6082,2017-03-11 10:00:00,45.73699951171875,14.491999626159668,42.03099822998047,11.258000373840332,3.82699990272522,1.2150000333786009,23.42799949645996 -6083,2017-03-11 11:00:00,44.983001708984375,13.821999549865724,42.48699951171875,10.803000450134276,2.5799999237060547,0.0,25.625 -6084,2017-03-11 12:00:00,45.1510009765625,13.821999549865724,41.84400177001953,10.508000373840332,3.954999923706055,1.493000030517578,27.82250022888184 -6085,2017-03-11 13:00:00,46.82600021362305,15.83199977874756,42.94300079345703,12.116000175476074,3.838000059127808,1.493000030517578,28.92099952697754 -6086,2017-03-11 14:00:00,44.0620002746582,15.246000289916992,40.31600189208984,11.526000022888184,3.838000059127808,1.493000030517578,29.79999923706055 -6087,2017-03-11 15:00:00,43.47600173950195,13.98900032043457,40.69100189208984,10.69499969482422,3.838000059127808,1.493000030517578,30.898500442504893 -6088,2017-03-11 16:00:00,46.49100112915039,15.329999923706056,41.57600021362305,10.883000373840332,5.052999973297119,1.493000030517578,29.140499114990234 -6089,2017-03-11 17:00:00,46.2400016784668,13.654000282287598,41.415000915527344,9.54300022125244,4.861999988555908,1.493000030517578,27.602500915527344 -6090,2017-03-11 18:00:00,47.1609992980957,13.487000465393065,42.80899810791016,9.56999969482422,4.882999897003174,1.493000030517578,25.625 -6091,2017-03-11 19:00:00,47.41299819946289,14.324000358581545,42.62099838256836,9.972000122070312,5.043000221252441,1.493000030517578,24.30649948120117 -6092,2017-03-11 20:00:00,47.999000549316406,14.659000396728516,42.94300079345703,10.31999969482422,4.9790000915527335,1.493000030517578,23.647499084472656 -6093,2017-03-11 21:00:00,48.50199890136719,15.83199977874756,44.65800094604492,11.66100025177002,3.753000020980835,1.493000030517578,22.98850059509277 -6094,2017-03-11 22:00:00,47.07799911499024,15.748000144958494,43.53300094604492,12.008999824523926,3.742000102996826,1.493000030517578,22.10950088500977 -6095,2017-03-11 23:00:00,44.229000091552734,14.743000030517578,39.430999755859375,11.043999671936035,3.742000102996826,1.2690000534057615,21.66950035095215 -6096,2017-03-12 00:00:00,43.97800064086914,14.994000434875488,40.82500076293945,12.062999725341797,3.3580000400543213,0.0,21.66950035095215 -6097,2017-03-12 01:00:00,43.81100082397461,14.91100025177002,39.56499862670898,11.687000274658203,4.616000175476074,1.343000054359436,21.230499267578125 -6098,2017-03-12 02:00:00,43.81100082397461,15.329999923706056,38.89500045776367,11.472999572753904,4.414000034332275,1.2150000333786009,21.230499267578125 -6099,2017-03-12 03:00:00,43.81100082397461,15.413000106811523,38.84199905395508,11.982000350952148,4.361000061035156,1.2150000333786009,21.230499267578125 -6100,2017-03-12 04:00:00,42.88899993896485,14.82699966430664,38.73400115966797,11.633999824523926,4.638000011444092,1.2150000333786009,20.35149955749512 -6101,2017-03-12 05:00:00,41.79999923706055,13.821999549865724,37.84999847412109,11.232000350952148,3.4440000057220463,0.0,20.35149955749512 -6102,2017-03-12 06:00:00,43.72700119018555,14.241000175476074,39.96699905395508,11.526000022888184,4.679999828338623,0.0,19.912500381469727 -6103,2017-03-12 07:00:00,45.56999969482422,14.82699966430664,41.22700119018555,11.446000099182127,4.201000213623047,1.375,19.912500381469727 -6104,2017-03-12 08:00:00,41.2140007019043,11.979000091552734,37.34000015258789,9.034000396728516,4.201000213623047,1.3969999551773071,19.912500381469727 -6105,2017-03-12 09:00:00,40.54399871826172,11.5600004196167,38.43899917602539,9.248000144958496,2.430999994277954,0.0,21.01099967956543 -6106,2017-03-12 10:00:00,47.41299819946289,14.241000175476074,43.80099868774414,10.90999984741211,3.635999917984009,1.4179999828338623,22.98850059509277 -6107,2017-03-12 11:00:00,47.49599838256836,14.156999588012695,45.16799926757813,11.446000099182127,2.345999956130981,0.0,23.86750030517578 -6108,2017-03-12 12:00:00,48.584999084472656,15.83199977874756,44.01499938964844,11.472999572753904,3.688999891281128,1.246999979019165,23.86750030517578 -6109,2017-03-12 13:00:00,46.40700149536133,14.994000434875488,41.73699951171875,10.803000450134276,3.6989998817443848,1.2899999618530271,23.427499771118164 -6110,2017-03-12 14:00:00,47.66400146484375,15.748000144958494,43.66699981689453,12.116000175476074,3.688999891281128,1.3329999446868896,22.98850059509277 -6111,2017-03-12 15:00:00,45.31800079345703,14.994000434875488,41.44200134277344,11.33899974822998,3.688999891281128,1.3329999446868896,22.10950088500977 -6112,2017-03-12 16:00:00,42.55400085449219,13.402999877929688,40.61100006103516,11.258000373840332,1.4290000200271606,0.0,20.57150077819824 -6113,2017-03-12 17:00:00,46.2400016784668,13.904999732971191,43.82699966430664,11.446000099182127,2.6760001182556152,0.0,19.25300025939941 -6114,2017-03-12 18:00:00,48.33399963378906,14.407999992370604,45.75699996948242,11.418999671936035,2.8469998836517334,0.0,18.374000549316406 -6115,2017-03-12 19:00:00,50.76300048828125,15.916000366210938,48.38399887084961,12.84000015258789,2.8469998836517334,0.0,18.374000549316406 -6116,2017-03-12 20:00:00,49.59099960327149,15.664999961853027,47.20500183105469,12.545000076293944,2.5799999237060547,0.0,18.374000549316406 -6117,2017-03-12 21:00:00,51.26599884033203,16.92099952697754,48.946998596191406,13.859000205993652,2.697000026702881,0.0,18.15449905395508 -6118,2017-03-12 22:00:00,47.58000183105469,16.083000183105472,46.34700012207031,13.590999603271484,2.664999961853028,0.0,17.934499740600586 -6119,2017-03-12 23:00:00,46.2400016784668,15.329999923706056,44.36399841308594,12.894000053405762,2.632999897003174,0.0,17.714500427246094 -6120,2017-03-13 00:00:00,46.90999984741211,16.250999450683597,45.08700180053711,13.536999702453612,1.8229999542236328,0.0,17.714500427246094 -6121,2017-03-13 01:00:00,45.4020004272461,15.329999923706056,43.50600051879883,12.678999900817873,1.246999979019165,0.0,17.714500427246094 -6122,2017-03-13 02:00:00,43.64300155639648,14.324000358581545,41.84400177001953,11.902000427246096,1.4819999933242798,0.0,16.835500717163086 -6123,2017-03-13 03:00:00,40.125,12.815999984741213,38.27899932861328,10.722000122070312,1.2790000438690186,0.0,16.615999221801758 -6124,2017-03-13 04:00:00,40.9630012512207,13.067999839782717,39.56499862670898,10.937000274658203,1.4709999561309814,0.0,16.396499633789062 -6125,2017-03-13 05:00:00,41.2140007019043,13.821999549865724,40.07500076293945,11.579999923706056,1.2369999885559082,0.0,16.396499633789062 -6126,2017-03-13 06:00:00,42.80500030517578,13.73799991607666,41.52199935913086,11.633999824523926,1.8229999542236328,0.0,15.957500457763672 -6127,2017-03-13 07:00:00,45.65399932861328,13.73799991607666,43.42499923706055,11.28499984741211,1.22599995136261,0.0,15.29800033569336 -6128,2017-03-13 08:00:00,41.2140007019043,11.057000160217283,39.32400131225586,8.685000419616701,1.2790000438690186,0.0,14.638500213623049 -6129,2017-03-13 09:00:00,49.17200088500977,16.50200080871582,48.4379997253418,13.80500030517578,1.3220000267028809,0.0,14.418999671936035 -6130,2017-03-13 10:00:00,42.1349983215332,11.225000381469728,41.09299850463867,9.220999717712402,1.3650000095367432,0.0,14.19950008392334 -6131,2017-03-13 11:00:00,48.75299835205078,13.56999969482422,47.7140007019043,11.258000373840332,1.3109999895095823,0.0,13.759499549865724 -6132,2017-03-13 12:00:00,50.09299850463867,15.496999740600586,48.7859992980957,12.598999977111816,1.22599995136261,0.0,13.320500373840332 -6133,2017-03-13 13:00:00,49.25600051879883,0.0,48.571998596191406,0.0,0.0,0.0,0.0 -6134,2017-03-13 14:00:00,50.76300048828125,17.004999160766598,49.61700057983398,14.152999877929688,0.0,0.0,13.100500106811523 -6135,2017-03-13 15:00:00,49.0880012512207,16.250999450683597,47.95500183105469,13.564000129699709,1.22599995136261,0.0,12.66100025177002 -6136,2017-03-13 16:00:00,51.34999847412109,16.836999893188473,49.56399917602539,13.75100040435791,1.3009999990463257,0.0,12.441499710083008 -6137,2017-03-13 17:00:00,49.84199905395508,15.496999740600586,48.00899887084961,12.706000328063965,2.5369999408721924,0.0,12.441499710083008 -6138,2017-03-13 18:00:00,50.59600067138672,15.161999702453612,48.46500015258789,12.062999725341797,2.505000114440918,0.0,12.441499710083008 -6139,2017-03-13 19:00:00,49.59099960327149,14.241000175476074,47.44599914550781,11.392000198364258,2.505000114440918,0.0,13.320500373840332 -6140,2017-03-13 20:00:00,51.51699829101562,16.753999710083008,49.3759994506836,13.564000129699709,1.3650000095367432,0.0,13.759499549865724 -6141,2017-03-13 21:00:00,49.59099960327149,15.161999702453612,47.36600112915039,12.41100025177002,1.343000054359436,0.0,13.759499549865724 -6142,2017-03-13 22:00:00,48.16699981689453,15.83199977874756,46.45399856567383,13.29599952697754,1.4179999828338623,0.0,13.979499816894531 -6143,2017-03-13 23:00:00,48.16699981689453,15.83199977874756,46.0250015258789,12.920000076293944,1.5779999494552612,0.0,14.19950008392334 -6144,2017-03-14 00:00:00,45.56999969482422,15.246000289916992,43.66699981689453,12.598999977111816,1.9079999923706048,0.0,14.19950008392334 -6145,2017-03-14 01:00:00,43.14099884033203,13.56999969482422,41.33399963378906,11.366000175476074,1.4500000476837158,0.0,13.979499816894531 -6146,2017-03-14 02:00:00,43.14099884033203,13.904999732971191,41.54899978637695,11.579999923706056,1.4290000200271606,0.0,13.979499816894531 -6147,2017-03-14 03:00:00,40.9630012512207,12.64900016784668,39.53799819946289,10.668999671936035,1.3650000095367432,0.0,13.320500373840332 -6148,2017-03-14 04:00:00,42.72200012207031,13.98900032043457,41.11999893188477,11.821000099182127,1.493000030517578,0.0,12.66100025177002 -6149,2017-03-14 05:00:00,42.21900177001953,13.402999877929688,40.50299835205078,11.204999923706056,1.2150000333786009,0.0,11.5625 -6150,2017-03-14 06:00:00,40.54399871826172,12.314000129699709,38.573001861572266,10.024999618530272,1.3109999895095823,0.0,10.683500289916992 -6151,2017-03-14 07:00:00,46.82600021362305,14.072999954223633,44.73899841308594,11.392000198364258,2.494999885559082,0.0,10.244500160217283 -6152,2017-03-14 08:00:00,58.88899993896485,15.748000144958494,57.36399841308594,12.116000175476074,1.375,0.0,11.343000411987305 -6153,2017-03-14 09:00:00,61.48600006103516,18.847999572753903,60.09799957275391,14.824000358581545,1.406999945640564,0.0,13.759499549865724 -6154,2017-03-14 10:00:00,54.19800186157226,13.56999969482422,52.86100006103516,10.722000122070312,1.2369999885559082,0.0,17.934499740600586 -6155,2017-03-14 11:00:00,58.21900177001953,14.82699966430664,56.74800109863281,11.28499984741211,0.0,0.0,22.10950088500977 -6156,2017-03-14 12:00:00,55.62200164794922,13.402999877929688,54.30799865722656,10.07900047302246,1.2899999618530271,0.0,24.52599906921387 -6157,2017-03-14 13:00:00,58.21900177001953,15.581000328063965,56.58700180053711,11.954999923706056,0.0,0.0,25.84499931335449 -6158,2017-03-14 14:00:00,56.125,16.92099952697754,55.72900009155274,13.83199977874756,0.0,0.0,28.261999130249023 -6159,2017-03-14 15:00:00,55.2869987487793,16.083000183105472,54.49599838256836,12.894000053405762,0.0,0.0,30.23900032043457 -6160,2017-03-14 16:00:00,57.2140007019043,17.172000885009766,56.39899826049805,14.20699977874756,0.0,0.0,28.48150062561035 -6161,2017-03-14 17:00:00,60.22900009155274,17.004999160766598,58.22200012207031,13.21500015258789,1.22599995136261,0.0,26.723499298095703 -6162,2017-03-14 18:00:00,63.74700164794922,18.429000854492188,61.94800186157226,14.555999755859377,2.440999984741211,0.0,24.526500701904297 -6163,2017-03-14 19:00:00,55.2869987487793,15.581000328063965,53.04899978637695,12.357000350952148,2.440999984741211,0.0,22.76849937438965 -6164,2017-03-14 20:00:00,48.41799926757813,14.659000396728516,46.374000549316406,12.25,2.440999984741211,0.0,21.66950035095215 -6165,2017-03-14 21:00:00,51.09799957275391,16.0,48.5989990234375,12.973999977111816,2.440999984741211,0.0,20.131999969482425 -6166,2017-03-14 22:00:00,47.915000915527344,15.246000289916992,45.54299926757813,12.491000175476074,2.440999984741211,0.0,18.374000549316406 -6167,2017-03-14 23:00:00,46.65900039672852,15.161999702453612,44.55099868774414,12.571999549865724,2.440999984741211,0.0,17.055500030517578 -6168,2017-03-15 00:00:00,44.0620002746582,14.659000396728516,42.35300064086914,12.41100025177002,1.3969999551773071,0.0,15.957500457763672 -6169,2017-03-15 01:00:00,41.29800033569336,13.821999549865724,39.61899948120117,11.5,1.940000057220459,0.0,15.737500190734863 -6170,2017-03-15 02:00:00,40.79499816894531,13.654000282287598,38.94900131225586,11.418999671936035,1.8339999914169312,0.0,15.517499923706056 -6171,2017-03-15 03:00:00,42.72200012207031,14.156999588012695,41.62900161743164,12.196999549865724,1.22599995136261,0.0,14.638500213623049 -6172,2017-03-15 04:00:00,40.20899963378906,13.319000244140623,38.52000045776367,10.937000274658203,1.246999979019165,0.0,13.539999961853027 -6173,2017-03-15 05:00:00,43.30799865722656,13.73799991607666,41.709999084472656,11.553000450134276,1.3109999895095823,0.0,13.100500106811523 -6174,2017-03-15 06:00:00,44.983001708984375,13.904999732971191,43.26399993896485,11.579999923706056,1.2899999618530271,0.0,12.66100025177002 -6175,2017-03-15 07:00:00,45.90499877929688,14.407999992370604,43.935001373291016,11.579999923706056,1.3860000371932983,0.0,12.221500396728516 -6176,2017-03-15 08:00:00,41.2140007019043,11.5600004196167,40.15499877929688,9.56999969482422,1.2690000534057615,0.0,13.100500106811523 -6177,2017-03-15 09:00:00,47.07799911499024,15.413000106811523,45.73099899291992,12.894000053405762,1.3539999723434448,0.0,15.517499923706056 -6178,2017-03-15 10:00:00,44.229000091552734,12.314000129699709,42.94300079345703,9.890999794006348,1.3539999723434448,0.0,18.813499450683597 -6179,2017-03-15 11:00:00,44.983001708984375,12.815999984741213,43.45199966430664,10.668999671936035,1.2369999885559082,0.0,21.66950035095215 -6180,2017-03-15 12:00:00,47.24499893188477,15.07800006866455,46.34700012207031,12.678999900817873,0.0,0.0,23.86750030517578 -6181,2017-03-15 13:00:00,46.65900039672852,15.581000328063965,45.6500015258789,13.107999801635742,0.0,0.0,25.405500411987305 -6182,2017-03-15 14:00:00,46.57500076293945,16.166999816894528,45.67699813842773,13.590999603271484,0.0,0.0,26.28400039672852 -6183,2017-03-15 15:00:00,46.82600021362305,16.083000183105472,45.8380012512207,13.644000053405762,0.0,0.0,24.965999603271484 -6184,2017-03-15 16:00:00,45.73699951171875,15.07800006866455,44.33700180053711,12.517999649047852,1.2690000534057615,0.0,23.20800018310547 -6185,2017-03-15 17:00:00,48.83700180053711,15.748000144958494,47.04399871826172,12.812999725341797,1.6529999971389768,0.0,21.88949966430664 -6186,2017-03-15 18:00:00,49.25600051879883,16.166999816894528,46.83000183105469,13.107999801635742,1.3650000095367432,0.0,21.230499267578125 -6187,2017-03-15 19:00:00,45.73699951171875,13.402999877929688,44.44400024414063,11.366000175476074,1.22599995136261,0.0,20.79150009155273 -6188,2017-03-15 20:00:00,51.93600082397461,16.836999893188473,50.42200088500977,14.20699977874756,1.4179999828338623,0.0,20.79150009155273 -6189,2017-03-15 21:00:00,51.18199920654297,17.089000701904293,49.18899917602539,14.314000129699709,2.0150001049041752,0.0,20.35149955749512 -6190,2017-03-15 22:00:00,49.0880012512207,16.92099952697754,47.178001403808594,13.939000129699709,1.503000020980835,0.0,19.472999572753903 -6191,2017-03-15 23:00:00,48.50199890136719,17.590999603271484,47.07099914550781,15.01099967956543,1.406999945640564,0.0,19.472999572753903 -6192,2017-03-16 00:00:00,45.98899841308594,16.50200080871582,44.49800109863281,13.993000030517578,1.8339999914169312,0.0,18.5939998626709 -6193,2017-03-16 01:00:00,44.81600189208984,15.748000144958494,43.02299880981445,13.269000053405762,1.2690000534057615,0.0,18.15399932861328 -6194,2017-03-16 02:00:00,45.31800079345703,15.916000366210938,42.32600021362305,12.973999977111816,1.7699999809265137,0.0,17.934499740600586 -6195,2017-03-16 03:00:00,43.97800064086914,14.994000434875488,42.62099838256836,12.760000228881836,1.2899999618530271,0.0,17.934499740600586 -6196,2017-03-16 04:00:00,44.39699935913086,15.664999961853027,42.75500106811523,13.241999626159668,1.3650000095367432,0.0,18.15449905395508 -6197,2017-03-16 05:00:00,44.81600189208984,15.246000289916992,43.23799896240234,12.920000076293944,1.4500000476837158,0.0,17.495000839233402 -6198,2017-03-16 06:00:00,45.90499877929688,16.50200080871582,44.73899841308594,14.18000030517578,1.6950000524520874,0.0,17.27549934387207 -6199,2017-03-16 07:00:00,41.38100051879883,13.152000427246096,39.37799835205078,10.668999671936035,1.6950000524520874,0.0,16.835500717163086 -6200,2017-03-16 08:00:00,44.3129997253418,13.904999732971191,42.29899978637695,11.258000373840332,1.3009999990463257,0.0,17.055500030517578 -6201,2017-03-16 09:00:00,48.66899871826172,17.172000885009766,47.74100112915039,14.555999755859377,0.0,0.0,17.934499740600586 -6202,2017-03-16 10:00:00,45.48600006103516,13.821999549865724,44.25600051879883,11.607000350952148,0.0,0.0,20.131999969482425 -6203,2017-03-16 11:00:00,45.90499877929688,14.241000175476074,44.97999954223633,11.982000350952148,0.0,0.0,23.20800018310547 -6204,2017-03-16 12:00:00,47.66400146484375,14.91100025177002,46.69599914550781,12.760000228881836,0.0,0.0,25.405500411987305 -6205,2017-03-16 13:00:00,46.90999984741211,15.581000328063965,46.15999984741211,13.107999801635742,0.0,0.0,24.74600028991699 -6206,2017-03-16 14:00:00,46.65900039672852,16.166999816894528,45.24800109863281,13.697999954223633,1.2690000534057615,0.0,24.30649948120117 -6207,2017-03-16 15:00:00,47.32899856567383,16.670000076293945,46.48099899291992,14.18000030517578,0.0,0.0,23.427499771118164 -6208,2017-03-16 16:00:00,46.2400016784668,15.581000328063965,44.36399841308594,12.920000076293944,1.2899999618530271,0.0,22.548999786376957 -6209,2017-03-16 17:00:00,46.74300003051758,14.576000213623049,45.81100082397461,12.383999824523926,1.246999979019165,0.0,21.88949966430664 -6210,2017-03-16 18:00:00,49.42300033569336,15.496999740600586,47.3120002746582,12.383999824523926,2.7079999446868896,0.0,20.57150077819824 -6211,2017-03-16 19:00:00,48.33399963378906,14.743000030517578,46.2400016784668,11.847999572753904,2.7079999446868896,0.0,19.6924991607666 -6212,2017-03-16 20:00:00,51.43399810791016,16.250999450683597,48.7599983215332,13.107999801635742,2.7079999446868896,0.0,19.25300025939941 -6213,2017-03-16 21:00:00,52.52299880981445,17.926000595092773,50.52899932861328,14.475000381469728,2.7079999446868896,0.0,18.5935001373291 -6214,2017-03-16 22:00:00,46.90999984741211,16.334999084472653,44.12200164794922,13.456000328063965,1.6529999971389768,0.0,17.714500427246094 -6215,2017-03-16 23:00:00,46.82600021362305,15.916000366210938,44.47100067138672,13.161999702453612,2.5480000972747803,0.0,17.27549934387207 -6216,2017-03-17 00:00:00,42.387001037597656,13.654000282287598,40.18199920654297,11.366000175476074,1.6740000247955322,0.0,16.615999221801758 -6217,2017-03-17 01:00:00,42.97299957275391,15.496999740600586,41.33399963378906,13.135000228881836,1.3969999551773071,0.0,15.737500190734863 -6218,2017-03-17 02:00:00,45.1510009765625,16.083000183105472,43.82699966430664,14.824000358581545,1.8869999647140503,0.0,15.078499794006348 -6219,2017-03-17 03:00:00,44.229000091552734,15.246000289916992,42.03099822998047,12.84000015258789,1.4390000104904177,0.0,14.638500213623049 -6220,2017-03-17 04:00:00,43.30799865722656,15.246000289916992,41.30799865722656,12.706000328063965,1.375,0.0,13.979499816894531 -6221,2017-03-17 05:00:00,45.90499877929688,16.0,44.04199981689453,13.29599952697754,1.4709999561309814,0.0,13.539999961853027 -6222,2017-03-17 06:00:00,46.74300003051758,15.246000289916992,44.47100067138672,12.545000076293944,1.3329999446868896,0.0,13.320500373840332 -6223,2017-03-17 07:00:00,48.83700180053711,16.166999816894528,46.66899871826172,13.187999725341797,2.505000114440918,0.0,13.320500373840332 -6224,2017-03-17 08:00:00,44.48099899291992,13.234999656677244,43.31800079345703,11.178000450134276,1.2690000534057615,0.0,14.418999671936035 -6225,2017-03-17 09:00:00,46.49100112915039,15.916000366210938,45.54299926757813,13.616999626159668,0.0,0.0,16.396499633789062 -6226,2017-03-17 10:00:00,43.2239990234375,12.984000205993652,42.11199951171875,10.776000022888184,0.0,0.0,18.15449905395508 -6227,2017-03-17 11:00:00,47.07799911499024,13.487000465393065,45.999000549316406,11.258000373840332,1.2790000438690186,0.0,19.6924991607666 -6228,2017-03-17 12:00:00,45.90499877929688,13.904999732971191,45.06000137329102,11.767999649047852,0.0,0.0,20.79150009155273 -6229,2017-03-17 13:00:00,46.74300003051758,14.994000434875488,45.999000549316406,12.732999801635742,0.0,0.0,21.88949966430664 -6230,2017-03-17 14:00:00,45.31800079345703,14.324000358581545,44.55099868774414,12.170000076293944,0.0,0.0,23.647499084472656 -6231,2017-03-17 15:00:00,42.63800048828125,13.402999877929688,42.48699951171875,11.633999824523926,0.0,0.0,22.988000869750977 -6232,2017-03-17 16:00:00,45.98899841308594,15.413000106811523,45.08700180053711,13.241999626159668,0.0,0.0,21.88949966430664 -6233,2017-03-17 17:00:00,47.41299819946289,15.413000106811523,44.81900024414063,12.222999572753904,1.4390000104904177,0.0,21.450000762939453 -6234,2017-03-17 18:00:00,50.00899887084961,17.004999160766598,47.6870002746582,13.83199977874756,1.4390000104904177,0.0,21.01099967956543 -6235,2017-03-17 19:00:00,48.83700180053711,16.0,46.9370002746582,13.00100040435791,1.4500000476837158,0.0,20.35149955749512 -6236,2017-03-17 20:00:00,46.99399948120117,13.98900032043457,45.16799926757813,11.526000022888184,1.4179999828338623,0.0,20.35149955749512 -6237,2017-03-17 21:00:00,46.82600021362305,13.904999732971191,45.11399841308594,11.607000350952148,1.662999987602234,0.0,20.131999969482425 -6238,2017-03-17 22:00:00,48.50199890136719,16.250999450683597,46.374000549316406,13.456000328063965,1.4290000200271606,0.0,20.131999969482425 -6239,2017-03-17 23:00:00,38.70100021362305,11.47599983215332,36.8849983215332,9.48900032043457,2.121999979019165,0.0,20.131999969482425 -6240,2017-03-18 00:00:00,36.35499954223633,13.654000282287598,34.49900054931641,7.800000190734862,1.7910000085830688,0.0,19.25300025939941 -6241,2017-03-18 01:00:00,44.64799880981445,15.246000289916992,42.64799880981445,12.598999977111816,1.7910000085830688,0.0,18.15449905395508 -6242,2017-03-18 02:00:00,41.54899978637695,13.904999732971191,40.15499877929688,11.795000076293944,1.246999979019165,0.0,17.495000839233402 -6243,2017-03-18 03:00:00,43.14099884033203,14.743000030517578,41.81700134277344,12.62600040435791,1.5460000038146973,0.0,17.055500030517578 -6244,2017-03-18 04:00:00,42.303001403808594,14.659000396728516,41.57600021362305,12.732999801635742,0.0,0.0,17.27549934387207 -6245,2017-03-18 05:00:00,41.04600143432617,13.319000244140623,39.91400146484375,11.579999923706056,0.0,0.0,17.27549934387207 -6246,2017-03-18 06:00:00,43.30799865722656,13.904999732971191,41.28099822998047,11.741000175476074,1.3109999895095823,0.0,17.055500030517578 -6247,2017-03-18 07:00:00,45.31800079345703,15.161999702453612,43.18399810791016,12.571999549865724,2.494999885559082,0.0,17.055500030517578 -6248,2017-03-18 08:00:00,42.05199813842773,11.392000198364258,39.61899948120117,8.979999542236328,1.375,0.0,17.27549934387207 -6249,2017-03-18 09:00:00,44.73199844360352,13.73799991607666,43.31800079345703,11.33899974822998,1.22599995136261,0.0,17.714500427246094 -6250,2017-03-18 10:00:00,50.34500122070313,16.166999816894528,49.05500030517578,13.456000328063965,1.4179999828338623,0.0,17.714500427246094 -6251,2017-03-18 11:00:00,51.09799957275391,16.166999816894528,49.64400100708008,13.37600040435791,1.3109999895095823,0.0,18.374000549316406 -6252,2017-03-18 12:00:00,49.25600051879883,14.994000434875488,48.09000015258789,12.652000427246096,0.0,0.0,18.813499450683597 -6253,2017-03-18 13:00:00,49.92599868774414,16.836999893188473,48.946998596191406,14.019000053405762,0.0,0.0,19.25300025939941 -6254,2017-03-18 14:00:00,51.34999847412109,17.674999237060547,50.20700073242188,15.01099967956543,1.2790000438690186,0.0,19.6924991607666 -6255,2017-03-18 15:00:00,49.92599868774414,17.256000518798828,48.9739990234375,14.340999603271484,1.2150000333786009,0.0,20.131999969482425 -6256,2017-03-18 16:00:00,52.02000045776367,17.423999786376953,49.10800170898438,14.100000381469728,1.2580000162124634,0.0,20.131999969482425 -6257,2017-03-18 17:00:00,51.85200119018555,16.670000076293945,49.99300003051758,13.644000053405762,2.6440000534057617,0.0,20.131999969482425 -6258,2017-03-18 18:00:00,51.60100173950195,17.089000701904293,48.8129997253418,13.859000205993652,2.6440000534057617,0.0,20.131999969482425 -6259,2017-03-18 19:00:00,48.75299835205078,14.324000358581545,46.749000549316406,11.579999923706056,2.6440000534057617,0.0,20.131999969482425 -6260,2017-03-18 20:00:00,53.10900115966797,17.004999160766598,50.44800186157226,13.564000129699709,2.6440000534057617,0.0,20.131999969482425 -6261,2017-03-18 21:00:00,53.69499969482422,18.34499931335449,51.27899932861328,14.850000381469728,2.559000015258789,0.0,20.131999969482425 -6262,2017-03-18 22:00:00,50.68000030517578,18.0939998626709,48.4109992980957,15.0649995803833,1.5460000038146973,0.0,20.131999969482425 -6263,2017-03-18 23:00:00,44.3129997253418,13.402999877929688,41.57600021362305,10.803000450134276,2.750999927520752,0.0,19.912500381469727 -6264,2017-03-19 00:00:00,44.39699935913086,15.161999702453612,42.70199966430664,12.706000328063965,1.3650000095367432,0.0,19.912500381469727 -6265,2017-03-19 01:00:00,43.89400100708008,14.659000396728516,41.709999084472656,12.008999824523926,1.7799999713897705,0.0,19.47249984741211 -6266,2017-03-19 02:00:00,44.64799880981445,14.743000030517578,42.83599853515625,12.277000427246096,1.493000030517578,0.0,18.813499450683597 -6267,2017-03-19 03:00:00,42.88899993896485,14.072999954223633,41.11999893188477,11.767999649047852,1.3220000267028809,0.0,18.5935001373291 -6268,2017-03-19 04:00:00,43.55899810791016,15.413000106811523,42.165000915527344,13.027999877929688,1.4500000476837158,0.0,18.374000549316406 -6269,2017-03-19 05:00:00,45.90499877929688,16.0,44.49800109863281,13.269000053405762,1.3329999446868896,0.0,18.15449905395508 -6270,2017-03-19 06:00:00,41.38100051879883,14.072999954223633,40.28900146484375,12.116000175476074,0.0,0.0,17.714500427246094 -6271,2017-03-19 07:00:00,48.91999816894531,16.586000442504886,46.53499984741211,13.536999702453612,2.483999967575073,0.0,17.495000839233402 -6272,2017-03-19 08:00:00,40.71099853515625,11.727999687194824,38.65399932861328,9.649999618530272,1.503000020980835,0.0,15.737500190734863 -6273,2017-03-19 09:00:00,46.82600021362305,15.246000289916992,45.32899856567383,12.894000053405762,1.4390000104904177,0.0,15.737500190734863 -6274,2017-03-19 10:00:00,48.66899871826172,15.581000328063965,47.63399887084961,13.081000328063965,1.3220000267028809,0.0,15.29800033569336 -6275,2017-03-19 11:00:00,50.512001037597656,15.581000328063965,49.26900100708008,12.866999626159668,1.406999945640564,0.0,15.29800033569336 -6276,2017-03-19 12:00:00,45.23500061035156,13.56999969482422,44.09500122070313,11.258000373840332,1.2690000534057615,0.0,15.517499923706056 -6277,2017-03-19 13:00:00,49.3390007019043,15.748000144958494,48.46500015258789,13.107999801635742,0.0,0.0,15.737500190734863 -6278,2017-03-19 14:00:00,46.99399948120117,14.241000175476074,46.10599899291992,12.142999649047852,1.246999979019165,0.0,16.396499633789062 -6279,2017-03-19 15:00:00,45.90499877929688,13.73799991607666,44.73899841308594,11.579999923706056,0.0,0.0,16.835500717163086 -6280,2017-03-19 16:00:00,48.41799926757813,15.161999702453612,46.18600082397461,12.25,1.3109999895095823,0.0,16.835500717163086 -6281,2017-03-19 17:00:00,48.91999816894531,14.156999588012695,46.88299942016602,11.418999671936035,2.6010000705718994,0.0,16.835500717163086 -6282,2017-03-19 18:00:00,51.76900100708008,15.581000328063965,49.69800186157226,12.41100025177002,2.559000015258789,0.0,16.835500717163086 -6283,2017-03-19 19:00:00,47.74800109863281,13.319000244140623,45.43600082397461,10.74899959564209,1.3009999990463257,0.0,17.27549934387207 -6284,2017-03-19 20:00:00,46.071998596191406,12.314000129699709,43.854000091552734,9.810999870300291,2.4730000495910645,0.0,16.396499633789062 -6285,2017-03-19 21:00:00,51.26599884033203,16.92099952697754,49.08100128173828,13.725000381469728,1.2899999618530271,0.0,15.078499794006348 -6286,2017-03-19 22:00:00,49.00400161743164,15.581000328063965,46.5620002746582,12.678999900817873,1.3539999723434448,0.0,15.078499794006348 -6287,2017-03-19 23:00:00,47.24499893188477,15.496999740600586,45.56999969482422,12.678999900817873,1.3860000371932983,0.0,15.957500457763672 -6288,2017-03-20 00:00:00,40.79499816894531,12.480999946594238,38.92200088500977,10.37399959564209,1.406999945640564,0.0,16.835500717163086 -6289,2017-03-20 01:00:00,41.13000106811523,13.56999969482422,39.45800018310547,11.312000274658203,1.493000030517578,0.0,16.835500717163086 -6290,2017-03-20 02:00:00,40.459999084472656,13.402999877929688,38.59999847412109,11.204999923706056,1.3109999895095823,0.0,16.396499633789062 -6291,2017-03-20 03:00:00,42.97299957275391,13.98900032043457,41.20000076293945,11.821000099182127,1.9299999475479128,0.0,15.737500190734863 -6292,2017-03-20 04:00:00,41.54899978637695,12.899999618530272,39.86000061035156,10.829999923706056,1.9830000400543213,0.0,15.07800006866455 -6293,2017-03-20 05:00:00,41.46500015258789,13.654000282287598,39.40399932861328,11.312000274658203,1.8980000019073489,0.0,15.29800033569336 -6294,2017-03-20 06:00:00,43.2239990234375,13.402999877929688,42.00500106811523,11.312000274658203,0.0,0.0,15.078499794006348 -6295,2017-03-20 07:00:00,45.23500061035156,13.73799991607666,43.15700149536133,11.312000274658203,1.3650000095367432,0.0,15.078499794006348 -6296,2017-03-20 08:00:00,40.04100036621094,9.465999603271484,38.92200088500977,7.692999839782715,1.3329999446868896,0.0,14.85849952697754 -6297,2017-03-20 09:00:00,46.32400131225586,14.324000358581545,45.51599884033203,11.928999900817873,1.2150000333786009,0.0,15.517499923706056 -6298,2017-03-20 10:00:00,41.96799850463867,10.890000343322754,40.98600006103516,8.845999717712402,0.0,0.0,15.95699977874756 -6299,2017-03-20 11:00:00,48.75299835205078,13.821999549865724,47.5,11.446000099182127,1.2369999885559082,0.0,16.615999221801758 -6300,2017-03-20 12:00:00,49.0880012512207,14.324000358581545,47.79499816894531,12.116000175476074,0.0,0.0,17.055500030517578 -6301,2017-03-20 13:00:00,46.99399948120117,13.904999732971191,45.8380012512207,11.392000198364258,0.0,0.0,17.495000839233402 -6302,2017-03-20 14:00:00,49.25600051879883,16.083000183105472,47.98199844360352,13.510000228881836,1.22599995136261,0.0,17.71500015258789 -6303,2017-03-20 15:00:00,48.16699981689453,15.246000289916992,47.01699829101562,12.517999649047852,0.0,0.0,17.71500015258789 -6304,2017-03-20 16:00:00,52.60599899291992,17.172000885009766,51.17200088500977,14.234000205993652,1.343000054359436,0.0,17.495000839233402 -6305,2017-03-20 17:00:00,51.51699829101562,15.83199977874756,49.56399917602539,13.027999877929688,1.246999979019165,0.0,17.274999618530273 -6306,2017-03-20 18:00:00,50.84700012207031,15.329999923706056,49.5099983215332,12.894000053405762,1.2369999885559082,0.0,16.836000442504886 -6307,2017-03-20 19:00:00,47.999000549316406,13.98900032043457,46.26699829101562,11.526000022888184,1.246999979019165,0.0,16.616500854492188 -6308,2017-03-20 20:00:00,49.25600051879883,14.324000358581545,47.04399871826172,11.607000350952148,2.5369999408721924,0.0,16.836000442504886 -6309,2017-03-20 21:00:00,47.915000915527344,13.487000465393065,45.32899856567383,10.803000450134276,2.6760001182556152,0.0,16.836000442504886 -6310,2017-03-20 22:00:00,49.59099960327149,16.419000625610348,47.84799957275391,13.564000129699709,2.622999906539917,0.0,16.396499633789062 -6311,2017-03-20 23:00:00,48.91999816894531,16.50200080871582,47.28499984741211,13.697999954223633,2.559000015258789,0.0,16.615999221801758 -6312,2017-03-21 00:00:00,45.73699951171875,15.496999740600586,43.90800094604492,12.946999549865724,2.5480000972747803,0.0,16.615999221801758 -6313,2017-03-21 01:00:00,45.90499877929688,15.581000328063965,44.38999938964844,13.135000228881836,1.8550000190734863,0.0,16.615999221801758 -6314,2017-03-21 02:00:00,44.14599990844727,14.743000030517578,42.27299880981445,12.491000175476074,1.2150000333786009,0.0,16.615999221801758 -6315,2017-03-21 03:00:00,44.81600189208984,14.576000213623049,42.99599838256836,12.357000350952148,1.63100004196167,0.0,16.396499633789062 -6316,2017-03-21 04:00:00,45.06700134277344,14.91100025177002,43.53300094604492,12.545000076293944,1.4819999933242798,0.0,16.177000045776367 -6317,2017-03-21 05:00:00,44.229000091552734,14.659000396728516,42.54100036621094,12.491000175476074,1.5349999666213991,0.0,15.957500457763672 -6318,2017-03-21 06:00:00,44.983001708984375,14.994000434875488,43.50600051879883,12.706000328063965,1.6419999599456787,0.0,15.957500457763672 -6319,2017-03-21 07:00:00,47.915000915527344,15.161999702453612,45.97200012207031,12.517999649047852,1.2690000534057615,0.0,15.957500457763672 -6320,2017-03-21 08:00:00,42.72200012207031,12.145999908447266,41.65599822998047,10.31999969482422,1.3329999446868896,0.0,16.396499633789062 -6321,2017-03-21 09:00:00,48.41799926757813,16.0,47.28499984741211,13.456000328063965,1.3329999446868896,0.0,17.714500427246094 -6322,2017-03-21 10:00:00,42.97299957275391,12.062999725341797,41.68299865722656,10.213000297546388,0.0,0.0,19.25300025939941 -6323,2017-03-21 11:00:00,44.3129997253418,13.319000244140623,43.21099853515625,11.232000350952148,1.2580000162124634,0.0,22.32900047302246 -6324,2017-03-21 12:00:00,41.79999923706055,12.39799976348877,41.01300048828125,10.560999870300291,0.0,0.0,26.06450080871582 -6325,2017-03-21 13:00:00,41.04600143432617,12.64900016784668,39.83300018310547,10.883000373840332,0.0,0.0,26.50399971008301 -6326,2017-03-21 14:00:00,41.79999923706055,13.487000465393065,41.040000915527344,11.66100025177002,0.0,0.0,27.602500915527344 -6327,2017-03-21 15:00:00,44.983001708984375,14.491999626159668,44.20299911499024,12.303999900817873,0.0,0.0,28.48150062561035 -6328,2017-03-21 16:00:00,48.91999816894531,16.0,47.178001403808594,13.269000053405762,1.3329999446868896,0.0,26.723499298095703 -6329,2017-03-21 17:00:00,48.91999816894531,14.91100025177002,46.85599899291992,12.303999900817873,1.4179999828338623,0.0,24.965999603271484 -6330,2017-03-21 18:00:00,49.00400161743164,14.241000175476074,47.98199844360352,11.982000350952148,0.0,0.0,23.647499084472656 -6331,2017-03-21 19:00:00,44.983001708984375,12.480999946594238,43.61299896240234,10.105999946594238,1.5349999666213991,0.0,22.98850059509277 -6332,2017-03-21 20:00:00,53.69499969482422,17.34000015258789,52.11000061035156,14.340999603271484,1.2369999885559082,0.0,22.32900047302246 -6333,2017-03-21 21:00:00,52.77399826049805,17.089000701904293,51.46699905395508,14.100000381469728,2.1960000991821294,0.0,21.66950035095215 -6334,2017-03-21 22:00:00,50.09299850463867,17.089000701904293,48.7859992980957,14.152999877929688,0.0,0.0,21.230499267578125 -6335,2017-03-21 23:00:00,48.16699981689453,16.419000625610348,46.13299942016602,13.43000030517578,1.246999979019165,0.0,20.57150077819824 -6336,2017-03-22 00:00:00,44.81600189208984,15.07800006866455,42.78200149536133,12.652000427246096,1.8339999914169312,0.0,20.131999969482425 -6337,2017-03-22 01:00:00,46.15599822998047,15.83199977874756,45.30199813842773,13.456000328063965,0.0,0.0,19.47249984741211 -6338,2017-03-22 02:00:00,40.87900161743164,12.815999984741213,39.08300018310547,10.74899959564209,1.406999945640564,0.0,18.813499450683597 -6339,2017-03-22 03:00:00,43.89400100708008,13.904999732971191,42.084999084472656,11.553000450134276,1.2369999885559082,0.0,17.934499740600586 -6340,2017-03-22 04:00:00,43.30799865722656,14.156999588012695,41.709999084472656,11.741000175476074,1.524999976158142,0.0,17.934499740600586 -6341,2017-03-22 05:00:00,42.303001403808594,13.402999877929688,40.79800033569336,11.151000022888184,1.3220000267028809,0.0,16.615999221801758 -6342,2017-03-22 06:00:00,45.48600006103516,14.324000358581545,43.935001373291016,11.875,1.3220000267028809,0.0,15.29800033569336 -6343,2017-03-22 07:00:00,41.79999923706055,11.895000457763672,39.37799835205078,9.409000396728516,1.715999960899353,0.0,14.638999938964846 -6344,2017-03-22 08:00:00,41.29800033569336,11.140999794006348,38.89500045776367,8.52400016784668,1.503000020980835,0.0,14.638999938964846 -6345,2017-03-22 09:00:00,50.00899887084961,15.329999923706056,48.9739990234375,12.894000053405762,1.2580000162124634,0.0,14.85849952697754 -6346,2017-03-22 10:00:00,45.31800079345703,11.309000015258787,44.14899826049805,9.086999893188477,1.3329999446868896,0.0,15.29800033569336 -6347,2017-03-22 11:00:00,49.75799942016602,13.821999549865724,48.7599983215332,11.392000198364258,0.0,0.0,15.517999649047852 -6348,2017-03-22 12:00:00,52.60599899291992,16.250999450683597,51.68099975585938,13.510000228881836,0.0,0.0,15.517999649047852 -6349,2017-03-22 13:00:00,50.428001403808594,15.748000144958494,49.56399917602539,13.027999877929688,0.0,0.0,14.85849952697754 -6350,2017-03-22 14:00:00,46.49100112915039,14.659000396728516,45.51599884033203,12.357000350952148,0.0,0.0,14.638999938964846 -6351,2017-03-22 15:00:00,51.01499938964844,15.496999740600586,50.52899932861328,12.812999725341797,0.0,0.0,13.760000228881836 -6352,2017-03-22 16:00:00,54.86800003051758,17.759000778198242,52.72700119018555,14.152999877929688,1.3539999723434448,0.0,13.539999961853027 -6353,2017-03-22 17:00:00,53.86299896240234,16.083000183105472,52.08399963378906,12.946999549865724,2.622999906539917,0.0,13.100500106811523 -6354,2017-03-22 18:00:00,54.95199966430664,16.753999710083008,51.86899948120117,12.920000076293944,2.622999906539917,0.0,13.100500106811523 -6355,2017-03-22 19:00:00,51.01499938964844,13.98900032043457,48.16999816894531,10.855999946594238,2.760999917984009,0.0,13.100500106811523 -6356,2017-03-22 20:00:00,52.35499954223633,15.83199977874756,49.77799987792969,12.62600040435791,2.760999917984009,0.0,13.539999961853027 -6357,2017-03-22 21:00:00,54.53300094604492,16.334999084472653,51.65499877929688,12.78600025177002,2.760999917984009,0.0,13.979499816894531 -6358,2017-03-22 22:00:00,51.85200119018555,16.250999450683597,49.80500030517578,12.894000053405762,2.7720000743865967,0.0,14.85849952697754 -6359,2017-03-22 23:00:00,45.23500061035156,13.234999656677244,43.07699966430664,10.883000373840332,2.760999917984009,0.0,15.517499923706056 -6360,2017-03-23 00:00:00,46.32400131225586,14.491999626159668,44.14899826049805,11.633999824523926,1.5349999666213991,0.0,15.517499923706056 -6361,2017-03-23 01:00:00,41.54899978637695,12.314000129699709,39.77999877929688,10.347000122070312,1.2369999885559082,0.0,15.517499923706056 -6362,2017-03-23 02:00:00,45.82099914550781,13.98900032043457,43.854000091552734,11.472999572753904,1.2150000333786009,0.0,15.517499923706056 -6363,2017-03-23 03:00:00,44.48099899291992,13.73799991607666,43.104000091552734,11.366000175476074,1.5779999494552612,0.0,15.29800033569336 -6364,2017-03-23 04:00:00,43.30799865722656,13.56999969482422,41.09299850463867,11.151000022888184,1.662999987602234,0.0,15.29800033569336 -6365,2017-03-23 05:00:00,41.632999420166016,12.64900016784668,40.87900161743164,10.90999984741211,0.0,0.0,15.29800033569336 -6366,2017-03-23 06:00:00,43.97800064086914,13.067999839782717,41.73699951171875,10.69499969482422,1.4390000104904177,0.0,15.29800033569336 -6367,2017-03-23 07:00:00,46.32400131225586,13.98900032043457,44.12200164794922,11.204999923706056,1.950999975204468,0.0,15.29800033569336 -6368,2017-03-23 08:00:00,49.50699996948242,15.581000328063965,46.9370002746582,12.46500015258789,2.440999984741211,0.0,15.517499923706056 -6369,2017-03-23 09:00:00,51.43399810791016,17.172000885009766,50.44800186157226,14.340999603271484,0.0,0.0,15.957500457763672 -6370,2017-03-23 10:00:00,48.66899871826172,13.654000282287598,47.63399887084961,11.12399959564209,0.0,0.0,16.615999221801758 -6371,2017-03-23 11:00:00,50.09299850463867,14.324000358581545,48.30400085449219,11.66100025177002,1.4390000104904177,0.0,17.055500030517578 -6372,2017-03-23 12:00:00,51.34999847412109,15.161999702453612,50.68999862670898,12.678999900817873,0.0,0.0,17.495000839233402 -6373,2017-03-23 13:00:00,52.77399826049805,16.836999893188473,51.70800018310547,14.072999954223633,0.0,0.0,17.495000839233402 -6374,2017-03-23 14:00:00,54.44900131225586,17.843000411987305,53.45100021362305,14.850000381469728,0.0,0.0,17.934499740600586 -6375,2017-03-23 15:00:00,53.19300079345703,17.34000015258789,52.11000061035156,14.368000030517578,0.0,0.0,17.934499740600586 -6376,2017-03-23 16:00:00,51.68500137329102,16.586000442504886,49.7509994506836,13.644000053405762,1.2580000162124634,0.0,18.15399932861328 -6377,2017-03-23 17:00:00,53.0250015258789,16.0,51.68099975585938,13.081000328063965,0.0,0.0,17.934499740600586 -6378,2017-03-23 18:00:00,50.34500122070313,15.07800006866455,48.91999816894531,12.571999549865724,0.0,0.0,17.714500427246094 -6379,2017-03-23 19:00:00,50.68000030517578,14.91100025177002,48.51800155639648,11.767999649047852,1.246999979019165,0.0,17.714500427246094 -6380,2017-03-23 20:00:00,52.43899917602539,16.419000625610348,51.17200088500977,13.590999603271484,0.0,0.0,17.27549934387207 -6381,2017-03-23 21:00:00,51.51699829101562,16.0,50.34099960327149,13.29599952697754,0.0,0.0,17.27549934387207 -6382,2017-03-23 22:00:00,49.25600051879883,15.916000366210938,48.00899887084961,13.29599952697754,0.0,0.0,17.495000839233402 -6383,2017-03-23 23:00:00,48.83700180053711,15.329999923706056,48.0359992980957,12.946999549865724,0.0,0.0,16.396499633789062 -6384,2017-03-24 00:00:00,46.90999984741211,14.743000030517578,45.81100082397461,12.491000175476074,0.0,0.0,15.29800033569336 -6385,2017-03-24 01:00:00,45.4020004272461,14.156999588012695,44.87300109863281,12.03600025177002,0.0,0.0,15.29800033569336 -6386,2017-03-24 02:00:00,44.39699935913086,13.487000465393065,43.88100051879883,11.472999572753904,0.0,0.0,15.29800033569336 -6387,2017-03-24 03:00:00,45.73699951171875,14.241000175476074,44.97999954223633,11.982000350952148,0.0,0.0,15.517499923706056 -6388,2017-03-24 04:00:00,42.47000122070313,12.899999618530272,41.89699935913086,11.071000099182127,0.0,0.0,15.517499923706056 -6389,2017-03-24 05:00:00,44.48099899291992,14.743000030517578,43.74700164794922,12.598999977111816,0.0,0.0,15.517499923706056 -6390,2017-03-24 06:00:00,46.32400131225586,13.904999732971191,45.56999969482422,11.902000427246096,0.0,0.0,15.517499923706056 -6391,2017-03-24 07:00:00,47.66400146484375,14.491999626159668,46.428001403808594,12.062999725341797,1.343000054359436,0.0,15.517499923706056 -6392,2017-03-24 08:00:00,45.23500061035156,12.732999801635742,44.33700180053711,10.588000297546388,0.0,0.0,14.85849952697754 -6393,2017-03-24 09:00:00,50.93099975585938,15.581000328063965,50.20700073242188,13.053999900817873,1.3009999990463257,0.0,14.85849952697754 -6394,2017-03-24 10:00:00,47.07799911499024,12.815999984741213,46.18600082397461,10.45400047302246,0.0,0.0,15.517499923706056 -6395,2017-03-24 11:00:00,47.915000915527344,14.491999626159668,47.1510009765625,12.437999725341797,0.0,0.0,16.177000045776367 -6396,2017-03-24 12:00:00,50.512001037597656,14.576000213623049,49.29600143432617,12.116000175476074,0.0,0.0,16.396499633789062 -6397,2017-03-24 13:00:00,50.93099975585938,15.246000289916992,50.04600143432617,12.598999977111816,0.0,0.0,16.396499633789062 -6398,2017-03-24 14:00:00,50.34500122070313,15.581000328063965,49.45700073242188,13.00100040435791,0.0,0.0,16.396499633789062 -6399,2017-03-24 15:00:00,52.35499954223633,16.92099952697754,51.49399948120117,14.18000030517578,0.0,0.0,16.835500717163086 -6400,2017-03-24 16:00:00,53.946998596191406,16.753999710083008,51.70800018310547,13.43000030517578,1.3650000095367432,0.0,15.957500457763672 -6401,2017-03-24 17:00:00,52.85800170898438,15.246000289916992,50.55599975585938,12.25,2.6760001182556152,0.0,15.517499923706056 -6402,2017-03-24 18:00:00,51.51699829101562,15.246000289916992,49.29600143432617,12.222999572753904,2.6010000705718994,0.0,15.078499794006348 -6403,2017-03-24 19:00:00,51.85200119018555,15.246000289916992,49.40299987792969,11.954999923706056,2.622999906539917,0.0,15.517499923706056 -6404,2017-03-24 20:00:00,53.10900115966797,16.250999450683597,50.77000045776367,12.894000053405762,2.494999885559082,0.0,15.957500457763672 -6405,2017-03-24 21:00:00,53.19300079345703,16.0,50.68999862670898,12.62600040435791,2.494999885559082,0.0,15.957500457763672 -6406,2017-03-24 22:00:00,52.27099990844727,16.250999450683597,49.72499847412109,12.894000053405762,2.5480000972747803,0.0,16.177000045776367 -6407,2017-03-24 23:00:00,50.00899887084961,16.0,47.84799957275391,13.00100040435791,2.440999984741211,0.0,16.177000045776367 -6408,2017-03-25 00:00:00,44.983001708984375,13.73799991607666,43.53300094604492,11.418999671936035,1.6419999599456787,0.0,16.177000045776367 -6409,2017-03-25 01:00:00,44.56499862670898,13.904999732971191,42.97000122070313,11.741000175476074,1.375,0.0,16.177000045776367 -6410,2017-03-25 02:00:00,42.303001403808594,13.821999549865724,41.57600021362305,12.008999824523926,0.0,0.0,15.957500457763672 -6411,2017-03-25 03:00:00,43.72700119018555,13.73799991607666,41.790000915527344,11.392000198364258,1.919000029563904,0.0,15.737500190734863 -6412,2017-03-25 04:00:00,42.55400085449219,13.402999877929688,40.61100006103516,10.883000373840332,1.5349999666213991,0.0,15.078499794006348 -6413,2017-03-25 05:00:00,44.3129997253418,14.072999954223633,42.38000106811523,11.5,1.3650000095367432,0.0,14.638500213623049 -6414,2017-03-25 06:00:00,43.30799865722656,12.984000205993652,41.28099822998047,10.668999671936035,1.4500000476837158,0.0,14.638500213623049 -6415,2017-03-25 07:00:00,46.99399948120117,15.496999740600586,45.30199813842773,12.84000015258789,1.4390000104904177,0.0,14.638500213623049 -6416,2017-03-25 08:00:00,44.64799880981445,13.319000244140623,44.06900024414063,11.28499984741211,0.0,0.0,15.078499794006348 -6417,2017-03-25 09:00:00,44.56499862670898,12.732999801635742,43.53300094604492,10.74899959564209,0.0,0.0,15.737500190734863 -6418,2017-03-25 10:00:00,48.33399963378906,14.91100025177002,47.07099914550781,12.25,1.22599995136261,0.0,17.27549934387207 -6419,2017-03-25 11:00:00,46.57500076293945,13.402999877929688,45.38199996948242,11.12399959564209,0.0,0.0,19.03350067138672 -6420,2017-03-25 12:00:00,47.32899856567383,13.402999877929688,46.53499984741211,11.151000022888184,0.0,0.0,21.01049995422364 -6421,2017-03-25 13:00:00,48.75299835205078,15.07800006866455,48.00899887084961,12.706000328063965,0.0,0.0,22.76849937438965 -6422,2017-03-25 14:00:00,47.32899856567383,14.994000434875488,46.428001403808594,12.517999649047852,0.0,0.0,23.86750030517578 -6423,2017-03-25 15:00:00,47.74800109863281,15.329999923706056,46.50799942016602,12.920000076293944,0.0,0.0,24.30649948120117 -6424,2017-03-25 16:00:00,49.3390007019043,15.83199977874756,48.2239990234375,13.43000030517578,0.0,0.0,24.08699989318848 -6425,2017-03-25 17:00:00,50.68000030517578,15.581000328063965,48.6259994506836,12.437999725341797,1.5670000314712524,0.0,22.988000869750977 -6426,2017-03-25 18:00:00,52.27099990844727,16.083000183105472,50.15399932861328,13.00100040435791,1.3329999446868896,0.0,22.548999786376957 -6427,2017-03-25 19:00:00,51.01499938964844,15.246000289916992,48.9739990234375,12.357000350952148,1.3860000371932983,0.0,21.88949966430664 -6428,2017-03-25 20:00:00,50.68000030517578,15.748000144958494,48.84000015258789,12.84000015258789,1.5460000038146973,0.0,21.450000762939453 -6429,2017-03-25 21:00:00,54.19800186157226,17.423999786376953,52.48600006103516,14.501999855041506,1.2580000162124634,0.0,20.79150009155273 -6430,2017-03-25 22:00:00,48.08300018310547,14.407999992370604,46.5880012512207,12.08899974822998,1.6100000143051147,0.0,19.6924991607666 -6431,2017-03-25 23:00:00,49.00400161743164,14.743000030517578,47.28499984741211,12.062999725341797,1.9720000028610232,0.0,18.813499450683597 -6432,2017-03-26 00:00:00,46.15599822998047,14.91100025177002,44.33700180053711,12.08899974822998,1.812000036239624,0.0,17.714500427246094 -6433,2017-03-26 01:00:00,42.63800048828125,12.732999801635742,41.790000915527344,10.883000373840332,0.0,0.0,17.055500030517578 -6434,2017-03-26 02:00:00,43.47600173950195,13.234999656677244,42.00500106811523,10.803000450134276,1.4290000200271606,0.0,15.957500457763672 -6435,2017-03-26 03:00:00,39.874000549316406,12.145999908447266,38.59999847412109,10.213000297546388,1.5460000038146973,0.0,15.078499794006348 -6436,2017-03-26 04:00:00,40.3759994506836,12.64900016784668,38.89500045776367,10.347000122070312,1.493000030517578,0.0,14.418999671936035 -6437,2017-03-26 05:00:00,41.54899978637695,12.815999984741213,39.96699905395508,10.614999771118164,1.7269999980926514,0.0,13.539999961853027 -6438,2017-03-26 06:00:00,40.459999084472656,11.47599983215332,38.94900131225586,9.54300022125244,1.246999979019165,0.0,12.880499839782717 -6439,2017-03-26 07:00:00,42.1349983215332,11.810999870300291,41.09299850463867,9.838000297546388,1.2150000333786009,0.0,12.66100025177002 -6440,2017-03-26 08:00:00,40.29199981689453,10.973999977111816,39.27000045776367,9.11400032043457,0.0,0.0,14.199000358581545 -6441,2017-03-26 09:00:00,39.0359992980957,10.38700008392334,38.52000045776367,9.034000396728516,0.0,0.0,16.615999221801758 -6442,2017-03-26 10:00:00,44.983001708984375,12.815999984741213,44.14899826049805,10.69499969482422,0.0,0.0,20.57150077819824 -6443,2017-03-26 11:00:00,47.66400146484375,13.73799991607666,47.125,11.767999649047852,0.0,0.0,24.74600028991699 -6444,2017-03-26 12:00:00,38.11399841308594,9.633000373840332,37.233001708984375,8.175999641418457,0.0,0.0,27.82250022888184 -6445,2017-03-26 13:00:00,45.1510009765625,13.402999877929688,44.92599868774414,11.66100025177002,0.0,0.0,29.36050033569336 -6446,2017-03-26 14:00:00,43.72700119018555,13.402999877929688,42.75500106811523,11.28499984741211,0.0,0.0,30.458999633789062 -6447,2017-03-26 15:00:00,44.0620002746582,13.73799991607666,43.07699966430664,11.472999572753904,0.0,0.0,30.898500442504893 -6448,2017-03-26 16:00:00,43.30799865722656,13.152000427246096,42.19200134277344,10.855999946594238,1.5889999866485596,0.0,29.57999992370605 -6449,2017-03-26 17:00:00,40.71099853515625,11.140999794006348,38.70800018310547,9.006999969482422,1.3860000371932983,0.0,27.163000106811523 -6450,2017-03-26 18:00:00,38.03099822998047,8.963000297546387,36.1879997253418,6.861999988555907,2.750999927520752,0.0,24.96549987792969 -6451,2017-03-26 19:00:00,48.25,13.234999656677244,46.4010009765625,10.776000022888184,2.719000101089477,0.0,22.988000869750977 -6452,2017-03-26 20:00:00,42.63800048828125,10.470999717712402,40.20899963378906,7.960999965667725,2.760999917984009,0.0,22.32900047302246 -6453,2017-03-26 21:00:00,45.1510009765625,11.5600004196167,42.91600036621094,8.73900032043457,1.8550000190734863,0.0,21.66950035095215 -6454,2017-03-26 22:00:00,44.81600189208984,11.810999870300291,42.38000106811523,9.354999542236328,1.8550000190734863,0.0,20.79150009155273 -6455,2017-03-26 23:00:00,43.47600173950195,12.899999618530272,42.67499923706055,10.668999671936035,0.0,0.0,19.47249984741211 -6456,2017-03-27 00:00:00,42.05199813842773,12.732999801635742,40.50299835205078,10.31999969482422,0.0,0.0,18.15449905395508 -6457,2017-03-27 01:00:00,42.21900177001953,13.152000427246096,41.62900161743164,11.097999572753906,0.0,0.0,17.27549934387207 -6458,2017-03-27 02:00:00,41.79999923706055,12.64900016784668,41.040000915527344,10.69499969482422,0.0,0.0,16.615999221801758 -6459,2017-03-27 03:00:00,40.9630012512207,12.39799976348877,40.61100006103516,10.803000450134276,0.0,0.0,15.517499923706056 -6460,2017-03-27 04:00:00,41.29800033569336,12.480999946594238,40.69100189208984,10.668999671936035,0.0,0.0,14.638500213623049 -6461,2017-03-27 05:00:00,40.79499816894531,12.5649995803833,40.28900146484375,10.829999923706056,0.0,0.0,13.759499549865724 -6462,2017-03-27 06:00:00,41.96799850463867,12.732999801635742,40.55699920654297,10.560999870300291,0.0,0.0,13.100500106811523 -6463,2017-03-27 07:00:00,49.17200088500977,14.82699966430664,42.83599853515625,10.53499984741211,6.3540000915527335,2.131999969482422,12.66100025177002 -6464,2017-03-27 08:00:00,39.45500183105469,10.38700008392334,39.72600173950195,9.16800022125244,0.0,0.0,14.638999938964846 -6465,2017-03-27 09:00:00,44.983001708984375,14.241000175476074,44.95299911499024,12.46500015258789,0.0,0.0,18.15399932861328 -6466,2017-03-27 10:00:00,41.54899978637695,11.225000381469728,41.68299865722656,9.70400047302246,0.0,0.0,22.54850006103516 -6467,2017-03-27 11:00:00,41.29800033569336,12.5649995803833,41.38800048828125,11.258000373840332,0.0,0.0,26.50399971008301 -6468,2017-03-27 12:00:00,44.81600189208984,13.402999877929688,45.40900039672852,11.71399974822998,0.0,0.0,29.36050033569336 -6469,2017-03-27 13:00:00,44.39699935913086,13.56999969482422,44.65800094604492,12.008999824523926,0.0,0.0,31.5575008392334 -6470,2017-03-27 14:00:00,45.56999969482422,15.161999702453612,45.54299926757813,13.161999702453612,0.0,0.0,33.974498748779304 -6471,2017-03-27 15:00:00,43.72700119018555,15.581000328063965,43.88100051879883,13.725000381469728,0.0,0.0,35.73249816894531 -6472,2017-03-27 16:00:00,44.81600189208984,14.324000358581545,44.79199981689453,12.732999801635742,0.0,0.0,34.41400146484375 -6473,2017-03-27 17:00:00,46.40700149536133,15.246000289916992,45.67699813842773,13.135000228881836,0.0,0.0,32.65650177001953 -6474,2017-03-27 18:00:00,47.83200073242188,14.91100025177002,46.90999984741211,12.894000053405762,0.0,0.0,30.67849922180176 -6475,2017-03-27 19:00:00,46.74300003051758,14.659000396728516,45.81100082397461,12.598999977111816,0.0,0.0,28.26149940490723 -6476,2017-03-27 20:00:00,44.900001525878906,12.5649995803833,44.01499938964844,10.614999771118164,0.0,0.0,26.50349998474121 -6477,2017-03-27 21:00:00,49.25600051879883,15.916000366210938,48.38399887084961,13.590999603271484,0.0,0.0,24.965999603271484 -6478,2017-03-27 22:00:00,48.08300018310547,15.916000366210938,47.1510009765625,13.80500030517578,0.0,0.0,24.08699989318848 -6479,2017-03-27 23:00:00,47.24499893188477,16.419000625610348,46.53499984741211,14.152999877929688,0.0,0.0,23.867000579833984 -6480,2017-03-28 00:00:00,44.48099899291992,14.994000434875488,43.935001373291016,13.321999549865724,0.0,0.0,23.867000579833984 -6481,2017-03-28 01:00:00,44.39699935913086,15.07800006866455,44.01499938964844,13.321999549865724,0.0,0.0,23.42799949645996 -6482,2017-03-28 02:00:00,44.229000091552734,15.916000366210938,43.72000122070313,13.859000205993652,0.0,0.0,22.988000869750977 -6483,2017-03-28 03:00:00,42.97299957275391,14.324000358581545,42.88899993896485,12.812999725341797,0.0,0.0,22.548999786376957 -6484,2017-03-28 04:00:00,41.29800033569336,14.659000396728516,40.74499893188477,12.812999725341797,0.0,0.0,22.108999252319336 -6485,2017-03-28 05:00:00,42.303001403808594,14.241000175476074,41.65599822998047,12.545000076293944,0.0,0.0,21.670000076293945 -6486,2017-03-28 06:00:00,43.05699920654297,13.487000465393065,41.790000915527344,11.71399974822998,0.0,0.0,21.230499267578125 -6487,2017-03-28 07:00:00,38.86800003051758,12.145999908447266,37.823001861572266,10.53499984741211,0.0,0.0,20.79100036621093 -6488,2017-03-28 08:00:00,36.68999862670898,9.381999969482422,36.10699844360352,8.14900016784668,0.0,0.0,21.88949966430664 -6489,2017-03-28 09:00:00,37.19300079345703,9.21399974822998,36.402000427246094,7.827000141143799,0.0,0.0,23.867000579833984 -6490,2017-03-28 10:00:00,35.518001556396484,8.041999816894531,34.60599899291992,6.620999813079834,0.0,0.0,26.28400039672852 -6491,2017-03-28 11:00:00,38.28200149536133,9.29800033569336,37.55500030517578,7.827000141143799,0.0,0.0,28.70100021362305 -6492,2017-03-28 12:00:00,42.05199813842773,10.470999717712402,41.01300048828125,8.873000144958496,0.0,0.0,29.58049964904785 -6493,2017-03-28 13:00:00,44.39699935913086,12.815999984741213,43.63999938964844,10.614999771118164,0.0,0.0,28.92099952697754 -6494,2017-03-28 14:00:00,42.387001037597656,12.062999725341797,41.57600021362305,10.105999946594238,0.0,0.0,28.48150062561035 -6495,2017-03-28 15:00:00,38.36600112915039,10.303000450134276,37.84999847412109,8.73900032043457,0.0,0.0,28.48150062561035 -6496,2017-03-28 16:00:00,40.9630012512207,11.057000160217283,39.96699905395508,9.034000396728516,0.0,0.0,28.701499938964844 -6497,2017-03-28 17:00:00,45.82099914550781,13.234999656677244,44.41699981689453,10.722000122070312,2.440999984741211,0.0,28.48150062561035 -6498,2017-03-28 18:00:00,46.90999984741211,14.324000358581545,44.229000091552734,11.366000175476074,2.440999984741211,0.0,28.04199981689453 -6499,2017-03-28 19:00:00,42.88899993896485,12.314000129699709,40.42300033569336,9.784000396728516,2.440999984741211,0.0,27.602500915527344 -6500,2017-03-28 20:00:00,41.88399887084961,12.229999542236328,39.56499862670898,9.677000045776367,2.440999984741211,0.0,27.38249969482422 -6501,2017-03-28 21:00:00,48.66899871826172,14.82699966430664,46.2130012512207,12.08899974822998,1.5670000314712524,0.0,26.28400039672852 -6502,2017-03-28 22:00:00,49.50699996948242,15.916000366210938,47.39300155639648,13.107999801635742,1.3329999446868896,0.0,25.405500411987305 -6503,2017-03-28 23:00:00,46.65900039672852,15.246000289916992,44.76599884033203,12.706000328063965,1.3220000267028809,0.0,24.526500701904297 -6504,2017-03-29 00:00:00,36.60699844360352,10.973999977111816,35.007999420166016,9.11400032043457,1.3969999551773071,0.0,23.647499084472656 -6505,2017-03-29 01:00:00,43.72700119018555,13.821999549865724,42.24599838256836,11.579999923706056,1.684000015258789,0.0,22.76849937438965 -6506,2017-03-29 02:00:00,45.4020004272461,14.994000434875488,43.854000091552734,12.571999549865724,1.5779999494552612,0.0,21.88949966430664 -6507,2017-03-29 03:00:00,42.88899993896485,13.487000465393065,41.415000915527344,11.232000350952148,1.493000030517578,0.0,21.01099967956543 -6508,2017-03-29 04:00:00,43.2239990234375,14.324000358581545,41.49499893188477,11.902000427246096,1.5140000581741333,0.0,20.35149955749512 -6509,2017-03-29 05:00:00,44.0620002746582,14.994000434875488,42.70199966430664,12.812999725341797,1.4500000476837158,0.0,19.47249984741211 -6510,2017-03-29 06:00:00,44.48099899291992,14.324000358581545,42.54100036621094,11.795000076293944,1.3220000267028809,0.0,19.03350067138672 -6511,2017-03-29 07:00:00,45.98899841308594,14.576000213623049,45.03400039672852,12.517999649047852,0.0,0.0,19.03350067138672 -6512,2017-03-29 08:00:00,40.29199981689453,9.465999603271484,39.56499862670898,7.747000217437744,0.0,0.0,19.03350067138672 -6513,2017-03-29 09:00:00,47.49599838256836,14.82699966430664,46.66899871826172,12.491000175476074,0.0,0.0,19.47249984741211 -6514,2017-03-29 10:00:00,43.05699920654297,11.057000160217283,42.19200134277344,9.11400032043457,0.0,0.0,20.79150009155273 -6515,2017-03-29 11:00:00,42.63800048828125,11.309000015258787,41.415000915527344,9.32800006866455,0.0,0.0,22.54850006103516 -6516,2017-03-29 12:00:00,39.45500183105469,9.465999603271484,38.41299819946289,8.069000244140625,0.0,0.0,25.18549919128418 -6517,2017-03-29 13:00:00,43.14099884033203,12.732999801635742,42.00500106811523,10.614999771118164,0.0,0.0,28.70100021362305 -6518,2017-03-29 14:00:00,42.55400085449219,12.145999908447266,41.89699935913086,10.31999969482422,0.0,0.0,31.5575008392334 -6519,2017-03-29 15:00:00,41.71599960327149,12.899999618530272,41.11999893188477,10.937000274658203,0.0,0.0,33.755001068115234 -6520,2017-03-29 16:00:00,39.70600128173828,10.470999717712402,39.00199890136719,8.95300006866455,0.0,0.0,32.21699905395508 -6521,2017-03-29 17:00:00,45.1510009765625,14.072999954223633,43.88100051879883,11.875,1.2690000534057615,0.0,29.36050033569336 -6522,2017-03-29 18:00:00,44.983001708984375,14.072999954223633,43.80099868774414,11.795000076293944,1.5779999494552612,0.0,27.163000106811523 -6523,2017-03-29 19:00:00,42.387001037597656,11.810999870300291,40.52999877929688,9.56999969482422,1.5140000581741333,0.0,25.405500411987305 -6524,2017-03-29 20:00:00,44.0620002746582,12.39799976348877,43.04999923706055,10.31999969482422,0.0,0.0,24.08699989318848 -6525,2017-03-29 21:00:00,46.82600021362305,13.904999732971191,44.97999954223633,11.418999671936035,1.2899999618530271,0.0,23.20800018310547 -6526,2017-03-29 22:00:00,50.26100158691406,17.674999237060547,48.49200057983398,14.609000205993652,1.246999979019165,0.0,22.10950088500977 -6527,2017-03-29 23:00:00,44.81600189208984,15.748000144958494,43.34500122070313,13.348999977111816,1.343000054359436,0.0,21.88949966430664 -6528,2017-03-30 00:00:00,45.06700134277344,16.419000625610348,43.935001373291016,14.234000205993652,1.2899999618530271,0.0,21.66950035095215 -6529,2017-03-30 01:00:00,42.05199813842773,13.98900032043457,40.52999877929688,11.954999923706056,1.4290000200271606,0.0,21.66950035095215 -6530,2017-03-30 02:00:00,46.32400131225586,16.166999816894528,44.52399826049805,13.67099952697754,1.662999987602234,0.0,21.66950035095215 -6531,2017-03-30 03:00:00,44.3129997253418,14.82699966430664,42.54100036621094,12.357000350952148,1.3969999551773071,0.0,21.230499267578125 -6532,2017-03-30 04:00:00,41.29800033569336,14.156999588012695,39.91400146484375,11.847999572753904,1.3109999895095823,0.0,20.79150009155273 -6533,2017-03-30 05:00:00,43.97800064086914,15.329999923706056,43.04999923706055,13.187999725341797,0.0,0.0,20.35149955749512 -6534,2017-03-30 06:00:00,44.900001525878906,14.82699966430664,44.14899826049805,12.678999900817873,0.0,0.0,19.912500381469727 -6535,2017-03-30 07:00:00,44.64799880981445,14.91100025177002,43.58599853515625,12.973999977111816,0.0,0.0,19.6924991607666 -6536,2017-03-30 08:00:00,39.62200164794922,10.13599967956543,39.11000061035156,8.73900032043457,0.0,0.0,19.6924991607666 -6537,2017-03-30 09:00:00,46.2400016784668,15.496999740600586,45.03400039672852,12.973999977111816,0.0,0.0,19.47249984741211 -6538,2017-03-30 10:00:00,42.72200012207031,11.47599983215332,41.68299865722656,9.56999969482422,0.0,0.0,19.6924991607666 -6539,2017-03-30 11:00:00,42.21900177001953,11.392000198364258,41.44200134277344,9.409000396728516,0.0,0.0,18.813499450683597 -6540,2017-03-30 12:00:00,46.57500076293945,14.241000175476074,45.40900039672852,12.008999824523926,0.0,0.0,18.5939998626709 -6541,2017-03-30 13:00:00,45.90499877929688,14.743000030517578,45.30199813842773,12.678999900817873,0.0,0.0,18.374000549316406 -6542,2017-03-30 14:00:00,42.1349983215332,13.234999656677244,41.22700119018555,11.366000175476074,0.0,0.0,17.934499740600586 -6543,2017-03-30 15:00:00,45.90499877929688,14.491999626159668,45.11399841308594,12.491000175476074,0.0,0.0,17.495000839233402 -6544,2017-03-30 16:00:00,47.24499893188477,14.576000213623049,46.50799942016602,12.491000175476074,0.0,0.0,16.836000442504886 -6545,2017-03-30 17:00:00,47.83200073242188,14.241000175476074,46.07899856567383,11.66100025177002,2.687000036239624,0.0,16.836000442504886 -6546,2017-03-30 18:00:00,50.76300048828125,15.329999923706056,48.25,12.383999824523926,2.6440000534057617,0.0,16.615999221801758 -6547,2017-03-30 19:00:00,50.26100158691406,14.743000030517578,47.58000183105469,11.795000076293944,2.5369999408721924,0.0,16.396499633789062 -6548,2017-03-30 20:00:00,46.82600021362305,13.402999877929688,44.25600051879883,10.883000373840332,2.5160000324249268,0.0,16.177000045776367 -6549,2017-03-30 21:00:00,47.07799911499024,14.324000358581545,44.92599868774414,11.71399974822998,2.505000114440918,0.0,15.957500457763672 -6550,2017-03-30 22:00:00,45.65399932861328,14.576000213623049,43.479000091552734,12.008999824523926,2.505000114440918,0.0,15.737500190734863 -6551,2017-03-30 23:00:00,44.14599990844727,14.156999588012695,42.19200134277344,11.795000076293944,1.2790000438690186,0.0,15.517499923706056 -6552,2017-03-31 00:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6553,2017-03-31 01:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6554,2017-03-31 02:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6555,2017-03-31 03:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6556,2017-03-31 04:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6557,2017-03-31 05:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6558,2017-03-31 06:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6559,2017-03-31 07:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6560,2017-03-31 08:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6561,2017-03-31 09:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6562,2017-03-31 10:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6563,2017-03-31 11:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6564,2017-03-31 12:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6565,2017-03-31 13:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6566,2017-03-31 14:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6567,2017-03-31 15:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6568,2017-03-31 16:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6569,2017-03-31 17:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6570,2017-03-31 18:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6571,2017-03-31 19:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6572,2017-03-31 20:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6573,2017-03-31 21:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6574,2017-03-31 22:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6575,2017-03-31 23:00:00,44.900001525878906,15.581000328063965,43.26399993896485,12.946999549865724,1.2790000438690186,0.0,15.078499794006348 -6576,2017-04-01 00:00:00,43.2239990234375,14.072999954223633,42.64799880981445,12.331000328063965,0.0,0.0,19.03350067138672 -6577,2017-04-01 01:00:00,43.30799865722656,14.324000358581545,42.72800064086914,12.357000350952148,0.0,0.0,18.374000549316406 -6578,2017-04-01 02:00:00,42.97299957275391,13.73799991607666,42.32600021362305,11.875,0.0,0.0,17.714500427246094 -6579,2017-04-01 03:00:00,42.303001403808594,13.904999732971191,41.76300048828125,12.196999549865724,0.0,0.0,17.055500030517578 -6580,2017-04-01 04:00:00,43.30799865722656,14.241000175476074,42.29899978637695,12.331000328063965,0.0,0.0,16.396499633789062 -6581,2017-04-01 05:00:00,39.70600128173828,12.899999618530272,39.24399948120117,11.28499984741211,0.0,0.0,15.517499923706056 -6582,2017-04-01 06:00:00,41.632999420166016,12.64900016784668,40.39599990844727,11.017000198364258,0.0,0.0,15.078499794006348 -6583,2017-04-01 07:00:00,45.90499877929688,14.072999954223633,45.06000137329102,12.116000175476074,0.0,0.0,14.638500213623049 -6584,2017-04-01 08:00:00,45.23500061035156,14.576000213623049,44.33700180053711,12.571999549865724,0.0,0.0,15.957500457763672 -6585,2017-04-01 09:00:00,46.99399948120117,14.994000434875488,45.00699996948242,12.08899974822998,0.0,0.0,18.5935001373291 -6586,2017-04-01 10:00:00,40.459999084472656,10.973999977111816,39.53799819946289,9.194000244140623,0.0,0.0,21.670000076293945 -6587,2017-04-01 11:00:00,36.52299880981445,8.963000297546387,35.8390007019043,7.532000064849853,0.0,0.0,25.18549919128418 -6588,2017-04-01 12:00:00,39.0359992980957,9.968000411987305,38.25199890136719,8.444000244140625,0.0,0.0,27.602500915527344 -6589,2017-04-01 13:00:00,41.13000106811523,12.229999542236328,40.15499877929688,10.347000122070312,1.246999979019165,0.0,29.36050033569336 -6590,2017-04-01 14:00:00,40.29199981689453,12.229999542236328,38.81499862670898,10.347000122070312,1.3539999723434448,0.0,31.118000030517567 -6591,2017-04-01 15:00:00,44.56499862670898,13.234999656677244,43.80099868774414,11.12399959564209,0.0,0.0,31.77750015258789 -6592,2017-04-01 16:00:00,44.81600189208984,13.487000465393065,43.45199966430664,11.33899974822998,0.0,0.0,30.898500442504893 -6593,2017-04-01 17:00:00,45.98899841308594,13.487000465393065,44.49800109863281,11.28499984741211,1.3650000095367432,0.0,29.57999992370605 -6594,2017-04-01 18:00:00,42.72200012207031,11.644000053405762,41.11999893188477,9.515999794006348,1.3329999446868896,0.0,27.82200050354004 -6595,2017-04-01 19:00:00,44.56499862670898,12.145999908447266,43.02299880981445,9.972000122070312,1.5989999771118164,0.0,25.40500068664551 -6596,2017-04-01 20:00:00,46.2400016784668,13.319000244140623,44.87300109863281,11.071000099182127,1.4390000104904177,0.0,23.427499771118164 -6597,2017-04-01 21:00:00,46.74300003051758,14.072999954223633,45.8380012512207,11.795000076293944,0.0,0.0,21.66950035095215 -6598,2017-04-01 22:00:00,50.00899887084961,15.83199977874756,48.67900085449219,13.241999626159668,1.5460000038146973,0.0,20.79150009155273 -6599,2017-04-01 23:00:00,45.56999969482422,14.407999992370604,44.73899841308594,12.116000175476074,0.0,0.0,19.912500381469727 -6600,2017-04-02 00:00:00,44.229000091552734,14.324000358581545,43.50600051879883,12.491000175476074,0.0,0.0,19.47249984741211 -6601,2017-04-02 01:00:00,39.20299911499024,11.810999870300291,38.573001861572266,10.213000297546388,0.0,0.0,18.5935001373291 -6602,2017-04-02 02:00:00,44.3129997253418,13.821999549865724,43.61299896240234,11.928999900817873,0.0,0.0,18.15449905395508 -6603,2017-04-02 03:00:00,43.89400100708008,14.156999588012695,43.02299880981445,12.277000427246096,0.0,0.0,17.495000839233402 -6604,2017-04-02 04:00:00,43.47600173950195,13.821999549865724,42.86199951171875,11.795000076293944,0.0,0.0,16.835500717163086 -6605,2017-04-02 05:00:00,43.55899810791016,14.659000396728516,42.97000122070313,12.678999900817873,0.0,0.0,16.396499633789062 -6606,2017-04-02 06:00:00,45.4020004272461,13.98900032043457,44.49800109863281,11.954999923706056,0.0,0.0,15.957500457763672 -6607,2017-04-02 07:00:00,45.82099914550781,14.156999588012695,44.92599868774414,12.062999725341797,0.0,0.0,15.957500457763672 -6608,2017-04-02 08:00:00,41.88399887084961,11.979000091552734,40.98600006103516,10.159000396728516,0.0,0.0,17.934499740600586 -6609,2017-04-02 09:00:00,46.071998596191406,15.329999923706056,45.6500015258789,13.21500015258789,0.0,0.0,20.79100036621093 -6610,2017-04-02 10:00:00,43.72700119018555,13.234999656677244,42.83599853515625,11.312000274658203,0.0,0.0,24.965999603271484 -6611,2017-04-02 11:00:00,47.83200073242188,15.161999702453612,46.90999984741211,12.706000328063965,0.0,0.0,28.701499938964844 -6612,2017-04-02 12:00:00,44.0620002746582,12.732999801635742,43.104000091552734,10.69499969482422,0.0,0.0,31.996999740600582 -6613,2017-04-02 13:00:00,42.47000122070313,12.815999984741213,41.73699951171875,10.883000373840332,0.0,0.0,34.19449996948242 -6614,2017-04-02 14:00:00,41.13000106811523,11.979000091552734,40.55699920654297,10.159000396728516,0.0,0.0,35.73249816894531 -6615,2017-04-02 15:00:00,44.229000091552734,13.56999969482422,43.63999938964844,11.5,0.0,0.0,37.27050018310547 -6616,2017-04-02 16:00:00,44.64799880981445,13.56999969482422,43.72000122070313,11.526000022888184,0.0,0.0,36.61100006103516 -6617,2017-04-02 17:00:00,43.14099884033203,12.39799976348877,42.56800079345703,10.614999771118164,0.0,0.0,34.63399887084961 -6618,2017-04-02 18:00:00,43.64300155639648,12.062999725341797,42.83599853515625,10.29300022125244,0.0,0.0,31.996999740600582 -6619,2017-04-02 19:00:00,43.2239990234375,12.229999542236328,41.97800064086914,10.239999771118164,0.0,0.0,29.79999923706055 -6620,2017-04-02 20:00:00,44.73199844360352,13.067999839782717,43.98799896240234,11.258000373840332,0.0,0.0,27.163000106811523 -6621,2017-04-02 21:00:00,47.07799911499024,14.156999588012695,46.2400016784668,12.062999725341797,0.0,0.0,25.405500411987305 -6622,2017-04-02 22:00:00,47.41299819946289,15.246000289916992,46.5620002746582,13.00100040435791,0.0,0.0,24.30649948120117 -6623,2017-04-02 23:00:00,46.82600021362305,15.916000366210938,46.07899856567383,13.697999954223633,0.0,0.0,23.647499084472656 -6624,2017-04-03 00:00:00,45.82099914550781,15.83199977874756,45.24800109863281,13.644000053405762,0.0,0.0,23.647499084472656 -6625,2017-04-03 01:00:00,41.54899978637695,14.156999588012695,41.09299850463867,12.170000076293944,0.0,0.0,23.647499084472656 -6626,2017-04-03 02:00:00,44.39699935913086,14.576000213623049,43.77399826049805,12.41100025177002,0.0,0.0,23.20800018310547 -6627,2017-04-03 03:00:00,41.38100051879883,13.487000465393065,40.98600006103516,11.66100025177002,0.0,0.0,22.76849937438965 -6628,2017-04-03 04:00:00,42.47000122070313,14.407999992370604,42.27299880981445,12.517999649047852,0.0,0.0,22.32900047302246 -6629,2017-04-03 05:00:00,42.72200012207031,14.241000175476074,42.38000106811523,12.25,0.0,0.0,21.88949966430664 -6630,2017-04-03 06:00:00,45.23500061035156,14.241000175476074,44.229000091552734,12.062999725341797,0.0,0.0,21.450000762939453 -6631,2017-04-03 07:00:00,37.277000427246094,9.885000228881836,36.29499816894531,8.121999740600586,0.0,0.0,21.66950035095215 -6632,2017-04-03 08:00:00,41.88399887084961,12.229999542236328,40.87900161743164,9.99899959564209,0.0,0.0,23.42799949645996 -6633,2017-04-03 09:00:00,45.82099914550781,14.743000030517578,44.87300109863281,12.491000175476074,0.0,0.0,25.405500411987305 -6634,2017-04-03 10:00:00,43.05699920654297,13.234999656677244,41.709999084472656,10.90999984741211,0.0,0.0,28.92099952697754 -6635,2017-04-03 11:00:00,45.73699951171875,14.324000358581545,44.65800094604492,12.062999725341797,0.0,0.0,31.77750015258789 -6636,2017-04-03 12:00:00,42.21900177001953,12.229999542236328,41.73699951171875,10.347000122070312,0.0,0.0,33.53499984741211 -6637,2017-04-03 13:00:00,44.64799880981445,14.072999954223633,43.96099853515625,11.687000274658203,0.0,0.0,35.073001861572266 -6638,2017-04-03 14:00:00,44.39699935913086,14.156999588012695,43.479000091552734,11.928999900817873,0.0,0.0,36.17150115966797 -6639,2017-04-03 15:00:00,44.39699935913086,13.821999549865724,43.42499923706055,11.579999923706056,0.0,0.0,37.05049896240234 -6640,2017-04-03 16:00:00,39.11999893188477,11.727999687194824,38.54700088500977,10.024999618530272,0.0,0.0,36.39149856567383 -6641,2017-04-03 17:00:00,42.303001403808594,12.062999725341797,40.93199920654297,9.91800022125244,1.3220000267028809,0.0,34.63399887084961 -6642,2017-04-03 18:00:00,42.47000122070313,11.895000457763672,41.20000076293945,9.70400047302246,1.5989999771118164,0.0,33.31549835205078 -6643,2017-04-03 19:00:00,43.55899810791016,12.062999725341797,42.64799880981445,10.883000373840332,1.4709999561309814,0.0,31.77750015258789 -6644,2017-04-03 20:00:00,46.57500076293945,13.904999732971191,45.48899841308594,11.902000427246096,0.0,0.0,30.019500732421875 -6645,2017-04-03 21:00:00,47.32899856567383,14.659000396728516,45.89099884033203,12.170000076293944,1.4390000104904177,0.0,28.92099952697754 -6646,2017-04-03 22:00:00,42.72200012207031,13.821999549865724,42.13899993896485,11.795000076293944,0.0,0.0,28.04199981689453 -6647,2017-04-03 23:00:00,40.79499816894531,12.732999801635742,39.75299835205078,10.883000373840332,1.3969999551773071,0.0,27.382999420166016 -6648,2017-04-04 00:00:00,42.72200012207031,13.821999549865724,42.29899978637695,12.196999549865724,0.0,0.0,26.94300079345703 -6649,2017-04-04 01:00:00,37.52799987792969,11.5600004196167,37.04600143432617,10.105999946594238,0.0,0.0,26.28400039672852 -6650,2017-04-04 02:00:00,35.0989990234375,10.38700008392334,34.31100082397461,8.899999618530273,0.0,0.0,25.625 -6651,2017-04-04 03:00:00,38.617000579833984,12.145999908447266,38.38600158691406,10.401000022888184,0.0,0.0,25.18600082397461 -6652,2017-04-04 04:00:00,35.93600082397461,11.5600004196167,35.518001556396484,10.133000373840332,0.0,0.0,25.18600082397461 -6653,2017-04-04 05:00:00,36.60699844360352,10.638999938964844,36.1609992980957,9.220999717712402,0.0,0.0,24.965999603271484 -6654,2017-04-04 06:00:00,40.79499816894531,12.39799976348877,39.99399948120117,10.560999870300291,0.0,0.0,24.965999603271484 -6655,2017-04-04 07:00:00,32.83700180053711,9.04699993133545,31.97900009155273,7.827000141143799,0.0,0.0,25.18549919128418 -6656,2017-04-04 08:00:00,36.52299880981445,10.052000045776367,35.7859992980957,8.416999816894531,0.0,0.0,25.18549919128418 -6657,2017-04-04 09:00:00,40.87900161743164,11.727999687194824,39.86000061035156,9.864999771118164,0.0,0.0,25.625 -6658,2017-04-04 10:00:00,39.62200164794922,10.303000450134276,38.73400115966797,8.550999641418457,0.0,0.0,26.50349998474121 -6659,2017-04-04 11:00:00,40.87900161743164,11.392000198364258,40.02099990844727,9.515999794006348,0.0,0.0,27.82250022888184 -6660,2017-04-04 12:00:00,41.2140007019043,11.225000381469728,40.74499893188477,9.435999870300291,0.0,0.0,28.92099952697754 -6661,2017-04-04 13:00:00,40.87900161743164,11.057000160217283,40.34299850463867,9.16800022125244,0.0,0.0,30.89800071716309 -6662,2017-04-04 14:00:00,41.96799850463867,12.899999618530272,41.30799865722656,10.829999923706056,0.0,0.0,31.996999740600582 -6663,2017-04-04 15:00:00,40.20899963378906,11.895000457763672,39.35100173950195,10.29300022125244,0.0,0.0,31.77700042724609 -6664,2017-04-04 16:00:00,43.2239990234375,13.402999877929688,42.70199966430664,11.28499984741211,0.0,0.0,31.33799934387207 -6665,2017-04-04 17:00:00,42.55400085449219,12.39799976348877,41.52199935913086,10.45400047302246,0.0,0.0,30.67849922180176 -6666,2017-04-04 18:00:00,45.31800079345703,13.73799991607666,44.229000091552734,11.71399974822998,0.0,0.0,30.23900032043457 -6667,2017-04-04 19:00:00,42.97299957275391,11.979000091552734,42.13899993896485,9.99899959564209,0.0,0.0,29.79999923706055 -6668,2017-04-04 20:00:00,45.4020004272461,12.899999618530272,44.65800094604492,10.90999984741211,0.0,0.0,29.58049964904785 -6669,2017-04-04 21:00:00,46.82600021362305,14.82699966430664,46.07899856567383,12.491000175476074,0.0,0.0,28.701499938964844 -6670,2017-04-04 22:00:00,42.97299957275391,13.56999969482422,42.38000106811523,11.607000350952148,0.0,0.0,26.50399971008301 -6671,2017-04-04 23:00:00,39.874000549316406,12.39799976348877,39.40399932861328,10.642000198364258,0.0,0.0,25.625 -6672,2017-04-05 00:00:00,40.04100036621094,12.480999946594238,39.61899948120117,10.776000022888184,0.0,0.0,24.74650001525879 -6673,2017-04-05 01:00:00,37.277000427246094,11.309000015258787,36.858001708984375,9.94499969482422,0.0,0.0,24.08699989318848 -6674,2017-04-05 02:00:00,40.29199981689453,12.39799976348877,39.69900131225586,10.642000198364258,0.0,0.0,23.20800018310547 -6675,2017-04-05 03:00:00,41.2140007019043,13.067999839782717,40.85200119018555,11.472999572753904,0.0,0.0,23.20800018310547 -6676,2017-04-05 04:00:00,40.04100036621094,12.815999984741213,39.32400131225586,11.043999671936035,0.0,0.0,23.20800018310547 -6677,2017-04-05 05:00:00,39.37099838256836,13.234999656677244,38.94900131225586,11.418999671936035,0.0,0.0,23.427499771118164 -6678,2017-04-05 06:00:00,42.80500030517578,12.5649995803833,42.084999084472656,10.69499969482422,0.0,0.0,23.427499771118164 -6679,2017-04-05 07:00:00,34.847000122070305,9.550000190734863,33.990001678466804,8.229000091552733,0.0,0.0,23.647499084472656 -6680,2017-04-05 08:00:00,38.44900131225586,9.968000411987305,38.09099960327149,8.416999816894531,0.0,0.0,23.86750030517578 -6681,2017-04-05 09:00:00,45.98899841308594,14.576000213623049,44.84600067138672,12.170000076293944,0.0,0.0,24.30649948120117 -6682,2017-04-05 10:00:00,38.36600112915039,9.465999603271484,37.5009994506836,7.854000091552732,0.0,0.0,25.18549919128418 -6683,2017-04-05 11:00:00,40.79499816894531,10.052000045776367,40.04800033569336,8.310000419616701,0.0,0.0,26.06450080871582 -6684,2017-04-05 12:00:00,40.459999084472656,11.057000160217283,39.59199905395508,8.873000144958496,0.0,0.0,26.943500518798828 -6685,2017-04-05 13:00:00,44.3129997253418,13.56999969482422,43.53300094604492,11.33899974822998,0.0,0.0,27.38249969482422 -6686,2017-04-05 14:00:00,41.96799850463867,13.234999656677244,41.44200134277344,11.151000022888184,0.0,0.0,27.602500915527344 -6687,2017-04-05 15:00:00,41.88399887084961,12.815999984741213,40.79800033569336,10.69499969482422,1.3009999990463257,0.0,27.602500915527344 -6688,2017-04-05 16:00:00,44.900001525878906,13.904999732971191,43.58599853515625,11.579999923706056,1.503000020980835,0.0,27.602500915527344 -6689,2017-04-05 17:00:00,48.41799926757813,15.161999702453612,46.85599899291992,12.652000427246096,1.4819999933242798,0.0,27.602500915527344 -6690,2017-04-05 18:00:00,46.57500076293945,13.56999969482422,44.92599868774414,11.071000099182127,1.2690000534057615,0.0,27.38249969482422 -6691,2017-04-05 19:00:00,45.31800079345703,12.984000205993652,44.17599868774414,10.668999671936035,0.0,0.0,27.38249969482422 -6692,2017-04-05 20:00:00,46.57500076293945,12.5649995803833,44.97999954223633,10.07900047302246,1.3969999551773071,0.0,26.943500518798828 -6693,2017-04-05 21:00:00,48.91999816894531,15.329999923706056,47.6609992980957,12.732999801635742,1.3220000267028809,0.0,26.28400039672852 -6694,2017-04-05 22:00:00,46.65900039672852,15.161999702453612,45.70399856567383,12.894000053405762,0.0,0.0,26.28400039672852 -6695,2017-04-05 23:00:00,46.2400016784668,14.743000030517578,45.62300109863281,12.62600040435791,0.0,0.0,26.28400039672852 -6696,2017-04-06 00:00:00,42.88899993896485,14.241000175476074,42.32600021362305,12.277000427246096,0.0,0.0,26.06450080871582 -6697,2017-04-06 01:00:00,42.1349983215332,13.904999732971191,41.60300064086914,12.062999725341797,0.0,0.0,25.40500068664551 -6698,2017-04-06 02:00:00,40.79499816894531,12.984000205993652,39.99399948120117,11.258000373840332,0.0,0.0,24.30649948120117 -6699,2017-04-06 03:00:00,39.62200164794922,12.314000129699709,39.13600158691406,10.53499984741211,0.0,0.0,23.42799949645996 -6700,2017-04-06 04:00:00,34.261001586914055,9.465999603271484,33.82899856567383,8.310000419616701,0.0,0.0,22.98850059509277 -6701,2017-04-06 05:00:00,41.13000106811523,12.984000205993652,40.36899948120117,11.232000350952148,0.0,0.0,22.98850059509277 -6702,2017-04-06 06:00:00,41.13000106811523,12.229999542236328,40.63800048828125,10.668999671936035,0.0,0.0,22.10950088500977 -6703,2017-04-06 07:00:00,43.89400100708008,13.234999656677244,43.04999923706055,11.071000099182127,0.0,0.0,21.230499267578125 -6704,2017-04-06 08:00:00,39.62200164794922,10.638999938964844,38.97600173950195,9.220999717712402,0.0,0.0,20.57150077819824 -6705,2017-04-06 09:00:00,43.391998291015625,12.64900016784668,42.32600021362305,10.347000122070312,1.2369999885559082,0.0,20.131999969482425 -6706,2017-04-06 10:00:00,37.69599914550781,9.717000007629396,36.7239990234375,7.88100004196167,0.0,0.0,20.131999969482425 -6707,2017-04-06 11:00:00,39.53799819946289,10.638999938964844,38.59999847412109,8.791999816894531,0.0,0.0,20.131999969482425 -6708,2017-04-06 12:00:00,36.60699844360352,9.633000373840332,35.86600112915039,8.041999816894531,0.0,0.0,21.450000762939453 -6709,2017-04-06 13:00:00,37.69599914550781,10.55500030517578,37.071998596191406,8.73900032043457,0.0,0.0,22.10950088500977 -6710,2017-04-06 14:00:00,39.62200164794922,11.5600004196167,38.65399932861328,9.623000144958496,0.0,0.0,22.54850006103516 -6711,2017-04-06 15:00:00,39.0359992980957,11.140999794006348,38.41299819946289,9.461999893188477,0.0,0.0,23.20800018310547 -6712,2017-04-06 16:00:00,39.0359992980957,10.638999938964844,38.17100143432617,8.819000244140625,0.0,0.0,23.427499771118164 -6713,2017-04-06 17:00:00,38.198001861572266,9.800999641418455,36.7239990234375,8.203000068664549,1.4609999656677246,0.0,23.647499084472656 -6714,2017-04-06 18:00:00,43.97800064086914,12.899999618530272,42.21900177001953,10.480999946594238,2.121999979019165,0.0,23.647499084472656 -6715,2017-04-06 19:00:00,40.87900161743164,10.638999938964844,39.08300018310547,8.73900032043457,1.621000051498413,0.0,23.647499084472656 -6716,2017-04-06 20:00:00,40.79499816894531,10.805999755859377,38.73400115966797,8.578000068664549,1.5140000581741333,0.0,23.86750030517578 -6717,2017-04-06 21:00:00,36.858001708984375,9.21399974822998,35.007999420166016,7.290999889373777,1.2150000333786009,0.0,23.86750030517578 -6718,2017-04-06 22:00:00,42.303001403808594,13.487000465393065,40.61100006103516,11.418999671936035,1.4290000200271606,0.0,23.86750030517578 -6719,2017-04-06 23:00:00,36.60699844360352,10.55500030517578,35.007999420166016,8.604999542236326,1.3109999895095823,0.0,23.86750030517578 -6720,2017-04-07 00:00:00,33.590999603271484,9.21399974822998,32.03300094604492,7.77400016784668,1.3539999723434448,0.0,23.86750030517578 -6721,2017-04-07 01:00:00,34.847000122070305,9.633000373840332,33.64099884033203,8.229000091552733,1.4390000104904177,0.0,23.86750030517578 -6722,2017-04-07 02:00:00,30.072999954223643,7.789999961853027,28.78899955749512,6.540999889373777,1.406999945640564,0.0,22.76849937438965 -6723,2017-04-07 03:00:00,35.93600082397461,10.890000343322754,34.41899871826172,9.354999542236328,1.7059999704360962,0.0,22.54850006103516 -6724,2017-04-07 04:00:00,36.1879997253418,11.810999870300291,34.87400054931641,10.159000396728516,1.7059999704360962,0.0,22.10950088500977 -6725,2017-04-07 05:00:00,32.669998168945305,9.800999641418455,31.44300079345703,8.444000244140625,1.3109999895095823,0.0,22.10950088500977 -6726,2017-04-07 06:00:00,28.81599998474121,5.696000099182129,27.23500061035156,4.422999858856201,1.4179999828338623,0.0,21.450000762939453 -6727,2017-04-07 07:00:00,25.29800033569336,5.947999954223633,23.375,4.63700008392334,1.246999979019165,0.0,21.230499267578125 -6728,2017-04-07 08:00:00,20.52300071716309,4.859000205993652,19.64900016784668,3.940000057220459,0.0,0.0,21.230499267578125 -6729,2017-04-07 09:00:00,21.44499969482422,4.5229997634887695,20.319000244140625,3.8329999446868896,0.0,0.0,20.79150009155273 -6730,2017-04-07 10:00:00,21.69599914550781,4.440000057220459,20.77400016784668,3.5920000076293945,0.0,0.0,21.230499267578125 -6731,2017-04-07 11:00:00,22.70100021362305,4.859000205993652,21.68600082397461,3.859999895095825,0.0,0.0,21.230499267578125 -6732,2017-04-07 12:00:00,19.51799964904785,0.0,18.576000213623047,2.2249999046325684,0.0,0.0,22.32900047302246 -6733,2017-04-07 13:00:00,21.025999069213867,4.5229997634887695,20.21199989318848,3.7799999713897705,0.0,0.0,23.20800018310547 -6734,2017-04-07 14:00:00,19.01499938964844,0.0,18.496000289916992,2.680999994277954,0.0,0.0,24.526500701904297 -6735,2017-04-07 15:00:00,19.01499938964844,0.0,18.201000213623047,2.2249999046325684,0.0,0.0,25.625 -6736,2017-04-07 16:00:00,19.601999282836918,0.0,18.68400001525879,2.4130001068115234,0.0,0.0,25.625 -6737,2017-04-07 17:00:00,23.28700065612793,4.355999946594238,21.33699989318848,3.0829999446868896,2.687000036239624,0.0,25.405500411987305 -6738,2017-04-07 18:00:00,26.88999938964844,6.031000137329103,24.420000076293945,4.449999809265137,2.687000036239624,0.0,25.405500411987305 -6739,2017-04-07 19:00:00,26.2189998626709,6.114999771118164,24.34000015258789,4.932000160217285,1.4609999656677246,0.0,25.18549919128418 -6740,2017-04-07 20:00:00,29.066999435424805,6.618000030517577,27.10099983215332,5.308000087738037,1.4609999656677246,0.0,24.965999603271484 -6741,2017-04-07 21:00:00,28.565000534057607,6.2829999923706055,26.51099967956543,5.0929999351501465,2.5910000801086426,0.0,24.30649948120117 -6742,2017-04-07 22:00:00,29.23500061035156,7.119999885559082,27.82399940490723,5.710000038146973,1.4709999561309814,0.0,23.86750030517578 -6743,2017-04-07 23:00:00,24.54400062561035,5.696000099182129,23.214000701904297,4.63700008392334,1.6100000143051147,0.0,22.98850059509277 -6744,2017-04-08 00:00:00,24.54400062561035,5.696000099182129,23.42799949645996,4.797999858856201,1.3329999446868896,0.0,22.54850006103516 -6745,2017-04-08 01:00:00,23.95800018310547,5.863999843597412,22.65099906921387,4.7709999084472665,1.63100004196167,0.0,22.54850006103516 -6746,2017-04-08 02:00:00,25.04700088500977,6.2829999923706055,23.48200035095215,5.1469998359680185,1.3220000267028809,0.0,22.10950088500977 -6747,2017-04-08 03:00:00,26.972999572753903,6.86899995803833,25.59900093078613,5.683000087738037,1.4179999828338623,0.0,21.66950035095215 -6748,2017-04-08 04:00:00,26.88999938964844,6.7849998474121085,25.59900093078613,5.576000213623047,1.3650000095367432,0.0,21.66950035095215 -6749,2017-04-08 05:00:00,26.80599975585937,7.119999885559082,25.357999801635746,6.031000137329103,1.343000054359436,0.0,21.66950035095215 -6750,2017-04-08 06:00:00,28.565000534057607,7.288000106811522,27.85099983215332,6.353000164031982,0.0,0.0,22.10950088500977 -6751,2017-04-08 07:00:00,28.062000274658203,7.706999778747559,27.26099967956543,6.6479997634887695,0.0,0.0,22.54850006103516 -6752,2017-04-08 08:00:00,28.062000274658203,7.874000072479247,27.395000457763672,6.7820000648498535,0.0,0.0,23.427499771118164 -6753,2017-04-08 09:00:00,29.56999969482422,7.874000072479247,28.41399955749512,6.6479997634887695,0.0,0.0,23.86750030517578 -6754,2017-04-08 10:00:00,29.23500061035156,7.203999996185303,28.386999130249023,5.978000164031982,0.0,0.0,24.965999603271484 -6755,2017-04-08 11:00:00,30.492000579833984,7.037000179290772,29.351999282836918,5.736000061035156,0.0,0.0,26.943500518798828 -6756,2017-04-08 12:00:00,33.92599868774414,8.208999633789062,33.15900039672852,6.728000164031982,0.0,0.0,30.23950004577637 -6757,2017-04-08 13:00:00,33.42300033569336,8.963000297546387,32.623001098632805,7.61299991607666,0.0,0.0,33.31549835205078 -6758,2017-04-08 14:00:00,35.0989990234375,9.800999641418455,34.472000122070305,8.444000244140625,0.0,0.0,35.95199966430664 -6759,2017-04-08 15:00:00,38.198001861572266,11.47599983215332,37.58200073242188,9.99899959564209,0.0,0.0,36.83100128173828 -6760,2017-04-08 16:00:00,45.23500061035156,14.576000213623049,44.60499954223633,12.383999824523926,0.0,0.0,35.51250076293945 -6761,2017-04-08 17:00:00,48.16699981689453,15.413000106811523,46.6150016784668,12.866999626159668,1.2899999618530271,0.0,33.974498748779304 -6762,2017-04-08 18:00:00,47.66400146484375,15.329999923706056,45.73099899291992,12.545000076293944,1.3329999446868896,0.0,31.77750015258789 -6763,2017-04-08 19:00:00,41.13000106811523,11.309000015258787,39.61899948120117,9.274999618530272,1.3539999723434448,0.0,30.23900032043457 -6764,2017-04-08 20:00:00,48.25,15.496999740600586,46.5620002746582,12.894000053405762,1.8550000190734863,0.0,29.140499114990234 -6765,2017-04-08 21:00:00,48.75299835205078,15.83199977874756,46.9640007019043,12.946999549865724,1.866000056266785,0.0,28.26149940490723 -6766,2017-04-08 22:00:00,46.2400016784668,14.241000175476074,44.81900024414063,11.821000099182127,1.3009999990463257,0.0,24.965999603271484 -6767,2017-04-08 23:00:00,42.63800048828125,13.821999549865724,40.95899963378906,11.579999923706056,1.2790000438690186,0.0,23.20800018310547 -6768,2017-04-09 00:00:00,40.29199981689453,12.39799976348877,40.07500076293945,10.829999923706056,1.4290000200271606,0.0,22.10950088500977 -6769,2017-04-09 01:00:00,38.44900131225586,11.810999870300291,37.1259994506836,10.159000396728516,1.375,0.0,19.6924991607666 -6770,2017-04-09 02:00:00,41.96799850463867,12.984000205993652,40.79800033569336,11.312000274658203,1.4290000200271606,0.0,19.25300025939941 -6771,2017-04-09 03:00:00,39.0359992980957,12.145999908447266,38.52000045776367,10.668999671936035,0.0,0.0,18.813499450683597 -6772,2017-04-09 04:00:00,40.87900161743164,12.39799976348877,39.512001037597656,10.31999969482422,1.493000030517578,0.0,18.15449905395508 -6773,2017-04-09 05:00:00,38.617000579833984,11.895000457763672,36.80400085449219,10.024999618530272,1.375,0.0,17.714500427246094 -6774,2017-04-09 06:00:00,42.88899993896485,13.402999877929688,42.56800079345703,11.579999923706056,0.0,0.0,17.27549934387207 -6775,2017-04-09 07:00:00,40.71099853515625,12.899999618530272,39.99399948120117,10.90999984741211,1.3109999895095823,0.0,17.27549934387207 -6776,2017-04-09 08:00:00,43.2239990234375,13.152000427246096,42.40700149536133,10.989999771118164,0.0,0.0,17.055500030517578 -6777,2017-04-09 09:00:00,44.81600189208984,13.654000282287598,44.229000091552734,11.579999923706056,0.0,0.0,17.714500427246094 -6778,2017-04-09 10:00:00,48.83700180053711,15.83199977874756,47.7140007019043,13.00100040435791,0.0,0.0,18.5935001373291 -6779,2017-04-09 11:00:00,48.584999084472656,14.91100025177002,47.98199844360352,12.652000427246096,1.3539999723434448,0.0,19.25300025939941 -6780,2017-04-09 12:00:00,44.81600189208984,13.152000427246096,43.66699981689453,10.829999923706056,0.0,0.0,20.35149955749512 -6781,2017-04-09 13:00:00,43.64300155639648,13.152000427246096,42.72800064086914,10.829999923706056,0.0,0.0,21.01099967956543 -6782,2017-04-09 14:00:00,48.16699981689453,15.748000144958494,47.09799957275391,13.321999549865724,0.0,0.0,21.230499267578125 -6783,2017-04-09 15:00:00,47.41299819946289,15.664999961853027,46.64199829101562,13.21500015258789,0.0,0.0,21.230499267578125 -6784,2017-04-09 16:00:00,47.58000183105469,14.743000030517578,46.66899871826172,12.437999725341797,0.0,0.0,20.57150077819824 -6785,2017-04-09 17:00:00,49.84199905395508,14.994000434875488,48.35800170898438,12.303999900817873,1.6419999599456787,0.0,20.35149955749512 -6786,2017-04-09 18:00:00,48.66899871826172,14.743000030517578,46.90999984741211,12.277000427246096,1.4609999656677246,0.0,20.131999969482425 -6787,2017-04-09 19:00:00,42.1349983215332,11.140999794006348,40.15499877929688,8.845999717712402,1.4609999656677246,0.0,19.912500381469727 -6788,2017-04-09 20:00:00,43.89400100708008,12.815999984741213,42.24599838256836,10.508000373840332,1.4179999828338623,0.0,19.6924991607666 -6789,2017-04-09 21:00:00,47.915000915527344,14.91100025177002,46.07899856567383,12.25,1.4179999828338623,0.0,19.6924991607666 -6790,2017-04-09 22:00:00,46.071998596191406,14.994000434875488,43.80099868774414,12.491000175476074,1.406999945640564,0.0,19.47249984741211 -6791,2017-04-09 23:00:00,43.72700119018555,14.241000175476074,42.084999084472656,12.008999824523926,1.7269999980926514,0.0,17.495000839233402 -6792,2017-04-10 00:00:00,36.02000045776367,10.973999977111816,34.553001403808594,9.16800022125244,1.343000054359436,0.0,16.396499633789062 -6793,2017-04-10 01:00:00,41.88399887084961,13.402999877929688,40.63800048828125,11.446000099182127,1.2150000333786009,0.0,15.517499923706056 -6794,2017-04-10 02:00:00,41.632999420166016,13.654000282287598,40.28900146484375,11.71399974822998,1.6100000143051147,0.0,15.078499794006348 -6795,2017-04-10 03:00:00,40.54399871826172,13.319000244140623,39.27000045776367,11.204999923706056,1.63100004196167,0.0,14.638500213623049 -6796,2017-04-10 04:00:00,39.874000549316406,12.984000205993652,38.22499847412109,10.96399974822998,1.2790000438690186,0.0,14.19950008392334 -6797,2017-04-10 05:00:00,39.62200164794922,12.229999542236328,38.198001861572266,10.267000198364258,1.4500000476837158,0.0,14.418999671936035 -6798,2017-04-10 06:00:00,44.56499862670898,13.654000282287598,43.07699966430664,11.71399974822998,1.246999979019165,0.0,14.85849952697754 -6799,2017-04-10 07:00:00,47.1609992980957,14.994000434875488,45.32899856567383,12.46500015258789,1.375,0.0,15.29800033569336 -6800,2017-04-10 08:00:00,39.70600128173828,11.140999794006348,39.72600173950195,9.729999542236328,0.0,0.0,15.737500190734863 -6801,2017-04-10 09:00:00,43.72700119018555,14.743000030517578,44.04199981689453,13.00100040435791,0.0,0.0,16.177000045776367 -6802,2017-04-10 10:00:00,41.632999420166016,10.220000267028809,41.68299865722656,8.711999893188478,0.0,0.0,17.104499816894528 -6803,2017-04-10 11:00:00,44.900001525878906,12.062999725341797,45.43600082397461,10.347000122070312,0.0,0.0,17.544000625610348 -6804,2017-04-10 12:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,18.42300033569336 -6805,2017-04-10 13:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,18.64249992370605 -6806,2017-04-10 14:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,18.42300033569336 -6807,2017-04-10 15:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,15.566499710083008 -6808,2017-04-10 16:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,13.149499893188477 -6809,2017-04-10 17:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,11.171500205993652 -6810,2017-04-10 18:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.853500366210938 -6811,2017-04-10 19:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.194499969482422 -6812,2017-04-10 20:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,8.315500259399414 -6813,2017-04-10 21:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,7.875999927520753 -6814,2017-04-10 22:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,7.6564998626708975 -6815,2017-04-10 23:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,7.436500072479247 -6816,2017-04-11 00:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.997000217437744 -6817,2017-04-11 01:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.997000217437744 -6818,2017-04-11 02:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.776999950408936 -6819,2017-04-11 03:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.557499885559082 -6820,2017-04-11 04:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.3375000953674325 -6821,2017-04-11 05:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.118000030517577 -6822,2017-04-11 06:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.118000030517577 -6823,2017-04-11 07:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.118000030517577 -6824,2017-04-11 08:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.118000030517577 -6825,2017-04-11 09:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,6.777500152587893 -6826,2017-04-11 10:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,8.315500259399414 -6827,2017-04-11 11:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,10.95199966430664 -6828,2017-04-11 12:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,12.929499626159668 -6829,2017-04-11 13:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,14.248499870300291 -6830,2017-04-11 14:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,14.906999588012695 -6831,2017-04-11 15:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,14.906999588012695 -6832,2017-04-11 16:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,14.906999588012695 -6833,2017-04-11 17:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,14.028499603271484 -6834,2017-04-11 18:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,13.369500160217283 -6835,2017-04-11 19:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,12.490500450134276 -6836,2017-04-11 20:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,11.611499786376951 -6837,2017-04-11 21:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,11.171500205993652 -6838,2017-04-11 22:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,10.732500076293944 -6839,2017-04-11 23:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,10.512499809265137 -6840,2017-04-12 00:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,10.292499542236328 -6841,2017-04-12 01:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.853500366210938 -6842,2017-04-12 02:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.853500366210938 -6843,2017-04-12 03:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.41450023651123 -6844,2017-04-12 04:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.41450023651123 -6845,2017-04-12 05:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,8.974499702453613 -6846,2017-04-12 06:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,8.974499702453613 -6847,2017-04-12 07:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,8.974499702453613 -6848,2017-04-12 08:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.41450023651123 -6849,2017-04-12 09:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,11.171500205993652 -6850,2017-04-12 10:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,15.78600025177002 -6851,2017-04-12 11:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,15.78600025177002 -6852,2017-04-12 12:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,23.647499084472656 -6853,2017-04-12 13:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,25.18549919128418 -6854,2017-04-12 14:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,27.38249969482422 -6855,2017-04-12 15:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,28.26149940490723 -6856,2017-04-12 16:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,26.723499298095703 -6857,2017-04-12 17:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,24.965999603271484 -6858,2017-04-12 18:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,22.54850006103516 -6859,2017-04-12 19:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,20.35149955749512 -6860,2017-04-12 20:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,18.15399932861328 -6861,2017-04-12 21:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,16.395999908447266 -6862,2017-04-12 22:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,14.418999671936035 -6863,2017-04-12 23:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,12.66100025177002 -6864,2017-04-13 00:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,11.562000274658203 -6865,2017-04-13 01:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,10.684000015258787 -6866,2017-04-13 02:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.80500030517578 -6867,2017-04-13 03:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,8.925999641418457 -6868,2017-04-13 04:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,8.486000061035156 -6869,2017-04-13 05:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,7.827000141143799 -6870,2017-04-13 06:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,7.168000221252441 -6871,2017-04-13 07:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,7.168000221252441 -6872,2017-04-13 08:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,9.585000038146973 -6873,2017-04-13 09:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,13.320500373840332 -6874,2017-04-13 10:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,19.25300025939941 -6875,2017-04-13 11:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,24.30649948120117 -6876,2017-04-13 12:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,27.602500915527344 -6877,2017-04-13 13:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,30.019500732421875 -6878,2017-04-13 14:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,33.09600067138672 -6879,2017-04-13 15:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,33.974498748779304 -6880,2017-04-13 16:00:00,50.68000030517578,0.0,50.66299819946289,0.0,0.0,0.0,32.43650054931641 -6881,2017-04-13 17:00:00,50.68000030517578,-18.68000030517578,50.66299819946289,0.0,0.0,-19.24399948120117,30.019500732421875 -6882,2017-04-13 18:00:00,45.90499877929688,5.947999954223633,45.91799926757813,13.241999626159668,0.0,-31.46199989318848,27.62700080871582 -6883,2017-04-13 19:00:00,44.48099899291992,5.276999950408936,44.65800094604492,12.812999725341797,0.0,-31.46199989318848,25.64949989318848 -6884,2017-04-13 20:00:00,45.23500061035156,5.863999843597412,45.43600082397461,13.348999977111816,0.0,-31.46199989318848,23.89150047302246 -6885,2017-04-13 21:00:00,47.66400146484375,6.198999881744385,47.79499816894531,13.402999877929688,0.0,-31.46199989318848,22.792999267578125 -6886,2017-04-13 22:00:00,44.81600189208984,5.78000020980835,44.95299911499024,13.187999725341797,0.0,-31.46199989318848,22.35350036621093 -6887,2017-04-13 23:00:00,42.80500030517578,4.941999912261963,42.99599838256836,12.437999725341797,0.0,-31.46199989318848,22.13400077819824 -6888,2017-04-14 00:00:00,43.391998291015625,5.445000171661377,43.34500122070313,13.053999900817873,0.0,-31.46199989318848,21.694000244140625 -6889,2017-04-14 01:00:00,44.39699935913086,6.533999919891357,44.47100067138672,14.072999954223633,0.0,-31.46199989318848,21.694000244140625 -6890,2017-04-14 02:00:00,43.2239990234375,6.366000175476074,43.04999923706055,13.725000381469728,0.0,-31.46199989318848,21.91399955749512 -6891,2017-04-14 03:00:00,43.72700119018555,6.2829999923706055,43.935001373291016,13.697999954223633,0.0,-31.46199989318848,22.35350036621093 -6892,2017-04-14 04:00:00,42.1349983215332,5.276999950408936,42.32600021362305,12.812999725341797,0.0,-31.46199989318848,22.572999954223643 -6893,2017-04-14 05:00:00,43.72700119018555,5.947999954223633,43.854000091552734,13.37600040435791,0.0,-31.46199989318848,22.572999954223643 -6894,2017-04-14 06:00:00,46.071998596191406,7.203999996185303,46.26699829101562,14.58199977874756,0.0,-31.46199989318848,22.572999954223643 -6895,2017-04-14 07:00:00,43.97800064086914,5.276999950408936,43.82699966430664,12.706000328063965,0.0,-31.46199989318848,23.232500076293945 -6896,2017-04-14 08:00:00,40.79499816894531,0.0,40.90599822998047,11.043999671936035,0.0,-31.46199989318848,24.99049949645996 -6897,2017-04-14 09:00:00,41.29800033569336,0.0,41.65599822998047,11.553000450134276,0.0,-31.46199989318848,27.1875 -6898,2017-04-14 10:00:00,33.088001251220696,0.0,33.292999267578125,7.077000141143799,0.0,-31.46199989318848,30.04400062561035 -6899,2017-04-14 11:00:00,32.417999267578125,0.0,32.40800094604492,6.486999988555907,0.0,-31.46199989318848,33.11999893188477 -6900,2017-04-14 12:00:00,39.0359992980957,0.0,39.29700088500977,9.381999969482422,0.0,-31.46199989318848,35.537498474121094 -6901,2017-04-14 13:00:00,42.05199813842773,4.60699987411499,42.21900177001953,12.142999649047852,0.0,-31.46199989318848,37.07550048828125 -6902,2017-04-14 14:00:00,42.47000122070313,5.276999950408936,42.67499923706055,12.946999549865724,0.0,-31.46199989318848,39.053001403808594 -6903,2017-04-14 15:00:00,0.0,-9.21399974822998,45.94499969482422,0.0,0.0,-31.46199989318848,40.1515007019043 -6904,2017-04-14 16:00:00,0.0,-9.633000373840332,45.94499969482422,0.0,0.0,-31.46199989318848,38.83300018310547 -6905,2017-04-14 17:00:00,0.0,-9.717000007629396,45.94499969482422,0.0,0.0,-31.46199989318848,37.73450088500977 -6906,2017-04-14 18:00:00,0.0,-9.550000190734863,45.94499969482422,0.0,0.0,-31.46199989318848,36.41600036621094 -6907,2017-04-14 19:00:00,0.0,-9.800999641418455,45.94499969482422,0.0,0.0,-31.46199989318848,34.21900177001953 -6908,2017-04-14 20:00:00,0.0,-9.800999641418455,45.94499969482422,0.0,0.0,-31.46199989318848,32.021499633789055 -6909,2017-04-14 21:00:00,0.0,-9.465999603271484,45.94499969482422,0.0,0.0,-31.46199989318848,29.82399940490723 -6910,2017-04-14 22:00:00,0.0,-9.21399974822998,45.94499969482422,0.0,0.0,-31.46199989318848,28.506000518798828 -6911,2017-04-14 23:00:00,0.0,-8.963000297546387,45.94499969482422,0.0,1.3539999723434448,-31.46199989318848,27.62700080871582 -6912,2017-04-15 00:00:00,0.0,-9.381999969482422,45.94499969482422,0.0,0.0,-31.46199989318848,26.74799919128418 -6913,2017-04-15 01:00:00,0.0,-9.381999969482422,45.94499969482422,0.0,0.0,-31.46199989318848,25.64949989318848 -6914,2017-04-15 02:00:00,0.0,-9.381999969482422,45.94499969482422,0.0,0.0,-31.46199989318848,24.55100059509277 -6915,2017-04-15 03:00:00,0.0,-9.381999969482422,45.94499969482422,0.0,0.0,-31.46199989318848,23.67200088500977 -6916,2017-04-15 04:00:00,0.0,-9.381999969482422,45.94499969482422,0.0,0.0,-31.46199989318848,23.01300048828125 -6917,2017-04-15 05:00:00,0.0,-9.381999969482422,45.94499969482422,0.0,0.0,-31.46199989318848,22.572999954223643 -6918,2017-04-15 06:00:00,0.0,-9.465999603271484,45.94499969482422,0.0,0.0,-31.46199989318848,22.13400077819824 -6919,2017-04-15 07:00:00,0.0,-9.465999603271484,45.94499969482422,0.0,0.0,-31.46199989318848,21.91399955749512 -6920,2017-04-15 08:00:00,0.0,-9.465999603271484,45.94499969482422,0.0,0.0,-31.46199989318848,24.77050018310547 -6921,2017-04-15 09:00:00,0.0,-8.963000297546387,45.94499969482422,0.0,0.0,-31.46199989318848,28.06649971008301 -6922,2017-04-15 10:00:00,0.0,-8.208999633789062,45.94499969482422,0.0,2.719000101089477,-31.46199989318848,32.68050003051758 -6923,2017-04-15 11:00:00,0.0,-8.293000221252441,45.94499969482422,0.0,2.719000101089477,-31.46199989318848,37.07550048828125 -6924,2017-04-15 12:00:00,0.0,-8.293000221252441,45.94499969482422,0.0,2.719000101089477,-31.46199989318848,40.1515007019043 -6925,2017-04-15 13:00:00,42.97299957275391,0.0,42.64799880981445,10.989999771118164,0.0,-31.46199989318848,42.56800079345703 -6926,2017-04-15 14:00:00,48.08300018310547,0.0,42.56800079345703,4.584000110626222,5.500999927520752,-31.46199989318848,45.42499923706055 -6927,2017-04-15 15:00:00,45.23500061035156,4.188000202178955,40.07500076293945,8.95300006866455,5.330999851226807,-31.46199989318848,46.52349853515625 -6928,2017-04-15 16:00:00,48.25,6.031000137329103,43.45199966430664,11.178000450134276,5.330999851226807,-31.46199989318848,45.20500183105469 -6929,2017-04-15 17:00:00,47.58000183105469,5.445000171661377,42.00500106811523,10.07900047302246,5.330999851226807,-31.46199989318848,43.227500915527344 -6930,2017-04-15 18:00:00,49.42300033569336,6.533999919891357,43.98799896240234,11.043999671936035,5.415999889373778,-31.46199989318848,41.46950149536133 -6931,2017-04-15 19:00:00,49.3390007019043,6.031000137329103,43.23799896240234,10.401000022888184,5.1599998474121085,-31.46199989318848,38.61299896240234 -6932,2017-04-15 20:00:00,49.67399978637695,6.701000213623048,44.47100067138672,11.472999572753904,4.989999771118164,-31.46199989318848,36.41600036621094 -6933,2017-04-15 21:00:00,49.25600051879883,6.953000068664551,42.00500106811523,10.588000297546388,6.566999912261963,-31.46199989318848,35.09749984741211 -6934,2017-04-15 22:00:00,48.33399963378906,7.203999996185303,41.60300064086914,11.258000373840332,6.566999912261963,-31.46199989318848,33.77899932861328 -6935,2017-04-15 23:00:00,44.900001525878906,4.60699987411499,39.94100189208984,9.623000144958496,5.298999786376953,-31.46199989318848,33.11999893188477 -6936,2017-04-16 00:00:00,45.48600006103516,5.947999954223633,39.94100189208984,10.776000022888184,5.298999786376953,-31.46199989318848,32.24100112915039 -6937,2017-04-16 01:00:00,41.71599960327149,4.355999946594238,36.5359992980957,9.729999542236328,5.235000133514403,-31.46199989318848,31.80200004577637 -6938,2017-04-16 02:00:00,42.1349983215332,0.0,36.858001708984375,9.354999542236328,5.235000133514403,-31.46199989318848,31.36199951171875 -6939,2017-04-16 03:00:00,42.47000122070313,4.2719998359680185,37.18000030517578,9.56999969482422,4.626999855041504,-31.46199989318848,30.702999114990234 -6940,2017-04-16 04:00:00,40.29199981689453,0.0,36.858001708984375,9.54300022125244,3.059999942779541,-31.46199989318848,29.82399940490723 -6941,2017-04-16 05:00:00,40.29199981689453,0.0,36.80400085449219,9.16800022125244,3.059999942779541,-31.46199989318848,29.38500022888184 -6942,2017-04-16 06:00:00,41.38100051879883,0.0,38.59999847412109,9.838000297546388,3.0380001068115234,-31.46199989318848,29.165000915527344 -6943,2017-04-16 07:00:00,41.88399887084961,0.0,38.65399932861328,10.37399959564209,4.317999839782715,-31.46199989318848,28.94499969482422 -6944,2017-04-16 08:00:00,41.2140007019043,0.0,37.39400100708008,8.765000343322754,4.201000213623047,-31.46199989318848,29.60449981689453 -6945,2017-04-16 09:00:00,45.23500061035156,4.859000205993652,40.66400146484375,10.508000373840332,4.201000213623047,-31.46199989318848,31.582000732421875 -6946,2017-04-16 10:00:00,43.2239990234375,0.0,39.18999862670898,9.140999794006348,4.201000213623047,-31.46199989318848,34.877498626708984 -6947,2017-04-16 11:00:00,43.391998291015625,0.0,40.23500061035156,8.630999565124513,4.201000213623047,-31.46199989318848,38.83300018310547 -6948,2017-04-16 12:00:00,43.89400100708008,0.0,40.47700119018555,8.578000068664549,4.201000213623047,-31.46199989318848,41.46950149536133 -6949,2017-04-16 13:00:00,45.23500061035156,4.440000057220459,40.74499893188477,9.623000144958496,4.201000213623047,-31.46199989318848,43.007999420166016 -6950,2017-04-16 14:00:00,46.40700149536133,5.026000022888184,41.81700134277344,10.29300022125244,4.201000213623047,-31.46199989318848,44.76549911499024 -6951,2017-04-16 15:00:00,43.391998291015625,0.0,40.12799835205078,9.32800006866455,2.984999895095825,-31.46199989318848,44.10649871826172 -6952,2017-04-16 16:00:00,45.23500061035156,4.2719998359680185,41.62900161743164,9.890999794006348,2.984999895095825,-31.46199989318848,42.12900161743164 -6953,2017-04-16 17:00:00,47.32899856567383,4.5229997634887695,42.67499923706055,9.32800006866455,4.2109999656677255,-31.46199989318848,40.81050109863281 -6954,2017-04-16 18:00:00,46.15599822998047,0.0,41.81700134277344,8.711999893188478,4.264999866485597,-31.46199989318848,39.492000579833984 -6955,2017-04-16 19:00:00,45.73699951171875,0.0,40.61100006103516,8.496999740600586,5.554999828338623,-31.46199989318848,38.39350128173828 -6956,2017-04-16 20:00:00,50.09299850463867,6.366000175476074,44.25600051879883,10.642000198364258,5.267000198364258,-31.46199989318848,37.73450088500977 -6957,2017-04-16 21:00:00,47.74800109863281,5.193999767303467,42.78200149536133,10.105999946594238,5.565000057220459,-31.46199989318848,37.07500076293945 -6958,2017-04-16 22:00:00,47.1609992980957,5.863999843597412,41.57600021362305,10.855999946594238,5.980999946594237,-31.46199989318848,36.63600158691406 -6959,2017-04-16 23:00:00,43.47600173950195,0.0,37.87699890136719,9.11400032043457,5.948999881744385,-31.46199989318848,35.31700134277344 -6960,2017-04-17 00:00:00,42.387001037597656,4.355999946594238,37.84999847412109,9.729999542236328,4.690999984741211,-31.46199989318848,35.31700134277344 -6961,2017-04-17 01:00:00,39.37099838256836,0.0,35.625,9.006999969482422,4.59499979019165,-31.46199989318848,34.65850067138672 -6962,2017-04-17 02:00:00,41.29800033569336,0.0,37.1259994506836,9.56999969482422,4.59499979019165,-31.46199989318848,31.582000732421875 -6963,2017-04-17 03:00:00,39.37099838256836,0.0,35.49100112915039,8.578000068664549,3.1879999637603764,-31.46199989318848,31.36249923706055 -6964,2017-04-17 04:00:00,39.45500183105469,0.0,34.41899871826172,8.765000343322754,4.9790000915527335,-31.46199989318848,28.725500106811523 -6965,2017-04-17 05:00:00,37.69599914550781,0.0,32.67599868774414,7.585999965667725,4.85099983215332,-31.46199989318848,26.089000701904297 -6966,2017-04-17 06:00:00,38.28200149536133,0.0,35.16899871826172,8.657999992370605,4.178999900817871,-31.46199989318848,24.77050018310547 -6967,2017-04-17 07:00:00,48.16699981689453,6.2829999923706055,37.68899917602539,8.791999816894531,10.576000213623049,-31.46199989318848,24.99049949645996 -6968,2017-04-17 08:00:00,47.24499893188477,6.86899995803833,36.5629997253418,8.845999717712402,10.395000457763672,-31.46199989318848,25.64949989318848 -6969,2017-04-17 09:00:00,43.97800064086914,6.2829999923706055,34.87400054931641,9.16800022125244,9.32900047302246,-31.46199989318848,26.74799919128418 -6970,2017-04-17 10:00:00,44.900001525878906,5.193999767303467,35.25,7.585999965667725,9.32900047302246,-31.46199989318848,29.38450050354004 -6971,2017-04-17 11:00:00,46.49100112915039,5.863999843597412,37.608001708984375,8.630999565124513,9.32900047302246,-31.46199989318848,31.80150032043457 -6972,2017-04-17 12:00:00,93.65299987792967,22.36599922180176,37.608001708984375,20.29199981689453,6.84499979019165,-31.46199989318848,34.438499450683594 -6973,2017-04-17 13:00:00,93.48500061035156,24.62800025939941,37.608001708984375,21.49799919128418,8.12399959564209,-31.46199989318848,36.19649887084961 -6974,2017-04-17 14:00:00,95.74700164794922,26.88999938964844,37.608001708984375,21.631999969482425,9.307000160217283,-31.46199989318848,38.61299896240234 -6975,2017-04-17 15:00:00,97.58999633789062,30.65900039672852,37.608001708984375,25.840999603271484,10.543999671936035,-31.46199989318848,41.03049850463867 -6976,2017-04-17 16:00:00,97.84100341796876,29.98900032043457,37.608001708984375,25.518999099731445,10.223999977111816,-31.46199989318848,41.47000122070313 -6977,2017-04-17 17:00:00,99.93499755859376,29.738000869750977,37.608001708984375,25.38500022888184,11.557000160217283,-31.46199989318848,41.47000122070313 -6978,2017-04-17 18:00:00,102.28099822998048,30.90999984741211,37.608001708984375,25.54599952697754,14.13700008392334,-31.46199989318848,41.25 -6979,2017-04-17 19:00:00,101.77799987792967,29.15099906921387,37.608001708984375,23.32099914550781,14.553000450134276,-31.46199989318848,41.25 -6980,2017-04-17 20:00:00,104.70999908447266,31.2450008392334,37.608001708984375,25.30500030517578,13.347999572753904,-31.46199989318848,40.59049987792969 -6981,2017-04-17 21:00:00,106.88800048828124,33.17200088500977,37.608001708984375,25.840999603271484,14.819000244140623,-31.46199989318848,40.37099838256836 -6982,2017-04-17 22:00:00,107.89299774169922,36.43899917602539,37.608001708984375,28.73600006103516,14.755000114440918,-31.46199989318848,40.37099838256836 -6983,2017-04-17 23:00:00,100.85700225830078,31.832000732421875,37.608001708984375,25.38500022888184,14.819000244140623,-31.46199989318848,40.37099838256836 -6984,2017-04-18 00:00:00,96.66799926757812,30.239999771118164,37.608001708984375,25.46500015258789,13.604000091552734,-31.46199989318848,39.71149826049805 -6985,2017-04-18 01:00:00,95.9980010986328,30.99399948120117,37.608001708984375,26.457000732421875,12.590999603271484,-31.46199989318848,38.83300018310547 -6986,2017-04-18 02:00:00,95.3280029296875,30.32399940490723,37.608001708984375,25.09000015258789,13.77400016784668,-31.46199989318848,38.39350128173828 -6987,2017-04-18 03:00:00,98.1760025024414,31.58099937438965,37.608001708984375,26.29599952697754,13.902000427246096,-31.46199989318848,37.73450088500977 -6988,2017-04-18 04:00:00,92.06099700927734,29.98900032043457,37.608001708984375,26.16200065612793,12.590999603271484,-31.46199989318848,37.07550048828125 -6989,2017-04-18 05:00:00,96.2490005493164,30.492000579833984,37.608001708984375,25.625999450683597,13.017999649047852,-31.46199989318848,36.19649887084961 -6990,2017-04-18 06:00:00,97.84100341796876,29.65399932861328,37.608001708984375,25.03700065612793,13.763999938964846,-31.46199989318848,35.756500244140625 -6991,2017-04-18 07:00:00,94.99299621582033,28.39699935913086,37.608001708984375,24.607999801635746,12.494999885559082,-31.46199989318848,35.756500244140625 -6992,2017-04-18 08:00:00,95.24400329589844,30.32399940490723,37.608001708984375,25.76000022888184,11.354000091552734,-31.46199989318848,37.07550048828125 -6993,2017-04-18 09:00:00,98.59500122070312,32.75299835205078,37.608001708984375,28.68199920654297,10.138999938964844,-31.46199989318848,38.83300018310547 -6994,2017-04-18 10:00:00,85.02400207519531,19.099000930786133,75.72599792480469,17.451000213623047,8.817000389099121,-31.46199989318848,41.02999877929688 -6995,2017-04-18 11:00:00,93.81999969482422,23.53899955749512,83.68800354003906,19.80900001525879,10.064000129699709,-31.46199989318848,42.78799819946289 -6996,2017-04-18 12:00:00,93.98799896240234,24.041000366210927,85.08100128173828,21.57900047302246,8.625,-31.46199989318848,44.98550033569336 -6997,2017-04-18 13:00:00,97.84100341796876,28.81599998474121,88.16400146484375,24.52700042724609,8.668000221252441,-31.46199989318848,46.74300003051758 -6998,2017-04-18 14:00:00,94.90899658203124,28.229999542236328,84.5989990234375,24.097999572753903,9.755000114440918,-31.46199989318848,48.28099822998047 -6999,2017-04-18 15:00:00,92.7310028076172,24.795000076293945,82.91000366210938,21.49799919128418,9.392999649047852,-31.46199989318848,48.94049835205078 -7000,2017-04-18 16:00:00,97.25499725341795,27.895000457763672,86.74299621582031,23.267000198364247,10.746999740600586,-31.46199989318848,48.5009994506836 -7001,2017-04-18 17:00:00,105.71499633789062,30.82699966430664,93.2300033569336,24.420000076293945,10.479999542236328,-31.46199989318848,47.62200164794922 -7002,2017-04-18 18:00:00,102.28099822998048,27.308000564575195,89.63800048828125,21.73900032043457,13.46500015258789,-31.46199989318848,46.74349975585938 -7003,2017-04-18 19:00:00,102.36399841308594,27.726999282836918,88.11000061035156,21.069000244140625,13.487000465393065,-31.46199989318848,45.86449813842773 -7004,2017-04-18 20:00:00,103.4530029296875,30.65900039672852,88.96800231933594,22.51700019836425,14.722999572753904,-31.46199989318848,45.20500183105469 -7005,2017-04-18 21:00:00,105.5479965209961,31.16200065612793,91.3000030517578,23.50900077819824,14.14799976348877,-31.46199989318848,43.887001037597656 -7006,2017-04-18 22:00:00,101.5270004272461,30.82699966430664,87.70800018310547,24.25900077819824,12.378000259399414,-31.46199989318848,42.3489990234375 -7007,2017-04-18 23:00:00,99.68399810791016,29.40299987792969,85.61799621582031,22.99900054931641,13.848999977111816,-31.46199989318848,40.81050109863281 -7008,2017-04-19 00:00:00,96.08200073242188,29.15099906921387,80.5780029296875,22.757999420166016,15.875,-31.46199989318848,39.272499084472656 -7009,2017-04-19 01:00:00,98.59500122070312,32.250999450683594,81.89199829101562,24.982999801635746,17.218000411987305,-31.46199989318848,38.39350128173828 -7010,2017-04-19 02:00:00,98.00900268554688,32.669998168945305,80.73899841308594,25.54599952697754,16.812999725341793,-31.46199989318848,37.29499816894531 -7011,2017-04-19 03:00:00,95.16000366210938,30.40800094604492,78.59400177001953,24.23200035095215,16.364999771118164,-31.46199989318848,36.635501861572266 -7012,2017-04-19 04:00:00,96.33300018310548,31.74799919128418,80.87300109863281,25.492000579833984,15.31999969482422,-31.46199989318848,36.41600036621094 -7013,2017-04-19 05:00:00,92.98200225830078,28.565000534057607,78.37999725341797,23.69599914550781,15.118000030517578,-31.46199989318848,35.97650146484375 -7014,2017-04-19 06:00:00,94.90899658203124,27.22500038146973,79.50599670410156,22.32900047302246,15.074999809265137,-31.46199989318848,35.97650146484375 -7015,2017-04-19 07:00:00,88.70999908447266,24.375999450683597,76.66400146484375,21.604999542236328,11.07699966430664,-31.46199989318848,36.41600036621094 -7016,2017-04-19 08:00:00,90.13400268554688,25.29800033569336,78.88899993896484,21.57900047302246,10.71500015258789,-31.46199989318848,37.29499816894531 -7017,2017-04-19 09:00:00,93.48500061035156,27.895000457763672,83.95600128173828,25.250999450683597,9.4350004196167,-31.46199989318848,37.73450088500977 -7018,2017-04-19 10:00:00,91.13999938964844,23.95800018310547,81.00700378417969,21.12299919128418,9.4350004196167,-31.46199989318848,39.93149948120117 -7019,2017-04-19 11:00:00,95.24400329589844,25.88400077819824,85.322998046875,22.83799934387207,9.4350004196167,-31.46199989318848,41.46950149536133 -7020,2017-04-19 12:00:00,95.74700164794922,26.88999938964844,85.88600158691406,23.29400062561035,9.4350004196167,-31.46199989318848,43.227500915527344 -7021,2017-04-19 13:00:00,96.91999816894533,29.90500068664551,86.69000244140625,25.59900093078613,9.350000381469728,-31.46199989318848,43.887001037597656 -7022,2017-04-19 14:00:00,94.23899841308594,29.56999969482422,83.66100311279297,25.357999801635746,10.66100025177002,-31.46199989318848,44.10649871826172 -7023,2017-04-19 15:00:00,97.1709976196289,30.239999771118164,87.27999877929688,26.108999252319336,10.725000381469728,-31.46199989318848,44.32600021362305 -7024,2017-04-19 16:00:00,97.58999633789062,30.40800094604492,85.93900299072266,25.68000030517578,10.725000381469728,-31.46199989318848,46.08399963378906 -7025,2017-04-19 17:00:00,103.28600311279295,30.743000030517567,90.33499908447266,25.492000579833984,11.717000007629396,-31.46199989318848,45.86449813842773 -7026,2017-04-19 18:00:00,97.50599670410156,26.30299949645996,85.56400299072266,21.71299934387207,12.111000061035154,-31.46199989318848,45.42449951171875 -7027,2017-04-19 19:00:00,100.85700225830078,27.392000198364247,88.2979965209961,21.57900047302246,13.284000396728516,-31.46199989318848,44.76549911499024 -7028,2017-04-19 20:00:00,56.125,11.5600004196167,88.2979965209961,11.633999824523926,13.529000282287598,-31.46199989318848,42.78850173950195 -7029,2017-04-19 21:00:00,45.98899841308594,5.193999767303467,88.2979965209961,10.937000274658203,5.1599998474121085,-31.46199989318848,40.59049987792969 -7030,2017-04-19 22:00:00,45.48600006103516,7.372000217437744,88.2979965209961,12.920000076293944,4.829999923706055,-31.46199989318848,38.61299896240234 -7031,2017-04-19 23:00:00,47.07799911499024,7.706999778747559,88.2979965209961,12.571999549865724,4.85099983215332,-31.46199989318848,34.438499450683594 -7032,2017-04-20 00:00:00,44.0620002746582,7.037000179290772,88.2979965209961,13.027999877929688,4.670000076293945,-31.46199989318848,33.77899932861328 -7033,2017-04-20 01:00:00,43.14099884033203,5.611999988555908,88.2979965209961,11.204999923706056,4.74399995803833,-31.46199989318848,33.34000015258789 -7034,2017-04-20 02:00:00,43.391998291015625,5.611999988555908,88.2979965209961,11.418999671936035,4.573999881744385,-31.46199989318848,32.46099853515625 -7035,2017-04-20 03:00:00,41.2140007019043,4.60699987411499,88.2979965209961,10.776000022888184,4.434999942779541,-31.46199989318848,31.582000732421875 -7036,2017-04-20 04:00:00,41.79999923706055,5.026000022888184,88.2979965209961,11.579999923706056,4.434999942779541,-31.46199989318848,31.14249992370605 -7037,2017-04-20 05:00:00,44.14599990844727,6.114999771118164,88.2979965209961,12.196999549865724,4.616000175476074,-31.46199989318848,30.48349952697754 -7038,2017-04-20 06:00:00,42.88899993896485,4.859000205993652,88.2979965209961,11.902000427246096,4.616000175476074,-31.46199989318848,29.82399940490723 -7039,2017-04-20 07:00:00,43.55899810791016,4.859000205993652,88.2979965209961,11.526000022888184,4.616000175476074,-31.46199989318848,28.50550079345703 -7040,2017-04-20 08:00:00,42.303001403808594,4.5229997634887695,88.2979965209961,11.579999923706056,4.616000175476074,-31.46199989318848,28.945499420166016 -7041,2017-04-20 09:00:00,43.64300155639648,5.110000133514403,88.2979965209961,12.678999900817873,3.16599988937378,-31.46199989318848,30.04400062561035 -7042,2017-04-20 10:00:00,50.26100158691406,7.288000106811522,88.2979965209961,12.678999900817873,4.381999969482422,-31.46199989318848,30.702999114990234 -7043,2017-04-20 11:00:00,44.81600189208984,4.105000019073486,88.2979965209961,10.31999969482422,5.607999801635742,-31.46199989318848,31.36249923706055 -7044,2017-04-20 12:00:00,44.56499862670898,4.355999946594238,88.2979965209961,10.29300022125244,5.5970001220703125,-31.46199989318848,33.77949905395508 -7045,2017-04-20 13:00:00,44.48099899291992,5.445000171661377,88.2979965209961,10.642000198364258,5.565000057220459,-31.46199989318848,34.65800094604492 -7046,2017-04-20 14:00:00,43.81100082397461,5.78000020980835,88.2979965209961,11.12399959564209,5.565000057220459,-31.46199989318848,34.65850067138672 -7047,2017-04-20 15:00:00,42.72200012207031,4.690999984741211,88.2979965209961,10.937000274658203,4.339000225067139,-31.46199989318848,33.55950164794922 -7048,2017-04-20 16:00:00,45.23500061035156,5.52899980545044,88.2979965209961,11.392000198364258,4.339000225067139,-31.46199989318848,32.900501251220696 -7049,2017-04-20 17:00:00,46.74300003051758,5.110000133514403,88.2979965209961,11.232000350952148,4.339000225067139,-31.46199989318848,32.021499633789055 -7050,2017-04-20 18:00:00,46.32400131225586,4.5229997634887695,88.2979965209961,10.74899959564209,4.254000186920166,-31.46199989318848,31.36199951171875 -7051,2017-04-20 19:00:00,40.62699890136719,0.0,88.2979965209961,9.381999969482422,3.0280001163482666,-31.46199989318848,30.702999114990234 -7052,2017-04-20 20:00:00,40.87900161743164,0.0,88.2979965209961,9.972000122070312,3.0280001163482666,-31.46199989318848,30.04400062561035 -7053,2017-04-20 21:00:00,44.900001525878906,4.60699987411499,88.2979965209961,11.446000099182127,3.0280001163482666,-31.46199989318848,29.82399940490723 -7054,2017-04-20 22:00:00,43.47600173950195,4.2719998359680185,88.2979965209961,11.607000350952148,3.0280001163482666,-31.46199989318848,29.38500022888184 -7055,2017-04-20 23:00:00,43.89400100708008,4.690999984741211,88.2979965209961,12.008999824523926,3.0280001163482666,-31.46199989318848,28.94499969482422 -7056,2017-04-21 00:00:00,41.96799850463867,0.0,88.2979965209961,11.579999923706056,3.0280001163482666,-31.46199989318848,28.506000518798828 -7057,2017-04-21 01:00:00,40.54399871826172,0.0,88.2979965209961,10.614999771118164,3.0280001163482666,-31.46199989318848,27.84700012207031 -7058,2017-04-21 02:00:00,35.349998474121094,0.0,88.2979965209961,8.604999542236326,4.275000095367432,-31.46199989318848,27.62700080871582 -7059,2017-04-21 03:00:00,41.54899978637695,4.941999912261963,88.2979965209961,11.043999671936035,3.049000024795532,-31.46199989318848,27.40699958801269 -7060,2017-04-21 04:00:00,41.46500015258789,5.361000061035156,88.2979965209961,11.178000450134276,4.275000095367432,-31.46199989318848,26.968000411987305 -7061,2017-04-21 05:00:00,39.790000915527344,4.440000057220459,88.2979965209961,10.45400047302246,4.275000095367432,-31.46199989318848,26.74799919128418 -7062,2017-04-21 06:00:00,43.30799865722656,4.440000057220459,88.2979965209961,10.989999771118164,4.285999774932861,-31.46199989318848,26.30850028991699 -7063,2017-04-21 07:00:00,44.56499862670898,5.52899980545044,88.2979965209961,12.008999824523926,4.285999774932861,-31.46199989318848,26.089000701904297 -7064,2017-04-21 08:00:00,43.391998291015625,5.276999950408936,88.2979965209961,11.472999572753904,4.307000160217285,-31.46199989318848,27.40749931335449 -7065,2017-04-21 09:00:00,41.79999923706055,4.105000019073486,88.2979965209961,10.07900047302246,5.576000213623047,-31.46199989318848,29.38500022888184 -7066,2017-04-21 10:00:00,41.71599960327149,0.0,88.2979965209961,7.960999965667725,6.9190001487731925,-31.46199989318848,31.582000732421875 -7067,2017-04-21 11:00:00,42.1349983215332,0.0,88.2979965209961,8.604999542236326,5.703999996185303,-31.46199989318848,33.99900054931641 -7068,2017-04-21 12:00:00,44.39699935913086,4.440000057220459,88.2979965209961,10.105999946594238,4.455999851226807,-31.46199989318848,33.99900054931641 -7069,2017-04-21 13:00:00,37.61199951171875,0.0,88.2979965209961,8.604999542236326,4.446000099182129,-31.46199989318848,33.99900054931641 -7070,2017-04-21 14:00:00,43.89400100708008,5.026000022888184,88.2979965209961,11.097999572753906,4.552000045776367,-31.46199989318848,34.438499450683594 -7071,2017-04-21 15:00:00,42.80500030517578,4.60699987411499,88.2979965209961,10.829999923706056,4.552000045776367,-31.46199989318848,33.55950164794922 -7072,2017-04-21 16:00:00,42.387001037597656,4.188000202178955,88.2979965209961,10.133000373840332,5.777999877929688,-31.46199989318848,32.241500854492195 -7073,2017-04-21 17:00:00,47.58000183105469,5.52899980545044,88.2979965209961,10.69499969482422,7.046999931335449,-31.46199989318848,30.92250061035156 -7074,2017-04-21 18:00:00,44.983001708984375,4.60699987411499,88.2979965209961,10.588000297546388,5.415999889373778,-31.46199989318848,29.60449981689453 -7075,2017-04-21 19:00:00,45.73699951171875,4.690999984741211,88.2979965209961,10.31999969482422,6.73799991607666,-31.46199989318848,28.50550079345703 -7076,2017-04-21 20:00:00,48.83700180053711,6.618000030517577,88.2979965209961,11.66100025177002,6.727000236511231,-31.46199989318848,27.84650039672852 -7077,2017-04-21 21:00:00,49.17200088500977,7.037000179290772,88.2979965209961,12.303999900817873,5.51200008392334,-31.46199989318848,27.40749931335449 -7078,2017-04-21 22:00:00,48.66899871826172,7.789999961853027,88.2979965209961,13.053999900817873,4.947000026702881,-31.46199989318848,27.1875 -7079,2017-04-21 23:00:00,46.82600021362305,7.037000179290772,88.2979965209961,12.03600025177002,6.204999923706055,-31.46199989318848,26.968000411987305 -7080,2017-04-22 00:00:00,45.56999969482422,6.7849998474121085,88.2979965209961,12.571999549865724,4.9679999351501465,-31.46199989318848,26.52799987792969 -7081,2017-04-22 01:00:00,43.55899810791016,5.445000171661377,88.2979965209961,10.668999671936035,6.236999988555907,-31.46199989318848,26.089000701904297 -7082,2017-04-22 02:00:00,44.0620002746582,6.031000137329103,88.2979965209961,11.392000198364258,6.28000020980835,-31.46199989318848,24.77050018310547 -7083,2017-04-22 03:00:00,44.48099899291992,5.78000020980835,88.2979965209961,11.553000450134276,5.043000221252441,-31.46199989318848,23.89150047302246 -7084,2017-04-22 04:00:00,38.95199966430664,0.0,88.2979965209961,10.024999618530272,5.043000221252441,-31.46199989318848,23.01300048828125 -7085,2017-04-22 05:00:00,44.229000091552734,6.198999881744385,88.2979965209961,11.982000350952148,5.043000221252441,-31.46199989318848,22.13400077819824 -7086,2017-04-22 06:00:00,44.983001708984375,5.110000133514403,88.2979965209961,11.633999824523926,3.82699990272522,-31.46199989318848,21.2549991607666 -7087,2017-04-22 07:00:00,42.387001037597656,0.0,88.2979965209961,9.94499969482422,5.074999809265137,-31.46199989318848,21.03499984741211 -7088,2017-04-22 08:00:00,42.80500030517578,0.0,88.2979965209961,9.11400032043457,6.289999961853027,-31.46199989318848,23.232500076293945 -7089,2017-04-22 09:00:00,42.303001403808594,0.0,88.2979965209961,9.034000396728516,4.74399995803833,-31.46199989318848,26.30850028991699 -7090,2017-04-22 10:00:00,43.81100082397461,4.440000057220459,88.2979965209961,10.69499969482422,3.507999897003174,-31.46199989318848,30.26350021362305 -7091,2017-04-22 11:00:00,48.08300018310547,5.696000099182129,88.2979965209961,11.607000350952148,4.797999858856201,-31.46199989318848,33.34000015258789 -7092,2017-04-22 12:00:00,44.900001525878906,0.0,88.2979965209961,10.31999969482422,3.5820000171661377,-31.46199989318848,33.77899932861328 -7093,2017-04-22 13:00:00,46.40700149536133,5.611999988555908,88.2979965209961,11.418999671936035,4.7230000495910645,-31.46199989318848,35.317501068115234 -7094,2017-04-22 14:00:00,44.56499862670898,5.110000133514403,88.2979965209961,11.017000198364258,4.7230000495910645,-31.46199989318848,35.317501068115234 -7095,2017-04-22 15:00:00,43.47600173950195,4.775000095367432,88.2979965209961,10.855999946594238,4.7230000495910645,-31.46199989318848,37.07500076293945 -7096,2017-04-22 16:00:00,47.58000183105469,6.2829999923706055,88.2979965209961,11.902000427246096,4.7230000495910645,-31.46199989318848,35.97650146484375 -7097,2017-04-22 17:00:00,46.40700149536133,5.026000022888184,88.2979965209961,10.427000045776367,5.960000038146973,-31.46199989318848,33.55950164794922 -7098,2017-04-22 18:00:00,44.56499862670898,4.355999946594238,88.2979965209961,10.45400047302246,4.59499979019165,-31.46199989318848,32.021499633789055 -7099,2017-04-22 19:00:00,46.74300003051758,4.859000205993652,88.2979965209961,10.989999771118164,4.59499979019165,-31.46199989318848,30.04400062561035 -7100,2017-04-22 20:00:00,47.49599838256836,4.690999984741211,88.2979965209961,10.776000022888184,5.809999942779541,-31.46199989318848,28.06649971008301 -7101,2017-04-22 21:00:00,49.0880012512207,6.86899995803833,88.2979965209961,12.437999725341797,4.894000053405762,-31.46199989318848,26.52799987792969 -7102,2017-04-22 22:00:00,46.82600021362305,6.618000030517577,88.2979965209961,12.116000175476074,4.894000053405762,-31.46199989318848,25.43000030517578 -7103,2017-04-22 23:00:00,44.56499862670898,5.193999767303467,88.2979965209961,11.232000350952148,4.872000217437744,-31.46199989318848,24.77050018310547 -7104,2017-04-23 00:00:00,44.229000091552734,6.2829999923706055,88.2979965209961,12.331000328063965,4.935999870300293,-31.46199989318848,23.89150047302246 -7105,2017-04-23 01:00:00,43.72700119018555,5.445000171661377,88.2979965209961,11.312000274658203,6.22599983215332,-31.46199989318848,23.01300048828125 -7106,2017-04-23 02:00:00,44.56499862670898,5.611999988555908,88.2979965209961,10.90999984741211,5.8420000076293945,-31.46199989318848,22.13400077819824 -7107,2017-04-23 03:00:00,44.56499862670898,5.52899980545044,88.2979965209961,11.017000198364258,4.616000175476074,-31.46199989318848,21.2549991607666 -7108,2017-04-23 04:00:00,43.89400100708008,6.533999919891357,88.2979965209961,11.795000076293944,5.874000072479247,-31.46199989318848,20.81550025939941 -7109,2017-04-23 05:00:00,45.06700134277344,6.114999771118164,88.2979965209961,11.366000175476074,5.831999778747559,-31.46199989318848,19.936500549316406 -7110,2017-04-23 06:00:00,44.64799880981445,6.701000213623048,88.2979965209961,12.62600040435791,4.414000034332275,-31.46199989318848,19.936500549316406 -7111,2017-04-23 07:00:00,46.40700149536133,7.454999923706055,88.2979965209961,12.706000328063965,5.874000072479247,-31.46199989318848,20.59600067138672 -7112,2017-04-23 08:00:00,40.54399871826172,4.355999946594238,88.2979965209961,10.29300022125244,4.6589999198913565,-31.46199989318848,22.792999267578125 -7113,2017-04-23 09:00:00,42.88899993896485,5.361000061035156,88.2979965209961,11.902000427246096,3.433000087738037,-31.46199989318848,25.64949989318848 -7114,2017-04-23 10:00:00,47.58000183105469,7.454999923706055,88.2979965209961,12.78600025177002,4.787000179290772,-31.46199989318848,29.165000915527344 -7115,2017-04-23 11:00:00,45.06700134277344,4.105000019073486,88.2979965209961,9.54300022125244,4.755000114440918,-31.46199989318848,32.900501251220696 -7116,2017-04-23 12:00:00,44.81600189208984,0.0,88.2979965209961,9.595999717712402,4.755000114440918,-31.46199989318848,34.65850067138672 -7117,2017-04-23 13:00:00,46.071998596191406,5.110000133514403,88.2979965209961,10.642000198364258,4.755000114440918,-31.46199989318848,36.41600036621094 -7118,2017-04-23 14:00:00,41.46500015258789,0.0,88.2979965209961,8.845999717712402,4.755000114440918,-31.46199989318848,39.27199935913086 -7119,2017-04-23 15:00:00,45.23500061035156,4.5229997634887695,88.2979965209961,10.07900047302246,4.755000114440918,-31.46199989318848,40.37099838256836 -7120,2017-04-23 16:00:00,44.56499862670898,5.193999767303467,88.2979965209961,10.722000122070312,4.755000114440918,-31.46199989318848,38.61349868774414 -7121,2017-04-23 17:00:00,48.584999084472656,7.288000106811522,88.2979965209961,12.437999725341797,5.980999946594237,-31.46199989318848,36.41600036621094 -7122,2017-04-23 18:00:00,47.24499893188477,5.863999843597412,88.2979965209961,12.277000427246096,4.531000137329102,-31.46199989318848,34.65800094604492 -7123,2017-04-23 19:00:00,45.82099914550781,5.78000020980835,88.2979965209961,11.28499984741211,5.8959999084472665,-31.46199989318848,32.900501251220696 -7124,2017-04-23 20:00:00,48.50199890136719,7.288000106811522,88.2979965209961,12.678999900817873,4.59499979019165,-31.46199989318848,30.702999114990234 -7125,2017-04-23 21:00:00,48.66899871826172,7.539000034332275,88.2979965209961,12.437999725341797,6.109000205993652,-31.46199989318848,29.60449981689453 -7126,2017-04-23 22:00:00,47.83200073242188,7.874000072479247,88.2979965209961,12.946999549865724,5.800000190734862,-31.46199989318848,28.725500106811523 -7127,2017-04-23 23:00:00,40.54399871826172,4.2719998359680185,88.2979965209961,10.776000022888184,5.40500020980835,-31.46199989318848,28.28650093078613 -7128,2017-04-24 00:00:00,42.387001037597656,5.947999954223633,88.2979965209961,11.633999824523926,5.085000038146973,-31.46199989318848,27.40749931335449 -7129,2017-04-24 01:00:00,39.874000549316406,4.775000095367432,88.2979965209961,10.883000373840332,4.894000053405762,-31.46199989318848,26.96750068664551 -7130,2017-04-24 02:00:00,42.387001037597656,5.863999843597412,88.2979965209961,11.902000427246096,4.947000026702881,-31.46199989318848,26.528499603271484 -7131,2017-04-24 03:00:00,42.21900177001953,4.5229997634887695,88.2979965209961,10.722000122070312,4.584000110626222,-31.46199989318848,26.08849906921387 -7132,2017-04-24 04:00:00,43.30799865722656,5.947999954223633,88.2979965209961,12.222999572753904,4.9679999351501465,-31.46199989318848,25.64949989318848 -7133,2017-04-24 05:00:00,43.30799865722656,5.947999954223633,88.2979965209961,11.928999900817873,4.9679999351501465,-31.46199989318848,25.209999084472656 -7134,2017-04-24 06:00:00,42.05199813842773,5.193999767303467,88.2979965209961,12.25,4.882999897003174,-31.46199989318848,24.77050018310547 -7135,2017-04-24 07:00:00,45.98899841308594,6.449999809265138,88.2979965209961,12.84000015258789,5.0219998359680185,-31.46199989318848,24.989999771118164 -7136,2017-04-24 08:00:00,45.1510009765625,5.445000171661377,88.2979965209961,11.017000198364258,5.980999946594237,-31.46199989318848,26.30850028991699 -7137,2017-04-24 09:00:00,46.90999984741211,8.125,88.2979965209961,13.269000053405762,4.765999794006348,-31.46199989318848,28.725500106811523 -7138,2017-04-24 10:00:00,49.75799942016602,9.717000007629396,88.2979965209961,9.810999870300291,13.0600004196167,-31.46199989318848,31.80200004577637 -7139,2017-04-24 11:00:00,52.77399826049805,-9.381999969482422,88.2979965209961,8.470999717712402,14.222000122070312,-21.451000213623047,35.756500244140625 -7140,2017-04-24 12:00:00,44.14599990844727,0.0,88.2979965209961,9.649999618530272,3.390000104904175,-28.15699958801269,37.51449966430664 -7141,2017-04-24 13:00:00,44.64799880981445,13.821999549865724,88.2979965209961,10.267000198364258,4.638000011444092,-28.15699958801269,39.0525016784668 -7142,2017-04-24 14:00:00,45.06700134277344,14.156999588012695,88.2979965209961,10.239999771118164,4.626999855041504,-28.15699958801269,42.12900161743164 -7143,2017-04-24 15:00:00,43.89400100708008,13.487000465393065,88.2979965209961,10.052000045776367,4.638000011444092,-28.15699958801269,42.56850051879883 -7144,2017-04-24 16:00:00,45.73699951171875,15.07800006866455,88.2979965209961,11.28499984741211,4.638000011444092,-28.15699958801269,40.59049987792969 -7145,2017-04-24 17:00:00,47.07799911499024,15.07800006866455,88.2979965209961,10.133000373840332,6.301000118255615,-28.15699958801269,38.83300018310547 -7146,2017-04-24 18:00:00,43.2239990234375,12.64900016784668,88.2979965209961,10.159000396728516,3.838000059127808,-28.15699958801269,37.51449966430664 -7147,2017-04-24 19:00:00,42.55400085449219,12.64900016784668,88.2979965209961,9.729999542236328,3.838000059127808,-28.15699958801269,35.5369987487793 -7148,2017-04-24 20:00:00,42.47000122070313,12.229999542236328,88.2979965209961,10.133000373840332,1.7910000085830688,-28.15699958801269,33.77899932861328 -7149,2017-04-24 21:00:00,40.62699890136719,11.810999870300291,88.2979965209961,8.899999618530273,1.7910000085830688,-28.15699958801269,32.46099853515625 -7150,2017-04-24 22:00:00,43.47600173950195,13.821999549865724,88.2979965209961,10.69499969482422,1.7910000085830688,-28.15699958801269,32.021499633789055 -7151,2017-04-24 23:00:00,37.77899932861328,11.810999870300291,88.2979965209961,9.94499969482422,0.0,-28.15699958801269,31.80150032043457 -7152,2017-04-25 00:00:00,39.70600128173828,13.234999656677244,88.2979965209961,11.526000022888184,0.0,-28.15699958801269,31.36249923706055 -7153,2017-04-25 01:00:00,41.46500015258789,13.821999549865724,88.2979965209961,10.722000122070312,2.6440000534057617,-28.15699958801269,30.92250061035156 -7154,2017-04-25 02:00:00,43.55899810791016,10.13599967956543,88.2979965209961,5.065999984741211,3.88100004196167,-28.15699958801269,30.702999114990234 -7155,2017-04-25 03:00:00,43.05699920654297,17.423999786376953,88.2979965209961,11.875,2.5910000801086426,-28.15699958801269,30.48349952697754 -7156,2017-04-25 04:00:00,39.70600128173828,17.256000518798828,88.2979965209961,11.902000427246096,1.343000054359436,-28.15699958801269,30.48349952697754 -7157,2017-04-25 05:00:00,35.60100173950195,15.07800006866455,88.2979965209961,10.937000274658203,0.0,-28.15699958801269,30.26350021362305 -7158,2017-04-25 06:00:00,40.20899963378906,15.664999961853027,88.2979965209961,10.96399974822998,0.0,-28.15699958801269,30.043500900268555 -7159,2017-04-25 07:00:00,38.03099822998047,16.334999084472653,88.2979965209961,11.366000175476074,-1.22599995136261,-28.15699958801269,29.82399940490723 -7160,2017-04-25 08:00:00,35.26599884033203,13.821999549865724,88.2979965209961,8.845999717712402,-1.3220000267028809,-28.15699958801269,30.92300033569336 -7161,2017-04-25 09:00:00,39.62200164794922,16.753999710083008,88.2979965209961,11.71399974822998,-2.622999906539917,-28.15699958801269,32.46099853515625 -7162,2017-04-25 10:00:00,34.68000030517578,12.899999618530272,88.2979965209961,8.470999717712402,-2.622999906539917,-28.15699958801269,33.77899932861328 -7163,2017-04-25 11:00:00,37.36100006103516,13.904999732971191,88.2979965209961,9.140999794006348,-2.622999906539917,-28.15699958801269,34.21900177001953 -7164,2017-04-25 12:00:00,36.104000091552734,13.904999732971191,88.2979965209961,10.239999771118164,-3.954999923706055,-28.15699958801269,34.438499450683594 -7165,2017-04-25 13:00:00,30.99399948120117,14.156999588012695,88.2979965209961,10.024999618530272,-6.557000160217285,-28.15699958801269,34.87799835205078 -7166,2017-04-25 14:00:00,30.743000030517567,8.963000297546387,88.2979965209961,11.526000022888184,-9.1899995803833,-28.15699958801269,35.75699996948242 -7167,2017-04-25 15:00:00,32.75299835205078,9.550000190734863,88.2979965209961,11.097999572753906,-6.610000133514402,-28.15699958801269,35.31700134277344 -7168,2017-04-25 16:00:00,34.512001037597656,10.470999717712402,88.2979965209961,11.982000350952148,-6.84499979019165,-28.15699958801269,34.438499450683594 -7169,2017-04-25 17:00:00,36.02000045776367,9.717000007629396,88.2979965209961,11.446000099182127,-5.500999927520752,-28.15699958801269,33.55950164794922 -7170,2017-04-25 18:00:00,35.014999389648445,9.800999641418455,88.2979965209961,12.170000076293944,-9.585000038146973,-28.15699958801269,32.46099853515625 -7171,2017-04-25 19:00:00,31.496999740600582,7.874000072479247,88.2979965209961,10.347000122070312,-9.562999725341797,-28.15699958801269,31.14249992370605 -7172,2017-04-25 20:00:00,33.25600051879883,8.963000297546387,88.2979965209961,11.017000198364258,-8.315999984741211,-28.15699958801269,28.06649971008301 -7173,2017-04-25 21:00:00,35.685001373291016,10.973999977111816,88.2979965209961,12.946999549865724,-8.315999984741211,-28.15699958801269,26.968000411987305 -7174,2017-04-25 22:00:00,32.669998168945305,9.800999641418455,88.2979965209961,12.383999824523926,-9.605999946594238,-28.15699958801269,26.30850028991699 -7175,2017-04-25 23:00:00,30.743000030517567,8.963000297546387,88.2979965209961,11.741000175476074,-9.690999984741213,-28.15699958801269,25.86949920654297 -7176,2017-04-26 00:00:00,26.88999938964844,8.041999816894531,88.2979965209961,11.12399959564209,-10.843000411987305,-28.15699958801269,26.30850028991699 -7177,2017-04-26 01:00:00,26.47100067138672,7.372000217437744,88.2979965209961,10.69499969482422,-9.605999946594238,-28.15699958801269,25.64949989318848 -7178,2017-04-26 02:00:00,27.22500038146973,7.623000144958496,88.2979965209961,10.480999946594238,-9.371000289916992,-28.15699958801269,25.86899948120117 -7179,2017-04-26 03:00:00,23.790000915527344,6.533999919891357,88.2979965209961,9.91800022125244,-10.68299961090088,-28.15699958801269,24.989999771118164 -7180,2017-04-26 04:00:00,24.125,6.618000030517577,88.2979965209961,10.024999618530272,-10.756999969482422,-28.15699958801269,24.989999771118164 -7181,2017-04-26 05:00:00,26.2189998626709,7.706999778747559,88.2979965209961,11.043999671936035,-10.756999969482422,-28.15699958801269,24.989999771118164 -7182,2017-04-26 06:00:00,27.726999282836918,7.958000183105469,88.2979965209961,10.829999923706056,-9.520999908447266,-28.15699958801269,24.989999771118164 -7183,2017-04-26 07:00:00,25.968000411987305,6.953000068664551,88.2979965209961,9.54300022125244,-8.369000434875487,-28.15699958801269,24.989999771118164 -7184,2017-04-26 08:00:00,26.88999938964844,5.947999954223633,88.2979965209961,9.006999969482422,-9.605999946594238,-28.15699958801269,24.989999771118164 -7185,2017-04-26 09:00:00,31.32900047302246,8.795999526977539,88.2979965209961,11.741000175476074,-9.531000137329102,-28.15699958801269,25.43000030517578 -7186,2017-04-26 10:00:00,22.95199966430664,0.0,88.2979965209961,7.34499979019165,-11.003000259399414,-28.15699958801269,25.86899948120117 -7187,2017-04-26 11:00:00,28.39699935913086,6.114999771118164,88.2979965209961,9.54300022125244,-9.680999755859377,-28.15699958801269,27.1875 -7188,2017-04-26 12:00:00,28.899999618530277,6.198999881744385,88.2979965209961,9.70400047302246,-9.755000114440918,-28.15699958801269,28.94499969482422 -7189,2017-04-26 13:00:00,27.726999282836918,7.623000144958496,88.2979965209961,11.418999671936035,-12.29300022125244,-28.15699958801269,30.702999114990234 -7190,2017-04-26 14:00:00,29.56999969482422,8.125,88.2979965209961,11.5,-11.055999755859377,-28.15699958801269,31.14249992370605 -7191,2017-04-26 15:00:00,29.066999435424805,7.037000179290772,88.2979965209961,10.401000022888184,-9.786999702453612,-28.15699958801269,29.82399940490723 -7192,2017-04-26 16:00:00,32.08300018310547,8.208999633789062,88.2979965209961,11.097999572753906,-8.61400032043457,-28.15699958801269,29.82399940490723 -7193,2017-04-26 17:00:00,30.1560001373291,6.366000175476074,88.2979965209961,9.56999969482422,-8.710000038146973,-28.15699958801269,29.38500022888184 -7194,2017-04-26 18:00:00,31.66399955749512,8.628000259399414,88.2979965209961,11.795000076293944,-9.989999771118164,-28.15699958801269,28.506000518798828 -7195,2017-04-26 19:00:00,34.59600067138672,8.878999710083008,88.2979965209961,11.017000198364258,-7.515999794006348,-28.15699958801269,27.62700080871582 -7196,2017-04-26 20:00:00,31.74799919128418,8.461000442504883,88.2979965209961,11.472999572753904,-10.0,-28.15699958801269,27.1875 -7197,2017-04-26 21:00:00,32.08300018310547,9.130999565124512,88.2979965209961,12.008999824523926,-10.0,-28.15699958801269,26.74799919128418 -7198,2017-04-26 22:00:00,27.64299964904785,7.623000144958496,88.2979965209961,11.472999572753904,-11.215999603271484,-28.15699958801269,26.089000701904297 -7199,2017-04-26 23:00:00,30.072999954223643,8.461000442504883,88.2979965209961,11.5,-9.958000183105469,-28.15699958801269,25.64949989318848 -7200,2017-04-27 00:00:00,28.81599998474121,8.461000442504883,88.2979965209961,11.472999572753904,-10.053999900817873,-28.15699958801269,25.209999084472656 -7201,2017-04-27 01:00:00,12.899999618530272,0.0,88.2979965209961,5.763000011444093,-10.053999900817873,-28.15699958801269,24.33099937438965 -7202,2017-04-27 02:00:00,12.815999984741213,0.0,88.2979965209961,5.5219998359680185,-10.031999588012695,-28.15699958801269,23.45199966430664 -7203,2017-04-27 03:00:00,12.984000205993652,0.0,88.2979965209961,5.710000038146973,-10.053999900817873,-28.15699958801269,22.792999267578125 -7204,2017-04-27 04:00:00,11.895000457763672,0.0,88.2979965209961,5.0929999351501465,-8.784999847412111,-28.15699958801269,21.694000244140625 -7205,2017-04-27 05:00:00,11.392000198364258,0.0,88.2979965209961,4.502999782562256,-10.074999809265137,-28.15699958801269,21.2549991607666 -7206,2017-04-27 06:00:00,14.743000030517578,0.0,88.2979965209961,5.414999961853027,-10.074999809265137,-28.15699958801269,20.81550025939941 -7207,2017-04-27 07:00:00,28.565000534057607,7.789999961853027,88.2979965209961,11.553000450134276,-10.342000007629396,-28.15699958801269,20.81550025939941 -7208,2017-04-27 08:00:00,25.214000701904297,5.026000022888184,88.2979965209961,9.649999618530272,-11.727999687194824,-28.15699958801269,23.232500076293945 -7209,2017-04-27 09:00:00,30.90999984741211,9.550000190734863,88.2979965209961,12.03600025177002,-10.416000366210938,-28.15699958801269,26.968000411987305 -7210,2017-04-27 10:00:00,26.63800048828125,5.696000099182129,88.2979965209961,8.550999641418457,-10.416000366210938,-28.15699958801269,30.26350021362305 -7211,2017-04-27 11:00:00,28.31399917602539,6.86899995803833,88.2979965209961,9.729999542236328,-11.727999687194824,-28.15699958801269,34.21900177001953 -7212,2017-04-27 12:00:00,29.319000244140625,7.623000144958496,88.2979965209961,10.427000045776367,-11.727999687194824,-28.15699958801269,36.19649887084961 -7213,2017-04-27 13:00:00,28.39699935913086,8.376999855041504,88.2979965209961,11.097999572753906,-11.73799991607666,-28.15699958801269,37.29499816894531 -7214,2017-04-27 14:00:00,28.64900016784668,8.293000221252441,88.2979965209961,11.151000022888184,-10.416000366210938,-28.15699958801269,36.635501861572266 -7215,2017-04-27 15:00:00,27.97900009155273,8.376999855041504,88.2979965209961,11.12399959564209,-11.642000198364258,-28.15699958801269,38.39350128173828 -7216,2017-04-27 16:00:00,31.413000106811523,8.711999893188478,88.2979965209961,10.508000373840332,-8.965999603271484,-28.15699958801269,36.19599914550781 -7217,2017-04-27 17:00:00,27.895000457763672,7.706999778747559,88.2979965209961,10.267000198364258,-11.428999900817873,-28.15699958801269,34.438499450683594 -7218,2017-04-27 18:00:00,27.895000457763672,7.789999961853027,88.2979965209961,10.588000297546388,-11.472000122070312,-28.15699958801269,33.11999893188477 -7219,2017-04-27 19:00:00,28.481000900268555,7.372000217437744,88.2979965209961,9.48900032043457,-10.19200038909912,-28.15699958801269,30.92300033569336 -7220,2017-04-27 20:00:00,31.916000366210927,9.717000007629396,88.2979965209961,11.954999923706056,-10.19200038909912,-28.15699958801269,28.94499969482422 -7221,2017-04-27 21:00:00,30.40800094604492,9.130999565124512,88.2979965209961,11.472999572753904,-11.407999992370604,-28.15699958801269,27.1875 -7222,2017-04-27 22:00:00,30.072999954223643,9.29800033569336,88.2979965209961,11.741000175476074,-11.407999992370604,-28.15699958801269,25.86899948120117 -7223,2017-04-27 23:00:00,29.48600006103516,9.968000411987305,88.2979965209961,12.116000175476074,-11.38599967956543,-28.15699958801269,24.55100059509277 -7224,2017-04-28 00:00:00,28.81599998474121,9.968000411987305,88.2979965209961,11.902000427246096,-10.128000259399414,-28.15699958801269,23.67200088500977 -7225,2017-04-28 01:00:00,29.23500061035156,9.465999603271484,88.2979965209961,11.5,-10.128000259399414,-28.15699958801269,22.792999267578125 -7226,2017-04-28 02:00:00,29.56999969482422,9.800999641418455,88.2979965209961,11.579999923706056,-8.869999885559082,-28.15699958801269,21.694000244140625 -7227,2017-04-28 03:00:00,27.392000198364247,8.628000259399414,88.2979965209961,10.614999771118164,-10.074999809265137,-28.15699958801269,20.81550025939941 -7228,2017-04-28 04:00:00,27.47599983215332,8.963000297546387,88.2979965209961,11.043999671936035,-8.795999526977539,-28.15699958801269,20.1560001373291 -7229,2017-04-28 05:00:00,26.55400085449219,9.04699993133545,88.2979965209961,11.204999923706056,-9.935999870300291,-28.15699958801269,19.496999740600582 -7230,2017-04-28 06:00:00,31.077999114990234,10.470999717712402,88.2979965209961,12.08899974822998,-8.689000129699707,-28.15699958801269,19.058000564575195 -7231,2017-04-28 07:00:00,28.145999908447266,9.130999565124512,88.2979965209961,11.418999671936035,-11.184000015258787,-28.15699958801269,19.71699905395508 -7232,2017-04-28 08:00:00,28.229999542236328,7.623000144958496,88.2979965209961,9.729999542236328,-11.184000015258787,-28.15699958801269,22.35350036621093 -7233,2017-04-28 09:00:00,29.48600006103516,9.04699993133545,88.2979965209961,11.902000427246096,-12.40999984741211,-28.15699958801269,25.86899948120117 -7234,2017-04-28 10:00:00,24.041000366210927,5.361000061035156,88.2979965209961,7.88100004196167,-11.194000244140623,-28.15699958801269,29.38450050354004 -7235,2017-04-28 11:00:00,27.559999465942383,6.198999881744385,88.2979965209961,8.845999717712402,-11.194000244140623,-28.15699958801269,33.34000015258789 -7236,2017-04-28 12:00:00,29.56999969482422,7.203999996185303,88.2979965209961,9.409000396728516,-9.979000091552734,-28.15699958801269,34.87799835205078 -7237,2017-04-28 13:00:00,26.72200012207031,7.539000034332275,88.2979965209961,9.99899959564209,-10.053999900817873,-28.15699958801269,36.41600036621094 -7238,2017-04-28 14:00:00,29.56999969482422,9.633000373840332,88.2979965209961,11.66100025177002,-10.053999900817873,-28.15699958801269,39.0525016784668 -7239,2017-04-28 15:00:00,26.47100067138672,8.376999855041504,88.2979965209961,10.937000274658203,-11.279999732971191,-28.15699958801269,39.71200180053711 -7240,2017-04-28 16:00:00,28.565000534057607,7.203999996185303,88.2979965209961,9.890999794006348,-11.279999732971191,-28.15699958801269,38.17399978637695 -7241,2017-04-28 17:00:00,31.077999114990234,7.539000034332275,88.2979965209961,9.274999618530272,-8.710000038146973,-28.15699958801269,35.756500244140625 -7242,2017-04-28 18:00:00,32.501998901367195,8.461000442504883,88.2979965209961,10.37399959564209,-10.04300022125244,-28.15699958801269,33.99900054931641 -7243,2017-04-28 19:00:00,28.64900016784668,6.114999771118164,88.2979965209961,8.496999740600586,-10.04300022125244,-28.15699958801269,32.241500854492195 -7244,2017-04-28 20:00:00,30.32399940490723,8.208999633789062,88.2979965209961,9.99899959564209,-10.04300022125244,-28.15699958801269,30.92250061035156 -7245,2017-04-28 21:00:00,32.333999633789055,9.04699993133545,88.2979965209961,10.722000122070312,-10.04300022125244,-28.15699958801269,30.043500900268555 -7246,2017-04-28 22:00:00,31.74799919128418,9.381999969482422,88.2979965209961,11.366000175476074,-10.04300022125244,-28.15699958801269,29.165000915527344 -7247,2017-04-28 23:00:00,27.559999465942383,7.203999996185303,88.2979965209961,9.274999618530272,-10.04300022125244,-28.15699958801269,28.506000518798828 -7248,2017-04-29 00:00:00,25.71699905395508,7.539000034332275,88.2979965209961,9.784000396728516,-10.04300022125244,-28.15699958801269,27.62700080871582 -7249,2017-04-29 01:00:00,25.548999786376957,7.372000217437744,88.2979965209961,9.972000122070312,-11.312000274658203,-28.15699958801269,26.96750068664551 -7250,2017-04-29 02:00:00,26.13599967956543,7.706999778747559,88.2979965209961,9.99899959564209,-10.064000129699709,-28.15699958801269,26.30850028991699 -7251,2017-04-29 03:00:00,23.28700065612793,6.953000068664551,88.2979965209961,9.595999717712402,-11.279999732971191,-28.15699958801269,25.43000030517578 -7252,2017-04-29 04:00:00,26.05200004577637,7.288000106811522,88.2979965209961,9.838000297546388,-9.713000297546388,-28.15699958801269,24.989999771118164 -7253,2017-04-29 05:00:00,23.95800018310547,6.7849998474121085,88.2979965209961,9.140999794006348,-11.03499984741211,-28.15699958801269,24.11100006103516 -7254,2017-04-29 06:00:00,27.726999282836918,7.789999961853027,88.2979965209961,9.864999771118164,-9.595000267028809,-28.15699958801269,23.67200088500977 -7255,2017-04-29 07:00:00,26.972999572753903,6.953000068664551,88.2979965209961,9.220999717712402,-9.595000267028809,-28.15699958801269,24.55100059509277 -7256,2017-04-29 08:00:00,24.795000076293945,5.361000061035156,88.2979965209961,7.559000015258789,-10.83199977874756,-28.15699958801269,26.30850028991699 -7257,2017-04-29 09:00:00,28.062000274658203,6.701000213623048,88.2979965209961,9.220999717712402,-10.843000411987305,-28.15699958801269,29.38450050354004 -7258,2017-04-29 10:00:00,32.58599853515625,9.29800033569336,88.2979965209961,11.633999824523926,-10.843000411987305,-28.15699958801269,32.46099853515625 -7259,2017-04-29 11:00:00,29.65399932861328,7.706999778747559,88.2979965209961,9.890999794006348,-10.843000411987305,-28.15699958801269,35.97650146484375 -7260,2017-04-29 12:00:00,26.13599967956543,5.52899980545044,88.2979965209961,8.14900016784668,-10.843000411987305,-28.15699958801269,37.95399856567383 -7261,2017-04-29 13:00:00,30.743000030517567,9.800999641418455,88.2979965209961,12.25,-9.616999626159668,-28.15699958801269,39.71149826049805 -7262,2017-04-29 14:00:00,30.65900039672852,8.963000297546387,88.2979965209961,11.071000099182127,-9.626999855041504,-28.15699958801269,42.12900161743164 -7263,2017-04-29 15:00:00,27.47599983215332,6.701000213623048,88.2979965209961,9.248000144958496,-10.86400032043457,-28.15699958801269,43.4474983215332 -7264,2017-04-29 16:00:00,25.29800033569336,5.276999950408936,88.2979965209961,7.747000217437744,-9.562999725341797,-28.15699958801269,41.68949890136719 -7265,2017-04-29 17:00:00,27.97900009155273,6.533999919891357,88.2979965209961,8.899999618530273,-9.562999725341797,-28.15699958801269,39.71149826049805 -7266,2017-04-29 18:00:00,30.57500076293945,7.623000144958496,88.2979965209961,9.972000122070312,-9.562999725341797,-28.15699958801269,37.954498291015625 -7267,2017-04-29 19:00:00,34.59600067138672,9.21399974822998,88.2979965209961,9.99899959564209,-5.821000099182129,-28.15699958801269,36.19649887084961 -7268,2017-04-29 20:00:00,37.277000427246094,10.470999717712402,88.2979965209961,10.989999771118164,-4.573999881744385,-28.15699958801269,33.77899932861328 -7269,2017-04-29 21:00:00,34.345001220703125,9.381999969482422,88.2979965209961,10.90999984741211,-7.026000022888184,-28.15699958801269,32.021499633789055 -7270,2017-04-29 22:00:00,32.669998168945305,8.711999893188478,88.2979965209961,9.595999717712402,-5.777999877929688,-28.15699958801269,30.92250061035156 -7271,2017-04-29 23:00:00,33.42300033569336,10.55500030517578,88.2979965209961,11.418999671936035,-5.703999996185303,-28.15699958801269,29.82399940490723 -7272,2017-04-30 00:00:00,30.40800094604492,10.38700008392334,88.2979965209961,11.821000099182127,-6.9190001487731925,-28.15699958801269,28.94499969482422 -7273,2017-04-30 01:00:00,30.1560001373291,8.963000297546387,88.2979965209961,10.37399959564209,-6.940999984741211,-28.15699958801269,28.506000518798828 -7274,2017-04-30 02:00:00,28.481000900268555,8.041999816894531,88.2979965209961,9.729999542236328,-6.940999984741211,-28.15699958801269,28.06649971008301 -7275,2017-04-30 03:00:00,30.743000030517567,9.04699993133545,88.2979965209961,10.427000045776367,-6.9730000495910645,-28.15699958801269,27.40749931335449 -7276,2017-04-30 04:00:00,30.1560001373291,9.465999603271484,88.2979965209961,10.560999870300291,-6.982999801635742,-28.15699958801269,27.1875 -7277,2017-04-30 05:00:00,30.32399940490723,8.963000297546387,88.2979965209961,10.239999771118164,-5.724999904632568,-28.15699958801269,25.86899948120117 -7278,2017-04-30 06:00:00,29.40299987792969,9.130999565124512,88.2979965209961,10.37399959564209,-7.005000114440918,-28.15699958801269,24.55100059509277 -7279,2017-04-30 07:00:00,29.48600006103516,7.874000072479247,88.2979965209961,9.70400047302246,-8.251999855041504,-28.15699958801269,24.55100059509277 -7280,2017-04-30 08:00:00,25.381999969482425,6.2829999923706055,88.2979965209961,8.604999542236326,-8.251999855041504,-28.15699958801269,27.40749931335449 -7281,2017-04-30 09:00:00,29.23500061035156,6.86899995803833,88.2979965209961,8.685000419616701,-8.230999946594237,-28.15699958801269,30.92250061035156 -7282,2017-04-30 10:00:00,29.738000869750977,6.86899995803833,88.2979965209961,8.36299991607666,-6.929999828338622,-28.15699958801269,34.438499450683594 -7283,2017-04-30 11:00:00,30.65900039672852,7.203999996185303,88.2979965209961,9.274999618530272,-8.220000267028809,-28.15699958801269,38.61299896240234 -7284,2017-04-30 12:00:00,31.16200065612793,7.539000034332275,88.2979965209961,9.354999542236328,-6.9619998931884775,-28.15699958801269,40.81100082397461 -7285,2017-04-30 13:00:00,31.32900047302246,7.874000072479247,88.2979965209961,9.729999542236328,-8.177000045776367,-28.15699958801269,42.56850051879883 -7286,2017-04-30 14:00:00,31.99900054931641,8.878999710083008,88.2979965209961,10.45400047302246,-6.951000213623048,-28.15699958801269,45.20500183105469 -7287,2017-04-30 15:00:00,32.501998901367195,8.461000442504883,88.2979965209961,9.677000045776367,-5.703999996185303,-28.15699958801269,46.08399963378906 -7288,2017-04-30 16:00:00,30.1560001373291,6.366000175476074,88.2979965209961,8.041999816894531,-6.929999828338622,-28.15699958801269,44.545501708984375 -7289,2017-04-30 17:00:00,30.1560001373291,6.366000175476074,88.2979965209961,7.559000015258789,-7.005000114440918,-28.15699958801269,42.3484992980957 -7290,2017-04-30 18:00:00,29.82099914550781,6.2829999923706055,88.2979965209961,7.3979997634887695,-4.584000110626222,-28.15699958801269,40.37099838256836 -7291,2017-04-30 19:00:00,31.077999114990234,6.449999809265138,88.2979965209961,7.692999839782715,-5.8959999084472665,-28.15699958801269,38.17399978637695 -7292,2017-04-30 20:00:00,30.072999954223643,6.2829999923706055,88.2979965209961,7.559000015258789,-5.938000202178955,-28.15699958801269,35.317501068115234 -7293,2017-04-30 21:00:00,31.74799919128418,6.953000068664551,88.2979965209961,8.444000244140625,-5.938000202178955,-28.15699958801269,33.34000015258789 -7294,2017-04-30 22:00:00,31.496999740600582,7.454999923706055,88.2979965209961,8.657999992370605,-4.6479997634887695,-28.15699958801269,31.582000732421875 -7295,2017-04-30 23:00:00,30.072999954223643,8.041999816894531,88.2979965209961,9.677000045776367,-7.099999904632568,-28.15699958801269,30.702999114990234 -7296,2017-05-01 00:00:00,29.65399932861328,8.795999526977539,88.2979965209961,10.29300022125244,-5.874000072479247,-28.15699958801269,30.26350021362305 -7297,2017-05-01 01:00:00,31.077999114990234,8.628000259399414,88.2979965209961,9.677000045776367,-5.831999778747559,-28.15699958801269,29.38500022888184 -7298,2017-05-01 02:00:00,27.47599983215332,7.539000034332275,88.2979965209961,9.194000244140623,-5.853000164031982,-28.15699958801269,28.506000518798828 -7299,2017-05-01 03:00:00,28.899999618530277,7.874000072479247,88.2979965209961,9.435999870300291,-5.8420000076293945,-28.15699958801269,28.06649971008301 -7300,2017-05-01 04:00:00,27.726999282836918,7.539000034332275,88.2979965209961,9.0600004196167,-7.078999996185303,-28.15699958801269,27.40699958801269 -7301,2017-05-01 05:00:00,28.73200035095215,7.958000183105469,88.2979965209961,9.54300022125244,-5.8420000076293945,-28.15699958801269,26.74799919128418 -7302,2017-05-01 06:00:00,27.22500038146973,7.037000179290772,88.2979965209961,8.873000144958496,-7.078999996185303,-28.15699958801269,26.30850028991699 -7303,2017-05-01 07:00:00,25.04700088500977,5.276999950408936,88.2979965209961,7.184000015258789,-5.863999843597412,-28.15699958801269,26.089000701904297 -7304,2017-05-01 08:00:00,25.1299991607666,5.276999950408936,88.2979965209961,7.23799991607666,-5.863999843597412,-28.15699958801269,28.506000518798828 -7305,2017-05-01 09:00:00,22.95199966430664,4.440000057220459,88.2979965209961,6.540999889373777,-7.111000061035156,-28.15699958801269,32.021499633789055 -7306,2017-05-01 10:00:00,20.69099998474121,0.0,88.2979965209961,4.959000110626222,-7.111000061035156,-28.15699958801269,35.5369987487793 -7307,2017-05-01 11:00:00,16.419000625610348,0.0,88.2979965209961,3.484999895095825,-7.111000061035156,-28.15699958801269,39.71200180053711 -7308,2017-05-01 12:00:00,14.324000358581545,0.0,88.2979965209961,2.385999917984009,-5.874000072479247,-28.15699958801269,38.61299896240234 -7309,2017-05-01 13:00:00,13.904999732971191,0.0,88.2979965209961,2.760999917984009,-7.111000061035156,-28.15699958801269,37.51449966430664 -7310,2017-05-01 14:00:00,12.899999618530272,0.0,88.2979965209961,2.438999891281128,-7.090000152587893,-28.15699958801269,36.85549926757813 -7311,2017-05-01 15:00:00,15.413000106811523,0.0,88.2979965209961,3.9140000343322754,-7.099999904632568,-28.15699958801269,36.85549926757813 -7312,2017-05-01 16:00:00,18.68000030517578,0.0,88.2979965209961,4.824999809265137,-5.863999843597412,-28.15699958801269,35.756500244140625 -7313,2017-05-01 17:00:00,17.926000595092773,0.0,88.2979965209961,3.3510000705718994,-7.090000152587893,-28.15699958801269,33.55950164794922 -7314,2017-05-01 18:00:00,16.753999710083008,0.0,88.2979965209961,2.868000030517578,-5.885000228881836,-28.15699958801269,30.92250061035156 -7315,2017-05-01 19:00:00,17.172000885009766,0.0,88.2979965209961,3.3239998817443848,-7.099999904632568,-28.15699958801269,30.043500900268555 -7316,2017-05-01 20:00:00,17.34000015258789,0.0,88.2979965209961,4.611000061035156,-8.390999794006348,-28.15699958801269,28.06649971008301 -7317,2017-05-01 21:00:00,16.586000442504886,0.0,88.2979965209961,3.0559999942779537,-5.916999816894531,-28.15699958801269,26.96750068664551 -7318,2017-05-01 22:00:00,14.241000175476074,0.0,88.2979965209961,3.61899995803833,-7.14300012588501,-28.15699958801269,26.30850028991699 -7319,2017-05-01 23:00:00,11.979000091552734,0.0,88.2979965209961,2.9749999046325684,-8.411999702453612,-28.15699958801269,25.43000030517578 -7320,2017-05-02 00:00:00,11.47599983215332,0.0,88.2979965209961,2.627000093460083,-8.411999702453612,-28.15699958801269,24.77050018310547 -7321,2017-05-02 01:00:00,13.234999656677244,0.0,88.2979965209961,2.868000030517578,-5.980999946594237,-28.15699958801269,24.55100059509277 -7322,2017-05-02 02:00:00,9.717000007629396,0.0,88.2979965209961,3.108999967575073,-8.432999610900879,-28.15699958801269,24.989999771118164 -7323,2017-05-02 03:00:00,9.21399974822998,0.0,88.2979965209961,3.108999967575073,-8.411999702453612,-28.15699958801269,25.64949989318848 -7324,2017-05-02 04:00:00,10.13599967956543,0.0,88.2979965209961,2.9489998817443848,-7.185999870300293,-28.15699958801269,25.86899948120117 -7325,2017-05-02 05:00:00,10.470999717712402,0.0,88.2979965209961,3.1630001068115234,-8.454000473022461,-28.15699958801269,25.64949989318848 -7326,2017-05-02 06:00:00,11.057000160217283,0.0,88.2979965209961,2.8949999809265137,-8.454000473022461,-28.15699958801269,24.11100006103516 -7327,2017-05-02 07:00:00,12.314000129699709,0.0,88.2979965209961,3.190000057220459,-8.454000473022461,-28.15699958801269,23.45199966430664 -7328,2017-05-02 08:00:00,15.161999702453612,0.0,88.2979965209961,4.3429999351501465,-8.465000152587889,-28.15699958801269,22.13400077819824 -7329,2017-05-02 09:00:00,17.507999420166016,0.0,88.2979965209961,4.7709999084472665,-6.02400016784668,-28.15699958801269,21.694000244140625 -7330,2017-05-02 10:00:00,19.183000564575195,0.0,88.2979965209961,4.824999809265137,-7.238999843597412,-28.15699958801269,21.694000244140625 -7331,2017-05-02 11:00:00,17.674999237060547,0.0,88.2979965209961,4.3959999084472665,-6.001999855041504,-28.15699958801269,21.694000244140625 -7332,2017-05-02 12:00:00,14.491999626159668,0.0,88.2979965209961,2.9489998817443848,-8.581999778747559,-28.15699958801269,22.13400077819824 -7333,2017-05-02 13:00:00,14.072999954223633,0.0,88.2979965209961,3.5920000076293945,-7.34600019454956,-28.15699958801269,22.572999954223643 -7334,2017-05-02 14:00:00,13.98900032043457,0.0,88.2979965209961,3.6989998817443848,-7.34600019454956,-28.15699958801269,23.01300048828125 -7335,2017-05-02 15:00:00,13.56999969482422,0.0,88.2979965209961,3.4579999446868896,-7.291999816894531,-28.15699958801269,24.11100006103516 -7336,2017-05-02 16:00:00,14.743000030517578,0.0,88.2979965209961,3.7260000705718994,-7.34600019454956,-28.15699958801269,24.55100059509277 -7337,2017-05-02 17:00:00,19.51799964904785,0.0,88.2979965209961,4.127999782562257,-4.894000053405762,-28.15699958801269,24.55100059509277 -7338,2017-05-02 18:00:00,17.843000411987305,0.0,88.2979965209961,4.235000133514403,-6.130000114440918,-28.15699958801269,24.33099937438965 -7339,2017-05-02 19:00:00,18.93199920654297,0.0,88.2979965209961,3.99399995803833,-4.914999961853027,-28.15699958801269,23.89150047302246 -7340,2017-05-02 20:00:00,15.496999740600586,0.0,88.2979965209961,4.047999858856201,-7.452000141143799,-28.15699958801269,22.792999267578125 -7341,2017-05-02 21:00:00,14.491999626159668,0.0,88.2979965209961,2.9489998817443848,-7.452000141143799,-28.15699958801269,22.792999267578125 -7342,2017-05-02 22:00:00,16.250999450683597,0.0,88.2979965209961,4.073999881744385,-7.452000141143799,-28.15699958801269,22.792999267578125 -7343,2017-05-02 23:00:00,13.56999969482422,0.0,88.2979965209961,4.824999809265137,-8.699999809265138,-28.15699958801269,22.792999267578125 -7344,2017-05-03 00:00:00,14.407999992370604,0.0,88.2979965209961,5.281000137329102,-8.699999809265138,-28.15699958801269,23.232500076293945 -7345,2017-05-03 01:00:00,24.041000366210927,4.690999984741211,88.2979965209961,6.915999889373777,-7.484000205993652,-28.15699958801269,23.45199966430664 -7346,2017-05-03 02:00:00,25.214000701904297,6.618000030517577,88.2979965209961,9.220999717712402,-9.829999923706056,-28.15699958801269,23.45199966430664 -7347,2017-05-03 03:00:00,19.099000930786133,0.0,88.2979965209961,5.923999786376952,-8.61400032043457,-28.15699958801269,23.67200088500977 -7348,2017-05-03 04:00:00,23.45499992370605,4.941999912261963,88.2979965209961,7.372000217437744,-7.367000102996826,-28.15699958801269,23.89150047302246 -7349,2017-05-03 05:00:00,22.53400039672852,5.110000133514403,88.2979965209961,7.77400016784668,-8.604000091552733,-28.15699958801269,23.89150047302246 -7350,2017-05-03 06:00:00,27.392000198364247,5.696000099182129,88.2979965209961,7.907999992370605,-8.604000091552733,-28.15699958801269,24.33099937438965 -7351,2017-05-03 07:00:00,29.23500061035156,7.119999885559082,88.2979965209961,8.73900032043457,-7.377999782562256,-28.15699958801269,24.55100059509277 -7352,2017-05-03 08:00:00,27.81100082397461,6.449999809265138,88.2979965209961,8.52400016784668,-7.377999782562256,-28.15699958801269,25.209999084472656 -7353,2017-05-03 09:00:00,33.088001251220696,9.381999969482422,88.2979965209961,10.937000274658203,-7.355999946594237,-28.15699958801269,25.64949989318848 -7354,2017-05-03 10:00:00,29.23500061035156,6.198999881744385,88.2979965209961,7.639999866485598,-4.829999923706055,-28.15699958801269,25.86899948120117 -7355,2017-05-03 11:00:00,31.66399955749512,7.958000183105469,88.2979965209961,9.677000045776367,-7.34600019454956,-28.15699958801269,27.1875 -7356,2017-05-03 12:00:00,29.15099906921387,5.696000099182129,88.2979965209961,7.665999889373777,-7.34600019454956,-28.15699958801269,28.06649971008301 -7357,2017-05-03 13:00:00,31.58099937438965,7.372000217437744,88.2979965209961,8.310000419616701,-4.679999828338623,-28.15699958801269,29.165000915527344 -7358,2017-05-03 14:00:00,31.74799919128418,7.119999885559082,88.2979965209961,7.88100004196167,-4.679999828338623,-28.15699958801269,30.702999114990234 -7359,2017-05-03 15:00:00,32.250999450683594,7.119999885559082,88.2979965209961,8.229000091552733,-4.679999828338623,-28.15699958801269,31.36199951171875 -7360,2017-05-03 16:00:00,31.58099937438965,7.119999885559082,88.2979965209961,8.255999565124513,-4.679999828338623,-28.15699958801269,31.36199951171875 -7361,2017-05-03 17:00:00,34.763999938964844,7.874000072479247,88.2979965209961,8.604999542236326,-3.380000114440918,-28.15699958801269,30.482999801635746 -7362,2017-05-03 18:00:00,35.014999389648445,7.789999961853027,88.2979965209961,8.604999542236326,-3.380000114440918,-28.15699958801269,29.82399940490723 -7363,2017-05-03 19:00:00,30.743000030517567,5.361000061035156,88.2979965209961,6.5939998626708975,-4.616000175476074,-28.15699958801269,29.165000915527344 -7364,2017-05-03 20:00:00,30.492000579833984,6.114999771118164,88.2979965209961,7.210999965667725,-4.573999881744385,-28.15699958801269,28.725500106811523 -7365,2017-05-03 21:00:00,36.52299880981445,10.38700008392334,88.2979965209961,11.12399959564209,-4.573999881744385,-28.15699958801269,28.285999298095703 -7366,2017-05-03 22:00:00,36.104000091552734,10.303000450134276,88.2979965209961,11.097999572753906,-4.573999881744385,-28.15699958801269,27.84700012207031 -7367,2017-05-03 23:00:00,25.88400077819824,7.288000106811522,88.2979965209961,8.765000343322754,-5.800000190734862,-28.15699958801269,27.62700080871582 -7368,2017-05-04 00:00:00,30.65900039672852,8.041999816894531,88.2979965209961,8.73900032043457,-3.2730000019073486,-28.15699958801269,27.40749931335449 -7369,2017-05-04 01:00:00,31.077999114990234,8.376999855041504,88.2979965209961,9.220999717712402,-3.2730000019073486,-28.15699958801269,25.86899948120117 -7370,2017-05-04 02:00:00,30.40800094604492,8.125,88.2979965209961,9.220999717712402,-4.48799991607666,-28.15699958801269,24.55100059509277 -7371,2017-05-04 03:00:00,27.81100082397461,7.037000179290772,88.2979965209961,7.800000190734862,-3.16599988937378,-28.15699958801269,24.11100006103516 -7372,2017-05-04 04:00:00,29.40299987792969,8.461000442504883,88.2979965209961,9.784000396728516,-5.629000186920166,-28.15699958801269,24.11100006103516 -7373,2017-05-04 05:00:00,31.16200065612793,8.878999710083008,88.2979965209961,9.864999771118164,-4.178999900817871,-28.15699958801269,24.550500869750977 -7374,2017-05-04 06:00:00,33.674999237060554,9.130999565124512,88.2979965209961,10.052000045776367,-4.178999900817871,-28.15699958801269,25.209999084472656 -7375,2017-05-04 07:00:00,29.40299987792969,7.623000144958496,88.2979965209961,8.657999992370605,-5.0320000648498535,-28.15699958801269,24.99049949645996 -7376,2017-05-04 08:00:00,34.261001586914055,9.717000007629396,88.2979965209961,10.480999946594238,-3.785000085830689,-28.15699958801269,24.550500869750977 -7377,2017-05-04 09:00:00,32.58599853515625,8.795999526977539,88.2979965209961,9.677000045776367,-5.0320000648498535,-28.15699958801269,24.33099937438965 -7378,2017-05-04 10:00:00,32.58599853515625,7.454999923706055,88.2979965209961,9.086999893188477,-7.473999977111816,-28.15699958801269,24.99049949645996 -7379,2017-05-04 11:00:00,29.90500068664551,5.78000020980835,88.2979965209961,7.50600004196167,-7.260000228881836,-28.15699958801269,25.429500579833984 -7380,2017-05-04 12:00:00,27.726999282836918,4.60699987411499,88.2979965209961,6.566999912261963,-7.260000228881836,-28.15699958801269,26.30850028991699 -7381,2017-05-04 13:00:00,31.66399955749512,6.114999771118164,88.2979965209961,7.130000114440918,-4.861999988555908,-28.15699958801269,26.96750068664551 -7382,2017-05-04 14:00:00,31.413000106811523,5.611999988555908,88.2979965209961,6.6479997634887695,-3.6459999084472656,-28.15699958801269,27.40749931335449 -7383,2017-05-04 15:00:00,22.78499984741211,4.105000019073486,88.2979965209961,5.736000061035156,-4.882999897003174,-28.15699958801269,27.84650039672852 -7384,2017-05-04 16:00:00,23.70599937438965,4.690999984741211,88.2979965209961,5.951000213623048,-4.882999897003174,-28.15699958801269,27.84650039672852 -7385,2017-05-04 17:00:00,26.386999130249023,5.110000133514403,88.2979965209961,5.8439998626708975,-2.367000102996826,-28.15699958801269,27.84650039672852 -7386,2017-05-04 18:00:00,23.87400054931641,4.188000202178955,88.2979965209961,5.602000236511231,-5.011000156402588,-28.15699958801269,26.30850028991699 -7387,2017-05-04 19:00:00,22.78499984741211,0.0,88.2979965209961,4.127999782562257,-3.795000076293945,-28.15699958801269,25.64949989318848 -7388,2017-05-04 20:00:00,19.26700019836425,0.0,88.2979965209961,4.690999984741211,-6.162000179290772,-28.15699958801269,25.209999084472656 -7389,2017-05-04 21:00:00,22.617000579833984,4.188000202178955,88.2979965209961,5.254000186920166,-3.6989998817443848,-28.15699958801269,25.64949989318848 -7390,2017-05-04 22:00:00,22.36599922180176,4.355999946594238,88.2979965209961,5.656000137329103,-3.6989998817443848,-28.15699958801269,25.86949920654297 -7391,2017-05-04 23:00:00,20.60700035095215,4.355999946594238,88.2979965209961,5.629000186920166,-3.6989998817443848,-28.15699958801269,25.86949920654297 -7392,2017-05-05 00:00:00,18.847999572753903,0.0,88.2979965209961,4.690999984741211,-3.6989998817443848,-28.15699958801269,25.64949989318848 -7393,2017-05-05 01:00:00,18.93199920654297,0.0,88.2979965209961,4.53000020980835,-3.6989998817443848,-28.15699958801269,25.64949989318848 -7394,2017-05-05 02:00:00,17.926000595092773,0.0,88.2979965209961,4.047999858856201,-3.6989998817443848,-28.15699958801269,25.429500579833984 -7395,2017-05-05 03:00:00,17.674999237060547,0.0,88.2979965209961,3.7799999713897705,-2.440999984741211,-28.15699958801269,25.429500579833984 -7396,2017-05-05 04:00:00,16.250999450683597,0.0,88.2979965209961,4.36899995803833,-3.742000102996826,-28.15699958801269,25.429500579833984 -7397,2017-05-05 05:00:00,17.089000701904293,0.0,88.2979965209961,3.8329999446868896,-3.742000102996826,-28.15699958801269,25.209999084472656 -7398,2017-05-05 06:00:00,18.429000854492188,0.0,88.2979965209961,4.3429999351501465,-4.083000183105469,-28.15699958801269,25.209999084472656 -7399,2017-05-05 07:00:00,20.941999435424805,0.0,88.2979965209961,4.690999984741211,-2.719000101089477,-28.15699958801269,25.429500579833984 -7400,2017-05-05 08:00:00,20.69099998474121,0.0,88.2979965209961,4.209000110626222,-3.0280001163482666,-28.15699958801269,26.30850028991699 -7401,2017-05-05 09:00:00,21.780000686645508,4.440000057220459,88.2979965209961,5.334000110626222,-3.0280001163482666,-28.15699958801269,27.62700080871582 -7402,2017-05-05 10:00:00,20.27199935913086,0.0,88.2979965209961,4.63700008392334,-4.201000213623047,-28.15699958801269,30.04400062561035 -7403,2017-05-05 11:00:00,22.617000579833984,0.0,88.2979965209961,4.449999809265137,-2.8469998836517334,-28.15699958801269,34.21900177001953 -7404,2017-05-05 12:00:00,19.26700019836425,0.0,88.2979965209961,4.2890000343322745,-4.061999797821045,-28.15699958801269,35.97650146484375 -7405,2017-05-05 13:00:00,20.1879997253418,0.0,88.2979965209961,4.235000133514403,-2.7929999828338623,-28.15699958801269,37.73450088500977 -7406,2017-05-05 14:00:00,20.941999435424805,4.188000202178955,88.2979965209961,5.334000110626222,-2.9530000686645512,-28.15699958801269,38.61299896240234 -7407,2017-05-05 15:00:00,17.590999603271484,0.0,88.2979965209961,4.36899995803833,-6.6630001068115225,-28.15699958801269,37.95399856567383 -7408,2017-05-05 16:00:00,21.863000869750977,0.0,88.2979965209961,5.119999885559082,-4.2220001220703125,-28.15699958801269,37.29499816894531 -7409,2017-05-05 17:00:00,21.94700050354004,0.0,88.2979965209961,5.227000236511231,-4.2220001220703125,-28.15699958801269,36.85549926757813 -7410,2017-05-05 18:00:00,21.44499969482422,0.0,88.2979965209961,4.7709999084472665,-4.264999866485597,-28.15699958801269,35.5369987487793 -7411,2017-05-05 19:00:00,23.20400047302246,4.105000019073486,88.2979965209961,5.119999885559082,-2.483999967575073,-28.15699958801269,33.77899932861328 -7412,2017-05-05 20:00:00,22.70100021362305,0.0,88.2979965209961,5.013000011444092,-4.201000213623047,-28.15699958801269,31.582000732421875 -7413,2017-05-05 21:00:00,24.125,4.5229997634887695,88.2979965209961,4.690999984741211,-2.7079999446868896,-28.15699958801269,29.82399940490723 -7414,2017-05-05 22:00:00,21.863000869750977,0.0,88.2979965209961,5.1469998359680185,-3.7309999465942383,-28.15699958801269,28.506000518798828 -7415,2017-05-05 23:00:00,16.670000076293945,0.0,88.2979965209961,5.388000011444092,-7.4099998474121085,-28.15699958801269,28.06649971008301 -7416,2017-05-06 00:00:00,17.843000411987305,0.0,88.2979965209961,4.449999809265137,-4.958000183105469,-28.15699958801269,27.40699958801269 -7417,2017-05-06 01:00:00,17.089000701904293,0.0,88.2979965209961,5.199999809265137,-5.0219998359680185,-28.15699958801269,26.968000411987305 -7418,2017-05-06 02:00:00,15.916000366210938,0.0,88.2979965209961,4.182000160217285,-5.0219998359680185,-28.15699958801269,26.30850028991699 -7419,2017-05-06 03:00:00,15.83199977874756,0.0,88.2979965209961,4.53000020980835,-5.0219998359680185,-28.15699958801269,25.64949989318848 -7420,2017-05-06 04:00:00,15.496999740600586,0.0,88.2979965209961,4.315999984741212,-5.011000156402588,-28.15699958801269,25.209999084472656 -7421,2017-05-06 05:00:00,16.92099952697754,0.0,88.2979965209961,5.199999809265137,-3.753000020980835,-28.15699958801269,24.77050018310547 -7422,2017-05-06 06:00:00,18.010000228881836,0.0,88.2979965209961,3.7260000705718994,-3.753000020980835,-28.15699958801269,24.33099937438965 -7423,2017-05-06 07:00:00,15.246000289916992,0.0,88.2979965209961,4.879000186920166,-4.9679999351501465,-28.15699958801269,25.209999084472656 -7424,2017-05-06 08:00:00,18.93199920654297,0.0,88.2979965209961,4.744999885559082,-3.688999891281128,-28.15699958801269,26.52799987792969 -7425,2017-05-06 09:00:00,15.246000289916992,0.0,88.2979965209961,5.816999912261963,-10.031999588012695,-28.15699958801269,28.28650093078613 -7426,2017-05-06 10:00:00,22.114999771118164,4.690999984741211,88.2979965209961,6.138999938964844,-5.064000129699707,-28.15699958801269,30.92300033569336 -7427,2017-05-06 11:00:00,23.37100028991699,4.775000095367432,88.2979965209961,5.789999961853027,-2.632999897003174,-28.15699958801269,33.34000015258789 -7428,2017-05-06 12:00:00,19.51799964904785,0.0,88.2979965209961,4.824999809265137,-4.008999824523927,-28.15699958801269,34.65800094604492 -7429,2017-05-06 13:00:00,21.780000686645508,4.355999946594238,88.2979965209961,5.0929999351501465,-2.719000101089477,-28.15699958801269,36.19649887084961 -7430,2017-05-06 14:00:00,20.1879997253418,0.0,88.2979965209961,5.227000236511231,-4.285999774932861,-28.15699958801269,34.877498626708984 -7431,2017-05-06 15:00:00,20.43899917602539,4.105000019073486,88.2979965209961,5.388000011444092,-2.878999948501587,-28.15699958801269,34.65800094604492 -7432,2017-05-06 16:00:00,19.85300064086914,0.0,88.2979965209961,5.119999885559082,-4.051000118255615,-28.15699958801269,35.317501068115234 -7433,2017-05-06 17:00:00,20.356000900268555,0.0,88.2979965209961,4.797999858856201,-4.296999931335448,-28.15699958801269,35.317501068115234 -7434,2017-05-06 18:00:00,22.36599922180176,4.105000019073486,88.2979965209961,5.065999984741211,-2.888999938964844,-28.15699958801269,34.65800094604492 -7435,2017-05-06 19:00:00,23.53899955749512,4.5229997634887695,88.2979965209961,5.736000061035156,-2.8570001125335693,-28.15699958801269,33.34000015258789 -7436,2017-05-06 20:00:00,22.36599922180176,4.355999946594238,88.2979965209961,5.576000213623047,-2.996000051498413,-28.15699958801269,32.021499633789055 -7437,2017-05-06 21:00:00,22.53400039672852,4.188000202178955,88.2979965209961,4.932000160217285,-2.5799999237060547,-28.15699958801269,31.14249992370605 -7438,2017-05-06 22:00:00,21.780000686645508,5.026000022888184,88.2979965209961,6.486999988555907,-4.13700008392334,-28.15699958801269,30.26350021362305 -7439,2017-05-06 23:00:00,17.843000411987305,4.2719998359680185,88.2979965209961,5.978000164031982,-4.13700008392334,-28.15699958801269,29.38500022888184 -7440,2017-05-07 00:00:00,16.50200080871582,0.0,88.2979965209961,4.90500020980835,-4.264999866485597,-28.15699958801269,28.725500106811523 -7441,2017-05-07 01:00:00,17.926000595092773,4.2719998359680185,88.2979965209961,5.4679999351501465,-3.049000024795532,-28.15699958801269,28.285999298095703 -7442,2017-05-07 02:00:00,16.166999816894528,0.0,88.2979965209961,4.611000061035156,-3.1449999809265137,-28.15699958801269,28.06649971008301 -7443,2017-05-07 03:00:00,14.576000213623049,0.0,88.2979965209961,4.449999809265137,-4.349999904632568,-28.15699958801269,27.84700012207031 -7444,2017-05-07 04:00:00,14.659000396728516,0.0,88.2979965209961,4.584000110626222,-4.328999996185304,-28.15699958801269,27.62700080871582 -7445,2017-05-07 05:00:00,14.241000175476074,0.0,88.2979965209961,4.209000110626222,-4.317999839782715,-28.15699958801269,27.40699958801269 -7446,2017-05-07 06:00:00,16.419000625610348,0.0,88.2979965209961,4.852000236511231,-4.072999954223634,-28.15699958801269,27.1875 -7447,2017-05-07 07:00:00,16.753999710083008,0.0,88.2979965209961,4.744999885559082,-4.105000019073486,-28.15699958801269,27.1875 -7448,2017-05-07 08:00:00,18.17799949645996,0.0,88.2979965209961,4.824999809265137,-4.13700008392334,-28.15699958801269,28.506000518798828 -7449,2017-05-07 09:00:00,20.857999801635746,4.60699987411499,88.2979965209961,5.4679999351501465,-2.868000030517578,-28.15699958801269,30.26350021362305 -7450,2017-05-07 10:00:00,19.51799964904785,0.0,88.2979965209961,5.978000164031982,-5.565000057220459,-28.15699958801269,32.021499633789055 -7451,2017-05-07 11:00:00,22.450000762939453,4.941999912261963,88.2979965209961,6.835000038146973,-5.565000057220459,-28.15699958801269,33.77899932861328 -7452,2017-05-07 12:00:00,25.632999420166016,5.445000171661377,88.2979965209961,7.290999889373777,-5.51200008392334,-28.15699958801269,35.97650146484375 -7453,2017-05-07 13:00:00,27.141000747680664,6.2829999923706055,88.2979965209961,7.827000141143799,-5.500999927520752,-28.15699958801269,38.17399978637695 -7454,2017-05-07 14:00:00,31.496999740600582,9.465999603271484,88.2979965209961,10.90999984741211,-5.500999927520752,-28.15699958801269,39.492000579833984 -7455,2017-05-07 15:00:00,33.17200088500977,10.38700008392334,88.2979965209961,11.5,-5.500999927520752,-28.15699958801269,39.0525016784668 -7456,2017-05-07 16:00:00,29.48600006103516,8.711999893188478,88.2979965209961,10.883000373840332,-7.953000068664551,-28.15699958801269,37.29499816894531 -7457,2017-05-07 17:00:00,32.333999633789055,9.21399974822998,88.2979965209961,11.312000274658203,-7.835999965667725,-28.15699958801269,35.75699996948242 -7458,2017-05-07 18:00:00,32.92100143432617,9.550000190734863,88.2979965209961,11.258000373840332,-7.835999965667725,-28.15699958801269,34.65800094604492 -7459,2017-05-07 19:00:00,32.92100143432617,9.633000373840332,88.2979965209961,10.347000122070312,-4.2109999656677255,-28.15699958801269,33.55950164794922 -7460,2017-05-07 20:00:00,28.73200035095215,8.376999855041504,88.2979965209961,10.642000198364258,-9.178999900817873,-28.15699958801269,33.120498657226555 -7461,2017-05-07 21:00:00,29.98900032043457,8.543999671936035,88.2979965209961,10.90999984741211,-7.803999900817871,-28.15699958801269,32.900501251220696 -7462,2017-05-07 22:00:00,25.80100059509277,8.208999633789062,88.2979965209961,10.668999671936035,-9.041000366210938,-28.15699958801269,32.46099853515625 -7463,2017-05-07 23:00:00,23.70599937438965,7.288000106811522,88.2979965209961,9.729999542236328,-9.041000366210938,-28.15699958801269,32.021499633789055 -7464,2017-05-08 00:00:00,25.1299991607666,7.623000144958496,88.2979965209961,10.105999946594238,-9.052000045776367,-28.15699958801269,32.021499633789055 -7465,2017-05-08 01:00:00,25.1299991607666,8.041999816894531,88.2979965209961,10.53499984741211,-9.12600040435791,-28.15699958801269,30.26350021362305 -7466,2017-05-08 02:00:00,21.863000869750977,6.701000213623048,88.2979965209961,9.354999542236328,-9.12600040435791,-28.15699958801269,29.165000915527344 -7467,2017-05-08 03:00:00,26.30299949645996,8.208999633789062,88.2979965209961,10.427000045776367,-7.879000186920166,-28.15699958801269,29.165000915527344 -7468,2017-05-08 04:00:00,24.459999084472656,7.874000072479247,88.2979965209961,10.588000297546388,-9.274999618530272,-28.15699958801269,29.165000915527344 -7469,2017-05-08 05:00:00,27.47599983215332,8.293000221252441,88.2979965209961,10.185999870300291,-6.769999980926514,-28.15699958801269,28.725500106811523 -7470,2017-05-08 06:00:00,23.45499992370605,7.288000106811522,88.2979965209961,10.052000045776367,-9.253999710083008,-28.15699958801269,26.52799987792969 -7471,2017-05-08 07:00:00,24.71199989318848,7.203999996185303,88.2979965209961,9.810999870300291,-9.28600025177002,-28.15699958801269,26.089000701904297 -7472,2017-05-08 08:00:00,22.36599922180176,5.78000020980835,88.2979965209961,8.416999816894531,-9.265000343322754,-28.15699958801269,25.209999084472656 -7473,2017-05-08 09:00:00,27.726999282836918,8.711999893188478,88.2979965209961,11.071000099182127,-8.006999969482424,-28.15699958801269,25.209999084472656 -7474,2017-05-08 10:00:00,28.481000900268555,7.623000144958496,88.2979965209961,9.461999893188477,-7.985000133514402,-28.15699958801269,24.77050018310547 -7475,2017-05-08 11:00:00,31.74799919128418,8.963000297546387,88.2979965209961,10.90999984741211,-7.974999904632567,-28.15699958801269,24.550500869750977 -7476,2017-05-08 12:00:00,28.062000274658203,7.037000179290772,88.2979965209961,9.515999794006348,-9.12600040435791,-28.15699958801269,24.989999771118164 -7477,2017-05-08 13:00:00,28.31399917602539,7.874000072479247,88.2979965209961,9.972000122070312,-9.307000160217283,-28.15699958801269,24.989999771118164 -7478,2017-05-08 14:00:00,27.559999465942383,7.623000144958496,88.2979965209961,9.729999542236328,-8.081000328063965,-28.15699958801269,25.43000030517578 -7479,2017-05-08 15:00:00,25.548999786376957,6.366000175476074,88.2979965209961,8.444000244140625,-8.145000457763674,-28.15699958801269,25.64949989318848 -7480,2017-05-08 16:00:00,28.31399917602539,7.539000034332275,88.2979965209961,9.756999969482422,-9.29699993133545,-28.15699958801269,25.64949989318848 -7481,2017-05-08 17:00:00,25.80100059509277,4.60699987411499,88.2979965209961,6.835000038146973,-8.12399959564209,-28.15699958801269,25.43000030517578 -7482,2017-05-08 18:00:00,30.072999954223643,6.366000175476074,88.2979965209961,8.52400016784668,-8.220000267028809,-28.15699958801269,25.43000030517578 -7483,2017-05-08 19:00:00,30.1560001373291,5.611999988555908,88.2979965209961,7.3979997634887695,-6.940999984741211,-28.15699958801269,24.989999771118164 -7484,2017-05-08 20:00:00,26.72200012207031,4.60699987411499,88.2979965209961,6.513999938964844,-5.683000087738037,-28.15699958801269,24.989999771118164 -7485,2017-05-08 21:00:00,23.87400054931641,4.690999984741211,88.2979965209961,7.34499979019165,-9.361000061035156,-28.15699958801269,24.989999771118164 -7486,2017-05-08 22:00:00,26.88999938964844,6.533999919891357,88.2979965209961,8.899999618530273,-8.071000099182129,-28.15699958801269,24.989999771118164 -7487,2017-05-08 23:00:00,20.356000900268555,0.0,88.2979965209961,6.755000114440918,-9.211000442504885,-28.15699958801269,24.989999771118164 -7488,2017-05-09 00:00:00,24.459999084472656,5.947999954223633,88.2979965209961,8.765000343322754,-9.211000442504885,-28.15699958801269,24.989999771118164 -7489,2017-05-09 01:00:00,23.20400047302246,5.696000099182129,88.2979965209961,8.496999740600586,-9.201000213623049,-28.15699958801269,24.989999771118164 -7490,2017-05-09 02:00:00,24.62800025939941,5.78000020980835,88.2979965209961,8.229000091552733,-9.201000213623049,-28.15699958801269,23.89150047302246 -7491,2017-05-09 03:00:00,24.208999633789062,7.037000179290772,88.2979965209961,9.54300022125244,-9.201000213623049,-28.15699958801269,22.572999954223643 -7492,2017-05-09 04:00:00,23.20400047302246,5.361000061035156,88.2979965209961,8.015000343322754,-9.201000213623049,-28.15699958801269,22.35350036621093 -7493,2017-05-09 05:00:00,20.356000900268555,4.5229997634887695,88.2979965209961,7.290999889373777,-7.879000186920166,-28.15699958801269,22.35350036621093 -7494,2017-05-09 06:00:00,26.88999938964844,6.449999809265138,88.2979965209961,9.140999794006348,-9.232999801635742,-28.15699958801269,22.35350036621093 -7495,2017-05-09 07:00:00,28.64900016784668,7.874000072479247,88.2979965209961,10.159000396728516,-7.995999813079834,-28.15699958801269,22.35350036621093 -7496,2017-05-09 08:00:00,27.22500038146973,7.288000106811522,88.2979965209961,10.024999618530272,-10.619000434875488,-28.15699958801269,23.232500076293945 -7497,2017-05-09 09:00:00,30.90999984741211,8.543999671936035,88.2979965209961,10.347000122070312,-8.145000457763674,-28.15699958801269,24.550500869750977 -7498,2017-05-09 10:00:00,24.292999267578125,4.355999946594238,88.2979965209961,6.298999786376952,-6.908999919891357,-28.15699958801269,26.528499603271484 -7499,2017-05-09 11:00:00,30.32399940490723,6.701000213623048,88.2979965209961,8.845999717712402,-9.531000137329102,-28.15699958801269,30.263999938964844 -7500,2017-05-09 12:00:00,32.16699981689453,8.628000259399414,88.2979965209961,10.427000045776367,-8.177000045776367,-28.15699958801269,31.80150032043457 -7501,2017-05-09 13:00:00,31.832000732421875,8.963000297546387,88.2979965209961,10.668999671936035,-8.187999725341799,-28.15699958801269,34.65850067138672 -7502,2017-05-09 14:00:00,34.09400177001953,9.968000411987305,88.2979965209961,11.071000099182127,-5.639999866485598,-28.15699958801269,37.29499816894531 -7503,2017-05-09 15:00:00,34.847000122070305,9.885000228881836,88.2979965209961,10.90999984741211,-6.855000019073486,-28.15699958801269,38.61349868774414 -7504,2017-05-09 16:00:00,36.02000045776367,10.805999755859377,88.2979965209961,11.66100025177002,-4.434999942779541,-28.15699958801269,37.29499816894531 -7505,2017-05-09 17:00:00,36.60699844360352,9.800999641418455,88.2979965209961,10.642000198364258,-4.285999774932861,-28.15699958801269,35.97650146484375 -7506,2017-05-09 18:00:00,34.0099983215332,8.628000259399414,88.2979965209961,9.515999794006348,-4.361000061035156,-28.15699958801269,35.31700134277344 -7507,2017-05-09 19:00:00,32.501998901367195,7.372000217437744,88.2979965209961,8.175999641418457,-4.361000061035156,-28.15699958801269,33.77899932861328 -7508,2017-05-09 20:00:00,32.75299835205078,8.711999893188478,88.2979965209961,9.99899959564209,-4.361000061035156,-28.15699958801269,31.582000732421875 -7509,2017-05-09 21:00:00,37.86299896240234,10.13599967956543,88.2979965209961,10.29300022125244,-3.0699999332427983,-28.15699958801269,29.82399940490723 -7510,2017-05-09 22:00:00,34.59600067138672,9.633000373840332,88.2979965209961,10.803000450134276,-5.276999950408936,-28.15699958801269,28.506000518798828 -7511,2017-05-09 23:00:00,33.25600051879883,9.717000007629396,88.2979965209961,10.989999771118164,-5.276999950408936,-28.15699958801269,27.62700080871582 -7512,2017-05-10 00:00:00,33.42300033569336,9.550000190734863,88.2979965209961,10.105999946594238,-3.785000085830689,-28.15699958801269,27.1875 -7513,2017-05-10 01:00:00,28.983999252319336,7.454999923706055,88.2979965209961,8.604999542236326,-3.3050000667572017,-28.15699958801269,26.52799987792969 -7514,2017-05-10 02:00:00,29.738000869750977,7.958000183105469,88.2979965209961,9.16800022125244,-4.455999851226807,-28.15699958801269,26.089000701904297 -7515,2017-05-10 03:00:00,28.481000900268555,7.706999778747559,88.2979965209961,8.604999542236326,-3.0920000076293945,-28.15699958801269,26.30850028991699 -7516,2017-05-10 04:00:00,32.417999267578125,9.381999969482422,88.2979965209961,9.435999870300291,-1.6419999599456787,-28.15699958801269,26.30850028991699 -7517,2017-05-10 05:00:00,28.39699935913086,7.623000144958496,88.2979965209961,8.604999542236326,-4.392000198364259,-28.15699958801269,25.86899948120117 -7518,2017-05-10 06:00:00,30.32399940490723,7.874000072479247,88.2979965209961,9.140999794006348,-5.576000213623047,-28.15699958801269,25.86899948120117 -7519,2017-05-10 07:00:00,26.13599967956543,5.611999988555908,88.2979965209961,7.23799991607666,-5.480000019073486,-28.15699958801269,26.74799919128418 -7520,2017-05-10 08:00:00,31.99900054931641,8.041999816894531,88.2979965209961,9.194000244140623,-5.480000019073486,-28.15699958801269,28.945499420166016 -7521,2017-05-10 09:00:00,31.32900047302246,8.795999526977539,88.2979965209961,10.401000022888184,-7.985000133514402,-28.15699958801269,32.241500854492195 -7522,2017-05-10 10:00:00,31.496999740600582,8.293000221252441,88.2979965209961,9.140999794006348,-5.480000019073486,-28.15699958801269,35.5369987487793 -7523,2017-05-10 11:00:00,33.005001068115234,8.711999893188478,88.2979965209961,10.024999618530272,-6.557000160217285,-28.15699958801269,40.37099838256836 -7524,2017-05-10 12:00:00,29.98900032043457,7.706999778747559,88.2979965209961,9.354999542236328,-6.557000160217285,-28.15699958801269,41.90900039672852 -7525,2017-05-10 13:00:00,30.82699966430664,8.878999710083008,88.2979965209961,9.729999542236328,0.0,-28.15699958801269,21.47949981689453 -7526,2017-05-10 14:00:00,28.899999618530277,7.037000179290772,88.2979965209961,8.845999717712402,-6.610000133514402,-28.15699958801269,44.54600143432617 -7527,2017-05-10 15:00:00,28.899999618530277,7.037000179290772,88.2979965209961,8.845999717712402,-6.610000133514402,-28.15699958801269,44.54600143432617 -7528,2017-05-10 16:00:00,28.899999618530277,7.037000179290772,88.2979965209961,8.845999717712402,-6.610000133514402,-28.15699958801269,44.54600143432617 -7529,2017-05-10 17:00:00,33.674999237060554,7.789999961853027,88.2979965209961,9.381999969482422,-8.048999786376951,-28.15699958801269,43.007999420166016 -7530,2017-05-10 18:00:00,36.1879997253418,8.293000221252441,88.2979965209961,9.409000396728516,-5.554999828338623,-28.15699958801269,42.3484992980957 -7531,2017-05-10 19:00:00,33.005001068115234,6.618000030517577,88.2979965209961,7.960999965667725,-5.491000175476074,-28.15699958801269,39.492000579833984 -7532,2017-05-10 20:00:00,36.02000045776367,8.795999526977539,88.2979965209961,9.972000122070312,-5.491000175476074,-28.15699958801269,37.07550048828125 -7533,2017-05-10 21:00:00,31.916000366210927,7.288000106811522,88.2979965209961,9.274999618530272,-7.974999904632567,-28.15699958801269,35.317501068115234 -7534,2017-05-10 22:00:00,36.104000091552734,9.21399974822998,88.2979965209961,10.239999771118164,-5.468999862670898,-28.15699958801269,33.77899932861328 -7535,2017-05-10 23:00:00,34.261001586914055,9.29800033569336,88.2979965209961,10.37399959564209,-5.468999862670898,-28.15699958801269,33.34000015258789 -7536,2017-05-11 00:00:00,30.57500076293945,8.208999633789062,88.2979965209961,9.54300022125244,-5.468999862670898,-28.15699958801269,32.900501251220696 -7537,2017-05-11 01:00:00,27.47599983215332,6.701000213623048,88.2979965209961,7.827000141143799,-5.565000057220459,-28.15699958801269,32.021499633789055 -7538,2017-05-11 02:00:00,30.57500076293945,7.789999961853027,88.2979965209961,9.409000396728516,-5.565000057220459,-28.15699958801269,31.14249992370605 -7539,2017-05-11 03:00:00,31.077999114990234,8.878999710083008,88.2979965209961,10.024999618530272,-5.565000057220459,-28.15699958801269,30.482999801635746 -7540,2017-05-11 04:00:00,28.39699935913086,6.618000030517577,88.2979965209961,8.255999565124513,-6.781000137329103,-28.15699958801269,29.82399940490723 -7541,2017-05-11 05:00:00,26.47100067138672,6.366000175476074,88.2979965209961,7.960999965667725,-5.554999828338623,-28.15699958801269,29.60449981689453 -7542,2017-05-11 06:00:00,31.66399955749512,8.711999893188478,88.2979965209961,9.784000396728516,-5.554999828338623,-28.15699958801269,29.38500022888184 -7543,2017-05-11 07:00:00,30.65900039672852,7.958000183105469,88.2979965209961,9.461999893188477,-5.491000175476074,-28.15699958801269,29.38500022888184 -7544,2017-05-11 08:00:00,33.50699996948242,8.461000442504883,88.2979965209961,9.32800006866455,-5.491000175476074,-28.15699958801269,31.36199951171875 -7545,2017-05-11 09:00:00,34.763999938964844,9.717000007629396,88.2979965209961,10.803000450134276,-6.73799991607666,-28.15699958801269,34.438499450683594 -7546,2017-05-11 10:00:00,33.92599868774414,7.789999961853027,88.2979965209961,8.095000267028809,-3.2300000190734863,-28.15699958801269,36.85549926757813 -7547,2017-05-11 11:00:00,34.68000030517578,8.293000221252441,88.2979965209961,9.006999969482422,-4.349999904632568,-28.15699958801269,40.1515007019043 -7548,2017-05-11 12:00:00,36.35499954223633,9.29800033569336,88.2979965209961,9.890999794006348,-4.423999786376953,-28.15699958801269,43.66699981689453 -7549,2017-05-11 13:00:00,37.52799987792969,9.800999641418455,88.2979965209961,10.29300022125244,-3.0699999332427983,-28.15699958801269,45.64450073242188 -7550,2017-05-11 14:00:00,35.85300064086914,9.885000228881836,88.2979965209961,10.45400047302246,-5.61899995803833,-28.15699958801269,47.40250015258789 -7551,2017-05-11 15:00:00,37.44400024414063,10.13599967956543,88.2979965209961,10.133000373840332,-2.6010000705718994,-28.15699958801269,46.74300003051758 -7552,2017-05-11 16:00:00,36.43899917602539,9.465999603271484,88.2979965209961,9.99899959564209,-4.4780001640319815,-28.15699958801269,43.887001037597656 -7553,2017-05-11 17:00:00,37.025001525878906,9.381999969482422,88.2979965209961,10.267000198364258,-5.127999782562256,-28.15699958801269,41.47000122070313 -7554,2017-05-11 18:00:00,33.84199905395508,7.789999961853027,88.2979965209961,9.302000045776367,-6.3540000915527335,-28.15699958801269,33.99900054931641 -7555,2017-05-11 19:00:00,36.104000091552734,8.963000297546387,88.2979965209961,9.461999893188477,-3.763000011444092,-28.15699958801269,32.46099853515625 -7556,2017-05-11 20:00:00,32.669998168945305,8.376999855041504,88.2979965209961,9.890999794006348,-6.216000080108643,-28.15699958801269,32.021499633789055 -7557,2017-05-11 21:00:00,31.74799919128418,8.461000442504883,88.2979965209961,10.052000045776367,-7.50600004196167,-28.15699958801269,30.702999114990234 -7558,2017-05-11 22:00:00,34.17699813842773,9.29800033569336,88.2979965209961,10.159000396728516,-3.635999917984009,-28.15699958801269,30.702999114990234 -7559,2017-05-11 23:00:00,28.73200035095215,8.461000442504883,88.2979965209961,9.99899959564209,-6.162000179290772,-28.15699958801269,30.043500900268555 -7560,2017-05-12 00:00:00,28.899999618530277,8.041999816894531,88.2979965209961,9.649999618530272,-7.314000129699707,-28.15699958801269,28.725500106811523 -7561,2017-05-12 01:00:00,27.895000457763672,7.958000183105469,88.2979965209961,9.32800006866455,-6.02400016784668,-28.15699958801269,28.06649971008301 -7562,2017-05-12 02:00:00,25.80100059509277,6.86899995803833,88.2979965209961,8.899999618530273,-7.25,-28.15699958801269,27.84700012207031 -7563,2017-05-12 03:00:00,26.972999572753903,8.376999855041504,88.2979965209961,9.838000297546388,-6.056000232696532,-28.15699958801269,27.1875 -7564,2017-05-12 04:00:00,26.88999938964844,7.037000179290772,88.2979965209961,8.765000343322754,-7.323999881744385,-28.15699958801269,25.43000030517578 -7565,2017-05-12 05:00:00,25.80100059509277,6.7849998474121085,88.2979965209961,8.711999893188478,-6.077000141143799,-28.15699958801269,24.33099937438965 -7566,2017-05-12 06:00:00,26.30299949645996,6.114999771118164,88.2979965209961,8.14900016784668,-7.355999946594237,-28.15699958801269,23.45199966430664 -7567,2017-05-12 07:00:00,28.229999542236328,6.86899995803833,88.2979965209961,8.229000091552733,-6.0879998207092285,-28.15699958801269,23.45199966430664 -7568,2017-05-12 08:00:00,27.05699920654297,5.445000171661377,88.2979965209961,7.3979997634887695,-7.323999881744385,-28.15699958801269,24.11100006103516 -7569,2017-05-12 09:00:00,32.250999450683594,9.21399974822998,88.2979965209961,10.560999870300291,-7.238999843597412,-28.15699958801269,24.55100059509277 -7570,2017-05-12 10:00:00,30.492000579833984,5.696000099182129,88.2979965209961,7.077000141143799,-5.992000102996826,-28.15699958801269,24.77050018310547 -7571,2017-05-12 11:00:00,34.17699813842773,8.628000259399414,88.2979965209961,9.784000396728516,-4.776000022888184,-28.15699958801269,25.86899948120117 -7572,2017-05-12 12:00:00,33.17200088500977,7.623000144958496,88.2979965209961,8.979999542236328,-5.992000102996826,-28.15699958801269,29.824499130249023 -7573,2017-05-12 13:00:00,31.58099937438965,7.789999961853027,88.2979965209961,8.657999992370605,-4.776000022888184,-28.15699958801269,33.120498657226555 -7574,2017-05-12 14:00:00,31.66399955749512,8.208999633789062,88.2979965209961,9.274999618530272,-6.033999919891357,-28.15699958801269,37.29499816894531 -7575,2017-05-12 15:00:00,34.0099983215332,9.381999969482422,88.2979965209961,10.37399959564209,-6.056000232696532,-28.15699958801269,39.272499084472656 -7576,2017-05-12 16:00:00,33.674999237060554,8.795999526977539,88.2979965209961,9.91800022125244,-6.065999984741211,-28.15699958801269,37.73450088500977 -7577,2017-05-12 17:00:00,32.08300018310547,7.789999961853027,88.2979965209961,9.11400032043457,-6.065999984741211,-28.15699958801269,35.5369987487793 -7578,2017-05-12 18:00:00,34.68000030517578,9.04699993133545,88.2979965209961,10.07900047302246,-6.065999984741211,-28.15699958801269,33.99900054931641 -7579,2017-05-12 19:00:00,33.25600051879883,7.539000034332275,88.2979965209961,8.310000419616701,-4.74399995803833,-28.15699958801269,32.46099853515625 -7580,2017-05-12 20:00:00,35.182998657226555,8.963000297546387,88.2979965209961,9.91800022125244,-5.96999979019165,-28.15699958801269,30.92250061035156 -7581,2017-05-12 21:00:00,31.2450008392334,7.958000183105469,88.2979965209961,9.48900032043457,-5.992000102996826,-28.15699958801269,29.60449981689453 -7582,2017-05-12 22:00:00,32.16699981689453,8.628000259399414,88.2979965209961,9.91800022125244,-5.992000102996826,-28.15699958801269,28.94499969482422 -7583,2017-05-12 23:00:00,30.239999771118164,8.461000442504883,88.2979965209961,9.864999771118164,-5.948999881744385,-28.15699958801269,28.06649971008301 -7584,2017-05-13 00:00:00,26.88999938964844,7.623000144958496,88.2979965209961,9.48900032043457,-7.228000164031982,-28.15699958801269,27.62700080871582 -7585,2017-05-13 01:00:00,23.28700065612793,6.366000175476074,88.2979965209961,8.657999992370605,-8.539999961853027,-28.15699958801269,26.968000411987305 -7586,2017-05-13 02:00:00,26.88999938964844,7.454999923706055,88.2979965209961,9.0600004196167,-6.02400016784668,-28.15699958801269,26.30850028991699 -7587,2017-05-13 03:00:00,23.20400047302246,5.52899980545044,88.2979965209961,7.290999889373777,-6.02400016784668,-28.15699958801269,26.30850028991699 -7588,2017-05-13 04:00:00,24.375999450683597,6.7849998474121085,88.2979965209961,8.444000244140625,-6.130000114440918,-28.15699958801269,25.86899948120117 -7589,2017-05-13 05:00:00,25.1299991607666,6.701000213623048,88.2979965209961,8.550999641418457,-7.4099998474121085,-28.15699958801269,25.43000030517578 -7590,2017-05-13 06:00:00,28.983999252319336,7.958000183105469,88.2979965209961,9.086999893188477,-4.914999961853027,-28.15699958801269,24.989999771118164 -7591,2017-05-13 07:00:00,27.22500038146973,7.454999923706055,88.2979965209961,9.248000144958496,-7.39900016784668,-28.15699958801269,26.08849906921387 -7592,2017-05-13 08:00:00,23.1200008392334,5.78000020980835,88.2979965209961,8.14900016784668,-8.720999717712402,-28.15699958801269,28.06649971008301 -7593,2017-05-13 09:00:00,28.062000274658203,7.539000034332275,88.2979965209961,9.48900032043457,-7.484000205993652,-28.15699958801269,31.14249992370605 -7594,2017-05-13 10:00:00,28.062000274658203,6.618000030517577,88.2979965209961,8.496999740600586,-7.484000205993652,-28.15699958801269,34.438499450683594 -7595,2017-05-13 11:00:00,30.57500076293945,8.461000442504883,88.2979965209961,10.159000396728516,-8.699999809265138,-28.15699958801269,39.0525016784668 -7596,2017-05-13 12:00:00,30.40800094604492,7.706999778747559,88.2979965209961,9.677000045776367,-8.77400016784668,-28.15699958801269,40.81050109863281 -7597,2017-05-13 13:00:00,28.31399917602539,7.454999923706055,88.2979965209961,9.649999618530272,-7.538000106811522,-28.15699958801269,43.227500915527344 -7598,2017-05-13 14:00:00,29.23500061035156,8.041999816894531,88.2979965209961,10.024999618530272,-8.763999938964844,-28.15699958801269,45.86449813842773 -7599,2017-05-13 15:00:00,28.64900016784668,7.623000144958496,88.2979965209961,9.354999542236328,-7.579999923706055,-28.15699958801269,46.9630012512207 -7600,2017-05-13 16:00:00,30.82699966430664,8.711999893188478,88.2979965209961,11.017000198364258,-8.838000297546387,-28.15699958801269,45.20500183105469 -7601,2017-05-13 17:00:00,32.250999450683594,7.288000106811522,88.2979965209961,9.006999969482422,-8.97700023651123,-28.15699958801269,43.22800064086914 -7602,2017-05-13 18:00:00,30.82699966430664,7.874000072479247,88.2979965209961,9.729999542236328,-7.739999771118164,-28.15699958801269,41.68949890136719 -7603,2017-05-13 19:00:00,26.30299949645996,5.445000171661377,88.2979965209961,7.585999965667725,-7.782999992370605,-28.15699958801269,40.1515007019043 -7604,2017-05-13 20:00:00,29.98900032043457,7.706999778747559,88.2979965209961,9.838000297546388,-9.029999732971191,-28.15699958801269,37.73450088500977 -7605,2017-05-13 21:00:00,31.32900047302246,7.288000106811522,88.2979965209961,9.32800006866455,-7.815000057220459,-28.15699958801269,35.97650146484375 -7606,2017-05-13 22:00:00,31.32900047302246,8.963000297546387,88.2979965209961,10.829999923706056,-9.114999771118164,-28.15699958801269,34.65800094604492 -7607,2017-05-13 23:00:00,28.983999252319336,8.293000221252441,88.2979965209961,10.401000022888184,-7.900000095367432,-28.15699958801269,33.77899932861328 -7608,2017-05-14 00:00:00,28.899999618530277,7.874000072479247,88.2979965209961,10.024999618530272,-7.900000095367432,-28.15699958801269,33.34000015258789 -7609,2017-05-14 01:00:00,22.450000762939453,4.859000205993652,88.2979965209961,7.23799991607666,-9.12600040435791,-28.15699958801269,32.900501251220696 -7610,2017-05-14 02:00:00,25.1299991607666,5.947999954223633,88.2979965209961,8.550999641418457,-9.265000343322754,-28.15699958801269,32.46099853515625 -7611,2017-05-14 03:00:00,25.46500015258789,7.623000144958496,88.2979965209961,9.972000122070312,-9.265000343322754,-28.15699958801269,31.80200004577637 -7612,2017-05-14 04:00:00,26.47100067138672,7.789999961853027,88.2979965209961,10.133000373840332,-8.048999786376951,-28.15699958801269,30.92300033569336 -7613,2017-05-14 05:00:00,28.145999908447266,7.874000072479247,88.2979965209961,9.810999870300291,-8.048999786376951,-28.15699958801269,30.26350021362305 -7614,2017-05-14 06:00:00,25.88400077819824,6.618000030517577,88.2979965209961,9.034000396728516,-8.071000099182129,-28.15699958801269,29.38500022888184 -7615,2017-05-14 07:00:00,27.726999282836918,7.623000144958496,88.2979965209961,9.649999618530272,-8.071000099182129,-28.15699958801269,29.82399940490723 -7616,2017-05-14 08:00:00,24.208999633789062,5.276999950408936,88.2979965209961,7.559000015258789,-9.402999877929688,-28.15699958801269,31.582000732421875 -7617,2017-05-14 09:00:00,31.413000106811523,8.376999855041504,88.2979965209961,10.052000045776367,-8.177000045776367,-28.15699958801269,34.437999725341804 -7618,2017-05-14 10:00:00,25.548999786376957,4.775000095367432,88.2979965209961,6.995999813079834,-8.177000045776367,-28.15699958801269,36.85549926757813 -7619,2017-05-14 11:00:00,30.743000030517567,6.533999919891357,88.2979965209961,8.470999717712402,-8.208999633789062,-28.15699958801269,39.93149948120117 -7620,2017-05-14 12:00:00,31.58099937438965,7.288000106811522,88.2979965209961,9.086999893188477,-6.908999919891357,-28.15699958801269,41.90900039672852 -7621,2017-05-14 13:00:00,31.32900047302246,7.623000144958496,88.2979965209961,9.034000396728516,-8.145000457763674,-28.15699958801269,43.88650131225586 -7622,2017-05-14 14:00:00,27.81100082397461,6.2829999923706055,88.2979965209961,8.416999816894531,-8.092000007629395,-28.15699958801269,45.64450073242188 -7623,2017-05-14 15:00:00,23.790000915527344,4.188000202178955,88.2979965209961,6.138999938964844,-8.092000007629395,-28.15699958801269,44.32600021362305 -7624,2017-05-14 16:00:00,31.413000106811523,7.119999885559082,88.2979965209961,8.604999542236326,-6.822999954223633,-28.15699958801269,42.3484992980957 -7625,2017-05-14 17:00:00,30.90999984741211,7.037000179290772,88.2979965209961,8.765000343322754,-6.940999984741211,-28.15699958801269,39.71149826049805 -7626,2017-05-14 18:00:00,27.47599983215332,5.696000099182129,88.2979965209961,7.639999866485598,-6.951000213623048,-28.15699958801269,37.07550048828125 -7627,2017-05-14 19:00:00,28.39699935913086,5.361000061035156,88.2979965209961,7.23799991607666,-6.876999855041504,-28.15699958801269,35.97650146484375 -7628,2017-05-14 20:00:00,30.40800094604492,6.198999881744385,88.2979965209961,8.041999816894531,-6.88700008392334,-28.15699958801269,34.65800094604492 -7629,2017-05-14 21:00:00,30.492000579833984,7.037000179290772,88.2979965209961,7.907999992370605,-5.607999801635742,-28.15699958801269,33.77899932861328 -7630,2017-05-14 22:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,-8.11299991607666,-28.15699958801269,33.34000015258789 -7631,2017-05-14 23:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,-8.11299991607666,-28.15699958801269,33.34000015258789 -7632,2017-05-15 00:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,-8.11299991607666,-28.15699958801269,33.34000015258789 -7633,2017-05-15 01:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,0.0,-28.15699958801269,33.34000015258789 -7634,2017-05-15 02:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,0.0,-28.15699958801269,33.34000015258789 -7635,2017-05-15 03:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,0.0,-28.15699958801269,33.34000015258789 -7636,2017-05-15 04:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,0.0,-28.15699958801269,33.34000015258789 -7637,2017-05-15 05:00:00,31.58099937438965,6.7849998474121085,88.2979965209961,8.121999740600586,-4.48799991607666,-28.15699958801269,33.34000015258789 -7638,2017-05-15 06:00:00,28.39699935913086,6.7849998474121085,88.2979965209961,8.336999893188478,-5.736000061035156,-28.15699958801269,28.506000518798828 -7639,2017-05-15 07:00:00,28.73200035095215,6.7849998474121085,88.2979965209961,7.934999942779541,-4.531000137329102,-28.15699958801269,28.506000518798828 -7640,2017-05-15 08:00:00,25.381999969482425,4.690999984741211,88.2979965209961,6.460000038146973,-5.831999778747559,-28.15699958801269,29.38500022888184 -7641,2017-05-15 09:00:00,33.92599868774414,8.461000442504883,88.2979965209961,8.873000144958496,-4.563000202178955,-28.15699958801269,30.482999801635746 -7642,2017-05-15 10:00:00,32.58599853515625,7.037000179290772,88.2979965209961,7.665999889373777,-3.3480000495910645,-28.15699958801269,31.80200004577637 -7643,2017-05-15 11:00:00,33.088001251220696,7.037000179290772,88.2979965209961,7.559000015258789,-3.3480000495910645,-1.3329999446868896,32.72949981689453 -7644,2017-05-15 12:00:00,35.76900100708008,9.21399974822998,88.2979965209961,9.729999542236328,-3.3480000495910645,-1.3329999446868896,32.72949981689453 -7645,2017-05-15 13:00:00,29.738000869750977,7.203999996185303,88.2979965209961,8.14900016784668,-3.336999893188477,-1.3329999446868896,32.06999969482422 -7646,2017-05-15 14:00:00,36.02000045776367,9.29800033569336,88.2979965209961,9.54300022125244,-3.2939999103546143,-1.3329999446868896,31.631000518798828 -7647,2017-05-15 15:00:00,34.68000030517578,8.208999633789062,88.2979965209961,8.73900032043457,-3.325999975204468,-1.3329999446868896,30.75200080871582 -7648,2017-05-15 16:00:00,37.277000427246094,9.800999641418455,88.2979965209961,10.07900047302246,-3.4119999408721924,-1.3329999446868896,30.75200080871582 -7649,2017-05-15 17:00:00,37.52799987792969,9.21399974822998,88.2979965209961,9.890999794006348,-3.380000114440918,-1.3329999446868896,30.312000274658203 -7650,2017-05-15 18:00:00,34.59600067138672,8.041999816894531,88.2979965209961,8.604999542236326,-3.380000114440918,-1.3329999446868896,29.87299919128418 -7651,2017-05-15 19:00:00,36.94200134277344,8.628000259399414,88.2979965209961,9.220999717712402,-3.380000114440918,-1.3329999446868896,29.653499603271484 -7652,2017-05-15 20:00:00,35.85300064086914,7.958000183105469,88.2979965209961,8.604999542236326,-3.380000114440918,-1.3329999446868896,29.43400001525879 -7653,2017-05-15 21:00:00,36.60699844360352,8.461000442504883,88.2979965209961,8.203000068664549,-1.2899999618530271,0.0,28.99399948120117 -7654,2017-05-15 22:00:00,35.43399810791016,9.465999603271484,88.2979965209961,9.91800022125244,-3.838000059127808,-1.22599995136261,28.77449989318848 -7655,2017-05-15 23:00:00,33.50699996948242,9.717000007629396,88.2979965209961,10.74899959564209,-3.838000059127808,-1.22599995136261,28.55500030517578 -7656,2017-05-16 00:00:00,32.75299835205078,9.04699993133545,88.2979965209961,9.48900032043457,-3.2939999103546143,-1.2150000333786009,28.334999084472656 -7657,2017-05-16 01:00:00,25.1299991607666,5.863999843597412,88.2979965209961,7.184000015258789,-4.616000175476074,-1.2690000534057615,28.114999771118164 -7658,2017-05-16 02:00:00,29.98900032043457,7.454999923706055,88.2979965209961,8.630999565124513,-4.935999870300293,-1.2150000333786009,27.89550018310547 -7659,2017-05-16 03:00:00,30.072999954223643,8.293000221252441,88.2979965209961,8.95300006866455,-3.720999956130981,-1.2150000333786009,27.23600006103516 -7660,2017-05-16 04:00:00,32.83700180053711,8.628000259399414,88.2979965209961,9.48900032043457,-3.720999956130981,-1.2150000333786009,26.35700035095215 -7661,2017-05-16 05:00:00,30.239999771118164,7.874000072479247,88.2979965209961,9.11400032043457,-4.947000026702881,-1.2150000333786009,25.47900009155273 -7662,2017-05-16 06:00:00,32.58599853515625,7.958000183105469,88.2979965209961,9.194000244140623,-4.947000026702881,-1.2150000333786009,25.03899955749512 -7663,2017-05-16 07:00:00,30.743000030517567,7.454999923706055,88.2979965209961,7.934999942779541,-3.3480000495910645,-1.2150000333786009,25.47900009155273 -7664,2017-05-16 08:00:00,31.413000106811523,6.618000030517577,88.2979965209961,7.0229997634887695,-2.111000061035156,0.0,27.23600006103516 -7665,2017-05-16 09:00:00,31.99900054931641,8.208999633789062,88.2979965209961,8.979999542236328,-4.626999855041504,-1.2150000333786009,30.3125 -7666,2017-05-16 10:00:00,31.413000106811523,6.86899995803833,88.2979965209961,7.290999889373777,-3.390000104904175,-1.2150000333786009,32.94900131225586 -7667,2017-05-16 11:00:00,34.345001220703125,7.372000217437744,88.2979965209961,7.559000015258789,-3.390000104904175,0.0,37.34400177001953 -7668,2017-05-16 12:00:00,33.674999237060554,8.208999633789062,88.2979965209961,8.550999641418457,-2.174999952316284,-1.22599995136261,39.32099914550781 -7669,2017-05-16 13:00:00,35.43399810791016,9.550000190734863,88.2979965209961,10.105999946594238,-3.486000061035156,-1.2150000333786009,40.63949966430664 -7670,2017-05-16 14:00:00,35.85300064086914,9.717000007629396,88.2979965209961,9.784000396728516,-3.4219999313354488,-1.2369999885559082,42.83700180053711 -7671,2017-05-16 15:00:00,34.345001220703125,9.04699993133545,88.2979965209961,10.07900047302246,-4.370999813079834,-1.2690000534057615,43.49599838256836 -7672,2017-05-16 16:00:00,35.349998474121094,8.878999710083008,88.2979965209961,9.70400047302246,-4.370999813079834,-1.2690000534057615,42.397499084472656 -7673,2017-05-16 17:00:00,36.60699844360352,8.878999710083008,88.2979965209961,9.595999717712402,-4.434999942779541,-1.2690000534057615,39.32099914550781 -7674,2017-05-16 18:00:00,37.025001525878906,9.381999969482422,88.2979965209961,10.185999870300291,-4.434999942779541,-1.2690000534057615,37.124000549316406 -7675,2017-05-16 19:00:00,32.75299835205078,6.953000068664551,88.2979965209961,7.934999942779541,-4.563000202178955,-1.2690000534057615,34.926498413085945 -7676,2017-05-16 20:00:00,36.35499954223633,8.461000442504883,88.2979965209961,8.791999816894531,-2.740000009536743,-1.2690000534057615,32.72949981689453 -7677,2017-05-16 21:00:00,36.1879997253418,9.29800033569336,88.2979965209961,10.024999618530272,-3.3480000495910645,-1.2690000534057615,30.97150039672852 -7678,2017-05-16 22:00:00,33.92599868774414,9.21399974822998,88.2979965209961,10.185999870300291,-4.59499979019165,-1.2690000534057615,29.87299919128418 -7679,2017-05-16 23:00:00,31.916000366210927,8.795999526977539,88.2979965209961,9.756999969482422,-4.616000175476074,-1.2690000534057615,28.99399948120117 -7680,2017-05-17 00:00:00,27.726999282836918,6.198999881744385,88.2979965209961,7.263999938964844,-4.818999767303467,-1.2690000534057615,28.114999771118164 -7681,2017-05-17 01:00:00,28.899999618530277,7.203999996185303,88.2979965209961,8.310000419616701,-4.926000118255615,-1.2690000534057615,27.23600006103516 -7682,2017-05-17 02:00:00,30.57500076293945,8.461000442504883,88.2979965209961,9.461999893188477,-4.861999988555908,-1.2690000534057615,26.57699966430664 -7683,2017-05-17 03:00:00,29.738000869750977,8.125,88.2979965209961,9.302000045776367,-4.840000152587892,-1.2690000534057615,25.69849967956543 -7684,2017-05-17 04:00:00,28.899999618530277,7.539000034332275,88.2979965209961,8.416999816894531,-3.4219999313354488,-1.2580000162124634,25.03899955749512 -7685,2017-05-17 05:00:00,31.32900047302246,8.208999633789062,88.2979965209961,9.70400047302246,-4.74399995803833,-1.2580000162124634,24.60000038146973 -7686,2017-05-17 06:00:00,31.916000366210927,8.293000221252441,88.2979965209961,8.979999542236328,-3.220000028610228,-1.2580000162124634,24.3799991607666 -7687,2017-05-17 07:00:00,34.261001586914055,9.21399974822998,88.2979965209961,9.54300022125244,-3.1559998989105225,-1.2580000162124634,25.03899955749512 -7688,2017-05-17 08:00:00,24.795000076293945,4.941999912261963,88.2979965209961,6.058000087738037,-5.181000232696533,-1.2580000162124634,27.236499786376957 -7689,2017-05-17 09:00:00,34.68000030517578,8.963000297546387,88.2979965209961,9.32800006866455,-3.4539999961853027,-1.406999945640564,30.53199958801269 -7690,2017-05-17 10:00:00,28.481000900268555,5.863999843597412,88.2979965209961,6.620999813079834,-2.1640000343322754,-1.22599995136261,33.60850143432617 -7691,2017-05-17 11:00:00,29.65399932861328,6.618000030517577,88.2979965209961,7.747000217437744,-3.390000104904175,-1.3109999895095823,37.78300094604492 -7692,2017-05-17 12:00:00,26.55400085449219,6.031000137329103,88.2979965209961,7.263999938964844,-3.4219999313354488,-1.3109999895095823,39.10150146484375 -7693,2017-05-17 13:00:00,26.30299949645996,5.947999954223633,88.2979965209961,6.995999813079834,-4.638000011444092,-1.3109999895095823,40.63949966430664 -7694,2017-05-17 14:00:00,24.459999084472656,6.366000175476074,88.2979965209961,7.452000141143799,-4.414000034332275,-1.3109999895095823,42.61750030517578 -7695,2017-05-17 15:00:00,33.088001251220696,9.968000411987305,88.2979965209961,10.347000122070312,-2.8359999656677246,-1.2690000534057615,43.49599838256836 -7696,2017-05-17 16:00:00,32.333999633789055,8.543999671936035,88.2979965209961,8.979999542236328,-2.719000101089477,-1.2790000438690186,41.51850128173828 -7697,2017-05-17 17:00:00,35.76900100708008,9.968000411987305,88.2979965209961,10.37399959564209,-4.105000019073486,-1.2790000438690186,39.32149887084961 -7698,2017-05-17 18:00:00,35.76900100708008,9.381999969482422,88.2979965209961,9.729999542236328,-4.061999797821045,-1.2790000438690186,37.78300094604492 -7699,2017-05-17 19:00:00,30.743000030517567,7.539000034332275,88.2979965209961,8.578000068664549,-4.0939998626708975,-1.2790000438690186,36.0255012512207 -7700,2017-05-17 20:00:00,32.250999450683594,9.21399974822998,88.2979965209961,10.052000045776367,-4.105000019073486,-1.2790000438690186,33.827999114990234 -7701,2017-05-17 21:00:00,33.674999237060554,10.052000045776367,88.2979965209961,10.855999946594238,-4.254000186920166,-1.22599995136261,32.72949981689453 -7702,2017-05-17 22:00:00,34.68000030517578,11.979000091552734,88.2979965209961,12.812999725341797,-4.339000225067139,-1.22599995136261,31.850500106811523 -7703,2017-05-17 23:00:00,33.088001251220696,11.057000160217283,88.2979965209961,11.66100025177002,-4.339000225067139,-1.22599995136261,31.19149971008301 -7704,2017-05-18 00:00:00,32.250999450683594,10.973999977111816,88.2979965209961,11.875,-4.4780001640319815,-1.22599995136261,30.53199958801269 -7705,2017-05-18 01:00:00,29.98900032043457,10.220000267028809,88.2979965209961,11.366000175476074,-4.455999851226807,-1.3009999990463257,30.09250068664551 -7706,2017-05-18 02:00:00,27.895000457763672,9.968000411987305,88.2979965209961,11.043999671936035,-4.455999851226807,-1.3009999990463257,30.09250068664551 -7707,2017-05-18 03:00:00,31.32900047302246,10.890000343322754,88.2979965209961,11.795000076293944,-4.4670000076293945,-1.3009999990463257,29.653499603271484 -7708,2017-05-18 04:00:00,28.81599998474121,9.381999969482422,88.2979965209961,10.614999771118164,-4.4780001640319815,-1.3009999990463257,29.214000701904297 -7709,2017-05-18 05:00:00,33.34000015258789,11.057000160217283,88.2979965209961,11.954999923706056,-4.616000175476074,-1.22599995136261,28.554500579833984 -7710,2017-05-18 06:00:00,32.92100143432617,10.973999977111816,88.2979965209961,12.062999725341797,-4.616000175476074,-1.22599995136261,28.334999084472656 -7711,2017-05-18 07:00:00,32.83700180053711,10.55500030517578,88.2979965209961,11.178000450134276,-3.26200008392334,-1.2369999885559082,28.99449920654297 -7712,2017-05-18 08:00:00,30.40800094604492,8.461000442504883,88.2979965209961,9.381999969482422,-3.92300009727478,-1.2369999885559082,30.093000411987305 -7713,2017-05-18 09:00:00,36.52299880981445,11.309000015258787,88.2979965209961,11.366000175476074,-3.92300009727478,0.0,32.94900131225586 -7714,2017-05-18 10:00:00,31.16200065612793,7.874000072479247,88.2979965209961,8.711999893188478,-3.92300009727478,-1.22599995136261,35.58599853515625 -7715,2017-05-18 11:00:00,31.66399955749512,7.874000072479247,88.2979965209961,8.791999816894531,-3.92300009727478,-1.22599995136261,39.98049926757813 -7716,2017-05-18 12:00:00,36.1879997253418,10.38700008392334,88.2979965209961,10.776000022888184,-2.815000057220459,-1.22599995136261,42.1775016784668 -7717,2017-05-18 13:00:00,35.182998657226555,10.722000122070312,88.2979965209961,11.097999572753906,-3.986999988555908,-1.2580000162124634,43.93550109863281 -7718,2017-05-18 14:00:00,36.68999862670898,11.727999687194824,88.2979965209961,12.222999572753904,-4.105000019073486,-1.2150000333786009,46.352500915527344 -7719,2017-05-18 15:00:00,35.0989990234375,10.805999755859377,88.2979965209961,11.178000450134276,-2.7929999828338623,-1.2150000333786009,46.79199981689453 -7720,2017-05-18 16:00:00,36.77399826049805,10.973999977111816,88.2979965209961,11.418999671936035,-4.339000225067139,-1.22599995136261,44.81449890136719 -7721,2017-05-18 17:00:00,32.417999267578125,8.125,88.2979965209961,8.630999565124513,-2.740000009536743,-1.2369999885559082,42.83700180053711 -7722,2017-05-18 18:00:00,36.858001708984375,10.303000450134276,88.2979965209961,10.829999923706056,-3.82699990272522,-1.2369999885559082,41.51850128173828 -7723,2017-05-18 19:00:00,37.77899932861328,9.465999603271484,88.2979965209961,9.461999893188477,-2.463000059127808,0.0,39.760501861572266 -7724,2017-05-18 20:00:00,34.345001220703125,8.208999633789062,88.2979965209961,8.604999542236326,-2.463000059127808,-1.2369999885559082,38.22299957275391 -7725,2017-05-18 21:00:00,36.1879997253418,9.885000228881836,88.2979965209961,10.401000022888184,-4.019000053405762,-1.246999979019165,36.90399932861328 -7726,2017-05-18 22:00:00,36.60699844360352,11.309000015258787,88.2979965209961,12.03600025177002,-3.986999988555908,-1.22599995136261,36.025001525878906 -7727,2017-05-18 23:00:00,33.088001251220696,10.55500030517578,88.2979965209961,11.204999923706056,-3.9660000801086426,-1.22599995136261,35.145999908447266 -7728,2017-05-19 00:00:00,31.16200065612793,9.04699993133545,88.2979965209961,9.972000122070312,-4.040999889373778,-1.2150000333786009,34.487499237060554 -7729,2017-05-19 01:00:00,28.81599998474121,8.628000259399414,88.2979965209961,9.409000396728516,-2.8570001125335693,-1.2150000333786009,33.60850143432617 -7730,2017-05-19 02:00:00,27.05699920654297,7.203999996185303,88.2979965209961,8.041999816894531,-2.6440000534057617,-1.2580000162124634,33.16899871826172 -7731,2017-05-19 03:00:00,23.790000915527344,5.947999954223633,88.2979965209961,6.701000213623048,-2.687000036239624,-1.246999979019165,32.94900131225586 -7732,2017-05-19 04:00:00,23.37100028991699,5.863999843597412,88.2979965209961,6.7820000648498535,-2.4730000495910645,-1.22599995136261,32.5099983215332 -7733,2017-05-19 05:00:00,24.459999084472656,5.611999988555908,88.2979965209961,6.298999786376952,-2.4730000495910645,-1.2150000333786009,31.850500106811523 -7734,2017-05-19 06:00:00,24.71199989318848,7.037000179290772,88.2979965209961,8.015000343322754,-3.954999923706055,-1.2369999885559082,31.19099998474121 -7735,2017-05-19 07:00:00,20.1879997253418,0.0,88.2979965209961,4.477000236511231,-3.9340000152587886,-1.246999979019165,31.19099998474121 -7736,2017-05-19 08:00:00,19.43400001525879,0.0,88.2979965209961,4.879000186920166,-3.9340000152587886,-1.22599995136261,30.97150039672852 -7737,2017-05-19 09:00:00,30.1560001373291,6.953000068664551,88.2979965209961,7.692999839782715,-3.9340000152587886,-1.22599995136261,31.631000518798828 -7738,2017-05-19 10:00:00,32.250999450683594,7.958000183105469,88.2979965209961,8.416999816894531,-3.88100004196167,-1.22599995136261,32.94900131225586 -7739,2017-05-19 11:00:00,35.014999389648445,8.461000442504883,88.2979965209961,8.925999641418457,-3.88100004196167,-1.22599995136261,36.24499893188477 -7740,2017-05-19 12:00:00,36.02000045776367,9.550000190734863,88.2979965209961,10.052000045776367,-4.0939998626708975,-1.2369999885559082,37.124000549316406 -7741,2017-05-19 13:00:00,38.03099822998047,10.973999977111816,88.2979965209961,11.28499984741211,-4.169000148773193,-1.2150000333786009,37.124000549316406 -7742,2017-05-19 14:00:00,37.52799987792969,11.392000198364258,88.2979965209961,11.5,-4.13700008392334,-1.2790000438690186,38.88199996948242 -7743,2017-05-19 15:00:00,38.11399841308594,11.225000381469728,88.2979965209961,11.472999572753904,-2.8570001125335693,-1.246999979019165,38.44250106811523 -7744,2017-05-19 16:00:00,32.501998901367195,9.381999969482422,88.2979965209961,11.312000274658203,-9.114999771118164,-2.440999984741211,38.22299957275391 -7745,2017-05-19 17:00:00,31.99900054931641,8.628000259399414,88.2979965209961,10.74899959564209,-10.31999969482422,-2.440999984741211,38.00299835205078 -7746,2017-05-19 18:00:00,29.48600006103516,7.789999961853027,88.2979965209961,9.864999771118164,-9.020000457763672,-3.6679999828338623,37.34400177001953 -7747,2017-05-19 19:00:00,31.74799919128418,8.795999526977539,88.2979965209961,10.803000450134276,-9.062000274658203,-3.6679999828338623,36.68450164794922 -7748,2017-05-19 20:00:00,32.250999450683594,9.21399974822998,88.2979965209961,11.446000099182127,-10.458999633789062,-3.6679999828338623,35.58599853515625 -7749,2017-05-19 21:00:00,29.56999969482422,8.461000442504883,88.2979965209961,10.855999946594238,-10.458999633789062,-3.6679999828338623,34.707000732421875 -7750,2017-05-19 22:00:00,27.64299964904785,7.203999996185303,88.2979965209961,10.024999618530272,-10.458999633789062,-3.6679999828338623,33.827999114990234 -7751,2017-05-19 23:00:00,25.80100059509277,7.706999778747559,88.2979965209961,10.90999984741211,-11.822999954223633,-3.6679999828338623,33.388999938964844 -7752,2017-05-20 00:00:00,22.450000762939453,5.696000099182129,88.2979965209961,8.630999565124513,-11.866000175476074,-3.6679999828338623,32.72949981689453 -7753,2017-05-20 01:00:00,25.214000701904297,7.454999923706055,88.2979965209961,10.37399959564209,-11.833999633789062,-3.0169999599456787,32.06999969482422 -7754,2017-05-20 02:00:00,24.125,7.372000217437744,88.2979965209961,10.267000198364258,-11.833999633789062,-2.996000051498413,31.19099998474121 -7755,2017-05-20 03:00:00,22.198999404907227,6.953000068664551,88.2979965209961,9.99899959564209,-11.833999633789062,-2.996000051498413,30.312000274658203 -7756,2017-05-20 04:00:00,23.37100028991699,7.706999778747559,88.2979965209961,10.803000450134276,-11.833999633789062,-2.996000051498413,29.87299919128418 -7757,2017-05-20 05:00:00,25.968000411987305,7.874000072479247,88.2979965209961,10.855999946594238,-11.833999633789062,-2.996000051498413,29.214000701904297 -7758,2017-05-20 06:00:00,25.548999786376957,7.958000183105469,88.2979965209961,10.883000373840332,-11.833999633789062,-2.868000030517578,28.99399948120117 -7759,2017-05-20 07:00:00,24.62800025939941,7.623000144958496,88.2979965209961,10.508000373840332,-11.866000175476074,-2.8570001125335693,29.43400001525879 -7760,2017-05-20 08:00:00,22.70100021362305,5.193999767303467,88.2979965209961,8.36299991607666,-11.866000175476074,-2.9210000038146973,30.75200080871582 -7761,2017-05-20 09:00:00,28.31399917602539,8.041999816894531,88.2979965209961,10.267000198364258,-10.51200008392334,-2.9210000038146973,33.16899871826172 -7762,2017-05-20 10:00:00,29.56999969482422,8.878999710083008,88.2979965209961,11.418999671936035,-11.791000366210938,-2.9210000038146973,36.90399932861328 -7763,2017-05-20 11:00:00,30.492000579833984,9.130999565124512,88.2979965209961,11.982000350952148,-13.050000190734863,-2.9210000038146973,41.73799896240234 -7764,2017-05-20 12:00:00,30.40800094604492,7.958000183105469,88.2979965209961,10.53499984741211,-10.277999877929688,-2.8469998836517334,43.93550109863281 -7765,2017-05-20 13:00:00,27.895000457763672,7.203999996185303,88.2979965209961,9.784000396728516,-10.267000198364258,-2.8469998836517334,44.81399917602539 -7766,2017-05-20 14:00:00,29.48600006103516,9.04699993133545,88.2979965209961,11.847999572753904,-11.482000350952148,-2.687000036239624,46.352500915527344 -7767,2017-05-20 15:00:00,30.82699966430664,9.04699993133545,88.2979965209961,11.258000373840332,-11.482000350952148,-2.687000036239624,45.69350051879883 -7768,2017-05-20 16:00:00,30.65900039672852,8.878999710083008,88.2979965209961,11.446000099182127,-11.37600040435791,-2.687000036239624,43.93550109863281 -7769,2017-05-20 17:00:00,32.08300018310547,9.130999565124512,88.2979965209961,11.687000274658203,-11.161999702453612,-2.8469998836517334,41.29850006103516 -7770,2017-05-20 18:00:00,31.916000366210927,8.795999526977539,88.2979965209961,10.668999671936035,-8.625,-2.8469998836517334,40.41999816894531 -7771,2017-05-20 19:00:00,31.916000366210927,8.795999526977539,88.2979965209961,10.668999671936035,-8.625,-2.8469998836517334,40.41999816894531 -7772,2017-05-20 20:00:00,31.916000366210927,8.795999526977539,88.2979965209961,10.668999671936035,-3.068000078201294,0.0,40.41999816894531 -7773,2017-05-20 21:00:00,28.899999618530277,7.958000183105469,88.2979965209961,10.29300022125244,-9.79800033569336,-2.8250000476837163,35.80550003051758 -7774,2017-05-20 22:00:00,24.87899971008301,6.366000175476074,88.2979965209961,8.657999992370605,-10.875,-2.8250000476837163,34.707000732421875 -7775,2017-05-20 23:00:00,18.429000854492188,4.440000057220459,88.2979965209961,7.692999839782715,-12.185999870300291,-2.8250000476837163,33.60850143432617 -7776,2017-05-21 00:00:00,17.256000518798828,0.0,88.2979965209961,6.164999961853027,-10.788999557495115,-2.8250000476837163,32.72949981689453 -7777,2017-05-21 01:00:00,22.114999771118164,5.52899980545044,88.2979965209961,8.015000343322754,-8.336999893188478,-2.8250000476837163,32.06999969482422 -7778,2017-05-21 02:00:00,20.020999908447266,0.0,88.2979965209961,6.031000137329103,-8.326999664306639,-2.8250000476837163,31.19099998474121 -7779,2017-05-21 03:00:00,25.04700088500977,6.198999881744385,88.2979965209961,8.685000419616701,-9.574000358581545,-2.8250000476837163,30.75200080871582 -7780,2017-05-21 04:00:00,27.559999465942383,6.953000068664551,88.2979965209961,8.899999618530273,-8.359000205993652,-2.8250000476837163,30.09250068664551 -7781,2017-05-21 05:00:00,26.386999130249023,6.2829999923706055,88.2979965209961,8.550999641418457,-8.326999664306639,-2.8250000476837163,29.43400001525879 -7782,2017-05-21 06:00:00,27.392000198364247,6.198999881744385,88.2979965209961,8.310000419616701,-8.326999664306639,-2.8250000476837163,29.214000701904297 -7783,2017-05-21 07:00:00,26.386999130249023,6.618000030517577,88.2979965209961,8.791999816894531,-9.585000038146973,-2.8250000476837163,30.312000274658203 -7784,2017-05-21 08:00:00,25.548999786376957,5.110000133514403,88.2979965209961,7.1040000915527335,-8.295000076293945,-2.8250000476837163,32.290000915527344 -7785,2017-05-21 09:00:00,31.077999114990234,8.543999671936035,88.2979965209961,10.37399959564209,-8.305000305175781,-2.8250000476837163,34.04800033569336 -7786,2017-05-21 10:00:00,32.250999450683594,7.789999961853027,88.2979965209961,9.0600004196167,-8.315999984741211,-2.8250000476837163,35.36600112915039 -7787,2017-05-21 11:00:00,22.450000762939453,5.193999767303467,88.2979965209961,8.121999740600586,-10.66100025177002,-2.8250000476837163,40.20000076293945 -7788,2017-05-21 12:00:00,20.60700035095215,4.60699987411499,88.2979965209961,7.907999992370605,-13.135000228881836,-2.8250000476837163,42.83700180053711 -7789,2017-05-21 13:00:00,22.28199958801269,4.941999912261963,88.2979965209961,8.255999565124513,-11.866000175476074,-2.8250000476837163,44.15549850463867 -7790,2017-05-21 14:00:00,26.55400085449219,7.203999996185303,88.2979965209961,9.461999893188477,-9.350000381469728,-2.815000057220459,44.81449890136719 -7791,2017-05-21 15:00:00,21.780000686645508,4.941999912261963,88.2979965209961,8.069000244140625,-13.241000175476074,-2.815000057220459,41.95800018310547 -7792,2017-05-21 16:00:00,20.10400009155273,4.775000095367432,88.2979965209961,7.98799991607666,-12.026000022888184,-2.815000057220459,41.29899978637695 -7793,2017-05-21 17:00:00,26.72200012207031,6.701000213623048,88.2979965209961,9.515999794006348,-12.026000022888184,-2.815000057220459,41.73799896240234 -7794,2017-05-21 18:00:00,23.035999298095703,5.611999988555908,88.2979965209961,8.657999992370605,-12.133000373840332,-2.815000057220459,41.07899856567383 -7795,2017-05-21 19:00:00,22.0310001373291,4.690999984741211,88.2979965209961,7.747000217437744,-12.133000373840332,-2.815000057220459,39.54100036621094 -7796,2017-05-21 20:00:00,19.51799964904785,4.105000019073486,88.2979965209961,7.665999889373777,-13.42300033569336,-2.943000078201294,38.00299835205078 -7797,2017-05-21 21:00:00,26.2189998626709,6.366000175476074,88.2979965209961,9.194000244140623,-12.196999549865724,-2.943000078201294,36.68450164794922 -7798,2017-05-21 22:00:00,27.97900009155273,8.795999526977539,88.2979965209961,11.875,-12.196999549865724,-4.296999931335448,35.58599853515625 -7799,2017-05-21 23:00:00,20.941999435424805,6.114999771118164,88.2979965209961,9.354999542236328,-11.994000434875488,-4.296999931335448,35.145999908447266 -7800,2017-05-22 00:00:00,18.51300048828125,4.859000205993652,88.2979965209961,8.121999740600586,-13.156000137329102,-4.296999931335448,34.707000732421875 -7801,2017-05-22 01:00:00,16.250999450683597,0.0,88.2979965209961,6.058000087738037,-10.71500015258789,-4.296999931335448,33.827999114990234 -7802,2017-05-22 02:00:00,16.92099952697754,4.105000019073486,88.2979965209961,7.210999965667725,-11.909000396728516,-4.296999931335448,33.388999938964844 -7803,2017-05-22 03:00:00,14.743000030517578,0.0,88.2979965209961,7.130000114440918,-11.909000396728516,-2.9210000038146973,32.94900131225586 -7804,2017-05-22 04:00:00,15.329999923706056,5.445000171661377,88.2979965209961,9.140999794006348,-14.350000381469728,-4.178999900817871,32.070499420166016 -7805,2017-05-22 05:00:00,14.407999992370604,0.0,88.2979965209961,7.452000141143799,-11.909000396728516,-4.178999900817871,31.410999298095703 -7806,2017-05-22 06:00:00,20.60700035095215,6.198999881744385,88.2979965209961,9.034000396728516,-10.55500030517578,-4.178999900817871,31.410999298095703 -7807,2017-05-22 07:00:00,21.61199951171875,6.198999881744385,88.2979965209961,8.845999717712402,-10.619000434875488,-2.943000078201294,31.410999298095703 -7808,2017-05-22 08:00:00,19.01499938964844,4.440000057220459,88.2979965209961,6.995999813079834,-9.371000289916992,-2.943000078201294,32.5099983215332 -7809,2017-05-22 09:00:00,25.214000701904297,5.947999954223633,88.2979965209961,8.550999641418457,-10.586999893188477,-2.8469998836517334,34.92699813842773 -7810,2017-05-22 10:00:00,29.40299987792969,6.114999771118164,88.2979965209961,8.444000244140625,-10.55500030517578,-2.8469998836517334,37.34349822998047 -7811,2017-05-22 11:00:00,34.261001586914055,9.550000190734863,88.2979965209961,11.446000099182127,-9.317999839782717,-2.8469998836517334,41.07899856567383 -7812,2017-05-22 12:00:00,33.84199905395508,9.29800033569336,88.2979965209961,11.418999671936035,-9.32900047302246,-2.8469998836517334,42.83700180053711 -7813,2017-05-22 13:00:00,34.68000030517578,9.717000007629396,88.2979965209961,11.633999824523926,-9.093999862670898,-2.8469998836517334,44.15549850463867 -7814,2017-05-22 14:00:00,32.83700180053711,9.885000228881836,88.2979965209961,12.008999824523926,-10.342000007629396,-2.8469998836517334,45.91299819946289 -7815,2017-05-22 15:00:00,32.08300018310547,9.717000007629396,88.2979965209961,11.928999900817873,-11.567999839782717,-2.7290000915527344,47.01150131225586 -7816,2017-05-22 16:00:00,32.16699981689453,9.381999969482422,88.2979965209961,11.446000099182127,-10.416000366210938,-2.7290000915527344,46.13249969482422 -7817,2017-05-22 17:00:00,33.42300033569336,8.376999855041504,88.2979965209961,10.37399959564209,-10.342000007629396,-4.051000118255615,43.93550109863281 -7818,2017-05-22 18:00:00,33.005001068115234,8.711999893188478,88.2979965209961,11.017000198364258,-10.20300006866455,-2.8359999656677246,41.95800018310547 -7819,2017-05-22 19:00:00,30.57500076293945,7.203999996185303,88.2979965209961,9.48900032043457,-10.138999938964844,-2.697000026702881,40.41999816894531 -7820,2017-05-22 20:00:00,34.68000030517578,9.04699993133545,88.2979965209961,11.017000198364258,-8.848999977111816,-2.697000026702881,39.32149887084961 -7821,2017-05-22 21:00:00,30.99399948120117,7.623000144958496,88.2979965209961,10.159000396728516,-10.086000442504885,-2.697000026702881,38.6619987487793 -7822,2017-05-22 22:00:00,29.48600006103516,8.208999633789062,88.2979965209961,10.96399974822998,-11.600000381469728,-3.913000106811523,38.00299835205078 -7823,2017-05-22 23:00:00,27.895000457763672,8.125,88.2979965209961,10.883000373840332,-11.600000381469728,-3.913000106811523,37.5634994506836 -7824,2017-05-23 00:00:00,26.30299949645996,7.288000106811522,88.2979965209961,10.07900047302246,-11.600000381469728,-3.913000106811523,37.34400177001953 -7825,2017-05-23 01:00:00,23.45499992370605,5.78000020980835,88.2979965209961,8.95300006866455,-12.836000442504885,-3.913000106811523,36.90399932861328 -7826,2017-05-23 02:00:00,23.790000915527344,7.037000179290772,88.2979965209961,10.159000396728516,-12.836000442504885,-3.913000106811523,36.46500015258789 -7827,2017-05-23 03:00:00,21.61199951171875,6.366000175476074,88.2979965209961,9.649999618530272,-12.836000442504885,-3.913000106811523,35.80550003051758 -7828,2017-05-23 04:00:00,21.61199951171875,4.440000057220459,88.2979965209961,7.747000217437744,-12.836000442504885,-3.913000106811523,35.145999908447266 -7829,2017-05-23 05:00:00,23.95800018310547,6.114999771118164,88.2979965209961,9.006999969482422,-11.609999656677244,-3.913000106811523,35.145999908447266 -7830,2017-05-23 06:00:00,27.559999465942383,7.119999885559082,88.2979965209961,9.56999969482422,-10.246000289916992,-3.913000106811523,32.94900131225586 -7831,2017-05-23 07:00:00,27.05699920654297,6.86899995803833,88.2979965209961,9.677000045776367,-11.6850004196167,-3.913000106811523,30.97150039672852 -7832,2017-05-23 08:00:00,23.53899955749512,4.859000205993652,88.2979965209961,8.015000343322754,-11.822999954223633,-3.913000106811523,30.312000274658203 -7833,2017-05-23 09:00:00,29.23500061035156,7.372000217437744,88.2979965209961,9.972000122070312,-11.822999954223633,-3.913000106811523,29.87299919128418 -7834,2017-05-23 10:00:00,34.429000854492195,7.789999961853027,88.2979965209961,8.444000244140625,-4.114999771118163,-1.2150000333786009,29.43400001525879 -7835,2017-05-23 11:00:00,37.61199951171875,8.795999526977539,88.2979965209961,8.069000244140625,0.0,0.0,28.99399948120117 -7836,2017-05-23 12:00:00,35.60100173950195,8.628000259399414,88.2979965209961,9.220999717712402,-5.330999851226807,-2.622999906539917,28.334999084472656 -7837,2017-05-23 13:00:00,38.36600112915039,9.800999641418455,88.2979965209961,9.99899959564209,-3.8059999942779537,-1.22599995136261,28.114999771118164 -7838,2017-05-23 14:00:00,37.44400024414063,10.052000045776367,88.2979965209961,10.668999671936035,-3.92300009727478,-1.246999979019165,28.334999084472656 -7839,2017-05-23 15:00:00,36.02000045776367,9.717000007629396,88.2979965209961,10.185999870300291,-4.072999954223634,-1.2150000333786009,27.89550018310547 -7840,2017-05-23 16:00:00,36.77399826049805,9.550000190734863,88.2979965209961,10.267000198364258,-4.243000030517578,-1.2150000333786009,28.99399948120117 -7841,2017-05-23 17:00:00,36.77399826049805,9.130999565124512,88.2979965209961,9.838000297546388,-4.019000053405762,-1.2369999885559082,28.77449989318848 -7842,2017-05-23 18:00:00,38.28200149536133,9.465999603271484,88.2979965209961,9.48900032043457,-2.7929999828338623,-1.2369999885559082,28.114999771118164 -7843,2017-05-23 19:00:00,29.56999969482422,6.618000030517577,88.2979965209961,8.819000244140625,-9.968000411987305,-2.45199990272522,27.89550018310547 -7844,2017-05-23 20:00:00,22.70100021362305,4.355999946594238,88.2979965209961,6.9689998626708975,-10.01099967956543,-2.8469998836517334,27.89550018310547 -7845,2017-05-23 21:00:00,29.066999435424805,7.037000179290772,88.2979965209961,9.48900032043457,-10.182000160217283,-2.8469998836517334,27.89550018310547 -7846,2017-05-23 22:00:00,26.63800048828125,7.288000106811522,88.2979965209961,9.784000396728516,-11.461000442504885,-2.8469998836517334,27.89550018310547 -7847,2017-05-23 23:00:00,23.95800018310547,6.366000175476074,88.2979965209961,9.54300022125244,-12.697999954223633,-2.803999900817871,27.45599937438965 -7848,2017-05-24 00:00:00,25.04700088500977,6.198999881744385,88.2979965209961,8.550999641418457,-10.255999565124512,-2.803999900817871,27.45599937438965 -7849,2017-05-24 01:00:00,20.69099998474121,4.775000095367432,88.2979965209961,7.907999992370605,-11.4399995803833,-2.719000101089477,27.01650047302246 -7850,2017-05-24 02:00:00,23.035999298095703,5.947999954223633,88.2979965209961,8.630999565124513,-11.397000312805176,-2.719000101089477,26.79700088500977 -7851,2017-05-24 03:00:00,19.183000564575195,4.5229997634887695,88.2979965209961,7.665999889373777,-12.644000053405762,-2.7290000915527344,26.57699966430664 -7852,2017-05-24 04:00:00,20.857999801635746,5.361000061035156,88.2979965209961,8.336999893188478,-11.248000144958496,-2.7290000915527344,26.35700035095215 -7853,2017-05-24 05:00:00,19.099000930786133,0.0,88.2979965209961,6.861999988555907,-11.109000205993652,-2.559000015258789,26.13750076293945 -7854,2017-05-24 06:00:00,23.70599937438965,6.449999809265138,88.2979965209961,9.034000396728516,-12.303000450134276,-2.559000015258789,26.13750076293945 -7855,2017-05-24 07:00:00,24.62800025939941,6.031000137329103,88.2979965209961,8.657999992370605,-11.07699966430664,-2.559000015258789,26.13750076293945 -7856,2017-05-24 08:00:00,22.53400039672852,0.0,88.2979965209961,6.2189998626708975,-9.883000373840332,-2.559000015258789,27.01650047302246 -7857,2017-05-24 09:00:00,27.64299964904785,7.203999996185303,88.2979965209961,9.729999542236328,-12.473999977111816,-2.559000015258789,29.43350028991699 -7858,2017-05-24 10:00:00,25.80100059509277,5.863999843597412,88.2979965209961,8.630999565124513,-11.194000244140623,-2.559000015258789,32.5099983215332 -7859,2017-05-24 11:00:00,28.481000900268555,6.114999771118164,88.2979965209961,8.336999893188478,-9.914999961853027,-2.559000015258789,36.24499893188477 -7860,2017-05-24 12:00:00,26.80599975585937,6.533999919891357,88.2979965209961,9.274999618530272,-12.42099952697754,-2.559000015258789,37.5634994506836 -7861,2017-05-24 13:00:00,27.726999282836918,7.119999885559082,88.2979965209961,9.838000297546388,-12.42099952697754,-2.559000015258789,39.98049926757813 -7862,2017-05-24 14:00:00,27.895000457763672,7.454999923706055,88.2979965209961,9.972000122070312,-11.152000427246094,-2.559000015258789,41.95800018310547 -7863,2017-05-24 15:00:00,26.88999938964844,7.288000106811522,88.2979965209961,9.70400047302246,-12.44200038909912,-2.463000059127808,42.617000579833984 -7864,2017-05-24 16:00:00,28.64900016784668,7.539000034332275,88.2979965209961,10.105999946594238,-12.44200038909912,-2.463000059127808,40.41949844360352 -7865,2017-05-24 17:00:00,30.239999771118164,7.037000179290772,88.2979965209961,9.32800006866455,-11.152000427246094,-2.463000059127808,37.5634994506836 -7866,2017-05-24 18:00:00,29.98900032043457,8.293000221252441,88.2979965209961,10.347000122070312,-12.378000259399414,-3.677999973297119,35.36600112915039 -7867,2017-05-24 19:00:00,25.548999786376957,5.445000171661377,88.2979965209961,8.095000267028809,-12.29300022125244,-3.677999973297119,33.60850143432617 -7868,2017-05-24 20:00:00,25.548999786376957,5.52899980545044,88.2979965209961,8.229000091552733,-12.29300022125244,-3.677999973297119,32.290000915527344 -7869,2017-05-24 21:00:00,29.98900032043457,7.623000144958496,88.2979965209961,9.756999969482422,-10.991999626159668,-2.5269999504089355,30.75200080871582 -7870,2017-05-24 22:00:00,26.47100067138672,7.119999885559082,88.2979965209961,9.972000122070312,-12.270999908447266,-2.5269999504089355,29.43400001525879 -7871,2017-05-24 23:00:00,26.47100067138672,7.372000217437744,88.2979965209961,9.56999969482422,-10.949000358581545,-2.5269999504089355,28.55500030517578 -7872,2017-05-25 00:00:00,23.70599937438965,6.618000030517577,88.2979965209961,9.409000396728516,-12.164999961853027,-2.5269999504089355,28.114999771118164 -7873,2017-05-25 01:00:00,24.62800025939941,7.037000179290772,88.2979965209961,9.409000396728516,-10.821000099182127,-2.5269999504089355,27.23600006103516 -7874,2017-05-25 02:00:00,23.87400054931641,6.449999809265138,88.2979965209961,9.11400032043457,-10.916999816894531,-2.6549999713897705,26.35700035095215 -7875,2017-05-25 03:00:00,23.37100028991699,5.78000020980835,88.2979965209961,8.041999816894531,-9.381999969482422,-2.6549999713897705,25.47900009155273 -7876,2017-05-25 04:00:00,23.53899955749512,6.198999881744385,88.2979965209961,8.390000343322754,-9.253999710083008,-2.6549999713897705,25.03899955749512 -7877,2017-05-25 05:00:00,23.035999298095703,6.7849998474121085,88.2979965209961,9.515999794006348,-11.866000175476074,-2.6549999713897705,24.60000038146973 -7878,2017-05-25 06:00:00,27.05699920654297,7.037000179290772,88.2979965209961,9.140999794006348,-9.392999649047852,-2.6549999713897705,24.15999984741211 -7879,2017-05-25 07:00:00,26.88999938964844,7.706999778747559,88.2979965209961,9.99899959564209,-10.71500015258789,-2.6549999713897705,24.60000038146973 -7880,2017-05-25 08:00:00,24.125,4.859000205993652,88.2979965209961,7.23799991607666,-10.71500015258789,-2.6549999713897705,26.35700035095215 -7881,2017-05-25 09:00:00,27.392000198364247,7.623000144958496,88.2979965209961,9.810999870300291,-9.425000190734863,-2.6549999713897705,28.99449920654297 -7882,2017-05-25 10:00:00,22.70100021362305,4.2719998359680185,88.2979965209961,6.728000164031982,-9.45699977874756,-2.6549999713897705,32.290000915527344 -7883,2017-05-25 11:00:00,28.39699935913086,7.119999885559082,88.2979965209961,9.409000396728516,-9.553000450134276,-2.6549999713897705,35.80550003051758 -7884,2017-05-25 12:00:00,29.48600006103516,8.963000297546387,88.2979965209961,10.803000450134276,-9.510000228881836,-2.6549999713897705,38.6619987487793 -7885,2017-05-25 13:00:00,30.492000579833984,10.052000045776367,88.2979965209961,11.687000274658203,-9.45699977874756,-2.6549999713897705,41.51850128173828 -7886,2017-05-25 14:00:00,30.1560001373291,9.885000228881836,88.2979965209961,11.553000450134276,-9.45699977874756,-2.6549999713897705,44.81399917602539 -7887,2017-05-25 15:00:00,30.1560001373291,9.04699993133545,88.2979965209961,10.614999771118164,-8.102999687194824,-2.6549999713897705,43.93550109863281 -7888,2017-05-25 16:00:00,28.73200035095215,7.789999961853027,88.2979965209961,9.864999771118164,-9.317999839782717,-2.6549999713897705,43.49649810791016 -7889,2017-05-25 17:00:00,29.319000244140625,7.874000072479247,88.2979965209961,10.239999771118164,-10.67199993133545,-2.6549999713897705,41.73849868774414 -7890,2017-05-25 18:00:00,28.899999618530277,8.208999633789062,88.2979965209961,10.213000297546388,-9.28600025177002,-2.4089999198913574,40.20000076293945 -7891,2017-05-25 19:00:00,31.077999114990234,8.963000297546387,88.2979965209961,10.829999923706056,-9.307000160217283,-2.4089999198913574,38.22249984741211 -7892,2017-05-25 20:00:00,32.250999450683594,9.465999603271484,88.2979965209961,11.178000450134276,-8.060000419616701,-2.4089999198913574,36.24499893188477 -7893,2017-05-25 21:00:00,27.559999465942383,7.706999778747559,88.2979965209961,9.70400047302246,-9.350000381469728,-2.4089999198913574,34.487499237060554 -7894,2017-05-25 22:00:00,28.39699935913086,9.130999565124512,88.2979965209961,11.418999671936035,-10.875,-2.4089999198913574,33.16899871826172 -7895,2017-05-25 23:00:00,25.968000411987305,8.208999633789062,88.2979965209961,10.213000297546388,-9.659000396728516,-2.5910000801086426,32.290000915527344 -7896,2017-05-26 00:00:00,24.62800025939941,7.789999961853027,88.2979965209961,10.024999618530272,-9.786999702453612,-2.5910000801086426,31.410999298095703 -7897,2017-05-26 01:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7898,2017-05-26 02:00:00,22.617000579833984,6.198999881744385,88.2979965209961,8.73900032043457,-9.935999870300291,-2.559000015258789,29.43400001525879 -7899,2017-05-26 03:00:00,20.43899917602539,5.696000099182129,88.2979965209961,8.550999641418457,-12.515999794006348,-2.559000015258789,28.334999084472656 -7900,2017-05-26 04:00:00,23.28700065612793,7.623000144958496,88.2979965209961,10.024999618530272,-10.149999618530272,-2.559000015258789,27.67600059509277 -7901,2017-05-26 05:00:00,24.208999633789062,7.874000072479247,88.2979965209961,9.94499969482422,-8.923999786376953,-2.559000015258789,26.79700088500977 -7902,2017-05-26 06:00:00,25.80100059509277,8.041999816894531,88.2979965209961,10.213000297546388,-10.255999565124512,-2.559000015258789,26.35700035095215 -7903,2017-05-26 07:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7904,2017-05-26 08:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7905,2017-05-26 09:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7906,2017-05-26 10:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7907,2017-05-26 11:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7908,2017-05-26 12:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7909,2017-05-26 13:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7910,2017-05-26 14:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7911,2017-05-26 15:00:00,19.01499938964844,5.696000099182129,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7912,2017-05-26 16:00:00,33.590999603271484,11.392000198364258,88.2979965209961,12.920000076293944,-7.974999904632567,-2.664999961853028,47.89049911499024 -7913,2017-05-26 17:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7914,2017-05-26 18:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7915,2017-05-26 19:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7916,2017-05-26 20:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7917,2017-05-26 21:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7918,2017-05-26 22:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7919,2017-05-26 23:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7920,2017-05-27 00:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7921,2017-05-27 01:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7922,2017-05-27 02:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7923,2017-05-27 03:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7924,2017-05-27 04:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7925,2017-05-27 05:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7926,2017-05-27 06:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7927,2017-05-27 07:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7928,2017-05-27 08:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7929,2017-05-27 09:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7930,2017-05-27 10:00:00,27.308000564575195,7.372000217437744,88.2979965209961,9.48900032043457,-10.852999687194824,-2.2709999084472656,38.88199996948242 -7931,2017-05-27 11:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7932,2017-05-27 12:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7933,2017-05-27 13:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7934,2017-05-27 14:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7935,2017-05-27 15:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7936,2017-05-27 16:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7937,2017-05-27 17:00:00,0.0,0.0,88.2979965209961,8.496999740600586,-12.45199966430664,-2.5910000801086426,30.53199958801269 -7938,2017-05-27 18:00:00,31.916000366210927,9.550000190734863,88.2979965209961,11.633999824523926,-10.83199977874756,-2.5369999408721924,45.03400039672852 -7939,2017-05-27 19:00:00,28.81599998474121,8.041999816894531,88.2979965209961,10.31999969482422,-10.692999839782717,-3.753000020980835,42.61750030517578 -7940,2017-05-27 20:00:00,30.743000030517567,8.878999710083008,88.2979965209961,11.607000350952148,-12.069000244140623,-3.753000020980835,40.63949966430664 -7941,2017-05-27 21:00:00,26.2189998626709,6.953000068664551,88.2979965209961,9.756999969482422,-10.895999908447266,-3.688999891281128,38.6619987487793 -7942,2017-05-27 22:00:00,27.895000457763672,8.041999816894531,88.2979965209961,10.69499969482422,-12.142999649047852,-3.688999891281128,37.124000549316406 -7943,2017-05-27 23:00:00,25.04700088500977,6.86899995803833,88.2979965209961,9.194000244140623,-8.166999816894531,-3.688999891281128,35.80550003051758 -7944,2017-05-28 00:00:00,24.375999450683597,6.533999919891357,88.2979965209961,8.95300006866455,-10.821000099182127,-3.688999891281128,34.926498413085945 -7945,2017-05-28 01:00:00,26.72200012207031,7.958000183105469,88.2979965209961,10.07900047302246,-10.83199977874756,-3.688999891281128,34.707000732421875 -7946,2017-05-28 02:00:00,26.55400085449219,8.461000442504883,88.2979965209961,10.829999923706056,-10.83199977874756,-3.688999891281128,34.04800033569336 -7947,2017-05-28 03:00:00,24.54400062561035,6.449999809265138,88.2979965209961,8.630999565124513,-8.326999664306639,-3.688999891281128,33.16899871826172 -7948,2017-05-28 04:00:00,24.62800025939941,6.618000030517577,88.2979965209961,8.819000244140625,-9.626999855041504,-3.688999891281128,32.290000915527344 -7949,2017-05-28 05:00:00,26.88999938964844,8.795999526977539,88.2979965209961,11.258000373840332,-10.843000411987305,-2.5160000324249268,31.631000518798828 -7950,2017-05-28 06:00:00,25.04700088500977,7.958000183105469,88.2979965209961,11.017000198364258,-12.538000106811523,-3.7739999294281006,31.19099998474121 -7951,2017-05-28 07:00:00,26.972999572753903,8.711999893188478,88.2979965209961,10.74899959564209,-8.763999938964844,-2.559000015258789,32.06999969482422 -7952,2017-05-28 08:00:00,25.632999420166016,8.041999816894531,88.2979965209961,10.614999771118164,-11.204999923706056,-2.559000015258789,34.48699951171875 -7953,2017-05-28 09:00:00,29.48600006103516,9.04699993133545,88.2979965209961,11.017000198364258,-10.031999588012695,-2.559000015258789,37.78350067138672 -7954,2017-05-28 10:00:00,32.16699981689453,10.052000045776367,88.2979965209961,12.062999725341797,-10.17099952697754,-2.559000015258789,40.63949966430664 -7955,2017-05-28 11:00:00,25.214000701904297,7.037000179290772,88.2979965209961,9.54300022125244,-11.407999992370604,-2.559000015258789,44.81449890136719 -7956,2017-05-28 12:00:00,33.674999237060554,9.885000228881836,88.2979965209961,11.66100025177002,-10.17099952697754,-2.559000015258789,47.01150131225586 -7957,2017-05-28 13:00:00,33.674999237060554,11.392000198364258,88.2979965209961,13.644000053405762,-11.38599967956543,-2.559000015258789,48.77000045776367 -7958,2017-05-28 14:00:00,34.93099975585937,10.973999977111816,88.2979965209961,12.598999977111816,-8.892000198364258,-2.559000015258789,50.30749893188477 -7959,2017-05-28 15:00:00,34.429000854492195,10.890000343322754,88.2979965209961,12.62600040435791,-10.128000259399414,-2.559000015258789,50.52750015258789 -7960,2017-05-28 16:00:00,36.02000045776367,11.392000198364258,88.2979965209961,12.652000427246096,-8.859999656677246,-2.559000015258789,47.89049911499024 -7961,2017-05-28 17:00:00,30.99399948120117,7.789999961853027,88.2979965209961,10.052000045776367,-8.892000198364258,-2.559000015258789,45.91299819946289 -7962,2017-05-28 18:00:00,34.09400177001953,9.633000373840332,88.2979965209961,11.633999824523926,-8.795999526977539,-2.7290000915527344,44.59500122070313 -7963,2017-05-28 19:00:00,32.16699981689453,8.795999526977539,88.2979965209961,11.017000198364258,-10.19200038909912,-2.7290000915527344,43.05649948120117 -7964,2017-05-28 20:00:00,31.496999740600582,8.041999816894531,88.2979965209961,9.784000396728516,-8.97700023651123,-2.7290000915527344,41.29850006103516 -7965,2017-05-28 21:00:00,31.916000366210927,9.885000228881836,88.2979965209961,12.222999572753904,-10.246000289916992,-2.7290000915527344,39.54100036621094 -7966,2017-05-28 22:00:00,31.496999740600582,10.303000450134276,88.2979965209961,12.62600040435791,-11.503999710083008,-2.7290000915527344,38.44250106811523 -7967,2017-05-28 23:00:00,30.239999771118164,9.29800033569336,88.2979965209961,11.607000350952148,-11.54599952697754,-2.7290000915527344,37.78350067138672 -7968,2017-05-29 00:00:00,27.726999282836918,9.717000007629396,88.2979965209961,12.437999725341797,-11.609999656677244,-2.7290000915527344,36.90449905395508 -7969,2017-05-29 01:00:00,29.066999435424805,9.29800033569336,88.2979965209961,11.607000350952148,-10.17099952697754,-2.7290000915527344,35.80550003051758 -7970,2017-05-29 02:00:00,26.88999938964844,8.963000297546387,88.2979965209961,11.28499984741211,-10.17099952697754,-2.7290000915527344,34.926498413085945 -7971,2017-05-29 03:00:00,27.559999465942383,8.963000297546387,88.2979965209961,10.776000022888184,-8.795999526977539,-2.7290000915527344,34.487499237060554 -7972,2017-05-29 04:00:00,28.145999908447266,9.130999565124512,88.2979965209961,11.392000198364258,-8.892000198364258,-2.7290000915527344,33.60850143432617 -7973,2017-05-29 05:00:00,25.381999969482425,8.461000442504883,88.2979965209961,11.12399959564209,-11.321999549865724,-2.8359999656677246,32.949501037597656 -7974,2017-05-29 06:00:00,30.32399940490723,10.55500030517578,88.2979965209961,12.357000350952148,-8.689000129699707,-2.8359999656677246,32.72949981689453 -7975,2017-05-29 07:00:00,24.459999084472656,7.706999778747559,88.2979965209961,9.94499969482422,-8.689000129699707,-2.8359999656677246,33.16899871826172 -7976,2017-05-29 08:00:00,24.125,6.198999881744385,88.2979965209961,8.550999641418457,-10.118000030517578,-2.8359999656677246,34.707000732421875 -7977,2017-05-29 09:00:00,31.2450008392334,9.633000373840332,88.2979965209961,11.847999572753904,-9.989999771118164,-2.611999988555908,36.68450164794922 -7978,2017-05-29 10:00:00,23.62299919128418,6.198999881744385,88.2979965209961,9.086999893188477,-12.44200038909912,-2.6760001182556152,39.54100036621094 -7979,2017-05-29 11:00:00,32.92100143432617,10.722000122070312,88.2979965209961,12.62600040435791,-11.279999732971191,-2.6760001182556152,43.71549987792969 -7980,2017-05-29 12:00:00,30.82699966430664,9.800999641418455,88.2979965209961,12.277000427246096,-12.494999885559082,-2.6760001182556152,45.4734992980957 -7981,2017-05-29 13:00:00,31.58099937438965,9.800999641418455,88.2979965209961,12.008999824523926,-9.958000183105469,-2.5269999504089355,47.23149871826172 -7982,2017-05-29 14:00:00,31.99900054931641,10.303000450134276,88.2979965209961,12.545000076293944,-11.184000015258787,-2.5269999504089355,49.64849853515625 -7983,2017-05-29 15:00:00,28.73200035095215,9.130999565124512,88.2979965209961,11.66100025177002,-11.258000373840332,-2.5269999504089355,49.86849975585938 -7984,2017-05-29 16:00:00,29.98900032043457,9.29800033569336,88.2979965209961,11.982000350952148,-11.22599983215332,-2.5269999504089355,47.45149993896485 -7985,2017-05-29 17:00:00,32.58599853515625,10.052000045776367,88.2979965209961,12.196999549865724,-11.140999794006348,-3.7739999294281006,45.69300079345703 -7986,2017-05-29 18:00:00,31.32900047302246,9.381999969482422,88.2979965209961,11.767999649047852,-11.22599983215332,-3.7739999294281006,44.375 -7987,2017-05-29 19:00:00,29.23500061035156,8.878999710083008,88.2979965209961,10.989999771118164,-11.312000274658203,-3.7739999294281006,42.617000579833984 -7988,2017-05-29 20:00:00,30.82699966430664,9.800999641418455,88.2979965209961,12.116000175476074,-10.04300022125244,-3.7739999294281006,41.29899978637695 -7989,2017-05-29 21:00:00,26.47100067138672,6.86899995803833,88.2979965209961,9.56999969482422,-11.321999549865724,-3.7739999294281006,39.97999954223633 -7990,2017-05-29 22:00:00,34.0099983215332,10.973999977111816,88.2979965209961,13.053999900817873,-10.095999717712402,-3.7739999294281006,39.10200119018555 -7991,2017-05-29 23:00:00,32.16699981689453,10.220000267028809,88.2979965209961,12.277000427246096,-8.720999717712402,-3.7739999294281006,38.00299835205078 -7992,2017-05-30 00:00:00,29.48600006103516,9.381999969482422,88.2979965209961,11.366000175476074,-10.15999984741211,-3.7739999294281006,36.90449905395508 -7993,2017-05-30 01:00:00,27.64299964904785,8.543999671936035,88.2979965209961,10.96399974822998,-10.15999984741211,-3.7739999294281006,36.0255012512207 -7994,2017-05-30 02:00:00,26.05200004577637,8.795999526977539,88.2979965209961,11.258000373840332,-10.19200038909912,-3.7739999294281006,35.58549880981445 -7995,2017-05-30 03:00:00,26.2189998626709,8.376999855041504,88.2979965209961,10.74899959564209,-10.128000259399414,-3.7739999294281006,34.707000732421875 -7996,2017-05-30 04:00:00,27.726999282836918,9.130999565124512,88.2979965209961,11.258000373840332,-8.923999786376953,-2.7079999446868896,34.267501831054695 -7997,2017-05-30 05:00:00,24.041000366210927,7.288000106811522,88.2979965209961,9.435999870300291,-8.848999977111816,-2.7079999446868896,33.82849884033203 -7998,2017-05-30 06:00:00,26.30299949645996,8.376999855041504,88.2979965209961,11.12399959564209,-12.847000122070312,-2.7079999446868896,33.388500213623054 -7999,2017-05-30 07:00:00,28.31399917602539,8.963000297546387,88.2979965209961,10.937000274658203,-10.107000350952148,-2.6440000534057617,33.388500213623054 -8000,2017-05-30 08:00:00,24.54400062561035,6.618000030517577,88.2979965209961,8.95300006866455,-10.118000030517578,-2.6440000534057617,34.48699951171875 -8001,2017-05-30 09:00:00,28.229999542236328,8.543999671936035,88.2979965209961,10.803000450134276,-10.064000129699709,-2.719000101089477,37.124000549316406 -8002,2017-05-30 10:00:00,25.29800033569336,5.193999767303467,88.2979965209961,7.639999866485598,-10.064000129699709,-2.719000101089477,38.22249984741211 -8003,2017-05-30 11:00:00,28.73200035095215,8.628000259399414,88.2979965209961,11.097999572753906,-10.064000129699709,-2.5799999237060547,38.88199996948242 -8004,2017-05-30 12:00:00,30.32399940490723,8.461000442504883,88.2979965209961,10.31999969482422,-8.848999977111816,-2.5799999237060547,38.88199996948242 -8005,2017-05-30 13:00:00,29.319000244140625,8.795999526977539,88.2979965209961,10.668999671936035,-10.074999809265137,-2.5799999237060547,39.760501861572266 -8006,2017-05-30 14:00:00,26.88999938964844,7.119999885559082,88.2979965209961,9.784000396728516,-10.022000312805176,-2.5799999237060547,40.41999816894531 -8007,2017-05-30 15:00:00,29.65399932861328,8.963000297546387,88.2979965209961,11.12399959564209,-9.935999870300291,-2.5799999237060547,41.73799896240234 -8008,2017-05-30 16:00:00,29.98900032043457,9.29800033569336,88.2979965209961,11.607000350952148,-11.269000053405762,-2.782999992370605,42.617000579833984 -8009,2017-05-30 17:00:00,33.84199905395508,9.21399974822998,88.2979965209961,10.803000450134276,-8.784999847412111,-2.782999992370605,42.178001403808594 -8010,2017-05-30 18:00:00,30.239999771118164,8.293000221252441,88.2979965209961,10.31999969482422,-10.022000312805176,-2.782999992370605,41.07899856567383 -8011,2017-05-30 19:00:00,31.916000366210927,9.29800033569336,88.2979965209961,10.69499969482422,-7.515999794006348,-2.782999992370605,40.20000076293945 -8012,2017-05-30 20:00:00,31.496999740600582,8.963000297546387,88.2979965209961,11.017000198364258,-9.904000282287598,-2.782999992370605,39.10200119018555 -8013,2017-05-30 21:00:00,30.492000579833984,9.130999565124512,88.2979965209961,11.472999572753904,-10.04300022125244,-2.782999992370605,38.22299957275391 -8014,2017-05-30 22:00:00,33.674999237060554,10.638999938964844,88.2979965209961,12.545000076293944,-10.138999938964844,-2.782999992370605,37.34400177001953 -8015,2017-05-30 23:00:00,29.82099914550781,9.633000373840332,88.2979965209961,11.526000022888184,-9.041000366210938,-2.782999992370605,36.90399932861328 -8016,2017-05-31 00:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8017,2017-05-31 01:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8018,2017-05-31 02:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8019,2017-05-31 03:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8020,2017-05-31 04:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8021,2017-05-31 05:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8022,2017-05-31 06:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8023,2017-05-31 07:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8024,2017-05-31 08:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8025,2017-05-31 09:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8026,2017-05-31 10:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8027,2017-05-31 11:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8028,2017-05-31 12:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8029,2017-05-31 13:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8030,2017-05-31 14:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8031,2017-05-31 15:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8032,2017-05-31 16:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8033,2017-05-31 17:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8034,2017-05-31 18:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8035,2017-05-31 19:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8036,2017-05-31 20:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8037,2017-05-31 21:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8038,2017-05-31 22:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8039,2017-05-31 23:00:00,28.899999618530277,9.130999565124512,88.2979965209961,11.767999649047852,-10.288000106811523,-2.782999992370605,36.68450164794922 -8040,2017-06-01 00:00:00,32.58599853515625,10.220000267028809,88.2979965209961,12.303999900817873,-10.3100004196167,-2.6010000705718994,38.44250106811523 -8041,2017-06-01 01:00:00,26.88999938964844,8.041999816894531,88.2979965209961,9.972000122070312,-7.921000003814697,-2.6010000705718994,38.00299835205078 -8042,2017-06-01 02:00:00,21.863000869750977,5.361000061035156,88.2979965209961,8.041999816894531,-9.392999649047852,-2.6010000705718994,37.124000549316406 -8043,2017-06-01 03:00:00,23.28700065612793,6.953000068664551,88.2979965209961,9.220999717712402,-9.211000442504885,-2.6010000705718994,36.68450164794922 -8044,2017-06-01 04:00:00,17.926000595092773,4.775000095367432,88.2979965209961,7.907999992370605,-12.036999702453612,-2.6010000705718994,36.24499893188477 -8045,2017-06-01 05:00:00,25.46500015258789,7.037000179290772,88.2979965209961,9.302000045776367,-9.402999877929688,-2.632999897003174,35.80550003051758 -8046,2017-06-01 06:00:00,29.56999969482422,9.04699993133545,88.2979965209961,11.28499984741211,-9.531000137329102,-2.569000005722046,35.80550003051758 -8047,2017-06-01 07:00:00,27.64299964904785,8.208999633789062,88.2979965209961,10.267000198364258,-9.531000137329102,-2.569000005722046,36.025001525878906 -8048,2017-06-01 08:00:00,23.53899955749512,5.445000171661377,88.2979965209961,8.282999992370605,-11.045000076293944,-2.569000005722046,37.34400177001953 -8049,2017-06-01 09:00:00,32.333999633789055,10.55500030517578,88.2979965209961,12.84000015258789,-13.42300033569336,-2.569000005722046,38.22299957275391 -8050,2017-06-01 10:00:00,34.345001220703125,8.878999710083008,88.2979965209961,10.74899959564209,-9.541999816894531,-2.569000005722046,40.20000076293945 -8051,2017-06-01 11:00:00,36.104000091552734,9.717000007629396,88.2979965209961,11.472999572753904,-9.467000007629396,-2.569000005722046,44.15549850463867 -8052,2017-06-01 12:00:00,40.125,12.062999725341797,49.40299987792969,13.43000030517578,-9.402999877929688,-2.569000005722046,46.352500915527344 -8053,2017-06-01 13:00:00,40.79499816894531,12.64900016784668,49.64400100708008,13.67099952697754,-8.199000358581543,-2.569000005722046,45.25400161743164 -8054,2017-06-01 14:00:00,37.77899932861328,11.979000091552734,48.49200057983398,13.697999954223633,-9.49899959564209,-2.569000005722046,45.03400039672852 -8055,2017-06-01 15:00:00,36.858001708984375,10.973999977111816,46.53499984741211,12.598999977111816,-9.49899959564209,-2.569000005722046,47.012001037597656 -8056,2017-06-01 16:00:00,40.62699890136719,12.899999618530272,50.28799819946289,14.314000129699709,-9.520999908447266,-2.569000005722046,47.012001037597656 -8057,2017-06-01 17:00:00,41.04600143432617,12.229999542236328,49.8849983215332,13.590999603271484,-8.305000305175781,-2.569000005722046,46.5724983215332 -8058,2017-06-01 18:00:00,38.70100021362305,11.810999870300291,49.21500015258789,13.29599952697754,-9.776000022888184,-2.569000005722046,45.69350051879883 -8059,2017-06-01 19:00:00,37.52799987792969,10.303000450134276,47.79499816894531,11.821000099182127,-9.989999771118164,-2.569000005722046,44.15549850463867 -8060,2017-06-01 20:00:00,32.501998901367195,7.958000183105469,41.36100006103516,9.461999893188477,-8.61400032043457,-2.569000005722046,43.2765007019043 -8061,2017-06-01 21:00:00,37.86299896240234,10.722000122070312,45.59700012207031,12.008999824523926,-7.34600019454956,-2.569000005722046,42.178001403808594 -8062,2017-06-01 22:00:00,35.76900100708008,10.805999755859377,45.00699996948242,12.437999725341797,-8.571999549865723,-2.569000005722046,36.464500427246094 -8063,2017-06-01 23:00:00,34.0099983215332,10.638999938964844,43.13000106811523,12.303999900817873,-8.390999794006348,-2.569000005722046,36.68450164794922 -8064,2017-06-02 00:00:00,30.492000579833984,9.21399974822998,40.04800033569336,11.178000450134276,-9.48900032043457,-2.569000005722046,36.68450164794922 -8065,2017-06-02 01:00:00,28.64900016784668,8.543999671936035,38.14500045776367,10.45400047302246,-9.690999984741213,-2.569000005722046,36.24499893188477 -8066,2017-06-02 02:00:00,27.726999282836918,8.293000221252441,36.9119987487793,10.37399959564209,-8.593000411987305,-2.569000005722046,35.80550003051758 -8067,2017-06-02 03:00:00,25.80100059509277,8.293000221252441,36.9379997253418,10.855999946594238,-10.991999626159668,-2.569000005722046,35.36600112915039 -8068,2017-06-02 04:00:00,24.041000366210927,6.618000030517577,35.38399887084961,9.194000244140623,-10.970999717712402,-2.611999988555908,34.926498413085945 -8069,2017-06-02 05:00:00,27.392000198364247,8.711999893188478,39.94100189208984,11.472999572753904,-11.300999641418455,-2.611999988555908,34.487499237060554 -8070,2017-06-02 06:00:00,30.239999771118164,8.963000297546387,39.08300018310547,10.642000198364258,-8.848999977111816,-2.611999988555908,34.04800033569336 -8071,2017-06-02 07:00:00,30.40800094604492,9.29800033569336,40.15499877929688,11.28499984741211,-10.20300006866455,-2.611999988555908,34.04800033569336 -8072,2017-06-02 08:00:00,29.82099914550781,8.376999855041504,37.31399917602539,9.864999771118164,-7.559000015258789,-2.611999988555908,34.268001556396484 -8073,2017-06-02 09:00:00,33.757999420166016,11.392000198364258,44.17599868774414,13.321999549865724,-11.343999862670898,-2.611999988555908,35.58599853515625 -8074,2017-06-02 10:00:00,28.565000534057607,7.454999923706055,39.02899932861328,9.756999969482422,-11.343999862670898,-2.611999988555908,38.00299835205078 -8075,2017-06-02 11:00:00,36.27199935913086,9.717000007629396,44.95299911499024,11.312000274658203,-8.689000129699707,-2.611999988555908,41.29899978637695 -8076,2017-06-02 12:00:00,35.93600082397461,10.55500030517578,48.0359992980957,12.732999801635742,-11.461000442504885,-2.611999988555908,42.617000579833984 -8077,2017-06-02 13:00:00,38.86800003051758,11.727999687194824,49.56399917602539,13.21500015258789,-10.20300006866455,-2.4200000762939453,44.81399917602539 -8078,2017-06-02 14:00:00,38.617000579833984,12.39799976348877,49.61700057983398,14.152999877929688,-10.255999565124512,-2.4200000762939453,46.13249969482422 -8079,2017-06-02 15:00:00,38.44900131225586,12.145999908447266,49.72499847412109,13.993000030517578,-10.50100040435791,-2.4200000762939453,46.79199981689453 -8080,2017-06-02 16:00:00,38.28200149536133,12.314000129699709,49.3489990234375,13.911999702453612,-10.628999710083008,-2.4200000762939453,45.91299819946289 -8081,2017-06-02 17:00:00,36.35499954223633,10.890000343322754,46.90999984741211,12.62600040435791,-10.52299976348877,-2.4200000762939453,44.375 -8082,2017-06-02 18:00:00,34.429000854492195,10.303000450134276,45.14099884033203,12.222999572753904,-10.55500030517578,-2.4200000762939453,43.05699920654297 -8083,2017-06-02 19:00:00,32.92100143432617,9.885000228881836,44.47100067138672,12.08899974822998,-11.812999725341797,-2.4200000762939453,41.51850128173828 -8084,2017-06-02 20:00:00,35.43399810791016,10.220000267028809,47.553001403808594,12.652000427246096,-11.812999725341797,-2.4200000762939453,40.41999816894531 -8085,2017-06-02 21:00:00,36.43899917602539,11.47599983215332,47.28499984741211,13.187999725341797,-10.51200008392334,-2.4200000762939453,39.32149887084961 -8086,2017-06-02 22:00:00,37.19300079345703,11.47599983215332,47.6870002746582,13.29599952697754,-10.31999969482422,-3.635999917984009,38.44250106811523 -8087,2017-06-02 23:00:00,32.250999450683594,9.550000190734863,42.165000915527344,11.579999923706056,-10.416000366210938,-3.635999917984009,37.34349822998047 -8088,2017-06-03 00:00:00,26.47100067138672,7.958000183105469,38.62699890136719,10.614999771118164,-11.642000198364258,-3.635999917984009,36.464500427246094 -8089,2017-06-03 01:00:00,27.392000198364247,9.04699993133545,38.27899932861328,11.097999572753906,-10.416000366210938,-3.635999917984009,36.0255012512207 -8090,2017-06-03 02:00:00,27.895000457763672,8.376999855041504,38.86800003051758,10.560999870300291,-10.619000434875488,-2.569000005722046,35.36600112915039 -8091,2017-06-03 03:00:00,26.88999938964844,8.795999526977539,38.46599960327149,11.097999572753906,-11.781000137329102,-2.569000005722046,35.145999908447266 -8092,2017-06-03 04:00:00,28.31399917602539,8.963000297546387,39.11000061035156,11.097999572753906,-10.532999992370604,-2.5369999408721924,34.487499237060554 -8093,2017-06-03 05:00:00,29.82099914550781,8.628000259399414,37.95700073242188,10.31999969482422,-7.953000068664551,-2.5480000972747803,33.82849884033203 -8094,2017-06-03 06:00:00,27.64299964904785,8.543999671936035,38.81499862670898,10.989999771118164,-10.725000381469728,-2.5480000972747803,33.60850143432617 -8095,2017-06-03 07:00:00,28.983999252319336,8.711999893188478,39.91400146484375,10.937000274658203,-10.71500015258789,-2.5480000972747803,34.268001556396484 -8096,2017-06-03 08:00:00,25.381999969482425,6.701000213623048,36.45600128173828,8.791999816894531,-10.725000381469728,-2.5160000324249268,35.36600112915039 -8097,2017-06-03 09:00:00,32.58599853515625,10.722000122070312,43.80099868774414,12.732999801635742,-10.491000175476074,-2.5160000324249268,37.34349822998047 -8098,2017-06-03 10:00:00,30.40800094604492,9.381999969482422,41.709999084472656,11.526000022888184,-10.71500015258789,-2.5160000324249268,39.760501861572266 -8099,2017-06-03 11:00:00,34.847000122070305,10.55500030517578,45.56999969482422,12.437999725341797,-10.71500015258789,-2.5160000324249268,43.2765007019043 -8100,2017-06-03 12:00:00,34.93099975585937,9.130999565124512,44.44400024414063,10.74899959564209,-9.48900032043457,-2.5160000324249268,45.25350189208984 -8101,2017-06-03 13:00:00,36.104000091552734,10.805999755859377,47.20500183105469,12.706000328063965,-10.71500015258789,-2.5160000324249268,46.352500915527344 -8102,2017-06-03 14:00:00,36.68999862670898,11.810999870300291,46.4010009765625,13.348999977111816,-10.68299961090088,-3.6040000915527344,47.45100021362305 -8103,2017-06-03 15:00:00,38.03099822998047,11.895000457763672,46.9370002746582,13.402999877929688,-9.371000289916992,-3.6040000915527344,47.01150131225586 -8104,2017-06-03 16:00:00,32.83700180053711,8.963000297546387,42.99599838256836,10.937000274658203,-10.767999649047852,-3.6040000915527344,45.25350189208984 -8105,2017-06-03 17:00:00,37.86299896240234,12.062999725341797,47.3120002746582,13.29599952697754,-9.392999649047852,-3.6040000915527344,43.2765007019043 -8106,2017-06-03 18:00:00,37.86299896240234,11.810999870300291,46.10599899291992,12.920000076293944,-8.187999725341799,-3.6040000915527344,42.397499084472656 -8107,2017-06-03 19:00:00,33.34000015258789,9.21399974822998,42.67499923706055,10.90999984741211,-9.253999710083008,-2.388000011444092,41.07899856567383 -8108,2017-06-03 20:00:00,34.93099975585937,8.963000297546387,44.63199996948242,10.989999771118164,-9.265000343322754,-2.388000011444092,39.97999954223633 -8109,2017-06-03 21:00:00,34.763999938964844,10.052000045776367,46.2400016784668,12.598999977111816,-11.73799991607666,-2.388000011444092,39.32149887084961 -8110,2017-06-03 22:00:00,34.429000854492195,10.973999977111816,45.51599884033203,12.812999725341797,-10.406000137329102,-2.388000011444092,38.22299957275391 -8111,2017-06-03 23:00:00,31.66399955749512,9.550000190734863,42.51399993896485,11.847999572753904,-10.406000137329102,-2.622999906539917,37.34400177001953 -8112,2017-06-04 00:00:00,28.31399917602539,7.623000144958496,39.61899948120117,10.024999618530272,-11.791000366210938,-2.740000009536743,36.24499893188477 -8113,2017-06-04 01:00:00,28.31399917602539,9.04699993133545,39.35100173950195,11.366000175476074,-10.277999877929688,-2.8250000476837163,35.145999908447266 -8114,2017-06-04 02:00:00,23.790000915527344,6.449999809265138,35.8120002746582,9.302000045776367,-11.524999618530272,-2.8250000476837163,34.268001556396484 -8115,2017-06-04 03:00:00,28.062000274658203,9.04699993133545,39.21699905395508,11.526000022888184,-11.493000030517578,-2.8250000476837163,33.388999938964844 -8116,2017-06-04 04:00:00,28.145999908447266,9.04699993133545,39.27000045776367,11.418999671936035,-10.17099952697754,-2.4730000495910645,32.5099983215332 -8117,2017-06-04 05:00:00,29.23500061035156,9.04699993133545,40.07500076293945,11.366000175476074,-9.968000411987305,-2.4730000495910645,32.06999969482422 -8118,2017-06-04 06:00:00,28.983999252319336,8.711999893188478,39.99399948120117,10.989999771118164,-11.343999862670898,-2.4730000495910645,31.19099998474121 -8119,2017-06-04 07:00:00,27.308000564575195,8.543999671936035,39.75299835205078,10.96399974822998,-11.343999862670898,-2.4730000495910645,30.97150039672852 -8120,2017-06-04 08:00:00,19.099000930786133,4.440000057220459,31.76499938964844,7.290999889373777,-12.729999542236328,-2.4730000495910645,31.63050079345703 -8121,2017-06-04 09:00:00,28.899999618530277,7.789999961853027,39.75299835205078,9.99899959564209,-10.031999588012695,-2.6440000534057617,33.827999114990234 -8122,2017-06-04 10:00:00,33.088001251220696,10.303000450134276,43.479000091552734,12.303999900817873,-9.829999923706056,-3.5179998874664307,36.24499893188477 -8123,2017-06-04 11:00:00,31.496999740600582,9.04699993133545,43.18399810791016,11.204999923706056,-11.045000076293944,-3.5179998874664307,39.54100036621094 -8124,2017-06-04 12:00:00,32.16699981689453,8.543999671936035,40.45000076293945,10.052000045776367,-8.347999572753906,-2.282000064849853,39.98049926757813 -8125,2017-06-04 13:00:00,32.417999267578125,9.130999565124512,42.62099838256836,11.28499984741211,-9.574000358581545,-2.282000064849853,42.397499084472656 -8126,2017-06-04 14:00:00,33.34000015258789,9.968000411987305,42.97000122070313,11.795000076293944,-9.637999534606934,-2.505000114440918,42.83700180053711 -8127,2017-06-04 15:00:00,23.790000915527344,6.618000030517577,36.24100112915039,9.11400032043457,-12.218000411987305,-2.505000114440918,44.375 -8128,2017-06-04 16:00:00,32.333999633789055,9.717000007629396,43.15700149536133,11.767999649047852,-10.960000038146973,-2.505000114440918,42.397499084472656 -8129,2017-06-04 17:00:00,30.743000030517567,8.041999816894531,42.75500106811523,10.37399959564209,-11.994000434875488,-2.505000114440918,40.20000076293945 -8130,2017-06-04 18:00:00,29.65399932861328,7.789999961853027,40.02099990844727,10.052000045776367,-10.586999893188477,-2.505000114440918,38.6619987487793 -8131,2017-06-04 19:00:00,27.308000564575195,6.114999771118164,34.632999420166016,7.747000217437744,-6.866000175476074,-2.505000114440918,37.78300094604492 -8132,2017-06-04 20:00:00,29.65399932861328,7.119999885559082,39.59199905395508,9.194000244140623,-9.477999687194824,-2.505000114440918,37.124000549316406 -8133,2017-06-04 21:00:00,32.501998901367195,9.800999641418455,43.61299896240234,11.579999923706056,-10.692999839782717,-2.505000114440918,36.46500015258789 -8134,2017-06-04 22:00:00,33.25600051879883,10.470999717712402,43.29100036621094,12.383999824523926,-10.756999969482422,-2.505000114440918,35.36600112915039 -8135,2017-06-04 23:00:00,23.53899955749512,5.696000099182129,32.97100067138672,7.907999992370605,-9.477999687194824,-2.505000114440918,34.707000732421875 -8136,2017-06-05 00:00:00,23.37100028991699,5.696000099182129,34.632999420166016,8.470999717712402,-11.109000205993652,-2.505000114440918,33.827999114990234 -8137,2017-06-05 01:00:00,26.47100067138672,8.711999893188478,37.42100143432617,10.855999946594238,-11.130000114440918,-2.505000114440918,33.16899871826172 -8138,2017-06-05 02:00:00,28.64900016784668,8.963000297546387,38.0369987487793,10.37399959564209,-9.765999794006348,-3.325999975204468,32.5099983215332 -8139,2017-06-05 03:00:00,26.13599967956543,7.623000144958496,37.608001708984375,10.239999771118164,-10.71500015258789,-3.325999975204468,32.290000915527344 -8140,2017-06-05 04:00:00,26.88999938964844,8.208999633789062,37.5009994506836,10.427000045776367,-10.447999954223633,-2.0150001049041752,31.631000518798828 -8141,2017-06-05 05:00:00,28.145999908447266,8.878999710083008,37.90299987792969,10.53499984741211,-10.086000442504885,-2.1540000438690186,29.653499603271484 -8142,2017-06-05 06:00:00,29.15099906921387,8.293000221252441,38.76100158691406,10.480999946594238,-10.277999877929688,-3.059999942779541,29.87299919128418 -8143,2017-06-05 07:00:00,28.81599998474121,8.041999816894531,38.43899917602539,9.94499969482422,-8.902000427246094,-1.812000036239624,29.653499603271484 -8144,2017-06-05 08:00:00,25.1299991607666,6.031000137329103,34.1510009765625,7.665999889373777,-8.892000198364258,-3.059999942779541,30.312000274658203 -8145,2017-06-05 09:00:00,30.99399948120117,9.21399974822998,41.22700119018555,11.017000198364258,-10.288000106811523,-3.059999942779541,29.87299919128418 -8146,2017-06-05 10:00:00,25.04700088500977,6.114999771118164,36.9379997253418,8.685000419616701,-11.53600025177002,-3.059999942779541,28.77449989318848 -8147,2017-06-05 11:00:00,25.46500015258789,5.863999843597412,36.96500015258789,8.229000091552733,-11.58899974822998,-3.059999942779541,27.236499786376957 -8148,2017-06-05 12:00:00,30.57500076293945,8.878999710083008,40.31600189208984,10.776000022888184,-10.234999656677246,-2.5369999408721924,25.03899955749512 -8149,2017-06-05 13:00:00,30.072999954223643,8.543999671936035,40.58399963378906,10.668999671936035,-10.50100040435791,-2.5369999408721924,23.06150054931641 -8150,2017-06-05 14:00:00,29.56999969482422,8.963000297546387,39.72600173950195,10.883000373840332,-9.29699993133545,-2.388000011444092,22.1825008392334 -8151,2017-06-05 15:00:00,26.30299949645996,8.293000221252441,39.59199905395508,10.989999771118164,-12.91100025177002,-2.388000011444092,22.1825008392334 -8152,2017-06-05 16:00:00,30.40800094604492,8.878999710083008,39.67300033569336,10.508000373840332,-8.869999885559082,-2.388000011444092,22.1825008392334 -8153,2017-06-05 17:00:00,29.066999435424805,7.874000072479247,38.84199905395508,9.70400047302246,-10.182000160217283,-2.45199990272522,22.84199905395508 -8154,2017-06-05 18:00:00,25.88400077819824,7.037000179290772,37.68899917602539,9.515999794006348,-11.503999710083008,-2.483999967575073,23.72100067138672 -8155,2017-06-05 19:00:00,24.87899971008301,6.198999881744385,34.766998291015625,7.907999992370605,-9.029999732971191,-2.483999967575073,23.94050025939941 -8156,2017-06-05 20:00:00,27.895000457763672,7.372000217437744,36.992000579833984,8.711999893188478,-9.072999954223633,-2.483999967575073,23.2810001373291 -8157,2017-06-05 21:00:00,32.16699981689453,9.550000190734863,40.31600189208984,10.614999771118164,-7.85699987411499,-2.483999967575073,21.96299934387207 -8158,2017-06-05 22:00:00,34.09400177001953,10.55500030517578,41.46799850463867,11.579999923706056,-7.50600004196167,-2.483999967575073,22.402000427246094 -8159,2017-06-05 23:00:00,29.319000244140625,9.800999641418455,39.96699905395508,11.5,-10.182000160217283,-2.483999967575073,22.84199905395508 -8160,2017-06-06 00:00:00,20.43899917602539,6.114999771118164,31.92600059509277,8.685000419616701,-10.916999816894531,-2.697000026702881,23.500999450683597 -8161,2017-06-06 01:00:00,24.375999450683597,7.203999996185303,36.26800155639648,9.99899959564209,-12.20699977874756,-2.611999988555908,24.3799991607666 -8162,2017-06-06 02:00:00,24.62800025939941,8.376999855041504,36.45600128173828,10.989999771118164,-10.949000358581545,-2.760999917984009,24.819499969482425 -8163,2017-06-06 03:00:00,24.87899971008301,8.125,36.696998596191406,10.776000022888184,-11.003000259399414,-2.760999917984009,24.3799991607666 -8164,2017-06-06 04:00:00,25.632999420166016,8.125,36.42900085449219,10.560999870300291,-10.991999626159668,-2.760999917984009,24.60000038146973 -8165,2017-06-06 05:00:00,23.45499992370605,6.953000068664551,35.0620002746582,9.677000045776367,-11.097999572753906,-2.7079999446868896,25.69849967956543 -8166,2017-06-06 06:00:00,26.13599967956543,8.208999633789062,37.071998596191406,10.427000045776367,-11.119999885559082,-2.7079999446868896,26.35700035095215 -8167,2017-06-06 07:00:00,25.548999786376957,7.539000034332275,37.233001708984375,10.105999946594238,-11.312000274658203,-2.6549999713897705,26.35700035095215 -8168,2017-06-06 08:00:00,22.86899948120117,5.78000020980835,33.88199996948242,8.175999641418457,-10.031999588012695,-2.483999967575073,25.917999267578125 -8169,2017-06-06 09:00:00,28.062000274658203,8.711999893188478,39.75299835205078,11.071000099182127,-11.17300033569336,-2.6760001182556152,26.13750076293945 -8170,2017-06-06 10:00:00,25.04700088500977,5.445000171661377,36.402000427246094,7.934999942779541,-12.303000450134276,-2.6760001182556152,27.45599937438965 -8171,2017-06-06 11:00:00,25.214000701904297,5.863999843597412,36.9119987487793,8.416999816894531,-10.821000099182127,-2.6760001182556152,27.89550018310547 -8172,2017-06-06 12:00:00,27.141000747680664,7.119999885559082,39.48500061035156,9.729999542236328,-12.40999984741211,-2.3989999294281006,28.334999084472656 -8173,2017-06-06 13:00:00,24.208999633789062,6.198999881744385,35.19599914550781,8.765000343322754,-11.07699966430664,-2.45199990272522,29.653499603271484 -8174,2017-06-06 14:00:00,26.63800048828125,8.041999816894531,38.84199905395508,10.29300022125244,-12.45199966430664,-2.463000059127808,31.410999298095703 -8175,2017-06-06 15:00:00,29.066999435424805,8.293000221252441,39.00199890136719,10.29300022125244,-9.883000373840332,-2.2920000553131104,32.949501037597656 -8176,2017-06-06 16:00:00,28.983999252319336,8.461000442504883,38.54700088500977,10.267000198364258,-9.80799961090088,-3.507999897003174,32.949501037597656 -8177,2017-06-06 17:00:00,28.481000900268555,7.874000072479247,40.15499877929688,10.07900047302246,-10.83199977874756,-3.507999897003174,32.290000915527344 -8178,2017-06-06 18:00:00,26.72200012207031,6.86899995803833,37.742000579833984,9.302000045776367,-10.895999908447266,-2.430999994277954,31.63050079345703 -8179,2017-06-06 19:00:00,29.48600006103516,7.706999778747559,39.91400146484375,9.623000144958496,-9.402999877929688,-2.430999994277954,30.75149917602539 -8180,2017-06-06 20:00:00,24.125,5.445000171661377,35.70500183105469,8.041999816894531,-11.152000427246094,-3.6679999828338623,29.87299919128418 -8181,2017-06-06 21:00:00,24.62800025939941,7.037000179290772,38.06399917602539,9.784000396728516,-12.45199966430664,-2.7079999446868896,29.214000701904297 -8182,2017-06-06 22:00:00,28.983999252319336,8.878999710083008,41.30799865722656,11.392000198364258,-11.461000442504885,-2.7079999446868896,28.99399948120117 -8183,2017-06-06 23:00:00,25.632999420166016,8.543999671936035,38.62699890136719,11.12399959564209,-12.675999641418455,-2.7079999446868896,28.55500030517578 -8184,2017-06-07 00:00:00,29.066999435424805,9.04699993133545,38.22499847412109,10.776000022888184,-8.934000015258789,-2.7079999446868896,28.114999771118164 -8185,2017-06-07 01:00:00,27.22500038146973,8.628000259399414,36.24100112915039,9.972000122070312,-8.805999755859375,-2.7079999446868896,27.89550018310547 -8186,2017-06-07 02:00:00,19.099000930786133,5.947999954223633,30.85300064086914,8.604999542236326,-11.161999702453612,-2.878999948501587,27.67600059509277 -8187,2017-06-07 03:00:00,27.392000198364247,8.963000297546387,36.7239990234375,10.588000297546388,-9.829999923706056,-3.0280001163482666,27.23600006103516 -8188,2017-06-07 04:00:00,27.97900009155273,9.04699993133545,35.972999572753906,10.133000373840332,-7.515999794006348,-1.621000051498413,27.23600006103516 -8189,2017-06-07 05:00:00,26.88999938964844,7.958000183105469,36.7509994506836,9.595999717712402,-9.64900016784668,-1.7059999704360962,26.79700088500977 -8190,2017-06-07 06:00:00,29.90500068664551,10.052000045776367,39.77999877929688,11.418999671936035,-9.79800033569336,-1.7269999980926514,26.57699966430664 -8191,2017-06-07 07:00:00,26.386999130249023,7.958000183105469,35.518001556396484,9.435999870300291,-9.32900047302246,-2.8469998836517334,26.79700088500977 -8192,2017-06-07 08:00:00,27.47599983215332,7.454999923706055,37.15299987792969,9.006999969482422,-9.616999626159668,-1.5889999866485596,28.334999084472656 -8193,2017-06-07 09:00:00,26.972999572753903,8.543999671936035,38.78799819946289,10.69499969482422,-10.939000129699709,-2.8469998836517334,30.3125 -8194,2017-06-07 10:00:00,27.64299964904785,7.372000217437744,37.79600143432617,9.140999794006348,-9.722999572753906,-2.8469998836517334,33.82849884033203 -8195,2017-06-07 11:00:00,32.417999267578125,9.29800033569336,42.62099838256836,10.989999771118164,-9.722999572753906,-2.8469998836517334,37.5634994506836 -8196,2017-06-07 12:00:00,27.308000564575195,6.953000068664551,38.89500045776367,9.248000144958496,-10.960000038146973,-2.8469998836517334,39.54100036621094 -8197,2017-06-07 13:00:00,30.57500076293945,8.461000442504883,41.89699935913086,10.45400047302246,-10.939000129699709,-3.2300000190734863,40.85950088500977 -8198,2017-06-07 14:00:00,26.05200004577637,6.86899995803833,36.9119987487793,9.034000396728516,-11.37600040435791,-2.282000064849853,43.05699920654297 -8199,2017-06-07 15:00:00,31.2450008392334,9.21399974822998,41.17399978637695,10.776000022888184,-9.85099983215332,-2.282000064849853,42.178001403808594 -8200,2017-06-07 16:00:00,30.743000030517567,9.04699993133545,41.65599822998047,11.12399959564209,-10.843000411987305,-2.282000064849853,41.07899856567383 -8201,2017-06-07 17:00:00,30.072999954223643,8.628000259399414,42.459999084472656,11.097999572753906,-11.994000434875488,-3.507999897003174,40.20000076293945 -8202,2017-06-07 18:00:00,30.99399948120117,8.543999671936035,40.02099990844727,10.239999771118164,-9.446000099182127,-3.507999897003174,39.32149887084961 -8203,2017-06-07 19:00:00,29.23500061035156,6.2829999923706055,38.94900131225586,8.095000267028809,-10.66100025177002,-3.507999897003174,38.00299835205078 -8204,2017-06-07 20:00:00,33.42300033569336,9.717000007629396,42.05799865722656,10.53499984741211,-8.359000205993652,-2.2390000820159908,36.24499893188477 -8205,2017-06-07 21:00:00,30.492000579833984,9.130999565124512,40.28900146484375,10.668999671936035,-10.331000328063965,-2.2390000820159908,34.926498413085945 -8206,2017-06-07 22:00:00,31.832000732421875,10.55500030517578,41.62900161743164,12.303999900817873,-10.543999671936035,-2.2390000820159908,33.827999114990234 -8207,2017-06-07 23:00:00,26.55400085449219,8.963000297546387,38.41299819946289,11.204999923706056,-11.621000289916992,-3.496999979019165,32.94900131225586 -8208,2017-06-08 00:00:00,26.13599967956543,7.789999961853027,35.946998596191406,10.024999618530272,-10.223999977111816,-3.496999979019165,32.06999969482422 -8209,2017-06-08 01:00:00,25.29800033569336,7.874000072479247,34.257999420166016,9.810999870300291,-8.892000198364258,-3.496999979019165,31.410999298095703 -8210,2017-06-08 02:00:00,23.28700065612793,6.618000030517577,34.097000122070305,8.845999717712402,-10.427000045776367,-2.740000009536743,30.75200080871582 -8211,2017-06-08 03:00:00,25.1299991607666,8.208999633789062,34.65999984741211,10.29300022125244,-9.222000122070312,-2.740000009536743,30.312000274658203 -8212,2017-06-08 04:00:00,26.88999938964844,8.125,37.20600128173828,10.37399959564209,-9.29699993133545,-2.740000009536743,29.87299919128418 -8213,2017-06-08 05:00:00,27.895000457763672,8.208999633789062,37.6619987487793,10.45400047302246,-9.935999870300291,-2.740000009536743,29.43400001525879 -8214,2017-06-08 06:00:00,31.916000366210927,9.29800033569336,39.56499862670898,10.427000045776367,-7.131999969482423,-2.740000009536743,29.43400001525879 -8215,2017-06-08 07:00:00,26.88999938964844,7.372000217437744,36.5359992980957,9.248000144958496,-9.904000282287598,-2.740000009536743,30.312000274658203 -8216,2017-06-08 08:00:00,26.80599975585937,5.947999954223633,36.027000427246094,7.960999965667725,-9.616999626159668,-2.3350000381469727,32.72949981689453 -8217,2017-06-08 09:00:00,29.56999969482422,9.465999603271484,41.14699935913086,11.553000450134276,-12.069000244140623,-2.3350000381469727,35.58599853515625 -8218,2017-06-08 10:00:00,27.64299964904785,6.7849998474121085,38.573001861572266,9.086999893188477,-10.788999557495115,-2.3350000381469727,38.22299957275391 -8219,2017-06-08 11:00:00,32.417999267578125,8.376999855041504,43.15700149536133,10.239999771118164,-10.788999557495115,-3.549999952316284,41.51850128173828 -8220,2017-06-08 12:00:00,31.496999740600582,8.125,42.27299880981445,10.159000396728516,-9.49899959564209,-2.302999973297119,42.83700180053711 -8221,2017-06-08 13:00:00,31.74799919128418,8.461000442504883,43.04999923706055,10.29300022125244,-10.800000190734863,-2.388000011444092,43.71599960327149 -8222,2017-06-08 14:00:00,32.08300018310547,8.461000442504883,41.73699951171875,10.024999618530272,-9.402999877929688,-2.388000011444092,44.15549850463867 -8223,2017-06-08 15:00:00,36.68999862670898,16.50200080871582,41.84400177001953,10.776000022888184,-8.166999816894531,-2.388000011444092,44.375 -8224,2017-06-08 16:00:00,35.182998657226555,10.638999938964844,44.63199996948242,11.821000099182127,-9.274999618530272,-2.174999952316284,43.93550109863281 -8225,2017-06-08 17:00:00,34.0099983215332,10.052000045776367,46.0250015258789,12.03600025177002,-11.93000030517578,-2.4200000762939453,42.83700180053711 -8226,2017-06-08 18:00:00,35.685001373291016,9.800999641418455,45.24800109863281,11.232000350952148,-9.253999710083008,-2.4200000762939453,41.29850006103516 -8227,2017-06-08 19:00:00,34.09400177001953,9.465999603271484,42.03099822998047,10.133000373840332,-7.985000133514402,-2.4200000762939453,40.20000076293945 -8228,2017-06-08 20:00:00,34.345001220703125,9.633000373840332,42.54100036621094,10.69499969482422,-7.868000030517577,-2.4200000762939453,38.66249847412109 -8229,2017-06-08 21:00:00,35.26599884033203,10.13599967956543,44.41699981689453,11.392000198364258,-8.97700023651123,-2.4200000762939453,37.34349822998047 -8230,2017-06-08 22:00:00,34.59600067138672,11.309000015258787,43.854000091552734,12.170000076293944,-8.741999626159668,-2.4200000762939453,36.464500427246094 -8231,2017-06-08 23:00:00,31.916000366210927,10.052000045776367,41.25400161743164,10.803000450134276,-8.892000198364258,-2.900000095367432,36.0255012512207 -8232,2017-06-09 00:00:00,30.57500076293945,9.21399974822998,39.18999862670898,10.668999671936035,-8.817000389099121,-1.621000051498413,35.80550003051758 -8233,2017-06-09 01:00:00,28.481000900268555,9.633000373840332,39.02899932861328,10.937000274658203,-9.946999549865724,-1.503000020980835,35.36600112915039 -8234,2017-06-09 02:00:00,29.40299987792969,8.461000442504883,36.8849983215332,10.07900047302246,-6.4070000648498535,-2.7720000743865967,35.36600112915039 -8235,2017-06-09 03:00:00,24.62800025939941,8.293000221252441,32.569000244140625,9.274999618530272,-7.708000183105469,-2.7720000743865967,35.36600112915039 -8236,2017-06-09 04:00:00,29.82099914550781,9.800999641418455,38.06399917602539,10.829999923706056,-8.295000076293945,-3.26200008392334,34.926498413085945 -8237,2017-06-09 05:00:00,30.99399948120117,9.381999969482422,39.59199905395508,10.829999923706056,-8.230999946594237,-1.715999960899353,34.487499237060554 -8238,2017-06-09 06:00:00,33.088001251220696,10.220000267028809,40.15499877929688,10.642000198364258,-6.705999851226808,-1.22599995136261,34.487499237060554 -8239,2017-06-09 07:00:00,27.47599983215332,8.543999671936035,39.887001037597656,10.74899959564209,-11.940999984741213,-2.483999967575073,33.827999114990234 -8240,2017-06-09 08:00:00,26.55400085449219,5.52899980545044,34.41899871826172,6.888999938964844,-7.953000068664551,-2.483999967575073,34.268001556396484 -8241,2017-06-09 09:00:00,32.16699981689453,9.633000373840332,41.81700134277344,11.366000175476074,-9.211000442504885,-2.483999967575073,36.0255012512207 -8242,2017-06-09 10:00:00,25.214000701904297,5.611999988555908,35.73199844360352,7.827000141143799,-9.211000442504885,-2.483999967575073,38.22249984741211 -8243,2017-06-09 11:00:00,25.04700088500977,6.449999809265138,35.70500183105469,8.578000068664549,-10.35200023651123,-2.2920000553131104,41.29850006103516 -8244,2017-06-09 12:00:00,33.92599868774414,9.29800033569336,45.00699996948242,11.204999923706056,-10.35200023651123,-2.2070000171661377,43.71599960327149 -8245,2017-06-09 13:00:00,35.014999389648445,10.220000267028809,46.34700012207031,12.303999900817873,-10.3100004196167,-2.2070000171661377,44.81399917602539 -8246,2017-06-09 14:00:00,37.10900115966797,11.644000053405762,46.18600082397461,12.946999549865724,-9.093999862670898,-2.559000015258789,43.05649948120117 -8247,2017-06-09 15:00:00,36.77399826049805,11.140999794006348,45.97200012207031,12.357000350952148,-9.029999732971191,-2.2179999351501465,42.61750030517578 -8248,2017-06-09 16:00:00,35.0989990234375,10.890000343322754,46.18600082397461,12.678999900817873,-11.58899974822998,-3.390000104904175,41.73849868774414 -8249,2017-06-09 17:00:00,35.76900100708008,10.722000122070312,43.479000091552734,11.821000099182127,-7.782999992370605,-2.174999952316284,40.85950088500977 -8250,2017-06-09 18:00:00,29.23500061035156,8.461000442504883,39.99399948120117,10.31999969482422,-10.255999565124512,-2.174999952316284,39.760501861572266 -8251,2017-06-09 19:00:00,36.94200134277344,10.470999717712402,45.8650016784668,11.607000350952148,-9.062000274658203,-2.174999952316284,38.88199996948242 -8252,2017-06-09 20:00:00,32.333999633789055,8.208999633789062,40.36899948120117,9.461999893188477,-7.633999824523926,-2.174999952316284,38.44250106811523 -8253,2017-06-09 21:00:00,41.04600143432617,12.5649995803833,47.1510009765625,12.894000053405762,-6.428999900817871,-1.8760000467300413,38.00299835205078 -8254,2017-06-09 22:00:00,40.79499816894531,12.984000205993652,48.2770004272461,13.67099952697754,-7.559000015258789,-2.5480000972747803,37.5634994506836 -8255,2017-06-09 23:00:00,34.345001220703125,11.225000381469728,45.16799926757813,13.00100040435791,-10.70400047302246,-2.5480000972747803,37.124000549316406 -8256,2017-06-10 00:00:00,33.005001068115234,9.04699993133545,41.09299850463867,10.239999771118164,-8.081000328063965,-2.5480000972747803,35.36600112915039 -8257,2017-06-10 01:00:00,29.65399932861328,9.29800033569336,38.84199905395508,10.90999984741211,-7.974999904632567,-2.5480000972747803,33.60850143432617 -8258,2017-06-10 02:00:00,32.58599853515625,10.052000045776367,40.95899963378906,11.579999923706056,-8.027999877929688,-2.5480000972747803,32.72949981689453 -8259,2017-06-10 03:00:00,29.90500068664551,9.550000190734863,40.39599990844727,11.5,-9.45699977874756,-2.5480000972747803,32.5099983215332 -8260,2017-06-10 04:00:00,27.97900009155273,7.789999961853027,35.625,9.302000045776367,-6.610000133514402,-2.5480000972747803,30.75200080871582 -8261,2017-06-10 05:00:00,26.386999130249023,7.203999996185303,36.696998596191406,9.54300022125244,-10.416000366210938,-2.5480000972747803,29.87299919128418 -8262,2017-06-10 06:00:00,28.565000534057607,8.461000442504883,38.73400115966797,10.668999671936035,-9.829999923706056,-2.5480000972747803,29.214000701904297 -8263,2017-06-10 07:00:00,27.47599983215332,8.461000442504883,37.39400100708008,10.239999771118164,-9.883000373840332,-2.5480000972747803,28.77449989318848 -8264,2017-06-10 08:00:00,24.292999267578125,5.863999843597412,34.98199844360352,8.255999565124513,-11.07699966430664,-2.5480000972747803,28.114999771118164 -8265,2017-06-10 09:00:00,28.81599998474121,8.461000442504883,38.97600173950195,10.427000045776367,-9.722999572753906,-2.313999891281128,27.67600059509277 -8266,2017-06-10 10:00:00,30.82699966430664,8.711999893188478,41.25400161743164,10.829999923706056,-9.713000297546388,-2.313999891281128,27.67600059509277 -8267,2017-06-10 11:00:00,32.250999450683594,10.052000045776367,42.64799880981445,12.170000076293944,-10.86400032043457,-2.2920000553131104,27.89550018310547 -8268,2017-06-10 12:00:00,30.65900039672852,8.963000297546387,41.92399978637695,11.418999671936035,-11.03499984741211,-2.2920000553131104,27.67600059509277 -8269,2017-06-10 13:00:00,31.16200065612793,9.800999641418455,42.32600021362305,11.982000350952148,-9.786999702453612,-2.2920000553131104,27.67600059509277 -8270,2017-06-10 14:00:00,27.392000198364247,7.789999961853027,39.16299819946289,10.427000045776367,-11.02400016784668,-2.2920000553131104,27.01650047302246 -8271,2017-06-10 15:00:00,27.05699920654297,8.461000442504883,39.13600158691406,11.071000099182127,-12.378000259399414,-3.507999897003174,27.67600059509277 -8272,2017-06-10 16:00:00,29.56999969482422,8.878999710083008,41.14699935913086,11.204999923706056,-12.378000259399414,-3.507999897003174,28.114999771118164 -8273,2017-06-10 17:00:00,30.65900039672852,8.461000442504883,41.11999893188477,10.642000198364258,-10.68299961090088,-2.3350000381469727,28.55500030517578 -8274,2017-06-10 18:00:00,31.66399955749512,8.878999710083008,42.05799865722656,10.989999771118164,-9.402999877929688,-2.3350000381469727,27.89550018310547 -8275,2017-06-10 19:00:00,28.81599998474121,7.203999996185303,37.18000030517578,8.630999565124513,-8.336999893188478,-2.3350000381469727,28.55500030517578 -8276,2017-06-10 20:00:00,31.413000106811523,9.04699993133545,41.11999893188477,10.74899959564209,-9.626999855041504,-2.3350000381469727,29.214000701904297 -8277,2017-06-10 21:00:00,33.34000015258789,10.220000267028809,42.27299880981445,11.312000274658203,-9.381999969482422,-2.3350000381469727,29.43400001525879 -8278,2017-06-10 22:00:00,33.92599868774414,11.644000053405762,42.67499923706055,12.84000015258789,-8.295000076293945,-2.3350000381469727,29.87299919128418 -8279,2017-06-10 23:00:00,31.58099937438965,10.220000267028809,40.55699920654297,11.607000350952148,-9.307000160217283,-2.3350000381469727,30.312000274658203 -8280,2017-06-11 00:00:00,31.496999740600582,10.722000122070312,41.87099838256836,12.866999626159668,-9.253999710083008,-2.996000051498413,30.75200080871582 -8281,2017-06-11 01:00:00,28.481000900268555,10.470999717712402,37.93000030517578,11.875,-9.574000358581545,-2.996000051498413,30.75200080871582 -8282,2017-06-11 02:00:00,27.392000198364247,9.381999969482422,38.78799819946289,11.607000350952148,-11.89799976348877,-2.996000051498413,30.97150039672852 -8283,2017-06-11 03:00:00,27.559999465942383,10.38700008392334,37.2599983215332,12.116000175476074,-9.829999923706056,-2.996000051498413,30.97150039672852 -8284,2017-06-11 04:00:00,26.13599967956543,7.539000034332275,35.38399887084961,9.56999969482422,-9.894000053405762,-2.996000051498413,30.97150039672852 -8285,2017-06-11 05:00:00,28.062000274658203,9.21399974822998,39.61899948120117,11.687000274658203,-11.609999656677244,-2.996000051498413,30.97150039672852 -8286,2017-06-11 06:00:00,29.319000244140625,9.381999969482422,39.72600173950195,11.633999824523926,-10.36299991607666,-2.996000051498413,31.19099998474121 -8287,2017-06-11 07:00:00,29.319000244140625,8.878999710083008,38.94900131225586,10.69499969482422,-9.1899995803833,-2.996000051498413,29.87299919128418 -8288,2017-06-11 08:00:00,28.229999542236328,8.208999633789062,37.233001708984375,9.838000297546388,-9.243000030517578,-2.996000051498413,29.653499603271484 -8289,2017-06-11 09:00:00,33.088001251220696,10.052000045776367,40.18199920654297,11.097999572753906,-6.790999889373777,-2.996000051498413,31.410999298095703 -8290,2017-06-11 10:00:00,30.072999954223643,8.628000259399414,40.42300033569336,10.642000198364258,-10.597000122070312,-2.996000051498413,33.827999114990234 -8291,2017-06-11 11:00:00,34.847000122070305,9.633000373840332,42.48699951171875,11.043999671936035,-7.835999965667725,-2.996000051498413,37.124000549316406 -8292,2017-06-11 12:00:00,30.99399948120117,8.711999893188478,39.08300018310547,10.052000045776367,-7.815000057220459,-2.996000051498413,39.98049926757813 -8293,2017-06-11 13:00:00,32.417999267578125,9.633000373840332,41.44200134277344,11.392000198364258,-9.222000122070312,-2.996000051498413,41.51850128173828 -8294,2017-06-11 14:00:00,33.674999237060554,9.717000007629396,41.54899978637695,11.12399959564209,-8.006999969482424,-2.996000051498413,41.51850128173828 -8295,2017-06-11 15:00:00,28.983999252319336,7.706999778747559,39.75299835205078,9.864999771118164,-10.619000434875488,-2.96399998664856,42.178001403808594 -8296,2017-06-11 16:00:00,30.57500076293945,9.130999565124512,40.58399963378906,10.989999771118164,-9.4350004196167,-2.96399998664856,41.29899978637695 -8297,2017-06-11 17:00:00,34.68000030517578,9.633000373840332,42.67499923706055,10.90999984741211,-8.060000419616701,-2.96399998664856,39.76100158691406 -8298,2017-06-11 18:00:00,34.429000854492195,9.29800033569336,41.81700134277344,10.07900047302246,-8.251999855041504,-1.7380000352859497,39.10150146484375 -8299,2017-06-11 19:00:00,34.17699813842773,9.04699993133545,39.77999877929688,10.024999618530272,-4.872000217437744,-1.3009999990463257,38.00299835205078 -8300,2017-06-11 20:00:00,33.92599868774414,10.55500030517578,42.11199951171875,11.312000274658203,-8.880999565124512,-1.524999976158142,36.464500427246094 -8301,2017-06-11 21:00:00,36.77399826049805,11.5600004196167,43.02299880981445,11.687000274658203,-5.692999839782715,0.0,35.146499633789055 -8302,2017-06-11 22:00:00,37.86299896240234,12.480999946594238,44.76599884033203,12.598999977111816,-7.078999996185303,-1.4390000104904177,34.04800033569336 -8303,2017-06-11 23:00:00,35.349998474121094,11.810999870300291,42.459999084472656,12.222999572753904,-7.206999778747559,-1.4819999933242798,33.388500213623054 -8304,2017-06-12 00:00:00,28.81599998474121,9.21399974822998,37.18000030517578,10.480999946594238,-8.934000015258789,-1.7059999704360962,33.16899871826172 -8305,2017-06-12 01:00:00,30.32399940490723,9.800999641418455,39.16299819946289,10.96399974822998,-9.935999870300291,-2.943000078201294,32.94900131225586 -8306,2017-06-12 02:00:00,29.738000869750977,10.638999938964844,39.53799819946289,11.526000022888184,-9.883000373840332,-2.4730000495910645,32.72949981689453 -8307,2017-06-12 03:00:00,28.145999908447266,8.963000297546387,36.402000427246094,10.185999870300291,-8.965999603271484,-2.4730000495910645,32.5099983215332 -8308,2017-06-12 04:00:00,26.55400085449219,9.21399974822998,35.972999572753906,11.204999923706056,-10.395000457763672,-2.4730000495910645,32.06999969482422 -8309,2017-06-12 05:00:00,30.82699966430664,10.890000343322754,39.08300018310547,11.767999649047852,-7.888999938964844,-2.4730000495910645,31.631000518798828 -8310,2017-06-12 06:00:00,25.968000411987305,7.958000183105469,37.15299987792969,10.052000045776367,-10.767999649047852,-2.4730000495910645,31.631000518798828 -8311,2017-06-12 07:00:00,29.98900032043457,9.465999603271484,39.08300018310547,11.017000198364258,-9.392999649047852,-2.4730000495910645,31.631000518798828 -8312,2017-06-12 08:00:00,31.32900047302246,9.717000007629396,40.45000076293945,11.28499984741211,-8.156000137329103,-2.4730000495910645,32.290000915527344 -8313,2017-06-12 09:00:00,27.726999282836918,8.628000259399414,36.83100128173828,10.401000022888184,-8.071000099182129,-2.4730000495910645,32.72949981689453 -8314,2017-06-12 10:00:00,30.90999984741211,9.130999565124512,40.15499877929688,10.883000373840332,-9.243000030517578,-2.4730000495910645,33.60850143432617 -8315,2017-06-12 11:00:00,33.590999603271484,9.717000007629396,42.459999084472656,11.418999671936035,-8.11299991607666,-2.131999969482422,34.487499237060554 -8316,2017-06-12 12:00:00,32.92100143432617,9.717000007629396,43.479000091552734,11.875,-9.413999557495115,-2.131999969482422,35.36600112915039 -8317,2017-06-12 13:00:00,35.685001373291016,11.5600004196167,44.87300109863281,13.161999702453612,-9.574000358581545,-2.131999969482422,35.80550003051758 -8318,2017-06-12 14:00:00,33.757999420166016,11.727999687194824,43.80099868774414,13.37600040435791,-9.979000091552734,-2.131999969482422,37.124000549316406 -8319,2017-06-12 15:00:00,32.669998168945305,10.303000450134276,42.78200149536133,12.46500015258789,-9.979000091552734,-2.4730000495910645,36.90399932861328 -8320,2017-06-12 16:00:00,33.757999420166016,8.795999526977539,44.09500122070313,10.588000297546388,-10.0,-2.4730000495910645,36.025001525878906 -8321,2017-06-12 17:00:00,33.590999603271484,9.717000007629396,43.74700164794922,11.633999824523926,-9.894000053405762,-2.4730000495910645,35.145999908447266 -8322,2017-06-12 18:00:00,34.847000122070305,9.968000411987305,44.36399841308594,11.66100025177002,-9.85099983215332,-3.380000114440918,34.707000732421875 -8323,2017-06-12 19:00:00,32.83700180053711,9.29800033569336,41.95100021362305,10.642000198364258,-8.581999778747559,-2.068000078201294,34.04800033569336 -8324,2017-06-12 20:00:00,34.09400177001953,10.973999977111816,43.479000091552734,12.142999649047852,-8.571999549865723,-2.068000078201294,33.388999938964844 -8325,2017-06-12 21:00:00,35.85300064086914,11.47599983215332,43.82699966430664,12.357000350952148,-8.508000373840332,-2.068000078201294,33.16899871826172 -8326,2017-06-12 22:00:00,36.43899917602539,11.810999870300291,44.41699981689453,13.00100040435791,-7.302999973297119,-1.2369999885559082,32.94900131225586 -8327,2017-06-12 23:00:00,33.92599868774414,11.140999794006348,41.76300048828125,11.553000450134276,-8.156000137329103,-2.4730000495910645,32.72949981689453 -8328,2017-06-13 00:00:00,30.239999771118164,10.38700008392334,38.70800018310547,11.178000450134276,-8.199000358581543,-1.4179999828338623,32.290000915527344 -8329,2017-06-13 01:00:00,28.899999618530277,8.878999710083008,37.742000579833984,10.37399959564209,-8.166999816894531,-2.7720000743865967,32.06999969482422 -8330,2017-06-13 02:00:00,31.077999114990234,10.303000450134276,39.16299819946289,11.312000274658203,-9.052000045776367,-2.7720000743865967,31.631000518798828 -8331,2017-06-13 03:00:00,29.319000244140625,9.465999603271484,38.84199905395508,11.33899974822998,-9.020000457763672,-2.7720000743865967,31.631000518798828 -8332,2017-06-13 04:00:00,30.072999954223643,9.465999603271484,38.62699890136719,10.96399974822998,-8.97700023651123,-2.803999900817871,31.410999298095703 -8333,2017-06-13 05:00:00,28.229999542236328,9.04699993133545,37.1259994506836,10.37399959564209,-7.995999813079834,-1.6100000143051147,31.19099998474121 -8334,2017-06-13 06:00:00,16.670000076293945,0.0,24.58099937438965,5.388000011444092,-8.060000419616701,-1.662999987602234,30.97150039672852 -8335,2017-06-13 07:00:00,7.539000034332275,0.0,17.128999710083008,3.3510000705718994,-9.062000274658203,-2.9110000133514404,30.75200080871582 -8336,2017-06-13 08:00:00,10.55500030517578,0.0,20.98900032043457,4.477000236511231,-9.381999969482422,-2.984999895095825,30.53199958801269 -8337,2017-06-13 09:00:00,11.392000198364258,0.0,21.899999618530277,4.477000236511231,-11.02400016784668,-2.984999895095825,30.53199958801269 -8338,2017-06-13 10:00:00,11.644000053405762,0.0,22.864999771118164,4.852000236511231,-11.184000015258787,-2.984999895095825,31.410999298095703 -8339,2017-06-13 11:00:00,10.973999977111816,0.0,23.10700035095215,4.073999881744385,-11.184000015258787,-2.984999895095825,31.850500106811523 -8340,2017-06-13 12:00:00,10.890000343322754,0.0,21.31100082397461,3.6719999313354488,-9.946999549865724,-2.984999895095825,32.06999969482422 -8341,2017-06-13 13:00:00,10.55500030517578,0.0,20.827999114990234,3.7260000705718994,-9.958000183105469,-2.984999895095825,32.290000915527344 -8342,2017-06-13 14:00:00,11.644000053405762,0.0,19.64900016784668,3.1630001068115234,-7.484000205993652,-2.984999895095825,32.06999969482422 -8343,2017-06-13 15:00:00,9.800999641418455,0.0,19.88999938964844,2.5729999542236333,-9.914999961853027,-2.5160000324249268,31.850500106811523 -8344,2017-06-13 16:00:00,13.487000465393065,0.0,21.631999969482425,3.88700008392334,-8.539999961853027,-2.5160000324249268,31.850500106811523 -8345,2017-06-13 17:00:00,15.916000366210938,0.0,24.097999572753903,4.235000133514403,-8.625,-2.2390000820159908,31.410999298095703 -8346,2017-06-13 18:00:00,16.0,0.0,24.25900077819824,4.315999984741212,-8.336999893188478,-2.2390000820159908,31.410999298095703 -8347,2017-06-13 19:00:00,13.821999549865724,0.0,24.5,3.88700008392334,-9.48900032043457,-2.2390000820159908,31.19099998474121 -8348,2017-06-13 20:00:00,11.057000160217283,0.0,20.29199981689453,4.477000236511231,-9.680999755859377,-2.2390000820159908,31.19099998474121 -8349,2017-06-13 21:00:00,13.402999877929688,0.0,21.09600067138672,4.824999809265137,-6.673999786376952,-2.2390000820159908,30.97150039672852 -8350,2017-06-13 22:00:00,13.402999877929688,0.0,22.56999969482422,5.441999912261963,-9.446000099182127,-2.2390000820159908,30.53199958801269 -8351,2017-06-13 23:00:00,12.5649995803833,0.0,23.187000274658203,5.951000213623048,-9.553000450134276,-2.2390000820159908,30.312000274658203 -8352,2017-06-14 00:00:00,10.55500030517578,0.0,20.479999542236328,4.557000160217285,-9.595000267028809,-2.2390000820159908,29.653499603271484 -8353,2017-06-14 01:00:00,15.664999961853027,0.0,23.214000701904297,4.2890000343322745,-7.377999782562256,-2.25,29.43400001525879 -8354,2017-06-14 02:00:00,20.60700035095215,6.114999771118164,28.62899971008301,8.14900016784668,-8.763999938964844,-2.8469998836517334,29.214000701904297 -8355,2017-06-14 03:00:00,21.025999069213867,5.611999988555908,29.05699920654297,7.077000141143799,-7.50600004196167,-1.3539999723434448,29.214000701904297 -8356,2017-06-14 04:00:00,21.44499969482422,6.7849998474121085,28.73600006103516,8.36299991607666,-8.027999877929688,-2.719000101089477,28.77449989318848 -8357,2017-06-14 05:00:00,22.86899948120117,6.533999919891357,30.961000442504893,7.960999965667725,-8.892000198364258,-2.719000101089477,28.334999084472656 -8358,2017-06-14 06:00:00,22.36599922180176,7.539000034332275,30.53199958801269,8.711999893188478,-8.038999557495117,-1.4390000104904177,28.114999771118164 -8359,2017-06-14 07:00:00,21.025999069213867,6.449999809265138,31.60400009155273,8.873000144958496,-9.585000038146973,-2.5160000324249268,28.77449989318848 -8360,2017-06-14 08:00:00,20.27199935913086,5.361000061035156,30.048999786376957,7.77400016784668,-9.765999794006348,-2.4200000762939453,30.53199958801269 -8361,2017-06-14 09:00:00,22.95199966430664,5.78000020980835,34.23099899291992,8.310000419616701,-10.939000129699709,-2.4200000762939453,32.72949981689453 -8362,2017-06-14 10:00:00,24.375999450683597,5.611999988555908,33.42699813842773,7.639999866485598,-9.744000434875488,-2.3239998817443848,34.04800033569336 -8363,2017-06-14 11:00:00,27.47599983215332,6.533999919891357,36.5359992980957,8.470999717712402,-8.720999717712402,-2.3239998817443848,34.268001556396484 -8364,2017-06-14 12:00:00,20.77400016784668,0.0,31.95199966430664,5.816999912261963,-9.946999549865724,-2.3239998817443848,34.268001556396484 -8365,2017-06-14 13:00:00,22.95199966430664,5.947999954223633,34.41899871826172,8.765000343322754,-11.237000465393066,-2.463000059127808,35.145999908447266 -8366,2017-06-14 14:00:00,23.035999298095703,6.114999771118164,32.97100067138672,8.604999542236326,-9.925999641418455,-2.463000059127808,35.80550003051758 -8367,2017-06-14 15:00:00,20.60700035095215,4.440000057220459,31.52400016784668,6.942999839782715,-11.184000015258787,-2.463000059127808,35.58599853515625 -8368,2017-06-14 16:00:00,23.035999298095703,5.445000171661377,33.18600082397461,7.692999839782715,-9.904000282287598,-2.463000059127808,35.80550003051758 -8369,2017-06-14 17:00:00,25.381999969482425,6.7849998474121085,34.98199844360352,8.630999565124513,-9.871999740600586,-2.494999885559082,35.36600112915039 -8370,2017-06-14 18:00:00,25.88400077819824,6.533999919891357,36.21500015258789,8.765000343322754,-9.84000015258789,-2.4730000495910645,35.145999908447266 -8371,2017-06-14 19:00:00,25.968000411987305,5.445000171661377,36.777000427246094,7.3979997634887695,-10.182000160217283,-2.4730000495910645,34.268001556396484 -8372,2017-06-14 20:00:00,26.88999938964844,6.198999881744385,35.75899887084961,7.747000217437744,-8.965999603271484,-2.4730000495910645,33.16899871826172 -8373,2017-06-14 21:00:00,31.32900047302246,9.381999969482422,38.54700088500977,10.185999870300291,-7.633999824523926,-1.3009999990463257,32.06999969482422 -8374,2017-06-14 22:00:00,30.82699966430664,9.381999969482422,38.92200088500977,10.239999771118164,-9.072999954223633,-2.5369999408721924,31.19099998474121 -8375,2017-06-14 23:00:00,25.88400077819824,8.376999855041504,35.49100112915039,10.133000373840332,-9.4350004196167,-2.5369999408721924,30.75200080871582 -8376,2017-06-15 00:00:00,28.81599998474121,8.543999671936035,36.858001708984375,9.70400047302246,-8.092000007629395,-1.3220000267028809,30.312000274658203 -8377,2017-06-15 01:00:00,30.40800094604492,9.21399974822998,35.57099914550781,9.354999542236328,-5.565000057220459,0.0,29.87299919128418 -8378,2017-06-15 02:00:00,26.47100067138672,8.208999633789062,35.141998291015625,9.16800022125244,-9.392999649047852,-2.5160000324249268,29.653499603271484 -8379,2017-06-15 03:00:00,26.972999572753903,7.789999961853027,34.820999145507805,9.034000396728516,-8.156000137329103,-1.4709999561309814,29.214000701904297 -8380,2017-06-15 04:00:00,24.87899971008301,7.454999923706055,34.391998291015625,9.354999542236328,-8.444000244140625,-2.5910000801086426,28.77449989318848 -8381,2017-06-15 05:00:00,25.632999420166016,7.706999778747559,34.5260009765625,8.604999542236326,-9.531000137329102,-1.2580000162124634,28.334999084472656 -8382,2017-06-15 06:00:00,26.80599975585937,7.623000144958496,35.75899887084961,8.496999740600586,-8.508000373840332,-1.5140000581741333,28.114999771118164 -8383,2017-06-15 07:00:00,20.77400016784668,4.105000019073486,30.39800071716309,6.138999938964844,-9.616999626159668,-1.5889999866485596,28.114999771118164 -8384,2017-06-15 08:00:00,26.47100067138672,5.947999954223633,35.86600112915039,7.665999889373777,-9.541999816894531,-2.8469998836517334,30.09250068664551 -8385,2017-06-15 09:00:00,27.559999465942383,7.874000072479247,37.39400100708008,9.70400047302246,-10.83199977874756,-2.8469998836517334,33.388999938964844 -8386,2017-06-15 10:00:00,26.2189998626709,5.026000022888184,36.66999816894531,7.210999965667725,-9.605999946594238,-2.131999969482422,36.68450164794922 -8387,2017-06-15 11:00:00,28.565000534057607,7.539000034332275,39.18999862670898,9.810999870300291,-9.553000450134276,-2.131999969482422,39.98049926757813 -8388,2017-06-15 12:00:00,28.983999252319336,7.372000217437744,38.89500045776367,9.461999893188477,-9.446000099182127,-3.3480000495910645,39.98049926757813 -8389,2017-06-15 13:00:00,29.15099906921387,7.874000072479247,40.15499877929688,9.94499969482422,-10.756999969482422,-3.3480000495910645,40.85950088500977 -8390,2017-06-15 14:00:00,30.32399940490723,9.04699993133545,39.86000061035156,10.989999771118164,-10.756999969482422,-3.3480000495910645,41.95800018310547 -8391,2017-06-15 15:00:00,30.65900039672852,9.717000007629396,40.69100189208984,11.472999572753904,-9.402999877929688,-3.3480000495910645,40.41949844360352 -8392,2017-06-15 16:00:00,32.75299835205078,9.717000007629396,41.95100021362305,11.12399959564209,-9.446000099182127,-3.3480000495910645,38.88199996948242 -8393,2017-06-15 17:00:00,31.2450008392334,8.795999526977539,40.71799850463867,10.588000297546388,-9.371000289916992,-3.3480000495910645,37.78350067138672 -8394,2017-06-15 18:00:00,32.75299835205078,9.633000373840332,41.14699935913086,10.480999946594238,-9.4350004196167,-2.131999969482422,37.124000549316406 -8395,2017-06-15 19:00:00,29.15099906921387,7.958000183105469,37.2599983215332,8.578000068664549,-8.230999946594237,-1.406999945640564,36.46500015258789 -8396,2017-06-15 20:00:00,30.492000579833984,8.878999710083008,38.89500045776367,9.515999794006348,-8.432999610900879,-2.5269999504089355,35.80550003051758 -8397,2017-06-15 21:00:00,26.972999572753903,7.203999996185303,34.820999145507805,8.175999641418457,-8.678000450134277,-2.687000036239624,34.707000732421875 -8398,2017-06-15 22:00:00,29.98900032043457,9.465999603271484,40.77199935913086,11.204999923706056,-10.01099967956543,-2.687000036239624,33.827999114990234 -8399,2017-06-15 23:00:00,29.066999435424805,8.376999855041504,37.04600143432617,9.91800022125244,-8.678000450134277,-1.9299999475479128,32.94900131225586 -8400,2017-06-16 00:00:00,26.63800048828125,8.125,36.26800155639648,9.864999771118164,-8.61400032043457,-3.16599988937378,32.5099983215332 -8401,2017-06-16 01:00:00,26.30299949645996,7.623000144958496,34.20399856567383,8.657999992370605,-8.668000221252441,-1.950999975204468,32.06999969482422 -8402,2017-06-16 02:00:00,27.22500038146973,8.208999633789062,36.3489990234375,10.024999618530272,-8.934000015258789,-1.950999975204468,31.19099998474121 -8403,2017-06-16 03:00:00,26.972999572753903,8.376999855041504,34.391998291015625,9.677000045776367,-7.644000053405763,-1.2690000534057615,30.312000274658203 -8404,2017-06-16 04:00:00,28.73200035095215,9.130999565124512,34.632999420166016,9.623000144958496,-5.468999862670898,-1.2790000438690186,29.87299919128418 -8405,2017-06-16 05:00:00,27.64299964904785,8.293000221252441,35.16899871826172,9.274999618530272,-8.048999786376951,-2.003999948501587,29.214000701904297 -8406,2017-06-16 06:00:00,26.30299949645996,8.628000259399414,35.25,9.972000122070312,-8.934000015258789,-2.494999885559082,28.77449989318848 -8407,2017-06-16 07:00:00,25.632999420166016,7.119999885559082,34.042999267578125,8.52400016784668,-8.038999557495117,-1.2369999885559082,29.43400001525879 -8408,2017-06-16 08:00:00,26.2189998626709,5.863999843597412,35.25,7.77400016784668,-9.178999900817873,-2.483999967575073,31.850500106811523 -8409,2017-06-16 09:00:00,24.795000076293945,7.706999778747559,36.13399887084961,10.07900047302246,-11.493000030517578,-2.483999967575073,33.827999114990234 -8410,2017-06-16 10:00:00,25.968000411987305,6.366000175476074,35.73199844360352,8.470999717712402,-10.246000289916992,-2.483999967575073,35.58599853515625 -8411,2017-06-16 11:00:00,26.55400085449219,6.533999919891357,38.46599960327149,9.248000144958496,-11.567999839782717,-3.240999937057495,37.5634994506836 -8412,2017-06-16 12:00:00,31.2450008392334,8.878999710083008,42.00500106811523,11.097999572753906,-10.35200023651123,-3.240999937057495,39.98049926757813 -8413,2017-06-16 13:00:00,32.333999633789055,10.052000045776367,42.29899978637695,11.767999649047852,-10.3100004196167,-3.240999937057495,42.1775016784668 -8414,2017-06-16 14:00:00,31.32900047302246,10.220000267028809,41.81700134277344,12.170000076293944,-10.053999900817873,-3.240999937057495,43.93600082397461 -8415,2017-06-16 15:00:00,32.75299835205078,10.805999755859377,43.15700149536133,12.652000427246096,-10.19200038909912,-3.240999937057495,44.59500122070313 -8416,2017-06-16 16:00:00,30.072999954223643,8.963000297546387,40.42300033569336,10.855999946594238,-10.15999984741211,-2.174999952316284,42.397499084472656 -8417,2017-06-16 17:00:00,29.066999435424805,8.293000221252441,39.11000061035156,10.185999870300291,-10.138999938964844,-2.282000064849853,40.41949844360352 -8418,2017-06-16 18:00:00,35.60100173950195,9.800999641418455,43.50600051879883,10.74899959564209,-8.880999565124512,-2.282000064849853,39.54100036621094 -8419,2017-06-16 19:00:00,32.669998168945305,8.963000297546387,39.94100189208984,9.381999969482422,-6.5349998474121085,-1.2369999885559082,38.44250106811523 -8420,2017-06-16 20:00:00,31.74799919128418,7.958000183105469,38.78799819946289,8.657999992370605,-7.771999835968018,-2.45199990272522,37.124000549316406 -8421,2017-06-16 21:00:00,30.99399948120117,6.7849998474121085,37.823001861572266,7.960999965667725,-6.5349998474121085,-1.3109999895095823,36.025001525878906 -8422,2017-06-16 22:00:00,25.968000411987305,4.941999912261963,33.21200180053711,6.4070000648498535,-6.364999771118164,-1.246999979019165,34.707000732421875 -8423,2017-06-16 23:00:00,21.863000869750977,5.276999950408936,28.81599998474121,6.353000164031982,-7.7189998626708975,-1.3860000371932983,33.827999114990234 -8424,2017-06-17 00:00:00,20.1879997253418,6.031000137329103,28.65500068664551,7.372000217437744,-7.633999824523926,-1.4390000104904177,32.94900131225586 -8425,2017-06-17 01:00:00,23.70599937438965,8.041999816894531,32.648998260498054,9.435999870300291,-8.199000358581543,-1.6740000247955322,32.5099983215332 -8426,2017-06-17 02:00:00,19.937000274658203,4.859000205993652,27.20800018310547,6.058000087738037,-6.99399995803833,-1.63100004196167,31.631000518798828 -8427,2017-06-17 03:00:00,25.46500015258789,8.628000259399414,33.400001525878906,9.94499969482422,-8.081000328063965,-1.2369999885559082,31.19099998474121 -8428,2017-06-17 04:00:00,26.63800048828125,8.628000259399414,35.40999984741211,10.159000396728516,-9.253999710083008,-2.782999992370605,30.53199958801269 -8429,2017-06-17 05:00:00,31.413000106811523,10.722000122070312,36.858001708984375,10.722000122070312,-5.607999801635742,0.0,30.09250068664551 -8430,2017-06-17 06:00:00,25.548999786376957,8.208999633789062,35.38399887084961,9.810999870300291,-9.531000137329102,-1.3220000267028809,29.43400001525879 -8431,2017-06-17 07:00:00,27.64299964904785,9.21399974822998,36.05400085449219,10.052000045776367,-8.27299976348877,-1.621000051498413,29.87299919128418 -8432,2017-06-17 08:00:00,21.863000869750977,6.198999881744385,33.42699813842773,8.657999992370605,-11.109000205993652,-2.6010000705718994,31.410999298095703 -8433,2017-06-17 09:00:00,30.65900039672852,9.550000190734863,39.18999862670898,11.232000350952148,-8.741999626159668,-2.6010000705718994,33.388500213623054 -8434,2017-06-17 10:00:00,21.19300079345703,5.78000020980835,32.35499954223633,8.336999893188478,-11.248000144958496,-2.6010000705718994,35.58599853515625 -8435,2017-06-17 11:00:00,27.64299964904785,8.543999671936035,39.18999862670898,12.03600025177002,-11.333000183105469,-2.6010000705718994,38.88150024414063 -8436,2017-06-17 12:00:00,28.73200035095215,7.958000183105469,39.96699905395508,10.267000198364258,-11.407999992370604,-2.6010000705718994,40.85900115966797 -8437,2017-06-17 13:00:00,31.413000106811523,9.717000007629396,42.084999084472656,11.875,-10.19200038909912,-2.6010000705718994,42.397499084472656 -8438,2017-06-17 14:00:00,29.65399932861328,9.633000373840332,41.49499893188477,11.687000274658203,-11.449999809265137,-2.6010000705718994,43.93550109863281 -8439,2017-06-17 15:00:00,26.972999572753903,8.376999855041504,39.75299835205078,10.776000022888184,-12.739999771118164,-2.6010000705718994,44.15499877929688 -8440,2017-06-17 16:00:00,31.99900054931641,9.717000007629396,41.54899978637695,11.392000198364258,-8.998000144958496,-2.6010000705718994,43.05649948120117 -8441,2017-06-17 17:00:00,33.34000015258789,9.550000190734863,40.77199935913086,10.722000122070312,-7.771999835968018,-2.6010000705718994,41.29850006103516 -8442,2017-06-17 18:00:00,35.43399810791016,10.470999717712402,41.25400161743164,10.989999771118164,-6.566999912261963,-2.6010000705718994,39.32149887084961 -8443,2017-06-17 19:00:00,36.52299880981445,11.5600004196167,41.22700119018555,11.28499984741211,-4.0939998626708975,0.0,37.78300094604492 -8444,2017-06-17 20:00:00,32.417999267578125,9.21399974822998,38.78799819946289,9.48900032043457,-6.63100004196167,-1.2150000333786009,36.90399932861328 -8445,2017-06-17 21:00:00,36.1879997253418,11.47599983215332,42.19200134277344,11.767999649047852,-5.916999816894531,-1.3860000371932983,36.025001525878906 -8446,2017-06-17 22:00:00,37.44400024414063,13.319000244140623,43.55899810791016,13.00100040435791,-6.001999855041504,0.0,34.926498413085945 -8447,2017-06-17 23:00:00,32.83700180053711,10.973999977111816,38.14500045776367,10.90999984741211,-5.736000061035156,0.0,34.487499237060554 -8448,2017-06-18 00:00:00,28.062000274658203,9.465999603271484,35.8390007019043,10.267000198364258,-6.908999919891357,-1.375,33.82849884033203 -8449,2017-06-18 01:00:00,27.97900009155273,10.13599967956543,37.42100143432617,11.178000450134276,-8.177000045776367,-1.2369999885559082,33.60850143432617 -8450,2017-06-18 02:00:00,26.72200012207031,8.543999671936035,37.39400100708008,10.642000198364258,-9.935999870300291,-2.5269999504089355,33.16899871826172 -8451,2017-06-18 03:00:00,28.73200035095215,10.303000450134276,37.1259994506836,11.446000099182127,-8.880999565124512,-2.5269999504089355,32.94900131225586 -8452,2017-06-18 04:00:00,27.392000198364247,9.21399974822998,36.96500015258789,10.937000274658203,-9.371000289916992,-2.5269999504089355,32.72949981689453 -8453,2017-06-18 05:00:00,27.895000457763672,9.04699993133545,37.4739990234375,10.560999870300291,-9.265000343322754,-2.5269999504089355,32.5099983215332 -8454,2017-06-18 06:00:00,26.80599975585937,8.041999816894531,37.87699890136719,10.052000045776367,-10.255999565124512,-2.5269999504089355,32.290000915527344 -8455,2017-06-18 07:00:00,26.88999938964844,8.628000259399414,37.01900100708008,10.239999771118164,-10.395000457763672,-2.5269999504089355,32.290000915527344 -8456,2017-06-18 08:00:00,23.035999298095703,6.366000175476074,34.553001403808594,10.37399959564209,-9.958000183105469,-2.5269999504089355,33.16899871826172 -8457,2017-06-18 09:00:00,24.71199989318848,7.037000179290772,35.57099914550781,9.248000144958496,-10.04300022125244,-2.5269999504089355,34.267501831054695 -8458,2017-06-18 10:00:00,26.88999938964844,8.041999816894531,37.68899917602539,10.07900047302246,-11.258000373840332,-2.5269999504089355,35.36600112915039 -8459,2017-06-18 11:00:00,29.56999969482422,8.041999816894531,40.69100189208984,10.052000045776367,-9.958000183105469,-2.5269999504089355,37.34349822998047 -8460,2017-06-18 12:00:00,29.319000244140625,7.037000179290772,39.29700088500977,9.0600004196167,-9.989999771118164,-2.5269999504089355,38.6619987487793 -8461,2017-06-18 13:00:00,29.066999435424805,8.041999816894531,39.48500061035156,9.99899959564209,-9.968000411987305,-2.5269999504089355,39.32149887084961 -8462,2017-06-18 14:00:00,28.565000534057607,8.376999855041504,39.35100173950195,10.29300022125244,-9.968000411987305,-2.5269999504089355,39.10150146484375 -8463,2017-06-18 15:00:00,23.70599937438965,6.618000030517577,34.01599884033203,9.034000396728516,-9.979000091552734,-2.5269999504089355,39.32099914550781 -8464,2017-06-18 16:00:00,29.066999435424805,7.958000183105469,39.53799819946289,10.07900047302246,-9.979000091552734,-2.0150001049041752,39.98049926757813 -8465,2017-06-18 17:00:00,32.250999450683594,8.711999893188478,39.80699920654297,10.024999618530272,-7.538000106811522,-2.0150001049041752,39.32099914550781 -8466,2017-06-18 18:00:00,31.16200065612793,8.963000297546387,40.28900146484375,10.347000122070312,-8.77400016784668,-2.0150001049041752,38.22249984741211 -8467,2017-06-18 19:00:00,31.413000106811523,9.04699993133545,37.5009994506836,9.140999794006348,-6.375999927520753,0.0,37.124000549316406 -8468,2017-06-18 20:00:00,37.946998596191406,10.38700008392334,37.90299987792969,8.685000419616701,0.0,0.0,36.0255012512207 -8469,2017-06-18 21:00:00,38.78499984741211,11.225000381469728,39.80699920654297,9.91800022125244,0.0,0.0,34.926498413085945 -8470,2017-06-18 22:00:00,38.36600112915039,11.727999687194824,39.08300018310547,10.159000396728516,0.0,0.0,34.487499237060554 -8471,2017-06-18 23:00:00,34.09400177001953,10.303000450134276,36.50899887084961,10.105999946594238,-1.246999979019165,0.0,33.60850143432617 -8472,2017-06-19 00:00:00,30.492000579833984,8.125,31.20199966430664,7.1570000648498535,0.0,0.0,33.16899871826172 -8473,2017-06-19 01:00:00,32.92100143432617,9.800999641418455,34.257999420166016,8.791999816894531,0.0,0.0,33.16899871826172 -8474,2017-06-19 02:00:00,34.17699813842773,10.805999755859377,35.75899887084961,9.70400047302246,-1.22599995136261,0.0,33.16899871826172 -8475,2017-06-19 03:00:00,34.512001037597656,10.722000122070312,35.972999572753906,9.864999771118164,-1.2580000162124634,0.0,32.949501037597656 -8476,2017-06-19 04:00:00,32.669998168945305,10.13599967956543,35.40999984741211,9.890999794006348,-1.3220000267028809,0.0,32.72949981689453 -8477,2017-06-19 05:00:00,36.27199935913086,11.644000053405762,37.1259994506836,10.213000297546388,0.0,0.0,32.72949981689453 -8478,2017-06-19 06:00:00,37.61199951171875,11.810999870300291,38.0369987487793,10.480999946594238,0.0,0.0,32.50949859619141 -8479,2017-06-19 07:00:00,36.68999862670898,11.644000053405762,36.8849983215332,9.838000297546388,0.0,0.0,32.070499420166016 -8480,2017-06-19 08:00:00,27.559999465942383,6.618000030517577,30.316999435424805,6.835000038146973,-3.2939999103546143,0.0,32.070499420166016 -8481,2017-06-19 09:00:00,35.518001556396484,11.225000381469728,38.680999755859375,11.232000350952148,-2.569000005722046,0.0,32.50949859619141 -8482,2017-06-19 10:00:00,33.17200088500977,8.543999671936035,36.1879997253418,8.36299991607666,-2.632999897003174,0.0,33.16899871826172 -8483,2017-06-19 11:00:00,35.349998474121094,10.38700008392334,38.65399932861328,9.48900032043457,-3.88100004196167,0.0,33.388500213623054 -8484,2017-06-19 12:00:00,36.68999862670898,10.638999938964844,41.17399978637695,11.017000198364258,-5.0,-1.2369999885559082,34.267501831054695 -8485,2017-06-19 13:00:00,35.182998657226555,10.303000450134276,38.76100158691406,10.427000045776367,-3.4760000705718994,-1.2790000438690186,36.0255012512207 -8486,2017-06-19 14:00:00,37.69599914550781,11.225000381469728,40.74499893188477,11.151000022888184,-3.5399999618530287,0.0,37.78350067138672 -8487,2017-06-19 15:00:00,36.27199935913086,11.309000015258787,39.96699905395508,11.258000373840332,-3.220000028610228,0.0,36.90449905395508 -8488,2017-06-19 16:00:00,39.11999893188477,11.810999870300291,42.35300064086914,11.875,-2.8359999656677246,-1.3109999895095823,35.58549880981445 -8489,2017-06-19 17:00:00,38.53300094604492,11.392000198364258,41.28099822998047,11.12399959564209,-2.5799999237060547,0.0,34.707000732421875 -8490,2017-06-19 18:00:00,39.790000915527344,11.644000053405762,40.77199935913086,10.74899959564209,0.0,0.0,34.267501831054695 -8491,2017-06-19 19:00:00,34.512001037597656,9.130999565124512,33.722000122070305,8.015000343322754,0.0,0.0,33.82849884033203 -8492,2017-06-19 20:00:00,40.87900161743164,11.5600004196167,40.93199920654297,10.105999946594238,0.0,0.0,33.60850143432617 -8493,2017-06-19 21:00:00,40.20899963378906,12.815999984741213,40.52999877929688,11.043999671936035,0.0,0.0,33.16899871826172 -8494,2017-06-19 22:00:00,37.44400024414063,12.229999542236328,38.0369987487793,10.508000373840332,0.0,0.0,33.16899871826172 -8495,2017-06-19 23:00:00,35.014999389648445,11.727999687194824,37.742000579833984,11.418999671936035,-1.22599995136261,0.0,33.16899871826172 -8496,2017-06-20 00:00:00,36.1879997253418,11.979000091552734,37.6619987487793,10.69499969482422,-1.2899999618530271,0.0,32.94900131225586 -8497,2017-06-20 01:00:00,36.02000045776367,12.314000129699709,37.20600128173828,10.883000373840332,0.0,0.0,32.72949981689453 -8498,2017-06-20 02:00:00,36.60699844360352,11.47599983215332,36.7239990234375,10.07900047302246,0.0,0.0,32.5099983215332 -8499,2017-06-20 03:00:00,33.674999237060554,11.140999794006348,35.75899887084961,10.508000373840332,-2.6440000534057617,0.0,32.06999969482422 -8500,2017-06-20 04:00:00,33.34000015258789,10.38700008392334,34.472000122070305,9.810999870300291,0.0,0.0,31.631000518798828 -8501,2017-06-20 05:00:00,34.0099983215332,10.220000267028809,35.597999572753906,9.435999870300291,-1.343000054359436,0.0,31.410999298095703 -8502,2017-06-20 06:00:00,38.44900131225586,12.480999946594238,38.11800003051758,10.560999870300291,0.0,0.0,31.19099998474121 -8503,2017-06-20 07:00:00,38.11399841308594,11.47599983215332,38.680999755859375,10.45400047302246,0.0,0.0,31.631000518798828 -8504,2017-06-20 08:00:00,35.0989990234375,9.465999603271484,36.80400085449219,9.034000396728516,-1.3220000267028809,0.0,32.72949981689453 -8505,2017-06-20 09:00:00,36.27199935913086,11.057000160217283,39.27000045776367,11.017000198364258,-2.878999948501587,0.0,34.926498413085945 -8506,2017-06-20 10:00:00,36.52299880981445,9.29800033569336,38.27899932861328,8.979999542236328,-1.4709999561309814,0.0,38.44250106811523 -8507,2017-06-20 11:00:00,37.61199951171875,10.13599967956543,40.50299835205078,10.07900047302246,-2.5799999237060547,-1.2369999885559082,42.178001403808594 -8508,2017-06-20 12:00:00,39.95700073242188,11.47599983215332,42.165000915527344,10.90999984741211,-2.782999992370605,-1.3109999895095823,44.375 -8509,2017-06-20 13:00:00,37.10900115966797,10.303000450134276,40.90599822998047,10.588000297546388,-2.440999984741211,-1.2790000438690186,43.05699920654297 -8510,2017-06-20 14:00:00,39.0359992980957,11.5600004196167,40.85200119018555,11.258000373840332,-2.483999967575073,0.0,43.71599960327149 -8511,2017-06-20 15:00:00,40.459999084472656,11.5600004196167,42.78200149536133,11.312000274658203,-1.866000056266785,0.0,43.93550109863281 -8512,2017-06-20 16:00:00,41.29800033569336,12.64900016784668,43.63999938964844,12.08899974822998,-1.7910000085830688,0.0,42.83700180053711 -8513,2017-06-20 17:00:00,40.54399871826172,11.5600004196167,43.13000106811523,11.097999572753906,-2.8250000476837163,0.0,42.397499084472656 -8514,2017-06-20 18:00:00,41.88399887084961,12.64900016784668,43.50600051879883,11.741000175476074,-1.2690000534057615,0.0,41.95800018310547 -8515,2017-06-20 19:00:00,41.79999923706055,12.64900016784668,42.27299880981445,10.855999946594238,0.0,0.0,40.63949966430664 -8516,2017-06-20 20:00:00,42.47000122070313,13.73799991607666,42.88899993896485,11.902000427246096,0.0,0.0,39.32149887084961 -8517,2017-06-20 21:00:00,34.763999938964844,8.878999710083008,35.91999816894531,8.069000244140625,0.0,0.0,38.00299835205078 -8518,2017-06-20 22:00:00,37.10900115966797,11.644000053405762,36.696998596191406,9.677000045776367,0.0,0.0,37.124000549316406 -8519,2017-06-20 23:00:00,39.790000915527344,13.487000465393065,40.262001037597656,11.66100025177002,0.0,0.0,36.46500015258789 -8520,2017-06-21 00:00:00,39.0359992980957,12.64900016784668,38.81499862670898,10.69499969482422,0.0,0.0,36.025001525878906 -8521,2017-06-21 01:00:00,33.25600051879883,9.885000228881836,36.29499816894531,9.864999771118164,-1.8980000019073489,0.0,35.80550003051758 -8522,2017-06-21 02:00:00,37.19300079345703,12.145999908447266,37.0989990234375,10.31999969482422,0.0,0.0,35.58599853515625 -8523,2017-06-21 03:00:00,36.52299880981445,12.229999542236328,35.2760009765625,10.213000297546388,1.246999979019165,0.0,35.145999908447266 -8524,2017-06-21 04:00:00,34.345001220703125,10.220000267028809,33.93600082397461,8.73900032043457,0.0,0.0,34.707000732421875 -8525,2017-06-21 05:00:00,35.518001556396484,11.225000381469728,36.9119987487793,10.614999771118164,-1.2150000333786009,0.0,34.268001556396484 -8526,2017-06-21 06:00:00,36.94200134277344,11.644000053405762,38.33200073242188,10.803000450134276,0.0,0.0,34.268001556396484 -8527,2017-06-21 07:00:00,35.76900100708008,11.979000091552734,38.27899932861328,11.66100025177002,-2.5369999408721924,0.0,34.268001556396484 -8528,2017-06-21 08:00:00,34.345001220703125,9.717000007629396,37.93000030517578,9.91800022125244,-3.11299991607666,-1.2790000438690186,34.707000732421875 -8529,2017-06-21 09:00:00,39.11999893188477,12.062999725341797,42.62099838256836,11.954999923706056,-3.0699999332427983,0.0,34.707000732421875 -8530,2017-06-21 10:00:00,35.014999389648445,8.543999671936035,38.01100158691406,8.604999542236326,-2.888999938964844,-1.22599995136261,35.58599853515625 -8531,2017-06-21 11:00:00,36.858001708984375,9.968000411987305,40.95899963378906,13.80500030517578,-3.006999969482422,-1.3009999990463257,36.46500015258789 -8532,2017-06-21 12:00:00,40.29199981689453,11.979000091552734,43.50600051879883,11.795000076293944,-3.1770000457763667,-1.375,38.00299835205078 -8533,2017-06-21 13:00:00,40.125,12.145999908447266,43.39899826049805,12.008999824523926,-2.9210000038146973,-1.2690000534057615,40.41949844360352 -8534,2017-06-21 14:00:00,37.69599914550781,11.225000381469728,40.66400146484375,11.33899974822998,-2.9749999046325684,-1.2899999618530271,42.397499084472656 -8535,2017-06-21 15:00:00,40.459999084472656,12.314000129699709,43.854000091552734,12.008999824523926,-3.742000102996826,0.0,41.29850006103516 -8536,2017-06-21 16:00:00,39.53799819946289,10.38700008392334,44.229000091552734,11.5,-3.252000093460083,-1.2580000162124634,41.29850006103516 -8537,2017-06-21 17:00:00,40.71099853515625,11.309000015258787,43.77399826049805,11.418999671936035,-3.0280001163482666,-1.246999979019165,39.98049926757813 -8538,2017-06-21 18:00:00,41.46500015258789,12.229999542236328,42.78200149536133,11.446000099182127,0.0,0.0,38.66249847412109 -8539,2017-06-21 19:00:00,41.632999420166016,14.072999954223633,43.104000091552734,12.222999572753904,0.0,0.0,37.124000549316406 -8540,2017-06-21 20:00:00,40.04100036621094,12.229999542236328,40.02099990844727,10.133000373840332,0.0,0.0,36.24499893188477 -8541,2017-06-21 21:00:00,42.88899993896485,13.98900032043457,43.66699981689453,12.357000350952148,0.0,0.0,35.80550003051758 -8542,2017-06-21 22:00:00,44.900001525878906,15.496999740600586,44.65800094604492,13.29599952697754,0.0,0.0,35.80550003051758 -8543,2017-06-21 23:00:00,41.96799850463867,14.407999992370604,42.27299880981445,12.437999725341797,0.0,0.0,35.80550003051758 -8544,2017-06-22 00:00:00,38.44900131225586,12.145999908447266,40.69100189208984,11.982000350952148,-1.6529999971389768,0.0,35.58599853515625 -8545,2017-06-22 01:00:00,35.685001373291016,11.895000457763672,36.777000427246094,11.204999923706056,0.0,0.0,35.58599853515625 -8546,2017-06-22 02:00:00,35.85300064086914,11.47599983215332,36.9379997253418,11.043999671936035,0.0,0.0,35.58599853515625 -8547,2017-06-22 03:00:00,34.0099983215332,11.5600004196167,35.893001556396484,11.28499984741211,-1.5779999494552612,0.0,35.145999908447266 -8548,2017-06-22 04:00:00,37.36100006103516,12.732999801635742,38.11800003051758,11.902000427246096,0.0,0.0,34.707000732421875 -8549,2017-06-22 05:00:00,29.319000244140625,8.543999671936035,31.28199958801269,8.657999992370605,-1.3539999723434448,0.0,34.707000732421875 -8550,2017-06-22 06:00:00,30.82699966430664,8.543999671936035,32.78300094604492,8.95300006866455,-2.5369999408721924,-1.2790000438690186,34.707000732421875 -8551,2017-06-22 07:00:00,29.65399932861328,8.461000442504883,32.78300094604492,9.274999618530272,-2.740000009536743,-1.524999976158142,34.707000732421875 -8552,2017-06-22 08:00:00,30.65900039672852,6.618000030517577,33.53400039672852,7.692999839782715,-2.750999927520752,-1.2790000438690186,34.926498413085945 -8553,2017-06-22 09:00:00,30.57500076293945,7.288000106811522,33.588001251220696,8.550999641418457,-2.750999927520752,-1.2790000438690186,34.707000732421875 -8554,2017-06-22 10:00:00,34.429000854492195,7.623000144958496,37.71599960327149,8.578000068664549,-2.760999917984009,-1.2790000438690186,34.707000732421875 -8555,2017-06-22 11:00:00,37.277000427246094,8.125,40.74499893188477,9.11400032043457,-2.760999917984009,-1.2790000438690186,36.24499893188477 -8556,2017-06-22 12:00:00,37.77899932861328,9.29800033569336,41.20000076293945,10.159000396728516,-3.049000024795532,-1.2790000438690186,38.00299835205078 -8557,2017-06-22 13:00:00,36.43899917602539,8.711999893188478,38.86800003051758,9.140999794006348,-2.931999921798706,-1.2790000438690186,38.6619987487793 -8558,2017-06-22 14:00:00,37.19300079345703,9.04699993133545,38.86800003051758,9.54300022125244,-1.5349999666213991,-1.2690000534057615,38.22299957275391 -8559,2017-06-22 15:00:00,38.28200149536133,10.220000267028809,41.87099838256836,10.96399974822998,-3.101999998092652,-1.2690000534057615,36.90399932861328 -8560,2017-06-22 16:00:00,36.02000045776367,9.04699993133545,39.94100189208984,10.052000045776367,-3.101999998092652,-1.2690000534057615,36.90399932861328 -8561,2017-06-22 17:00:00,38.86800003051758,10.55500030517578,41.95100021362305,11.043999671936035,-2.664999961853028,-1.2690000534057615,37.78300094604492 -8562,2017-06-22 18:00:00,40.54399871826172,11.140999794006348,41.81700134277344,10.883000373840332,0.0,0.0,37.5634994506836 -8563,2017-06-22 19:00:00,36.60699844360352,9.04699993133545,38.30500030517578,8.550999641418457,-1.3650000095367432,0.0,36.68450164794922 -8564,2017-06-22 20:00:00,41.38100051879883,11.895000457763672,41.28099822998047,10.69499969482422,0.0,0.0,36.025001525878906 -8565,2017-06-22 21:00:00,38.44900131225586,10.638999938964844,39.45800018310547,9.91800022125244,0.0,0.0,35.145999908447266 -8566,2017-06-22 22:00:00,40.29199981689453,12.39799976348877,41.57600021362305,11.847999572753904,-1.4609999656677246,0.0,34.707000732421875 -8567,2017-06-22 23:00:00,37.77899932861328,11.47599983215332,39.61899948120117,10.90999984741211,-1.4609999656677246,0.0,34.487499237060554 -8568,2017-06-23 00:00:00,37.946998596191406,11.5600004196167,39.69900131225586,11.392000198364258,-1.5889999866485596,0.0,34.04800033569336 -8569,2017-06-23 01:00:00,38.617000579833984,12.229999542236328,37.367000579833984,10.480999946594238,0.0,0.0,34.04800033569336 -8570,2017-06-23 02:00:00,35.349998474121094,10.55500030517578,37.1259994506836,10.31999969482422,-1.4500000476837158,0.0,33.60850143432617 -8571,2017-06-23 03:00:00,34.68000030517578,9.968000411987305,37.233001708984375,10.480999946594238,-2.96399998664856,-1.2690000534057615,33.60850143432617 -8572,2017-06-23 04:00:00,33.17200088500977,9.717000007629396,36.483001708984375,10.427000045776367,-2.5910000801086426,-1.2150000333786009,33.388999938964844 -8573,2017-06-23 05:00:00,36.27199935913086,11.309000015258787,37.1259994506836,10.855999946594238,0.0,0.0,33.388999938964844 -8574,2017-06-23 06:00:00,35.76900100708008,10.13599967956543,37.55500030517578,10.239999771118164,-1.8869999647140503,-1.246999979019165,32.949501037597656 -8575,2017-06-23 07:00:00,35.685001373291016,10.55500030517578,37.6619987487793,10.883000373840332,-1.8339999914169312,-1.4390000104904177,33.16899871826172 -8576,2017-06-23 08:00:00,33.25600051879883,7.539000034332275,35.75899887084961,8.069000244140625,-2.632999897003174,-1.246999979019165,33.16899871826172 -8577,2017-06-23 09:00:00,38.28200149536133,10.55500030517578,40.87900161743164,10.776000022888184,-2.7290000915527344,-1.343000054359436,33.16899871826172 -8578,2017-06-23 10:00:00,37.52799987792969,8.795999526977539,39.32400131225586,9.034000396728516,-1.5460000038146973,-1.2690000534057615,32.949501037597656 -8579,2017-06-23 11:00:00,36.52299880981445,8.795999526977539,39.61899948120117,9.354999542236328,-2.5480000972747803,-1.2150000333786009,32.290000915527344 -8580,2017-06-23 12:00:00,39.11999893188477,9.968000411987305,41.30799865722656,10.29300022125244,-2.494999885559082,-1.2369999885559082,32.06999969482422 -8581,2017-06-23 13:00:00,38.95199966430664,10.38700008392334,42.62099838256836,11.204999923706056,-3.2839999198913574,-2.463000059127808,34.04800033569336 -8582,2017-06-23 14:00:00,37.69599914550781,9.550000190734863,41.415000915527344,10.29300022125244,-3.1979999542236333,-2.463000059127808,34.926498413085945 -8583,2017-06-23 15:00:00,40.29199981689453,11.5600004196167,43.82699966430664,12.25,-3.240999937057495,-2.463000059127808,36.90449905395508 -8584,2017-06-23 16:00:00,42.21900177001953,12.39799976348877,44.71200180053711,12.706000328063965,-2.900000095367432,-1.2790000438690186,38.6619987487793 -8585,2017-06-23 17:00:00,42.387001037597656,11.644000053405762,44.20299911499024,11.607000350952148,0.0,-1.2790000438690186,38.22249984741211 -8586,2017-06-23 18:00:00,39.0359992980957,10.638999938964844,40.93199920654297,10.96399974822998,-1.2580000162124634,-1.2790000438690186,37.34349822998047 -8587,2017-06-23 19:00:00,29.40299987792969,5.863999843597412,37.18000030517578,8.604999542236326,-7.570000171661378,-2.5269999504089355,36.464500427246094 -8588,2017-06-23 20:00:00,32.333999633789055,7.706999778747559,41.84400177001953,10.855999946594238,-10.0,-3.742000102996826,35.80550003051758 -8589,2017-06-23 21:00:00,35.014999389648445,10.13599967956543,43.88100051879883,12.894000053405762,-8.732000350952147,-3.742000102996826,35.145999908447266 -8590,2017-06-23 22:00:00,29.82099914550781,7.958000183105469,40.07500076293945,11.178000450134276,-10.0,-3.742000102996826,34.707000732421875 -8591,2017-06-23 23:00:00,32.58599853515625,10.38700008392334,43.13000106811523,13.21500015258789,-10.04300022125244,-3.742000102996826,34.487499237060554 -8592,2017-06-24 00:00:00,30.072999954223643,8.461000442504883,38.86800003051758,10.829999923706056,-8.645999908447267,-3.742000102996826,34.268001556396484 -8593,2017-06-24 01:00:00,30.072999954223643,8.878999710083008,37.68899917602539,10.614999771118164,-7.995999813079834,-3.742000102996826,33.827999114990234 -8594,2017-06-24 02:00:00,26.55400085449219,7.623000144958496,35.007999420166016,10.024999618530272,-7.260000228881836,-2.45199990272522,33.388999938964844 -8595,2017-06-24 03:00:00,28.81599998474121,8.878999710083008,37.823001861572266,11.687000274658203,-9.84000015258789,-3.858999967575073,32.72949981689453 -8596,2017-06-24 04:00:00,24.62800025939941,7.539000034332275,36.321998596191406,11.392000198364258,-11.097999572753906,-3.858999967575073,32.290000915527344 -8597,2017-06-24 05:00:00,26.30299949645996,6.618000030517577,34.98199844360352,9.16800022125244,-8.401000022888184,-3.858999967575073,32.06999969482422 -8598,2017-06-24 06:00:00,24.125,6.7849998474121085,34.257999420166016,9.677000045776367,-8.98799991607666,-3.92300009727478,31.631000518798828 -8599,2017-06-24 07:00:00,24.208999633789062,7.454999923706055,33.238998413085945,9.32800006866455,-7.665999889373777,-2.259999990463257,32.5099983215332 -8600,2017-06-24 08:00:00,30.32399940490723,9.381999969482422,38.11800003051758,11.366000175476074,-8.038999557495117,-3.4760000705718994,34.707000732421875 -8601,2017-06-24 09:00:00,30.072999954223643,8.041999816894531,39.512001037597656,10.96399974822998,-7.85699987411499,-3.1449999809265137,37.124000549316406 -8602,2017-06-24 10:00:00,24.62800025939941,5.696000099182129,35.35699844360352,9.0600004196167,-10.37399959564209,-4.370999813079834,40.20000076293945 -8603,2017-06-24 11:00:00,32.83700180053711,7.288000106811522,43.29100036621094,10.31999969482422,-10.607999801635742,-4.370999813079834,42.178001403808594 -8604,2017-06-24 12:00:00,33.34000015258789,6.618000030517577,42.99599838256836,9.864999771118164,-9.477999687194824,-4.370999813079834,42.83700180053711 -8605,2017-06-24 13:00:00,33.757999420166016,7.623000144958496,42.83599853515625,10.74899959564209,-8.208999633789062,-4.370999813079834,42.617000579833984 -8606,2017-06-24 14:00:00,31.832000732421875,7.454999923706055,40.55699920654297,10.37399959564209,-8.262999534606934,-4.370999813079834,43.05699920654297 -8607,2017-06-24 15:00:00,31.32900047302246,7.623000144958496,42.084999084472656,11.178000450134276,-9.48900032043457,-4.370999813079834,43.93600082397461 -8608,2017-06-24 16:00:00,33.84199905395508,8.795999526977539,44.33700180053711,11.954999923706056,-9.477999687194824,-4.370999813079834,43.2765007019043 -8609,2017-06-24 17:00:00,31.99900054931641,7.623000144958496,42.43399810791016,10.508000373840332,-9.477999687194824,-4.349999904632568,42.397499084472656 -8610,2017-06-24 18:00:00,33.757999420166016,7.874000072479247,42.59400177001953,10.508000373840332,-9.104999542236328,-4.339000225067139,41.29850006103516 -8611,2017-06-24 19:00:00,30.65900039672852,5.863999843597412,40.20899963378906,9.034000396728516,-9.307000160217283,-4.328999996185304,40.20000076293945 -8612,2017-06-24 20:00:00,34.09400177001953,7.874000072479247,41.46799850463867,9.56999969482422,-7.4099998474121085,-2.984999895095825,39.32149887084961 -8613,2017-06-24 21:00:00,34.68000030517578,9.381999969482422,43.50600051879883,12.142999649047852,-7.484000205993652,-2.5369999408721924,38.88199996948242 -8614,2017-06-24 22:00:00,33.25600051879883,8.628000259399414,41.20000076293945,10.588000297546388,-7.782999992370605,-4.105000019073486,38.00299835205078 -8615,2017-06-24 23:00:00,30.99399948120117,7.539000034332275,39.45800018310547,9.595999717712402,-8.380000114440918,-4.105000019073486,37.5634994506836 -8616,2017-06-25 00:00:00,30.32399940490723,8.208999633789062,39.99399948120117,10.668999671936035,-8.47599983215332,-2.377000093460083,37.5634994506836 -8617,2017-06-25 01:00:00,25.71699905395508,6.031000137329103,37.4739990234375,9.838000297546388,-11.237000465393066,-4.201000213623047,37.124000549316406 -8618,2017-06-25 02:00:00,29.40299987792969,6.533999919891357,38.65399932861328,9.435999870300291,-9.989999771118164,-4.201000213623047,36.90399932861328 -8619,2017-06-25 03:00:00,28.81599998474121,7.372000217437744,39.37799835205078,10.855999946594238,-10.383999824523926,-4.201000213623047,36.68450164794922 -8620,2017-06-25 04:00:00,28.481000900268555,6.7849998474121085,35.49100112915039,9.034000396728516,-6.749000072479247,-3.9340000152587886,36.46500015258789 -8621,2017-06-25 05:00:00,30.743000030517567,7.874000072479247,39.61899948120117,10.74899959564209,-9.104999542236328,-3.9340000152587886,36.025001525878906 -8622,2017-06-25 06:00:00,29.56999969482422,6.86899995803833,38.54700088500977,9.677000045776367,-8.177000045776367,-3.9340000152587886,36.025001525878906 -8623,2017-06-25 07:00:00,30.65900039672852,7.874000072479247,39.83300018310547,10.642000198364258,-8.177000045776367,-3.9340000152587886,36.025001525878906 -8624,2017-06-25 08:00:00,24.125,0.0,35.19599914550781,7.692999839782715,-10.692999839782717,-3.9340000152587886,36.464500427246094 -8625,2017-06-25 09:00:00,28.145999908447266,6.114999771118164,39.75299835205078,9.94499969482422,-11.918999671936035,-3.9340000152587886,37.124000549316406 -8626,2017-06-25 10:00:00,32.08300018310547,7.119999885559082,42.13899993896485,10.427000045776367,-10.736000061035156,-3.9340000152587886,38.00299835205078 -8627,2017-06-25 11:00:00,29.738000869750977,5.026000022888184,39.86000061035156,8.36299991607666,-9.531000137329102,-3.9340000152587886,38.88199996948242 -8628,2017-06-25 12:00:00,31.99900054931641,6.2829999923706055,42.40700149536133,9.649999618530272,-10.779000282287598,-3.9340000152587886,40.20000076293945 -8629,2017-06-25 13:00:00,33.25600051879883,7.372000217437744,43.98799896240234,10.74899959564209,-10.736000061035156,-5.191999912261963,41.51850128173828 -8630,2017-06-25 14:00:00,32.669998168945305,7.789999961853027,43.69300079345703,11.12399959564209,-10.767999649047852,-3.891000032424927,44.15549850463867 -8631,2017-06-25 15:00:00,33.34000015258789,8.041999816894531,44.36399841308594,11.607000350952148,-10.767999649047852,-3.891000032424927,45.69300079345703 -8632,2017-06-25 16:00:00,35.518001556396484,8.963000297546387,44.79199981689453,11.928999900817873,-8.326999664306639,-3.1559998989105225,45.25350189208984 -8633,2017-06-25 17:00:00,34.93099975585937,8.125,44.71200180053711,11.33899974822998,-9.510000228881836,-4.541999816894531,43.2765007019043 -8634,2017-06-25 18:00:00,33.84199905395508,7.288000106811522,43.13000106811523,10.239999771118164,-9.553000450134276,-4.541999816894531,41.95800018310547 -8635,2017-06-25 19:00:00,29.319000244140625,5.696000099182129,38.11800003051758,8.630999565124513,-8.336999893188478,-4.531000137329102,41.07899856567383 -8636,2017-06-25 20:00:00,31.832000732421875,6.366000175476074,41.73699951171875,9.54300022125244,-8.848999977111816,-3.26200008392334,39.760501861572266 -8637,2017-06-25 21:00:00,34.345001220703125,8.293000221252441,43.13000106811523,10.855999946594238,-8.315999984741211,-3.26200008392334,38.6619987487793 -8638,2017-06-25 22:00:00,33.17200088500977,8.208999633789062,42.54100036621094,11.232000350952148,-8.401000022888184,-3.26200008392334,37.5634994506836 -8639,2017-06-25 23:00:00,33.17200088500977,8.543999671936035,41.68299865722656,11.312000274658203,-7.431000232696532,-3.26200008392334,37.124000549316406 -8640,2017-06-26 00:00:00,31.58099937438965,8.208999633789062,39.77999877929688,10.401000022888184,-8.060000419616701,-3.496999979019165,36.68450164794922 -8641,2017-06-26 01:00:00,30.99399948120117,8.711999893188478,37.84999847412109,10.883000373840332,-6.013000011444093,-3.496999979019165,36.24499893188477 -8642,2017-06-26 02:00:00,26.05200004577637,5.026000022888184,35.8390007019043,8.52400016784668,-8.593000411987305,-3.496999979019165,35.80550003051758 -8643,2017-06-26 03:00:00,26.63800048828125,7.958000183105469,35.007999420166016,10.829999923706056,-8.741999626159668,-3.496999979019165,35.36600112915039 -8644,2017-06-26 04:00:00,29.23500061035156,7.623000144958496,37.742000579833984,10.37399959564209,-8.486000061035156,-3.0699999332427983,34.926498413085945 -8645,2017-06-26 05:00:00,29.82099914550781,8.963000297546387,38.54700088500977,11.366000175476074,-8.465000152587889,-4.339000225067139,34.487499237060554 -8646,2017-06-26 06:00:00,29.23500061035156,6.7849998474121085,38.06399917602539,9.864999771118164,-8.838000297546387,-3.0380001068115234,34.04800033569336 -8647,2017-06-26 07:00:00,30.99399948120117,7.958000183105469,39.430999755859375,10.937000274658203,-8.359000205993652,-3.36899995803833,34.487499237060554 -8648,2017-06-26 08:00:00,27.726999282836918,5.445000171661377,36.42900085449219,8.390000343322754,-8.560999870300293,-4.626999855041504,35.58599853515625 -8649,2017-06-26 09:00:00,24.795000076293945,4.5229997634887695,34.928001403808594,8.229000091552733,-11.003000259399414,-4.626999855041504,37.124000549316406 -8650,2017-06-26 10:00:00,28.565000534057607,5.276999950408936,38.0369987487793,8.657999992370605,-8.486000061035156,-4.626999855041504,39.10200119018555 -8651,2017-06-26 11:00:00,30.492000579833984,5.863999843597412,40.87900161743164,9.435999870300291,-10.788999557495115,-4.626999855041504,41.73799896240234 -8652,2017-06-26 12:00:00,34.59600067138672,7.454999923706055,44.28300094604492,10.53499984741211,-10.37399959564209,-4.626999855041504,42.397499084472656 -8653,2017-06-26 13:00:00,34.429000854492195,8.125,43.72000122070313,11.017000198364258,-9.829999923706056,-4.626999855041504,42.178001403808594 -8654,2017-06-26 14:00:00,33.34000015258789,8.125,43.39899826049805,11.741000175476074,-10.543999671936035,-4.626999855041504,43.93600082397461 -8655,2017-06-26 15:00:00,32.501998901367195,8.041999816894531,43.104000091552734,11.5,-10.19200038909912,-4.626999855041504,44.81399917602539 -8656,2017-06-26 16:00:00,32.250999450683594,7.623000144958496,41.790000915527344,10.803000450134276,-9.13700008392334,-4.626999855041504,43.05649948120117 -8657,2017-06-26 17:00:00,34.261001586914055,7.958000183105469,42.91600036621094,10.855999946594238,-9.114999771118164,-3.390000104904175,41.29850006103516 -8658,2017-06-26 18:00:00,35.0989990234375,8.795999526977539,43.69300079345703,11.553000450134276,-9.222000122070312,-3.390000104904175,39.760501861572266 -8659,2017-06-26 19:00:00,36.35499954223633,9.550000190734863,42.13899993896485,10.642000198364258,-5.330999851226807,-3.336999893188477,38.44250106811523 -8660,2017-06-26 20:00:00,35.685001373291016,9.465999603271484,43.02299880981445,10.90999984741211,-6.834000110626223,-3.4119999408721924,37.5634994506836 -8661,2017-06-26 21:00:00,36.1879997253418,9.550000190734863,42.11199951171875,10.53499984741211,-6.140999794006348,-2.121999979019165,36.46500015258789 -8662,2017-06-26 22:00:00,29.738000869750977,7.119999885559082,38.38600158691406,9.56999969482422,-8.102999687194824,-3.3480000495910645,36.025001525878906 -8663,2017-06-26 23:00:00,30.99399948120117,8.711999893188478,38.38600158691406,10.53499984741211,-7.547999858856201,-3.3480000495910645,35.80550003051758 -8664,2017-06-27 00:00:00,23.035999298095703,4.440000057220459,32.327999114990234,7.184000015258789,-9.232999801635742,-3.3480000495910645,35.36600112915039 -8665,2017-06-27 01:00:00,29.23500061035156,7.288000106811522,37.2599983215332,9.220999717712402,-7.953000068664551,-3.3480000495910645,34.926498413085945 -8666,2017-06-27 02:00:00,33.088001251220696,9.381999969482422,39.69900131225586,10.96399974822998,-6.673999786376952,-3.3480000495910645,34.487499237060554 -8667,2017-06-27 03:00:00,29.23500061035156,8.711999893188478,38.573001861572266,11.178000450134276,-9.446000099182127,-3.401000022888184,34.04800033569336 -8668,2017-06-27 04:00:00,30.82699966430664,9.04699993133545,41.44200134277344,12.170000076293944,-10.651000022888184,-3.401000022888184,33.827999114990234 -8669,2017-06-27 05:00:00,31.66399955749512,8.461000442504883,40.47700119018555,11.607000350952148,-8.11299991607666,-4.85099983215332,33.388999938964844 -8670,2017-06-27 06:00:00,32.58599853515625,8.963000297546387,41.84400177001953,11.928999900817873,-7.888999938964844,-3.2730000019073486,33.388999938964844 -8671,2017-06-27 07:00:00,30.072999954223643,7.539000034332275,40.77199935913086,11.017000198364258,-9.871999740600586,-4.531000137329102,33.388999938964844 -8672,2017-06-27 08:00:00,29.90500068664551,7.037000179290772,39.00199890136719,9.972000122070312,-8.284000396728517,-4.531000137329102,34.487499237060554 -8673,2017-06-27 09:00:00,34.09400177001953,9.21399974822998,43.82699966430664,12.170000076293944,-9.072999954223633,-4.531000137329102,35.58599853515625 -8674,2017-06-27 10:00:00,32.669998168945305,7.203999996185303,41.57600021362305,11.954999923706056,-8.689000129699707,-4.531000137329102,37.5634994506836 -8675,2017-06-27 11:00:00,34.261001586914055,7.203999996185303,43.39899826049805,10.401000022888184,-9.307000160217283,-4.605999946594238,40.85950088500977 -8676,2017-06-27 12:00:00,39.53799819946289,10.722000122070312,46.66899871826172,12.62600040435791,-7.260000228881836,-3.3480000495910645,42.397499084472656 -8677,2017-06-27 13:00:00,35.014999389648445,9.130999565124512,46.29399871826172,12.760000228881836,-11.03499984741211,-4.584000110626222,44.59450149536133 -8678,2017-06-27 14:00:00,35.85300064086914,8.376999855041504,45.43600082397461,11.33899974822998,-8.496999740600586,-4.584000110626222,45.69350051879883 -8679,2017-06-27 15:00:00,37.10900115966797,8.963000297546387,46.2130012512207,11.151000022888184,-8.859999656677246,-4.7230000495910645,46.79199981689453 -8680,2017-06-27 16:00:00,33.92599868774414,7.372000217437744,44.47100067138672,10.722000122070312,-10.852999687194824,-3.4119999408721924,45.4734992980957 -8681,2017-06-27 17:00:00,38.28200149536133,9.465999603271484,48.46500015258789,12.46500015258789,-8.859999656677246,-4.030000209808351,42.83700180053711 -8682,2017-06-27 18:00:00,35.43399810791016,8.795999526977539,44.09500122070313,11.071000099182127,-8.421999931335451,-4.030000209808351,41.95800018310547 -8683,2017-06-27 19:00:00,38.70100021362305,9.885000228881836,45.94499969482422,11.795000076293944,-6.493000030517577,-3.2730000019073486,40.85900115966797 -8684,2017-06-27 20:00:00,41.46500015258789,10.722000122070312,47.44599914550781,12.894000053405762,-6.02400016784668,-3.336999893188477,39.97999954223633 -8685,2017-06-27 21:00:00,36.1879997253418,9.717000007629396,46.85599899291992,12.973999977111816,-9.84000015258789,-3.336999893188477,38.6619987487793 -8686,2017-06-27 22:00:00,42.303001403808594,12.732999801635742,49.48300170898438,13.83199977874756,-7.046999931335449,-2.0360000133514404,37.78300094604492 -8687,2017-06-27 23:00:00,40.125,12.314000129699709,47.25899887084961,13.564000129699709,-5.831999778747559,-1.962000012397766,37.124000549316406 -8688,2017-06-28 00:00:00,40.71099853515625,12.39799976348877,45.75699996948242,12.545000076293944,-5.459000110626222,-1.8339999914169312,36.90399932861328 -8689,2017-06-28 01:00:00,34.68000030517578,9.21399974822998,43.39899826049805,11.767999649047852,-9.32900047302246,-4.414000034332275,36.46500015258789 -8690,2017-06-28 02:00:00,31.077999114990234,7.203999996185303,39.77999877929688,9.810999870300291,-8.187999725341799,-2.984999895095825,36.025001525878906 -8691,2017-06-28 03:00:00,32.58599853515625,8.963000297546387,41.60300064086914,11.312000274658203,-8.048999786376951,-2.900000095367432,35.58599853515625 -8692,2017-06-28 04:00:00,32.501998901367195,8.543999671936035,41.20000076293945,11.097999572753906,-9.553000450134276,-2.900000095367432,35.36600112915039 -8693,2017-06-28 05:00:00,35.014999389648445,9.633000373840332,42.459999084472656,11.741000175476074,-7.291999816894531,-2.9210000038146973,35.145999908447266 -8694,2017-06-28 06:00:00,30.1560001373291,7.203999996185303,38.198001861572266,9.194000244140623,-8.071000099182129,-2.9210000038146973,34.926498413085945 -8695,2017-06-28 07:00:00,34.17699813842773,8.628000259399414,42.54100036621094,10.722000122070312,-8.645999908447267,-2.815000057220459,34.707000732421875 -8696,2017-06-28 08:00:00,31.99900054931641,7.119999885559082,38.78799819946289,8.578000068664549,-6.301000118255615,-2.815000057220459,35.58599853515625 -8697,2017-06-28 09:00:00,33.17200088500977,8.293000221252441,42.24599838256836,10.883000373840332,-9.020000457763672,-4.030000209808351,36.46500015258789 -8698,2017-06-28 10:00:00,28.481000900268555,5.361000061035156,37.95700073242188,8.496999740600586,-9.541999816894531,-4.030000209808351,38.00299835205078 -8699,2017-06-28 11:00:00,32.417999267578125,6.366000175476074,42.80899810791016,9.515999794006348,-9.883000373840332,-4.030000209808351,39.10200119018555 -8700,2017-06-28 12:00:00,34.847000122070305,6.953000068664551,44.55099868774414,9.890999794006348,-9.361000061035156,-4.030000209808351,40.85900115966797 -8701,2017-06-28 13:00:00,32.417999267578125,7.372000217437744,43.53300094604492,10.427000045776367,-10.50100040435791,-4.030000209808351,41.51850128173828 -8702,2017-06-28 14:00:00,39.874000549316406,10.13599967956543,47.23199844360352,11.821000099182127,-7.441999912261963,-4.13700008392334,41.51850128173828 -8703,2017-06-28 15:00:00,36.94200134277344,9.29800033569336,46.9900016784668,11.875,-9.350000381469728,-4.169000148773193,42.1775016784668 -8704,2017-06-28 16:00:00,37.19300079345703,9.717000007629396,47.23199844360352,12.545000076293944,-9.371000289916992,-4.169000148773193,42.1775016784668 -8705,2017-06-28 17:00:00,37.946998596191406,9.885000228881836,47.875,12.866999626159668,-8.550000190734862,-4.169000148773193,41.29850006103516 -8706,2017-06-28 18:00:00,39.874000549316406,10.890000343322754,47.01699829101562,12.517999649047852,-7.131999969482423,-2.9530000686645512,40.20000076293945 -8707,2017-06-28 19:00:00,37.61199951171875,11.225000381469728,45.32899856567383,12.170000076293944,-7.879000186920166,-1.7059999704360962,39.54100036621094 -8708,2017-06-28 20:00:00,40.20899963378906,12.984000205993652,47.6870002746582,13.616999626159668,-6.758999824523926,-3.0380001068115234,38.44250106811523 -8709,2017-06-28 21:00:00,37.61199951171875,11.057000160217283,45.8380012512207,12.571999549865724,-8.508000373840332,-3.2090001106262207,37.5634994506836 -8710,2017-06-28 22:00:00,41.79999923706055,12.480999946594238,48.2239990234375,13.29599952697754,-7.217999935150146,-3.2090001106262207,37.124000549316406 -8711,2017-06-28 23:00:00,39.53799819946289,12.480999946594238,47.82099914550781,14.100000381469728,-7.879000186920166,-3.2300000190734863,36.90399932861328 -8712,2017-06-29 00:00:00,40.04100036621094,11.810999870300291,45.70399856567383,12.571999549865724,-5.288000106811523,-1.2369999885559082,36.46500015258789 -8713,2017-06-29 01:00:00,40.87900161743164,12.984000205993652,44.09500122070313,12.331000328063965,-2.9210000038146973,0.0,35.80550003051758 -8714,2017-06-29 02:00:00,42.80500030517578,14.156999588012695,43.18399810791016,12.383999824523926,0.0,0.0,35.36600112915039 -8715,2017-06-29 03:00:00,35.26599884033203,11.309000015258787,42.11199951171875,12.03600025177002,-6.301000118255615,-2.483999967575073,34.926498413085945 -8716,2017-06-29 04:00:00,32.83700180053711,10.890000343322754,42.29899978637695,13.00100040435791,-10.267000198364258,-3.688999891281128,34.707000732421875 -8717,2017-06-29 05:00:00,35.349998474121094,10.470999717712402,43.34500122070313,12.303999900817873,-7.676000118255615,-2.0360000133514404,34.487499237060554 -8718,2017-06-29 06:00:00,33.757999420166016,9.465999603271484,41.62900161743164,11.33899974822998,-8.336999893188478,-3.101999998092652,34.04800033569336 -8719,2017-06-29 07:00:00,31.16200065612793,8.543999671936035,39.77999877929688,10.53499984741211,-8.411999702453612,-3.101999998092652,34.04800033569336 -8720,2017-06-29 08:00:00,30.57500076293945,6.86899995803833,38.59999847412109,9.409000396728516,-7.473999977111816,-3.101999998092652,35.146499633789055 -8721,2017-06-29 09:00:00,36.1879997253418,10.55500030517578,46.45399856567383,13.348999977111816,-9.520999908447266,-4.605999946594238,37.124000549316406 -8722,2017-06-29 10:00:00,33.92599868774414,7.958000183105469,43.31800079345703,10.937000274658203,-9.157999992370604,-4.573999881744385,39.32099914550781 -8723,2017-06-29 11:00:00,38.11399841308594,9.29800033569336,45.03400039672852,11.12399959564209,-6.642000198364258,-3.3480000495910645,41.51850128173828 -8724,2017-06-29 12:00:00,37.86299896240234,9.21399974822998,47.3120002746582,11.71399974822998,-9.083000183105469,-4.531000137329102,43.49649810791016 -8725,2017-06-29 13:00:00,36.1879997253418,8.711999893188478,46.88299942016602,11.741000175476074,-9.690999984741213,-4.616000175476074,44.59500122070313 -8726,2017-06-29 14:00:00,39.11999893188477,11.140999794006348,47.63399887084961,13.43000030517578,-9.253999710083008,-4.616000175476074,46.352500915527344 -8727,2017-06-29 15:00:00,38.70100021362305,10.973999977111816,48.14300155639648,13.482999801635742,-9.052000045776367,-4.616000175476074,46.352500915527344 -8728,2017-06-29 16:00:00,39.2869987487793,10.890000343322754,49.21500015258789,13.187999725341797,-9.79800033569336,-3.401000022888184,45.03400039672852 -8729,2017-06-29 17:00:00,46.15599822998047,13.73799991607666,49.1619987487793,12.866999626159668,-2.9110000133514404,0.0,43.93550109863281 -8730,2017-06-29 18:00:00,39.11999893188477,10.55500030517578,47.95500183105469,12.760000228881836,-8.753000259399414,-3.816999912261963,42.397499084472656 -8731,2017-06-29 19:00:00,34.512001037597656,9.04699993133545,43.45199966430664,10.722000122070312,-8.135000228881836,-2.815000057220459,41.29850006103516 -8732,2017-06-29 20:00:00,39.45500183105469,10.805999755859377,46.9900016784668,12.170000076293944,-7.484000205993652,-3.124000072479248,40.20000076293945 -8733,2017-06-29 21:00:00,44.229000091552734,13.402999877929688,48.91999816894531,13.564000129699709,-4.59499979019165,-1.812000036239624,39.32149887084961 -8734,2017-06-29 22:00:00,44.900001525878906,13.487000465393065,47.98199844360352,13.269000053405762,-3.486000061035156,-1.406999945640564,38.66249847412109 -8735,2017-06-29 23:00:00,40.3759994506836,12.64900016784668,45.81100082397461,13.536999702453612,-4.90399980545044,-1.2150000333786009,38.44250106811523 -8736,2017-06-30 00:00:00,37.946998596191406,11.644000053405762,46.29399871826172,13.107999801635742,-7.323999881744385,-2.7290000915527344,38.00299835205078 -8737,2017-06-30 01:00:00,31.32900047302246,9.465999603271484,39.94100189208984,11.392000198364258,-7.921000003814697,-2.6549999713897705,37.34400177001953 -8738,2017-06-30 02:00:00,35.349998474121094,10.973999977111816,42.86199951171875,12.08899974822998,-6.63100004196167,-2.6549999713897705,37.124000549316406 -8739,2017-06-30 03:00:00,32.58599853515625,9.800999641418455,40.98600006103516,11.553000450134276,-7.431000232696532,-1.940000057220459,36.90399932861328 -8740,2017-06-30 04:00:00,31.077999114990234,9.04699993133545,38.62699890136719,10.722000122070312,-7.14300012588501,-3.1979999542236333,36.68450164794922 -8741,2017-06-30 05:00:00,32.250999450683594,9.381999969482422,38.73400115966797,10.588000297546388,-6.9730000495910645,-1.63100004196167,36.24499893188477 -8742,2017-06-30 06:00:00,34.0099983215332,10.220000267028809,42.40700149536133,11.767999649047852,-7.6020002365112305,-2.068000078201294,35.145999908447266 -8743,2017-06-30 07:00:00,34.261001586914055,9.968000411987305,42.62099838256836,11.795000076293944,-8.444000244140625,-2.440999984741211,34.926498413085945 -8744,2017-06-30 08:00:00,31.74799919128418,7.539000034332275,39.86000061035156,9.649999618530272,-6.982999801635742,-2.750999927520752,35.36600112915039 -8745,2017-06-30 09:00:00,31.32900047302246,8.376999855041504,41.30799865722656,11.607000350952148,-9.413999557495115,-4.0939998626708975,36.24499893188477 -8746,2017-06-30 10:00:00,33.42300033569336,8.041999816894531,41.97800064086914,10.45400047302246,-9.29699993133545,-4.0939998626708975,37.124000549316406 -8747,2017-06-30 11:00:00,35.0989990234375,8.878999710083008,44.97999954223633,11.258000373840332,-9.776000022888184,-4.0939998626708975,37.124000549316406 -8748,2017-06-30 12:00:00,35.85300064086914,9.04699993133545,45.78400039672852,12.196999549865724,-9.871999740600586,-4.0939998626708975,37.124000549316406 -8749,2017-06-30 13:00:00,33.25600051879883,8.543999671936035,44.47100067138672,12.062999725341797,-10.843000411987305,-4.0939998626708975,34.707000732421875 -8750,2017-06-30 14:00:00,34.429000854492195,9.465999603271484,43.98799896240234,12.116000175476074,-9.605999946594238,-4.0939998626708975,32.5099983215332 -8751,2017-06-30 15:00:00,33.25600051879883,8.711999893188478,43.854000091552734,12.008999824523926,-9.968000411987305,-4.0939998626708975,30.53199958801269 -8752,2017-06-30 16:00:00,34.429000854492195,9.465999603271484,44.36399841308594,12.437999725341797,-8.689000129699707,-4.734000205993652,31.850500106811523 -8753,2017-06-30 17:00:00,35.85300064086914,10.052000045776367,45.48899841308594,13.081000328063965,-8.869999885559082,-3.5179998874664307,32.949501037597656 -8754,2017-06-30 18:00:00,33.34000015258789,8.628000259399414,42.67499923706055,11.5,-9.072999954223633,-3.5179998874664307,33.60850143432617 -8755,2017-06-30 19:00:00,32.92100143432617,8.795999526977539,41.81700134277344,11.204999923706056,-8.444000244140625,-3.5179998874664307,33.60850143432617 -8756,2017-06-30 20:00:00,39.20299911499024,11.225000381469728,46.4010009765625,12.62600040435791,-7.217999935150146,-3.5179998874664307,33.388999938964844 -8757,2017-06-30 21:00:00,38.78499984741211,11.47599983215332,44.97999954223633,12.357000350952148,-6.749000072479247,-1.8339999914169312,32.94900131225586 -8758,2017-06-30 22:00:00,36.43899917602539,10.805999755859377,45.56999969482422,12.920000076293944,-7.942999839782715,-3.3050000667572017,31.63050079345703 -8759,2017-06-30 23:00:00,31.58099937438965,9.29800033569336,40.45000076293945,11.258000373840332,-8.805999755859375,-3.3050000667572017,31.19149971008301 -8760,2017-07-01 00:00:00,31.58099937438965,8.376999855041504,40.31600189208984,10.614999771118164,-8.699999809265138,-3.3050000667572017,30.53199958801269 -8761,2017-07-01 01:00:00,30.82699966430664,9.885000228881836,37.823001861572266,11.043999671936035,-6.460999965667725,-2.121999979019165,31.63050079345703 -8762,2017-07-01 02:00:00,30.57500076293945,9.465999603271484,38.11800003051758,10.90999984741211,-7.377999782562256,-2.1540000438690186,31.410999298095703 -8763,2017-07-01 03:00:00,30.57500076293945,8.963000297546387,37.071998596191406,10.614999771118164,-6.6630001068115225,-3.401000022888184,30.53199958801269 -8764,2017-07-01 04:00:00,27.726999282836918,8.208999633789062,36.05400085449219,10.722000122070312,-7.985000133514402,-3.561000108718872,30.3125 -8765,2017-07-01 05:00:00,30.40800094604492,9.381999969482422,37.87699890136719,11.5,-7.323999881744385,-3.561000108718872,30.3125 -8766,2017-07-01 06:00:00,31.74799919128418,8.963000297546387,39.67300033569336,11.28499984741211,-7.65500020980835,-3.0380001068115234,29.87299919128418 -8767,2017-07-01 07:00:00,31.916000366210927,10.890000343322754,38.59999847412109,12.331000328063965,-6.140999794006348,-2.815000057220459,30.3125 -8768,2017-07-01 08:00:00,30.072999954223643,7.119999885559082,36.696998596191406,8.685000419616701,-6.248000144958496,-2.2920000553131104,31.19149971008301 -8769,2017-07-01 09:00:00,30.32399940490723,8.125,39.40399932861328,11.043999671936035,-8.208999633789062,-3.507999897003174,32.070499420166016 -8770,2017-07-01 10:00:00,32.417999267578125,8.711999893188478,40.18199920654297,11.151000022888184,-8.177000045776367,-3.507999897003174,30.97150039672852 -8771,2017-07-01 11:00:00,33.42300033569336,9.04699993133545,42.59400177001953,11.795000076293944,-8.380000114440918,-3.507999897003174,30.53199958801269 -8772,2017-07-01 12:00:00,29.98900032043457,7.203999996185303,40.04800033569336,10.480999946594238,-10.416000366210938,-4.74399995803833,29.87299919128418 -8773,2017-07-01 13:00:00,33.590999603271484,9.381999969482422,42.86199951171875,12.383999824523926,-9.168999671936035,-4.74399995803833,28.99449920654297 -8774,2017-07-01 14:00:00,31.916000366210927,9.885000228881836,42.51399993896485,13.29599952697754,-10.395000457763672,-4.74399995803833,29.214000701904297 -8775,2017-07-01 15:00:00,33.34000015258789,9.885000228881836,42.54100036621094,12.706000328063965,-9.12600040435791,-4.74399995803833,30.75149917602539 -8776,2017-07-01 16:00:00,31.74799919128418,8.963000297546387,42.459999084472656,12.491000175476074,-10.55500030517578,-4.755000114440918,30.97150039672852 -8777,2017-07-01 17:00:00,30.743000030517567,8.376999855041504,41.57600021362305,11.767999649047852,-10.468999862670898,-3.507999897003174,32.070499420166016 -8778,2017-07-01 18:00:00,34.429000854492195,9.465999603271484,42.80899810791016,11.954999923706056,-9.32900047302246,-4.734000205993652,32.290000915527344 -8779,2017-07-01 19:00:00,32.250999450683594,7.454999923706055,41.20000076293945,10.239999771118164,-8.027999877929688,-3.625,31.410999298095703 -8780,2017-07-01 20:00:00,33.25600051879883,8.878999710083008,41.57600021362305,11.043999671936035,-8.048999786376951,-3.625,31.850500106811523 -8781,2017-07-01 21:00:00,34.09400177001953,10.13599967956543,44.12200164794922,12.732999801635742,-10.800000190734863,-3.625,32.070499420166016 -8782,2017-07-01 22:00:00,36.60699844360352,11.47599983215332,45.30199813842773,13.616999626159668,-8.038999557495117,-3.625,32.290000915527344 -8783,2017-07-01 23:00:00,31.74799919128418,9.717000007629396,43.02299880981445,13.456000328063965,-11.237000465393066,-3.625,31.850500106811523 -8784,2017-07-02 00:00:00,32.58599853515625,9.29800033569336,40.36899948120117,11.847999572753904,-7.888999938964844,-3.625,31.19149971008301 -8785,2017-07-02 01:00:00,27.308000564575195,7.623000144958496,37.608001708984375,11.071000099182127,-9.083000183105469,-4.030000209808351,31.410999298095703 -8786,2017-07-02 02:00:00,29.23500061035156,8.041999816894531,39.27000045776367,11.607000350952148,-9.585000038146973,-4.030000209808351,32.070499420166016 -8787,2017-07-02 03:00:00,29.066999435424805,8.543999671936035,38.46599960327149,11.687000274658203,-9.157999992370604,-4.030000209808351,32.070499420166016 -8788,2017-07-02 04:00:00,27.895000457763672,9.21399974822998,37.6619987487793,12.222999572753904,-9.12600040435791,-2.984999895095825,29.43350028991699 -8789,2017-07-02 05:00:00,31.32900047302246,9.04699993133545,39.61899948120117,11.607000350952148,-7.494999885559082,-2.996000051498413,28.554500579833984 -8790,2017-07-02 06:00:00,29.82099914550781,8.711999893188478,39.59199905395508,11.33899974822998,-8.689000129699707,-3.059999942779541,28.55500030517578 -8791,2017-07-02 07:00:00,29.48600006103516,8.293000221252441,38.35900115966797,10.642000198364258,-7.579999923706055,-3.059999942779541,28.77449989318848 -8792,2017-07-02 08:00:00,27.64299964904785,6.366000175476074,35.972999572753906,8.925999641418457,-7.196000099182129,-3.059999942779541,28.334999084472656 -8793,2017-07-02 09:00:00,27.81100082397461,6.7849998474121085,38.01100158691406,10.239999771118164,-9.585000038146973,-4.626999855041504,28.334999084472656 -8794,2017-07-02 10:00:00,29.40299987792969,7.288000106811522,40.12799835205078,11.097999572753906,-9.510000228881836,-4.626999855041504,27.89550018310547 -8795,2017-07-02 11:00:00,30.239999771118164,6.701000213623048,40.262001037597656,10.105999946594238,-10.437000274658203,-4.626999855041504,27.67600059509277 -8796,2017-07-02 12:00:00,29.15099906921387,6.2829999923706055,39.40399932861328,9.890999794006348,-10.246000289916992,-4.626999855041504,29.43400001525879 -8797,2017-07-02 13:00:00,28.481000900268555,6.701000213623048,39.75299835205078,10.37399959564209,-10.223999977111816,-4.626999855041504,30.3125 -8798,2017-07-02 14:00:00,28.481000900268555,7.037000179290772,37.52799987792969,10.052000045776367,-9.562999725341797,-4.626999855041504,29.214000701904297 -8799,2017-07-02 15:00:00,23.45499992370605,4.105000019073486,35.0620002746582,8.229000091552733,-10.427000045776367,-4.573999881744385,28.334999084472656 -8800,2017-07-02 16:00:00,27.141000747680664,7.706999778747559,39.055999755859375,9.677000045776367,-11.428999900817873,-3.1559998989105225,29.653499603271484 -8801,2017-07-02 17:00:00,33.50699996948242,9.130999565124512,42.00500106811523,10.347000122070312,-7.611999988555907,-1.8869999647140503,30.75149917602539 -8802,2017-07-02 18:00:00,30.40800094604492,7.706999778747559,39.53799819946289,9.248000144958496,-8.741999626159668,-1.8869999647140503,31.19149971008301 -8803,2017-07-02 19:00:00,30.57500076293945,8.293000221252441,39.21699905395508,9.381999969482422,-8.763999938964844,-1.8869999647140503,31.63050079345703 -8804,2017-07-02 20:00:00,32.83700180053711,10.052000045776367,42.62099838256836,11.366000175476074,-9.093999862670898,-1.3650000095367432,29.87299919128418 -8805,2017-07-02 21:00:00,30.492000579833984,9.04699993133545,38.81499862670898,10.024999618530272,-7.761000156402588,-2.505000114440918,29.214000701904297 -8806,2017-07-02 22:00:00,26.55400085449219,7.623000144958496,35.38399887084961,8.95300006866455,-7.985000133514402,-2.505000114440918,29.43350028991699 -8807,2017-07-02 23:00:00,22.86899948120117,6.86899995803833,33.077999114990234,8.73900032043457,-9.12600040435791,-2.505000114440918,30.3125 -8808,2017-07-03 00:00:00,23.20400047302246,6.618000030517577,31.68400001525879,8.095000267028809,-8.508000373840332,-2.505000114440918,30.97150039672852 -8809,2017-07-03 01:00:00,22.450000762939453,6.198999881744385,31.12100028991699,7.77400016784668,-8.326999664306639,-2.505000114440918,31.410999298095703 -8810,2017-07-03 02:00:00,23.37100028991699,7.037000179290772,32.648998260498054,8.604999542236326,-9.381999969482422,-2.505000114440918,31.410999298095703 -8811,2017-07-03 03:00:00,22.70100021362305,6.2829999923706055,32.139999389648445,7.934999942779541,-9.381999969482422,-2.505000114440918,31.410999298095703 -8812,2017-07-03 04:00:00,24.292999267578125,7.288000106811522,32.488998413085945,8.52400016784668,-7.750999927520753,-2.505000114440918,31.19149971008301 -8813,2017-07-03 05:00:00,22.53400039672852,6.449999809265138,32.89099884033203,8.310000419616701,-10.022000312805176,-2.505000114440918,31.410999298095703 -8814,2017-07-03 06:00:00,24.87899971008301,7.706999778747559,34.1510009765625,9.140999794006348,-9.446000099182127,-2.505000114440918,31.631000518798828 -8815,2017-07-03 07:00:00,31.74799919128418,9.29800033569336,39.75299835205078,10.105999946594238,-7.750999927520753,-2.505000114440918,32.5099983215332 -8816,2017-07-03 08:00:00,26.386999130249023,6.953000068664551,37.98400115966797,9.140999794006348,-10.800000190734863,-2.505000114440918,34.04800033569336 -8817,2017-07-03 09:00:00,29.066999435424805,8.628000259399414,39.27000045776367,10.185999870300291,-9.755000114440918,-2.505000114440918,36.24499893188477 -8818,2017-07-03 10:00:00,26.386999130249023,6.366000175476074,35.7859992980957,7.934999942779541,-9.12600040435791,-2.505000114440918,38.44250106811523 -8819,2017-07-03 11:00:00,26.30299949645996,7.288000106811522,36.027000427246094,9.274999618530272,-9.819000244140623,-2.505000114440918,39.760501861572266 -8820,2017-07-03 12:00:00,26.13599967956543,6.198999881744385,36.7509994506836,8.282999992370605,-9.85099983215332,-2.505000114440918,39.32149887084961 -8821,2017-07-03 13:00:00,26.55400085449219,7.958000183105469,36.59000015258789,9.56999969482422,-9.670000076293944,-2.505000114440918,39.760501861572266 -8822,2017-07-03 14:00:00,27.559999465942383,6.953000068664551,38.09099960327149,9.034000396728516,-10.17099952697754,-1.8550000190734863,40.63949966430664 -8823,2017-07-03 15:00:00,33.757999420166016,8.963000297546387,42.86199951171875,10.508000373840332,-8.869999885559082,-2.0580000877380367,41.51850128173828 -8824,2017-07-03 16:00:00,32.16699981689453,9.21399974822998,43.31800079345703,11.071000099182127,-11.03499984741211,-2.0580000877380367,41.51850128173828 -8825,2017-07-03 17:00:00,34.763999938964844,9.04699993133545,44.87300109863281,10.90999984741211,-9.637999534606934,-3.2939999103546143,40.85950088500977 -8826,2017-07-03 18:00:00,34.847000122070305,9.633000373840332,44.06900024414063,10.803000450134276,-9.605999946594238,-2.131999969482422,40.20000076293945 -8827,2017-07-03 19:00:00,36.27199935913086,9.130999565124512,43.04999923706055,9.70400047302246,-6.876999855041504,-2.131999969482422,39.32149887084961 -8828,2017-07-03 20:00:00,34.847000122070305,9.968000411987305,43.55899810791016,10.480999946594238,-8.689000129699707,-2.131999969482422,38.44250106811523 -8829,2017-07-03 21:00:00,38.44900131225586,11.057000160217283,46.26699829101562,11.5,-8.668000221252441,-1.2580000162124634,37.5634994506836 -8830,2017-07-03 22:00:00,35.76900100708008,11.47599983215332,44.229000091552734,11.687000274658203,-8.347999572753906,-1.2899999618530271,37.34400177001953 -8831,2017-07-03 23:00:00,36.35499954223633,10.805999755859377,44.06900024414063,11.204999923706056,-8.027999877929688,-1.2580000162124634,36.68450164794922 -8832,2017-07-04 00:00:00,34.0099983215332,10.55500030517578,40.93199920654297,10.37399959564209,-6.705999851226808,0.0,36.24499893188477 -8833,2017-07-04 01:00:00,31.16200065612793,9.633000373840332,40.04800033569336,10.133000373840332,-8.295000076293945,-1.2790000438690186,36.025001525878906 -8834,2017-07-04 02:00:00,34.68000030517578,11.057000160217283,41.17399978637695,10.90999984741211,-6.269000053405763,0.0,35.80550003051758 -8835,2017-07-04 03:00:00,30.57500076293945,9.130999565124512,38.43899917602539,9.91800022125244,-7.782999992370605,-1.375,35.58599853515625 -8836,2017-07-04 04:00:00,30.57500076293945,9.465999603271484,39.055999755859375,10.37399959564209,-8.934000015258789,-1.5889999866485596,35.36600112915039 -8837,2017-07-04 05:00:00,32.08300018310547,9.633000373840332,39.53799819946289,10.159000396728516,-8.27299976348877,-1.3009999990463257,35.36600112915039 -8838,2017-07-04 06:00:00,29.56999969482422,9.968000411987305,39.430999755859375,10.803000450134276,-8.645999908447267,-1.2150000333786009,35.36600112915039 -8839,2017-07-04 07:00:00,33.25600051879883,9.633000373840332,41.17399978637695,10.69499969482422,-8.763999938964844,-1.343000054359436,35.58599853515625 -8840,2017-07-04 08:00:00,30.57500076293945,9.130999565124512,40.42300033569336,10.508000373840332,-8.432999610900879,-2.664999961853028,37.5634994506836 -8841,2017-07-04 09:00:00,36.27199935913086,11.810999870300291,47.1510009765625,13.135000228881836,-10.83199977874756,-2.664999961853028,39.32149887084961 -8842,2017-07-04 10:00:00,32.250999450683594,8.711999893188478,43.15700149536133,10.213000297546388,-10.04300022125244,-2.664999961853028,40.20000076293945 -8843,2017-07-04 11:00:00,33.84199905395508,9.633000373840332,44.33700180053711,10.427000045776367,-10.086000442504885,-2.664999961853028,42.397499084472656 -8844,2017-07-04 12:00:00,37.52799987792969,11.47599983215332,45.8380012512207,12.437999725341797,-8.539999961853027,-2.664999961853028,43.93600082397461 -8845,2017-07-04 13:00:00,36.43899917602539,12.5649995803833,46.83000183105469,13.75100040435791,-8.560999870300293,-2.664999961853028,46.13249969482422 -8846,2017-07-04 14:00:00,34.847000122070305,11.810999870300291,45.70399856567383,13.348999977111816,-9.690999984741213,-2.664999961853028,47.45149993896485 -8847,2017-07-04 15:00:00,36.02000045776367,12.480999946594238,46.07899856567383,13.725000381469728,-9.274999618530272,-2.664999961853028,48.98949813842773 -8848,2017-07-04 16:00:00,37.77899932861328,12.64900016784668,46.5620002746582,13.697999954223633,-9.008999824523926,-2.664999961853028,47.67100143432617 -8849,2017-07-04 17:00:00,39.874000549316406,13.152000427246096,48.35800170898438,13.777999877929688,-8.838000297546387,-2.664999961853028,45.25400161743164 -8850,2017-07-04 18:00:00,41.13000106811523,13.654000282287598,47.6609992980957,13.725000381469728,-7.538000106811522,-1.4500000476837158,44.15549850463867 -8851,2017-07-04 19:00:00,35.182998657226555,10.973999977111816,43.88100051879883,12.008999824523926,-7.431000232696532,-1.4500000476837158,43.2765007019043 -8852,2017-07-04 20:00:00,37.77899932861328,11.727999687194824,43.77399826049805,11.633999824523926,-6.172999858856201,0.0,41.95800018310547 -8853,2017-07-04 21:00:00,34.68000030517578,11.309000015258787,44.14899826049805,11.847999572753904,-9.072999954223633,-1.2790000438690186,41.07899856567383 -8854,2017-07-04 22:00:00,32.669998168945305,11.392000198364258,43.37200164794922,12.652000427246096,-9.690999984741213,-2.494999885559082,40.20000076293945 -8855,2017-07-04 23:00:00,30.1560001373291,9.800999641418455,39.45800018310547,10.90999984741211,-8.625,-1.3539999723434448,39.760501861572266 -8856,2017-07-05 00:00:00,31.74799919128418,10.13599967956543,41.28099822998047,11.12399959564209,-8.454000473022461,-1.3329999446868896,39.32149887084961 -8857,2017-07-05 01:00:00,29.65399932861328,10.052000045776367,39.37799835205078,10.989999771118164,-9.690999984741213,-1.3329999446868896,38.6619987487793 -8858,2017-07-05 02:00:00,33.088001251220696,11.057000160217283,40.36899948120117,11.553000450134276,-7.623000144958496,-2.5480000972747803,38.22299957275391 -8859,2017-07-05 03:00:00,27.64299964904785,10.052000045776367,38.65399932861328,11.12399959564209,-9.467000007629396,-1.3860000371932983,37.5634994506836 -8860,2017-07-05 04:00:00,28.64900016784668,10.722000122070312,38.14500045776367,11.66100025177002,-8.593000411987305,-1.3860000371932983,37.34400177001953 -8861,2017-07-05 05:00:00,29.98900032043457,10.805999755859377,39.99399948120117,11.767999649047852,-9.819000244140623,-2.505000114440918,37.124000549316406 -8862,2017-07-05 06:00:00,32.333999633789055,11.225000381469728,40.58399963378906,11.954999923706056,-8.166999816894531,-1.4290000200271606,37.124000549316406 -8863,2017-07-05 07:00:00,29.48600006103516,10.805999755859377,38.62699890136719,11.446000099182127,-9.48900032043457,-1.2369999885559082,37.124000549316406 -8864,2017-07-05 08:00:00,28.565000534057607,7.958000183105469,37.01900100708008,9.595999717712402,-9.33899974822998,-2.6440000534057617,38.00299835205078 -8865,2017-07-05 09:00:00,35.0989990234375,12.314000129699709,45.62300109863281,13.697999954223633,-9.222000122070312,-2.6440000534057617,40.41949844360352 -8866,2017-07-05 10:00:00,35.182998657226555,10.805999755859377,46.428001403808594,12.46500015258789,-10.810999870300291,-1.8869999647140503,42.1775016784668 -8867,2017-07-05 11:00:00,38.44900131225586,11.309000015258787,47.125,12.517999649047852,-9.211000442504885,-1.8869999647140503,43.71549987792969 -8868,2017-07-05 12:00:00,40.3759994506836,13.067999839782717,49.85900115966797,14.019000053405762,-9.402999877929688,-1.8869999647140503,44.375 -8869,2017-07-05 13:00:00,37.19300079345703,12.39799976348877,47.63399887084961,13.482999801635742,-9.595000267028809,-1.940000057220459,40.63949966430664 -8870,2017-07-05 14:00:00,39.0359992980957,10.890000343322754,48.46500015258789,11.741000175476074,-8.421999931335451,-1.8550000190734863,42.1775016784668 -8871,2017-07-05 15:00:00,41.88399887084961,12.5649995803833,50.66299819946289,13.081000328063965,-8.421999931335451,-1.8550000190734863,43.49599838256836 -8872,2017-07-05 16:00:00,39.2869987487793,10.805999755859377,49.45700073242188,12.142999649047852,-9.786999702453612,-1.8550000190734863,43.93600082397461 -8873,2017-07-05 17:00:00,39.45500183105469,11.140999794006348,48.946998596191406,12.196999549865724,-9.392999649047852,-1.8550000190734863,42.397499084472656 -8874,2017-07-05 18:00:00,39.874000549316406,10.890000343322754,48.89400100708008,11.795000076293944,-9.413999557495115,-1.3539999723434448,42.397499084472656 -8875,2017-07-05 19:00:00,35.26599884033203,8.795999526977539,43.90800094604492,9.16800022125244,-9.083000183105469,-1.246999979019165,42.397499084472656 -8876,2017-07-05 20:00:00,37.36100006103516,11.140999794006348,47.82099914550781,10.74899959564209,-9.4350004196167,0.0,41.51850128173828 -8877,2017-07-05 21:00:00,40.125,11.727999687194824,47.98199844360352,11.66100025177002,-8.006999969482424,-1.343000054359436,40.63949966430664 -8878,2017-07-05 22:00:00,38.198001861572266,11.644000053405762,48.70600128173828,12.222999572753904,-10.01099967956543,-1.246999979019165,39.760501861572266 -8879,2017-07-05 23:00:00,38.44900131225586,11.5600004196167,45.54299926757813,10.776000022888184,-7.473999977111816,0.0,39.760501861572266 -8880,2017-07-06 00:00:00,35.014999389648445,11.057000160217283,43.80099868774414,11.312000274658203,-7.910999774932861,-1.343000054359436,39.760501861572266 -8881,2017-07-06 01:00:00,33.50699996948242,9.717000007629396,42.72800064086914,10.185999870300291,-7.910999774932861,-1.246999979019165,39.760501861572266 -8882,2017-07-06 02:00:00,31.496999740600582,10.303000450134276,41.14699935913086,10.883000373840332,-9.265000343322754,-1.2790000438690186,39.32149887084961 -8883,2017-07-06 03:00:00,31.832000732421875,9.550000190734863,40.20899963378906,10.159000396728516,-8.081000328063965,-1.2580000162124634,38.88199996948242 -8884,2017-07-06 04:00:00,28.062000274658203,10.303000450134276,39.08300018310547,11.392000198364258,-10.885000228881836,-1.22599995136261,38.44250106811523 -8885,2017-07-06 05:00:00,34.763999938964844,11.225000381469728,43.07699966430664,11.5,-8.411999702453612,-1.3109999895095823,38.00299835205078 -8886,2017-07-06 06:00:00,33.17200088500977,10.973999977111816,40.15499877929688,10.90999984741211,-7.985000133514402,0.0,37.5634994506836 -8887,2017-07-06 07:00:00,32.417999267578125,10.973999977111816,41.60300064086914,11.204999923706056,-8.98799991607666,0.0,37.5634994506836 -8888,2017-07-06 08:00:00,27.81100082397461,7.958000183105469,37.608001708984375,9.248000144958496,-9.350000381469728,-1.4290000200271606,38.22249984741211 -8889,2017-07-06 09:00:00,35.26599884033203,10.973999977111816,44.09500122070313,11.607000350952148,-8.27299976348877,-1.4290000200271606,39.32149887084961 -8890,2017-07-06 10:00:00,35.26599884033203,9.465999603271484,45.51599884033203,10.560999870300291,-10.71500015258789,-1.4290000200271606,40.41949844360352 -8891,2017-07-06 11:00:00,38.198001861572266,9.800999641418455,47.92900085449219,10.480999946594238,-9.45699977874756,-1.4290000200271606,41.73849868774414 -8892,2017-07-06 12:00:00,43.391998291015625,12.314000129699709,50.77000045776367,12.41100025177002,-6.673999786376952,-1.4290000200271606,44.59450149536133 -8893,2017-07-06 13:00:00,39.95700073242188,11.392000198364258,50.93099975585938,12.277000427246096,-10.267000198364258,-1.4290000200271606,45.91299819946289 -8894,2017-07-06 14:00:00,40.79499816894531,11.5600004196167,50.60900115966797,12.222999572753904,-10.37399959564209,-1.4290000200271606,47.23149871826172 -8895,2017-07-06 15:00:00,43.14099884033203,12.062999725341797,50.85100173950195,12.062999725341797,-8.006999969482424,-1.4290000200271606,47.89099884033203 -8896,2017-07-06 16:00:00,39.70600128173828,11.810999870300291,51.54700088500977,12.652000427246096,-11.822999954223633,-1.3220000267028809,45.91299819946289 -8897,2017-07-06 17:00:00,39.790000915527344,11.47599983215332,50.26100158691406,12.062999725341797,-10.532999992370604,-1.3220000267028809,45.03400039672852 -8898,2017-07-06 18:00:00,44.229000091552734,13.319000244140623,51.73500061035156,12.84000015258789,-6.301000118255615,-1.3539999723434448,44.81449890136719 -8899,2017-07-06 19:00:00,37.19300079345703,9.130999565124512,47.178001403808594,9.649999618530272,-8.668000221252441,-1.5460000038146973,44.375 -8900,2017-07-06 20:00:00,43.14099884033203,12.314000129699709,51.78900146484375,11.954999923706056,-8.763999938964844,-1.3329999446868896,43.71599960327149 -8901,2017-07-06 21:00:00,42.303001403808594,12.480999946594238,51.89599990844727,12.383999824523926,-8.97700023651123,-1.3860000371932983,42.83700180053711 -8902,2017-07-06 22:00:00,41.88399887084961,13.152000427246096,50.42200088500977,12.383999824523926,-8.848999977111816,0.0,42.397499084472656 -8903,2017-07-06 23:00:00,41.88399887084961,13.319000244140623,49.10800170898438,11.71399974822998,-7.078999996185303,0.0,41.95800018310547 -8904,2017-07-07 00:00:00,36.77399826049805,11.309000015258787,45.51599884033203,11.071000099182127,-7.739999771118164,0.0,41.51850128173828 -8905,2017-07-07 01:00:00,35.685001373291016,11.5600004196167,44.52399826049805,11.472999572753904,-9.083000183105469,0.0,41.07899856567383 -8906,2017-07-07 02:00:00,34.763999938964844,10.890000343322754,44.14899826049805,10.105999946594238,-9.114999771118164,0.0,40.85950088500977 -8907,2017-07-07 03:00:00,35.182998657226555,10.303000450134276,44.55099868774414,11.232000350952148,-9.425000190734863,-2.121999979019165,40.63949966430664 -8908,2017-07-07 04:00:00,36.52299880981445,12.39799976348877,45.30199813842773,11.928999900817873,-8.230999946594237,0.0,40.20000076293945 -8909,2017-07-07 05:00:00,34.59600067138672,11.392000198364258,44.76599884033203,12.008999824523926,-9.104999542236328,-1.2690000534057615,39.760501861572266 -8910,2017-07-07 06:00:00,32.08300018310547,10.55500030517578,41.73699951171875,10.69499969482422,-9.178999900817873,0.0,39.32149887084961 -8911,2017-07-07 07:00:00,36.858001708984375,11.727999687194824,45.48899841308594,11.71399974822998,-7.206999778747559,-1.22599995136261,39.760501861572266 -8912,2017-07-07 08:00:00,30.492000579833984,8.376999855041504,41.30799865722656,9.48900032043457,-10.810999870300291,-2.4730000495910645,40.20000076293945 -8913,2017-07-07 09:00:00,35.685001373291016,11.979000091552734,46.4010009765625,12.78600025177002,-9.946999549865724,-1.2790000438690186,40.63949966430664 -8914,2017-07-07 10:00:00,37.10900115966797,10.13599967956543,42.72800064086914,10.07900047302246,-4.829999923706055,0.0,41.95800018310547 -8915,2017-07-07 11:00:00,37.61199951171875,10.973999977111816,46.749000549316406,11.71399974822998,-8.560999870300293,-1.2790000438690186,42.1775016784668 -8916,2017-07-07 12:00:00,37.44400024414063,11.309000015258787,48.0359992980957,12.25,-11.02400016784668,-2.5160000324249268,43.71599960327149 -8917,2017-07-07 13:00:00,36.27199935913086,11.057000160217283,46.9900016784668,11.928999900817873,-10.949000358581545,-2.5160000324249268,43.93600082397461 -8918,2017-07-07 14:00:00,37.19300079345703,11.140999794006348,46.34700012207031,11.687000274658203,-9.157999992370604,-2.5160000324249268,44.375 -8919,2017-07-07 15:00:00,37.025001525878906,12.480999946594238,47.47299957275391,13.348999977111816,-10.406000137329102,-2.5160000324249268,44.15549850463867 -8920,2017-07-07 16:00:00,36.94200134277344,12.64900016784668,47.76800155639648,13.616999626159668,-10.406000137329102,-2.5160000324249268,43.49599838256836 -8921,2017-07-07 17:00:00,35.93600082397461,11.309000015258787,46.05199813842773,11.982000350952148,-9.041000366210938,-2.5160000324249268,42.617000579833984 -8922,2017-07-07 18:00:00,39.53799819946289,12.815999984741213,48.4109992980957,12.706000328063965,-9.104999542236328,-1.343000054359436,42.178001403808594 -8923,2017-07-07 19:00:00,41.632999420166016,12.64900016784668,46.2400016784668,10.829999923706056,-5.14900016784668,0.0,41.29899978637695 -8924,2017-07-07 20:00:00,39.790000915527344,12.984000205993652,48.09000015258789,12.437999725341797,-7.515999794006348,0.0,40.63949966430664 -8925,2017-07-07 21:00:00,40.04100036621094,13.654000282287598,48.946998596191406,13.241999626159668,-8.689000129699707,0.0,40.41999816894531 -8926,2017-07-07 22:00:00,42.80500030517578,14.91100025177002,51.81600189208984,14.20699977874756,-9.168999671936035,0.0,40.20000076293945 -8927,2017-07-07 23:00:00,42.21900177001953,14.91100025177002,51.03799819946289,14.100000381469728,-9.029999732971191,0.0,39.97999954223633 -8928,2017-07-08 00:00:00,37.277000427246094,13.067999839782717,46.90999984741211,12.866999626159668,-9.755000114440918,0.0,39.760501861572266 -8929,2017-07-08 01:00:00,35.014999389648445,11.895000457763672,44.60499954223633,11.928999900817873,-9.786999702453612,0.0,39.54100036621094 -8930,2017-07-08 02:00:00,32.669998168945305,11.727999687194824,40.74499893188477,11.607000350952148,-7.4099998474121085,0.0,39.10200119018555 -8931,2017-07-08 03:00:00,34.261001586914055,12.229999542236328,43.13000106811523,12.222999572753904,-8.390999794006348,0.0,38.88199996948242 -8932,2017-07-08 04:00:00,32.16699981689453,12.062999725341797,43.50600051879883,12.706000328063965,-12.175000190734863,-1.2690000534057615,38.6619987487793 -8933,2017-07-08 05:00:00,34.68000030517578,12.314000129699709,44.06900024414063,12.437999725341797,-9.819000244140623,-1.3220000267028809,37.78300094604492 -8934,2017-07-08 06:00:00,34.763999938964844,12.39799976348877,43.90800094604492,12.170000076293944,-8.720999717712402,0.0,37.78300094604492 -8935,2017-07-08 07:00:00,33.088001251220696,11.47599983215332,41.52199935913086,11.28499984741211,-8.741999626159668,0.0,37.78300094604492 -8936,2017-07-08 08:00:00,27.05699920654297,9.130999565124512,36.7239990234375,9.756999969482422,-8.956000328063965,0.0,38.44250106811523 -8937,2017-07-08 09:00:00,34.345001220703125,13.402999877929688,45.32899856567383,13.939000129699709,-10.246000289916992,-1.3009999990463257,39.32149887084961 -8938,2017-07-08 10:00:00,33.42300033569336,11.309000015258787,44.14899826049805,12.116000175476074,-10.246000289916992,-1.3009999990463257,40.41999816894531 -8939,2017-07-08 11:00:00,40.04100036621094,14.576000213623049,51.11899948120117,14.63599967956543,-10.277999877929688,-1.3009999990463257,41.51850128173828 -8940,2017-07-08 12:00:00,40.04100036621094,12.5649995803833,49.26900100708008,12.812999725341797,-9.029999732971191,-1.5989999771118164,42.617000579833984 -8941,2017-07-08 13:00:00,38.617000579833984,12.145999908447266,48.5989990234375,12.678999900817873,-9.12600040435791,-1.4390000104904177,43.71599960327149 -8942,2017-07-08 14:00:00,37.52799987792969,12.815999984741213,47.79499816894531,13.725000381469728,-10.246000289916992,-1.4390000104904177,43.2765007019043 -8943,2017-07-08 15:00:00,37.10900115966797,12.64900016784668,46.7760009765625,13.644000053405762,-8.795999526977539,-1.4390000104904177,42.83700180053711 -8944,2017-07-08 16:00:00,36.94200134277344,12.480999946594238,46.374000549316406,13.135000228881836,-8.720999717712402,-1.2580000162124634,42.83700180053711 -8945,2017-07-08 17:00:00,40.62699890136719,13.152000427246096,49.83200073242188,13.590999603271484,-8.710000038146973,-1.2580000162124634,42.397499084472656 -8946,2017-07-08 18:00:00,38.53300094604492,12.815999984741213,47.875,13.402999877929688,-9.178999900817873,-1.2369999885559082,41.95800018310547 -8947,2017-07-08 19:00:00,39.45500183105469,12.899999618530272,46.45399856567383,11.767999649047852,-6.033999919891357,0.0,41.51850128173828 -8948,2017-07-08 20:00:00,41.2140007019043,13.98900032043457,49.02799987792969,12.84000015258789,-8.560999870300293,0.0,40.85900115966797 -8949,2017-07-08 21:00:00,40.87900161743164,15.246000289916992,50.28799819946289,14.20699977874756,-8.284000396728517,0.0,40.63949966430664 -8950,2017-07-08 22:00:00,41.79999923706055,16.670000076293945,50.28799819946289,15.305999755859377,-8.347999572753906,0.0,40.20000076293945 -8951,2017-07-08 23:00:00,39.45500183105469,15.748000144958494,47.875,15.413000106811523,-8.369000434875487,0.0,39.760501861572266 -8952,2017-07-09 00:00:00,39.20299911499024,13.98900032043457,46.0250015258789,13.348999977111816,-7.046999931335449,0.0,39.760501861572266 -8953,2017-07-09 01:00:00,34.09400177001953,12.984000205993652,43.55899810791016,12.920000076293944,-9.946999549865724,0.0,39.760501861572266 -8954,2017-07-09 02:00:00,35.685001373291016,13.402999877929688,43.88100051879883,13.107999801635742,-8.817000389099121,0.0,39.54100036621094 -8955,2017-07-09 03:00:00,29.738000869750977,12.480999946594238,39.02899932861328,12.222999572753904,-8.934000015258789,0.0,39.32149887084961 -8956,2017-07-09 04:00:00,30.82699966430664,12.145999908447266,40.55699920654297,12.277000427246096,-10.267000198364258,-1.246999979019165,38.88199996948242 -8957,2017-07-09 05:00:00,35.0989990234375,14.241000175476074,43.13000106811523,14.019000053405762,-8.027999877929688,0.0,38.44250106811523 -8958,2017-07-09 06:00:00,34.59600067138672,13.067999839782717,43.15700149536133,12.652000427246096,-9.178999900817873,0.0,37.34400177001953 -8959,2017-07-09 07:00:00,32.92100143432617,12.145999908447266,41.44200134277344,12.008999824523926,-9.670000076293944,0.0,37.78300094604492 -8960,2017-07-09 08:00:00,28.565000534057607,9.550000190734863,40.10100173950195,10.96399974822998,-11.194000244140623,-1.4179999828338623,37.78300094604492 -8961,2017-07-09 09:00:00,33.757999420166016,11.727999687194824,43.15700149536133,12.62600040435791,-9.49899959564209,-1.4179999828338623,38.00299835205078 -8962,2017-07-09 10:00:00,32.250999450683594,10.805999755859377,43.74700164794922,12.062999725341797,-10.788999557495115,-1.4179999828338623,38.88199996948242 -8963,2017-07-09 11:00:00,31.58099937438965,8.711999893188478,42.54100036621094,10.024999618530272,-10.68299961090088,-1.4179999828338623,39.32149887084961 -8964,2017-07-09 12:00:00,31.32900047302246,9.800999641418455,42.11199951171875,11.151000022888184,-10.68299961090088,-2.6549999713897705,40.41949844360352 -8965,2017-07-09 13:00:00,32.250999450683594,10.052000045776367,43.37200164794922,11.392000198364258,-11.706000328063965,-2.6549999713897705,40.85950088500977 -8966,2017-07-09 14:00:00,31.2450008392334,9.550000190734863,42.70199966430664,11.204999923706056,-11.845000267028809,-2.6549999713897705,40.41949844360352 -8967,2017-07-09 15:00:00,30.072999954223643,8.795999526977539,40.82500076293945,10.29300022125244,-10.532999992370604,-2.6549999713897705,40.41949844360352 -8968,2017-07-09 16:00:00,32.58599853515625,10.722000122070312,43.96099853515625,12.196999549865724,-10.532999992370604,-2.6549999713897705,40.63949966430664 -8969,2017-07-09 17:00:00,32.58599853515625,10.470999717712402,43.58599853515625,11.767999649047852,-10.437000274658203,-2.6549999713897705,39.10200119018555 -8970,2017-07-09 18:00:00,35.518001556396484,10.805999755859377,44.87300109863281,11.71399974822998,-8.956000328063965,-2.6549999713897705,39.10200119018555 -8971,2017-07-09 19:00:00,35.85300064086914,11.140999794006348,43.18399810791016,11.795000076293944,-6.84499979019165,-1.3009999990463257,37.5634994506836 -8972,2017-07-09 20:00:00,34.09400177001953,11.057000160217283,41.20000076293945,10.668999671936035,-6.513999938964844,0.0,35.36600112915039 -8973,2017-07-09 21:00:00,37.86299896240234,13.73799991607666,45.22100067138672,13.456000328063965,-8.071000099182129,0.0,34.707000732421875 -8974,2017-07-09 22:00:00,36.52299880981445,13.402999877929688,46.83000183105469,13.993000030517578,-9.1899995803833,-1.2580000162124634,33.82849884033203 -8975,2017-07-09 23:00:00,32.669998168945305,12.229999542236328,43.53300094604492,12.920000076293944,-10.427000045776367,-1.3329999446868896,33.16899871826172 -8976,2017-07-10 00:00:00,28.481000900268555,9.465999603271484,39.32400131225586,10.803000450134276,-10.37399959564209,-1.3009999990463257,32.72949981689453 -8977,2017-07-10 01:00:00,28.73200035095215,10.220000267028809,39.64599990844727,11.607000350952148,-10.800000190734863,-2.559000015258789,32.72949981689453 -8978,2017-07-10 02:00:00,31.16200065612793,11.309000015258787,41.57600021362305,12.331000328063965,-10.843000411987305,-2.559000015258789,32.72949981689453 -8979,2017-07-10 03:00:00,26.55400085449219,9.29800033569336,37.0989990234375,10.829999923706056,-10.51200008392334,-2.559000015258789,33.60850143432617 -8980,2017-07-10 04:00:00,31.32900047302246,10.890000343322754,40.45000076293945,11.902000427246096,-9.12600040435791,-2.559000015258789,30.75149917602539 -8981,2017-07-10 05:00:00,29.23500061035156,9.800999641418455,40.77199935913086,11.472999572753904,-10.576000213623049,-2.803999900817871,29.653499603271484 -8982,2017-07-10 06:00:00,28.565000534057607,10.052000045776367,40.90599822998047,11.875,-11.89799976348877,-2.803999900817871,29.214000701904297 -8983,2017-07-10 07:00:00,25.29800033569336,9.717000007629396,38.0369987487793,11.687000274658203,-11.918999671936035,-2.803999900817871,29.43400001525879 -8984,2017-07-10 08:00:00,26.72200012207031,8.963000297546387,37.5009994506836,10.29300022125244,-10.68299961090088,-1.5889999866485596,29.653499603271484 -8985,2017-07-10 09:00:00,30.65900039672852,11.895000457763672,42.459999084472656,13.37600040435791,-11.696000099182127,-2.803999900817871,30.09250068664551 -8986,2017-07-10 10:00:00,30.82699966430664,9.550000190734863,42.00500106811523,10.90999984741211,-12.20699977874756,-2.803999900817871,31.63050079345703 -8987,2017-07-10 11:00:00,32.92100143432617,10.052000045776367,44.63199996948242,11.741000175476074,-12.45199966430664,-2.803999900817871,34.92699813842773 -8988,2017-07-10 12:00:00,36.60699844360352,11.225000381469728,45.97200012207031,12.41100025177002,-9.925999641418455,-1.843999981880188,36.24499893188477 -8989,2017-07-10 13:00:00,35.93600082397461,12.062999725341797,45.56999969482422,12.973999977111816,-9.979000091552734,-1.8550000190734863,37.34349822998047 -8990,2017-07-10 14:00:00,35.349998474121094,12.5649995803833,46.2400016784668,13.83199977874756,-11.279999732971191,-1.8550000190734863,39.32099914550781 -8991,2017-07-10 15:00:00,38.44900131225586,13.152000427246096,46.29399871826172,13.402999877929688,-7.6020002365112305,-1.8550000190734863,39.98049926757813 -8992,2017-07-10 16:00:00,34.59600067138672,12.899999618530272,46.6150016784668,13.911999702453612,-12.666000366210938,-1.8550000190734863,40.20000076293945 -8993,2017-07-10 17:00:00,36.68999862670898,12.815999984741213,46.72200012207031,13.43000030517578,-10.15999984741211,-1.8550000190734863,39.98049926757813 -8994,2017-07-10 18:00:00,35.349998474121094,12.480999946594238,46.64199829101562,13.697999954223633,-11.194000244140623,-1.8550000190734863,39.32149887084961 -8995,2017-07-10 19:00:00,33.005001068115234,10.890000343322754,43.29100036621094,12.08899974822998,-9.381999969482422,-1.3220000267028809,38.00299835205078 -8996,2017-07-10 20:00:00,33.42300033569336,11.057000160217283,44.52399826049805,12.357000350952148,-10.267000198364258,-1.5670000314712524,37.124000549316406 -8997,2017-07-10 21:00:00,35.43399810791016,13.234999656677244,45.67699813842773,13.510000228881836,-10.0,-1.5670000314712524,36.68450164794922 -8998,2017-07-10 22:00:00,39.62200164794922,15.664999961853027,47.178001403808594,15.279000282287598,-7.974999904632567,0.0,36.025001525878906 -8999,2017-07-10 23:00:00,33.92599868774414,13.487000465393065,44.06900024414063,13.859000205993652,-10.19200038909912,-1.684000015258789,35.80550003051758 -9000,2017-07-11 00:00:00,34.09400177001953,14.072999954223633,43.74700164794922,14.20699977874756,-9.531000137329102,-1.2150000333786009,35.58599853515625 -9001,2017-07-11 01:00:00,30.239999771118164,11.979000091552734,39.94100189208984,12.652000427246096,-9.29699993133545,-1.2790000438690186,35.36600112915039 -9002,2017-07-11 02:00:00,29.738000869750977,11.5600004196167,41.709999084472656,12.732999801635742,-12.04699993133545,-1.3009999990463257,34.926498413085945 -9003,2017-07-11 03:00:00,28.81599998474121,11.727999687194824,38.70800018310547,12.62600040435791,-9.510000228881836,-1.3009999990463257,34.707000732421875 -9004,2017-07-11 04:00:00,30.743000030517567,12.480999946594238,41.14699935913086,13.29599952697754,-9.371000289916992,-1.3009999990463257,34.487499237060554 -9005,2017-07-11 05:00:00,30.1560001373291,11.47599983215332,41.36100006103516,12.946999549865724,-10.597000122070312,-2.5269999504089355,34.268001556396484 -9006,2017-07-11 06:00:00,31.077999114990234,11.644000053405762,41.89699935913086,12.760000228881836,-10.491000175476074,-2.5269999504089355,34.268001556396484 -9007,2017-07-11 07:00:00,34.09400177001953,12.732999801635742,42.62099838256836,13.348999977111816,-7.4099998474121085,-2.5269999504089355,34.268001556396484 -9008,2017-07-11 08:00:00,26.972999572753903,9.968000411987305,37.93000030517578,11.178000450134276,-11.204999923706056,-1.8550000190734863,35.80550003051758 -9009,2017-07-11 09:00:00,36.68999862670898,13.654000282287598,45.06000137329102,14.18000030517578,-9.041000366210938,-1.5460000038146973,37.78350067138672 -9010,2017-07-11 10:00:00,34.59600067138672,11.140999794006348,44.52399826049805,12.196999549865724,-9.862000465393066,-1.5460000038146973,40.41999816894531 -9011,2017-07-11 11:00:00,33.757999420166016,10.638999938964844,45.59700012207031,12.062999725341797,-11.22599983215332,-1.5460000038146973,43.71549987792969 -9012,2017-07-11 12:00:00,39.45500183105469,13.234999656677244,49.29600143432617,14.26099967956543,-9.862000465393066,-1.5460000038146973,45.69300079345703 -9013,2017-07-11 13:00:00,39.11999893188477,13.56999969482422,50.71599960327149,14.79699993133545,-10.970999717712402,-1.5460000038146973,46.79199981689453 -9014,2017-07-11 14:00:00,37.946998596191406,13.234999656677244,49.18899917602539,14.019000053405762,-10.939000129699709,-2.760999917984009,48.76950073242188 -9015,2017-07-11 15:00:00,38.36600112915039,13.402999877929688,49.77799987792969,14.286999702453612,-10.66100025177002,-2.760999917984009,49.86849975585938 -9016,2017-07-11 16:00:00,37.277000427246094,12.480999946594238,48.09000015258789,13.269000053405762,-10.586999893188477,-2.760999917984009,48.76950073242188 -9017,2017-07-11 17:00:00,39.874000549316406,12.480999946594238,49.3489990234375,13.29599952697754,-9.274999618530272,-1.4179999828338623,47.012001037597656 -9018,2017-07-11 18:00:00,38.44900131225586,10.722000122070312,47.7140007019043,11.472999572753904,-9.1899995803833,-1.493000030517578,46.13249969482422 -9019,2017-07-11 19:00:00,36.43899917602539,10.13599967956543,45.999000549316406,10.776000022888184,-9.510000228881836,-1.4390000104904177,45.03400039672852 -9020,2017-07-11 20:00:00,36.52299880981445,9.550000190734863,47.5270004272461,10.37399959564209,-10.458999633789062,-2.6760001182556152,43.49649810791016 -9021,2017-07-11 21:00:00,40.3759994506836,12.145999908447266,48.11600112915039,11.902000427246096,-7.367000102996826,0.0,42.397499084472656 -9022,2017-07-11 22:00:00,44.900001525878906,14.324000358581545,50.15399932861328,13.161999702453612,-4.626999855041504,0.0,41.73799896240234 -9023,2017-07-11 23:00:00,39.95700073242188,12.480999946594238,47.63399887084961,11.741000175476074,-7.122000217437744,0.0,40.85900115966797 -9024,2017-07-12 00:00:00,41.2140007019043,13.402999877929688,46.803001403808594,11.902000427246096,-5.821000099182129,0.0,40.20000076293945 -9025,2017-07-12 01:00:00,28.64900016784668,8.628000259399414,36.21500015258789,8.550999641418457,-8.208999633789062,0.0,39.760501861572266 -9026,2017-07-12 02:00:00,29.82099914550781,10.13599967956543,37.95700073242188,9.94499969482422,-6.951000213623048,0.0,39.32149887084961 -9027,2017-07-12 03:00:00,35.182998657226555,12.062999725341797,42.86199951171875,11.687000274658203,-7.686999797821045,0.0,39.32149887084961 -9028,2017-07-12 04:00:00,34.763999938964844,12.145999908447266,42.99599838256836,11.954999923706056,-7.291999816894531,0.0,38.88199996948242 -9029,2017-07-12 05:00:00,31.32900047302246,9.717000007629396,40.12799835205078,10.31999969482422,-8.262999534606934,-1.375,38.66249847412109 -9030,2017-07-12 06:00:00,34.0099983215332,12.39799976348877,41.20000076293945,12.222999572753904,-5.394999980926514,0.0,38.44250106811523 -9031,2017-07-12 07:00:00,33.674999237060554,11.5600004196167,41.709999084472656,11.151000022888184,-6.88700008392334,0.0,38.44250106811523 -9032,2017-07-12 08:00:00,29.23500061035156,9.29800033569336,40.23500061035156,10.69499969482422,-9.670000076293944,-1.2790000438690186,39.32149887084961 -9033,2017-07-12 09:00:00,35.76900100708008,12.229999542236328,46.05199813842773,12.894000053405762,-9.670000076293944,-1.22599995136261,40.41949844360352 -9034,2017-07-12 10:00:00,34.09400177001953,9.21399974822998,44.47100067138672,10.31999969482422,-9.64900016784668,-1.22599995136261,41.07899856567383 -9035,2017-07-12 11:00:00,35.85300064086914,10.638999938964844,47.1510009765625,11.607000350952148,-10.66100025177002,-1.3969999551773071,42.83700180053711 -9036,2017-07-12 12:00:00,42.21900177001953,12.984000205993652,50.20700073242188,13.241999626159668,-7.985000133514402,-1.3969999551773071,46.571998596191406 -9037,2017-07-12 13:00:00,43.89400100708008,14.156999588012695,52.75400161743164,14.475000381469728,-9.265000343322754,-1.3969999551773071,48.33050155639648 -9038,2017-07-12 14:00:00,41.04600143432617,13.402999877929688,49.18899917602539,13.536999702453612,-8.784999847412111,-1.2899999618530271,48.33050155639648 -9039,2017-07-12 15:00:00,43.47600173950195,13.821999549865724,49.96599960327149,13.348999977111816,-7.026000022888184,-1.2899999618530271,49.86849975585938 -9040,2017-07-12 16:00:00,43.81100082397461,14.241000175476074,52.61999893188477,14.63599967956543,-7.974999904632567,-1.2899999618530271,49.42850112915039 -9041,2017-07-12 17:00:00,43.81100082397461,13.821999549865724,52.86100006103516,14.04599952697754,-7.985000133514402,-1.2899999618530271,47.89049911499024 -9042,2017-07-12 18:00:00,42.80500030517578,13.654000282287598,50.44800186157226,13.402999877929688,-7.888999938964844,-1.2690000534057615,47.23149871826172 -9043,2017-07-12 19:00:00,40.125,11.47599983215332,48.14300155639648,10.90999984741211,-7.676000118255615,0.0,46.352500915527344 -9044,2017-07-12 20:00:00,40.125,11.392000198364258,46.18600082397461,9.838000297546388,-5.244999885559082,0.0,45.03400039672852 -9045,2017-07-12 21:00:00,44.229000091552734,12.899999618530272,50.20700073242188,11.821000099182127,-5.127999782562256,0.0,43.71599960327149 -9046,2017-07-12 22:00:00,42.97299957275391,14.156999588012695,51.36000061035156,13.777999877929688,-7.623000144958496,0.0,42.83700180053711 -9047,2017-07-12 23:00:00,44.81600189208984,13.98900032043457,50.07300186157226,12.84000015258789,-5.0,0.0,42.617000579833984 -9048,2017-07-13 00:00:00,41.2140007019043,13.98900032043457,47.5,12.598999977111816,-6.5250000953674325,0.0,42.397499084472656 -9049,2017-07-13 01:00:00,39.53799819946289,11.895000457763672,44.44400024414063,10.937000274658203,-5.244999885559082,0.0,42.178001403808594 -9050,2017-07-13 02:00:00,37.277000427246094,12.062999725341797,44.900001525878906,11.741000175476074,-8.241000175476074,0.0,41.73799896240234 -9051,2017-07-13 03:00:00,36.68999862670898,12.314000129699709,44.38999938964844,12.008999824523926,-7.868000030517577,0.0,41.29899978637695 -9052,2017-07-13 04:00:00,35.85300064086914,11.057000160217283,42.03099822998047,10.776000022888184,-6.684999942779541,0.0,40.63949966430664 -9053,2017-07-13 05:00:00,35.93600082397461,12.39799976348877,44.17599868774414,12.142999649047852,-7.803999900817871,0.0,40.20000076293945 -9054,2017-07-13 06:00:00,37.86299896240234,12.5649995803833,43.96099853515625,11.687000274658203,-6.769999980926514,0.0,40.20000076293945 -9055,2017-07-13 07:00:00,36.858001708984375,12.5649995803833,43.90800094604492,12.222999572753904,-6.908999919891357,0.0,40.20000076293945 -9056,2017-07-13 08:00:00,29.82099914550781,7.789999961853027,40.12799835205078,9.034000396728516,-9.425000190734863,-1.2150000333786009,41.07899856567383 -9057,2017-07-13 09:00:00,38.95199966430664,12.39799976348877,48.11600112915039,12.84000015258789,-8.710000038146973,-1.2150000333786009,41.51850128173828 -9058,2017-07-13 10:00:00,40.29199981689453,12.062999725341797,49.40299987792969,12.46500015258789,-8.571999549865723,-1.2150000333786009,42.397499084472656 -9059,2017-07-13 11:00:00,46.82600021362305,14.576000213623049,51.62799835205078,13.725000381469728,-4.755000114440918,0.0,43.93550109863281 -9060,2017-07-13 12:00:00,44.983001708984375,12.732999801635742,52.35200119018555,12.732999801635742,-7.078999996185303,-1.3329999446868896,45.03400039672852 -9061,2017-07-13 13:00:00,41.88399887084961,12.815999984741213,51.92300033569336,13.269000053405762,-9.48900032043457,-1.3329999446868896,45.4734992980957 -9062,2017-07-13 14:00:00,45.06700134277344,14.491999626159668,54.22800064086914,14.501999855041506,-9.64900016784668,-1.3329999446868896,47.01150131225586 -9063,2017-07-13 15:00:00,45.98899841308594,15.161999702453612,54.68399810791016,14.824000358581545,-8.369000434875487,-2.5910000801086426,48.11050033569336 -9064,2017-07-13 16:00:00,44.39699935913086,14.82699966430664,53.39699935913086,15.038000106811523,-8.369000434875487,-1.2790000438690186,48.54999923706055 -9065,2017-07-13 17:00:00,44.3129997253418,13.487000465393065,52.78099822998047,13.83199977874756,-9.49899959564209,-2.5269999504089355,48.33050155639648 -9066,2017-07-13 18:00:00,42.1349983215332,12.145999908447266,50.20700073242188,11.928999900817873,-8.102999687194824,-2.5269999504089355,47.67100143432617 -9067,2017-07-13 19:00:00,39.790000915527344,10.973999977111816,47.84799957275391,10.427000045776367,-7.623000144958496,0.0,46.13249969482422 -9068,2017-07-13 20:00:00,47.49599838256836,15.161999702453612,53.39699935913086,13.777999877929688,-6.162000179290772,0.0,44.81449890136719 -9069,2017-07-13 21:00:00,49.84199905395508,17.089000701904293,54.95199966430664,14.715999603271484,-5.660999774932861,0.0,44.15549850463867 -9070,2017-07-13 22:00:00,45.90499877929688,13.98900032043457,52.48600006103516,12.866999626159668,-5.629000186920166,0.0,43.49649810791016 -9071,2017-07-13 23:00:00,40.3759994506836,12.480999946594238,48.5989990234375,12.03600025177002,-8.208999633789062,-1.2369999885559082,43.05649948120117 -9072,2017-07-14 00:00:00,38.44900131225586,11.979000091552734,46.10599899291992,11.633999824523926,-7.7189998626708975,0.0,42.397499084472656 -9073,2017-07-14 01:00:00,38.70100021362305,12.480999946594238,46.83000183105469,12.383999824523926,-8.763999938964844,0.0,41.73799896240234 -9074,2017-07-14 02:00:00,37.86299896240234,12.062999725341797,44.87300109863281,11.66100025177002,-7.7189998626708975,0.0,41.07899856567383 -9075,2017-07-14 03:00:00,36.104000091552734,11.895000457763672,43.58599853515625,11.312000274658203,-7.985000133514402,0.0,40.20000076293945 -9076,2017-07-14 04:00:00,35.85300064086914,11.47599983215332,44.229000091552734,11.928999900817873,-7.900000095367432,-1.3009999990463257,39.760501861572266 -9077,2017-07-14 05:00:00,33.84199905395508,10.55500030517578,42.64799880981445,11.017000198364258,-7.771999835968018,-1.3969999551773071,39.54100036621094 -9078,2017-07-14 06:00:00,35.76900100708008,11.392000198364258,42.86199951171875,11.5,-7.377999782562256,0.0,39.32149887084961 -9079,2017-07-14 07:00:00,33.17200088500977,11.057000160217283,43.50600051879883,11.875,-9.616999626159668,-1.2790000438690186,39.32149887084961 -9080,2017-07-14 08:00:00,33.92599868774414,8.878999710083008,41.17399978637695,9.302000045776367,-6.866000175476074,-1.2369999885559082,39.760501861572266 -9081,2017-07-14 09:00:00,39.53799819946289,12.062999725341797,48.54499816894531,12.46500015258789,-8.092000007629395,-1.2369999885559082,41.29850006103516 -9082,2017-07-14 10:00:00,35.349998474121094,10.052000045776367,43.69300079345703,10.53499984741211,-8.071000099182129,-1.2369999885559082,42.397499084472656 -9083,2017-07-14 11:00:00,36.43899917602539,9.550000190734863,43.88100051879883,9.838000297546388,-6.802000045776367,-1.2369999885559082,42.617000579833984 -9084,2017-07-14 12:00:00,39.20299911499024,10.13599967956543,47.95500183105469,11.097999572753906,-8.081000328063965,-1.2369999885559082,43.2765007019043 -9085,2017-07-14 13:00:00,42.63800048828125,11.979000091552734,52.75400161743164,12.41100025177002,-9.265000343322754,-1.2369999885559082,45.4734992980957 -9086,2017-07-14 14:00:00,44.0620002746582,11.895000457763672,52.37799835205078,12.116000175476074,-7.65500020980835,-1.2369999885559082,48.76950073242188 -9087,2017-07-14 15:00:00,45.4020004272461,12.5649995803833,51.92300033569336,12.03600025177002,-7.228000164031982,-1.2369999885559082,50.74700164794922 -9088,2017-07-14 16:00:00,46.99399948120117,12.314000129699709,53.42399978637695,11.472999572753904,-6.033999919891357,0.0,49.42850112915039 -9089,2017-07-14 17:00:00,46.57500076293945,14.156999588012695,54.14799880981445,13.80500030517578,-7.302999973297119,-1.2690000534057615,48.33050155639648 -9090,2017-07-14 18:00:00,44.81600189208984,13.821999549865724,51.22600173950195,13.053999900817873,-6.065999984741211,0.0,47.01150131225586 -9091,2017-07-14 19:00:00,45.73699951171875,12.732999801635742,51.03799819946289,11.66100025177002,-5.181000232696533,0.0,45.91299819946289 -9092,2017-07-14 20:00:00,49.67399978637695,15.329999923706056,55.08599853515625,13.777999877929688,-6.0879998207092285,0.0,44.59450149536133 -9093,2017-07-14 21:00:00,47.999000549316406,14.491999626159668,52.96799850463867,12.517999649047852,-5.0,0.0,44.15549850463867 -9094,2017-07-14 22:00:00,47.41299819946289,14.82699966430664,52.78099822998047,13.135000228881836,-5.235000133514403,0.0,43.49599838256836 -9095,2017-07-14 23:00:00,40.54399871826172,12.984000205993652,48.7599983215332,12.357000350952148,-8.944999694824219,0.0,43.05699920654297 -9096,2017-07-15 00:00:00,41.2140007019043,13.98900032043457,48.89400100708008,12.760000228881836,-7.526999950408935,0.0,42.83700180053711 -9097,2017-07-15 01:00:00,40.29199981689453,13.821999549865724,47.5270004272461,13.081000328063965,-6.375999927520753,0.0,42.1775016784668 -9098,2017-07-15 02:00:00,39.20299911499024,12.64900016784668,45.19400024414063,11.607000350952148,-6.493000030517577,0.0,41.51850128173828 -9099,2017-07-15 03:00:00,39.2869987487793,12.64900016784668,44.14899826049805,11.472999572753904,-4.711999893188477,0.0,40.85950088500977 -9100,2017-07-15 04:00:00,35.182998657226555,11.392000198364258,42.21900177001953,10.989999771118164,-6.311999797821045,0.0,40.41949844360352 -9101,2017-07-15 05:00:00,34.847000122070305,11.810999870300291,42.88899993896485,11.472999572753904,-7.6020002365112305,0.0,40.20000076293945 -9102,2017-07-15 06:00:00,33.590999603271484,9.968000411987305,42.19200134277344,10.508000373840332,-9.062000274658203,-1.2369999885559082,39.760501861572266 -9103,2017-07-15 07:00:00,34.763999938964844,12.145999908447266,44.310001373291016,12.170000076293944,-8.998000144958496,0.0,40.20000076293945 -9104,2017-07-15 08:00:00,32.83700180053711,10.55500030517578,44.12200164794922,11.607000350952148,-10.468999862670898,-1.3009999990463257,41.29850006103516 -9105,2017-07-15 09:00:00,41.88399887084961,14.324000358581545,49.3489990234375,13.885000228881836,-7.708000183105469,-1.2580000162124634,43.71549987792969 -9106,2017-07-15 10:00:00,45.23500061035156,15.246000289916992,52.61999893188477,14.715999603271484,-7.729000091552732,-1.2790000438690186,46.13299942016602 -9107,2017-07-15 11:00:00,45.4020004272461,15.329999923706056,55.19300079345703,15.118000030517578,-8.97700023651123,-1.2369999885559082,47.89099884033203 -9108,2017-07-15 12:00:00,45.73699951171875,13.821999549865724,54.49599838256836,13.75100040435791,-8.699999809265138,-1.6100000143051147,49.86800003051758 -9109,2017-07-15 13:00:00,43.72700119018555,13.821999549865724,53.07500076293945,13.993000030517578,-8.11299991607666,-1.406999945640564,49.20899963378906 -9110,2017-07-15 14:00:00,44.81600189208984,13.654000282287598,53.98699951171875,13.965999603271484,-9.413999557495115,-1.4609999656677246,51.6259994506836 -9111,2017-07-15 15:00:00,46.65900039672852,15.329999923706056,57.22999954223633,15.54699993133545,-9.510000228881836,-1.4609999656677246,52.7244987487793 -9112,2017-07-15 16:00:00,46.57500076293945,14.743000030517578,55.94400024414063,14.930999755859377,-9.467000007629396,-1.3650000095367432,51.40650177001953 -9113,2017-07-15 17:00:00,41.29800033569336,11.727999687194824,50.93099975585938,12.222999572753904,-9.425000190734863,-1.3650000095367432,49.86800003051758 -9114,2017-07-15 18:00:00,45.31800079345703,14.324000358581545,54.57699966430664,14.395000457763672,-8.156000137329103,-1.3650000095367432,49.20899963378906 -9115,2017-07-15 19:00:00,42.88899993896485,13.402999877929688,51.52099990844727,13.269000053405762,-8.913000106811523,-1.3650000095367432,48.33050155639648 -9116,2017-07-15 20:00:00,46.99399948120117,14.072999954223633,53.04899978637695,12.84000015258789,-5.0219998359680185,0.0,47.01150131225586 -9117,2017-07-15 21:00:00,49.75799942016602,15.916000366210938,56.56000137329102,14.340999603271484,-6.065999984741211,0.0,45.91299819946289 -9118,2017-07-15 22:00:00,44.0620002746582,14.072999954223633,52.02999877929688,13.37600040435791,-7.291999816894531,0.0,45.03400039672852 -9119,2017-07-15 23:00:00,44.3129997253418,14.743000030517578,50.28799819946289,12.946999549865724,-5.244999885559082,0.0,44.59450149536133 -9120,2017-07-16 00:00:00,40.9630012512207,13.402999877929688,47.58000183105469,12.062999725341797,-6.418000221252441,0.0,44.15549850463867 -9121,2017-07-16 01:00:00,41.46500015258789,14.072999954223633,48.5989990234375,12.84000015258789,-6.3540000915527335,0.0,43.71599960327149 -9122,2017-07-16 02:00:00,38.36600112915039,12.899999618530272,45.89099884033203,11.71399974822998,-7.910999774932861,0.0,42.83700180053711 -9123,2017-07-16 03:00:00,38.11399841308594,12.64900016784668,44.79199981689453,11.579999923706056,-6.620999813079834,0.0,41.95800018310547 -9124,2017-07-16 04:00:00,37.44400024414063,12.480999946594238,43.53300094604492,11.66100025177002,-6.695000171661378,0.0,41.07899856567383 -9125,2017-07-16 05:00:00,37.025001525878906,12.732999801635742,45.48899841308594,12.383999824523926,-7.824999809265138,0.0,40.41999816894531 -9126,2017-07-16 06:00:00,37.19300079345703,12.5649995803833,43.98799896240234,11.526000022888184,-6.204999923706055,0.0,39.97999954223633 -9127,2017-07-16 07:00:00,34.512001037597656,10.722000122070312,43.31800079345703,11.633999824523926,-7.835999965667725,-1.6100000143051147,39.97999954223633 -9128,2017-07-16 08:00:00,33.25600051879883,9.885000228881836,42.91600036621094,10.776000022888184,-9.157999992370604,-1.3220000267028809,41.73849868774414 -9129,2017-07-16 09:00:00,40.87900161743164,12.815999984741213,49.9119987487793,12.866999626159668,-8.838000297546387,-1.7380000352859497,44.375 -9130,2017-07-16 10:00:00,43.64300155639648,12.984000205993652,51.762001037597656,13.053999900817873,-7.206999778747559,-1.7380000352859497,46.571998596191406 -9131,2017-07-16 11:00:00,50.84700012207031,15.83199977874756,56.45299911499024,14.904000282287598,-4.702000141143799,-1.2369999885559082,49.64849853515625 -9132,2017-07-16 12:00:00,49.3390007019043,14.743000030517578,56.47999954223633,14.42099952697754,-7.099999904632568,-1.375,51.186500549316406 -9133,2017-07-16 13:00:00,48.75299835205078,14.994000434875488,57.36399841308594,14.770000457763672,-8.336999893188478,-1.375,51.84550094604492 -9134,2017-07-16 14:00:00,46.2400016784668,14.072999954223633,54.87099838256836,14.286999702453612,-8.359000205993652,-1.375,53.38399887084961 -9135,2017-07-16 15:00:00,47.74800109863281,15.413000106811523,55.43399810791016,15.17199993133545,-7.323999881744385,-1.4500000476837158,54.70249938964844 -9136,2017-07-16 16:00:00,42.303001403808594,10.805999755859377,50.98500061035156,11.178000450134276,-8.156000137329103,-1.5989999771118164,53.38349914550781 -9137,2017-07-16 17:00:00,43.89400100708008,12.229999542236328,52.512001037597656,12.277000427246096,-8.177000045776367,-1.3220000267028809,50.96699905395508 -9138,2017-07-16 18:00:00,42.21900177001953,10.638999938964844,50.98500061035156,10.776000022888184,-9.104999542236328,-1.3220000267028809,49.86800003051758 -9139,2017-07-16 19:00:00,40.29199981689453,9.800999641418455,49.24200057983398,9.94499969482422,-8.027999877929688,-1.2690000534057615,48.76950073242188 -9140,2017-07-16 20:00:00,50.76300048828125,15.748000144958494,55.19300079345703,13.241999626159668,-4.061999797821045,0.0,47.23149871826172 -9141,2017-07-16 21:00:00,48.41799926757813,14.576000213623049,54.60300064086914,12.652000427246096,-6.4710001945495605,0.0,45.91299819946289 -9142,2017-07-16 22:00:00,47.49599838256836,13.98900032043457,54.41600036621094,13.081000328063965,-6.033999919891357,0.0,45.03400039672852 -9143,2017-07-16 23:00:00,42.303001403808594,12.39799976348877,51.49399948120117,11.847999572753904,-8.038999557495117,0.0,44.375 -9144,2017-07-17 00:00:00,43.81100082397461,13.067999839782717,50.44800186157226,11.954999923706056,-6.695000171661378,0.0,43.93600082397461 -9145,2017-07-17 01:00:00,43.81100082397461,13.73799991607666,51.06499862670898,12.866999626159668,-6.749000072479247,0.0,43.05699920654297 -9146,2017-07-17 02:00:00,40.87900161743164,12.480999946594238,48.16999816894531,11.5,-6.684999942779541,0.0,42.397499084472656 -9147,2017-07-17 03:00:00,38.44900131225586,11.644000053405762,46.26699829101562,11.66100025177002,-8.017000198364258,-1.2580000162124634,41.73799896240234 -9148,2017-07-17 04:00:00,38.70100021362305,11.727999687194824,46.6150016784668,11.687000274658203,-7.729000091552732,-1.375,41.29899978637695 -9149,2017-07-17 05:00:00,36.27199935913086,12.062999725341797,44.20299911499024,11.954999923706056,-7.750999927520753,0.0,40.63949966430664 -9150,2017-07-17 06:00:00,38.36600112915039,11.5600004196167,45.75699996948242,11.472999572753904,-7.058000087738037,-1.22599995136261,40.20000076293945 -9151,2017-07-17 07:00:00,36.77399826049805,12.145999908447266,44.47100067138672,11.71399974822998,-7.122000217437744,0.0,40.85900115966797 -9152,2017-07-17 08:00:00,38.36600112915039,11.309000015258787,46.10599899291992,11.178000450134276,-7.323999881744385,-1.2369999885559082,42.397499084472656 -9153,2017-07-17 09:00:00,45.98899841308594,13.98900032043457,52.96799850463867,13.777999877929688,-7.314000129699707,-1.3650000095367432,45.03450012207031 -9154,2017-07-17 10:00:00,42.21900177001953,11.727999687194824,52.40499877929688,12.545000076293944,-9.734000205993652,-1.3650000095367432,47.45100021362305 -9155,2017-07-17 11:00:00,44.0620002746582,11.979000091552734,53.74599838256836,12.598999977111816,-9.33899974822998,-1.3650000095367432,50.0880012512207 -9156,2017-07-17 12:00:00,49.50699996948242,14.91100025177002,58.4900016784668,14.876999855041506,-8.166999816894531,-1.3650000095367432,51.40650177001953 -9157,2017-07-17 13:00:00,47.999000549316406,14.407999992370604,56.74800109863281,14.314000129699709,-8.060000419616701,-1.3650000095367432,52.50500106811523 -9158,2017-07-17 14:00:00,50.00899887084961,15.664999961853027,58.8390007019043,15.654999732971191,-9.402999877929688,-1.6529999971389768,55.14149856567383 -9159,2017-07-17 15:00:00,48.66899871826172,15.246000289916992,57.68600082397461,15.305999755859377,-7.910999774932861,-1.6529999971389768,56.2400016784668 -9160,2017-07-17 16:00:00,47.1609992980957,14.743000030517578,56.37200164794922,14.770000457763672,-9.12600040435791,-1.3539999723434448,54.70249938964844 -9161,2017-07-17 17:00:00,49.75799942016602,13.654000282287598,54.57699966430664,12.732999801635742,-5.223999977111816,0.0,52.94449996948242 -9162,2017-07-17 18:00:00,46.49100112915039,13.654000282287598,55.05899810791016,13.67099952697754,-7.697999954223633,-1.3329999446868896,51.84550094604492 -9163,2017-07-17 19:00:00,40.04100036621094,11.392000198364258,47.125,11.043999671936035,-7.623000144958496,0.0,50.0875015258789 -9164,2017-07-17 20:00:00,49.0880012512207,15.413000106811523,54.49599838256836,13.456000328063965,-6.257999897003174,0.0,48.54999923706055 -9165,2017-07-17 21:00:00,50.428001403808594,18.51300048828125,58.06100082397461,17.343000411987305,-7.078999996185303,0.0,46.79199981689453 -9166,2017-07-17 22:00:00,50.34500122070313,17.089000701904293,56.98899841308594,15.8149995803833,-5.853000164031982,0.0,46.13249969482422 -9167,2017-07-17 23:00:00,47.49599838256836,15.916000366210938,53.85300064086914,14.42099952697754,-6.84499979019165,0.0,45.69350051879883 -9168,2017-07-18 00:00:00,47.41299819946289,16.166999816894528,51.33300018310547,14.340999603271484,-4.243000030517578,0.0,45.03400039672852 -9169,2017-07-18 01:00:00,41.96799850463867,14.491999626159668,48.51800155639648,13.590999603271484,-5.756999969482423,0.0,44.15549850463867 -9170,2017-07-18 02:00:00,42.21900177001953,15.07800006866455,47.95500183105469,13.321999549865724,-5.756999969482423,0.0,43.49599838256836 -9171,2017-07-18 03:00:00,40.71099853515625,15.496999740600586,46.50799942016602,14.340999603271484,-5.853000164031982,0.0,42.83700180053711 -9172,2017-07-18 04:00:00,38.86800003051758,14.659000396728516,45.03400039672852,13.564000129699709,-7.122000217437744,0.0,42.397499084472656 -9173,2017-07-18 05:00:00,38.86800003051758,14.743000030517578,44.95299911499024,13.911999702453612,-6.056000232696532,0.0,41.51850128173828 -9174,2017-07-18 06:00:00,37.52799987792969,13.73799991607666,44.41699981689453,13.536999702453612,-6.172999858856201,0.0,41.07899856567383 -9175,2017-07-18 07:00:00,39.53799819946289,14.491999626159668,44.76599884033203,14.100000381469728,-6.0879998207092285,0.0,41.51850128173828 -9176,2017-07-18 08:00:00,34.59600067138672,11.644000053405762,42.67499923706055,12.678999900817873,-7.494999885559082,-1.2150000333786009,42.397499084472656 -9177,2017-07-18 09:00:00,37.277000427246094,12.815999984741213,45.8380012512207,13.241999626159668,-8.784999847412111,-1.2150000333786009,42.61750030517578 -9178,2017-07-18 10:00:00,39.874000549316406,13.234999656677244,46.83000183105469,13.107999801635742,-6.204999923706055,-1.2150000333786009,44.59500122070313 -9179,2017-07-18 11:00:00,40.29199981689453,12.5649995803833,47.63399887084961,12.894000053405762,-7.494999885559082,-1.2150000333786009,47.23149871826172 -9180,2017-07-18 12:00:00,40.71099853515625,12.815999984741213,48.8129997253418,13.37600040435791,-8.784999847412111,-1.2150000333786009,48.77000045776367 -9181,2017-07-18 13:00:00,44.900001525878906,14.072999954223633,51.73500061035156,14.18000030517578,-7.547999858856201,-1.2150000333786009,49.42850112915039 -9182,2017-07-18 14:00:00,49.3390007019043,15.496999740600586,56.98899841308594,15.520999908447266,-6.269000053405763,-1.2150000333786009,51.40599822998047 -9183,2017-07-18 15:00:00,50.68000030517578,16.0,57.41799926757813,15.359999656677244,-7.547999858856201,-1.2150000333786009,52.94449996948242 -9184,2017-07-18 16:00:00,48.50199890136719,15.329999923706056,55.99700164794922,14.850000381469728,-7.591000080108643,-1.2150000333786009,51.40599822998047 -9185,2017-07-18 17:00:00,47.24499893188477,14.241000175476074,54.92499923706055,13.911999702453612,-7.591000080108643,-1.2150000333786009,50.0875015258789 -9186,2017-07-18 18:00:00,47.49599838256836,14.659000396728516,53.98699951171875,13.965999603271484,-6.322000026702881,-1.246999979019165,49.42850112915039 -9187,2017-07-18 19:00:00,46.57500076293945,13.067999839782717,52.08399963378906,11.928999900817873,-5.117000102996826,0.0,48.33050155639648 -9188,2017-07-18 20:00:00,47.915000915527344,13.98900032043457,53.665000915527344,12.571999549865724,-5.394999980926514,0.0,46.79199981689453 -9189,2017-07-18 21:00:00,53.946998596191406,17.759000778198242,57.36399841308594,14.609000205993652,-3.986999988555908,0.0,45.91299819946289 -9190,2017-07-18 22:00:00,49.92599868774414,17.172000885009766,55.56800079345703,15.118000030517578,-5.127999782562256,0.0,45.03400039672852 -9191,2017-07-18 23:00:00,46.90999984741211,15.748000144958494,52.27099990844727,13.939000129699709,-5.138999938964844,0.0,44.59450149536133 -9192,2017-07-19 00:00:00,43.30799865722656,13.98900032043457,50.18000030517578,13.402999877929688,-7.515999794006348,0.0,44.15549850463867 -9193,2017-07-19 01:00:00,36.35499954223633,9.465999603271484,42.48699951171875,9.381999969482422,-6.193999767303468,0.0,43.2765007019043 -9194,2017-07-19 02:00:00,34.345001220703125,9.381999969482422,40.66400146484375,9.435999870300291,-5.76800012588501,0.0,42.397499084472656 -9195,2017-07-19 03:00:00,33.757999420166016,9.21399974822998,40.31600189208984,9.220999717712402,-6.077000141143799,0.0,41.51850128173828 -9196,2017-07-19 04:00:00,33.088001251220696,10.38700008392334,40.61100006103516,10.45400047302246,-7.34600019454956,0.0,40.85900115966797 -9197,2017-07-19 05:00:00,34.512001037597656,9.550000190734863,41.17399978637695,9.515999794006348,-6.578000068664551,0.0,40.20000076293945 -9198,2017-07-19 06:00:00,37.69599914550781,11.644000053405762,43.61299896240234,11.312000274658203,-4.0939998626708975,0.0,39.760501861572266 -9199,2017-07-19 07:00:00,34.93099975585937,11.810999870300291,42.62099838256836,11.767999649047852,-7.974999904632567,0.0,40.20000076293945 -9200,2017-07-19 08:00:00,34.847000122070305,8.963000297546387,42.56800079345703,9.54300022125244,-7.847000122070312,-1.2899999618530271,41.95800018310547 -9201,2017-07-19 09:00:00,40.87900161743164,13.402999877929688,49.24200057983398,13.402999877929688,-7.847000122070312,-1.2899999618530271,43.2765007019043 -9202,2017-07-19 10:00:00,41.96799850463867,13.234999656677244,50.42200088500977,13.482999801635742,-7.847000122070312,-1.2899999618530271,44.81449890136719 -9203,2017-07-19 11:00:00,37.52799987792969,10.55500030517578,45.73099899291992,11.043999671936035,-7.910999774932861,-1.2899999618530271,47.45100021362305 -9204,2017-07-19 12:00:00,38.617000579833984,9.717000007629396,45.43600082397461,10.024999618530272,-6.684999942779541,-1.2899999618530271,48.76950073242188 -9205,2017-07-19 13:00:00,48.41799926757813,13.73799991607666,54.01399993896485,13.053999900817873,-5.383999824523926,-1.2899999618530271,49.86800003051758 -9206,2017-07-19 14:00:00,42.97299957275391,11.47599983215332,51.52099990844727,11.767999649047852,-7.953000068664551,-1.2899999618530271,52.06549835205078 -9207,2017-07-19 15:00:00,42.88899993896485,13.98900032043457,53.69200134277344,14.555999755859377,-10.532999992370604,-1.2899999618530271,52.94449996948242 -9208,2017-07-19 16:00:00,42.05199813842773,12.5649995803833,50.39500045776367,12.598999977111816,-8.859999656677246,-1.2899999618530271,52.28499984741211 -9209,2017-07-19 17:00:00,44.56499862670898,13.319000244140623,51.49399948120117,12.973999977111816,-7.729000091552732,-1.2899999618530271,50.96649932861328 -9210,2017-07-19 18:00:00,41.79999923706055,12.815999984741213,50.07300186157226,13.027999877929688,-8.923999786376953,-1.3109999895095823,49.42900085449219 -9211,2017-07-19 19:00:00,41.38100051879883,11.644000053405762,47.60699844360352,11.097999572753906,-6.311999797821045,0.0,47.89049911499024 -9212,2017-07-19 20:00:00,45.48600006103516,13.98900032043457,51.65499877929688,12.437999725341797,-6.0879998207092285,0.0,46.5724983215332 -9213,2017-07-19 21:00:00,49.3390007019043,15.83199977874756,55.54199981689453,14.42099952697754,-6.248000144958496,0.0,45.4734992980957 -9214,2017-07-19 22:00:00,49.3390007019043,16.586000442504886,55.72900009155274,15.01099967956543,-5.906000137329103,0.0,44.59450149536133 -9215,2017-07-19 23:00:00,44.73199844360352,14.072999954223633,51.41299819946289,13.00100040435791,-7.090000152587893,0.0,44.15549850463867 -9216,2017-07-20 00:00:00,40.54399871826172,12.64900016784668,48.67900085449219,12.545000076293944,-8.220000267028809,-1.2690000534057615,43.71599960327149 -9217,2017-07-20 01:00:00,43.81100082397461,13.98900032043457,48.946998596191406,12.62600040435791,-5.459000110626222,0.0,43.05699920654297 -9218,2017-07-20 02:00:00,38.198001861572266,12.984000205993652,45.08700180053711,12.383999824523926,-6.749000072479247,0.0,42.397499084472656 -9219,2017-07-20 03:00:00,36.77399826049805,12.145999908447266,44.41699981689453,12.170000076293944,-8.038999557495117,0.0,41.51850128173828 -9220,2017-07-20 04:00:00,37.86299896240234,12.062999725341797,42.78200149536133,11.472999572753904,-5.36299991607666,0.0,41.07899856567383 -9221,2017-07-20 05:00:00,38.617000579833984,12.480999946594238,45.11399841308594,12.331000328063965,-6.48199987411499,0.0,40.63949966430664 -9222,2017-07-20 06:00:00,35.60100173950195,11.979000091552734,42.80899810791016,11.741000175476074,-6.333000183105469,0.0,40.20000076293945 -9223,2017-07-20 07:00:00,35.43399810791016,12.39799976348877,42.64799880981445,11.928999900817873,-6.151999950408936,0.0,40.20000076293945 -9224,2017-07-20 08:00:00,35.685001373291016,11.979000091552734,43.55899810791016,12.062999725341797,-7.270999908447266,-1.246999979019165,41.51850128173828 -9225,2017-07-20 09:00:00,39.45500183105469,12.815999984741213,48.00899887084961,13.402999877929688,-8.550000190734862,-1.3220000267028809,43.71549987792969 -9226,2017-07-20 10:00:00,40.54399871826172,11.979000091552734,49.7509994506836,12.62600040435791,-9.786999702453612,-1.22599995136261,45.25400161743164 -9227,2017-07-20 11:00:00,42.88899993896485,13.402999877929688,52.915000915527344,13.859000205993652,-10.053999900817873,-1.22599995136261,47.67100143432617 -9228,2017-07-20 12:00:00,42.1349983215332,11.5600004196167,51.03799819946289,12.142999649047852,-8.678000450134277,-1.343000054359436,49.42850112915039 -9229,2017-07-20 13:00:00,40.9630012512207,11.810999870300291,50.47499847412109,12.46500015258789,-9.925999641418455,-1.343000054359436,50.96649932861328 -9230,2017-07-20 14:00:00,44.64799880981445,13.73799991607666,54.17399978637695,14.100000381469728,-8.645999908447267,-1.343000054359436,52.94449996948242 -9231,2017-07-20 15:00:00,45.1510009765625,14.407999992370604,54.71099853515625,14.368000030517578,-8.539999961853027,-1.343000054359436,53.60350036621094 -9232,2017-07-20 16:00:00,44.39699935913086,13.319000244140623,53.04899978637695,13.43000030517578,-8.47599983215332,-1.343000054359436,52.72499847412109 -9233,2017-07-20 17:00:00,46.15599822998047,13.73799991607666,53.90599822998047,13.590999603271484,-7.228000164031982,-1.343000054359436,50.96649932861328 -9234,2017-07-20 18:00:00,41.79999923706055,11.727999687194824,49.5099983215332,11.579999923706056,-7.228000164031982,-1.246999979019165,50.0875015258789 -9235,2017-07-20 19:00:00,42.387001037597656,11.895000457763672,49.05500030517578,11.553000450134276,-6.9190001487731925,0.0,48.54999923706055 -9236,2017-07-20 20:00:00,42.05199813842773,10.973999977111816,49.48300170898438,10.53499984741211,-7.921000003814697,-1.2150000333786009,47.01150131225586 -9237,2017-07-20 21:00:00,48.33399963378906,15.246000289916992,54.87099838256836,14.019000053405762,-6.781000137329103,0.0,45.91299819946289 -9238,2017-07-20 22:00:00,46.15599822998047,15.413000106811523,53.61100006103516,14.340999603271484,-6.940999984741211,0.0,45.03400039672852 -9239,2017-07-20 23:00:00,46.071998596191406,14.659000396728516,52.43199920654297,13.43000030517578,-5.61899995803833,0.0,44.59450149536133 -9240,2017-07-21 00:00:00,41.54899978637695,13.402999877929688,49.18899917602539,12.732999801635742,-6.940999984741211,0.0,43.93600082397461 -9241,2017-07-21 01:00:00,39.874000549316406,12.062999725341797,46.45399856567383,10.989999771118164,-6.077000141143799,0.0,43.2765007019043 -9242,2017-07-21 02:00:00,41.71599960327149,13.904999732971191,47.3390007019043,13.00100040435791,-5.500999927520752,0.0,42.617000579833984 -9243,2017-07-21 03:00:00,38.78499984741211,11.727999687194824,44.73899841308594,11.28499984741211,-6.790999889373777,0.0,41.95800018310547 -9244,2017-07-21 04:00:00,37.277000427246094,11.895000457763672,46.34700012207031,12.46500015258789,-9.222000122070312,-1.2580000162124634,41.51850128173828 -9245,2017-07-21 05:00:00,29.48600006103516,9.130999565124512,37.742000579833984,9.70400047302246,-7.888999938964844,-1.406999945640564,41.07899856567383 -9246,2017-07-21 06:00:00,35.518001556396484,11.644000053405762,42.97000122070313,11.687000274658203,-6.705999851226808,-1.22599995136261,40.63949966430664 -9247,2017-07-21 07:00:00,34.59600067138672,11.895000457763672,43.69300079345703,12.303999900817873,-7.932000160217285,-1.3539999723434448,40.63949966430664 -9248,2017-07-21 08:00:00,41.88399887084961,11.47599983215332,50.85100173950195,11.875,-7.985000133514402,-1.493000030517578,42.397499084472656 -9249,2017-07-21 09:00:00,52.43899917602539,17.34000015258789,61.17100143432617,16.753999710083008,-9.446000099182127,-1.493000030517578,44.375 -9250,2017-07-21 10:00:00,55.95700073242188,16.92099952697754,64.09300231933594,15.949000358581545,-8.220000267028809,-1.493000030517578,46.571998596191406 -9251,2017-07-21 11:00:00,39.790000915527344,11.225000381469728,46.9900016784668,11.66100025177002,-6.9619998931884775,-1.493000030517578,49.64849853515625 -9252,2017-07-21 12:00:00,51.43399810791016,14.82699966430664,59.9640007019043,14.609000205993652,-8.859999656677246,-1.493000030517578,51.40650177001953 -9253,2017-07-21 13:00:00,34.09400177001953,9.968000411987305,44.20299911499024,11.446000099182127,-9.734000205993652,-1.493000030517578,52.50500106811523 -9254,2017-07-21 14:00:00,36.68999862670898,12.480999946594238,45.16799926757813,13.027999877929688,-7.122000217437744,-1.493000030517578,54.26250076293945 -9255,2017-07-21 15:00:00,33.25600051879883,10.973999977111816,43.13000106811523,12.116000175476074,-9.64900016784668,-1.493000030517578,55.14149856567383 -9256,2017-07-21 16:00:00,35.685001373291016,11.47599983215332,44.95299911499024,12.545000076293944,-9.28600025177002,-1.4179999828338623,53.82300186157226 -9257,2017-07-21 17:00:00,36.35499954223633,11.895000457763672,44.44400024414063,12.652000427246096,-6.813000202178955,-1.4179999828338623,51.84550094604492 -9258,2017-07-21 18:00:00,34.93099975585937,10.973999977111816,42.56800079345703,11.553000450134276,-8.998000144958496,-1.4179999828338623,50.52750015258789 -9259,2017-07-21 19:00:00,49.25600051879883,13.56999969482422,59.0260009765625,13.37600040435791,-9.626999855041504,-1.375,48.98949813842773 -9260,2017-07-21 20:00:00,46.2400016784668,13.487000465393065,53.61100006103516,12.598999977111816,-7.090000152587893,0.0,47.67100143432617 -9261,2017-07-21 21:00:00,48.25,16.0,56.61399841308594,14.930999755859377,-7.314000129699707,0.0,46.79199981689453 -9262,2017-07-21 22:00:00,51.68500137329102,16.92099952697754,58.14199829101562,15.467000007629396,-5.927999973297119,0.0,45.91299819946289 -9263,2017-07-21 23:00:00,46.82600021362305,14.241000175476074,52.61999893188477,12.866999626159668,-6.130000114440918,0.0,45.4734992980957 -9264,2017-07-22 00:00:00,44.900001525878906,14.491999626159668,52.24399948120117,13.911999702453612,-7.175000190734862,0.0,45.03400039672852 -9265,2017-07-22 01:00:00,39.95700073242188,13.821999549865724,49.69800186157226,13.885000228881836,-8.892000198364258,-1.406999945640564,44.15549850463867 -9266,2017-07-22 02:00:00,36.02000045776367,11.140999794006348,43.53300094604492,10.883000373840332,-7.708000183105469,0.0,43.05699920654297 -9267,2017-07-22 03:00:00,38.28200149536133,13.402999877929688,46.803001403808594,13.053999900817873,-8.421999931335451,0.0,42.178001403808594 -9268,2017-07-22 04:00:00,37.10900115966797,13.654000282287598,45.08700180053711,13.321999549865724,-7.314000129699707,0.0,41.51850128173828 -9269,2017-07-22 05:00:00,39.790000915527344,13.234999656677244,46.90999984741211,12.78600025177002,-7.7189998626708975,0.0,40.85900115966797 -9270,2017-07-22 06:00:00,35.85300064086914,12.314000129699709,43.37200164794922,12.08899974822998,-7.526999950408935,0.0,40.41999816894531 -9271,2017-07-22 07:00:00,32.250999450683594,11.140999794006348,41.62900161743164,11.741000175476074,-8.720999717712402,-1.2580000162124634,40.85900115966797 -9272,2017-07-22 08:00:00,33.17200088500977,10.470999717712402,41.97800064086914,10.803000450134276,-8.82800006866455,-1.4609999656677246,42.61750030517578 -9273,2017-07-22 09:00:00,40.20899963378906,12.314000129699709,49.18899917602539,12.706000328063965,-8.805999755859375,-1.2899999618530271,45.03450012207031 -9274,2017-07-22 10:00:00,45.23500061035156,14.576000213623049,52.70000076293945,14.368000030517578,-7.4099998474121085,-1.3650000095367432,47.45149993896485 -9275,2017-07-22 11:00:00,45.31800079345703,13.654000282287598,54.30799865722656,13.75100040435791,-8.336999893188478,-1.3650000095367432,50.74700164794922 -9276,2017-07-22 12:00:00,45.56999969482422,12.64900016784668,54.65700149536133,12.84000015258789,-9.541999816894531,-1.524999976158142,52.50500106811523 -9277,2017-07-22 13:00:00,43.81100082397461,12.39799976348877,53.93299865722656,12.812999725341797,-9.734000205993652,-1.524999976158142,53.82350158691406 -9278,2017-07-22 14:00:00,45.73699951171875,12.5649995803833,53.02199935913086,12.62600040435791,-7.868000030517577,-2.4730000495910645,56.2400016784668 -9279,2017-07-22 15:00:00,47.1609992980957,15.246000289916992,55.05899810791016,14.42099952697754,-7.824999809265138,-2.4730000495910645,57.77849960327149 -9280,2017-07-22 16:00:00,46.90999984741211,13.98900032043457,53.85300064086914,13.564000129699709,-7.910999774932861,-1.2580000162124634,56.02050018310547 -9281,2017-07-22 17:00:00,47.07799911499024,14.407999992370604,55.29999923706055,14.234000205993652,-8.11299991607666,-1.2580000162124634,53.82300186157226 -9282,2017-07-22 18:00:00,42.05199813842773,12.5649995803833,49.72499847412109,12.383999824523926,-6.84499979019165,-1.2580000162124634,52.50500106811523 -9283,2017-07-22 19:00:00,44.64799880981445,13.319000244140623,50.74300003051758,12.571999549865724,-5.8959999084472665,0.0,50.96649932861328 -9284,2017-07-22 20:00:00,47.83200073242188,14.156999588012695,53.12900161743164,12.920000076293944,-5.61899995803833,0.0,48.98949813842773 -9285,2017-07-22 21:00:00,49.92599868774414,16.50200080871582,55.67599868774414,15.0649995803833,-4.563000202178955,0.0,47.67100143432617 -9286,2017-07-22 22:00:00,44.39699935913086,13.234999656677244,51.92300033569336,12.678999900817873,-6.9190001487731925,-1.2369999885559082,46.352500915527344 -9287,2017-07-22 23:00:00,45.90499877929688,14.743000030517578,52.40499877929688,13.939000129699709,-6.428999900817871,0.0,45.69300079345703 -9288,2017-07-23 00:00:00,43.30799865722656,13.98900032043457,50.44800186157226,13.993000030517578,-7.538000106811522,-1.4390000104904177,44.81399917602539 -9289,2017-07-23 01:00:00,40.29199981689453,13.56999969482422,48.14300155639648,13.590999603271484,-7.4629998207092285,-1.246999979019165,43.93600082397461 -9290,2017-07-23 02:00:00,41.79999923706055,13.821999549865724,48.89400100708008,13.348999977111816,-7.314000129699707,0.0,43.2765007019043 -9291,2017-07-23 03:00:00,39.37099838256836,12.5649995803833,46.9370002746582,12.437999725341797,-7.367000102996826,-1.22599995136261,42.617000579833984 -9292,2017-07-23 04:00:00,32.501998901367195,11.309000015258787,39.80699920654297,11.178000450134276,-7.25,-1.22599995136261,42.178001403808594 -9293,2017-07-23 05:00:00,36.77399826049805,11.727999687194824,43.74700164794922,11.579999923706056,-6.077000141143799,0.0,41.29899978637695 -9294,2017-07-23 06:00:00,37.52799987792969,12.899999618530272,44.47100067138672,12.517999649047852,-7.196000099182129,0.0,40.85900115966797 -9295,2017-07-23 07:00:00,35.0989990234375,12.5649995803833,42.94300079345703,12.652000427246096,-6.951000213623048,-1.2150000333786009,41.29899978637695 -9296,2017-07-23 08:00:00,35.0989990234375,10.55500030517578,43.26399993896485,10.96399974822998,-8.421999931335451,-1.2580000162124634,43.49649810791016 -9297,2017-07-23 09:00:00,40.79499816894531,12.062999725341797,49.43000030517578,12.383999824523926,-8.27299976348877,-1.2580000162124634,46.352500915527344 -9298,2017-07-23 10:00:00,43.89400100708008,13.319000244140623,53.15599822998047,13.402999877929688,-8.220000267028809,-1.2580000162124634,48.98899841308594 -9299,2017-07-23 11:00:00,46.65900039672852,13.319000244140623,55.64899826049805,13.21500015258789,-9.157999992370604,-1.375,52.28499984741211 -9300,2017-07-23 12:00:00,48.16699981689453,13.487000465393065,58.00799942016602,13.911999702453612,-9.157999992370604,-1.375,53.38399887084961 -9301,2017-07-23 13:00:00,50.00899887084961,14.072999954223633,58.38299942016602,14.126999855041506,-7.942999839782715,-1.375,54.04299926757813 -9302,2017-07-23 14:00:00,47.74800109863281,14.241000175476074,56.02399826049805,14.42099952697754,-9.222000122070312,-1.375,55.80049896240234 -9303,2017-07-23 15:00:00,48.83700180053711,14.994000434875488,56.29199981689453,14.958000183105469,-7.85699987411499,-1.375,56.67950057983398 -9304,2017-07-23 16:00:00,47.41299819946289,14.156999588012695,55.19300079345703,13.993000030517578,-7.985000133514402,-1.375,55.36149978637695 -9305,2017-07-23 17:00:00,46.49100112915039,13.98900032043457,54.01399993896485,13.697999954223633,-6.749000072479247,-1.375,53.60350036621094 -9306,2017-07-23 18:00:00,43.30799865722656,10.805999755859377,51.06499862670898,10.989999771118164,-6.790999889373777,-1.375,52.50500106811523 -9307,2017-07-23 19:00:00,43.97800064086914,12.5649995803833,51.46699905395508,12.303999900817873,-7.026000022888184,-1.375,51.186500549316406 -9308,2017-07-23 20:00:00,48.08300018310547,13.98900032043457,53.36999893188477,12.652000427246096,-4.531000137329102,0.0,49.20899963378906 -9309,2017-07-23 21:00:00,46.49100112915039,13.487000465393065,53.63800048828125,12.920000076293944,-6.22599983215332,0.0,47.67100143432617 -9310,2017-07-23 22:00:00,46.15599822998047,13.821999549865724,53.85300064086914,13.187999725341797,-7.473999977111816,0.0,46.352500915527344 -9311,2017-07-23 23:00:00,47.58000183105469,15.413000106811523,55.03200149536133,14.555999755859377,-7.473999977111816,-1.2790000438690186,45.69300079345703 -9312,2017-07-24 00:00:00,43.55899810791016,14.324000358581545,49.48300170898438,12.678999900817873,-4.882999897003174,0.0,45.03400039672852 -9313,2017-07-24 01:00:00,41.13000106811523,12.815999984741213,48.4379997253418,12.303999900817873,-7.431000232696532,0.0,44.15549850463867 -9314,2017-07-24 02:00:00,40.20899963378906,13.319000244140623,47.3390007019043,12.46500015258789,-6.386000156402588,0.0,43.2765007019043 -9315,2017-07-24 03:00:00,36.27199935913086,11.5600004196167,44.33700180053711,11.526000022888184,-7.570000171661378,-1.3539999723434448,42.397499084472656 -9316,2017-07-24 04:00:00,36.68999862670898,11.979000091552734,44.38999938964844,11.954999923706056,-7.515999794006348,-1.2690000534057615,41.73799896240234 -9317,2017-07-24 05:00:00,34.847000122070305,10.890000343322754,42.48699951171875,11.12399959564209,-7.579999923706055,-1.22599995136261,41.07899856567383 -9318,2017-07-24 06:00:00,36.68999862670898,12.145999908447266,44.310001373291016,12.303999900817873,-6.8979997634887695,-1.2899999618530271,40.63949966430664 -9319,2017-07-24 07:00:00,35.43399810791016,11.979000091552734,43.18399810791016,12.008999824523926,-7.005000114440918,-1.3220000267028809,40.63949966430664 -9320,2017-07-24 08:00:00,33.590999603271484,9.968000411987305,42.83599853515625,10.937000274658203,-8.710000038146973,-1.2150000333786009,42.61750030517578 -9321,2017-07-24 09:00:00,41.04600143432617,14.407999992370604,50.34099960327149,14.715999603271484,-8.593000411987305,-1.2150000333786009,45.25400161743164 -9322,2017-07-24 10:00:00,41.632999420166016,12.64900016784668,51.09199905395508,13.107999801635742,-9.829999923706056,-1.2150000333786009,47.23149871826172 -9323,2017-07-24 11:00:00,43.2239990234375,11.979000091552734,51.387001037597656,12.41100025177002,-8.645999908447267,-1.2150000333786009,50.74700164794922 -9324,2017-07-24 12:00:00,43.72700119018555,11.727999687194824,54.14799880981445,12.437999725341797,-9.79800033569336,-2.494999885559082,53.16450119018555 -9325,2017-07-24 13:00:00,47.32899856567383,14.576000213623049,56.23799896240234,14.958000183105469,-8.581999778747559,-1.866000056266785,54.70199966430664 -9326,2017-07-24 14:00:00,47.66400146484375,14.241000175476074,54.97900009155274,14.072999954223633,-6.0879998207092285,-1.866000056266785,56.240501403808594 -9327,2017-07-24 15:00:00,45.90499877929688,14.994000434875488,56.05099868774414,15.654999732971191,-10.267000198364258,-1.866000056266785,57.55899810791016 -9328,2017-07-24 16:00:00,45.82099914550781,14.407999992370604,54.49599838256836,14.395000457763672,-7.367000102996826,-1.866000056266785,55.80049896240234 -9329,2017-07-24 17:00:00,45.23500061035156,14.156999588012695,54.84500122070313,14.58199977874756,-9.659000396728516,-1.5670000314712524,54.70199966430664 -9330,2017-07-24 18:00:00,43.89400100708008,13.73799991607666,52.29800033569336,13.911999702453612,-9.531000137329102,-1.5570000410079956,53.82350158691406 -9331,2017-07-24 19:00:00,44.14599990844727,13.487000465393065,53.290000915527344,13.616999626159668,-9.083000183105469,-1.5570000410079956,52.06549835205078 -9332,2017-07-24 20:00:00,45.4020004272461,12.480999946594238,53.88000106811523,12.732999801635742,-9.093999862670898,-1.524999976158142,50.52750015258789 -9333,2017-07-24 21:00:00,46.90999984741211,13.487000465393065,56.34600067138672,13.29599952697754,-9.147000312805176,-1.22599995136261,49.20899963378906 -9334,2017-07-24 22:00:00,50.428001403808594,16.670000076293945,56.72100067138672,15.359999656677244,-6.610000133514402,-1.2150000333786009,48.11050033569336 -9335,2017-07-24 23:00:00,45.73699951171875,14.91100025177002,52.64599990844727,13.777999877929688,-6.834000110626223,0.0,47.23149871826172 -9336,2017-07-25 00:00:00,44.64799880981445,15.413000106811523,52.29800033569336,14.6899995803833,-7.953000068664551,0.0,46.352500915527344 -9337,2017-07-25 01:00:00,37.86299896240234,11.644000053405762,46.803001403808594,11.5,-8.380000114440918,0.0,45.25400161743164 -9338,2017-07-25 02:00:00,41.54899978637695,13.487000465393065,48.0359992980957,12.571999549865724,-5.8420000076293945,0.0,44.375 -9339,2017-07-25 03:00:00,38.36600112915039,13.067999839782717,47.41899871826172,13.348999977111816,-8.092000007629395,-1.2790000438690186,43.2765007019043 -9340,2017-07-25 04:00:00,35.85300064086914,11.895000457763672,44.47100067138672,12.277000427246096,-8.081000328063965,-1.4500000476837158,42.617000579833984 -9341,2017-07-25 05:00:00,36.94200134277344,12.64900016784668,44.97999954223633,12.78600025177002,-8.048999786376951,-1.6100000143051147,41.73799896240234 -9342,2017-07-25 06:00:00,35.60100173950195,12.314000129699709,44.73899841308594,12.706000328063965,-9.637999534606934,-1.246999979019165,41.07899856567383 -9343,2017-07-25 07:00:00,37.52799987792969,12.984000205993652,46.749000549316406,13.29599952697754,-8.359000205993652,-1.246999979019165,41.29899978637695 -9344,2017-07-25 08:00:00,38.44900131225586,11.979000091552734,45.2750015258789,11.66100025177002,-6.695000171661378,0.0,43.2765007019043 -9345,2017-07-25 09:00:00,44.73199844360352,15.07800006866455,53.45100021362305,14.824000358581545,-7.921000003814697,-1.2580000162124634,46.571998596191406 -9346,2017-07-25 10:00:00,45.73699951171875,13.98900032043457,53.71900177001953,13.965999603271484,-8.017000198364258,-1.2790000438690186,49.86800003051758 -9347,2017-07-25 11:00:00,47.74800109863281,15.581000328063965,56.7750015258789,15.628000259399414,-9.232999801635742,-1.2790000438690186,53.60350036621094 -9348,2017-07-25 12:00:00,50.512001037597656,15.329999923706056,59.4020004272461,15.305999755859377,-8.869999885559082,-2.494999885559082,55.58100128173828 -9349,2017-07-25 13:00:00,48.584999084472656,14.324000358581545,57.76599884033203,14.340999603271484,-8.859999656677246,-2.494999885559082,56.459999084472656 -9350,2017-07-25 14:00:00,46.99399948120117,12.732999801635742,55.35400009155274,13.053999900817873,-8.869999885559082,-2.494999885559082,55.36100006103516 -9351,2017-07-25 15:00:00,47.58000183105469,14.491999626159668,56.42599868774414,14.770000457763672,-8.859999656677246,-2.494999885559082,53.16450119018555 -9352,2017-07-25 16:00:00,46.40700149536133,13.487000465393065,55.40700149536133,13.75100040435791,-8.859999656677246,-2.494999885559082,54.04299926757813 -9353,2017-07-25 17:00:00,46.071998596191406,13.904999732971191,54.68399810791016,13.965999603271484,-8.805999755859375,-2.494999885559082,53.60350036621094 -9354,2017-07-25 18:00:00,44.229000091552734,14.407999992370604,53.36999893188477,14.42099952697754,-8.805999755859375,-2.494999885559082,52.7244987487793 -9355,2017-07-25 19:00:00,43.81100082397461,12.899999618530272,52.16400146484375,12.84000015258789,-8.581999778747559,-1.5349999666213991,51.40650177001953 -9356,2017-07-25 20:00:00,48.25,14.576000213623049,55.67599868774414,13.616999626159668,-6.109000205993652,0.0,49.86800003051758 -9357,2017-07-25 21:00:00,50.34500122070313,16.586000442504886,57.09600067138672,15.038000106811523,-6.418000221252441,0.0,48.54999923706055 -9358,2017-07-25 22:00:00,47.58000183105469,14.407999992370604,55.81000137329102,13.911999702453612,-7.633999824523926,-1.4390000104904177,47.89099884033203 -9359,2017-07-25 23:00:00,48.50199890136719,15.496999740600586,53.74599838256836,13.939000129699709,-4.926000118255615,0.0,47.012001037597656 -9360,2017-07-26 00:00:00,46.90999984741211,15.664999961853027,55.40700149536133,15.333000183105469,-7.4629998207092285,-1.6100000143051147,46.571998596191406 -9361,2017-07-26 01:00:00,41.632999420166016,12.815999984741213,49.7509994506836,12.84000015258789,-7.4099998474121085,-1.246999979019165,45.69300079345703 -9362,2017-07-26 02:00:00,43.391998291015625,13.98900032043457,50.31399917602539,13.564000129699709,-6.4710001945495605,-1.246999979019165,45.25400161743164 -9363,2017-07-26 03:00:00,38.53300094604492,12.5649995803833,45.67699813842773,12.277000427246096,-6.02400016784668,0.0,44.81399917602539 -9364,2017-07-26 04:00:00,42.05199813842773,14.156999588012695,48.7599983215332,13.482999801635742,-7.282000064849853,0.0,44.375 -9365,2017-07-26 05:00:00,37.946998596191406,12.145999908447266,44.20299911499024,11.607000350952148,-6.045000076293945,0.0,43.49599838256836 -9366,2017-07-26 06:00:00,38.53300094604492,13.402999877929688,47.20500183105469,13.348999977111816,-8.432999610900879,-1.2150000333786009,43.05699920654297 -9367,2017-07-26 07:00:00,33.92599868774414,11.644000053405762,43.61299896240234,12.383999824523926,-8.998000144958496,-1.621000051498413,43.05699920654297 -9368,2017-07-26 08:00:00,37.61199951171875,10.638999938964844,44.20299911499024,10.668999671936035,-6.546000003814697,0.0,43.71599960327149 -9369,2017-07-26 09:00:00,42.88899993896485,12.732999801635742,50.28799819946289,12.732999801635742,-7.910999774932861,-1.2580000162124634,45.25350189208984 -9370,2017-07-26 10:00:00,48.584999084472656,14.324000358581545,55.27299880981445,13.885000228881836,-6.781000137329103,-1.2150000333786009,47.45149993896485 -9371,2017-07-26 11:00:00,53.10900115966797,17.004999160766598,60.125,16.083000183105472,-6.684999942779541,-1.2150000333786009,50.0880012512207 -9372,2017-07-26 12:00:00,53.52799987792969,15.581000328063965,62.18899917602539,15.494000434875488,-9.12600040435791,-2.430999994277954,51.6259994506836 -9373,2017-07-26 13:00:00,52.77399826049805,15.161999702453612,61.0369987487793,14.958000183105469,-7.815000057220459,-2.430999994277954,52.94449996948242 -9374,2017-07-26 14:00:00,48.75299835205078,13.067999839782717,57.20299911499024,13.29599952697754,-9.052000045776367,-2.430999994277954,54.92200088500977 -9375,2017-07-26 15:00:00,51.09799957275391,16.166999816894528,58.97299957275391,15.842000007629396,-7.771999835968018,-2.430999994277954,56.02050018310547 -9376,2017-07-26 16:00:00,51.43399810791016,14.994000434875488,58.40999984741211,14.475000381469728,-7.771999835968018,-2.430999994277954,55.58100128173828 -9377,2017-07-26 17:00:00,44.48099899291992,12.732999801635742,53.290000915527344,12.894000053405762,-7.888999938964844,-2.430999994277954,53.82300186157226 -9378,2017-07-26 18:00:00,45.23500061035156,13.73799991607666,53.69200134277344,13.859000205993652,-9.020000457763672,-2.430999994277954,52.94449996948242 -9379,2017-07-26 19:00:00,47.83200073242188,14.659000396728516,53.90599822998047,13.616999626159668,-6.236999988555907,0.0,51.186500549316406 -9380,2017-07-26 20:00:00,47.41299819946289,13.487000465393065,55.70199966430664,12.678999900817873,-7.888999938964844,0.0,50.0875015258789 -9381,2017-07-26 21:00:00,49.42300033569336,14.576000213623049,56.74800109863281,12.946999549865724,-7.782999992370605,0.0,48.98949813842773 -9382,2017-07-26 22:00:00,49.42300033569336,13.821999549865724,55.03200149536133,12.062999725341797,-6.204999923706055,0.0,48.11050033569336 -9383,2017-07-26 23:00:00,47.74800109863281,15.07800006866455,55.11299896240234,13.644000053405762,-6.951000213623048,0.0,47.89099884033203 -9384,2017-07-27 00:00:00,45.98899841308594,14.324000358581545,53.584999084472656,13.564000129699709,-8.102999687194824,0.0,47.45100021362305 -9385,2017-07-27 01:00:00,45.56999969482422,15.246000289916992,52.24399948120117,13.777999877929688,-7.824999809265138,0.0,47.012001037597656 -9386,2017-07-27 02:00:00,40.20899963378906,12.5649995803833,48.6259994506836,12.196999549865724,-8.411999702453612,0.0,46.571998596191406 -9387,2017-07-27 03:00:00,39.2869987487793,12.5649995803833,45.59700012207031,11.607000350952148,-7.067999839782715,0.0,45.91299819946289 -9388,2017-07-27 04:00:00,39.20299911499024,12.815999984741213,46.6150016784668,12.03600025177002,-7.452000141143799,0.0,45.25350189208984 -9389,2017-07-27 05:00:00,36.35499954223633,12.145999908447266,45.70399856567383,12.303999900817873,-8.880999565124512,-1.2690000534057615,44.59450149536133 -9390,2017-07-27 06:00:00,38.617000579833984,13.067999839782717,47.1510009765625,13.21500015258789,-7.441999912261963,-1.2580000162124634,44.15549850463867 -9391,2017-07-27 07:00:00,39.11999893188477,13.319000244140623,47.178001403808594,13.482999801635742,-7.15399980545044,-1.375,44.15549850463867 -9392,2017-07-27 08:00:00,33.50699996948242,9.800999641418455,42.99599838256836,10.74899959564209,-9.446000099182127,-1.375,44.81449890136719 -9393,2017-07-27 09:00:00,40.54399871826172,12.145999908447266,48.70600128173828,12.46500015258789,-8.156000137329103,-1.375,46.352500915527344 -9394,2017-07-27 10:00:00,41.88399887084961,11.895000457763672,50.34099960327149,12.331000328063965,-8.166999816894531,-1.375,48.33000183105469 -9395,2017-07-27 11:00:00,43.55899810791016,12.5649995803833,52.137001037597656,12.920000076293944,-8.230999946594237,-1.375,51.186500549316406 -9396,2017-07-27 12:00:00,43.14099884033203,11.309000015258787,53.07500076293945,11.982000350952148,-9.48900032043457,-1.375,53.16400146484375 -9397,2017-07-27 13:00:00,43.55899810791016,11.895000457763672,54.25500106811523,12.706000328063965,-10.607999801635742,-2.697000026702881,54.92150115966797 -9398,2017-07-27 14:00:00,49.0880012512207,13.234999656677244,58.303001403808594,13.456000328063965,-9.29699993133545,-2.697000026702881,56.89950180053711 -9399,2017-07-27 15:00:00,46.99399948120117,13.73799991607666,57.49800109863281,14.368000030517578,-10.37399959564209,-2.697000026702881,57.55849838256836 -9400,2017-07-27 16:00:00,49.67399978637695,14.324000358581545,59.2140007019043,14.340999603271484,-8.295000076293945,-2.697000026702881,55.36149978637695 -9401,2017-07-27 17:00:00,46.90999984741211,13.654000282287598,56.50699996948242,14.019000053405762,-9.4350004196167,-1.5460000038146973,54.04299926757813 -9402,2017-07-27 18:00:00,44.81600189208984,12.815999984741213,54.92499923706055,13.29599952697754,-9.4350004196167,-1.503000020980835,53.38399887084961 -9403,2017-07-27 19:00:00,45.06700134277344,12.64900016784668,54.22800064086914,12.894000053405762,-9.12600040435791,-1.503000020980835,52.06549835205078 -9404,2017-07-27 20:00:00,47.915000915527344,13.152000427246096,56.45299911499024,12.760000228881836,-9.114999771118164,-1.503000020980835,51.186500549316406 -9405,2017-07-27 21:00:00,48.08300018310547,12.39799976348877,54.73699951171875,12.116000175476074,-6.7170000076293945,-1.246999979019165,50.30749893188477 -9406,2017-07-27 22:00:00,53.2760009765625,15.07800006866455,56.93500137329102,13.241999626159668,-3.816999912261963,0.0,49.64799880981445 -9407,2017-07-27 23:00:00,50.84700012207031,14.994000434875488,56.96200180053711,14.04599952697754,-5.085000038146973,-1.2790000438690186,49.20899963378906 -9408,2017-07-28 00:00:00,48.66899871826172,14.743000030517578,52.94100189208984,13.187999725341797,-4.90399980545044,0.0,48.54999923706055 -9409,2017-07-28 01:00:00,40.79499816894531,10.805999755859377,48.16999816894531,10.508000373840332,-6.001999855041504,-1.246999979019165,47.67100143432617 -9410,2017-07-28 02:00:00,41.38100051879883,12.314000129699709,51.70800018310547,12.920000076293944,-10.298999786376951,-1.2150000333786009,47.23149871826172 -9411,2017-07-28 03:00:00,38.11399841308594,11.810999870300291,47.82099914550781,12.116000175476074,-8.965999603271484,-1.2369999885559082,46.13299942016602 -9412,2017-07-28 04:00:00,37.946998596191406,10.890000343322754,46.0250015258789,11.33899974822998,-7.547999858856201,-1.3009999990463257,45.25400161743164 -9413,2017-07-28 05:00:00,37.19300079345703,10.722000122070312,44.81900024414063,10.803000450134276,-8.048999786376951,-1.3539999723434448,44.15549850463867 -9414,2017-07-28 06:00:00,35.0989990234375,10.470999717712402,41.81700134277344,10.588000297546388,-6.578000068664551,-1.2369999885559082,43.2765007019043 -9415,2017-07-28 07:00:00,40.79499816894531,13.319000244140623,47.23199844360352,13.027999877929688,-6.802000045776367,0.0,43.05699920654297 -9416,2017-07-28 08:00:00,36.60699844360352,10.55500030517578,44.97999954223633,11.017000198364258,-8.284000396728517,-1.3009999990463257,44.375 -9417,2017-07-28 09:00:00,42.21900177001953,12.899999618530272,51.81600189208984,13.241999626159668,-8.720999717712402,-1.3009999990463257,46.79199981689453 -9418,2017-07-28 10:00:00,43.55899810791016,12.314000129699709,53.77199935913086,12.920000076293944,-9.765999794006348,-1.3009999990463257,49.20899963378906 -9419,2017-07-28 11:00:00,48.25,13.402999877929688,56.61399841308594,13.43000030517578,-8.581999778747559,-1.3009999990463257,52.72499847412109 -9420,2017-07-28 12:00:00,51.34999847412109,14.407999992370604,60.76900100708008,14.42099952697754,-9.776000022888184,-1.5570000410079956,54.48249816894531 -9421,2017-07-28 13:00:00,48.83700180053711,13.152000427246096,59.13299942016602,13.510000228881836,-9.381999969482422,-1.8229999542236328,55.36149978637695 -9422,2017-07-28 14:00:00,47.41299819946289,12.64900016784668,58.70500183105469,13.161999702453612,-10.468999862670898,-1.8229999542236328,57.99800109863281 -9423,2017-07-28 15:00:00,44.983001708984375,12.732999801635742,55.67599868774414,13.161999702453612,-9.786999702453612,-1.6419999599456787,58.87699890136719 -9424,2017-07-28 16:00:00,48.41799926757813,14.324000358581545,57.31100082397461,14.286999702453612,-9.307000160217283,-1.6419999599456787,56.67950057983398 -9425,2017-07-28 17:00:00,44.73199844360352,12.480999946594238,55.38100051879883,13.161999702453612,-10.68299961090088,-1.6419999599456787,54.70199966430664 -9426,2017-07-28 18:00:00,47.41299819946289,13.234999656677244,54.71099853515625,12.946999549865724,-8.220000267028809,-1.2790000438690186,53.16400146484375 -9427,2017-07-28 19:00:00,44.14599990844727,12.145999908447266,53.07500076293945,12.517999649047852,-7.782999992370605,-2.569000005722046,51.84600067138672 -9428,2017-07-28 20:00:00,49.00400161743164,13.654000282287598,55.43399810791016,12.62600040435791,-6.236999988555907,0.0,50.5270004272461 -9429,2017-07-28 21:00:00,50.68000030517578,13.821999549865724,57.76599884033203,12.760000228881836,-7.367000102996826,0.0,49.64799880981445 -9430,2017-07-28 22:00:00,47.32899856567383,13.654000282287598,55.29999923706055,12.383999824523926,-8.571999549865723,0.0,48.98949813842773 -9431,2017-07-28 23:00:00,48.16699981689453,15.329999923706056,56.64099884033203,14.20699977874756,-6.9730000495910645,0.0,47.89099884033203 -9432,2017-07-29 00:00:00,47.49599838256836,15.581000328063965,55.56800079345703,14.286999702453612,-7.260000228881836,0.0,47.67100143432617 -9433,2017-07-29 01:00:00,44.900001525878906,14.407999992370604,52.61999893188477,13.21500015258789,-8.208999633789062,0.0,46.79199981689453 -9434,2017-07-29 02:00:00,41.13000106811523,11.810999870300291,48.09000015258789,11.178000450134276,-7.985000133514402,0.0,46.352500915527344 -9435,2017-07-29 03:00:00,43.81100082397461,14.407999992370604,50.47499847412109,13.21500015258789,-6.311999797821045,0.0,45.69300079345703 -9436,2017-07-29 04:00:00,40.79499816894531,13.234999656677244,48.84000015258789,12.437999725341797,-7.302999973297119,0.0,45.03400039672852 -9437,2017-07-29 05:00:00,38.86800003051758,11.47599983215332,45.8380012512207,11.312000274658203,-7.046999931335449,0.0,44.15549850463867 -9438,2017-07-29 06:00:00,35.26599884033203,10.973999977111816,43.88100051879883,11.12399959564209,-8.220000267028809,-1.3109999895095823,43.2765007019043 -9439,2017-07-29 07:00:00,38.78499984741211,13.402999877929688,46.2400016784668,12.598999977111816,-6.982999801635742,0.0,43.2765007019043 -9440,2017-07-29 08:00:00,35.76900100708008,11.140999794006348,43.479000091552734,11.043999671936035,-8.63599967956543,0.0,43.71599960327149 -9441,2017-07-29 09:00:00,42.47000122070313,13.402999877929688,51.27899932861328,13.187999725341797,-7.473999977111816,-1.6950000524520874,45.25350189208984 -9442,2017-07-29 10:00:00,46.071998596191406,13.73799991607666,54.28200149536133,13.644000053405762,-8.710000038146973,-1.6950000524520874,47.23149871826172 -9443,2017-07-29 11:00:00,20.27199935913086,7.789999961853027,30.82699966430664,9.515999794006348,-9.871999740600586,-1.843999981880188,49.64799880981445 -9444,2017-07-29 12:00:00,19.768999099731445,6.198999881744385,29.540000915527344,8.069000244140625,-8.593000411987305,-1.843999981880188,50.74700164794922 -9445,2017-07-29 13:00:00,49.25600051879883,12.314000129699709,56.98899841308594,12.437999725341797,-8.539999961853027,-1.843999981880188,52.28549957275391 -9446,2017-07-29 14:00:00,49.17200088500977,13.56999969482422,57.5250015258789,13.725000381469728,-8.486000061035156,-1.843999981880188,53.60400009155274 -9447,2017-07-29 15:00:00,50.84700012207031,15.413000106811523,58.54399871826172,15.01099967956543,-7.270999908447266,-1.843999981880188,53.16450119018555 -9448,2017-07-29 16:00:00,46.071998596191406,12.899999618530272,55.81000137329102,13.027999877929688,-9.413999557495115,-1.843999981880188,52.50500106811523 -9449,2017-07-29 17:00:00,46.32400131225586,13.487000465393065,55.56800079345703,13.644000053405762,-8.135000228881836,-1.843999981880188,51.6259994506836 -9450,2017-07-29 18:00:00,45.31800079345703,13.402999877929688,54.46900177001953,13.590999603271484,-8.61400032043457,-1.843999981880188,50.74700164794922 -9451,2017-07-29 19:00:00,37.19300079345703,10.638999938964844,45.89099884033203,11.204999923706056,-8.550000190734862,-1.843999981880188,47.89099884033203 -9452,2017-07-29 20:00:00,40.54399871826172,11.810999870300291,47.1510009765625,11.258000373840332,-6.204999923706055,0.0,45.91299819946289 -9453,2017-07-29 21:00:00,45.1510009765625,13.402999877929688,51.65499877929688,12.491000175476074,-6.929999828338622,0.0,44.375 -9454,2017-07-29 22:00:00,44.229000091552734,12.732999801635742,52.35200119018555,12.331000328063965,-8.145000457763674,0.0,43.49599838256836 -9455,2017-07-29 23:00:00,44.39699935913086,13.56999969482422,52.67300033569336,13.21500015258789,-7.644000053405763,-1.2790000438690186,43.05699920654297 -9456,2017-07-30 00:00:00,45.1510009765625,14.241000175476074,52.40499877929688,13.241999626159668,-6.056000232696532,0.0,42.617000579833984 -9457,2017-07-30 01:00:00,38.95199966430664,10.470999717712402,45.38199996948242,9.94499969482422,-5.554999828338623,0.0,42.178001403808594 -9458,2017-07-30 02:00:00,39.45500183105469,12.815999984741213,47.3390007019043,12.277000427246096,-8.156000137329103,0.0,41.73799896240234 -9459,2017-07-30 03:00:00,40.04100036621094,13.067999839782717,46.83000183105469,12.170000076293944,-6.493000030517577,0.0,41.51850128173828 -9460,2017-07-30 04:00:00,37.36100006103516,11.140999794006348,43.66699981689453,10.642000198364258,-6.73799991607666,0.0,41.29899978637695 -9461,2017-07-30 05:00:00,37.86299896240234,11.225000381469728,44.33700180053711,11.258000373840332,-5.639999866485598,-1.375,40.85900115966797 -9462,2017-07-30 06:00:00,37.946998596191406,11.392000198364258,42.86199951171875,10.90999984741211,-4.9790000915527335,0.0,40.41999816894531 -9463,2017-07-30 07:00:00,39.45500183105469,12.5649995803833,45.38199996948242,12.357000350952148,-6.418000221252441,0.0,40.41999816894531 -9464,2017-07-30 08:00:00,34.763999938964844,9.968000411987305,43.26399993896485,10.105999946594238,-8.135000228881836,-1.2580000162124634,41.29899978637695 -9465,2017-07-30 09:00:00,39.95700073242188,11.644000053405762,49.10800170898438,12.357000350952148,-8.081000328063965,-1.2580000162124634,43.05649948120117 -9466,2017-07-30 10:00:00,42.47000122070313,12.145999908447266,50.95800018310547,12.357000350952148,-9.317999839782717,-1.493000030517578,44.375 -9467,2017-07-30 11:00:00,42.303001403808594,12.64900016784668,52.96799850463867,13.241999626159668,-9.29699993133545,-1.493000030517578,45.03400039672852 -9468,2017-07-30 12:00:00,40.71099853515625,10.13599967956543,50.87699890136719,11.071000099182127,-9.211000442504885,-1.493000030517578,43.05699920654297 -9469,2017-07-30 13:00:00,44.64799880981445,11.057000160217283,51.81600189208984,11.151000022888184,-7.847000122070312,-1.493000030517578,47.01150131225586 -9470,2017-07-30 14:00:00,47.58000183105469,13.402999877929688,55.54199981689453,13.37600040435791,-7.739999771118164,-1.406999945640564,48.33000183105469 -9471,2017-07-30 15:00:00,42.05199813842773,12.899999618530272,49.3489990234375,12.894000053405762,-7.623000144958496,-1.406999945640564,43.05699920654297 -9472,2017-07-30 16:00:00,45.23500061035156,13.98900032043457,52.40499877929688,13.644000053405762,-7.570000171661378,-1.503000020980835,43.49649810791016 -9473,2017-07-30 17:00:00,39.11999893188477,10.38700008392334,48.2770004272461,11.043999671936035,-8.741999626159668,-1.2150000333786009,43.49649810791016 -9474,2017-07-30 18:00:00,38.198001861572266,10.55500030517578,47.6609992980957,11.579999923706056,-9.819000244140623,-2.5160000324249268,40.41999816894531 -9475,2017-07-30 19:00:00,39.37099838256836,11.392000198364258,46.6150016784668,11.258000373840332,-6.9619998931884775,-1.3009999990463257,39.98049926757813 -9476,2017-07-30 20:00:00,40.125,10.638999938964844,48.49200057983398,11.071000099182127,-7.974999904632567,-1.2580000162124634,39.98049926757813 -9477,2017-07-30 21:00:00,40.29199981689453,10.722000122070312,48.196998596191406,10.614999771118164,-7.633999824523926,-1.2369999885559082,39.98049926757813 -9478,2017-07-30 22:00:00,42.97299957275391,13.067999839782717,49.40299987792969,12.196999549865724,-7.228000164031982,0.0,39.97999954223633 -9479,2017-07-30 23:00:00,40.87900161743164,12.899999618530272,47.01699829101562,12.760000228881836,-4.989999771118164,0.0,39.97999954223633 -9480,2017-07-31 00:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9481,2017-07-31 01:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9482,2017-07-31 02:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9483,2017-07-31 03:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9484,2017-07-31 04:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9485,2017-07-31 05:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9486,2017-07-31 06:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9487,2017-07-31 07:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9488,2017-07-31 08:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9489,2017-07-31 09:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9490,2017-07-31 10:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9491,2017-07-31 11:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9492,2017-07-31 12:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9493,2017-07-31 13:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9494,2017-07-31 14:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9495,2017-07-31 15:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9496,2017-07-31 16:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9497,2017-07-31 17:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9498,2017-07-31 18:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9499,2017-07-31 19:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9500,2017-07-31 20:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9501,2017-07-31 21:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9502,2017-07-31 22:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9503,2017-07-31 23:00:00,39.45500183105469,12.229999542236328,46.66899871826172,11.553000450134276,-7.314000129699707,0.0,39.97999954223633 -9504,2017-08-01 00:00:00,37.277000427246094,9.800999641418455,46.07899856567383,10.37399959564209,-9.168999671936035,-1.2690000534057615,41.73799896240234 -9505,2017-08-01 01:00:00,38.95199966430664,12.062999725341797,46.50799942016602,11.66100025177002,-7.6020002365112305,0.0,41.73799896240234 -9506,2017-08-01 02:00:00,31.2450008392334,9.550000190734863,39.67300033569336,10.024999618530272,-8.336999893188478,-1.3329999446868896,41.29899978637695 -9507,2017-08-01 03:00:00,33.757999420166016,10.38700008392334,43.61299896240234,11.33899974822998,-9.253999710083008,-1.662999987602234,40.85900115966797 -9508,2017-08-01 04:00:00,38.617000579833984,13.56999969482422,44.47100067138672,12.331000328063965,-6.077000141143799,0.0,40.41999816894531 -9509,2017-08-01 05:00:00,35.85300064086914,12.145999908447266,43.479000091552734,11.902000427246096,-7.729000091552732,0.0,39.97999954223633 -9510,2017-08-01 06:00:00,35.0989990234375,12.5649995803833,43.37200164794922,12.706000328063965,-6.705999851226808,-1.2369999885559082,39.54100036621094 -9511,2017-08-01 07:00:00,35.85300064086914,13.402999877929688,42.88899993896485,12.894000053405762,-6.9730000495910645,0.0,39.54100036621094 -9512,2017-08-01 08:00:00,32.333999633789055,9.633000373840332,40.87900161743164,10.37399959564209,-8.550000190734862,-1.2369999885559082,39.760501861572266 -9513,2017-08-01 09:00:00,35.182998657226555,10.638999938964844,44.55099868774414,11.472999572753904,-9.402999877929688,-1.5889999866485596,39.760501861572266 -9514,2017-08-01 10:00:00,36.52299880981445,10.973999977111816,45.91799926757813,11.5,-8.625,-1.5889999866485596,39.760501861572266 -9515,2017-08-01 11:00:00,36.104000091552734,10.052000045776367,46.85599899291992,11.178000450134276,-10.52299976348877,-1.5889999866485596,40.63949966430664 -9516,2017-08-01 12:00:00,41.54899978637695,11.727999687194824,50.66299819946289,12.222999572753904,-8.262999534606934,-1.5889999866485596,41.51850128173828 -9517,2017-08-01 13:00:00,42.05199813842773,13.234999656677244,52.99499893188477,13.939000129699709,-10.427000045776367,-1.5889999866485596,42.61750030517578 -9518,2017-08-01 14:00:00,40.62699890136719,12.39799976348877,50.12699890136719,12.920000076293944,-8.517999649047853,-1.5889999866485596,42.61750030517578 -9519,2017-08-01 15:00:00,36.1879997253418,11.057000160217283,46.45399856567383,12.116000175476074,-10.939000129699709,-1.5889999866485596,39.54100036621094 -9520,2017-08-01 16:00:00,37.86299896240234,12.815999984741213,48.91999816894531,13.644000053405762,-10.928000450134276,-1.5889999866485596,38.00299835205078 -9521,2017-08-01 17:00:00,36.35499954223633,10.805999755859377,45.89099884033203,11.5,-8.390999794006348,-1.5889999866485596,38.22249984741211 -9522,2017-08-01 18:00:00,33.757999420166016,10.220000267028809,44.28300094604492,11.526000022888184,-10.543999671936035,-1.621000051498413,38.66249847412109 -9523,2017-08-01 19:00:00,34.09400177001953,10.38700008392334,44.17599868774414,11.392000198364258,-10.234999656677246,-1.621000051498413,38.22249984741211 -9524,2017-08-01 20:00:00,39.11999893188477,11.810999870300291,43.77399826049805,9.91800022125244,-5.10699987411499,0.0,37.78350067138672 -9525,2017-08-01 21:00:00,39.11999893188477,11.309000015258787,44.28300094604492,9.972000122070312,-4.818999767303467,0.0,37.5634994506836 -9526,2017-08-01 22:00:00,36.858001708984375,11.895000457763672,45.30199813842773,11.66100025177002,-8.465000152587889,0.0,37.34349822998047 -9527,2017-08-01 23:00:00,35.85300064086914,11.644000053405762,45.73099899291992,12.25,-8.934000015258789,-1.524999976158142,37.124000549316406 -9528,2017-08-02 00:00:00,35.518001556396484,11.225000381469728,43.82699966430664,11.71399974822998,-8.98799991607666,-1.22599995136261,37.124000549316406 -9529,2017-08-02 01:00:00,35.26599884033203,11.309000015258787,45.11399841308594,12.03600025177002,-8.923999786376953,-1.843999981880188,37.124000549316406 -9530,2017-08-02 02:00:00,32.250999450683594,10.470999717712402,41.92399978637695,11.28499984741211,-8.805999755859375,-1.715999960899353,33.82849884033203 -9531,2017-08-02 03:00:00,33.674999237060554,10.38700008392334,40.28900146484375,10.722000122070312,-6.876999855041504,-1.715999960899353,34.267501831054695 -9532,2017-08-02 04:00:00,33.25600051879883,11.225000381469728,42.48699951171875,12.142999649047852,-10.586999893188477,-1.715999960899353,34.92699813842773 -9533,2017-08-02 05:00:00,27.97900009155273,8.543999671936035,39.29700088500977,10.07900047302246,-10.821000099182127,-1.2790000438690186,35.146499633789055 -9534,2017-08-02 06:00:00,33.674999237060554,11.309000015258787,42.40700149536133,12.008999824523926,-7.270999908447266,-1.4500000476837158,34.268001556396484 -9535,2017-08-02 07:00:00,33.42300033569336,11.309000015258787,41.52199935913086,11.875,-7.538000106811522,-1.2690000534057615,34.267501831054695 -9536,2017-08-02 08:00:00,26.88999938964844,7.958000183105469,36.64300155639648,9.006999969482422,-10.031999588012695,-1.2690000534057615,32.72949981689453 -9537,2017-08-02 09:00:00,34.09400177001953,11.810999870300291,42.80899810791016,12.760000228881836,-7.888999938964844,-1.2690000534057615,33.388500213623054 -9538,2017-08-02 10:00:00,34.59600067138672,9.465999603271484,43.23799896240234,10.347000122070312,-8.432999610900879,-1.2690000534057615,32.5099983215332 -9539,2017-08-02 11:00:00,32.250999450683594,8.711999893188478,43.02299880981445,10.052000045776367,-10.83199977874756,-2.494999885559082,33.16899871826172 -9540,2017-08-02 12:00:00,33.50699996948242,8.628000259399414,44.76599884033203,10.213000297546388,-10.843000411987305,-2.494999885559082,35.58549880981445 -9541,2017-08-02 13:00:00,36.94200134277344,10.890000343322754,46.53499984741211,11.526000022888184,-8.763999938964844,-1.7380000352859497,37.34349822998047 -9542,2017-08-02 14:00:00,34.68000030517578,9.968000411987305,45.62300109863281,11.071000099182127,-9.979000091552734,-1.7380000352859497,37.34349822998047 -9543,2017-08-02 15:00:00,36.52299880981445,10.638999938964844,47.84799957275391,11.687000274658203,-10.416000366210938,-1.7380000352859497,35.146499633789055 -9544,2017-08-02 16:00:00,37.69599914550781,10.38700008392334,46.50799942016602,11.071000099182127,-8.689000129699707,-1.5779999494552612,35.36600112915039 -9545,2017-08-02 17:00:00,38.198001861572266,10.638999938964844,47.79499816894531,11.607000350952148,-8.817000389099121,-1.7059999704360962,36.464500427246094 -9546,2017-08-02 18:00:00,36.27199935913086,9.465999603271484,46.4010009765625,10.722000122070312,-9.914999961853027,-1.7059999704360962,37.34349822998047 -9547,2017-08-02 19:00:00,35.0989990234375,7.958000183105469,44.52399826049805,9.11400032043457,-9.265000343322754,-1.5670000314712524,37.5634994506836 -9548,2017-08-02 20:00:00,30.90999984741211,6.533999919891357,42.54100036621094,8.336999893188478,-10.640000343322754,-2.7929999828338623,37.78300094604492 -9549,2017-08-02 21:00:00,31.916000366210927,6.953000068664551,42.70199966430664,8.550999641418457,-10.607999801635742,-2.7929999828338623,38.00299835205078 -9550,2017-08-02 22:00:00,37.86299896240234,10.55500030517578,45.94499969482422,11.151000022888184,-8.060000419616701,-2.7929999828338623,38.00299835205078 -9551,2017-08-02 23:00:00,31.496999740600582,8.376999855041504,42.13899993896485,9.729999542236328,-10.746999740600586,-2.7929999828338623,38.00299835205078 -9552,2017-08-03 00:00:00,33.25600051879883,9.465999603271484,44.33700180053711,11.043999671936035,-10.756999969482422,-2.7929999828338623,38.00299835205078 -9553,2017-08-03 01:00:00,26.80599975585937,6.533999919891357,38.0369987487793,8.444000244140625,-10.83199977874756,-2.7929999828338623,37.78300094604492 -9554,2017-08-03 02:00:00,26.55400085449219,6.198999881744385,37.87699890136719,8.310000419616701,-11.003000259399414,-2.7929999828338623,37.124000549316406 -9555,2017-08-03 03:00:00,26.47100067138672,7.454999923706055,37.98400115966797,9.409000396728516,-11.152000427246094,-2.0360000133514404,36.46500015258789 -9556,2017-08-03 04:00:00,27.726999282836918,7.454999923706055,37.39400100708008,9.16800022125244,-8.753000259399414,-2.0360000133514404,36.025001525878906 -9557,2017-08-03 05:00:00,25.88400077819824,7.958000183105469,37.98400115966797,9.91800022125244,-11.289999961853027,-2.003999948501587,35.145999908447266 -9558,2017-08-03 06:00:00,29.65399932861328,8.125,36.617000579833984,8.685000419616701,-7.515999794006348,-2.003999948501587,35.80550003051758 -9559,2017-08-03 07:00:00,30.57500076293945,8.628000259399414,39.45800018310547,9.381999969482422,-8.869999885559082,-1.5570000410079956,36.24499893188477 -9560,2017-08-03 08:00:00,27.559999465942383,7.119999885559082,37.367000579833984,8.470999717712402,-8.753000259399414,-1.4500000476837158,37.124000549316406 -9561,2017-08-03 09:00:00,34.68000030517578,10.638999938964844,44.97999954223633,11.795000076293944,-9.744000434875488,-1.493000030517578,37.78350067138672 -9562,2017-08-03 10:00:00,35.26599884033203,9.130999565124512,45.30199813842773,10.213000297546388,-9.734000205993652,-1.343000054359436,39.32149887084961 -9563,2017-08-03 11:00:00,35.85300064086914,10.303000450134276,46.29399871826172,11.12399959564209,-9.734000205993652,-1.343000054359436,40.41949844360352 -9564,2017-08-03 12:00:00,39.53799819946289,11.644000053405762,50.39500045776367,12.62600040435791,-9.755000114440918,-2.5910000801086426,41.95800018310547 -9565,2017-08-03 13:00:00,40.71099853515625,12.314000129699709,51.36000061035156,13.027999877929688,-10.960000038146973,-2.5910000801086426,43.93550109863281 -9566,2017-08-03 14:00:00,36.68999862670898,10.805999755859377,48.11600112915039,11.928999900817873,-11.012999534606934,-2.5910000801086426,45.69350051879883 -9567,2017-08-03 15:00:00,40.54399871826172,12.5649995803833,50.36800003051758,13.135000228881836,-9.659000396728516,-2.8570001125335693,46.352500915527344 -9568,2017-08-03 16:00:00,37.19300079345703,10.13599967956543,46.2130012512207,10.776000022888184,-9.722999572753906,-1.8229999542236328,45.91299819946289 -9569,2017-08-03 17:00:00,37.025001525878906,9.800999641418455,46.4010009765625,10.803000450134276,-8.496999740600586,-1.5570000410079956,44.15549850463867 -9570,2017-08-03 18:00:00,35.43399810791016,10.052000045776367,45.48899841308594,11.418999671936035,-9.734000205993652,-1.5670000314712524,43.2765007019043 -9571,2017-08-03 19:00:00,32.417999267578125,7.874000072479247,42.21900177001953,9.16800022125244,-9.734000205993652,-1.5670000314712524,42.178001403808594 -9572,2017-08-03 20:00:00,31.832000732421875,6.449999809265138,38.70800018310547,7.23799991607666,-7.185999870300293,-1.5670000314712524,41.51850128173828 -9573,2017-08-03 21:00:00,39.11999893188477,9.717000007629396,45.35499954223633,9.99899959564209,-6.077000141143799,-1.5460000038146973,40.63949966430664 -9574,2017-08-03 22:00:00,41.46500015258789,12.229999542236328,47.92900085449219,11.71399974822998,-7.291999816894531,0.0,40.20000076293945 -9575,2017-08-03 23:00:00,37.19300079345703,10.722000122070312,43.39899826049805,10.855999946594238,-7.14300012588501,-1.3329999446868896,39.760501861572266 -9576,2017-08-04 00:00:00,34.512001037597656,8.795999526977539,42.54100036621094,9.54300022125244,-8.359000205993652,-1.4819999933242798,39.32149887084961 -9577,2017-08-04 01:00:00,31.916000366210927,9.381999969482422,41.30799865722656,10.239999771118164,-8.359000205993652,-1.2899999618530271,39.10200119018555 -9578,2017-08-04 02:00:00,30.743000030517567,8.208999633789062,39.32400131225586,8.73900032043457,-8.347999572753906,-1.662999987602234,39.10200119018555 -9579,2017-08-04 03:00:00,31.916000366210927,9.381999969482422,40.66400146484375,10.29300022125244,-8.359000205993652,-1.662999987602234,38.88199996948242 -9580,2017-08-04 04:00:00,28.39699935913086,8.963000297546387,38.46599960327149,10.29300022125244,-10.628999710083008,-1.662999987602234,38.44250106811523 -9581,2017-08-04 05:00:00,25.1299991607666,6.2829999923706055,35.35699844360352,7.827000141143799,-10.767999649047852,-1.662999987602234,38.44250106811523 -9582,2017-08-04 06:00:00,29.65399932861328,9.800999641418455,39.59199905395508,10.829999923706056,-9.531000137329102,-1.7910000085830688,38.22299957275391 -9583,2017-08-04 07:00:00,32.333999633789055,10.052000045776367,41.415000915527344,10.74899959564209,-8.336999893188478,-1.7269999980926514,38.44250106811523 -9584,2017-08-04 08:00:00,31.58099937438965,9.381999969482422,38.65399932861328,9.515999794006348,-6.9190001487731925,0.0,39.760501861572266 -9585,2017-08-04 09:00:00,38.03099822998047,12.64900016784668,47.44599914550781,13.348999977111816,-9.317999839782717,-1.4500000476837158,41.73849868774414 -9586,2017-08-04 10:00:00,38.53300094604492,10.722000122070312,48.6259994506836,11.472999572753904,-9.317999839782717,-1.4500000476837158,44.15549850463867 -9587,2017-08-04 11:00:00,41.632999420166016,11.47599983215332,50.87699890136719,12.142999649047852,-9.48900032043457,-1.4500000476837158,47.45100021362305 -9588,2017-08-04 12:00:00,44.0620002746582,12.145999908447266,53.47700119018555,12.491000175476074,-9.28600025177002,-1.4500000476837158,49.20899963378906 -9589,2017-08-04 13:00:00,43.05699920654297,11.727999687194824,52.43199920654297,12.03600025177002,-9.274999618530272,-1.4500000476837158,50.30749893188477 -9590,2017-08-04 14:00:00,44.39699935913086,13.821999549865724,54.334999084472656,13.993000030517578,-9.265000343322754,-1.4500000476837158,51.40650177001953 -9591,2017-08-04 15:00:00,40.04100036621094,11.727999687194824,49.56399917602539,12.383999824523926,-9.243000030517578,-1.4500000476837158,52.06549835205078 -9592,2017-08-04 16:00:00,39.95700073242188,9.968000411987305,48.91999816894531,10.508000373840332,-9.48900032043457,-1.3009999990463257,51.6259994506836 -9593,2017-08-04 17:00:00,41.2140007019043,10.55500030517578,49.7509994506836,11.043999671936035,-8.295000076293945,-1.3009999990463257,50.0880012512207 -9594,2017-08-04 18:00:00,40.71099853515625,11.392000198364258,49.69800186157226,12.25,-8.241000175476074,-1.4709999561309814,48.98949813842773 -9595,2017-08-04 19:00:00,41.46500015258789,11.644000053405762,49.24200057983398,11.366000175476074,-6.940999984741211,-1.3109999895095823,47.67100143432617 -9596,2017-08-04 20:00:00,43.72700119018555,11.5600004196167,51.01100158691406,11.017000198364258,-7.037000179290772,0.0,46.352500915527344 -9597,2017-08-04 21:00:00,42.97299957275391,11.895000457763672,51.84199905395508,11.821000099182127,-8.880999565124512,-1.524999976158142,45.25400161743164 -9598,2017-08-04 22:00:00,45.98899841308594,15.246000289916992,52.80699920654297,13.859000205993652,-6.269000053405763,0.0,44.375 -9599,2017-08-04 23:00:00,43.05699920654297,13.56999969482422,51.22600173950195,12.678999900817873,-8.092000007629395,0.0,43.71599960327149 -9600,2017-08-05 00:00:00,34.429000854492195,8.795999526977539,41.709999084472656,8.550999641418457,-7.164000034332275,0.0,43.05699920654297 -9601,2017-08-05 01:00:00,32.501998901367195,9.717000007629396,39.83300018310547,9.91800022125244,-7.377999782562256,0.0,42.617000579833984 -9602,2017-08-05 02:00:00,28.565000534057607,7.874000072479247,38.70800018310547,8.873000144958496,-8.668000221252441,-1.4179999828338623,41.95800018310547 -9603,2017-08-05 03:00:00,34.261001586914055,10.470999717712402,43.90800094604492,10.480999946594238,-8.82800006866455,0.0,41.29899978637695 -9604,2017-08-05 04:00:00,32.669998168945305,9.633000373840332,42.75500106811523,10.45400047302246,-8.913000106811523,-1.3860000371932983,40.63949966430664 -9605,2017-08-05 05:00:00,36.02000045776367,12.732999801635742,43.80099868774414,12.357000350952148,-7.111000061035156,0.0,40.20000076293945 -9606,2017-08-05 06:00:00,36.27199935913086,11.895000457763672,43.66699981689453,11.928999900817873,-7.164000034332275,-1.5779999494552612,39.97999954223633 -9607,2017-08-05 07:00:00,34.512001037597656,11.727999687194824,43.42499923706055,11.875,-8.411999702453612,-1.4290000200271606,40.20000076293945 -9608,2017-08-05 08:00:00,33.088001251220696,9.465999603271484,42.78200149536133,10.185999870300291,-8.47599983215332,-1.3009999990463257,41.07899856567383 -9609,2017-08-05 09:00:00,37.36100006103516,10.38700008392334,46.9640007019043,11.151000022888184,-9.64900016784668,-1.3009999990463257,43.05649948120117 -9610,2017-08-05 10:00:00,44.39699935913086,13.487000465393065,53.74599838256836,13.697999954223633,-8.295000076293945,-1.3009999990463257,45.69350051879883 -9611,2017-08-05 11:00:00,44.900001525878906,12.899999618530272,54.06700134277344,13.027999877929688,-8.199000358581543,-1.3009999990463257,48.77000045776367 -9612,2017-08-05 12:00:00,43.55899810791016,10.38700008392334,54.22800064086914,11.28499984741211,-10.692999839782717,-2.5480000972747803,49.64849853515625 -9613,2017-08-05 13:00:00,45.65399932861328,12.480999946594238,55.62200164794922,12.866999626159668,-9.45699977874756,-2.5480000972747803,51.40599822998047 -9614,2017-08-05 14:00:00,45.31800079345703,13.152000427246096,55.54199981689453,13.564000129699709,-9.48900032043457,-2.5480000972747803,53.38399887084961 -9615,2017-08-05 15:00:00,43.05699920654297,13.402999877929688,54.30799865722656,14.072999954223633,-10.70400047302246,-1.621000051498413,50.30749893188477 -9616,2017-08-05 16:00:00,43.2239990234375,12.39799976348877,52.21799850463867,12.517999649047852,-9.531000137329102,-1.621000051498413,50.0880012512207 -9617,2017-08-05 17:00:00,43.30799865722656,12.815999984741213,53.02199935913086,12.894000053405762,-9.585000038146973,-1.621000051498413,50.30749893188477 -9618,2017-08-05 18:00:00,39.70600128173828,11.979000091552734,51.17200088500977,12.920000076293944,-10.939000129699709,-1.621000051498413,49.42850112915039 -9619,2017-08-05 19:00:00,39.70600128173828,10.38700008392334,48.67900085449219,10.53499984741211,-9.713000297546388,-1.621000051498413,48.33000183105469 -9620,2017-08-05 20:00:00,46.49100112915039,12.5649995803833,53.15599822998047,11.741000175476074,-7.206999778747559,0.0,47.012001037597656 -9621,2017-08-05 21:00:00,44.73199844360352,12.145999908447266,53.23600006103516,11.66100025177002,-8.380000114440918,0.0,45.91299819946289 -9622,2017-08-05 22:00:00,47.24499893188477,15.246000289916992,54.65700149536133,13.885000228881836,-7.111000061035156,0.0,44.81399917602539 -9623,2017-08-05 23:00:00,41.04600143432617,12.5649995803833,49.67100143432617,12.383999824523926,-8.77400016784668,-1.246999979019165,44.15549850463867 -9624,2017-08-06 00:00:00,40.29199981689453,11.727999687194824,47.178001403808594,10.560999870300291,-6.289999961853027,0.0,43.71599960327149 -9625,2017-08-06 01:00:00,42.88899993896485,13.56999969482422,49.56399917602539,12.545000076293944,-6.418000221252441,0.0,43.2765007019043 -9626,2017-08-06 02:00:00,37.36100006103516,11.644000053405762,45.8650016784668,11.553000450134276,-9.062000274658203,-1.3109999895095823,42.397499084472656 -9627,2017-08-06 03:00:00,35.93600082397461,12.145999908447266,44.20299911499024,11.71399974822998,-7.847000122070312,0.0,41.95800018310547 -9628,2017-08-06 04:00:00,29.82099914550781,8.543999671936035,38.573001861572266,8.444000244140625,-9.265000343322754,0.0,41.51850128173828 -9629,2017-08-06 05:00:00,32.16699981689453,9.465999603271484,42.459999084472656,10.31999969482422,-10.586999893188477,-2.174999952316284,41.07899856567383 -9630,2017-08-06 06:00:00,33.25600051879883,10.303000450134276,43.69300079345703,11.33899974822998,-9.70199966430664,-1.5889999866485596,40.63949966430664 -9631,2017-08-06 07:00:00,33.590999603271484,11.309000015258787,43.21099853515625,11.954999923706056,-9.541999816894531,-1.5889999866485596,40.63949966430664 -9632,2017-08-06 08:00:00,33.34000015258789,8.711999893188478,42.38000106811523,9.595999717712402,-9.574000358581545,-1.3109999895095823,41.51850128173828 -9633,2017-08-06 09:00:00,37.946998596191406,9.800999641418455,47.44599914550781,10.53499984741211,-9.510000228881836,-1.4500000476837158,43.71599960327149 -9634,2017-08-06 10:00:00,43.14099884033203,11.392000198364258,50.90399932861328,11.553000450134276,-8.295000076293945,-1.4500000476837158,45.25400161743164 -9635,2017-08-06 11:00:00,46.40700149536133,11.644000053405762,54.09400177001953,11.687000274658203,-8.017000198364258,-1.4609999656677246,47.89099884033203 -9636,2017-08-06 12:00:00,48.66899871826172,13.904999732971191,56.23799896240234,13.885000228881836,-8.017000198364258,-1.4609999656677246,50.30749893188477 -9637,2017-08-06 13:00:00,46.15599822998047,13.402999877929688,56.13100051879883,13.697999954223633,-10.491000175476074,-1.4609999656677246,51.84550094604492 -9638,2017-08-06 14:00:00,41.88399887084961,10.890000343322754,51.97600173950195,11.553000450134276,-9.083000183105469,-1.4609999656677246,54.70199966430664 -9639,2017-08-06 15:00:00,42.55400085449219,11.225000381469728,52.83399963378906,11.902000427246096,-10.331000328063965,-1.3329999446868896,53.60350036621094 -9640,2017-08-06 16:00:00,48.33399963378906,13.904999732971191,56.29199981689453,13.777999877929688,-7.697999954223633,-1.524999976158142,52.94449996948242 -9641,2017-08-06 17:00:00,43.81100082397461,12.145999908447266,53.55799865722656,12.571999549865724,-8.848999977111816,-1.524999976158142,52.06549835205078 -9642,2017-08-06 18:00:00,42.47000122070313,11.057000160217283,51.09199905395508,11.579999923706056,-8.848999977111816,-1.524999976158142,50.74700164794922 -9643,2017-08-06 19:00:00,38.28200149536133,9.800999641418455,45.2750015258789,9.864999771118164,-6.333000183105469,-1.2369999885559082,49.42850112915039 -9644,2017-08-06 20:00:00,38.78499984741211,9.29800033569336,47.5,9.595999717712402,-8.859999656677246,-1.4390000104904177,47.89049911499024 -9645,2017-08-06 21:00:00,45.48600006103516,11.225000381469728,53.36999893188477,10.883000373840332,-7.4099998474121085,-1.2369999885559082,46.79199981689453 -9646,2017-08-06 22:00:00,45.73699951171875,12.480999946594238,53.584999084472656,11.687000274658203,-7.665999889373777,0.0,45.91299819946289 -9647,2017-08-06 23:00:00,47.83200073242188,14.241000175476074,54.49599838256836,13.29599952697754,-7.377999782562256,0.0,45.4734992980957 -9648,2017-08-07 00:00:00,41.13000106811523,12.64900016784668,50.15399932861328,12.571999549865724,-9.914999961853027,-1.2369999885559082,44.81399917602539 -9649,2017-08-07 01:00:00,36.77399826049805,9.885000228881836,46.53499984741211,10.347000122070312,-8.838000297546387,-1.343000054359436,43.93600082397461 -9650,2017-08-07 02:00:00,35.93600082397461,9.21399974822998,45.19400024414063,9.94499969482422,-8.645999908447267,-1.6950000524520874,43.71599960327149 -9651,2017-08-07 03:00:00,37.36100006103516,11.727999687194824,45.62300109863281,12.03600025177002,-7.270999908447266,-1.2150000333786009,43.2765007019043 -9652,2017-08-07 04:00:00,36.02000045776367,10.470999717712402,43.98799896240234,10.508000373840332,-7.314000129699707,-1.2899999618530271,42.83700180053711 -9653,2017-08-07 05:00:00,34.345001220703125,10.973999977111816,43.07699966430664,11.312000274658203,-8.380000114440918,-1.406999945640564,42.397499084472656 -9654,2017-08-07 06:00:00,35.685001373291016,11.057000160217283,42.88899993896485,11.178000450134276,-7.676000118255615,-1.2580000162124634,41.95800018310547 -9655,2017-08-07 07:00:00,31.32900047302246,10.13599967956543,42.03099822998047,11.366000175476074,-10.095999717712402,-1.3009999990463257,41.95800018310547 -9656,2017-08-07 08:00:00,31.58099937438965,8.878999710083008,41.790000915527344,9.70400047302246,-10.138999938964844,-1.3009999990463257,42.61750030517578 -9657,2017-08-07 09:00:00,37.86299896240234,12.229999542236328,49.56399917602539,18.334999084472656,-10.138999938964844,-1.3009999990463257,43.93550109863281 -9658,2017-08-07 10:00:00,42.63800048828125,11.47599983215332,52.53900146484375,12.008999824523926,-10.138999938964844,-1.3009999990463257,46.13249969482422 -9659,2017-08-07 11:00:00,45.06700134277344,11.47599983215332,54.01399993896485,11.795000076293944,-8.965999603271484,-1.3009999990463257,49.64799880981445 -9660,2017-08-07 12:00:00,47.58000183105469,13.402999877929688,57.60599899291992,13.590999603271484,-8.784999847412111,-2.5480000972747803,51.6259994506836 -9661,2017-08-07 13:00:00,51.01499938964844,13.904999732971191,58.54399871826172,13.482999801635742,-7.452000141143799,-2.5480000972747803,53.16400146484375 -9662,2017-08-07 14:00:00,51.85200119018555,14.241000175476074,57.20299911499024,13.456000328063965,-5.0,-1.3969999551773071,55.36149978637695 -9663,2017-08-07 15:00:00,46.65900039672852,13.98900032043457,55.56800079345703,14.100000381469728,-7.644000053405763,-1.246999979019165,54.26250076293945 -9664,2017-08-07 16:00:00,44.229000091552734,12.5649995803833,53.55799865722656,12.760000228881836,-9.413999557495115,-1.2580000162124634,51.84600067138672 -9665,2017-08-07 17:00:00,42.80500030517578,11.392000198364258,52.11000061035156,11.446000099182127,-9.008999824523926,-1.2150000333786009,50.30749893188477 -9666,2017-08-07 18:00:00,41.71599960327149,12.314000129699709,52.08399963378906,12.706000328063965,-10.138999938964844,-1.2150000333786009,48.77000045776367 -9667,2017-08-07 19:00:00,44.48099899291992,13.319000244140623,50.93099975585938,12.25,-7.377999782562256,0.0,47.67100143432617 -9668,2017-08-07 20:00:00,44.983001708984375,12.480999946594238,53.290000915527344,12.08899974822998,-7.579999923706055,-1.2690000534057615,46.13249969482422 -9669,2017-08-07 21:00:00,44.983001708984375,13.402999877929688,52.48600006103516,12.196999549865724,-7.879000186920166,0.0,45.03400039672852 -9670,2017-08-07 22:00:00,45.82099914550781,14.491999626159668,52.64599990844727,13.161999702453612,-6.73799991607666,0.0,44.59450149536133 -9671,2017-08-07 23:00:00,40.459999084472656,12.480999946594238,47.79499816894531,11.5,-7.014999866485598,0.0,43.93600082397461 -9672,2017-08-08 00:00:00,31.413000106811523,9.465999603271484,43.15700149536133,10.90999984741211,-10.767999649047852,-2.483999967575073,37.78300094604492 -9673,2017-08-08 01:00:00,33.25600051879883,9.885000228881836,40.45000076293945,10.133000373840332,-7.494999885559082,0.0,36.90399932861328 -9674,2017-08-08 02:00:00,30.90999984741211,10.052000045776367,39.48500061035156,10.133000373840332,-7.729000091552732,0.0,36.90449905395508 -9675,2017-08-08 03:00:00,30.82699966430664,9.633000373840332,40.23500061035156,10.53499984741211,-8.869999885559082,-2.5480000972747803,36.68450164794922 -9676,2017-08-08 04:00:00,30.492000579833984,9.04699993133545,40.58399963378906,10.185999870300291,-9.690999984741213,-1.684000015258789,36.68450164794922 -9677,2017-08-08 05:00:00,28.39699935913086,9.130999565124512,37.87699890136719,9.649999618530272,-9.755000114440918,-1.2580000162124634,36.24499893188477 -9678,2017-08-08 06:00:00,32.08300018310547,10.220000267028809,40.31600189208984,10.159000396728516,-7.526999950408935,0.0,36.464500427246094 -9679,2017-08-08 07:00:00,30.1560001373291,10.052000045776367,38.81499862670898,10.052000045776367,-9.083000183105469,0.0,36.68450164794922 -9680,2017-08-08 08:00:00,30.40800094604492,8.878999710083008,39.40399932861328,9.0600004196167,-9.083000183105469,0.0,36.24499893188477 -9681,2017-08-08 09:00:00,30.57500076293945,9.885000228881836,41.14699935913086,10.855999946594238,-11.003000259399414,-2.505000114440918,34.267501831054695 -9682,2017-08-08 10:00:00,32.16699981689453,9.21399974822998,42.51399993896485,10.588000297546388,-9.765999794006348,-2.505000114440918,31.410999298095703 -9683,2017-08-08 11:00:00,28.145999908447266,8.628000259399414,39.18999862670898,10.133000373840332,-10.939000129699709,-1.5989999771118164,30.97150039672852 -9684,2017-08-08 12:00:00,36.02000045776367,11.057000160217283,44.71200180053711,11.954999923706056,-8.369000434875487,-1.5989999771118164,30.312000274658203 -9685,2017-08-08 13:00:00,34.512001037597656,10.722000122070312,45.11399841308594,11.982000350952148,-9.562999725341797,-1.715999960899353,32.06999969482422 -9686,2017-08-08 14:00:00,27.47599983215332,8.376999855041504,37.98400115966797,9.864999771118164,-10.895999908447266,-1.8339999914169312,31.63050079345703 -9687,2017-08-08 15:00:00,32.16699981689453,9.04699993133545,42.78200149536133,10.401000022888184,-10.779000282287598,-1.8550000190734863,31.631000518798828 -9688,2017-08-08 16:00:00,33.92599868774414,9.465999603271484,43.53300094604492,10.90999984741211,-9.562999725341797,-1.8550000190734863,31.410999298095703 -9689,2017-08-08 17:00:00,31.496999740600582,8.963000297546387,41.89699935913086,10.45400047302246,-9.744000434875488,-1.8550000190734863,29.653499603271484 -9690,2017-08-08 18:00:00,30.072999954223643,8.208999633789062,40.15499877929688,9.756999969482422,-9.659000396728516,-1.8550000190734863,29.87299919128418 -9691,2017-08-08 19:00:00,32.669998168945305,9.800999641418455,42.54100036621094,10.855999946594238,-9.595000267028809,-1.8550000190734863,30.312000274658203 -9692,2017-08-08 20:00:00,36.94200134277344,11.810999870300291,44.28300094604492,12.25,-6.8979997634887695,-1.2369999885559082,31.410999298095703 -9693,2017-08-08 21:00:00,34.0099983215332,11.225000381469728,43.63999938964844,11.741000175476074,-9.670000076293944,-1.4500000476837158,32.06999969482422 -9694,2017-08-08 22:00:00,32.83700180053711,10.973999977111816,42.19200134277344,11.687000274658203,-8.432999610900879,-1.4500000476837158,32.72949981689453 -9695,2017-08-08 23:00:00,30.1560001373291,10.638999938964844,39.59199905395508,11.5,-9.104999542236328,-2.4730000495910645,33.16899871826172 -9696,2017-08-09 00:00:00,28.39699935913086,10.13599967956543,39.99399948120117,11.928999900817873,-11.58899974822998,-1.919000029563904,33.60850143432617 -9697,2017-08-09 01:00:00,28.73200035095215,10.13599967956543,38.14500045776367,10.776000022888184,-9.052000045776367,-1.5570000410079956,33.827999114990234 -9698,2017-08-09 02:00:00,26.63800048828125,9.633000373840332,38.54700088500977,11.366000175476074,-12.772000312805176,-2.483999967575073,34.04800033569336 -9699,2017-08-09 03:00:00,27.392000198364247,9.885000228881836,37.98400115966797,11.178000450134276,-11.215999603271484,-2.559000015258789,33.827999114990234 -9700,2017-08-09 04:00:00,31.496999740600582,11.392000198364258,37.79600143432617,11.204999923706056,-6.119999885559082,0.0,32.5099983215332 -9701,2017-08-09 05:00:00,27.22500038146973,10.13599967956543,35.16899871826172,10.560999870300291,-7.377999782562256,0.0,31.63050079345703 -9702,2017-08-09 06:00:00,28.983999252319336,10.303000450134276,39.83300018310547,11.418999671936035,-10.5649995803833,-1.2150000333786009,30.3125 -9703,2017-08-09 07:00:00,28.145999908447266,10.638999938964844,36.50899887084961,11.446000099182127,-8.869999885559082,-1.3009999990463257,30.312000274658203 -9704,2017-08-09 08:00:00,25.46500015258789,7.874000072479247,36.26800155639648,9.302000045776367,-10.51200008392334,-1.3009999990463257,30.53199958801269 -9705,2017-08-09 09:00:00,30.99399948120117,9.465999603271484,40.66400146484375,11.017000198364258,-9.29699993133545,-1.6529999971389768,30.97150039672852 -9706,2017-08-09 10:00:00,27.81100082397461,7.539000034332275,37.2869987487793,8.819000244140625,-9.562999725341797,-1.5140000581741333,32.72949981689453 -9707,2017-08-09 11:00:00,29.82099914550781,8.543999671936035,39.40399932861328,9.729999542236328,-9.467000007629396,-1.5140000581741333,35.80550003051758 -9708,2017-08-09 12:00:00,26.88999938964844,6.701000213623048,37.71599960327149,8.36299991607666,-10.810999870300291,-1.5140000581741333,36.90449905395508 -9709,2017-08-09 13:00:00,28.983999252319336,8.376999855041504,38.97600173950195,9.677000045776367,-9.541999816894531,-1.662999987602234,38.44250106811523 -9710,2017-08-09 14:00:00,35.0989990234375,11.309000015258787,44.63199996948242,12.222999572753904,-9.541999816894531,-1.662999987602234,40.20000076293945 -9711,2017-08-09 15:00:00,34.345001220703125,10.052000045776367,43.02299880981445,11.017000198364258,-8.220000267028809,-1.662999987602234,40.41999816894531 -9712,2017-08-09 16:00:00,36.1879997253418,11.895000457763672,44.95299911499024,12.812999725341797,-8.241000175476074,-1.662999987602234,40.20000076293945 -9713,2017-08-09 17:00:00,34.0099983215332,10.052000045776367,42.54100036621094,11.071000099182127,-9.265000343322754,-1.662999987602234,39.760501861572266 -9714,2017-08-09 18:00:00,29.56999969482422,8.795999526977539,40.58399963378906,10.31999969482422,-10.51200008392334,-1.662999987602234,39.760501861572266 -9715,2017-08-09 19:00:00,30.492000579833984,8.963000297546387,40.28900146484375,10.024999618530272,-9.4350004196167,-1.662999987602234,38.88199996948242 -9716,2017-08-09 20:00:00,34.59600067138672,9.633000373840332,42.11199951171875,10.45400047302246,-8.102999687194824,-1.2580000162124634,38.00299835205078 -9717,2017-08-09 21:00:00,32.75299835205078,9.968000411987305,42.13899993896485,10.989999771118164,-9.616999626159668,-1.5140000581741333,37.124000549316406 -9718,2017-08-09 22:00:00,31.58099937438965,10.13599967956543,40.85200119018555,11.097999572753906,-9.32900047302246,-1.6100000143051147,36.68450164794922 -9719,2017-08-09 23:00:00,30.072999954223643,8.711999893188478,38.65399932861328,9.515999794006348,-8.156000137329103,-1.5989999771118164,36.24499893188477 -9720,2017-08-10 00:00:00,29.56999969482422,9.717000007629396,38.09099960327149,10.185999870300291,-8.315999984741211,-1.2690000534057615,36.025001525878906 -9721,2017-08-10 01:00:00,26.30299949645996,7.288000106811522,35.597999572753906,8.819000244140625,-9.659000396728516,-1.2369999885559082,35.58599853515625 -9722,2017-08-10 02:00:00,27.559999465942383,9.465999603271484,37.04600143432617,10.69499969482422,-8.82800006866455,-1.4179999828338623,35.36600112915039 -9723,2017-08-10 03:00:00,25.632999420166016,8.293000221252441,35.2760009765625,9.461999893188477,-9.32900047302246,-2.494999885559082,35.145999908447266 -9724,2017-08-10 04:00:00,25.381999969482425,8.628000259399414,35.35699844360352,9.56999969482422,-10.427000045776367,-1.3009999990463257,35.145999908447266 -9725,2017-08-10 05:00:00,27.22500038146973,9.21399974822998,36.10699844360352,10.29300022125244,-8.038999557495117,-1.4609999656677246,35.145999908447266 -9726,2017-08-10 06:00:00,28.983999252319336,10.303000450134276,35.0620002746582,10.213000297546388,-5.76800012588501,0.0,34.926498413085945 -9727,2017-08-10 07:00:00,27.895000457763672,10.55500030517578,36.5629997253418,10.642000198364258,-8.432999610900879,0.0,34.926498413085945 -9728,2017-08-10 08:00:00,26.2189998626709,8.628000259399414,36.696998596191406,10.239999771118164,-10.053999900817873,-2.463000059127808,36.025001525878906 -9729,2017-08-10 09:00:00,32.250999450683594,11.644000053405762,42.03099822998047,12.545000076293944,-9.989999771118164,-2.463000059127808,37.78350067138672 -9730,2017-08-10 10:00:00,34.68000030517578,10.973999977111816,45.43600082397461,11.902000427246096,-9.958000183105469,-1.7480000257492063,40.63949966430664 -9731,2017-08-10 11:00:00,31.413000106811523,8.543999671936035,39.35100173950195,9.32800006866455,-8.678000450134277,-1.3109999895095823,43.93600082397461 -9732,2017-08-10 12:00:00,37.69599914550781,10.638999938964844,46.66899871826172,11.526000022888184,-9.904000282287598,-2.5910000801086426,45.91299819946289 -9733,2017-08-10 13:00:00,39.874000549316406,11.727999687194824,49.29600143432617,12.545000076293944,-8.486000061035156,-2.5910000801086426,47.012001037597656 -9734,2017-08-10 14:00:00,39.70600128173828,10.722000122070312,47.98199844360352,11.418999671936035,-8.496999740600586,-1.5989999771118164,49.64849853515625 -9735,2017-08-10 15:00:00,39.62200164794922,10.722000122070312,47.125,11.258000373840332,-8.444000244140625,-1.684000015258789,50.74700164794922 -9736,2017-08-10 16:00:00,37.44400024414063,11.979000091552734,48.54499816894531,13.135000228881836,-10.960000038146973,-1.684000015258789,49.42900085449219 -9737,2017-08-10 17:00:00,37.61199951171875,12.062999725341797,47.41899871826172,12.920000076293944,-9.595000267028809,-1.684000015258789,47.45149993896485 -9738,2017-08-10 18:00:00,33.34000015258789,10.13599967956543,45.62300109863281,11.33899974822998,-11.055999755859377,-1.812000036239624,46.13249969482422 -9739,2017-08-10 19:00:00,37.025001525878906,11.309000015258787,46.29399871826172,12.03600025177002,-9.734000205993652,-2.505000114440918,44.59450149536133 -9740,2017-08-10 20:00:00,37.69599914550781,10.220000267028809,45.89099884033203,10.776000022888184,-8.369000434875487,-1.4500000476837158,43.05649948120117 -9741,2017-08-10 21:00:00,39.11999893188477,11.727999687194824,47.58000183105469,11.446000099182127,-8.369000434875487,0.0,41.95800018310547 -9742,2017-08-10 22:00:00,38.44900131225586,14.241000175476074,47.79499816894531,14.019000053405762,-8.47599983215332,0.0,40.85900115966797 -9743,2017-08-10 23:00:00,40.459999084472656,13.821999549865724,47.5,13.135000228881836,-5.885000228881836,0.0,40.20000076293945 -9744,2017-08-11 00:00:00,34.0099983215332,11.979000091552734,41.81700134277344,11.553000450134276,-8.208999633789062,0.0,39.760501861572266 -9745,2017-08-11 01:00:00,33.50699996948242,11.47599983215332,41.33399963378906,11.204999923706056,-8.411999702453612,0.0,39.32149887084961 -9746,2017-08-11 02:00:00,31.2450008392334,10.303000450134276,38.97600173950195,10.722000122070312,-7.579999923706055,-1.343000054359436,38.6619987487793 -9747,2017-08-11 03:00:00,30.1560001373291,10.13599967956543,37.823001861572266,10.185999870300291,-7.4629998207092285,0.0,38.00299835205078 -9748,2017-08-11 04:00:00,29.65399932861328,10.55500030517578,39.27000045776367,11.418999671936035,-8.848999977111816,-1.2150000333786009,37.5634994506836 -9749,2017-08-11 05:00:00,30.492000579833984,10.220000267028809,39.37799835205078,10.829999923706056,-8.880999565124512,-1.2369999885559082,37.124000549316406 -9750,2017-08-11 06:00:00,35.349998474121094,12.984000205993652,41.68299865722656,12.357000350952148,-6.3439998626708975,0.0,36.90399932861328 -9751,2017-08-11 07:00:00,32.250999450683594,12.229999542236328,41.040000915527344,12.142999649047852,-8.848999977111816,0.0,37.124000549316406 -9752,2017-08-11 08:00:00,32.333999633789055,9.550000190734863,41.33399963378906,10.347000122070312,-8.880999565124512,-1.5140000581741333,38.22249984741211 -9753,2017-08-11 09:00:00,35.76900100708008,11.392000198364258,45.8650016784668,12.357000350952148,-10.20300006866455,-1.493000030517578,40.63949966430664 -9754,2017-08-11 10:00:00,40.459999084472656,11.810999870300291,48.0359992980957,11.954999923706056,-7.665999889373777,-1.3969999551773071,42.83700180053711 -9755,2017-08-11 11:00:00,42.303001403808594,13.821999549865724,52.29800033569336,14.447999954223633,-10.246000289916992,-2.719000101089477,45.69350051879883 -9756,2017-08-11 12:00:00,45.4020004272461,13.067999839782717,52.24399948120117,12.920000076293944,-6.439000129699707,-2.719000101089477,47.23149871826172 -9757,2017-08-11 13:00:00,40.71099853515625,12.39799976348877,51.89599990844727,13.161999702453612,-11.428999900817873,-2.719000101089477,47.67100143432617 -9758,2017-08-11 14:00:00,43.47600173950195,14.156999588012695,52.48600006103516,14.42099952697754,-8.956000328063965,-2.719000101089477,48.11050033569336 -9759,2017-08-11 15:00:00,40.3759994506836,13.402999877929688,51.70800018310547,13.911999702453612,-9.925999641418455,-1.493000030517578,46.79199981689453 -9760,2017-08-11 16:00:00,39.45500183105469,13.319000244140623,49.96599960327149,13.80500030517578,-9.904000282287598,-1.5670000314712524,46.13249969482422 -9761,2017-08-11 17:00:00,39.20299911499024,12.480999946594238,49.7509994506836,13.187999725341797,-9.914999961853027,-1.5670000314712524,45.25350189208984 -9762,2017-08-11 18:00:00,38.03099822998047,12.229999542236328,47.875,12.732999801635742,-9.819000244140623,-1.5670000314712524,44.375 -9763,2017-08-11 19:00:00,41.13000106811523,11.727999687194824,47.5,11.258000373840332,-6.02400016784668,0.0,43.71599960327149 -9764,2017-08-11 20:00:00,42.72200012207031,12.480999946594238,50.55599975585938,11.902000427246096,-7.302999973297119,0.0,42.617000579833984 -9765,2017-08-11 21:00:00,42.97299957275391,12.314000129699709,47.6870002746582,10.722000122070312,-4.605999946594238,0.0,41.95800018310547 -9766,2017-08-11 22:00:00,48.66899871826172,16.083000183105472,52.43199920654297,14.340999603271484,-4.339000225067139,0.0,41.51850128173828 -9767,2017-08-11 23:00:00,43.2239990234375,14.659000396728516,48.91999816894531,13.67099952697754,-5.298999786376953,0.0,41.29899978637695 -9768,2017-08-12 00:00:00,37.77899932861328,11.810999870300291,45.97200012207031,11.472999572753904,-7.803999900817871,0.0,41.07899856567383 -9769,2017-08-12 01:00:00,35.76900100708008,12.732999801635742,44.73899841308594,12.517999649047852,-8.560999870300293,0.0,40.85900115966797 -9770,2017-08-12 02:00:00,34.09400177001953,11.810999870300291,42.88899993896485,11.767999649047852,-8.092000007629395,0.0,40.20000076293945 -9771,2017-08-12 03:00:00,32.16699981689453,11.225000381469728,40.74499893188477,11.258000373840332,-9.307000160217283,0.0,39.760501861572266 -9772,2017-08-12 04:00:00,35.26599884033203,11.727999687194824,41.01300048828125,10.90999984741211,-6.546000003814697,0.0,39.54100036621094 -9773,2017-08-12 05:00:00,34.429000854492195,12.5649995803833,42.05799865722656,12.196999549865724,-8.081000328063965,0.0,39.10200119018555 -9774,2017-08-12 06:00:00,31.916000366210927,11.5600004196167,40.85200119018555,11.472999572753904,-8.187999725341799,0.0,38.6619987487793 -9775,2017-08-12 07:00:00,33.84199905395508,12.062999725341797,42.03099822998047,12.116000175476074,-8.923999786376953,0.0,37.34400177001953 -9776,2017-08-12 08:00:00,27.141000747680664,8.543999671936035,37.95700073242188,9.461999893188477,-9.157999992370604,-1.3009999990463257,34.707000732421875 -9777,2017-08-12 09:00:00,30.072999954223643,8.376999855041504,39.32400131225586,9.515999794006348,-9.12600040435791,-2.5160000324249268,34.04800033569336 -9778,2017-08-12 10:00:00,32.08300018310547,8.795999526977539,41.57600021362305,9.756999969482422,-9.178999900817873,-2.5160000324249268,34.707000732421875 -9779,2017-08-12 11:00:00,27.22500038146973,6.2829999923706055,38.30500030517578,7.98799991607666,-10.458999633789062,-1.5349999666213991,34.04800033569336 -9780,2017-08-12 12:00:00,29.23500061035156,7.119999885559082,40.85200119018555,8.819000244140625,-11.364999771118164,-2.760999917984009,32.949501037597656 -9781,2017-08-12 13:00:00,31.74799919128418,9.381999969482422,42.459999084472656,11.071000099182127,-9.776000022888184,-2.760999917984009,32.50949859619141 -9782,2017-08-12 14:00:00,33.088001251220696,10.470999717712402,42.19200134277344,11.633999824523926,-8.571999549865723,-2.760999917984009,32.72949981689453 -9783,2017-08-12 15:00:00,31.413000106811523,10.38700008392334,43.37200164794922,11.821000099182127,-11.140999794006348,-1.621000051498413,33.388500213623054 -9784,2017-08-12 16:00:00,35.518001556396484,10.890000343322754,42.19200134277344,11.258000373840332,-5.96999979019165,-1.22599995136261,33.388500213623054 -9785,2017-08-12 17:00:00,39.95700073242188,11.979000091552734,43.26399993896485,11.366000175476074,-3.4760000705718994,0.0,32.72949981689453 -9786,2017-08-12 18:00:00,40.3759994506836,11.810999870300291,42.56800079345703,10.803000450134276,-1.3009999990463257,0.0,31.850500106811523 -9787,2017-08-12 19:00:00,42.88899993896485,12.984000205993652,41.76300048828125,10.588000297546388,0.0,0.0,31.850500106811523 -9788,2017-08-12 20:00:00,42.72200012207031,10.890000343322754,40.69100189208984,9.034000396728516,2.026000022888184,0.0,32.949501037597656 -9789,2017-08-12 21:00:00,41.54899978637695,11.392000198364258,43.18399810791016,10.105999946594238,0.0,0.0,33.82849884033203 -9790,2017-08-12 22:00:00,45.56999969482422,15.161999702453612,45.75699996948242,12.973999977111816,0.0,0.0,34.487499237060554 -9791,2017-08-12 23:00:00,40.62699890136719,13.402999877929688,41.06600189208984,11.472999572753904,0.0,0.0,35.145999908447266 -9792,2017-08-13 00:00:00,37.61199951171875,12.314000129699709,40.262001037597656,11.767999649047852,-2.5160000324249268,0.0,35.36600112915039 -9793,2017-08-13 01:00:00,38.198001861572266,11.309000015258787,39.29700088500977,9.99899959564209,0.0,0.0,35.58599853515625 -9794,2017-08-13 02:00:00,39.37099838256836,12.480999946594238,40.69100189208984,11.579999923706056,-1.4390000104904177,0.0,35.80550003051758 -9795,2017-08-13 03:00:00,36.02000045776367,11.225000381469728,37.367000579833984,10.07900047302246,0.0,0.0,35.80550003051758 -9796,2017-08-13 04:00:00,37.77899932861328,12.815999984741213,37.79600143432617,10.937000274658203,0.0,0.0,35.80550003051758 -9797,2017-08-13 05:00:00,36.858001708984375,12.39799976348877,37.4739990234375,10.427000045776367,0.0,0.0,35.36600112915039 -9798,2017-08-13 06:00:00,37.86299896240234,12.5649995803833,38.43899917602539,10.560999870300291,0.0,0.0,35.36600112915039 -9799,2017-08-13 07:00:00,38.36600112915039,12.815999984741213,38.41299819946289,11.232000350952148,0.0,0.0,35.36600112915039 -9800,2017-08-13 08:00:00,30.90999984741211,8.628000259399414,34.097000122070305,8.630999565124513,-3.1449999809265137,0.0,35.36600112915039 -9801,2017-08-13 09:00:00,36.1879997253418,9.21399974822998,39.37799835205078,8.873000144958496,-2.7079999446868896,0.0,35.36600112915039 -9802,2017-08-13 10:00:00,36.52299880981445,8.711999893188478,39.99399948120117,8.496999740600586,-4.008999824523927,0.0,35.80550003051758 -9803,2017-08-13 11:00:00,39.37099838256836,9.717000007629396,42.27299880981445,9.034000396728516,-2.900000095367432,0.0,34.487499237060554 -9804,2017-08-13 12:00:00,40.87900161743164,10.890000343322754,43.15700149536133,10.267000198364258,-2.900000095367432,0.0,33.388999938964844 -9805,2017-08-13 13:00:00,40.29199981689453,11.727999687194824,42.97000122070313,10.989999771118164,-2.611999988555908,0.0,35.36600112915039 -9806,2017-08-13 14:00:00,38.28200149536133,10.303000450134276,42.05799865722656,10.052000045776367,-2.5269999504089355,0.0,37.124000549316406 -9807,2017-08-13 15:00:00,40.79499816894531,11.225000381469728,43.07699966430664,10.401000022888184,-2.569000005722046,0.0,39.10200119018555 -9808,2017-08-13 16:00:00,43.97800064086914,12.229999542236328,44.71200180053711,10.937000274658203,0.0,0.0,39.54100036621094 -9809,2017-08-13 17:00:00,44.229000091552734,12.145999908447266,45.54299926757813,10.829999923706056,0.0,0.0,37.78300094604492 -9810,2017-08-13 18:00:00,42.97299957275391,11.309000015258787,44.28300094604492,9.99899959564209,0.0,0.0,38.22299957275391 -9811,2017-08-13 19:00:00,39.95700073242188,10.303000450134276,40.98600006103516,8.873000144958496,0.0,0.0,38.22299957275391 -9812,2017-08-13 20:00:00,40.3759994506836,10.303000450134276,40.69100189208984,8.925999641418457,0.0,0.0,37.78300094604492 -9813,2017-08-13 21:00:00,41.13000106811523,11.810999870300291,41.11999893188477,9.756999969482422,0.0,0.0,36.46500015258789 -9814,2017-08-13 22:00:00,40.3759994506836,10.805999755859377,40.90599822998047,8.95300006866455,0.0,0.0,34.926498413085945 -9815,2017-08-13 23:00:00,41.04600143432617,12.145999908447266,41.44200134277344,10.185999870300291,0.0,0.0,33.827999114990234 -9816,2017-08-14 00:00:00,38.78499984741211,11.727999687194824,39.13600158691406,9.810999870300291,0.0,0.0,33.82849884033203 -9817,2017-08-14 01:00:00,34.68000030517578,9.130999565124512,36.64300155639648,8.791999816894531,-2.760999917984009,0.0,34.04800033569336 -9818,2017-08-14 02:00:00,29.15099906921387,8.963000297546387,31.14800071716309,8.015000343322754,-1.4390000104904177,0.0,34.487499237060554 -9819,2017-08-14 03:00:00,36.858001708984375,10.55500030517578,37.20600128173828,8.873000144958496,0.0,0.0,34.487499237060554 -9820,2017-08-14 04:00:00,33.34000015258789,8.795999526977539,35.089000701904304,7.98799991607666,-1.2790000438690186,0.0,34.487499237060554 -9821,2017-08-14 05:00:00,31.496999740600582,8.795999526977539,34.1510009765625,8.550999641418457,-2.697000026702881,0.0,34.487499237060554 -9822,2017-08-14 06:00:00,36.60699844360352,11.47599983215332,37.87699890136719,9.784000396728516,0.0,0.0,34.487499237060554 -9823,2017-08-14 07:00:00,35.349998474121094,10.805999755859377,38.54700088500977,10.776000022888184,-3.26200008392334,0.0,34.707000732421875 -9824,2017-08-14 08:00:00,33.84199905395508,8.711999893188478,35.597999572753906,8.015000343322754,-1.7480000257492063,0.0,35.36600112915039 -9825,2017-08-14 09:00:00,37.025001525878906,11.727999687194824,40.82500076293945,11.472999572753904,-2.750999927520752,0.0,36.464500427246094 -9826,2017-08-14 10:00:00,37.946998596191406,10.303000450134276,41.01300048828125,9.810999870300291,-2.6760001182556152,0.0,37.5634994506836 -9827,2017-08-14 11:00:00,38.86800003051758,8.461000442504883,41.709999084472656,9.248000144958496,-2.569000005722046,-1.2690000534057615,39.32149887084961 -9828,2017-08-14 12:00:00,41.88399887084961,10.052000045776367,44.84600067138672,10.560999870300291,-3.82699990272522,-2.483999967575073,41.29850006103516 -9829,2017-08-14 13:00:00,39.790000915527344,9.800999641418455,43.90800094604492,10.722000122070312,-3.677999973297119,-2.483999967575073,41.95800018310547 -9830,2017-08-14 14:00:00,33.50699996948242,7.874000072479247,37.448001861572266,9.086999893188477,-3.742000102996826,-2.483999967575073,42.617000579833984 -9831,2017-08-14 15:00:00,37.69599914550781,8.963000297546387,40.74499893188477,9.623000144958496,-3.5179998874664307,-2.483999967575073,41.73799896240234 -9832,2017-08-14 16:00:00,39.2869987487793,9.717000007629396,41.81700134277344,10.105999946594238,-2.5160000324249268,-2.483999967575073,40.63949966430664 -9833,2017-08-14 17:00:00,38.86800003051758,8.543999671936035,41.81700134277344,9.32800006866455,-2.505000114440918,-1.2580000162124634,39.32149887084961 -9834,2017-08-14 18:00:00,40.20899963378906,9.381999969482422,42.86199951171875,10.185999870300291,-2.505000114440918,-1.2580000162124634,38.44250106811523 -9835,2017-08-14 19:00:00,37.946998596191406,8.461000442504883,39.35100173950195,7.559000015258789,0.0,0.0,37.124000549316406 -9836,2017-08-14 20:00:00,38.86800003051758,8.041999816894531,40.20899963378906,7.960999965667725,0.0,0.0,34.926498413085945 -9837,2017-08-14 21:00:00,41.13000106811523,9.800999641418455,41.57600021362305,9.32800006866455,0.0,0.0,35.146499633789055 -9838,2017-08-14 22:00:00,43.97800064086914,12.145999908447266,44.49800109863281,11.553000450134276,0.0,0.0,35.80550003051758 -9839,2017-08-14 23:00:00,38.95199966430664,10.55500030517578,38.41299819946289,9.70400047302246,0.0,0.0,35.80550003051758 -9840,2017-08-15 00:00:00,39.790000915527344,11.140999794006348,41.44200134277344,11.33899974822998,-1.4179999828338623,-1.2580000162124634,35.36600112915039 -9841,2017-08-15 01:00:00,36.43899917602539,9.381999969482422,37.52799987792969,9.56999969482422,-1.4709999561309814,-1.3109999895095823,35.36600112915039 -9842,2017-08-15 02:00:00,35.43399810791016,8.376999855041504,36.8849983215332,8.630999565124513,-2.5480000972747803,-1.343000054359436,35.36600112915039 -9843,2017-08-15 03:00:00,34.09400177001953,9.465999603271484,37.55500030517578,10.803000450134276,-2.931999921798706,-2.5369999408721924,35.145999908447266 -9844,2017-08-15 04:00:00,36.104000091552734,9.800999641418455,37.608001708984375,9.91800022125244,0.0,0.0,34.926498413085945 -9845,2017-08-15 05:00:00,33.92599868774414,9.885000228881836,36.696998596191406,10.74899959564209,-1.6950000524520874,-1.3109999895095823,34.487499237060554 -9846,2017-08-15 06:00:00,38.617000579833984,11.644000053405762,39.40399932861328,11.017000198364258,0.0,0.0,34.487499237060554 -9847,2017-08-15 07:00:00,36.858001708984375,11.309000015258787,38.49300003051758,11.526000022888184,-1.940000057220459,-1.2790000438690186,34.487499237060554 -9848,2017-08-15 08:00:00,32.250999450683594,8.711999893188478,36.08100128173828,9.838000297546388,-3.2839999198913574,-1.246999979019165,35.145999908447266 -9849,2017-08-15 09:00:00,38.28200149536133,10.722000122070312,40.82500076293945,11.097999572753906,-2.131999969482422,-1.246999979019165,36.46500015258789 -9850,2017-08-15 10:00:00,39.70600128173828,10.220000267028809,42.59400177001953,10.508000373840332,-2.5799999237060547,-1.343000054359436,38.6619987487793 -9851,2017-08-15 11:00:00,41.13000106811523,10.973999977111816,44.14899826049805,11.33899974822998,-2.5799999237060547,-1.343000054359436,41.07899856567383 -9852,2017-08-15 12:00:00,41.71599960327149,10.638999938964844,44.52399826049805,10.96399974822998,-2.611999988555908,-1.2580000162124634,41.95800018310547 -9853,2017-08-15 13:00:00,43.89400100708008,12.145999908447266,45.06000137329102,11.687000274658203,-1.246999979019165,-1.2369999885559082,42.83700180053711 -9854,2017-08-15 14:00:00,41.96799850463867,11.810999870300291,44.97999954223633,12.222999572753904,-2.687000036239624,-1.3650000095367432,43.2765007019043 -9855,2017-08-15 15:00:00,40.04100036621094,10.052000045776367,43.63999938964844,10.53499984741211,-3.913000106811523,-1.3650000095367432,46.13299942016602 -9856,2017-08-15 16:00:00,41.13000106811523,10.805999755859377,44.38999938964844,11.28499984741211,-2.4730000495910645,-1.3650000095367432,45.91299819946289 -9857,2017-08-15 17:00:00,42.63800048828125,11.140999794006348,45.91799926757813,11.71399974822998,-2.483999967575073,-2.5910000801086426,44.375 -9858,2017-08-15 18:00:00,42.72200012207031,11.225000381469728,44.49800109863281,10.883000373840332,-2.4730000495910645,0.0,42.83700180053711 -9859,2017-08-15 19:00:00,39.95700073242188,10.638999938964844,41.790000915527344,10.267000198364258,-1.3109999895095823,0.0,41.51850128173828 -9860,2017-08-15 20:00:00,43.05699920654297,11.225000381469728,42.80899810791016,9.838000297546388,0.0,0.0,40.41999816894531 -9861,2017-08-15 21:00:00,41.632999420166016,11.057000160217283,43.42499923706055,10.508000373840332,-1.6100000143051147,0.0,39.54100036621094 -9862,2017-08-15 22:00:00,43.89400100708008,13.904999732971191,45.06000137329102,13.027999877929688,0.0,0.0,38.88199996948242 -9863,2017-08-15 23:00:00,41.71599960327149,12.815999984741213,42.35300064086914,11.71399974822998,0.0,0.0,38.6619987487793 -9864,2017-08-16 00:00:00,38.95199966430664,11.727999687194824,39.91400146484375,10.883000373840332,0.0,0.0,38.22299957275391 -9865,2017-08-16 01:00:00,40.29199981689453,11.727999687194824,40.47700119018555,10.883000373840332,0.0,0.0,38.00299835205078 -9866,2017-08-16 02:00:00,35.93600082397461,9.381999969482422,36.7239990234375,8.95300006866455,0.0,0.0,37.78300094604492 -9867,2017-08-16 03:00:00,34.429000854492195,9.633000373840332,37.18000030517578,10.185999870300291,-2.5369999408721924,-1.3109999895095823,37.34400177001953 -9868,2017-08-16 04:00:00,35.182998657226555,9.633000373840332,35.972999572753906,9.006999969482422,0.0,0.0,35.145999908447266 -9869,2017-08-16 05:00:00,36.94200134277344,10.55500030517578,38.14500045776367,9.972000122070312,0.0,0.0,33.60850143432617 -9870,2017-08-16 06:00:00,36.1879997253418,10.890000343322754,37.93000030517578,10.829999923706056,-1.2790000438690186,0.0,33.16899871826172 -9871,2017-08-16 07:00:00,34.0099983215332,9.885000228881836,36.1609992980957,10.185999870300291,-1.919000029563904,0.0,31.850500106811523 -9872,2017-08-16 08:00:00,33.34000015258789,8.461000442504883,35.303001403808594,8.791999816894531,-1.2899999618530271,-1.2580000162124634,30.97150039672852 -9873,2017-08-16 09:00:00,38.95199966430664,11.225000381469728,41.46799850463867,11.579999923706056,-2.697000026702881,-1.246999979019165,30.53199958801269 -9874,2017-08-16 10:00:00,37.77899932861328,9.800999641418455,40.36899948120117,10.185999870300291,-2.622999906539917,-1.246999979019165,30.75200080871582 -9875,2017-08-16 11:00:00,39.0359992980957,9.885000228881836,41.81700134277344,10.31999969482422,-2.622999906539917,-1.246999979019165,32.949501037597656 -9876,2017-08-16 12:00:00,39.20299911499024,9.885000228881836,43.13000106811523,10.96399974822998,-3.869999885559082,-1.246999979019165,35.146499633789055 -9877,2017-08-16 13:00:00,37.69599914550781,10.052000045776367,40.42300033569336,10.588000297546388,-2.611999988555908,-1.246999979019165,35.80550003051758 -9878,2017-08-16 14:00:00,32.333999633789055,8.376999855041504,35.4370002746582,9.0600004196167,-2.6760001182556152,-1.2369999885559082,35.80550003051758 -9879,2017-08-16 15:00:00,38.198001861572266,9.800999641418455,39.83300018310547,9.838000297546388,-1.3969999551773071,-1.2790000438690186,37.124000549316406 -9880,2017-08-16 16:00:00,37.36100006103516,9.550000190734863,41.38800048828125,10.642000198364258,-4.243000030517578,-1.343000054359436,39.97999954223633 -9881,2017-08-16 17:00:00,38.11399841308594,8.963000297546387,41.49499893188477,9.784000396728516,-4.178999900817871,-1.343000054359436,40.85950088500977 -9882,2017-08-16 18:00:00,39.53799819946289,10.052000045776367,42.084999084472656,10.883000373840332,-2.803999900817871,-1.343000054359436,39.97999954223633 -9883,2017-08-16 19:00:00,38.03099822998047,9.381999969482422,39.86000061035156,9.48900032043457,-2.6549999713897705,-1.406999945640564,38.22299957275391 -9884,2017-08-16 20:00:00,40.62699890136719,9.885000228881836,40.90599822998047,8.95300006866455,0.0,0.0,36.90399932861328 -9885,2017-08-16 21:00:00,40.29199981689453,10.722000122070312,42.24599838256836,10.90999984741211,-1.4390000104904177,-1.6950000524520874,35.80550003051758 -9886,2017-08-16 22:00:00,40.62699890136719,10.973999977111816,41.01300048828125,9.91800022125244,0.0,0.0,35.145999908447266 -9887,2017-08-16 23:00:00,41.13000106811523,12.64900016784668,40.63800048828125,11.366000175476074,0.0,0.0,34.707000732421875 -9888,2017-08-17 00:00:00,38.53300094604492,11.727999687194824,37.98400115966797,10.427000045776367,0.0,0.0,34.268001556396484 -9889,2017-08-17 01:00:00,35.76900100708008,8.628000259399414,37.39400100708008,8.95300006866455,-1.246999979019165,-1.4500000476837158,33.827999114990234 -9890,2017-08-17 02:00:00,32.250999450683594,7.789999961853027,33.56100082397461,8.069000244140625,0.0,0.0,33.388999938964844 -9891,2017-08-17 03:00:00,36.1879997253418,10.052000045776367,39.512001037597656,10.883000373840332,-2.6760001182556152,-1.2899999618530271,33.388999938964844 -9892,2017-08-17 04:00:00,35.85300064086914,9.800999641418455,36.992000579833984,9.99899959564209,0.0,0.0,33.16899871826172 -9893,2017-08-17 05:00:00,33.17200088500977,8.878999710083008,35.03499984741211,9.302000045776367,-1.3860000371932983,-1.3109999895095823,32.94900131225586 -9894,2017-08-17 06:00:00,36.94200134277344,10.220000267028809,37.79600143432617,9.623000144958496,0.0,0.0,32.94900131225586 -9895,2017-08-17 07:00:00,37.44400024414063,10.722000122070312,39.35100173950195,10.90999984741211,-1.63100004196167,-1.2580000162124634,33.388999938964844 -9896,2017-08-17 08:00:00,32.250999450683594,7.539000034332275,35.597999572753906,8.550999641418457,-2.8570001125335693,-1.2580000162124634,35.145999908447266 -9897,2017-08-17 09:00:00,36.27199935913086,9.800999641418455,39.32400131225586,10.722000122070312,-2.7929999828338623,-1.2580000162124634,36.90399932861328 -9898,2017-08-17 10:00:00,41.632999420166016,10.805999755859377,43.854000091552734,10.90999984741211,-1.3539999723434448,-1.2899999618530271,39.10150146484375 -9899,2017-08-17 11:00:00,42.387001037597656,11.644000053405762,44.685001373291016,11.847999572753904,-2.483999967575073,-1.375,41.51850128173828 -9900,2017-08-17 12:00:00,42.303001403808594,11.140999794006348,44.73899841308594,11.366000175476074,-2.632999897003174,-1.503000020980835,42.83700180053711 -9901,2017-08-17 13:00:00,46.32400131225586,12.5649995803833,47.5,11.741000175476074,0.0,0.0,44.81449890136719 -9902,2017-08-17 14:00:00,42.88899993896485,11.644000053405762,45.67699813842773,11.928999900817873,-2.632999897003174,-1.3009999990463257,47.45149993896485 -9903,2017-08-17 15:00:00,45.4020004272461,12.64900016784668,46.803001403808594,12.142999649047852,-1.5670000314712524,-1.2369999885559082,47.45149993896485 -9904,2017-08-17 16:00:00,44.48099899291992,12.984000205993652,46.9640007019043,12.894000053405762,-1.2790000438690186,-1.3109999895095823,47.45149993896485 -9905,2017-08-17 17:00:00,44.229000091552734,11.810999870300291,45.30199813842773,10.989999771118164,0.0,0.0,45.91299819946289 -9906,2017-08-17 18:00:00,47.1609992980957,13.234999656677244,44.06900024414063,10.45400047302246,2.611999988555908,0.0,44.15549850463867 -9907,2017-08-17 19:00:00,42.55400085449219,11.392000198364258,42.165000915527344,9.756999969482422,0.0,0.0,42.83700180053711 -9908,2017-08-17 20:00:00,42.303001403808594,10.13599967956543,43.02299880981445,9.409000396728516,0.0,0.0,41.51850128173828 -9909,2017-08-17 21:00:00,45.31800079345703,11.5600004196167,46.26699829101562,10.052000045776367,0.0,0.0,40.41999816894531 -9910,2017-08-17 22:00:00,46.071998596191406,14.576000213623049,45.8650016784668,12.62600040435791,0.0,0.0,39.54100036621094 -9911,2017-08-17 23:00:00,44.81600189208984,12.815999984741213,43.21099853515625,10.45400047302246,1.524999976158142,0.0,39.32149887084961 -9912,2017-08-18 00:00:00,40.3759994506836,11.895000457763672,41.36100006103516,10.829999923706056,0.0,0.0,38.88199996948242 -9913,2017-08-18 01:00:00,37.025001525878906,9.130999565124512,38.680999755859375,9.006999969482422,-1.2899999618530271,0.0,38.00299835205078 -9914,2017-08-18 02:00:00,37.77899932861328,10.38700008392334,38.65399932861328,9.70400047302246,0.0,0.0,37.78350067138672 -9915,2017-08-18 03:00:00,37.277000427246094,11.5600004196167,36.80400085449219,10.159000396728516,0.0,0.0,37.124000549316406 -9916,2017-08-18 04:00:00,32.333999633789055,9.968000411987305,33.21200180053711,9.649999618530272,0.0,0.0,36.46500015258789 -9917,2017-08-18 05:00:00,36.1879997253418,10.722000122070312,36.992000579833984,9.70400047302246,0.0,0.0,36.025001525878906 -9918,2017-08-18 06:00:00,37.52799987792969,10.805999755859377,38.30500030517578,10.239999771118164,0.0,0.0,35.58599853515625 -9919,2017-08-18 07:00:00,39.95700073242188,12.480999946594238,40.04800033569336,10.937000274658203,0.0,0.0,35.58599853515625 -9920,2017-08-18 08:00:00,33.84199905395508,7.203999996185303,36.83100128173828,7.907999992370605,-3.26200008392334,-1.2899999618530271,37.124000549316406 -9921,2017-08-18 09:00:00,40.87900161743164,10.890000343322754,42.38000106811523,10.588000297546388,-1.2150000333786009,0.0,39.10150146484375 -9922,2017-08-18 10:00:00,44.0620002746582,11.644000053405762,45.62300109863281,11.5,-1.7269999980926514,-1.2580000162124634,41.51850128173828 -9923,2017-08-18 11:00:00,43.97800064086914,11.225000381469728,46.85599899291992,11.392000198364258,-1.8229999542236328,-1.2580000162124634,45.03400039672852 -9924,2017-08-18 12:00:00,44.229000091552734,11.47599983215332,47.6609992980957,12.25,-3.11299991607666,-1.2580000162124634,46.571998596191406 -9925,2017-08-18 13:00:00,46.57500076293945,12.5649995803833,49.69800186157226,12.571999549865724,-1.940000057220459,-1.2580000162124634,47.67100143432617 -9926,2017-08-18 14:00:00,46.15599822998047,12.64900016784668,48.73300170898438,12.62600040435791,-1.940000057220459,-1.2580000162124634,49.86800003051758 -9927,2017-08-18 15:00:00,46.32400131225586,13.487000465393065,49.48300170898438,13.67099952697754,-3.2300000190734863,-1.2580000162124634,50.5270004272461 -9928,2017-08-18 16:00:00,44.48099899291992,12.229999542236328,46.374000549316406,12.116000175476074,-1.866000056266785,-1.2580000162124634,49.64849853515625 -9929,2017-08-18 17:00:00,45.82099914550781,12.732999801635742,47.23199844360352,12.598999977111816,-2.569000005722046,-1.2790000438690186,47.67100143432617 -9930,2017-08-18 18:00:00,43.64300155639648,11.392000198364258,45.14099884033203,11.097999572753906,-1.3969999551773071,-1.2580000162124634,45.69300079345703 -9931,2017-08-18 19:00:00,42.55400085449219,10.55500030517578,43.69300079345703,10.105999946594238,0.0,0.0,44.15549850463867 -9932,2017-08-18 20:00:00,44.73199844360352,10.722000122070312,45.8650016784668,10.185999870300291,0.0,0.0,42.83700180053711 -9933,2017-08-18 21:00:00,45.90499877929688,12.39799976348877,46.7760009765625,11.392000198364258,0.0,0.0,41.95800018310547 -9934,2017-08-18 22:00:00,44.229000091552734,10.722000122070312,46.07899856567383,10.159000396728516,-1.6100000143051147,0.0,41.51850128173828 -9935,2017-08-18 23:00:00,42.1349983215332,11.5600004196167,44.229000091552734,11.312000274658203,-1.4500000476837158,-1.246999979019165,41.29899978637695 -9936,2017-08-19 00:00:00,42.97299957275391,12.64900016784668,43.90800094604492,11.687000274658203,0.0,0.0,40.63949966430664 -9937,2017-08-19 01:00:00,38.44900131225586,9.800999641418455,40.36899948120117,9.649999618530272,-2.5269999504089355,0.0,40.20000076293945 -9938,2017-08-19 02:00:00,40.54399871826172,12.314000129699709,42.19200134277344,11.795000076293944,-1.3329999446868896,0.0,39.760501861572266 -9939,2017-08-19 03:00:00,40.3759994506836,12.732999801635742,41.62900161743164,11.954999923706056,0.0,0.0,39.32149887084961 -9940,2017-08-19 04:00:00,37.61199951171875,11.392000198364258,39.512001037597656,11.043999671936035,-1.493000030517578,0.0,38.88199996948242 -9941,2017-08-19 05:00:00,41.46500015258789,13.402999877929688,41.68299865722656,12.303999900817873,0.0,0.0,38.44250106811523 -9942,2017-08-19 06:00:00,40.3759994506836,13.152000427246096,40.42300033569336,11.553000450134276,0.0,0.0,38.22299957275391 -9943,2017-08-19 07:00:00,41.54899978637695,12.815999984741213,42.56800079345703,12.517999649047852,0.0,0.0,38.00299835205078 -9944,2017-08-19 08:00:00,37.19300079345703,9.21399974822998,39.45800018310547,9.54300022125244,-1.3109999895095823,-1.2369999885559082,39.54100036621094 -9945,2017-08-19 09:00:00,42.88899993896485,12.39799976348877,46.0250015258789,12.973999977111816,-2.5799999237060547,-1.2369999885559082,41.73799896240234 -9946,2017-08-19 10:00:00,45.4020004272461,11.895000457763672,46.83000183105469,11.741000175476074,-1.3220000267028809,-1.2369999885559082,43.93550109863281 -9947,2017-08-19 11:00:00,48.584999084472656,12.815999984741213,50.15399932861328,12.437999725341797,-1.2580000162124634,-1.246999979019165,46.13299942016602 -9948,2017-08-19 12:00:00,48.50199890136719,12.899999618530272,50.44800186157226,12.84000015258789,-2.611999988555908,-1.246999979019165,47.67100143432617 -9949,2017-08-19 13:00:00,47.74800109863281,12.64900016784668,49.96599960327149,12.545000076293944,-2.494999885559082,-1.2690000534057615,48.54999923706055 -9950,2017-08-19 14:00:00,47.915000915527344,12.39799976348877,49.26900100708008,11.875,0.0,-1.2690000534057615,49.42900085449219 -9951,2017-08-19 15:00:00,47.83200073242188,13.821999549865724,49.93899917602539,13.402999877929688,-1.5349999666213991,-1.2369999885559082,49.64849853515625 -9952,2017-08-19 16:00:00,50.26100158691406,14.994000434875488,51.97600173950195,14.340999603271484,-1.4290000200271606,-1.3860000371932983,47.67100143432617 -9953,2017-08-19 17:00:00,47.24499893188477,13.234999656677244,48.35800170898438,11.982000350952148,0.0,0.0,45.91299819946289 -9954,2017-08-19 18:00:00,45.48600006103516,12.984000205993652,46.53499984741211,12.116000175476074,0.0,0.0,43.93600082397461 -9955,2017-08-19 19:00:00,43.391998291015625,11.810999870300291,43.55899810791016,10.614999771118164,0.0,0.0,40.63949966430664 -9956,2017-08-19 20:00:00,41.79999923706055,10.052000045776367,42.75500106811523,9.810999870300291,0.0,-1.2899999618530271,37.34400177001953 -9957,2017-08-19 21:00:00,40.29199981689453,10.470999717712402,43.02299880981445,11.178000450134276,-2.45199990272522,-1.3009999990463257,34.926498413085945 -9958,2017-08-19 22:00:00,39.874000549316406,10.805999755859377,42.38000106811523,11.446000099182127,-1.3539999723434448,-1.2580000162124634,34.04800033569336 -9959,2017-08-19 23:00:00,38.86800003051758,10.722000122070312,39.430999755859375,10.052000045776367,0.0,0.0,33.16899871826172 -9960,2017-08-20 00:00:00,36.104000091552734,9.29800033569336,37.608001708984375,9.140999794006348,-1.22599995136261,0.0,32.06999969482422 -9961,2017-08-20 01:00:00,32.08300018310547,6.701000213623048,35.19599914550781,7.854000091552732,-2.7079999446868896,-1.2369999885559082,31.410999298095703 -9962,2017-08-20 02:00:00,32.08300018310547,7.454999923706055,33.18600082397461,7.452000141143799,0.0,0.0,29.43400001525879 -9963,2017-08-20 03:00:00,30.90999984741211,6.701000213623048,33.400001525878906,7.585999965667725,-2.377000093460083,-1.2150000333786009,29.653499603271484 -9964,2017-08-20 04:00:00,30.072999954223643,7.119999885559082,32.16699981689453,7.77400016784668,-1.4709999561309814,-1.406999945640564,28.77449989318848 -9965,2017-08-20 05:00:00,30.99399948120117,6.953000068664551,32.89099884033203,7.639999866485598,-1.7059999704360962,-1.3109999895095823,28.334999084472656 -9966,2017-08-20 06:00:00,30.1560001373291,6.198999881744385,33.21200180053711,7.452000141143799,-2.868000030517578,-2.5369999408721924,28.334999084472656 -9967,2017-08-20 07:00:00,31.916000366210927,8.041999816894531,34.1510009765625,8.791999816894531,-2.7720000743865967,-2.5369999408721924,29.653499603271484 -9968,2017-08-20 08:00:00,28.229999542236328,6.618000030517577,32.40800094604492,8.255999565124513,-3.82699990272522,-2.719000101089477,30.53199958801269 -9969,2017-08-20 09:00:00,30.40800094604492,7.288000106811522,35.222999572753906,8.873000144958496,-3.82699990272522,-2.719000101089477,32.290000915527344 -9970,2017-08-20 10:00:00,35.26599884033203,8.628000259399414,38.94900131225586,9.810999870300291,-3.82699990272522,-2.719000101089477,34.267501831054695 -9971,2017-08-20 11:00:00,33.42300033569336,7.706999778747559,37.367000579833984,9.140999794006348,-3.82699990272522,-2.719000101089477,36.90449905395508 -9972,2017-08-20 12:00:00,34.0099983215332,8.125,37.18000030517578,8.95300006866455,-2.5799999237060547,-2.5269999504089355,38.00299835205078 -9973,2017-08-20 13:00:00,34.59600067138672,8.795999526977539,38.43899917602539,9.94499969482422,-3.838000059127808,-2.5269999504089355,40.41949844360352 -9974,2017-08-20 14:00:00,34.93099975585937,9.04699993133545,38.198001861572266,9.99899959564209,-3.763000011444092,-2.5269999504089355,41.29899978637695 -9975,2017-08-20 15:00:00,35.26599884033203,9.465999603271484,38.573001861572266,10.37399959564209,-3.763000011444092,-2.5269999504089355,41.51850128173828 -9976,2017-08-20 16:00:00,35.0989990234375,8.041999816894531,38.14500045776367,9.140999794006348,-3.7100000381469727,-2.5269999504089355,42.397499084472656 -9977,2017-08-20 17:00:00,37.52799987792969,8.963000297546387,38.97600173950195,9.32800006866455,-2.494999885559082,-2.5269999504089355,40.20000076293945 -9978,2017-08-20 18:00:00,35.014999389648445,7.623000144958496,37.15299987792969,7.854000091552732,-1.4500000476837158,-1.2580000162124634,39.54100036621094 -9979,2017-08-20 19:00:00,35.518001556396484,8.125,37.6619987487793,8.578000068664549,-1.5889999866485596,-1.2580000162124634,38.6619987487793 -9980,2017-08-20 20:00:00,36.68999862670898,8.795999526977539,37.742000579833984,8.685000419616701,0.0,0.0,37.5634994506836 -9981,2017-08-20 21:00:00,33.84199905395508,8.208999633789062,33.990001678466804,7.934999942779541,0.0,0.0,36.90399932861328 -9982,2017-08-20 22:00:00,31.832000732421875,8.041999816894531,32.67599868774414,8.095000267028809,0.0,0.0,36.24499893188477 -9983,2017-08-20 23:00:00,29.82099914550781,6.701000213623048,30.55900001525879,6.915999889373777,0.0,0.0,35.58599853515625 -9984,2017-08-21 00:00:00,27.308000564575195,6.031000137329103,29.218000411987305,7.077000141143799,-1.375,-1.2580000162124634,35.145999908447266 -9985,2017-08-21 01:00:00,26.88999938964844,5.863999843597412,28.06599998474121,6.191999912261963,-1.22599995136261,0.0,34.926498413085945 -9986,2017-08-21 02:00:00,25.80100059509277,6.701000213623048,27.10099983215332,7.425000190734862,-1.2580000162124634,0.0,34.707000732421875 -9987,2017-08-21 03:00:00,25.29800033569336,5.276999950408936,26.618000030517567,6.058000087738037,0.0,0.0,34.268001556396484 -9988,2017-08-21 04:00:00,25.80100059509277,6.7849998474121085,27.07399940490723,7.372000217437744,-1.22599995136261,0.0,34.04800033569336 -9989,2017-08-21 05:00:00,27.97900009155273,6.86899995803833,28.44099998474121,7.0229997634887695,0.0,0.0,33.827999114990234 -9990,2017-08-21 06:00:00,29.98900032043457,7.874000072479247,31.711000442504893,8.444000244140625,-1.3220000267028809,-1.2369999885559082,33.388999938964844 -9991,2017-08-21 07:00:00,30.32399940490723,7.958000183105469,31.28199958801269,7.934999942779541,0.0,0.0,33.60850143432617 -9992,2017-08-21 08:00:00,29.56999969482422,7.203999996185303,33.31999969482422,8.630999565124513,-2.611999988555908,-1.2899999618530271,35.36600112915039 -9993,2017-08-21 09:00:00,32.92100143432617,8.208999633789062,35.86600112915039,9.302000045776367,-2.6440000534057617,-1.2899999618530271,38.22249984741211 -9994,2017-08-21 10:00:00,32.333999633789055,8.461000442504883,35.03499984741211,9.274999618530272,-2.6440000534057617,-1.2899999618530271,40.85900115966797 -9995,2017-08-21 11:00:00,32.75299835205078,7.706999778747559,35.0620002746582,8.578000068664549,-2.6440000534057617,-1.2899999618530271,42.397499084472656 -9996,2017-08-21 12:00:00,30.99399948120117,6.031000137329103,34.41899871826172,7.290999889373777,-2.6440000534057617,-1.2899999618530271,44.59500122070313 -9997,2017-08-21 13:00:00,32.58599853515625,7.706999778747559,35.40999984741211,8.711999893188478,-2.6440000534057617,-1.2899999618530271,45.03400039672852 -9998,2017-08-21 14:00:00,31.413000106811523,7.203999996185303,33.613998413085945,8.229000091552733,-2.6440000534057617,-1.2899999618530271,47.67100143432617 -9999,2017-08-21 15:00:00,30.99399948120117,7.789999961853027,32.944000244140625,8.416999816894531,-1.4290000200271606,-1.2369999885559082,48.11050033569336 -10000,2017-08-21 16:00:00,31.58099937438965,7.874000072479247,34.365001678466804,8.630999565124513,-2.5799999237060547,-1.2150000333786009,46.571998596191406 -10001,2017-08-21 17:00:00,29.65399932861328,6.198999881744385,31.738000869750977,7.077000141143799,-1.3220000267028809,-1.2150000333786009,45.69300079345703 -10002,2017-08-21 18:00:00,28.062000274658203,5.193999767303467,29.673999786376957,5.869999885559082,-1.2899999618530271,-1.2790000438690186,44.81399917602539 -10003,2017-08-21 19:00:00,32.75299835205078,7.623000144958496,33.077999114990234,7.71999979019165,0.0,0.0,43.05699920654297 -10004,2017-08-21 20:00:00,33.005001068115234,7.958000183105469,33.82899856567383,8.069000244140625,0.0,0.0,40.63949966430664 -10005,2017-08-21 21:00:00,34.261001586914055,8.795999526977539,34.17699813842773,8.36299991607666,0.0,0.0,39.10200119018555 -10006,2017-08-21 22:00:00,31.413000106811523,8.041999816894531,32.139999389648445,8.095000267028809,0.0,0.0,38.22299957275391 -10007,2017-08-21 23:00:00,29.90500068664551,7.706999778747559,30.93400001525879,7.77400016784668,0.0,0.0,37.78300094604492 -10008,2017-08-22 00:00:00,27.22500038146973,7.874000072479247,28.44099998474121,7.960999965667725,0.0,0.0,37.78300094604492 -10009,2017-08-22 01:00:00,26.05200004577637,6.449999809265138,28.09199905395508,7.077000141143799,-1.2790000438690186,-1.2150000333786009,37.78300094604492 -10010,2017-08-22 02:00:00,26.2189998626709,6.449999809265138,27.23500061035156,6.835000038146973,0.0,0.0,37.34400177001953 -10011,2017-08-22 03:00:00,25.632999420166016,6.701000213623048,25.947999954223643,6.701000213623048,0.0,0.0,37.34400177001953 -10012,2017-08-22 04:00:00,25.71699905395508,6.2829999923706055,26.483999252319336,6.809000015258789,0.0,0.0,36.90399932861328 -10013,2017-08-22 05:00:00,24.292999267578125,5.276999950408936,25.840999603271484,6.460000038146973,-1.2690000534057615,-1.22599995136261,36.46500015258789 -10014,2017-08-22 06:00:00,25.88400077819824,6.7849998474121085,25.733999252319336,6.380000114440918,0.0,0.0,36.025001525878906 -10015,2017-08-22 07:00:00,21.44499969482422,4.775000095367432,24.795000076293945,6.486999988555907,-3.252000093460083,-1.406999945640564,36.025001525878906 -10016,2017-08-22 08:00:00,22.78499984741211,4.5229997634887695,26.56399917602539,6.2189998626708975,-3.742000102996826,-1.2150000333786009,37.34400177001953 -10017,2017-08-22 09:00:00,27.141000747680664,7.037000179290772,30.53199958801269,8.604999542236326,-3.6570000648498535,-1.2150000333786009,38.88199996948242 -10018,2017-08-22 10:00:00,32.250999450683594,7.958000183105469,35.38399887084961,9.248000144958496,-2.388000011444092,-1.2150000333786009,41.73849868774414 -10019,2017-08-22 11:00:00,33.84199905395508,8.293000221252441,36.777000427246094,9.302000045776367,-3.0169999599456787,-1.2690000534057615,44.59450149536133 -10020,2017-08-22 12:00:00,32.669998168945305,5.947999954223633,35.54399871826172,7.1570000648498535,-1.7480000257492063,-1.2690000534057615,46.352500915527344 -10021,2017-08-22 13:00:00,33.590999603271484,6.449999809265138,35.91999816894531,7.317999839782715,-2.5269999504089355,-1.4500000476837158,46.79199981689453 -10022,2017-08-22 14:00:00,34.0099983215332,7.706999778747559,36.80400085449219,8.604999542236326,-2.5269999504089355,-1.4500000476837158,48.33000183105469 -10023,2017-08-22 15:00:00,33.92599868774414,7.372000217437744,36.1609992980957,7.854000091552732,-2.5269999504089355,-1.4500000476837158,49.42850112915039 -10024,2017-08-22 16:00:00,33.42300033569336,6.449999809265138,35.678001403808594,7.210999965667725,-2.5269999504089355,-1.4500000476837158,48.76950073242188 -10025,2017-08-22 17:00:00,33.92599868774414,6.198999881744385,35.518001556396484,6.7820000648498535,-1.2690000534057615,-1.375,47.45100021362305 -10026,2017-08-22 18:00:00,28.899999618530277,4.60699987411499,33.88199996948242,6.245999813079834,-4.105000019073486,-2.45199990272522,45.69300079345703 -10027,2017-08-22 19:00:00,31.32900047302246,5.52899980545044,34.98199844360352,7.0229997634887695,-2.5480000972747803,-2.505000114440918,44.375 -10028,2017-08-22 20:00:00,36.35499954223633,7.623000144958496,36.696998596191406,7.372000217437744,0.0,0.0,43.2765007019043 -10029,2017-08-22 21:00:00,34.93099975585937,8.878999710083008,37.2869987487793,9.140999794006348,-1.3969999551773071,-1.2899999618530271,42.397499084472656 -10030,2017-08-22 22:00:00,33.50699996948242,7.789999961853027,36.402000427246094,8.14900016784668,-2.888999938964844,0.0,41.73799896240234 -10031,2017-08-22 23:00:00,32.58599853515625,7.958000183105469,34.472000122070305,7.800000190734862,-1.406999945640564,0.0,41.29899978637695 -10032,2017-08-23 00:00:00,29.738000869750977,6.86899995803833,32.30099868774414,7.263999938964844,-2.9749999046325684,0.0,40.20000076293945 -10033,2017-08-23 01:00:00,24.87899971008301,5.276999950408936,29.48600006103516,6.7820000648498535,-4.296999931335448,-1.2150000333786009,39.760501861572266 -10034,2017-08-23 02:00:00,26.386999130249023,5.445000171661377,28.57500076293945,6.031000137329103,-2.611999988555908,0.0,39.32149887084961 -10035,2017-08-23 03:00:00,23.20400047302246,5.026000022888184,26.67200088500977,6.7820000648498535,-2.5160000324249268,-1.2790000438690186,39.10150146484375 -10036,2017-08-23 04:00:00,22.78499984741211,4.5229997634887695,26.77899932861328,5.978000164031982,-3.6459999084472656,-1.2150000333786009,38.66249847412109 -10037,2017-08-23 05:00:00,24.54400062561035,5.026000022888184,26.18899917602539,5.334000110626222,-1.3969999551773071,0.0,38.44250106811523 -10038,2017-08-23 06:00:00,21.025999069213867,0.0,25.625999450683597,5.119999885559082,-3.913000106811523,-2.5269999504089355,38.44250106811523 -10039,2017-08-23 07:00:00,18.34499931335449,0.0,22.864999771118164,4.100999832153319,-3.9449999332427983,-2.5269999504089355,38.00299835205078 -10040,2017-08-23 08:00:00,20.356000900268555,0.0,23.589000701904297,3.99399995803833,-3.891000032424927,-2.5269999504089355,39.32099914550781 -10041,2017-08-23 09:00:00,25.71699905395508,5.863999843597412,28.333999633789062,7.130000114440918,-2.5910000801086426,-2.5269999504089355,40.63949966430664 -10042,2017-08-23 10:00:00,28.39699935913086,6.198999881744385,32.30099868774414,8.015000343322754,-3.816999912261963,-2.5269999504089355,43.05699920654297 -10043,2017-08-23 11:00:00,30.072999954223643,6.366000175476074,33.80199813842773,8.14900016784668,-3.816999912261963,-2.5269999504089355,45.4734992980957 -10044,2017-08-23 12:00:00,29.15099906921387,5.026000022888184,33.722000122070305,7.23799991607666,-3.816999912261963,-2.5269999504089355,46.5724983215332 -10045,2017-08-23 13:00:00,30.32399940490723,5.611999988555908,35.49100112915039,7.800000190734862,-3.869999885559082,-2.5269999504089355,47.45149993896485 -10046,2017-08-23 14:00:00,29.40299987792969,6.031000137329103,34.01599884033203,7.960999965667725,-3.785000085830689,-2.5269999504089355,49.64849853515625 -10047,2017-08-23 15:00:00,31.496999740600582,6.198999881744385,34.365001678466804,7.50600004196167,-2.5160000324249268,-2.5269999504089355,49.86800003051758 -10048,2017-08-23 16:00:00,31.16200065612793,6.198999881744385,34.12400054931641,7.692999839782715,-3.742000102996826,-2.5269999504089355,48.76950073242188 -10049,2017-08-23 17:00:00,28.899999618530277,5.026000022888184,33.238998413085945,7.077000141143799,-3.6679999828338623,-2.5269999504089355,47.45149993896485 -10050,2017-08-23 18:00:00,27.22500038146973,5.110000133514403,30.5049991607666,6.326000213623048,-3.720999956130981,-2.5269999504089355,46.5724983215332 -10051,2017-08-23 19:00:00,29.40299987792969,5.611999988555908,33.15900039672852,7.263999938964844,-3.838000059127808,-2.5269999504089355,45.25350189208984 -10052,2017-08-23 20:00:00,33.34000015258789,7.623000144958496,35.73199844360352,8.390000343322754,-1.5460000038146973,-1.3220000267028809,44.15549850463867 -10053,2017-08-23 21:00:00,34.0099983215332,8.041999816894531,35.19599914550781,7.907999992370605,0.0,0.0,43.2765007019043 -10054,2017-08-23 22:00:00,33.34000015258789,7.789999961853027,34.23099899291992,7.61299991607666,0.0,0.0,42.397499084472656 -10055,2017-08-23 23:00:00,30.57500076293945,7.203999996185303,30.638999938964844,6.701000213623048,0.0,0.0,41.51850128173828 -10056,2017-08-24 00:00:00,28.565000534057607,7.789999961853027,29.13800048828125,7.559000015258789,0.0,0.0,40.85950088500977 -10057,2017-08-24 01:00:00,26.88999938964844,6.618000030517577,28.68199920654297,7.23799991607666,-1.3009999990463257,0.0,40.63949966430664 -10058,2017-08-24 02:00:00,25.88400077819824,6.114999771118164,27.66399955749512,6.486999988555907,-1.22599995136261,0.0,40.20000076293945 -10059,2017-08-24 03:00:00,27.559999465942383,6.7849998474121085,28.89699935913086,6.7820000648498535,0.0,0.0,39.98049926757813 -10060,2017-08-24 04:00:00,26.55400085449219,6.86899995803833,27.020000457763672,6.5939998626708975,0.0,0.0,39.760501861572266 -10061,2017-08-24 05:00:00,26.88999938964844,6.701000213623048,26.56399917602539,6.085000038146973,0.0,0.0,39.32149887084961 -10062,2017-08-24 06:00:00,24.459999084472656,5.445000171661377,26.05500030517578,5.951000213623048,-1.3220000267028809,0.0,38.88199996948242 -10063,2017-08-24 07:00:00,25.29800033569336,6.449999809265138,26.16200065612793,6.298999786376952,0.0,0.0,38.88199996948242 -10064,2017-08-24 08:00:00,25.80100059509277,5.52899980545044,28.30699920654297,6.566999912261963,-1.3650000095367432,-1.2899999618530271,40.41949844360352 -10065,2017-08-24 09:00:00,33.25600051879883,8.628000259399414,35.19599914550781,9.0600004196167,-1.2369999885559082,-1.2899999618530271,42.397499084472656 -10066,2017-08-24 10:00:00,38.03099822998047,9.465999603271484,38.89500045776367,9.248000144958496,0.0,0.0,44.81449890136719 -10067,2017-08-24 11:00:00,38.86800003051758,8.878999710083008,40.66400146484375,9.006999969482422,-1.3220000267028809,-1.246999979019165,47.23149871826172 -10068,2017-08-24 12:00:00,38.86800003051758,7.454999923706055,39.94100189208984,7.479000091552732,0.0,-1.2150000333786009,48.33000183105469 -10069,2017-08-24 13:00:00,40.20899963378906,8.125,41.28099822998047,8.041999816894531,0.0,-1.375,48.98949813842773 -10070,2017-08-24 14:00:00,40.20899963378906,9.130999565124512,40.77199935913086,8.873000144958496,0.0,0.0,50.74700164794922 -10071,2017-08-24 15:00:00,40.04100036621094,9.29800033569336,41.62900161743164,9.354999542236328,-1.6419999599456787,-1.3969999551773071,51.40599822998047 -10072,2017-08-24 16:00:00,38.95199966430664,8.208999633789062,39.887001037597656,7.98799991607666,0.0,0.0,49.64849853515625 -10073,2017-08-24 17:00:00,35.93600082397461,7.623000144958496,36.858001708984375,7.263999938964844,0.0,0.0,45.91299819946289 -10074,2017-08-24 18:00:00,33.17200088500977,6.7849998474121085,33.93600082397461,6.2729997634887695,0.0,0.0,40.41949844360352 -10075,2017-08-24 19:00:00,38.86800003051758,9.633000373840332,36.375,7.1570000648498535,2.5910000801086426,0.0,38.44250106811523 -10076,2017-08-24 20:00:00,36.43899917602539,7.789999961853027,37.6619987487793,7.479000091552732,0.0,0.0,38.22249984741211 -10077,2017-08-24 21:00:00,40.04100036621094,10.052000045776367,38.49300003051758,7.665999889373777,1.2150000333786009,0.0,38.66249847412109 -10078,2017-08-24 22:00:00,37.19300079345703,9.04699993133545,36.9119987487793,7.479000091552732,0.0,0.0,38.66249847412109 -10079,2017-08-24 23:00:00,34.429000854492195,8.628000259399414,34.097000122070305,7.425000190734862,0.0,0.0,39.10150146484375 -10080,2017-08-25 00:00:00,29.48600006103516,6.533999919891357,31.97900009155273,6.835000038146973,-1.6419999599456787,0.0,39.32149887084961 -10081,2017-08-25 01:00:00,26.386999130249023,5.276999950408936,29.4060001373291,6.2729997634887695,-2.463000059127808,-1.246999979019165,39.10200119018555 -10082,2017-08-25 02:00:00,27.81100082397461,5.863999843597412,28.468000411987305,5.763000011444093,0.0,0.0,38.44250106811523 -10083,2017-08-25 03:00:00,24.125,4.941999912261963,27.42200088500977,5.816999912261963,-2.687000036239624,-1.2369999885559082,38.00299835205078 -10084,2017-08-25 04:00:00,26.88999938964844,6.449999809265138,27.23500061035156,6.111999988555907,0.0,0.0,37.5634994506836 -10085,2017-08-25 05:00:00,25.29800033569336,5.611999988555908,27.020000457763672,5.683000087738037,-1.2790000438690186,0.0,37.124000549316406 -10086,2017-08-25 06:00:00,25.88400077819824,5.863999843597412,27.44899940490723,6.058000087738037,-1.524999976158142,0.0,37.124000549316406 -10087,2017-08-25 07:00:00,25.381999969482425,6.701000213623048,27.12700080871582,6.433000087738037,-1.343000054359436,0.0,37.124000549316406 -10088,2017-08-25 08:00:00,25.968000411987305,6.114999771118164,28.8700008392334,6.728000164031982,-2.697000026702881,-1.2790000438690186,38.88199996948242 -10089,2017-08-25 09:00:00,30.57500076293945,7.372000217437744,33.10499954223633,8.390000343322754,-2.803999900817871,-1.2580000162124634,41.07899856567383 -10090,2017-08-25 10:00:00,36.94200134277344,8.376999855041504,39.24399948120117,8.899999618530273,-1.493000030517578,-1.2580000162124634,41.29899978637695 -10091,2017-08-25 11:00:00,38.03099822998047,7.958000183105469,40.20899963378906,8.630999565124513,-1.3860000371932983,-1.3329999446868896,44.15549850463867 -10092,2017-08-25 12:00:00,35.182998657226555,7.288000106811522,38.06399917602539,8.14900016784668,-2.7929999828338623,-1.3109999895095823,44.15549850463867 -10093,2017-08-25 13:00:00,34.93099975585937,7.203999996185303,38.09099960327149,8.203000068664549,-1.6100000143051147,-1.5670000314712524,40.20000076293945 -10094,2017-08-25 14:00:00,33.005001068115234,7.454999923706055,36.9379997253418,8.791999816894531,-3.6679999828338623,-1.715999960899353,36.464500427246094 -10095,2017-08-25 15:00:00,33.590999603271484,7.539000034332275,37.20600128173828,8.791999816894531,-3.5929999351501465,-1.715999960899353,37.5634994506836 -10096,2017-08-25 16:00:00,33.42300033569336,6.953000068664551,36.992000579833984,8.336999893188478,-3.5929999351501465,-1.715999960899353,39.760501861572266 -10097,2017-08-25 17:00:00,28.81599998474121,4.440000057220459,32.514999389648445,5.978000164031982,-3.6040000915527344,-1.715999960899353,34.707000732421875 -10098,2017-08-25 18:00:00,29.90500068664551,5.026000022888184,33.292999267578125,6.460000038146973,-3.6040000915527344,-1.715999960899353,32.5099983215332 -10099,2017-08-25 19:00:00,28.983999252319336,4.775000095367432,32.72999954223633,6.620999813079834,-3.433000087738037,-1.715999960899353,31.410999298095703 -10100,2017-08-25 20:00:00,30.1560001373291,6.449999809265138,31.54999923706055,7.317999839782715,-1.5140000581741333,-1.715999960899353,29.653499603271484 -10101,2017-08-25 21:00:00,27.559999465942383,5.445000171661377,31.711000442504893,7.452000141143799,-2.9530000686645512,-1.715999960899353,30.312000274658203 -10102,2017-08-25 22:00:00,31.58099937438965,6.701000213623048,34.06999969482422,7.77400016784668,-1.3539999723434448,-1.715999960899353,30.97150039672852 -10103,2017-08-25 23:00:00,30.072999954223643,6.2829999923706055,32.514999389648445,7.372000217437744,-2.1960000991821294,-1.715999960899353,31.410999298095703 -10104,2017-08-26 00:00:00,29.066999435424805,6.86899995803833,30.69300079345703,7.532000064849853,-1.2790000438690186,-1.715999960899353,31.850500106811523 -10105,2017-08-26 01:00:00,26.13599967956543,5.947999954223633,29.51300048828125,7.77400016784668,-2.6760001182556152,-2.430999994277954,32.290000915527344 -10106,2017-08-26 02:00:00,23.1200008392334,4.941999912261963,26.88599967956543,6.7820000648498535,-3.5720000267028813,-2.430999994277954,32.5099983215332 -10107,2017-08-26 03:00:00,23.95800018310547,4.859000205993652,27.636999130249023,7.0229997634887695,-3.36899995803833,-2.430999994277954,32.94900131225586 -10108,2017-08-26 04:00:00,23.035999298095703,5.193999767303467,27.04700088500977,7.184000015258789,-3.390000104904175,-2.430999994277954,33.16899871826172 -10109,2017-08-26 05:00:00,21.863000869750977,4.440000057220459,25.30500030517578,6.460000038146973,-3.390000104904175,-2.430999994277954,33.388999938964844 -10110,2017-08-26 06:00:00,24.87899971008301,5.026000022888184,27.395000457763672,6.513999938964844,-1.4390000104904177,-2.430999994277954,33.388999938964844 -10111,2017-08-26 07:00:00,21.36100006103516,0.0,24.47400093078613,5.0929999351501465,-3.742000102996826,-2.430999994277954,33.388999938964844 -10112,2017-08-26 08:00:00,23.20400047302246,0.0,25.68000030517578,4.63700008392334,-2.8359999656677246,-2.430999994277954,33.388999938964844 -10113,2017-08-26 09:00:00,26.80599975585937,5.110000133514403,29.51300048828125,6.298999786376952,-2.8359999656677246,-2.430999994277954,33.60850143432617 -10114,2017-08-26 10:00:00,30.239999771118164,7.119999885559082,32.944000244140625,8.336999893188478,-2.611999988555908,-2.430999994277954,33.827999114990234 -10115,2017-08-26 11:00:00,32.16699981689453,6.86899995803833,35.222999572753906,8.121999740600586,-2.664999961853028,-2.430999994277954,34.487499237060554 -10116,2017-08-26 12:00:00,32.83700180053711,6.031000137329103,35.678001403808594,7.23799991607666,-2.96399998664856,-2.430999994277954,35.58599853515625 -10117,2017-08-26 13:00:00,35.014999389648445,7.623000144958496,38.38600158691406,8.899999618530273,-2.7720000743865967,-2.430999994277954,36.68450164794922 -10118,2017-08-26 14:00:00,36.1879997253418,8.878999710083008,38.52000045776367,9.48900032043457,-1.493000030517578,-2.430999994277954,37.124000549316406 -10119,2017-08-26 15:00:00,32.16699981689453,7.119999885559082,35.222999572753906,8.175999641418457,-2.7929999828338623,-2.430999994277954,37.34400177001953 -10120,2017-08-26 16:00:00,40.54399871826172,9.717000007629396,41.54899978637695,9.435999870300291,0.0,0.0,38.44250106811523 -10121,2017-08-26 17:00:00,37.025001525878906,6.86899995803833,40.262001037597656,7.827000141143799,-2.740000009536743,-1.2899999618530271,39.32149887084961 -10122,2017-08-26 18:00:00,39.37099838256836,9.550000190734863,41.17399978637695,9.838000297546388,-1.6419999599456787,-1.2690000534057615,38.88199996948242 -10123,2017-08-26 19:00:00,40.71099853515625,9.130999565124512,40.262001037597656,7.98799991607666,0.0,0.0,38.00299835205078 -10124,2017-08-26 20:00:00,40.459999084472656,8.795999526977539,40.93199920654297,8.496999740600586,0.0,-1.246999979019165,37.124000549316406 -10125,2017-08-26 21:00:00,41.2140007019043,9.29800033569336,42.83599853515625,9.16800022125244,0.0,0.0,36.46500015258789 -10126,2017-08-26 22:00:00,34.93099975585937,8.628000259399414,35.8120002746582,8.657999992370605,0.0,0.0,36.025001525878906 -10127,2017-08-26 23:00:00,32.58599853515625,7.874000072479247,35.57099914550781,9.086999893188477,-2.664999961853028,-1.5570000410079956,35.36600112915039 -10128,2017-08-27 00:00:00,35.26599884033203,9.800999641418455,37.823001861572266,10.133000373840332,-2.463000059127808,-1.4179999828338623,34.487499237060554 -10129,2017-08-27 01:00:00,36.77399826049805,9.550000190734863,38.92200088500977,9.972000122070312,-1.5889999866485596,-1.7059999704360962,34.487499237060554 -10130,2017-08-27 02:00:00,34.847000122070305,10.220000267028809,37.15299987792969,11.12399959564209,-2.463000059127808,-1.2150000333786009,34.487499237060554 -10131,2017-08-27 03:00:00,35.685001373291016,10.722000122070312,36.858001708984375,10.69499969482422,0.0,0.0,34.04800033569336 -10132,2017-08-27 04:00:00,35.85300064086914,10.470999717712402,37.42100143432617,10.53499984741211,0.0,0.0,34.04800033569336 -10133,2017-08-27 05:00:00,36.94200134277344,10.38700008392334,38.680999755859375,10.560999870300291,0.0,-1.2790000438690186,34.268001556396484 -10134,2017-08-27 06:00:00,34.512001037597656,9.633000373840332,36.402000427246094,10.024999618530272,-1.8339999914169312,-1.406999945640564,34.268001556396484 -10135,2017-08-27 07:00:00,34.847000122070305,10.13599967956543,36.8849983215332,10.401000022888184,-1.715999960899353,-1.2790000438690186,34.268001556396484 -10136,2017-08-27 08:00:00,33.17200088500977,8.543999671936035,36.80400085449219,10.024999618530272,-2.6010000705718994,-1.2690000534057615,35.80550003051758 -10137,2017-08-27 09:00:00,35.93600082397461,8.711999893188478,39.64599990844727,9.649999618530272,-3.82699990272522,-1.2690000534057615,37.5634994506836 -10138,2017-08-27 10:00:00,40.3759994506836,10.638999938964844,44.06900024414063,11.312000274658203,-2.8250000476837163,-1.2690000534057615,39.76100158691406 -10139,2017-08-27 11:00:00,43.30799865722656,10.55500030517578,46.15999984741211,11.017000198364258,-2.8250000476837163,-1.2690000534057615,41.95800018310547 -10140,2017-08-27 12:00:00,42.63800048828125,10.303000450134276,45.08700180053711,10.37399959564209,-1.2899999618530271,-1.2690000534057615,43.71599960327149 -10141,2017-08-27 13:00:00,45.98899841308594,11.644000053405762,48.49200057983398,11.472999572753904,-2.5910000801086426,-1.2690000534057615,45.25400161743164 -10142,2017-08-27 14:00:00,40.125,10.220000267028809,42.43399810791016,10.560999870300291,-1.3329999446868896,-1.2790000438690186,47.012001037597656 -10143,2017-08-27 15:00:00,40.125,8.543999671936035,41.22700119018555,8.496999740600586,0.0,-1.22599995136261,48.54949951171875 -10144,2017-08-27 16:00:00,48.75299835205078,13.487000465393065,49.72499847412109,12.678999900817873,0.0,0.0,48.11050033569336 -10145,2017-08-27 17:00:00,47.74800109863281,12.5649995803833,49.8849983215332,12.196999549865724,-1.4819999933242798,-1.3329999446868896,47.23149871826172 -10146,2017-08-27 18:00:00,44.56499862670898,10.638999938964844,45.6500015258789,10.588000297546388,-1.3109999895095823,-1.2150000333786009,45.91299819946289 -10147,2017-08-27 19:00:00,45.82099914550781,11.309000015258787,46.2130012512207,10.29300022125244,0.0,0.0,44.375 -10148,2017-08-27 20:00:00,46.57500076293945,10.638999938964844,46.5880012512207,9.623000144958496,0.0,0.0,42.617000579833984 -10149,2017-08-27 21:00:00,49.25600051879883,12.314000129699709,48.84000015258789,10.239999771118164,0.0,0.0,41.73799896240234 -10150,2017-08-27 22:00:00,49.84199905395508,14.324000358581545,51.43999862670898,12.732999801635742,0.0,0.0,41.07899856567383 -10151,2017-08-27 23:00:00,42.47000122070313,11.5600004196167,43.80099868774414,10.937000274658203,0.0,0.0,40.63949966430664 -10152,2017-08-28 00:00:00,43.391998291015625,12.314000129699709,44.229000091552734,10.989999771118164,0.0,0.0,40.20000076293945 -10153,2017-08-28 01:00:00,41.96799850463867,11.810999870300291,43.39899826049805,10.74899959564209,0.0,0.0,39.98049926757813 -10154,2017-08-28 02:00:00,39.53799819946289,11.895000457763672,39.80699920654297,10.614999771118164,0.0,0.0,39.54100036621094 -10155,2017-08-28 03:00:00,37.36100006103516,10.470999717712402,38.33200073242188,9.70400047302246,0.0,0.0,39.10150146484375 -10156,2017-08-28 04:00:00,34.261001586914055,9.130999565124512,35.73199844360352,8.73900032043457,-1.3109999895095823,0.0,38.88199996948242 -10157,2017-08-28 05:00:00,36.02000045776367,9.465999603271484,37.2869987487793,8.685000419616701,0.0,0.0,38.44250106811523 -10158,2017-08-28 06:00:00,40.9630012512207,12.39799976348877,42.29899978637695,11.28499984741211,0.0,0.0,38.22299957275391 -10159,2017-08-28 07:00:00,39.2869987487793,12.229999542236328,41.81700134277344,11.795000076293944,-1.22599995136261,0.0,38.00299835205078 -10160,2017-08-28 08:00:00,35.26599884033203,7.958000183105469,38.17100143432617,8.95300006866455,-2.7929999828338623,-1.2369999885559082,39.54100036621094 -10161,2017-08-28 09:00:00,43.14099884033203,12.64900016784668,45.75699996948242,12.894000053405762,-2.5160000324249268,-1.2369999885559082,41.95800018310547 -10162,2017-08-28 10:00:00,40.459999084472656,9.381999969482422,43.31800079345703,9.972000122070312,-2.7720000743865967,-1.2369999885559082,45.03400039672852 -10163,2017-08-28 11:00:00,44.81600189208984,11.057000160217283,47.23199844360352,11.204999923706056,-1.3969999551773071,-1.246999979019165,47.89099884033203 -10164,2017-08-28 12:00:00,45.06700134277344,10.470999717712402,47.25899887084961,10.37399959564209,-1.5889999866485596,-1.3009999990463257,49.42900085449219 -10165,2017-08-28 13:00:00,50.26100158691406,11.644000053405762,53.23600006103516,11.446000099182127,-2.664999961853028,-1.375,50.52750015258789 -10166,2017-08-28 14:00:00,50.59600067138672,12.314000129699709,53.02199935913086,11.982000350952148,-2.664999961853028,-1.375,52.28549957275391 -10167,2017-08-28 15:00:00,51.34999847412109,13.234999656677244,53.10200119018555,12.25,-1.5140000581741333,-1.375,52.50500106811523 -10168,2017-08-28 16:00:00,49.84199905395508,12.984000205993652,52.75400161743164,12.41100025177002,-2.6760001182556152,-1.2150000333786009,50.74700164794922 -10169,2017-08-28 17:00:00,50.59600067138672,12.984000205993652,52.27099990844727,11.875,-1.3650000095367432,0.0,49.64799880981445 -10170,2017-08-28 18:00:00,50.68000030517578,12.899999618530272,51.43999862670898,11.741000175476074,0.0,0.0,48.54999923706055 -10171,2017-08-28 19:00:00,49.67399978637695,12.145999908447266,49.69800186157226,10.855999946594238,0.0,0.0,47.012001037597656 -10172,2017-08-28 20:00:00,54.11399841308594,14.072999954223633,53.63800048828125,11.633999824523926,0.0,0.0,45.4734992980957 -10173,2017-08-28 21:00:00,56.125,16.586000442504886,55.32699966430664,13.911999702453612,1.7910000085830688,0.0,44.375 -10174,2017-08-28 22:00:00,50.76300048828125,13.152000427246096,52.48600006103516,12.357000350952148,-1.2150000333786009,-1.3969999551773071,43.49599838256836 -10175,2017-08-28 23:00:00,49.0880012512207,12.314000129699709,49.80500030517578,11.366000175476074,0.0,0.0,43.05699920654297 -10176,2017-08-29 00:00:00,46.49100112915039,12.062999725341797,48.00899887084961,11.553000450134276,-1.2899999618530271,-1.2369999885559082,42.397499084472656 -10177,2017-08-29 01:00:00,44.3129997253418,11.979000091552734,45.54299926757813,11.232000350952148,0.0,0.0,41.51850128173828 -10178,2017-08-29 02:00:00,40.87900161743164,10.38700008392334,42.43399810791016,10.31999969482422,-1.4500000476837158,0.0,40.63949966430664 -10179,2017-08-29 03:00:00,41.38100051879883,11.392000198364258,42.165000915527344,10.614999771118164,0.0,0.0,39.760501861572266 -10180,2017-08-29 04:00:00,36.858001708984375,9.21399974822998,37.71599960327149,9.32800006866455,0.0,0.0,39.32149887084961 -10181,2017-08-29 05:00:00,42.55400085449219,11.979000091552734,44.44400024414063,11.633999824523926,-1.3539999723434448,-1.2150000333786009,38.88199996948242 -10182,2017-08-29 06:00:00,38.198001861572266,11.057000160217283,40.15499877929688,10.855999946594238,-1.4609999656677246,0.0,38.6619987487793 -10183,2017-08-29 07:00:00,38.36600112915039,10.38700008392334,39.887001037597656,10.133000373840332,-1.503000020980835,0.0,38.44250106811523 -10184,2017-08-29 08:00:00,39.790000915527344,10.220000267028809,41.20000076293945,10.159000396728516,0.0,0.0,38.00299835205078 -10185,2017-08-29 09:00:00,43.47600173950195,12.314000129699709,46.07899856567383,12.383999824523926,-2.483999967575073,-1.3220000267028809,37.78300094604492 -10186,2017-08-29 10:00:00,38.617000579833984,8.376999855041504,41.36100006103516,8.95300006866455,-2.377000093460083,-1.4500000476837158,38.00299835205078 -10187,2017-08-29 11:00:00,39.874000549316406,8.376999855041504,42.86199951171875,9.194000244140623,-2.740000009536743,-1.4500000476837158,38.88199996948242 -10188,2017-08-29 12:00:00,41.46500015258789,9.130999565124512,44.47100067138672,9.972000122070312,-2.5799999237060547,-1.4500000476837158,39.10200119018555 -10189,2017-08-29 13:00:00,42.1349983215332,10.220000267028809,44.76599884033203,10.480999946594238,-2.7720000743865967,-1.4500000476837158,38.6619987487793 -10190,2017-08-29 14:00:00,41.46500015258789,10.973999977111816,43.98799896240234,11.418999671936035,-2.782999992370605,-1.4500000476837158,38.22299957275391 -10191,2017-08-29 15:00:00,43.2239990234375,12.145999908447266,45.40900039672852,11.526000022888184,-2.5799999237060547,0.0,38.00299835205078 -10192,2017-08-29 16:00:00,43.55899810791016,11.225000381469728,45.8650016784668,11.472999572753904,-2.5269999504089355,-1.3009999990463257,37.34400177001953 -10193,2017-08-29 17:00:00,39.2869987487793,9.04699993133545,41.44200134277344,9.381999969482422,-2.6010000705718994,-1.2690000534057615,36.46500015258789 -10194,2017-08-29 18:00:00,42.1349983215332,10.890000343322754,44.28300094604492,10.614999771118164,-1.246999979019165,-1.3650000095367432,35.58599853515625 -10195,2017-08-29 19:00:00,41.79999923706055,11.810999870300291,40.74499893188477,10.213000297546388,0.0,0.0,34.926498413085945 -10196,2017-08-29 20:00:00,41.46500015258789,10.55500030517578,41.76300048828125,9.461999893188477,0.0,0.0,34.487499237060554 -10197,2017-08-29 21:00:00,44.39699935913086,13.821999549865724,44.47100067138672,12.277000427246096,0.0,0.0,34.04800033569336 -10198,2017-08-29 22:00:00,42.88899993896485,13.654000282287598,43.61299896240234,12.303999900817873,0.0,0.0,33.388999938964844 -10199,2017-08-29 23:00:00,36.60699844360352,10.973999977111816,38.198001861572266,10.668999671936035,0.0,0.0,33.388999938964844 -10200,2017-08-30 00:00:00,37.52799987792969,10.470999717712402,39.055999755859375,9.729999542236328,0.0,0.0,33.388999938964844 -10201,2017-08-30 01:00:00,39.790000915527344,11.309000015258787,40.95899963378906,10.69499969482422,0.0,0.0,33.388999938964844 -10202,2017-08-30 02:00:00,37.69599914550781,11.140999794006348,39.00199890136719,10.883000373840332,0.0,0.0,33.388999938964844 -10203,2017-08-30 03:00:00,38.36600112915039,11.5600004196167,38.38600158691406,10.588000297546388,0.0,0.0,33.388999938964844 -10204,2017-08-30 04:00:00,37.52799987792969,10.890000343322754,38.70800018310547,10.45400047302246,0.0,0.0,33.388999938964844 -10205,2017-08-30 05:00:00,35.518001556396484,8.963000297546387,36.80400085449219,9.006999969482422,0.0,0.0,33.388999938964844 -10206,2017-08-30 06:00:00,39.2869987487793,11.810999870300291,39.77999877929688,10.31999969482422,0.0,0.0,33.16899871826172 -10207,2017-08-30 07:00:00,42.55400085449219,13.73799991607666,39.512001037597656,11.043999671936035,2.632999897003174,0.0,33.16899871826172 -10208,2017-08-30 08:00:00,35.85300064086914,9.04699993133545,34.31100082397461,7.61299991607666,1.3860000371932983,0.0,33.388999938964844 -10209,2017-08-30 09:00:00,35.014999389648445,7.372000217437744,38.14500045776367,9.810999870300291,-3.5290000438690186,-2.664999961853028,33.827999114990234 -10210,2017-08-30 10:00:00,36.35499954223633,6.701000213623048,39.56499862670898,9.086999893188477,-2.313999891281128,-2.664999961853028,33.827999114990234 -10211,2017-08-30 11:00:00,38.198001861572266,10.470999717712402,40.93199920654297,11.151000022888184,-2.313999891281128,-1.4290000200271606,33.827999114990234 -10212,2017-08-30 12:00:00,37.44400024414063,9.04699993133545,41.01300048828125,9.838000297546388,-3.625,-1.4290000200271606,34.04800033569336 -10213,2017-08-30 13:00:00,39.20299911499024,10.722000122070312,42.27299880981445,11.097999572753906,-3.625,-1.4290000200271606,34.926498413085945 -10214,2017-08-30 14:00:00,35.85300064086914,9.968000411987305,39.11000061035156,10.133000373840332,-3.625,-1.2899999618530271,34.487499237060554 -10215,2017-08-30 15:00:00,35.93600082397461,9.885000228881836,38.97600173950195,10.45400047302246,-3.625,-1.2899999618530271,34.268001556396484 -10216,2017-08-30 16:00:00,37.61199951171875,10.805999755859377,41.28099822998047,11.33899974822998,-3.6459999084472656,-1.2899999618530271,33.60850143432617 -10217,2017-08-30 17:00:00,38.28200149536133,9.885000228881836,40.98600006103516,9.91800022125244,-2.367000102996826,-1.22599995136261,33.388999938964844 -10218,2017-08-30 18:00:00,35.0989990234375,8.543999671936035,37.84999847412109,9.086999893188477,-2.367000102996826,-1.343000054359436,33.388999938964844 -10219,2017-08-30 19:00:00,37.277000427246094,9.29800033569336,37.87699890136719,8.578000068664549,0.0,0.0,33.388999938964844 -10220,2017-08-30 20:00:00,39.2869987487793,10.890000343322754,40.02099990844727,10.133000373840332,0.0,0.0,32.94900131225586 -10221,2017-08-30 21:00:00,40.29199981689453,11.47599983215332,42.38000106811523,10.989999771118164,-1.343000054359436,0.0,32.94900131225586 -10222,2017-08-30 22:00:00,41.54899978637695,12.5649995803833,42.40700149536133,10.883000373840332,0.0,0.0,32.5099983215332 -10223,2017-08-30 23:00:00,38.617000579833984,12.062999725341797,39.86000061035156,11.204999923706056,0.0,0.0,32.06999969482422 -10224,2017-08-31 00:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10225,2017-08-31 01:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10226,2017-08-31 02:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10227,2017-08-31 03:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10228,2017-08-31 04:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10229,2017-08-31 05:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10230,2017-08-31 06:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10231,2017-08-31 07:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10232,2017-08-31 08:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10233,2017-08-31 09:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10234,2017-08-31 10:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10235,2017-08-31 11:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10236,2017-08-31 12:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10237,2017-08-31 13:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10238,2017-08-31 14:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10239,2017-08-31 15:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10240,2017-08-31 16:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10241,2017-08-31 17:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10242,2017-08-31 18:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10243,2017-08-31 19:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10244,2017-08-31 20:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10245,2017-08-31 21:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10246,2017-08-31 22:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10247,2017-08-31 23:00:00,34.09400177001953,8.963000297546387,36.402000427246094,8.979999542236328,-1.950999975204468,0.0,31.850500106811523 -10248,2017-09-01 00:00:00,32.83700180053711,8.376999855041504,35.8120002746582,8.925999641418457,-2.687000036239624,-1.2580000162124634,26.35700035095215 -10249,2017-09-01 01:00:00,32.501998901367195,8.208999633789062,34.847000122070305,8.685000419616701,-1.4709999561309814,-1.2369999885559082,25.25900077819824 -10250,2017-09-01 02:00:00,28.899999618530277,6.7849998474121085,30.7189998626709,7.3979997634887695,-1.3860000371932983,0.0,24.819499969482425 -10251,2017-09-01 03:00:00,33.088001251220696,9.04699993133545,34.87400054931641,9.006999969482422,-2.632999897003174,0.0,24.3799991607666 -10252,2017-09-01 04:00:00,31.99900054931641,8.543999671936035,34.097000122070305,8.657999992370605,-1.4179999828338623,0.0,24.3799991607666 -10253,2017-09-01 05:00:00,34.09400177001953,9.633000373840332,35.33000183105469,9.302000045776367,-1.2369999885559082,0.0,24.3799991607666 -10254,2017-09-01 06:00:00,35.85300064086914,10.13599967956543,36.80400085449219,9.48900032043457,0.0,0.0,25.25900077819824 -10255,2017-09-01 07:00:00,36.104000091552734,10.13599967956543,37.18000030517578,9.595999717712402,0.0,0.0,25.917999267578125 -10256,2017-09-01 08:00:00,25.88400077819824,4.690999984741211,28.44099998474121,5.629000186920166,-2.664999961853028,-1.22599995136261,27.23600006103516 -10257,2017-09-01 09:00:00,27.308000564575195,5.611999988555908,30.10300064086914,6.245999813079834,-2.664999961853028,-1.246999979019165,28.55500030517578 -10258,2017-09-01 10:00:00,29.066999435424805,6.114999771118164,31.46999931335449,6.460000038146973,-2.664999961853028,0.0,30.312000274658203 -10259,2017-09-01 11:00:00,28.481000900268555,6.114999771118164,31.38999938964844,6.5939998626708975,-2.664999961853028,-1.2690000534057615,32.290000915527344 -10260,2017-09-01 12:00:00,28.983999252319336,5.193999767303467,32.060001373291016,6.2189998626708975,-2.664999961853028,-1.2150000333786009,34.48699951171875 -10261,2017-09-01 13:00:00,32.75299835205078,7.706999778747559,35.25,8.095000267028809,-2.664999961853028,-1.246999979019165,37.5634994506836 -10262,2017-09-01 14:00:00,32.417999267578125,8.041999816894531,34.87400054931641,8.095000267028809,-2.664999961853028,0.0,40.20000076293945 -10263,2017-09-01 15:00:00,32.75299835205078,8.543999671936035,36.0,8.925999641418457,-2.664999961853028,-1.2150000333786009,40.63949966430664 -10264,2017-09-01 16:00:00,34.09400177001953,8.293000221252441,37.742000579833984,8.711999893188478,-2.664999961853028,-1.22599995136261,39.54100036621094 -10265,2017-09-01 17:00:00,39.37099838256836,9.465999603271484,42.54100036621094,10.024999618530272,-2.664999961853028,-1.2899999618530271,39.10200119018555 -10266,2017-09-01 18:00:00,37.946998596191406,9.04699993133545,40.69100189208984,9.220999717712402,-2.664999961853028,-1.3109999895095823,37.78300094604492 -10267,2017-09-01 19:00:00,38.198001861572266,9.29800033569336,39.055999755859375,8.069000244140625,0.0,0.0,36.90399932861328 -10268,2017-09-01 20:00:00,36.94200134277344,8.543999671936035,38.78799819946289,8.175999641418457,-1.4290000200271606,0.0,36.025001525878906 -10269,2017-09-01 21:00:00,37.36100006103516,11.309000015258787,38.17100143432617,10.213000297546388,0.0,0.0,35.145999908447266 -10270,2017-09-01 22:00:00,41.632999420166016,12.145999908447266,43.18399810791016,11.178000450134276,-1.3329999446868896,0.0,34.268001556396484 -10271,2017-09-01 23:00:00,39.874000549316406,11.225000381469728,41.28099822998047,10.722000122070312,-1.22599995136261,0.0,33.827999114990234 -10272,2017-09-02 00:00:00,35.60100173950195,9.381999969482422,36.696998596191406,8.604999542236326,0.0,0.0,32.94900131225586 -10273,2017-09-02 01:00:00,36.35499954223633,10.973999977111816,37.448001861572266,10.07900047302246,0.0,0.0,32.5099983215332 -10274,2017-09-02 02:00:00,29.48600006103516,8.208999633789062,32.54199981689453,8.791999816894531,-2.622999906539917,-1.2369999885559082,32.06999969482422 -10275,2017-09-02 03:00:00,32.08300018310547,9.465999603271484,34.365001678466804,9.381999969482422,-2.2390000820159908,0.0,31.631000518798828 -10276,2017-09-02 04:00:00,31.99900054931641,9.717000007629396,33.90900039672852,9.729999542236328,-1.7699999809265137,0.0,31.410999298095703 -10277,2017-09-02 05:00:00,36.02000045776367,10.38700008392334,38.14500045776367,10.213000297546388,-1.3220000267028809,0.0,31.19099998474121 -10278,2017-09-02 06:00:00,35.60100173950195,9.717000007629396,36.0,9.302000045776367,-1.2580000162124634,0.0,30.97150039672852 -10279,2017-09-02 07:00:00,36.60699844360352,11.392000198364258,38.25199890136719,10.668999671936035,-1.4179999828338623,0.0,30.97150039672852 -10280,2017-09-02 08:00:00,31.66399955749512,6.7849998474121085,34.042999267578125,7.1570000648498535,-1.3109999895095823,0.0,31.410999298095703 -10281,2017-09-02 09:00:00,30.57500076293945,6.031000137329103,33.53400039672852,6.809000015258789,-2.5480000972747803,-1.3220000267028809,31.850500106811523 -10282,2017-09-02 10:00:00,34.261001586914055,7.372000217437744,37.04600143432617,7.960999965667725,-2.5480000972747803,-1.2690000534057615,32.72949981689453 -10283,2017-09-02 11:00:00,38.70100021362305,9.968000411987305,41.54899978637695,10.267000198364258,-2.5480000972747803,-1.2690000534057615,33.16899871826172 -10284,2017-09-02 12:00:00,35.85300064086914,8.628000259399414,39.11000061035156,8.765000343322754,-2.5480000972747803,-1.2790000438690186,33.60850143432617 -10285,2017-09-02 13:00:00,34.68000030517578,9.04699993133545,38.11800003051758,9.461999893188477,-2.5480000972747803,-1.246999979019165,34.04800033569336 -10286,2017-09-02 14:00:00,35.518001556396484,9.130999565124512,38.38600158691406,9.302000045776367,-2.5480000972747803,0.0,34.04800033569336 -10287,2017-09-02 15:00:00,38.70100021362305,10.13599967956543,41.01300048828125,9.864999771118164,-2.5480000972747803,0.0,34.268001556396484 -10288,2017-09-02 16:00:00,39.53799819946289,11.392000198364258,42.11199951171875,10.989999771118164,-2.5480000972747803,0.0,34.268001556396484 -10289,2017-09-02 17:00:00,37.025001525878906,9.130999565124512,40.12799835205078,9.220999717712402,-2.5480000972747803,-1.246999979019165,34.04800033569336 -10290,2017-09-02 18:00:00,40.459999084472656,10.13599967956543,42.21900177001953,10.052000045776367,-2.5480000972747803,0.0,33.827999114990234 -10291,2017-09-02 19:00:00,38.198001861572266,9.130999565124512,39.45800018310547,8.36299991607666,0.0,0.0,33.388999938964844 -10292,2017-09-02 20:00:00,40.3759994506836,9.800999641418455,41.54899978637695,9.381999969482422,-1.2369999885559082,0.0,32.94900131225586 -10293,2017-09-02 21:00:00,40.9630012512207,12.145999908447266,41.97800064086914,10.829999923706056,0.0,0.0,32.5099983215332 -10294,2017-09-02 22:00:00,35.518001556396484,9.550000190734863,37.31399917602539,9.248000144958496,-1.2580000162124634,0.0,32.5099983215332 -10295,2017-09-02 23:00:00,36.27199935913086,10.220000267028809,38.14500045776367,9.890999794006348,-1.3539999723434448,0.0,32.5099983215332 -10296,2017-09-03 00:00:00,34.17699813842773,9.381999969482422,35.8120002746582,8.899999618530273,-1.2580000162124634,0.0,32.5099983215332 -10297,2017-09-03 01:00:00,33.005001068115234,9.550000190734863,34.28499984741211,9.006999969482422,-1.2899999618530271,0.0,32.06999969482422 -10298,2017-09-03 02:00:00,34.847000122070305,10.052000045776367,36.21500015258789,9.461999893188477,-1.2150000333786009,0.0,31.850500106811523 -10299,2017-09-03 03:00:00,31.32900047302246,8.461000442504883,34.20399856567383,8.791999816894531,-3.4119999408721924,-1.3009999990463257,31.631000518798828 -10300,2017-09-03 04:00:00,33.92599868774414,9.717000007629396,35.75899887084961,9.515999794006348,-1.343000054359436,0.0,29.653499603271484 -10301,2017-09-03 05:00:00,30.492000579833984,8.711999893188478,31.60400009155273,7.98799991607666,0.0,0.0,28.77449989318848 -10302,2017-09-03 06:00:00,31.077999114990234,8.125,32.30099868774414,7.665999889373777,0.0,0.0,28.99399948120117 -10303,2017-09-03 07:00:00,34.68000030517578,9.04699993133545,37.18000030517578,9.006999969482422,-1.9720000028610232,0.0,29.214000701904297 -10304,2017-09-03 08:00:00,29.56999969482422,6.366000175476074,32.67599868774414,6.9689998626708975,-2.740000009536743,-1.22599995136261,30.09250068664551 -10305,2017-09-03 09:00:00,35.43399810791016,8.963000297546387,38.54700088500977,9.435999870300291,-2.740000009536743,-1.375,30.75200080871582 -10306,2017-09-03 10:00:00,38.36600112915039,9.800999641418455,41.62900161743164,9.91800022125244,-2.740000009536743,-1.2580000162124634,31.410999298095703 -10307,2017-09-03 11:00:00,40.125,9.21399974822998,43.02299880981445,9.48900032043457,-2.740000009536743,-1.3860000371932983,31.410999298095703 -10308,2017-09-03 12:00:00,36.94200134277344,8.795999526977539,40.18199920654297,8.657999992370605,-2.740000009536743,-1.3860000371932983,30.312000274658203 -10309,2017-09-03 13:00:00,30.99399948120117,5.361000061035156,34.338001251220696,6.245999813079834,-3.997999906539917,-1.3860000371932983,30.09250068664551 -10310,2017-09-03 14:00:00,36.60699844360352,9.29800033569336,40.28900146484375,9.864999771118164,-2.760999917984009,-1.3220000267028809,29.653499603271484 -10311,2017-09-03 15:00:00,35.182998657226555,8.208999633789062,38.73400115966797,9.140999794006348,-2.760999917984009,-1.3220000267028809,29.653499603271484 -10312,2017-09-03 16:00:00,38.70100021362305,8.963000297546387,42.75500106811523,9.729999542236328,-2.760999917984009,-1.3220000267028809,29.87299919128418 -10313,2017-09-03 17:00:00,39.62200164794922,9.130999565124512,42.459999084472656,9.48900032043457,-2.760999917984009,-1.3220000267028809,29.214000701904297 -10314,2017-09-03 18:00:00,39.70600128173828,8.963000297546387,42.51399993896485,8.95300006866455,-2.760999917984009,-1.3220000267028809,27.89550018310547 -10315,2017-09-03 19:00:00,35.93600082397461,7.372000217437744,37.68899917602539,7.639999866485598,-2.760999917984009,-1.2899999618530271,27.45599937438965 -10316,2017-09-03 20:00:00,36.1879997253418,7.706999778747559,38.94900131225586,8.015000343322754,-1.375,-1.2369999885559082,27.67600059509277 -10317,2017-09-03 21:00:00,40.3759994506836,10.55500030517578,42.32600021362305,9.94499969482422,-1.503000020980835,0.0,27.45599937438965 -10318,2017-09-03 22:00:00,37.52799987792969,9.885000228881836,40.15499877929688,10.052000045776367,-3.1449999809265137,-1.2150000333786009,27.45599937438965 -10319,2017-09-03 23:00:00,33.17200088500977,8.878999710083008,35.54399871826172,8.630999565124513,-2.068000078201294,0.0,27.67600059509277 -10320,2017-09-04 00:00:00,34.763999938964844,9.29800033569336,36.26800155639648,9.0600004196167,0.0,0.0,27.45599937438965 -10321,2017-09-04 01:00:00,33.34000015258789,7.789999961853027,34.65999984741211,7.3979997634887695,-1.2150000333786009,0.0,28.114999771118164 -10322,2017-09-04 02:00:00,32.417999267578125,8.208999633789062,35.652000427246094,9.0600004196167,-3.0169999599456787,-1.2580000162124634,28.77449989318848 -10323,2017-09-04 03:00:00,29.56999969482422,7.037000179290772,32.112998962402344,7.317999839782715,-1.7910000085830688,0.0,29.214000701904297 -10324,2017-09-04 04:00:00,32.92100143432617,9.968000411987305,35.652000427246094,10.024999618530272,-1.8550000190734863,0.0,29.653499603271484 -10325,2017-09-04 05:00:00,30.90999984741211,8.293000221252441,33.88199996948242,8.873000144958496,-2.0360000133514404,-1.2580000162124634,29.87299919128418 -10326,2017-09-04 06:00:00,35.85300064086914,9.21399974822998,38.89500045776367,9.381999969482422,-2.302999973297119,-1.246999979019165,30.312000274658203 -10327,2017-09-04 07:00:00,36.104000091552734,9.800999641418455,39.37799835205078,10.07900047302246,-2.3559999465942383,-1.2790000438690186,29.43400001525879 -10328,2017-09-04 08:00:00,30.743000030517567,7.119999885559082,34.097000122070305,7.585999965667725,-2.3559999465942383,-1.246999979019165,29.653499603271484 -10329,2017-09-04 09:00:00,37.946998596191406,10.303000450134276,41.25400161743164,10.213000297546388,-3.5820000171661377,-1.246999979019165,30.75200080871582 -10330,2017-09-04 10:00:00,34.09400177001953,6.7849998474121085,37.2869987487793,7.34499979019165,-3.5820000171661377,-1.2790000438690186,32.94900131225586 -10331,2017-09-04 11:00:00,38.198001861572266,11.644000053405762,41.57600021362305,11.902000427246096,-2.313999891281128,-1.3329999446868896,34.04800033569336 -10332,2017-09-04 12:00:00,38.198001861572266,11.140999794006348,41.73699951171875,11.392000198364258,-2.313999891281128,-1.2899999618530271,35.145999908447266 -10333,2017-09-04 13:00:00,38.78499984741211,11.810999870300291,42.00500106811523,11.954999923706056,-3.561000108718872,-1.2899999618530271,35.80550003051758 -10334,2017-09-04 14:00:00,35.26599884033203,9.04699993133545,38.06399917602539,9.354999542236328,-3.561000108718872,-1.3109999895095823,36.025001525878906 -10335,2017-09-04 15:00:00,38.78499984741211,10.55500030517578,41.68299865722656,10.668999671936035,-2.313999891281128,-1.3860000371932983,35.80550003051758 -10336,2017-09-04 16:00:00,36.77399826049805,9.717000007629396,40.15499877929688,10.213000297546388,-3.5290000438690186,-1.5670000314712524,36.464500427246094 -10337,2017-09-04 17:00:00,38.78499984741211,9.885000228881836,42.51399993896485,10.052000045776367,-3.5290000438690186,-1.662999987602234,36.464500427246094 -10338,2017-09-04 18:00:00,41.2140007019043,10.805999755859377,44.47100067138672,10.989999771118164,-2.259999990463257,-1.3969999551773071,36.24499893188477 -10339,2017-09-04 19:00:00,39.53799819946289,10.38700008392334,40.85200119018555,9.94499969482422,0.0,0.0,35.58599853515625 -10340,2017-09-04 20:00:00,39.790000915527344,9.885000228881836,40.31600189208984,8.873000144958496,0.0,0.0,34.707000732421875 -10341,2017-09-04 21:00:00,42.21900177001953,12.64900016784668,43.04999923706055,11.392000198364258,0.0,0.0,34.268001556396484 -10342,2017-09-04 22:00:00,34.17699813842773,8.376999855041504,35.57099914550781,8.255999565124513,0.0,0.0,33.827999114990234 -10343,2017-09-04 23:00:00,39.45500183105469,11.057000160217283,40.85200119018555,10.185999870300291,0.0,0.0,33.60850143432617 -10344,2017-09-05 00:00:00,37.19300079345703,10.890000343322754,38.14500045776367,10.052000045776367,0.0,0.0,33.16899871826172 -10345,2017-09-05 01:00:00,29.82099914550781,7.372000217437744,32.273998260498054,8.069000244140625,-1.246999979019165,-1.2790000438690186,32.94900131225586 -10346,2017-09-05 02:00:00,36.104000091552734,10.303000450134276,37.6349983215332,10.105999946594238,-1.3220000267028809,0.0,32.72949981689453 -10347,2017-09-05 03:00:00,35.349998474121094,10.13599967956543,38.17100143432617,10.401000022888184,-2.6760001182556152,0.0,32.5099983215332 -10348,2017-09-05 04:00:00,36.02000045776367,11.225000381469728,38.22499847412109,10.855999946594238,-1.2150000333786009,0.0,32.5099983215332 -10349,2017-09-05 05:00:00,36.35499954223633,11.057000160217283,38.46599960327149,11.043999671936035,-2.559000015258789,-1.2790000438690186,32.06999969482422 -10350,2017-09-05 06:00:00,31.58099937438965,6.701000213623048,34.632999420166016,7.61299991607666,-2.5910000801086426,-1.3220000267028809,32.06999969482422 -10351,2017-09-05 07:00:00,36.52299880981445,10.303000450134276,38.38600158691406,10.31999969482422,-2.5910000801086426,0.0,32.06999969482422 -10352,2017-09-05 08:00:00,32.333999633789055,7.874000072479247,35.4370002746582,8.069000244140625,-2.5910000801086426,0.0,32.5099983215332 -10353,2017-09-05 09:00:00,36.94200134277344,9.633000373840332,39.59199905395508,9.890999794006348,-2.5910000801086426,-1.246999979019165,33.16899871826172 -10354,2017-09-05 10:00:00,43.14099884033203,11.895000457763672,39.08300018310547,9.034000396728516,3.88100004196167,0.0,34.487499237060554 -10355,2017-09-05 11:00:00,42.387001037597656,11.057000160217283,38.86800003051758,8.470999717712402,3.88100004196167,0.0,35.80550003051758 -10356,2017-09-05 12:00:00,44.39699935913086,11.5600004196167,41.06600189208984,8.765000343322754,3.858999967575073,0.0,38.00299835205078 -10357,2017-09-05 13:00:00,43.30799865722656,12.229999542236328,39.69900131225586,9.56999969482422,3.858999967575073,0.0,39.54100036621094 -10358,2017-09-05 14:00:00,43.47600173950195,12.480999946594238,40.04800033569336,9.810999870300291,3.858999967575073,0.0,39.760501861572266 -10359,2017-09-05 15:00:00,46.071998596191406,13.821999549865724,42.70199966430664,10.74899959564209,3.858999967575073,0.0,40.41949844360352 -10360,2017-09-05 16:00:00,46.49100112915039,13.56999969482422,43.31800079345703,10.722000122070312,3.858999967575073,0.0,40.41949844360352 -10361,2017-09-05 17:00:00,42.63800048828125,11.057000160217283,39.53799819946289,8.496999740600586,3.858999967575073,0.0,39.54100036621094 -10362,2017-09-05 18:00:00,45.65399932861328,12.480999946594238,41.040000915527344,9.11400032043457,3.858999967575073,1.3109999895095823,38.22299957275391 -10363,2017-09-05 19:00:00,43.89400100708008,11.810999870300291,38.70800018310547,8.015000343322754,5.085000038146973,2.632999897003174,37.5634994506836 -10364,2017-09-05 20:00:00,46.32400131225586,12.64900016784668,42.35300064086914,9.56999969482422,3.742000102996826,1.2580000162124634,36.90399932861328 -10365,2017-09-05 21:00:00,45.90499877929688,15.07800006866455,40.42300033569336,10.989999771118164,5.127999782562256,2.5480000972747803,36.46500015258789 -10366,2017-09-05 22:00:00,45.73699951171875,14.91100025177002,42.38000106811523,13.43000030517578,5.127999782562256,2.5480000972747803,36.025001525878906 -10367,2017-09-05 23:00:00,44.983001708984375,14.994000434875488,41.30799865722656,11.795000076293944,3.635999917984009,1.246999979019165,36.025001525878906 -10368,2017-09-06 00:00:00,43.05699920654297,13.402999877929688,39.77999877929688,10.45400047302246,3.635999917984009,0.0,35.80550003051758 -10369,2017-09-06 01:00:00,44.39699935913086,13.654000282287598,40.04800033569336,10.213000297546388,4.861999988555908,1.406999945640564,35.58599853515625 -10370,2017-09-06 02:00:00,42.05199813842773,12.480999946594238,38.680999755859375,9.890999794006348,3.507999897003174,0.0,34.926498413085945 -10371,2017-09-06 03:00:00,43.81100082397461,14.324000358581545,37.98400115966797,10.347000122070312,4.776000022888184,1.2150000333786009,34.268001556396484 -10372,2017-09-06 04:00:00,43.55899810791016,13.904999732971191,39.430999755859375,10.480999946594238,3.5179998874664307,1.2150000333786009,34.268001556396484 -10373,2017-09-06 05:00:00,43.2239990234375,14.324000358581545,37.93000030517578,10.45400047302246,4.797999858856201,1.3539999723434448,33.827999114990234 -10374,2017-09-06 06:00:00,44.73199844360352,13.821999549865724,39.69900131225586,10.347000122070312,4.935999870300293,1.3539999723434448,33.827999114990234 -10375,2017-09-06 07:00:00,38.86800003051758,11.979000091552734,35.11600112915039,9.11400032043457,3.7309999465942383,0.0,33.827999114990234 -10376,2017-09-06 08:00:00,37.77899932861328,9.717000007629396,33.990001678466804,7.050000190734862,3.7309999465942383,1.406999945640564,33.827999114990234 -10377,2017-09-06 09:00:00,42.80500030517578,12.229999542236328,40.07500076293945,10.052000045776367,3.7309999465942383,0.0,34.487499237060554 -10378,2017-09-06 10:00:00,40.87900161743164,12.062999725341797,38.14500045776367,9.756999969482422,3.7309999465942383,0.0,35.36600112915039 -10379,2017-09-06 11:00:00,41.13000106811523,11.727999687194824,38.38600158691406,9.302000045776367,3.7309999465942383,0.0,36.24499893188477 -10380,2017-09-06 12:00:00,41.632999420166016,10.13599967956543,38.78799819946289,8.095000267028809,2.505000114440918,0.0,36.24499893188477 -10381,2017-09-06 13:00:00,44.81600189208984,12.984000205993652,41.89699935913086,10.427000045776367,2.505000114440918,0.0,36.24499893188477 -10382,2017-09-06 14:00:00,38.36600112915039,9.29800033569336,34.928001403808594,7.184000015258789,3.742000102996826,0.0,33.388500213623054 -10383,2017-09-06 15:00:00,35.85300064086914,8.963000297546387,32.488998413085945,6.9689998626708975,3.742000102996826,0.0,31.850500106811523 -10384,2017-09-06 16:00:00,42.21900177001953,11.309000015258787,38.97600173950195,8.925999641418457,3.742000102996826,0.0,31.410999298095703 -10385,2017-09-06 17:00:00,43.97800064086914,11.392000198364258,40.61100006103516,8.73900032043457,3.742000102996826,0.0,32.06999969482422 -10386,2017-09-06 18:00:00,48.50199890136719,14.576000213623049,44.14899826049805,11.151000022888184,3.742000102996826,1.2369999885559082,32.5099983215332 -10387,2017-09-06 19:00:00,44.983001708984375,12.899999618530272,39.48500061035156,9.32800006866455,4.605999946594238,1.4290000200271606,32.94900131225586 -10388,2017-09-06 20:00:00,44.48099899291992,11.895000457763672,40.77199935913086,9.034000396728516,4.605999946594238,0.0,32.94900131225586 -10389,2017-09-06 21:00:00,41.38100051879883,11.644000053405762,38.680999755859375,9.649999618530272,2.7290000915527344,0.0,32.50949859619141 -10390,2017-09-06 22:00:00,44.39699935913086,13.234999656677244,40.95899963378906,10.480999946594238,2.7290000915527344,0.0,31.410999298095703 -10391,2017-09-06 23:00:00,39.53799819946289,11.057000160217283,37.071998596191406,9.515999794006348,2.7290000915527344,0.0,31.850500106811523 -10392,2017-09-07 00:00:00,40.29199981689453,12.5649995803833,36.66999816894531,9.54300022125244,2.7290000915527344,1.2790000438690186,32.070499420166016 -10393,2017-09-07 01:00:00,38.198001861572266,11.140999794006348,35.16899871826172,9.006999969482422,2.7290000915527344,0.0,32.290000915527344 -10394,2017-09-07 02:00:00,39.62200164794922,11.979000091552734,35.2760009765625,8.979999542236328,4.083000183105469,1.2150000333786009,32.290000915527344 -10395,2017-09-07 03:00:00,39.790000915527344,12.229999542236328,36.21500015258789,9.784000396728516,3.763000011444092,0.0,32.290000915527344 -10396,2017-09-07 04:00:00,40.9630012512207,12.899999618530272,37.04600143432617,10.052000045776367,3.763000011444092,0.0,32.06999969482422 -10397,2017-09-07 05:00:00,41.2140007019043,12.480999946594238,37.823001861572266,10.267000198364258,3.4219999313354488,0.0,32.06999969482422 -10398,2017-09-07 06:00:00,42.88899993896485,13.152000427246096,37.79600143432617,9.890999794006348,4.6589999198913565,1.6950000524520874,32.06999969482422 -10399,2017-09-07 07:00:00,43.391998291015625,13.73799991607666,38.76100158691406,10.267000198364258,4.6589999198913565,1.4609999656677246,32.06999969482422 -10400,2017-09-07 08:00:00,40.62699890136719,11.392000198364258,35.141998291015625,7.907999992370605,4.4670000076293945,1.4609999656677246,32.06999969482422 -10401,2017-09-07 09:00:00,46.40700149536133,14.241000175476074,42.70199966430664,11.151000022888184,4.423999786376953,0.0,32.94900131225586 -10402,2017-09-07 10:00:00,42.303001403808594,11.057000160217283,39.18999862670898,8.791999816894531,3.1879999637603764,0.0,34.707000732421875 -10403,2017-09-07 11:00:00,46.65900039672852,13.319000244140623,43.72000122070313,10.722000122070312,3.1879999637603764,0.0,35.80550003051758 -10404,2017-09-07 12:00:00,43.72700119018555,11.727999687194824,40.61100006103516,9.302000045776367,3.1879999637603764,0.0,36.68450164794922 -10405,2017-09-07 13:00:00,43.30799865722656,12.229999542236328,40.69100189208984,9.890999794006348,3.1879999637603764,0.0,38.00299835205078 -10406,2017-09-07 14:00:00,44.81600189208984,13.73799991607666,41.06600189208984,10.989999771118164,3.1879999637603764,0.0,38.00299835205078 -10407,2017-09-07 15:00:00,44.39699935913086,12.39799976348877,40.74499893188477,9.54300022125244,3.2090001106262207,0.0,38.44250106811523 -10408,2017-09-07 16:00:00,45.56999969482422,13.654000282287598,41.709999084472656,10.508000373840332,4.48799991607666,1.22599995136261,39.760501861572266 -10409,2017-09-07 17:00:00,44.81600189208984,12.64900016784668,41.17399978637695,9.729999542236328,4.510000228881836,0.0,39.32149887084961 -10410,2017-09-07 18:00:00,46.40700149536133,13.152000427246096,42.19200134277344,10.133000373840332,3.0810000896453857,0.0,37.5634994506836 -10411,2017-09-07 19:00:00,46.2400016784668,12.815999984741213,41.17399978637695,8.819000244140625,5.821000099182129,1.3539999723434448,36.46500015258789 -10412,2017-09-07 20:00:00,46.82600021362305,13.152000427246096,42.35300064086914,9.54300022125244,3.901999950408936,1.246999979019165,35.36600112915039 -10413,2017-09-07 21:00:00,47.49599838256836,14.241000175476074,43.15700149536133,10.722000122070312,3.9449999332427983,1.7799999713897705,34.268001556396484 -10414,2017-09-07 22:00:00,46.99399948120117,13.904999732971191,42.70199966430664,10.668999671936035,3.7739999294281006,1.2369999885559082,33.60850143432617 -10415,2017-09-07 23:00:00,39.11999893188477,12.314000129699709,35.946998596191406,9.756999969482422,3.753000020980835,0.0,33.16899871826172 -10416,2017-09-08 00:00:00,41.54899978637695,11.895000457763672,37.04600143432617,8.873000144958496,3.9660000801086426,1.2150000333786009,32.5099983215332 -10417,2017-09-08 01:00:00,41.71599960327149,12.815999984741213,38.65399932861328,10.668999671936035,3.134000062942505,0.0,32.06999969482422 -10418,2017-09-08 02:00:00,39.0359992980957,11.5600004196167,34.57899856567383,8.765000343322754,4.361000061035156,1.246999979019165,31.631000518798828 -10419,2017-09-08 03:00:00,37.19300079345703,11.47599983215332,33.69499969482422,9.274999618530272,3.954999923706055,0.0,30.97150039672852 -10420,2017-09-08 04:00:00,41.54899978637695,13.402999877929688,38.30500030517578,11.12399959564209,3.954999923706055,0.0,30.312000274658203 -10421,2017-09-08 05:00:00,41.79999923706055,12.984000205993652,39.13600158691406,10.829999923706056,2.719000101089477,0.0,30.09250068664551 -10422,2017-09-08 06:00:00,43.05699920654297,13.234999656677244,38.84199905395508,10.185999870300291,5.235000133514403,1.2899999618530271,29.87299919128418 -10423,2017-09-08 07:00:00,40.125,11.810999870300291,35.8390007019043,8.791999816894531,4.008999824523927,1.343000054359436,29.87299919128418 -10424,2017-09-08 08:00:00,38.53300094604492,10.220000267028809,34.632999420166016,7.907999992370605,4.008999824523927,0.0,30.97150039672852 -10425,2017-09-08 09:00:00,43.97800064086914,12.64900016784668,40.23500061035156,9.91800022125244,4.008999824523927,0.0,33.16899871826172 -10426,2017-09-08 10:00:00,45.06700134277344,12.480999946594238,40.45000076293945,9.409000396728516,4.008999824523927,0.0,36.68450164794922 -10427,2017-09-08 11:00:00,45.31800079345703,12.815999984741213,41.57600021362305,10.133000373840332,4.008999824523927,0.0,38.66249847412109 -10428,2017-09-08 12:00:00,47.915000915527344,13.067999839782717,44.06900024414063,9.94499969482422,4.008999824523927,0.0,40.85900115966797 -10429,2017-09-08 13:00:00,46.49100112915039,14.156999588012695,42.00500106811523,10.776000022888184,4.008999824523927,1.2150000333786009,43.05649948120117 -10430,2017-09-08 14:00:00,43.30799865722656,12.314000129699709,41.97800064086914,10.855999946594238,0.0,0.0,42.83700180053711 -10431,2017-09-08 15:00:00,43.2239990234375,12.314000129699709,43.04999923706055,11.28499984741211,0.0,0.0,43.05649948120117 -10432,2017-09-08 16:00:00,41.2140007019043,11.979000091552734,42.75500106811523,11.12399959564209,0.0,0.0,42.61750030517578 -10433,2017-09-08 17:00:00,43.30799865722656,12.145999908447266,45.30199813842773,11.472999572753904,-2.111000061035156,0.0,41.51850128173828 -10434,2017-09-08 18:00:00,44.983001708984375,13.56999969482422,46.428001403808594,12.170000076293944,-1.4609999656677246,0.0,40.20000076293945 -10435,2017-09-08 19:00:00,38.53300094604492,9.130999565124512,41.20000076293945,9.435999870300291,-2.45199990272522,-1.246999979019165,38.88199996948242 -10436,2017-09-08 20:00:00,42.1349983215332,9.633000373840332,43.02299880981445,9.034000396728516,0.0,0.0,38.22299957275391 -10437,2017-09-08 21:00:00,40.87900161743164,11.895000457763672,43.26399993896485,11.795000076293944,-2.6440000534057617,-1.3220000267028809,37.124000549316406 -10438,2017-09-08 22:00:00,41.79999923706055,11.810999870300291,43.53300094604492,11.366000175476074,-1.2790000438690186,0.0,36.464500427246094 -10439,2017-09-08 23:00:00,41.632999420166016,12.732999801635742,43.02299880981445,11.954999923706056,-1.2790000438690186,0.0,36.24499893188477 -10440,2017-09-09 00:00:00,39.95700073242188,11.5600004196167,41.73699951171875,10.96399974822998,0.0,0.0,36.025001525878906 -10441,2017-09-09 01:00:00,38.28200149536133,11.392000198364258,39.96699905395508,10.776000022888184,-2.440999984741211,0.0,35.58599853515625 -10442,2017-09-09 02:00:00,35.60100173950195,9.800999641418455,36.96500015258789,9.248000144958496,-1.2150000333786009,0.0,35.36600112915039 -10443,2017-09-09 03:00:00,36.27199935913086,11.140999794006348,39.56499862670898,11.312000274658203,-3.0280001163482666,-1.3220000267028809,35.145999908447266 -10444,2017-09-09 04:00:00,36.858001708984375,10.890000343322754,38.27899932861328,10.560999870300291,-1.4290000200271606,0.0,34.707000732421875 -10445,2017-09-09 05:00:00,37.19300079345703,10.55500030517578,39.32400131225586,10.480999946594238,-2.632999897003174,0.0,34.04800033569336 -10446,2017-09-09 06:00:00,37.19300079345703,10.722000122070312,38.84199905395508,10.588000297546388,-1.3009999990463257,0.0,34.04800033569336 -10447,2017-09-09 07:00:00,35.60100173950195,10.220000267028809,38.573001861572266,10.829999923706056,-2.9530000686645512,-1.4179999828338623,34.268001556396484 -10448,2017-09-09 08:00:00,32.75299835205078,7.958000183105469,34.338001251220696,7.960999965667725,0.0,0.0,35.145999908447266 -10449,2017-09-09 09:00:00,36.52299880981445,9.381999969482422,38.70800018310547,9.354999542236328,-2.131999969482422,0.0,36.46500015258789 -10450,2017-09-09 10:00:00,39.37099838256836,11.140999794006348,42.75500106811523,10.96399974822998,-3.507999897003174,-1.375,36.90399932861328 -10451,2017-09-09 11:00:00,43.55899810791016,12.39799976348877,46.29399871826172,12.142999649047852,-2.2920000553131104,-1.3650000095367432,37.5634994506836 -10452,2017-09-09 12:00:00,41.46500015258789,10.220000267028809,43.98799896240234,9.94499969482422,-2.9210000038146973,0.0,38.22299957275391 -10453,2017-09-09 13:00:00,42.1349983215332,10.973999977111816,44.01499938964844,10.53499984741211,-1.2790000438690186,0.0,39.760501861572266 -10454,2017-09-09 14:00:00,40.79499816894531,11.727999687194824,42.64799880981445,11.071000099182127,-1.5349999666213991,0.0,41.95800018310547 -10455,2017-09-09 15:00:00,44.56499862670898,13.487000465393065,46.13299942016602,12.357000350952148,-1.4709999561309814,0.0,42.1775016784668 -10456,2017-09-09 16:00:00,39.70600128173828,10.470999717712402,41.57600021362305,9.729999542236328,-1.3969999551773071,0.0,41.51850128173828 -10457,2017-09-09 17:00:00,40.29199981689453,11.47599983215332,43.935001373291016,11.232000350952148,-2.6760001182556152,-1.2790000438690186,40.20000076293945 -10458,2017-09-09 18:00:00,43.72700119018555,11.727999687194824,44.52399826049805,11.017000198364258,0.0,0.0,38.88199996948242 -10459,2017-09-09 19:00:00,43.81100082397461,10.973999977111816,44.73899841308594,10.105999946594238,0.0,0.0,37.34400177001953 -10460,2017-09-09 20:00:00,43.47600173950195,10.38700008392334,45.19400024414063,10.185999870300291,-2.494999885559082,0.0,36.90399932861328 -10461,2017-09-09 21:00:00,44.81600189208984,13.73799991607666,47.20500183105469,12.894000053405762,-2.0899999141693115,0.0,36.46500015258789 -10462,2017-09-09 22:00:00,43.47600173950195,14.072999954223633,45.4630012512207,13.053999900817873,-1.4390000104904177,0.0,36.46500015258789 -10463,2017-09-09 23:00:00,37.52799987792969,10.13599967956543,39.96699905395508,10.024999618530272,-2.430999994277954,0.0,36.025001525878906 -10464,2017-09-10 00:00:00,39.37099838256836,11.644000053405762,40.98600006103516,10.74899959564209,-2.0789999961853027,0.0,35.58599853515625 -10465,2017-09-10 01:00:00,32.58599853515625,7.789999961853027,33.05099868774414,7.317999839782715,0.0,0.0,35.58599853515625 -10466,2017-09-10 02:00:00,41.13000106811523,12.062999725341797,39.94100189208984,10.668999671936035,1.8020000457763672,0.0,35.36600112915039 -10467,2017-09-10 03:00:00,36.43899917602539,11.225000381469728,36.8849983215332,10.776000022888184,0.0,0.0,35.145999908447266 -10468,2017-09-10 04:00:00,36.27199935913086,10.220000267028809,38.52000045776367,10.133000373840332,-1.2150000333786009,0.0,34.707000732421875 -10469,2017-09-10 05:00:00,39.70600128173828,11.979000091552734,40.34299850463867,10.803000450134276,0.0,0.0,34.707000732421875 -10470,2017-09-10 06:00:00,39.790000915527344,11.140999794006348,40.90599822998047,10.588000297546388,0.0,0.0,34.707000732421875 -10471,2017-09-10 07:00:00,39.70600128173828,11.895000457763672,40.90599822998047,11.258000373840332,0.0,0.0,34.707000732421875 -10472,2017-09-10 08:00:00,33.590999603271484,7.623000144958496,36.29499816894531,8.229000091552733,-2.5160000324249268,-1.2690000534057615,35.145999908447266 -10473,2017-09-10 09:00:00,37.77899932861328,10.303000450134276,39.00199890136719,10.07900047302246,0.0,0.0,36.025001525878906 -10474,2017-09-10 10:00:00,41.632999420166016,11.225000381469728,44.76599884033203,11.312000274658203,-2.632999897003174,-1.2899999618530271,36.90399932861328 -10475,2017-09-10 11:00:00,37.44400024414063,7.789999961853027,44.95299911499024,9.677000045776367,-7.686999797821045,-2.505000114440918,37.5634994506836 -10476,2017-09-10 12:00:00,34.17699813842773,6.618000030517577,42.59400177001953,9.034000396728516,-7.665999889373777,-2.8250000476837163,36.90399932861328 -10477,2017-09-10 13:00:00,39.20299911499024,10.722000122070312,47.95500183105469,12.78600025177002,-8.902000427246094,-2.8250000476837163,41.29899978637695 -10478,2017-09-10 14:00:00,40.3759994506836,10.638999938964844,47.74100112915039,12.196999549865724,-7.4629998207092285,-2.8250000476837163,42.61750030517578 -10479,2017-09-10 15:00:00,39.0359992980957,10.55500030517578,46.88299942016602,12.142999649047852,-7.4099998474121085,-2.8250000476837163,43.71599960327149 -10480,2017-09-10 16:00:00,39.70600128173828,9.381999969482422,46.4010009765625,10.855999946594238,-7.538000106811522,-2.8250000476837163,41.73849868774414 -10481,2017-09-10 17:00:00,33.674999237060554,5.611999988555908,40.69100189208984,8.041999816894531,-7.367000102996826,-2.8250000476837163,35.80550003051758 -10482,2017-09-10 18:00:00,40.29199981689453,9.550000190734863,46.7760009765625,10.96399974822998,-5.703999996185303,-2.8250000476837163,35.145999908447266 -10483,2017-09-10 19:00:00,38.36600112915039,8.628000259399414,44.49800109863281,10.024999618530272,-7.046999931335449,-2.8250000476837163,35.36600112915039 -10484,2017-09-10 20:00:00,37.61199951171875,8.543999671936035,44.01499938964844,9.972000122070312,-6.216000080108643,-2.8250000476837163,34.487499237060554 -10485,2017-09-10 21:00:00,39.53799819946289,11.140999794006348,45.11399841308594,12.03600025177002,-5.235000133514403,-2.8250000476837163,33.60850143432617 -10486,2017-09-10 22:00:00,36.94200134277344,9.885000228881836,44.14899826049805,11.795000076293944,-7.910999774932861,-2.7929999828338623,34.268001556396484 -10487,2017-09-10 23:00:00,31.916000366210927,7.958000183105469,39.00199890136719,10.052000045776367,-6.673999786376952,-2.7929999828338623,34.268001556396484 -10488,2017-09-11 00:00:00,30.90999984741211,8.376999855041504,37.2869987487793,10.105999946594238,-6.727000236511231,-2.7929999828338623,33.82849884033203 -10489,2017-09-11 01:00:00,29.65399932861328,7.203999996185303,37.98400115966797,9.595999717712402,-8.11299991607666,-2.7929999828338623,31.63050079345703 -10490,2017-09-11 02:00:00,32.250999450683594,9.381999969482422,39.32400131225586,11.097999572753906,-6.790999889373777,-2.7929999828338623,31.850500106811523 -10491,2017-09-11 03:00:00,26.63800048828125,5.52899980545044,35.303001403808594,8.444000244140625,-8.668000221252441,-2.7929999828338623,31.850500106811523 -10492,2017-09-11 04:00:00,30.65900039672852,8.628000259399414,38.59999847412109,10.883000373840332,-7.420000076293945,-2.7929999828338623,31.631000518798828 -10493,2017-09-11 05:00:00,32.08300018310547,8.208999633789062,39.94100189208984,10.74899959564209,-8.539999961853027,-3.5820000171661377,30.97150039672852 -10494,2017-09-11 06:00:00,29.319000244140625,7.203999996185303,36.21500015258789,9.220999717712402,-7.15399980545044,-3.5820000171661377,30.97150039672852 -10495,2017-09-11 07:00:00,28.64900016784668,7.119999885559082,35.33000183105469,9.140999794006348,-7.323999881744385,-3.5820000171661377,30.97150039672852 -10496,2017-09-11 08:00:00,27.81100082397461,6.449999809265138,35.678001403808594,8.604999542236326,-7.302999973297119,-2.750999927520752,31.410999298095703 -10497,2017-09-11 09:00:00,29.319000244140625,7.372000217437744,37.608001708984375,9.94499969482422,-8.699999809265138,-2.750999927520752,31.631000518798828 -10498,2017-09-11 10:00:00,29.40299987792969,5.445000171661377,37.20600128173828,8.121999740600586,-7.515999794006348,-2.750999927520752,30.75200080871582 -10499,2017-09-11 11:00:00,33.42300033569336,7.037000179290772,42.75500106811523,9.99899959564209,-8.892000198364258,-3.997999906539917,31.19099998474121 -10500,2017-09-11 12:00:00,32.669998168945305,7.037000179290772,42.21900177001953,9.890999794006348,-8.923999786376953,-3.997999906539917,31.850500106811523 -10501,2017-09-11 13:00:00,30.32399940490723,6.86899995803833,39.48500061035156,9.864999771118164,-9.425000190734863,-3.36899995803833,32.06999969482422 -10502,2017-09-11 14:00:00,30.99399948120117,7.288000106811522,38.92200088500977,9.972000122070312,-8.081000328063965,-3.36899995803833,32.5099983215332 -10503,2017-09-11 15:00:00,32.16699981689453,7.874000072479247,40.45000076293945,10.427000045776367,-8.017000198364258,-3.36899995803833,32.94900131225586 -10504,2017-09-11 16:00:00,30.65900039672852,6.449999809265138,39.430999755859375,9.354999542236328,-8.017000198364258,-3.36899995803833,33.16899871826172 -10505,2017-09-11 17:00:00,34.429000854492195,7.539000034332275,43.37200164794922,10.024999618530272,-9.253999710083008,-3.134000062942505,33.16899871826172 -10506,2017-09-11 18:00:00,36.60699844360352,8.543999671936035,43.50600051879883,10.267000198364258,-6.834000110626223,-3.134000062942505,33.16899871826172 -10507,2017-09-11 19:00:00,35.014999389648445,7.706999778747559,42.99599838256836,9.890999794006348,-8.230999946594237,-3.1879999637603764,32.94900131225586 -10508,2017-09-11 20:00:00,37.52799987792969,9.465999603271484,43.53300094604492,10.642000198364258,-5.491000175476074,-1.962000012397766,31.850500106811523 -10509,2017-09-11 21:00:00,33.84199905395508,8.461000442504883,41.84400177001953,10.37399959564209,-8.135000228881836,-1.962000012397766,32.06999969482422 -10510,2017-09-11 22:00:00,37.277000427246094,10.052000045776367,42.80899810791016,10.829999923706056,-5.352000236511231,-1.962000012397766,31.631000518798828 -10511,2017-09-11 23:00:00,34.763999938964844,9.717000007629396,42.165000915527344,11.12399959564209,-7.761000156402588,-3.134000062942505,31.19099998474121 -10512,2017-09-12 00:00:00,31.832000732421875,8.795999526977539,39.56499862670898,10.803000450134276,-7.238999843597412,-3.134000062942505,30.75200080871582 -10513,2017-09-12 01:00:00,28.899999618530277,7.789999961853027,36.7239990234375,10.133000373840332,-7.6020002365112305,-3.134000062942505,30.09250068664551 -10514,2017-09-12 02:00:00,28.899999618530277,8.376999855041504,37.93000030517578,11.097999572753906,-8.913000106811523,-2.7929999828338623,29.87299919128418 -10515,2017-09-12 03:00:00,28.229999542236328,8.125,36.321998596191406,10.642000198364258,-7.995999813079834,-2.7929999828338623,29.43400001525879 -10516,2017-09-12 04:00:00,28.229999542236328,8.878999710083008,37.5009994506836,11.312000274658203,-9.265000343322754,-2.7929999828338623,28.99399948120117 -10517,2017-09-12 05:00:00,26.386999130249023,7.789999961853027,34.12400054931641,10.159000396728516,-7.879000186920166,-2.7929999828338623,28.55500030517578 -10518,2017-09-12 06:00:00,28.565000534057607,7.203999996185303,36.9119987487793,9.54300022125244,-7.835999965667725,-4.061999797821045,28.114999771118164 -10519,2017-09-12 07:00:00,31.58099937438965,8.711999893188478,40.66400146484375,11.392000198364258,-8.027999877929688,-2.8469998836517334,28.114999771118164 -10520,2017-09-12 08:00:00,28.229999542236328,5.947999954223633,36.08100128173828,8.604999542236326,-8.027999877929688,-2.8469998836517334,29.43400001525879 -10521,2017-09-12 09:00:00,31.32900047302246,7.874000072479247,40.10100173950195,10.45400047302246,-8.027999877929688,-4.072999954223634,32.06999969482422 -10522,2017-09-12 10:00:00,31.496999740600582,6.618000030517577,40.36899948120117,9.274999618530272,-9.28600025177002,-4.072999954223634,36.025001525878906 -10523,2017-09-12 11:00:00,31.32900047302246,6.198999881744385,39.69900131225586,8.845999717712402,-8.071000099182129,-4.072999954223634,39.10150146484375 -10524,2017-09-12 12:00:00,34.345001220703125,6.86899995803833,43.13000106811523,9.54300022125244,-9.222000122070312,-4.072999954223634,41.51850128173828 -10525,2017-09-12 13:00:00,33.42300033569336,8.293000221252441,42.165000915527344,10.69499969482422,-9.178999900817873,-2.8570001125335693,42.61750030517578 -10526,2017-09-12 14:00:00,34.0099983215332,8.293000221252441,42.27299880981445,10.347000122070312,-7.900000095367432,-2.8570001125335693,44.375 -10527,2017-09-12 15:00:00,37.10900115966797,9.800999641418455,44.71200180053711,11.526000022888184,-7.921000003814697,-2.8570001125335693,44.375 -10528,2017-09-12 16:00:00,35.349998474121094,9.04699993133545,44.06900024414063,11.418999671936035,-7.974999904632567,-2.8570001125335693,42.61750030517578 -10529,2017-09-12 17:00:00,37.946998596191406,9.465999603271484,44.60499954223633,11.071000099182127,-6.695000171661378,-2.984999895095825,41.07899856567383 -10530,2017-09-12 18:00:00,35.76900100708008,8.963000297546387,41.95100021362305,10.347000122070312,-6.705999851226808,-2.984999895095825,39.54100036621094 -10531,2017-09-12 19:00:00,36.52299880981445,8.711999893188478,42.43399810791016,9.70400047302246,-5.576000213623047,-2.440999984741211,37.78300094604492 -10532,2017-09-12 20:00:00,35.014999389648445,8.376999855041504,41.17399978637695,9.435999870300291,-5.692999839782715,-1.9079999923706048,36.025001525878906 -10533,2017-09-12 21:00:00,35.93600082397461,9.633000373840332,43.45199966430664,11.017000198364258,-6.769999980926514,-1.9079999923706048,34.707000732421875 -10534,2017-09-12 22:00:00,35.014999389648445,10.052000045776367,41.57600021362305,11.204999923706056,-6.769999980926514,-1.9079999923706048,33.827999114990234 -10535,2017-09-12 23:00:00,34.429000854492195,9.717000007629396,41.97800064086914,10.989999771118164,-7.85699987411499,-3.16599988937378,32.94900131225586 -10536,2017-09-13 00:00:00,34.261001586914055,8.963000297546387,41.44200134277344,10.855999946594238,-6.502999782562256,-3.16599988937378,32.5099983215332 -10537,2017-09-13 01:00:00,26.88999938964844,5.947999954223633,35.73199844360352,8.630999565124513,-9.274999618530272,-2.8469998836517334,31.850500106811523 -10538,2017-09-13 02:00:00,29.90500068664551,7.706999778747559,37.608001708984375,9.48900032043457,-8.177000045776367,-2.8469998836517334,31.631000518798828 -10539,2017-09-13 03:00:00,31.832000732421875,8.963000297546387,38.70800018310547,10.614999771118164,-5.8420000076293945,-2.8469998836517334,31.19099998474121 -10540,2017-09-13 04:00:00,29.15099906921387,7.372000217437744,36.80400085449219,9.56999969482422,-8.251999855041504,-2.8469998836517334,30.53199958801269 -10541,2017-09-13 05:00:00,30.239999771118164,7.874000072479247,38.54700088500977,10.07900047302246,-8.486000061035156,-2.8469998836517334,29.87299919128418 -10542,2017-09-13 06:00:00,30.1560001373291,8.041999816894531,37.2599983215332,9.94499969482422,-7.282000064849853,-2.8469998836517334,29.43400001525879 -10543,2017-09-13 07:00:00,32.669998168945305,8.795999526977539,39.21699905395508,10.133000373840332,-6.193999767303468,-2.377000093460083,29.43400001525879 -10544,2017-09-13 08:00:00,31.496999740600582,9.21399974822998,40.50299835205078,11.71399974822998,-9.211000442504885,-3.614000082015991,30.53199958801269 -10545,2017-09-13 09:00:00,30.57500076293945,8.041999816894531,39.37799835205078,10.588000297546388,-9.29699993133545,-3.614000082015991,32.290000915527344 -10546,2017-09-13 10:00:00,30.90999984741211,6.533999919891357,39.91400146484375,9.381999969482422,-9.062000274658203,-3.614000082015991,35.145999908447266 -10547,2017-09-13 11:00:00,35.182998657226555,8.125,43.77399826049805,10.508000373840332,-7.686999797821045,-3.614000082015991,38.00299835205078 -10548,2017-09-13 12:00:00,34.261001586914055,8.293000221252441,43.04999923706055,10.588000297546388,-8.956000328063965,-3.614000082015991,39.98049926757813 -10549,2017-09-13 13:00:00,31.66399955749512,7.454999923706055,40.39599990844727,9.890999794006348,-8.934000015258789,-3.059999942779541,41.51850128173828 -10550,2017-09-13 14:00:00,30.32399940490723,7.037000179290772,39.512001037597656,9.810999870300291,-8.838000297546387,-3.059999942779541,41.95800018310547 -10551,2017-09-13 15:00:00,33.92599868774414,8.543999671936035,42.24599838256836,10.883000373840332,-8.902000427246094,-3.059999942779541,41.95800018310547 -10552,2017-09-13 16:00:00,35.685001373291016,9.550000190734863,44.79199981689453,11.982000350952148,-9.052000045776367,-3.059999942779541,41.29850006103516 -10553,2017-09-13 17:00:00,35.0989990234375,8.125,44.60499954223633,10.776000022888184,-9.020000457763672,-4.381999969482422,40.41949844360352 -10554,2017-09-13 18:00:00,37.52799987792969,8.963000297546387,45.19400024414063,10.722000122070312,-8.017000198364258,-3.11299991607666,39.32149887084961 -10555,2017-09-13 19:00:00,32.250999450683594,6.701000213623048,38.54700088500977,8.416999816894531,-5.491000175476074,-3.11299991607666,37.5634994506836 -10556,2017-09-13 20:00:00,35.518001556396484,9.130999565124512,41.73699951171875,10.31999969482422,-5.373000144958496,-3.11299991607666,36.24499893188477 -10557,2017-09-13 21:00:00,35.182998657226555,8.208999633789062,42.54100036621094,9.838000297546388,-7.058000087738037,-3.11299991607666,35.145999908447266 -10558,2017-09-13 22:00:00,35.60100173950195,10.38700008392334,42.56800079345703,11.875,-7.058000087738037,-2.282000064849853,33.827999114990234 -10559,2017-09-13 23:00:00,34.0099983215332,8.041999816894531,40.262001037597656,9.409000396728516,-5.809999942779541,-2.282000064849853,33.16899871826172 -10560,2017-09-14 00:00:00,29.48600006103516,7.119999885559082,35.86600112915039,8.819000244140625,-5.777999877929688,-2.282000064849853,32.72949981689453 -10561,2017-09-14 01:00:00,30.1560001373291,8.208999633789062,37.42100143432617,9.890999794006348,-7.196000099182129,-2.282000064849853,32.290000915527344 -10562,2017-09-14 02:00:00,26.55400085449219,5.947999954223633,33.722000122070305,7.88100004196167,-6.9619998931884775,-2.1960000991821294,31.631000518798828 -10563,2017-09-14 03:00:00,30.743000030517567,8.125,38.0369987487793,9.94499969482422,-6.88700008392334,-2.1960000991821294,30.75200080871582 -10564,2017-09-14 04:00:00,28.31399917602539,8.208999633789062,35.19599914550781,9.838000297546388,-6.813000202178955,-2.1960000991821294,29.87299919128418 -10565,2017-09-14 05:00:00,30.90999984741211,7.958000183105469,37.39400100708008,9.32800006866455,-5.906000137329103,-2.1960000991821294,29.214000701904297 -10566,2017-09-14 06:00:00,29.23500061035156,7.119999885559082,35.70500183105469,8.578000068664549,-6.204999923706055,-2.2390000820159908,28.77449989318848 -10567,2017-09-14 07:00:00,35.182998657226555,9.21399974822998,40.63800048828125,10.614999771118164,-6.193999767303468,-2.2390000820159908,28.55500030517578 -10568,2017-09-14 08:00:00,28.481000900268555,5.611999988555908,35.33000183105469,7.425000190734862,-7.131999969482423,-2.3350000381469727,30.53199958801269 -10569,2017-09-14 09:00:00,30.1560001373291,6.533999919891357,36.3489990234375,8.444000244140625,-5.980999946594237,-2.3350000381469727,32.290000915527344 -10570,2017-09-14 10:00:00,28.062000274658203,5.863999843597412,35.678001403808594,8.229000091552733,-7.14300012588501,-2.6760001182556152,35.58599853515625 -10571,2017-09-14 11:00:00,33.590999603271484,8.795999526977539,40.69100189208984,10.642000198364258,-6.065999984741211,-2.6760001182556152,38.44250106811523 -10572,2017-09-14 12:00:00,27.726999282836918,4.859000205993652,35.652000427246094,7.479000091552732,-8.47599983215332,-2.6760001182556152,40.85950088500977 -10573,2017-09-14 13:00:00,27.22500038146973,4.440000057220459,34.44499969482422,6.755000114440918,-7.377999782562256,-3.0699999332427983,42.178001403808594 -10574,2017-09-14 14:00:00,27.47599983215332,5.276999950408936,33.45399856567383,7.1040000915527335,-6.119999885559082,-3.0699999332427983,43.2765007019043 -10575,2017-09-14 15:00:00,33.005001068115234,8.461000442504883,41.52199935913086,10.722000122070312,-8.262999534606934,-3.0699999332427983,44.15549850463867 -10576,2017-09-14 16:00:00,33.92599868774414,5.193999767303467,41.46799850463867,7.479000091552732,-6.790999889373777,-3.3580000400543213,42.83700180053711 -10577,2017-09-14 17:00:00,40.29199981689453,7.454999923706055,45.48899841308594,8.390000343322754,-6.216000080108643,-3.3580000400543213,41.29850006103516 -10578,2017-09-14 18:00:00,33.088001251220696,4.941999912261963,41.25400161743164,6.675000190734862,-7.815000057220459,-3.3480000495910645,39.54100036621094 -10579,2017-09-14 19:00:00,30.743000030517567,0.0,38.680999755859375,4.879000186920166,-7.420000076293945,-3.2939999103546143,37.5634994506836 -10580,2017-09-14 20:00:00,33.34000015258789,0.0,40.82500076293945,5.361000061035156,-6.48199987411499,-3.2939999103546143,36.025001525878906 -10581,2017-09-14 21:00:00,33.92599868774414,4.60699987411499,42.75500106811523,7.372000217437744,-7.985000133514402,-3.2939999103546143,34.707000732421875 -10582,2017-09-14 22:00:00,29.82099914550781,0.0,38.06399917602539,5.736000061035156,-8.432999610900879,-3.2939999103546143,33.388999938964844 -10583,2017-09-14 23:00:00,31.413000106811523,5.026000022888184,39.59199905395508,6.298999786376952,-6.257999897003174,-2.0469999313354488,32.94900131225586 -10584,2017-09-15 00:00:00,32.250999450683594,5.276999950408936,39.13600158691406,7.3979997634887695,-6.48199987411499,-3.16599988937378,32.06999969482422 -10585,2017-09-15 01:00:00,28.062000274658203,0.0,35.54399871826172,5.548999786376953,-6.84499979019165,-1.99399995803833,31.410999298095703 -10586,2017-09-15 02:00:00,28.64900016784668,4.941999912261963,34.41899871826172,6.298999786376952,-5.0960001945495605,-2.003999948501587,30.75200080871582 -10587,2017-09-15 03:00:00,30.072999954223643,5.445000171661377,38.25199890136719,7.23799991607666,-7.270999908447266,-2.1429998874664307,29.43400001525879 -10588,2017-09-15 04:00:00,32.333999633789055,6.031000137329103,38.09099960327149,7.317999839782715,-5.288000106811523,-3.049000024795532,28.99399948120117 -10589,2017-09-15 05:00:00,32.417999267578125,4.105000019073486,38.27899932861328,6.620999813079834,-7.302999973297119,-3.3480000495910645,28.334999084472656 -10590,2017-09-15 06:00:00,34.763999938964844,6.86899995803833,39.24399948120117,9.56999969482422,-4.190000057220459,-1.3329999446868896,28.114999771118164 -10591,2017-09-15 07:00:00,35.85300064086914,6.449999809265138,40.39599990844727,7.290999889373777,-4.7230000495910645,-2.5369999408721924,28.334999084472656 -10592,2017-09-15 08:00:00,31.58099937438965,5.193999767303467,36.83100128173828,6.353000164031982,-5.5970001220703125,-2.5369999408721924,29.214000701904297 -10593,2017-09-15 09:00:00,34.0099983215332,5.611999988555908,41.44200134277344,7.692999839782715,-6.813000202178955,-2.5369999408721924,30.75200080871582 -10594,2017-09-15 10:00:00,33.42300033569336,4.440000057220459,39.16299819946289,6.138999938964844,-6.790999889373777,-2.5369999408721924,33.16899871826172 -10595,2017-09-15 11:00:00,37.44400024414063,6.114999771118164,43.63999938964844,7.585999965667725,-5.491000175476074,-2.5369999408721924,35.80550003051758 -10596,2017-09-15 12:00:00,37.61199951171875,5.445000171661377,43.80099868774414,7.1570000648498535,-6.876999855041504,-2.5369999408721924,38.00299835205078 -10597,2017-09-15 13:00:00,39.20299911499024,7.203999996185303,45.54299926757813,8.416999816894531,-5.651000022888184,-2.5369999408721924,39.98049926757813 -10598,2017-09-15 14:00:00,38.36600112915039,7.372000217437744,44.73899841308594,8.657999992370605,-5.724999904632568,-2.5369999408721924,41.51850128173828 -10599,2017-09-15 15:00:00,34.763999938964844,5.52899980545044,40.77199935913086,6.995999813079834,-5.724999904632568,-2.5369999408721924,41.51850128173828 -10600,2017-09-15 16:00:00,34.429000854492195,0.0,41.14699935913086,3.0829999446868896,-5.724999904632568,-2.5369999408721924,41.73849868774414 -10601,2017-09-15 17:00:00,37.77899932861328,0.0,43.45199966430664,2.6540000438690186,-5.736000061035156,-2.5369999408721924,41.07899856567383 -10602,2017-09-15 18:00:00,33.005001068115234,0.0,38.573001861572266,2.1440000534057617,-5.736000061035156,-2.5369999408721924,39.54100036621094 -10603,2017-09-15 19:00:00,34.17699813842773,0.0,40.04800033569336,1.4210000038146973,-5.660999774932861,-2.5369999408721924,37.34400177001953 -10604,2017-09-15 20:00:00,35.182998657226555,0.0,40.69100189208984,1.5010000467300415,-5.5970001220703125,-2.5369999408721924,36.025001525878906 -10605,2017-09-15 21:00:00,37.44400024414063,0.0,42.35300064086914,2.9749999046325684,-5.789000034332275,-2.5369999408721924,34.707000732421875 -10606,2017-09-15 22:00:00,37.946998596191406,0.0,43.23799896240234,4.477000236511231,-6.001999855041504,-2.5369999408721924,33.827999114990234 -10607,2017-09-15 23:00:00,36.02000045776367,0.0,41.040000915527344,4.3429999351501465,-4.765999794006348,-2.5369999408721924,32.94900131225586 -10608,2017-09-16 00:00:00,29.15099906921387,0.0,34.41899871826172,1.3940000534057615,-4.765999794006348,-2.5369999408721924,32.06999969482422 -10609,2017-09-16 01:00:00,25.968000411987305,0.0,32.00600051879883,0.0,-6.065999984741211,-2.5369999408721924,31.19099998474121 -10610,2017-09-16 02:00:00,31.16200065612793,0.0,36.10699844360352,1.9299999475479128,-4.829999923706055,-2.5369999408721924,30.312000274658203 -10611,2017-09-16 03:00:00,32.58599853515625,0.0,38.43899917602539,3.378000020980835,-6.056000232696532,-2.5369999408721924,29.43400001525879 -10612,2017-09-16 04:00:00,28.565000534057607,0.0,35.91999816894531,2.9489998817443848,-6.130000114440918,-2.5369999408721924,28.55500030517578 -10613,2017-09-16 05:00:00,34.09400177001953,0.0,39.53799819946289,4.584000110626222,-4.7230000495910645,-2.5369999408721924,28.114999771118164 -10614,2017-09-16 06:00:00,33.34000015258789,0.0,38.14500045776367,2.5999999046325684,-4.670000076293945,-2.5369999408721924,27.45599937438965 -10615,2017-09-16 07:00:00,31.496999740600582,0.0,37.071998596191406,3.5380001068115234,-4.670000076293945,-2.5480000972747803,27.23600006103516 -10616,2017-09-16 08:00:00,30.492000579833984,0.0,36.0,1.4739999771118164,-5.8959999084472665,-2.5480000972747803,29.43400001525879 -10617,2017-09-16 09:00:00,34.59600067138672,0.0,40.31600189208984,3.6459999084472656,-5.8959999084472665,-2.5480000972747803,31.631000518798828 -10618,2017-09-16 10:00:00,35.85300064086914,0.0,44.76599884033203,5.013000011444092,-8.486000061035156,-2.5480000972747803,36.0255012512207 -10619,2017-09-16 11:00:00,38.70100021362305,0.0,46.2130012512207,5.065999984741211,-7.611999988555907,-2.8570001125335693,38.6619987487793 -10620,2017-09-16 12:00:00,34.0099983215332,0.0,41.25400161743164,2.118000030517578,-7.611999988555907,-2.8570001125335693,41.51850128173828 -10621,2017-09-16 13:00:00,33.84199905395508,0.0,41.97800064086914,3.88700008392334,-7.611999988555907,-2.8570001125335693,42.617000579833984 -10622,2017-09-16 14:00:00,33.674999237060554,0.0,40.58399963378906,3.99399995803833,-6.322000026702881,-1.63100004196167,43.49649810791016 -10623,2017-09-16 15:00:00,32.417999267578125,0.0,38.76100158691406,2.760999917984009,-5.244999885559082,-2.8469998836517334,43.2765007019043 -10624,2017-09-16 16:00:00,37.277000427246094,0.0,43.42499923706055,4.744999885559082,-5.800000190734862,-2.8469998836517334,41.51850128173828 -10625,2017-09-16 17:00:00,34.09400177001953,0.0,41.20000076293945,3.108999967575073,-7.367000102996826,-2.8469998836517334,40.20000076293945 -10626,2017-09-16 18:00:00,37.025001525878906,0.0,43.31800079345703,3.61899995803833,-5.906000137329103,-1.5779999494552612,38.6619987487793 -10627,2017-09-16 19:00:00,37.36100006103516,0.0,40.36899948120117,1.7960000038146973,-3.336999893188477,0.0,36.24499893188477 -10628,2017-09-16 20:00:00,33.42300033569336,0.0,39.96699905395508,2.0639998912811284,-5.777999877929688,-1.2580000162124634,34.268001556396484 -10629,2017-09-16 21:00:00,38.44900131225586,0.0,42.70199966430664,4.3429999351501465,-4.6479997634887695,-2.483999967575073,32.94900131225586 -10630,2017-09-16 22:00:00,36.60699844360352,4.690999984741211,43.935001373291016,5.951000213623048,-7.14300012588501,-2.483999967575073,32.06999969482422 -10631,2017-09-16 23:00:00,33.005001068115234,0.0,40.31600189208984,4.073999881744385,-7.046999931335449,-2.483999967575073,31.19099998474121 -10632,2017-09-17 00:00:00,26.63800048828125,0.0,34.553001403808594,0.0,-8.081000328063965,-1.866000056266785,30.75200080871582 -10633,2017-09-17 01:00:00,33.17200088500977,0.0,41.11999893188477,5.013000011444092,-8.230999946594237,-3.0810000896453857,30.09250068664551 -10634,2017-09-17 02:00:00,28.565000534057607,0.0,35.946998596191406,3.243000030517578,-7.078999996185303,-3.0810000896453857,29.43400001525879 -10635,2017-09-17 03:00:00,24.96299934387207,0.0,33.64099884033203,2.2249999046325684,-8.401000022888184,-2.5910000801086426,28.99399948120117 -10636,2017-09-17 04:00:00,30.072999954223643,0.0,38.22499847412109,4.36899995803833,-8.336999893188478,-2.5910000801086426,28.99399948120117 -10637,2017-09-17 05:00:00,31.58099937438965,0.0,39.61899948120117,4.449999809265137,-8.465000152587889,-2.5910000801086426,28.99399948120117 -10638,2017-09-17 06:00:00,30.82699966430664,0.0,40.12799835205078,3.2170000076293945,-8.47599983215332,-2.5910000801086426,28.77449989318848 -10639,2017-09-17 07:00:00,30.1560001373291,0.0,38.41299819946289,3.2969999313354488,-8.944999694824219,-2.5910000801086426,28.77449989318848 -10640,2017-09-17 08:00:00,25.632999420166016,0.0,33.85599899291992,0.0,-7.6020002365112305,-2.5910000801086426,30.312000274658203 -10641,2017-09-17 09:00:00,30.99399948120117,0.0,38.38600158691406,2.009999990463257,-7.484000205993652,-2.5910000801086426,32.290000915527344 -10642,2017-09-17 10:00:00,36.43899917602539,0.0,44.685001373291016,4.2890000343322745,-7.484000205993652,-2.5910000801086426,36.24499893188477 -10643,2017-09-17 11:00:00,38.86800003051758,0.0,46.64199829101562,3.99399995803833,-7.067999839782715,-2.5910000801086426,39.760501861572266 -10644,2017-09-17 12:00:00,35.93600082397461,0.0,44.20299911499024,3.565000057220459,-8.326999664306639,-2.5910000801086426,42.397499084472656 -10645,2017-09-17 13:00:00,34.68000030517578,0.0,43.854000091552734,3.2170000076293945,-8.208999633789062,-2.5910000801086426,43.93550109863281 -10646,2017-09-17 14:00:00,31.74799919128418,0.0,39.91400146484375,2.0369999408721924,-8.199000358581543,-2.5910000801086426,45.69350051879883 -10647,2017-09-17 15:00:00,33.674999237060554,0.0,41.46799850463867,3.1630001068115234,-8.208999633789062,-2.5910000801086426,46.79199981689453 -10648,2017-09-17 16:00:00,38.78499984741211,0.0,45.97200012207031,4.502999782562256,-6.84499979019165,-2.5910000801086426,45.4734992980957 -10649,2017-09-17 17:00:00,36.60699844360352,0.0,45.32899856567383,3.8329999446868896,-8.092000007629395,-2.5910000801086426,43.71599960327149 -10650,2017-09-17 18:00:00,37.36100006103516,0.0,44.47100067138672,3.4309999942779537,-6.84499979019165,-2.186000108718872,41.29899978637695 -10651,2017-09-17 19:00:00,38.86800003051758,0.0,45.06000137329102,3.5920000076293945,-6.598999977111816,-2.186000108718872,38.22299957275391 -10652,2017-09-17 20:00:00,36.94200134277344,0.0,44.60499954223633,3.565000057220459,-7.761000156402588,-2.186000108718872,36.46500015258789 -10653,2017-09-17 21:00:00,37.946998596191406,0.0,43.72000122070313,3.378000020980835,-5.992000102996826,-2.186000108718872,34.707000732421875 -10654,2017-09-17 22:00:00,29.40299987792969,0.0,37.55500030517578,0.0,-7.260000228881836,-2.186000108718872,33.827999114990234 -10655,2017-09-17 23:00:00,28.64900016784668,0.0,36.83100128173828,0.0,-8.359000205993652,-3.4440000057220463,32.94900131225586 -10656,2017-09-18 00:00:00,31.66399955749512,0.0,38.70800018310547,2.385999917984009,-6.951000213623048,-1.8760000467300413,32.06999969482422 -10657,2017-09-18 01:00:00,29.48600006103516,0.0,36.66999816894531,1.850000023841858,-6.982999801635742,-1.8760000467300413,31.19099998474121 -10658,2017-09-18 02:00:00,29.15099906921387,0.0,35.8120002746582,1.850000023841858,-5.714000225067139,-1.8760000467300413,30.75200080871582 -10659,2017-09-18 03:00:00,32.501998901367195,0.0,39.430999755859375,2.680999994277954,-6.758999824523926,-1.8760000467300413,29.87299919128418 -10660,2017-09-18 04:00:00,30.32399940490723,0.0,37.233001708984375,3.190000057220459,-6.63100004196167,-1.8760000467300413,29.43400001525879 -10661,2017-09-18 05:00:00,31.077999114990234,0.0,37.31399917602539,2.1440000534057617,-6.63100004196167,-1.8760000467300413,28.99399948120117 -10662,2017-09-18 06:00:00,31.077999114990234,0.0,38.11800003051758,2.1979999542236333,-6.673999786376952,-1.8760000467300413,28.55500030517578 -10663,2017-09-18 07:00:00,32.75299835205078,0.0,40.34299850463867,3.0829999446868896,-6.727000236511231,-1.8760000467300413,28.55500030517578 -10664,2017-09-18 08:00:00,30.40800094604492,0.0,36.483001708984375,0.0,-5.394999980926514,-1.8760000467300413,30.09250068664551 -10665,2017-09-18 09:00:00,32.669998168945305,0.0,39.96699905395508,3.6719999313354488,-7.868000030517577,-3.11299991607666,32.5099983215332 -10666,2017-09-18 10:00:00,26.55400085449219,0.0,34.365001678466804,0.0,-7.900000095367432,-3.11299991607666,36.464500427246094 -10667,2017-09-18 11:00:00,29.319000244140625,0.0,36.617000579833984,0.0,-7.900000095367432,-3.11299991607666,39.54100036621094 -10668,2017-09-18 12:00:00,27.141000747680664,0.0,35.40999984741211,0.0,-7.824999809265138,-3.11299991607666,41.73849868774414 -10669,2017-09-18 13:00:00,34.93099975585937,0.0,44.04199981689453,3.61899995803833,-7.824999809265138,-1.8760000467300413,43.05649948120117 -10670,2017-09-18 14:00:00,36.68999862670898,0.0,44.01499938964844,4.2890000343322745,-7.803999900817871,-2.227999925613404,44.81449890136719 -10671,2017-09-18 15:00:00,37.946998596191406,0.0,44.84600067138672,4.986000061035156,-6.5250000953674325,-2.227999925613404,45.69350051879883 -10672,2017-09-18 16:00:00,37.69599914550781,0.0,44.20299911499024,4.36899995803833,-6.4710001945495605,-2.227999925613404,44.59450149536133 -10673,2017-09-18 17:00:00,36.60699844360352,0.0,43.479000091552734,2.9489998817443848,-6.439000129699707,-2.227999925613404,43.05699920654297 -10674,2017-09-18 18:00:00,39.53799819946289,0.0,46.48099899291992,4.2890000343322745,-6.5250000953674325,-2.227999925613404,41.07899856567383 -10675,2017-09-18 19:00:00,37.946998596191406,0.0,43.26399993896485,1.9029999971389768,-4.169000148773193,-2.227999925613404,38.6619987487793 -10676,2017-09-18 20:00:00,34.763999938964844,0.0,40.55699920654297,0.0,-5.244999885559082,-1.3329999446868896,36.90399932861328 -10677,2017-09-18 21:00:00,38.70100021362305,0.0,43.104000091552734,1.5820000171661377,-5.459000110626222,-1.4290000200271606,35.58599853515625 -10678,2017-09-18 22:00:00,36.35499954223633,0.0,42.19200134277344,1.4210000038146973,-5.853000164031982,-1.4500000476837158,34.926498413085945 -10679,2017-09-18 23:00:00,34.345001220703125,0.0,40.66400146484375,3.108999967575073,-7.39900016784668,-2.5910000801086426,34.268001556396484 -10680,2017-09-19 00:00:00,33.42300033569336,0.0,41.11999893188477,3.0829999446868896,-7.302999973297119,-2.5910000801086426,34.268001556396484 -10681,2017-09-19 01:00:00,34.59600067138672,0.0,41.49499893188477,3.8329999446868896,-7.206999778747559,-2.5910000801086426,33.827999114990234 -10682,2017-09-19 02:00:00,33.92599868774414,0.0,40.95899963378906,4.0209999084472665,-7.238999843597412,-2.5910000801086426,33.388999938964844 -10683,2017-09-19 03:00:00,32.08300018310547,0.0,39.18999862670898,3.1630001068115234,-7.238999843597412,-2.5910000801086426,33.388999938964844 -10684,2017-09-19 04:00:00,29.066999435424805,0.0,36.5629997253418,2.5199999809265137,-7.217999935150146,-2.5910000801086426,32.94900131225586 -10685,2017-09-19 05:00:00,34.512001037597656,0.0,41.33399963378906,4.100999832153319,-7.122000217437744,-2.5910000801086426,32.94900131225586 -10686,2017-09-19 06:00:00,32.83700180053711,0.0,40.87900161743164,2.7070000171661377,-8.401000022888184,-2.5910000801086426,32.290000915527344 -10687,2017-09-19 07:00:00,33.42300033569336,0.0,41.57600021362305,3.3510000705718994,-7.323999881744385,-2.5910000801086426,31.19099998474121 -10688,2017-09-19 08:00:00,27.47599983215332,0.0,35.73199844360352,0.0,-7.4099998474121085,-2.5910000801086426,32.06999969482422 -10689,2017-09-19 09:00:00,28.481000900268555,0.0,37.2869987487793,2.493000030517578,-8.763999938964844,-2.5910000801086426,32.94900131225586 -10690,2017-09-19 10:00:00,33.005001068115234,0.0,41.60300064086914,3.753000020980835,-8.838000297546387,-2.943000078201294,34.268001556396484 -10691,2017-09-19 11:00:00,32.250999450683594,0.0,40.82500076293945,3.135999917984009,-8.848999977111816,-2.943000078201294,34.487499237060554 -10692,2017-09-19 12:00:00,31.16200065612793,0.0,40.07500076293945,2.546999931335449,-8.848999977111816,-2.943000078201294,35.36600112915039 -10693,2017-09-19 13:00:00,28.81599998474121,0.0,38.54700088500977,1.312999963760376,-8.848999977111816,-2.943000078201294,35.80550003051758 -10694,2017-09-19 14:00:00,30.743000030517567,0.0,38.92200088500977,1.4210000038146973,-9.147000312805176,-2.943000078201294,36.24499893188477 -10695,2017-09-19 15:00:00,30.90999984741211,0.0,39.67300033569336,3.135999917984009,-9.147000312805176,-2.943000078201294,36.24499893188477 -10696,2017-09-19 16:00:00,36.94200134277344,0.0,45.78400039672852,5.199999809265137,-9.052000045776367,-2.943000078201294,35.146499633789055 -10697,2017-09-19 17:00:00,37.277000427246094,0.0,45.38199996948242,3.6989998817443848,-7.803999900817871,-2.943000078201294,34.707000732421875 -10698,2017-09-19 18:00:00,39.790000915527344,0.0,46.85599899291992,4.449999809265137,-6.598999977111816,-2.943000078201294,32.94900131225586 -10699,2017-09-19 19:00:00,34.429000854492195,0.0,41.60300064086914,1.4739999771118164,-6.22599983215332,-2.943000078201294,31.410999298095703 -10700,2017-09-19 20:00:00,34.68000030517578,0.0,42.70199966430664,2.4660000801086426,-7.355999946594237,-1.843999981880188,30.97150039672852 -10701,2017-09-19 21:00:00,37.36100006103516,0.0,44.49800109863281,3.940000057220459,-7.579999923706055,-2.0360000133514404,31.19149971008301 -10702,2017-09-19 22:00:00,35.85300064086914,0.0,41.89699935913086,3.2969999313354488,-6.3439998626708975,-2.0360000133514404,31.410999298095703 -10703,2017-09-19 23:00:00,34.429000854492195,0.0,40.39599990844727,2.5199999809265137,-6.4710001945495605,-2.0360000133514404,31.850500106811523 -10704,2017-09-20 00:00:00,32.333999633789055,0.0,38.70800018310547,2.760999917984009,-6.449999809265138,-2.0360000133514404,31.850500106811523 -10705,2017-09-20 01:00:00,29.23500061035156,0.0,35.57099914550781,1.3669999837875366,-6.557000160217285,-2.0360000133514404,31.19099998474121 -10706,2017-09-20 02:00:00,30.743000030517567,0.0,37.1259994506836,2.4660000801086426,-6.84499979019165,-2.0360000133514404,30.97150039672852 -10707,2017-09-20 03:00:00,29.56999969482422,0.0,35.73199844360352,2.009999990463257,-6.749000072479247,-2.0360000133514404,28.99449920654297 -10708,2017-09-20 04:00:00,30.99399948120117,0.0,37.87699890136719,3.565000057220459,-6.642000198364258,-2.0360000133514404,27.89550018310547 -10709,2017-09-20 05:00:00,30.82699966430664,0.0,37.34000015258789,2.760999917984009,-6.589000225067139,-2.0360000133514404,28.114999771118164 -10710,2017-09-20 06:00:00,31.413000106811523,0.0,38.70800018310547,2.1979999542236333,-6.589000225067139,-3.26200008392334,28.334999084472656 -10711,2017-09-20 07:00:00,33.25600051879883,0.0,40.07500076293945,2.7880001068115234,-6.5250000953674325,-2.0360000133514404,28.554500579833984 -10712,2017-09-20 08:00:00,28.899999618530277,0.0,35.089000701904304,0.0,-6.557000160217285,-2.0360000133514404,29.214000701904297 -10713,2017-09-20 09:00:00,35.43399810791016,0.0,43.34500122070313,4.2890000343322745,-7.964000225067139,-3.2839999198913574,29.653499603271484 -10714,2017-09-20 10:00:00,30.239999771118164,0.0,40.20899963378906,2.0910000801086426,-10.479999542236328,-3.2839999198913574,29.87299919128418 -10715,2017-09-20 11:00:00,34.429000854492195,0.0,42.51399993896485,2.2249999046325684,-8.006999969482424,-3.2839999198913574,28.334999084472656 -10716,2017-09-20 12:00:00,33.005001068115234,0.0,42.21900177001953,2.9749999046325684,-9.265000343322754,-3.2839999198913574,28.114999771118164 -10717,2017-09-20 13:00:00,32.669998168945305,0.0,41.44200134277344,3.2699999809265137,-8.048999786376951,-3.2839999198913574,27.67600059509277 -10718,2017-09-20 14:00:00,31.077999114990234,0.0,39.75299835205078,1.5279999971389768,-9.32900047302246,-3.2839999198913574,28.334999084472656 -10719,2017-09-20 15:00:00,33.42300033569336,0.0,42.03099822998047,3.2170000076293945,-8.295000076293945,-3.2839999198913574,28.77449989318848 -10720,2017-09-20 16:00:00,33.17200088500977,0.0,41.95100021362305,2.252000093460083,-8.220000267028809,-3.2839999198913574,29.653499603271484 -10721,2017-09-20 17:00:00,35.76900100708008,0.0,43.29100036621094,2.5999999046325684,-6.866000175476074,-3.2839999198913574,30.09250068664551 -10722,2017-09-20 18:00:00,34.847000122070305,0.0,42.80899810791016,2.9489998817443848,-6.8979997634887695,-3.2839999198913574,30.09250068664551 -10723,2017-09-20 19:00:00,34.429000854492195,0.0,41.040000915527344,1.9570000171661377,-6.802000045776367,-3.2839999198913574,30.09250068664551 -10724,2017-09-20 20:00:00,34.59600067138672,0.0,41.68299865722656,2.009999990463257,-6.781000137329103,-2.0360000133514404,30.09250068664551 -10725,2017-09-20 21:00:00,36.52299880981445,0.0,43.80099868774414,4.584000110626222,-6.769999980926514,-2.0360000133514404,29.87299919128418 -10726,2017-09-20 22:00:00,34.512001037597656,0.0,41.60300064086914,3.859999895095825,-6.610000133514402,-2.0360000133514404,29.87299919128418 -10727,2017-09-20 23:00:00,34.345001220703125,0.0,40.66400146484375,3.88700008392334,-5.40500020980835,-2.0360000133514404,29.43400001525879 -10728,2017-09-21 00:00:00,32.250999450683594,0.0,39.887001037597656,3.8059999942779537,-6.790999889373777,-3.336999893188477,28.99399948120117 -10729,2017-09-21 01:00:00,30.072999954223643,0.0,37.71599960327149,3.135999917984009,-6.834000110626223,-2.111000061035156,28.99399948120117 -10730,2017-09-21 02:00:00,31.32900047302246,0.0,39.83300018310547,4.3959999084472665,-7.974999904632567,-3.336999893188477,28.55500030517578 -10731,2017-09-21 03:00:00,29.066999435424805,0.0,36.80400085449219,1.9570000171661377,-7.665999889373777,-3.336999893188477,28.55500030517578 -10732,2017-09-21 04:00:00,30.99399948120117,0.0,38.97600173950195,3.8059999942779537,-7.665999889373777,-3.336999893188477,28.55500030517578 -10733,2017-09-21 05:00:00,32.83700180053711,0.0,39.512001037597656,2.8949999809265137,-7.665999889373777,-2.121999979019165,28.55500030517578 -10734,2017-09-21 06:00:00,35.0989990234375,0.0,41.84400177001953,3.7799999713897705,-7.623000144958496,-2.121999979019165,28.55500030517578 -10735,2017-09-21 07:00:00,33.92599868774414,0.0,41.84400177001953,4.0209999084472665,-7.697999954223633,-2.121999979019165,28.55500030517578 -10736,2017-09-21 08:00:00,29.56999969482422,0.0,37.58200073242188,2.2249999046325684,-8.98799991607666,-3.336999893188477,28.99399948120117 -10737,2017-09-21 09:00:00,34.847000122070305,0.0,43.04999923706055,3.9670000076293945,-9.062000274658203,-3.336999893188477,30.09250068664551 -10738,2017-09-21 10:00:00,31.413000106811523,0.0,39.86000061035156,1.3669999837875366,-7.729000091552732,-3.336999893188477,31.631000518798828 -10739,2017-09-21 11:00:00,33.17200088500977,0.0,41.60300064086914,1.715999960899353,-7.570000171661378,-3.336999893188477,32.070499420166016 -10740,2017-09-21 12:00:00,32.333999633789055,0.0,41.95100021362305,2.1710000038146973,-8.795999526977539,-2.943000078201294,31.850500106811523 -10741,2017-09-21 13:00:00,31.413000106811523,0.0,40.61100006103516,2.385999917984009,-8.795999526977539,-2.943000078201294,33.388999938964844 -10742,2017-09-21 14:00:00,29.066999435424805,0.0,37.15299987792969,0.0,-8.817000389099121,-2.943000078201294,33.16899871826172 -10743,2017-09-21 15:00:00,30.072999954223643,0.0,38.35900115966797,1.3669999837875366,-8.817000389099121,-2.943000078201294,33.16899871826172 -10744,2017-09-21 16:00:00,35.014999389648445,0.0,43.77399826049805,4.422999858856201,-8.817000389099121,-2.740000009536743,33.16899871826172 -10745,2017-09-21 17:00:00,35.85300064086914,0.0,43.63999938964844,2.8949999809265137,-7.579999923706055,-2.740000009536743,31.850500106811523 -10746,2017-09-21 18:00:00,37.19300079345703,0.0,44.229000091552734,2.9489998817443848,-7.579999923706055,-2.740000009536743,29.87299919128418 -10747,2017-09-21 19:00:00,31.916000366210927,0.0,38.84199905395508,2.252000093460083,-6.449999809265138,-2.740000009536743,29.214000701904297 -10748,2017-09-21 20:00:00,33.17200088500977,0.0,38.94900131225586,0.0,-5.138999938964844,-2.740000009536743,29.214000701904297 -10749,2017-09-21 21:00:00,34.68000030517578,0.0,41.89699935913086,1.8229999542236328,-6.513999938964844,-2.740000009536743,29.214000701904297 -10750,2017-09-21 22:00:00,34.68000030517578,0.0,40.20899963378906,2.680999994277954,-5.235000133514403,-2.740000009536743,28.99449920654297 -10751,2017-09-21 23:00:00,35.85300064086914,0.0,40.95899963378906,3.51200008392334,-4.734000205993652,-1.503000020980835,28.99449920654297 -10752,2017-09-22 00:00:00,32.417999267578125,0.0,39.11000061035156,3.3239998817443848,-6.02400016784668,-1.503000020980835,29.43400001525879 -10753,2017-09-22 01:00:00,32.250999450683594,0.0,38.17100143432617,2.733999967575073,-6.119999885559082,-2.7290000915527344,29.87299919128418 -10754,2017-09-22 02:00:00,29.23500061035156,0.0,35.35699844360352,1.9839999675750728,-6.0879998207092285,-1.4709999561309814,29.87299919128418 -10755,2017-09-22 03:00:00,29.319000244140625,0.0,35.652000427246094,2.8410000801086426,-6.289999961853027,-2.697000026702881,29.87299919128418 -10756,2017-09-22 04:00:00,31.66399955749512,0.0,38.09099960327149,3.3510000705718994,-6.364999771118164,-2.697000026702881,29.43400001525879 -10757,2017-09-22 05:00:00,33.088001251220696,0.0,39.53799819946289,4.155000209808351,-6.428999900817871,-2.697000026702881,29.43400001525879 -10758,2017-09-22 06:00:00,36.77399826049805,0.0,42.03099822998047,4.36899995803833,-4.989999771118164,-1.662999987602234,29.43400001525879 -10759,2017-09-22 07:00:00,33.34000015258789,0.0,39.35100173950195,2.7880001068115234,-6.130000114440918,-2.878999948501587,29.43400001525879 -10760,2017-09-22 08:00:00,29.48600006103516,0.0,36.858001708984375,1.5279999971389768,-7.388000011444093,-2.878999948501587,29.87299919128418 -10761,2017-09-22 09:00:00,34.0099983215332,0.0,43.55899810791016,5.0929999351501465,-8.581999778747559,-3.006999969482422,30.53199958801269 -10762,2017-09-22 10:00:00,31.66399955749512,0.0,40.28900146484375,1.7960000038146973,-8.581999778747559,-3.006999969482422,31.19099998474121 -10763,2017-09-22 11:00:00,31.58099937438965,0.0,41.30799865722656,2.5999999046325684,-9.883000373840332,-3.006999969482422,32.06999969482422 -10764,2017-09-22 12:00:00,34.17699813842773,0.0,43.104000091552734,3.2170000076293945,-8.571999549865723,-3.006999969482422,32.94900131225586 -10765,2017-09-22 13:00:00,34.429000854492195,0.0,42.75500106811523,3.565000057220459,-7.355999946594237,-3.006999969482422,33.827999114990234 -10766,2017-09-22 14:00:00,33.17200088500977,0.0,42.75500106811523,4.477000236511231,-8.656999588012695,-3.006999969482422,34.04800033569336 -10767,2017-09-22 15:00:00,30.90999984741211,0.0,39.27000045776367,3.2170000076293945,-8.656999588012695,-3.006999969482422,34.487499237060554 -10768,2017-09-22 16:00:00,34.93099975585937,0.0,43.66699981689453,4.0209999084472665,-7.793000221252441,-3.006999969482422,34.487499237060554 -10769,2017-09-22 17:00:00,33.84199905395508,0.0,41.44200134277344,2.4130001068115234,-7.824999809265138,-3.006999969482422,34.487499237060554 -10770,2017-09-22 18:00:00,32.16699981689453,0.0,38.94900131225586,1.4210000038146973,-6.513999938964844,-3.006999969482422,33.827999114990234 -10771,2017-09-22 19:00:00,37.277000427246094,0.0,41.89699935913086,1.9029999971389768,-5.25600004196167,-1.3220000267028809,33.16899871826172 -10772,2017-09-22 20:00:00,35.76900100708008,0.0,42.56800079345703,1.5010000467300415,-6.610000133514402,-2.483999967575073,32.5099983215332 -10773,2017-09-22 21:00:00,37.025001525878906,0.0,43.479000091552734,3.7260000705718994,-6.652999877929688,-1.3009999990463257,32.06999969482422 -10774,2017-09-22 22:00:00,29.066999435424805,0.0,35.4640007019043,0.0,-6.802000045776367,-2.0789999961853027,31.850500106811523 -10775,2017-09-22 23:00:00,33.25600051879883,0.0,38.97600173950195,2.2780001163482666,-5.5229997634887695,-2.0789999961853027,31.631000518798828 -10776,2017-09-23 00:00:00,31.66399955749512,0.0,38.573001861572266,2.627000093460083,-6.866000175476074,-2.0789999961853027,31.19099998474121 -10777,2017-09-23 01:00:00,29.90500068664551,0.0,36.5359992980957,0.0,-6.749000072479247,-2.5910000801086426,30.75200080871582 -10778,2017-09-23 02:00:00,29.90500068664551,0.0,38.41299819946289,3.6719999313354488,-7.974999904632567,-2.7720000743865967,30.09250068664551 -10779,2017-09-23 03:00:00,31.32900047302246,0.0,38.01100158691406,2.760999917984009,-6.598999977111816,-2.7720000743865967,29.43400001525879 -10780,2017-09-23 04:00:00,27.308000564575195,0.0,33.93600082397461,1.5010000467300415,-6.695000171661378,-2.7720000743865967,28.99399948120117 -10781,2017-09-23 05:00:00,25.88400077819824,0.0,32.75699996948242,0.0,-6.790999889373777,-2.7720000743865967,28.99399948120117 -10782,2017-09-23 06:00:00,24.459999084472656,0.0,32.35499954223633,0.0,-8.401000022888184,-2.7720000743865967,28.114999771118164 -10783,2017-09-23 07:00:00,27.392000198364247,0.0,34.955001831054695,0.0,-7.441999912261963,-3.997999906539917,27.67600059509277 -10784,2017-09-23 08:00:00,22.617000579833984,-4.5229997634887695,32.08599853515625,-1.5010000467300415,-8.923999786376953,-3.997999906539917,26.796499252319336 -10785,2017-09-23 09:00:00,26.05200004577637,0.0,35.16899871826172,0.0,-9.062000274658203,-3.997999906539917,26.79700088500977 -10786,2017-09-23 10:00:00,29.82099914550781,0.0,37.87699890136719,0.0,-7.815000057220459,-3.997999906539917,27.45599937438965 -10787,2017-09-23 11:00:00,29.82099914550781,0.0,38.84199905395508,0.0,-9.020000457763672,-3.997999906539917,26.796499252319336 -10788,2017-09-23 12:00:00,28.565000534057607,0.0,37.6349983215332,0.0,-9.020000457763672,-3.997999906539917,27.236499786376957 -10789,2017-09-23 13:00:00,33.42300033569336,0.0,41.87099838256836,2.1979999542236333,-9.020000457763672,-3.997999906539917,27.675500869750977 -10790,2017-09-23 14:00:00,33.005001068115234,0.0,41.49499893188477,2.868000030517578,-9.020000457763672,-3.997999906539917,29.214000701904297 -10791,2017-09-23 15:00:00,33.92599868774414,0.0,42.51399993896485,2.7880001068115234,-7.750999927520753,-2.7720000743865967,29.214000701904297 -10792,2017-09-23 16:00:00,33.84199905395508,0.0,41.14699935913086,1.9299999475479128,-7.665999889373777,-2.7720000743865967,29.214000701904297 -10793,2017-09-23 17:00:00,33.34000015258789,0.0,41.46799850463867,0.0,-7.686999797821045,-2.7720000743865967,29.653499603271484 -10794,2017-09-23 18:00:00,37.44400024414063,0.0,44.28300094604492,2.385999917984009,-6.311999797821045,-2.7720000743865967,29.653499603271484 -10795,2017-09-23 19:00:00,33.674999237060554,0.0,40.15499877929688,0.0,-6.695000171661378,-2.7720000743865967,29.43400001525879 -10796,2017-09-23 20:00:00,33.92599868774414,0.0,40.12799835205078,0.0,-6.0980000495910645,-2.803999900817871,29.43400001525879 -10797,2017-09-23 21:00:00,38.28200149536133,0.0,44.57799911499024,3.51200008392334,-6.119999885559082,-1.5349999666213991,29.43400001525879 -10798,2017-09-23 22:00:00,35.26599884033203,0.0,42.11199951171875,3.6459999084472656,-7.335000038146973,-2.750999927520752,27.67600059509277 -10799,2017-09-23 23:00:00,31.32900047302246,0.0,38.54700088500977,1.4739999771118164,-7.323999881744385,-2.750999927520752,27.01650047302246 -10800,2017-09-24 00:00:00,29.15099906921387,0.0,35.91999816894531,1.6080000400543213,-7.323999881744385,-2.750999927520752,26.79700088500977 -10801,2017-09-24 01:00:00,30.492000579833984,0.0,38.11800003051758,2.3050000667572017,-7.4099998474121085,-2.750999927520752,25.917999267578125 -10802,2017-09-24 02:00:00,30.072999954223643,0.0,36.8849983215332,2.4660000801086426,-7.335000038146973,-2.750999927520752,24.819499969482425 -10803,2017-09-24 03:00:00,28.899999618530277,0.0,37.6349983215332,2.2780001163482666,-8.593000411987305,-2.750999927520752,24.59950065612793 -10804,2017-09-24 04:00:00,26.63800048828125,0.0,33.990001678466804,1.312999963760376,-7.25,-2.750999927520752,23.94050025939941 -10805,2017-09-24 05:00:00,29.319000244140625,0.0,37.2869987487793,1.9839999675750728,-7.25,-2.750999927520752,24.15999984741211 -10806,2017-09-24 06:00:00,30.40800094604492,0.0,38.14500045776367,2.0639998912811284,-7.25,-2.750999927520752,25.03899955749512 -10807,2017-09-24 07:00:00,33.005001068115234,0.0,40.42300033569336,2.4130001068115234,-7.164000034332275,-2.750999927520752,25.69849967956543 -10808,2017-09-24 08:00:00,27.895000457763672,0.0,34.60599899291992,0.0,-7.164000034332275,-2.750999927520752,26.13750076293945 -10809,2017-09-24 09:00:00,27.726999282836918,0.0,35.35699844360352,0.0,-7.515999794006348,-2.750999927520752,26.13750076293945 -10810,2017-09-24 10:00:00,30.1560001373291,0.0,38.89500045776367,2.0639998912811284,-8.838000297546387,-3.11299991607666,26.35700035095215 -10811,2017-09-24 11:00:00,31.66399955749512,0.0,40.87900161743164,1.5549999475479126,-8.838000297546387,-2.9749999046325684,27.01650047302246 -10812,2017-09-24 12:00:00,30.743000030517567,0.0,39.37799835205078,1.715999960899353,-8.838000297546387,-2.9749999046325684,27.23600006103516 -10813,2017-09-24 13:00:00,32.92100143432617,0.0,42.03099822998047,3.565000057220459,-8.838000297546387,-2.9749999046325684,27.89550018310547 -10814,2017-09-24 14:00:00,29.066999435424805,0.0,38.573001861572266,2.4660000801086426,-8.838000297546387,-2.9749999046325684,27.89550018310547 -10815,2017-09-24 15:00:00,32.92100143432617,0.0,42.165000915527344,3.9670000076293945,-8.838000297546387,-2.9749999046325684,27.67600059509277 -10816,2017-09-24 16:00:00,32.75299835205078,0.0,42.11199951171875,3.8329999446868896,-8.838000297546387,-2.9749999046325684,27.89550018310547 -10817,2017-09-24 17:00:00,37.52799987792969,0.0,45.35499954223633,3.6989998817443848,-7.623000144958496,-2.9749999046325684,28.55500030517578 -10818,2017-09-24 18:00:00,34.17699813842773,0.0,40.85200119018555,2.5999999046325684,-6.396999835968018,-2.9749999046325684,28.55500030517578 -10819,2017-09-24 19:00:00,32.250999450683594,0.0,38.78799819946289,0.0,-6.822999954223633,-2.9749999046325684,28.77449989318848 -10820,2017-09-24 20:00:00,33.92599868774414,0.0,41.89699935913086,2.546999931335449,-6.758999824523926,-2.931999921798706,29.214000701904297 -10821,2017-09-24 21:00:00,35.85300064086914,0.0,42.72800064086914,3.51200008392334,-6.769999980926514,-2.931999921798706,29.653499603271484 -10822,2017-09-24 22:00:00,32.333999633789055,0.0,41.22700119018555,3.6459999084472656,-8.432999610900879,-2.5160000324249268,30.09250068664551 -10823,2017-09-24 23:00:00,30.82699966430664,0.0,37.79600143432617,2.6540000438690186,-7.34600019454956,-2.5160000324249268,30.312000274658203 -10824,2017-09-25 00:00:00,29.15099906921387,0.0,36.59000015258789,3.378000020980835,-7.4629998207092285,-2.5160000324249268,30.312000274658203 -10825,2017-09-25 01:00:00,33.17200088500977,0.0,38.92200088500977,3.243000030517578,-6.248000144958496,-2.5160000324249268,30.312000274658203 -10826,2017-09-25 02:00:00,27.81100082397461,0.0,34.49900054931641,2.5729999542236333,-6.375999927520753,-2.5160000324249268,30.312000274658203 -10827,2017-09-25 03:00:00,30.743000030517567,0.0,37.6349983215332,2.815000057220459,-6.3540000915527335,-2.5160000324249268,30.75200080871582 -10828,2017-09-25 04:00:00,31.2450008392334,0.0,38.27899932861328,3.2699999809265137,-6.22599983215332,-2.5160000324249268,30.75200080871582 -10829,2017-09-25 05:00:00,30.1560001373291,0.0,38.09099960327149,3.1630001068115234,-7.815000057220459,-2.5160000324249268,30.75200080871582 -10830,2017-09-25 06:00:00,32.75299835205078,0.0,39.91400146484375,3.0829999446868896,-6.418000221252441,-2.5160000324249268,29.653499603271484 -10831,2017-09-25 07:00:00,31.077999114990234,0.0,38.25199890136719,2.868000030517578,-6.333000183105469,-2.5160000324249268,30.312000274658203 -10832,2017-09-25 08:00:00,26.386999130249023,0.0,33.775001525878906,0.0,-7.6020002365112305,-2.5160000324249268,30.75200080871582 -10833,2017-09-25 09:00:00,35.014999389648445,0.0,43.39899826049805,4.449999809265137,-7.65500020980835,-2.5160000324249268,31.19099998474121 -10834,2017-09-25 10:00:00,30.32399940490723,0.0,38.573001861572266,1.5279999971389768,-8.880999565124512,-2.5160000324249268,30.3125 -10835,2017-09-25 11:00:00,33.757999420166016,0.0,41.95100021362305,2.4660000801086426,-8.880999565124512,-2.5160000324249268,31.19149971008301 -10836,2017-09-25 12:00:00,34.261001586914055,0.0,42.459999084472656,3.378000020980835,-8.82800006866455,-2.5160000324249268,32.070499420166016 -10837,2017-09-25 13:00:00,30.90999984741211,0.0,39.512001037597656,3.135999917984009,-8.82800006866455,-2.5160000324249268,33.60850143432617 -10838,2017-09-25 14:00:00,26.2189998626709,0.0,35.2760009765625,1.4210000038146973,-8.82800006866455,-2.8469998836517334,34.268001556396484 -10839,2017-09-25 15:00:00,33.088001251220696,0.0,41.49499893188477,3.6989998817443848,-7.623000144958496,-2.8469998836517334,34.268001556396484 -10840,2017-09-25 16:00:00,36.68999862670898,0.0,44.76599884033203,4.852000236511231,-7.547999858856201,-2.8469998836517334,32.94900131225586 -10841,2017-09-25 17:00:00,35.93600082397461,0.0,45.24800109863281,4.0209999084472665,-8.805999755859375,-2.8469998836517334,33.388500213623054 -10842,2017-09-25 18:00:00,38.617000579833984,0.0,45.97200012207031,4.584000110626222,-7.570000171661378,-2.8469998836517334,33.388500213623054 -10843,2017-09-25 19:00:00,38.86800003051758,0.0,46.0250015258789,4.422999858856201,-7.260000228881836,-2.0469999313354488,33.60850143432617 -10844,2017-09-25 20:00:00,36.43899917602539,0.0,43.21099853515625,3.484999895095825,-5.960000038146973,-2.0469999313354488,33.827999114990234 -10845,2017-09-25 21:00:00,39.20299911499024,0.0,44.47100067138672,4.422999858856201,-5.756999969482423,-2.0360000133514404,33.827999114990234 -10846,2017-09-25 22:00:00,36.60699844360352,4.440000057220459,42.54100036621094,5.013000011444092,-5.745999813079834,-2.0360000133514404,32.72949981689453 -10847,2017-09-25 23:00:00,31.832000732421875,0.0,38.33200073242188,3.108999967575073,-5.853000164031982,-2.0360000133514404,32.72949981689453 -10848,2017-09-26 00:00:00,28.481000900268555,0.0,36.7509994506836,2.1710000038146973,-8.411999702453612,-1.9299999475479128,33.16899871826172 -10849,2017-09-26 01:00:00,31.32900047302246,0.0,38.89500045776367,3.61899995803833,-7.314000129699707,-1.9299999475479128,33.388999938964844 -10850,2017-09-26 02:00:00,30.1560001373291,0.0,39.11000061035156,4.2890000343322745,-7.314000129699707,-1.9299999475479128,33.388999938964844 -10851,2017-09-26 03:00:00,28.229999542236328,0.0,36.9379997253418,2.2780001163482666,-7.314000129699707,-3.1449999809265137,33.388999938964844 -10852,2017-09-26 04:00:00,29.98900032043457,0.0,38.27899932861328,4.2890000343322745,-8.656999588012695,-3.1449999809265137,33.388999938964844 -10853,2017-09-26 05:00:00,29.98900032043457,0.0,37.233001708984375,3.6719999313354488,-7.431000232696532,-3.1449999809265137,33.388999938964844 -10854,2017-09-26 06:00:00,33.34000015258789,0.0,40.52999877929688,4.26200008392334,-7.355999946594237,-1.3329999446868896,32.94900131225586 -10855,2017-09-26 07:00:00,33.088001251220696,0.0,40.69100189208984,4.744999885559082,-7.473999977111816,-3.0920000076293945,32.94900131225586 -10856,2017-09-26 08:00:00,28.062000274658203,0.0,37.608001708984375,1.9570000171661377,-8.98799991607666,-3.0920000076293945,33.388999938964844 -10857,2017-09-26 09:00:00,32.501998901367195,0.0,41.040000915527344,2.5999999046325684,-9.020000457763672,-3.0920000076293945,33.827999114990234 -10858,2017-09-26 10:00:00,32.75299835205078,0.0,41.76300048828125,2.438999891281128,-9.020000457763672,-3.9340000152587886,35.145999908447266 -10859,2017-09-26 11:00:00,36.77399826049805,0.0,45.67699813842773,4.7179999351501465,-9.020000457763672,-2.760999917984009,37.124000549316406 -10860,2017-09-26 12:00:00,35.60100173950195,0.0,44.97999954223633,3.61899995803833,-9.020000457763672,-3.1449999809265137,39.54100036621094 -10861,2017-09-26 13:00:00,37.36100006103516,0.0,46.05199813842773,5.173999786376953,-9.020000457763672,-2.7079999446868896,41.07899856567383 -10862,2017-09-26 14:00:00,36.43899917602539,0.0,45.32899856567383,5.576000213623047,-9.020000457763672,-2.7079999446868896,41.07899856567383 -10863,2017-09-26 15:00:00,36.27199935913086,0.0,44.55099868774414,5.227000236511231,-7.771999835968018,-2.5480000972747803,36.90399932861328 -10864,2017-09-26 16:00:00,37.86299896240234,0.0,46.2130012512207,5.576000213623047,-9.020000457763672,-2.494999885559082,36.90399932861328 -10865,2017-09-26 17:00:00,40.79499816894531,4.105000019073486,47.98199844360352,5.039000034332275,-7.771999835968018,-2.494999885559082,37.34400177001953 -10866,2017-09-26 18:00:00,40.125,0.0,46.6150016784668,4.502999782562256,-6.566999912261963,-2.494999885559082,37.34400177001953 -10867,2017-09-26 19:00:00,39.11999893188477,0.0,45.56999969482422,4.36899995803833,-6.684999942779541,-2.494999885559082,37.34400177001953 -10868,2017-09-26 20:00:00,36.94200134277344,0.0,44.14899826049805,3.4040000438690186,-6.8979997634887695,-1.9299999475479128,37.124000549316406 -10869,2017-09-26 21:00:00,36.1879997253418,0.0,44.97999954223633,4.235000133514403,-8.944999694824219,-3.4219999313354488,36.68450164794922 -10870,2017-09-26 22:00:00,37.77899932861328,5.361000061035156,45.22100067138672,6.5939998626708975,-7.729000091552732,-2.1429998874664307,36.46500015258789 -10871,2017-09-26 23:00:00,33.34000015258789,0.0,40.58399963378906,2.627000093460083,-7.771999835968018,-2.1429998874664307,35.80550003051758 -10872,2017-09-27 00:00:00,35.60100173950195,4.941999912261963,41.17399978637695,5.441999912261963,-5.288000106811523,-2.1429998874664307,35.80550003051758 -10873,2017-09-27 01:00:00,33.17200088500977,0.0,39.02899932861328,4.3429999351501465,-5.341000080108644,-1.406999945640564,35.36600112915039 -10874,2017-09-27 02:00:00,32.417999267578125,0.0,38.49300003051758,3.135999917984009,-6.589000225067139,-1.406999945640564,35.146499633789055 -10875,2017-09-27 03:00:00,33.50699996948242,0.0,40.20899963378906,4.449999809265137,-6.5349998474121085,-2.622999906539917,34.707000732421875 -10876,2017-09-27 04:00:00,32.501998901367195,0.0,40.15499877929688,4.611000061035156,-6.5349998474121085,-2.622999906539917,34.487499237060554 -10877,2017-09-27 05:00:00,33.34000015258789,0.0,40.31600189208984,5.4679999351501465,-7.921000003814697,-2.622999906539917,34.268001556396484 -10878,2017-09-27 06:00:00,23.20400047302246,0.0,29.673999786376957,0.0,-6.684999942779541,-2.622999906539917,34.04800033569336 -10879,2017-09-27 07:00:00,34.59600067138672,0.0,41.22700119018555,3.61899995803833,-6.63100004196167,-2.622999906539917,32.94900131225586 -10880,2017-09-27 08:00:00,29.90500068664551,0.0,38.17100143432617,1.4739999771118164,-8.092000007629395,-2.622999906539917,32.94900131225586 -10881,2017-09-27 09:00:00,32.92100143432617,0.0,40.93199920654297,3.7260000705718994,-7.942999839782715,-2.622999906539917,33.388999938964844 -10882,2017-09-27 10:00:00,28.73200035095215,0.0,37.071998596191406,1.5279999971389768,-7.942999839782715,-2.622999906539917,33.827999114990234 -10883,2017-09-27 11:00:00,30.57500076293945,0.0,38.73400115966797,1.6619999408721924,-7.974999904632567,-2.622999906539917,34.487499237060554 -10884,2017-09-27 12:00:00,33.42300033569336,0.0,41.76300048828125,2.9489998817443848,-7.974999904632567,-2.622999906539917,34.707000732421875 -10885,2017-09-27 13:00:00,34.429000854492195,0.0,42.62099838256836,4.0209999084472665,-7.974999904632567,-2.622999906539917,33.388999938964844 -10886,2017-09-27 14:00:00,29.40299987792969,0.0,37.84999847412109,2.2780001163482666,-7.974999904632567,-2.622999906539917,32.94900131225586 -10887,2017-09-27 15:00:00,32.333999633789055,0.0,40.93199920654297,3.7799999713897705,-9.1899995803833,-2.622999906539917,31.19099998474121 -10888,2017-09-27 16:00:00,35.43399810791016,0.0,43.63999938964844,4.315999984741212,-7.953000068664551,-2.622999906539917,30.53199958801269 -10889,2017-09-27 17:00:00,36.858001708984375,0.0,44.63199996948242,3.6989998817443848,-7.942999839782715,-2.622999906539917,29.87299919128418 -10890,2017-09-27 18:00:00,38.70100021362305,0.0,44.84600067138672,3.940000057220459,-5.415999889373778,-2.111000061035156,29.43400001525879 -10891,2017-09-27 19:00:00,37.44400024414063,0.0,44.14899826049805,3.4309999942779537,-5.992000102996826,-1.5570000410079956,29.214000701904297 -10892,2017-09-27 20:00:00,31.16200065612793,0.0,37.87699890136719,1.4739999771118164,-5.8959999084472665,-2.7720000743865967,28.55500030517578 -10893,2017-09-27 21:00:00,36.27199935913086,0.0,43.72000122070313,4.879000186920166,-7.175000190734862,-2.7720000743865967,28.99449920654297 -10894,2017-09-27 22:00:00,32.250999450683594,0.0,38.49300003051758,3.4040000438690186,-5.927999973297119,-1.5140000581741333,27.45599937438965 -10895,2017-09-27 23:00:00,34.09400177001953,0.0,39.83300018310547,4.235000133514403,-5.76800012588501,-1.5140000581741333,27.23600006103516 -10896,2017-09-28 00:00:00,29.65399932861328,0.0,36.7239990234375,2.385999917984009,-7.34600019454956,-1.5140000581741333,27.23600006103516 -10897,2017-09-28 01:00:00,31.077999114990234,0.0,37.2869987487793,3.002000093460083,-6.204999923706055,-1.5140000581741333,27.01650047302246 -10898,2017-09-28 02:00:00,28.73200035095215,0.0,35.57099914550781,2.8949999809265137,-7.238999843597412,-1.5140000581741333,25.917999267578125 -10899,2017-09-28 03:00:00,30.1560001373291,0.0,37.071998596191406,3.565000057220459,-6.02400016784668,-2.7720000743865967,25.25900077819824 -10900,2017-09-28 04:00:00,29.65399932861328,0.0,36.777000427246094,3.243000030517578,-7.206999778747559,-2.7720000743865967,25.25900077819824 -10901,2017-09-28 05:00:00,28.565000534057607,0.0,37.90299987792969,3.4040000438690186,-8.517999649047853,-2.7720000743865967,25.25900077819824 -10902,2017-09-28 06:00:00,30.57500076293945,0.0,38.06399917602539,2.9489998817443848,-7.260000228881836,-2.7720000743865967,25.47900009155273 -10903,2017-09-28 07:00:00,26.30299949645996,0.0,33.56100082397461,1.5279999971389768,-7.260000228881836,-2.7720000743865967,25.03899955749512 -10904,2017-09-28 08:00:00,27.22500038146973,0.0,34.31100082397461,0.0,-7.591000080108643,-2.7720000743865967,24.819499969482425 -10905,2017-09-28 09:00:00,29.98900032043457,0.0,37.71599960327149,1.7960000038146973,-7.697999954223633,-2.7720000743865967,26.13750076293945 -10906,2017-09-28 10:00:00,23.53899955749512,0.0,32.46200180053711,0.0,-8.998000144958496,-2.7720000743865967,27.45599937438965 -10907,2017-09-28 11:00:00,26.63800048828125,0.0,35.007999420166016,0.0,-7.847000122070312,-2.7720000743865967,28.77449989318848 -10908,2017-09-28 12:00:00,20.69099998474121,0.0,29.433000564575195,-1.3400000333786009,-9.072999954223633,-2.7720000743865967,32.290000915527344 -10909,2017-09-28 13:00:00,22.95199966430664,0.0,31.81800079345703,0.0,-9.104999542236328,-2.7720000743865967,36.0255012512207 -10910,2017-09-28 14:00:00,24.87899971008301,0.0,33.13199996948242,1.9029999971389768,-9.104999542236328,-2.8359999656677246,38.88199996948242 -10911,2017-09-28 15:00:00,28.39699935913086,0.0,35.8390007019043,2.6540000438690186,-7.900000095367432,-2.8359999656677246,40.63949966430664 -10912,2017-09-28 16:00:00,29.15099906921387,0.0,36.858001708984375,1.6890000104904177,-6.802000045776367,-2.8359999656677246,39.32099914550781 -10913,2017-09-28 17:00:00,31.16200065612793,0.0,37.448001861572266,2.1979999542236333,-6.684999942779541,-2.8359999656677246,37.78350067138672 -10914,2017-09-28 18:00:00,30.82699966430664,0.0,37.68899917602539,2.0910000801086426,-6.834000110626223,-2.8359999656677246,34.926498413085945 -10915,2017-09-28 19:00:00,27.726999282836918,0.0,33.775001525878906,0.0,-6.876999855041504,-1.5779999494552612,32.06999969482422 -10916,2017-09-28 20:00:00,25.548999786376957,0.0,31.871999740600582,0.0,-6.876999855041504,-1.5779999494552612,30.312000274658203 -10917,2017-09-28 21:00:00,28.899999618530277,0.0,35.8390007019043,1.4210000038146973,-6.940999984741211,-1.5779999494552612,28.55500030517578 -10918,2017-09-28 22:00:00,27.97900009155273,0.0,35.007999420166016,4.209000110626222,-7.058000087738037,-2.7929999828338623,27.89550018310547 -10919,2017-09-28 23:00:00,27.05699920654297,0.0,34.12400054931641,2.438999891281128,-6.001999855041504,-1.4709999561309814,27.23600006103516 -10920,2017-09-29 00:00:00,24.62800025939941,0.0,31.84499931335449,2.2780001163482666,-6.065999984741211,-2.687000036239624,26.57699966430664 -10921,2017-09-29 01:00:00,26.386999130249023,0.0,34.41899871826172,3.135999917984009,-7.185999870300293,-2.687000036239624,25.917999267578125 -10922,2017-09-29 02:00:00,25.214000701904297,0.0,30.45100021362305,1.9839999675750728,-5.906000137329103,-2.687000036239624,25.03899955749512 -10923,2017-09-29 03:00:00,23.87400054931641,0.0,32.08599853515625,1.4210000038146973,-8.454000473022461,-2.697000026702881,24.819499969482425 -10924,2017-09-29 04:00:00,25.80100059509277,0.0,33.613998413085945,3.108999967575073,-7.4629998207092285,-2.4200000762939453,24.3799991607666 -10925,2017-09-29 05:00:00,22.450000762939453,0.0,30.55900001525879,1.9839999675750728,-6.684999942779541,-2.4200000762939453,23.94050025939941 -10926,2017-09-29 06:00:00,25.04700088500977,0.0,33.963001251220696,1.7690000534057615,-8.326999664306639,-3.11299991607666,23.500999450683597 -10927,2017-09-29 07:00:00,28.73200035095215,0.0,36.858001708984375,3.6719999313354488,-7.090000152587893,-3.101999998092652,23.2810001373291 -10928,2017-09-29 08:00:00,24.62800025939941,0.0,33.13199996948242,1.7960000038146973,-8.315999984741211,-3.101999998092652,24.3799991607666 -10929,2017-09-29 09:00:00,22.198999404907227,0.0,31.46999931335449,0.0,-8.315999984741211,-3.101999998092652,25.69849967956543 -10930,2017-09-29 10:00:00,24.96299934387207,0.0,33.775001525878906,1.9839999675750728,-8.315999984741211,-3.101999998092652,27.45599937438965 -10931,2017-09-29 11:00:00,27.726999282836918,0.0,36.05400085449219,2.2249999046325684,-8.27299976348877,-3.101999998092652,28.77449989318848 -10932,2017-09-29 12:00:00,25.04700088500977,0.0,34.79399871826172,1.3400000333786009,-9.49899959564209,-3.101999998092652,30.09250068664551 -10933,2017-09-29 13:00:00,24.375999450683597,0.0,33.15900039672852,1.4739999771118164,-9.48900032043457,-2.900000095367432,31.19099998474121 -10934,2017-09-29 14:00:00,24.795000076293945,0.0,34.12400054931641,1.715999960899353,-9.531000137329102,-2.900000095367432,31.19149971008301 -10935,2017-09-29 15:00:00,25.88400077819824,0.0,35.518001556396484,2.009999990463257,-9.70199966430664,-2.900000095367432,31.410999298095703 -10936,2017-09-29 16:00:00,26.2189998626709,0.0,35.8120002746582,2.438999891281128,-9.680999755859377,-2.900000095367432,31.631000518798828 -10937,2017-09-29 17:00:00,30.57500076293945,0.0,38.70800018310547,2.4130001068115234,-8.401000022888184,-2.900000095367432,31.410999298095703 -10938,2017-09-29 18:00:00,30.743000030517567,0.0,37.18000030517578,2.3320000171661377,-7.185999870300293,-2.900000095367432,30.53199958801269 -10939,2017-09-29 19:00:00,28.229999542236328,0.0,35.57099914550781,0.0,-7.270999908447266,-2.900000095367432,28.99449920654297 -10940,2017-09-29 20:00:00,29.23500061035156,0.0,36.5359992980957,0.0,-5.992000102996826,-2.900000095367432,27.236499786376957 -10941,2017-09-29 21:00:00,28.39699935913086,0.0,35.141998291015625,0.0,-7.175000190734862,-2.900000095367432,27.01650047302246 -10942,2017-09-29 22:00:00,25.71699905395508,0.0,32.78300094604492,1.6349999904632568,-7.559000015258789,-2.900000095367432,26.796499252319336 -10943,2017-09-29 23:00:00,27.308000564575195,0.0,34.31100082397461,2.5999999046325684,-6.333000183105469,-1.684000015258789,27.01650047302246 -10944,2017-09-30 00:00:00,26.47100067138672,0.0,34.06999969482422,3.2170000076293945,-6.333000183105469,-1.684000015258789,27.67600059509277 -10945,2017-09-30 01:00:00,26.386999130249023,0.0,33.05099868774414,2.8949999809265137,-5.853000164031982,-1.2690000534057615,27.67600059509277 -10946,2017-09-30 02:00:00,23.53899955749512,0.0,31.336000442504893,2.2780001163482666,-7.090000152587893,-2.483999967575073,28.114999771118164 -10947,2017-09-30 03:00:00,25.46500015258789,0.0,32.327999114990234,3.1630001068115234,-7.25,-2.483999967575073,27.89550018310547 -10948,2017-09-30 04:00:00,27.05699920654297,0.0,33.50699996948242,3.4040000438690186,-6.001999855041504,-2.483999967575073,26.79700088500977 -10949,2017-09-30 05:00:00,24.375999450683597,0.0,32.38100051879883,2.3320000171661377,-7.879000186920166,-2.483999967575073,25.69849967956543 -10950,2017-09-30 06:00:00,33.25600051879883,0.0,40.63800048828125,3.88700008392334,-6.610000133514402,-2.483999967575073,25.25900077819824 -10951,2017-09-30 07:00:00,34.763999938964844,0.0,41.25400161743164,4.449999809265137,-6.758999824523926,-2.483999967575073,25.25900077819824 -10952,2017-09-30 08:00:00,26.30299949645996,0.0,34.79399871826172,0.0,-8.006999969482424,-2.483999967575073,25.47900009155273 -10953,2017-09-30 09:00:00,32.75299835205078,0.0,42.38000106811523,4.932000160217285,-9.574000358581545,-2.9530000686645512,25.47900009155273 -10954,2017-09-30 10:00:00,29.82099914550781,0.0,38.35900115966797,2.0910000801086426,-8.305000305175781,-2.9530000686645512,25.25900077819824 -10955,2017-09-30 11:00:00,32.83700180053711,0.0,42.05799865722656,3.5380001068115234,-8.241000175476074,-2.9530000686645512,25.47900009155273 -10956,2017-09-30 12:00:00,31.58099937438965,0.0,40.55699920654297,3.190000057220459,-9.32900047302246,-2.9530000686645512,25.69849967956543 -10957,2017-09-30 13:00:00,31.16200065612793,0.0,40.31600189208984,3.3239998817443848,-9.361000061035156,-2.9530000686645512,26.13750076293945 -10958,2017-09-30 14:00:00,28.39699935913086,0.0,38.198001861572266,3.2969999313354488,-9.361000061035156,-2.815000057220459,26.57699966430664 -10959,2017-09-30 15:00:00,30.1560001373291,0.0,39.94100189208984,3.1630001068115234,-9.49899959564209,-2.815000057220459,26.79700088500977 -10960,2017-09-30 16:00:00,31.74799919128418,0.0,40.95899963378906,4.3959999084472665,-8.326999664306639,-2.760999917984009,26.79700088500977 -10961,2017-09-30 17:00:00,30.99399948120117,0.0,39.21699905395508,3.002000093460083,-7.111000061035156,-2.760999917984009,27.89550018310547 -10962,2017-09-30 18:00:00,34.345001220703125,0.0,40.69100189208984,3.565000057220459,-6.162000179290772,-2.760999917984009,28.55500030517578 -10963,2017-09-30 19:00:00,35.85300064086914,0.0,41.11999893188477,3.99399995803833,-4.787000179290772,-1.5460000038146973,28.99399948120117 -10964,2017-09-30 20:00:00,35.60100173950195,0.0,41.06600189208984,3.0290000438690186,-5.992000102996826,-1.5460000038146973,29.214000701904297 -10965,2017-09-30 21:00:00,33.92599868774414,0.0,40.45000076293945,4.2890000343322745,-5.948999881744385,-2.8570001125335693,29.214000701904297 -10966,2017-09-30 22:00:00,36.02000045776367,4.859000205993652,43.21099853515625,6.353000164031982,-7.559000015258789,-2.8570001125335693,29.214000701904297 -10967,2017-09-30 23:00:00,32.75299835205078,0.0,40.10100173950195,4.422999858856201,-6.333000183105469,-2.8570001125335693,29.214000701904297 -10968,2017-10-01 00:00:00,33.088001251220696,0.0,39.27000045776367,4.53000020980835,-6.193999767303468,-2.8570001125335693,29.214000701904297 -10969,2017-10-01 01:00:00,31.58099937438965,0.0,37.18000030517578,3.940000057220459,-6.301000118255615,-2.8570001125335693,29.214000701904297 -10970,2017-10-01 02:00:00,30.65900039672852,0.0,37.1259994506836,4.100999832153319,-6.589000225067139,-2.8250000476837163,29.214000701904297 -10971,2017-10-01 03:00:00,29.40299987792969,0.0,37.68899917602539,4.7709999084472665,-7.815000057220459,-2.8250000476837163,29.43400001525879 -10972,2017-10-01 04:00:00,24.96299934387207,0.0,31.54999923706055,1.9839999675750728,-6.790999889373777,-1.5889999866485596,29.653499603271484 -10973,2017-10-01 05:00:00,31.077999114990234,0.0,36.777000427246094,4.3959999084472665,-5.544000148773193,-1.7799999713897705,29.87299919128418 -10974,2017-10-01 06:00:00,31.66399955749512,0.0,38.54700088500977,4.2890000343322745,-6.769999980926514,-1.7799999713897705,29.87299919128418 -10975,2017-10-01 07:00:00,31.16200065612793,0.0,38.17100143432617,3.753000020980835,-7.164000034332275,-3.006999969482422,30.312000274658203 -10976,2017-10-01 08:00:00,23.28700065612793,0.0,31.54999923706055,0.0,-7.538000106811522,-2.1960000991821294,31.19099998474121 -10977,2017-10-01 09:00:00,30.40800094604492,0.0,37.448001861572266,2.733999967575073,-7.314000129699707,-3.4440000057220463,32.94900131225586 -10978,2017-10-01 10:00:00,26.80599975585937,0.0,33.50699996948242,1.7419999837875366,-7.388000011444093,-2.186000108718872,35.80550003051758 -10979,2017-10-01 11:00:00,33.42300033569336,0.0,41.81700134277344,3.7799999713897705,-8.699999809265138,-2.186000108718872,38.66249847412109 -10980,2017-10-01 12:00:00,34.0099983215332,0.0,42.11199951171875,3.753000020980835,-7.547999858856201,-3.3159999847412114,41.07899856567383 -10981,2017-10-01 13:00:00,33.757999420166016,0.0,41.81700134277344,3.565000057220459,-7.547999858856201,-2.068000078201294,42.83700180053711 -10982,2017-10-01 14:00:00,30.90999984741211,0.0,38.54700088500977,2.8949999809265137,-7.547999858856201,-2.068000078201294,43.05699920654297 -10983,2017-10-01 15:00:00,33.757999420166016,0.0,40.77199935913086,4.127999782562257,-7.175000190734862,-2.068000078201294,41.73799896240234 -10984,2017-10-01 16:00:00,34.09400177001953,0.0,42.29899978637695,4.744999885559082,-7.175000190734862,-2.227999925613404,40.63949966430664 -10985,2017-10-01 17:00:00,35.76900100708008,0.0,42.56800079345703,4.209000110626222,-7.196000099182129,-2.227999925613404,39.54100036621094 -10986,2017-10-01 18:00:00,36.35499954223633,0.0,43.53300094604492,3.8329999446868896,-7.260000228881836,-1.4609999656677246,38.22299957275391 -10987,2017-10-01 19:00:00,34.763999938964844,0.0,40.82500076293945,3.2170000076293945,-6.109000205993652,-2.750999927520752,37.124000549316406 -10988,2017-10-01 20:00:00,34.17699813842773,0.0,40.82500076293945,3.2170000076293945,-5.980999946594237,-1.5140000581741333,36.24499893188477 -10989,2017-10-01 21:00:00,34.93099975585937,0.0,41.57600021362305,4.209000110626222,-6.033999919891357,-1.5140000581741333,35.36600112915039 -10990,2017-10-01 22:00:00,35.182998657226555,0.0,41.709999084472656,4.36899995803833,-6.396999835968018,-1.493000030517578,34.487499237060554 -10991,2017-10-01 23:00:00,30.743000030517567,0.0,37.4739990234375,3.0290000438690186,-6.386000156402588,-1.493000030517578,32.94900131225586 -10992,2017-10-02 00:00:00,30.40800094604492,0.0,36.66999816894531,3.8329999446868896,-6.396999835968018,-2.068000078201294,32.949501037597656 -10993,2017-10-02 01:00:00,28.229999542236328,0.0,34.097000122070305,2.7070000171661377,-6.493000030517577,-1.246999979019165,32.949501037597656 -10994,2017-10-02 02:00:00,29.40299987792969,0.0,36.617000579833984,3.99399995803833,-6.929999828338622,-1.63100004196167,32.06999969482422 -10995,2017-10-02 03:00:00,24.041000366210927,0.0,30.69300079345703,1.3940000534057615,-6.269000053405763,-1.2790000438690186,32.06999969482422 -10996,2017-10-02 04:00:00,27.895000457763672,0.0,34.41899871826172,3.4579999446868896,-6.248000144958496,-1.2790000438690186,30.75200080871582 -10997,2017-10-02 05:00:00,28.145999908447266,0.0,34.365001678466804,3.6459999084472656,-6.0980000495910645,-1.2790000438690186,29.653499603271484 -10998,2017-10-02 06:00:00,28.229999542236328,0.0,35.70500183105469,3.5920000076293945,-7.335000038146973,-2.430999994277954,28.99399948120117 -10999,2017-10-02 07:00:00,26.386999130249023,0.0,34.65999984741211,3.2170000076293945,-7.815000057220459,-2.430999994277954,28.55500030517578 -11000,2017-10-02 08:00:00,24.292999267578125,0.0,31.54999923706055,0.0,-7.729000091552732,-2.0580000877380367,28.114999771118164 -11001,2017-10-02 09:00:00,28.062000274658203,0.0,36.66999816894531,2.9489998817443848,-7.985000133514402,-2.0580000877380367,27.67600059509277 -11002,2017-10-02 10:00:00,26.05200004577637,0.0,34.766998291015625,0.0,-7.974999904632567,-2.0580000877380367,27.45599937438965 -11003,2017-10-02 11:00:00,33.005001068115234,0.0,40.87900161743164,4.182000160217285,-8.060000419616701,-2.5369999408721924,27.23600006103516 -11004,2017-10-02 12:00:00,30.492000579833984,0.0,39.35100173950195,2.680999994277954,-9.232999801635742,-2.5369999408721924,27.45599937438965 -11005,2017-10-02 13:00:00,31.74799919128418,0.0,39.37799835205078,2.760999917984009,-7.953000068664551,-2.5369999408721924,27.67600059509277 -11006,2017-10-02 14:00:00,27.97900009155273,0.0,34.740001678466804,1.5010000467300415,-6.578000068664551,-2.0789999961853027,27.89550018310547 -11007,2017-10-02 15:00:00,31.496999740600582,0.0,39.94100189208984,4.26200008392334,-7.879000186920166,-2.0789999961853027,28.334999084472656 -11008,2017-10-02 16:00:00,32.83700180053711,0.0,40.42300033569336,3.6719999313354488,-7.953000068664551,-2.0789999961853027,28.114999771118164 -11009,2017-10-02 17:00:00,32.92100143432617,0.0,40.71799850463867,3.135999917984009,-8.156000137329103,-2.0789999961853027,28.55500030517578 -11010,2017-10-02 18:00:00,36.1879997253418,0.0,42.59400177001953,3.9670000076293945,-5.671999931335449,-2.0789999961853027,28.334999084472656 -11011,2017-10-02 19:00:00,30.57500076293945,0.0,37.823001861572266,2.3320000171661377,-7.4629998207092285,-2.0789999961853027,27.01650047302246 -11012,2017-10-02 20:00:00,33.42300033569336,0.0,39.27000045776367,1.7419999837875366,-6.109000205993652,-2.0789999961853027,27.23600006103516 -11013,2017-10-02 21:00:00,36.52299880981445,4.690999984741211,42.54100036621094,5.1469998359680185,-6.63100004196167,-2.0789999961853027,27.675500869750977 -11014,2017-10-02 22:00:00,34.0099983215332,0.0,40.07500076293945,4.502999782562256,-6.546000003814697,-2.0789999961853027,28.11549949645996 -11015,2017-10-02 23:00:00,29.319000244140625,0.0,35.8390007019043,3.0829999446868896,-6.610000133514402,-2.0789999961853027,28.11549949645996 -11016,2017-10-03 00:00:00,24.375999450683597,0.0,31.81800079345703,1.5010000467300415,-6.610000133514402,-2.0789999961853027,28.334999084472656 -11017,2017-10-03 01:00:00,28.229999542236328,0.0,34.713001251220696,2.868000030517578,-6.684999942779541,-2.0789999961853027,28.114999771118164 -11018,2017-10-03 02:00:00,26.972999572753903,0.0,33.400001525878906,1.9029999971389768,-6.684999942779541,-1.3539999723434448,28.114999771118164 -11019,2017-10-03 03:00:00,29.15099906921387,0.0,35.4370002746582,3.4040000438690186,-6.652999877929688,-1.3539999723434448,27.89550018310547 -11020,2017-10-03 04:00:00,28.062000274658203,0.0,35.57099914550781,3.51200008392334,-7.014999866485598,-2.984999895095825,27.67600059509277 -11021,2017-10-03 05:00:00,24.87899971008301,0.0,31.68400001525879,2.7070000171661377,-5.789000034332275,-2.984999895095825,27.67600059509277 -11022,2017-10-03 06:00:00,28.81599998474121,0.0,35.91999816894531,3.378000020980835,-7.005000114440918,-2.984999895095825,27.23600006103516 -11023,2017-10-03 07:00:00,28.062000274658203,0.0,37.04600143432617,2.815000057220459,-8.251999855041504,-2.984999895095825,27.01650047302246 -11024,2017-10-03 08:00:00,22.86899948120117,0.0,30.961000442504893,0.0,-8.251999855041504,-2.984999895095825,27.01650047302246 -11025,2017-10-03 09:00:00,29.40299987792969,0.0,37.52799987792969,2.9219999313354488,-8.251999855041504,-2.984999895095825,27.23600006103516 -11026,2017-10-03 10:00:00,26.30299949645996,0.0,33.667999267578125,0.0,-8.251999855041504,-2.984999895095825,27.45599937438965 -11027,2017-10-03 11:00:00,27.726999282836918,0.0,35.893001556396484,2.1440000534057617,-8.262999534606934,-2.984999895095825,27.67600059509277 -11028,2017-10-03 12:00:00,21.780000686645508,0.0,29.566999435424805,0.0,-7.046999931335449,-2.984999895095825,27.67600059509277 -11029,2017-10-03 13:00:00,24.96299934387207,0.0,32.944000244140625,0.0,-8.411999702453612,-2.984999895095825,28.114999771118164 -11030,2017-10-03 14:00:00,22.36599922180176,0.0,30.1299991607666,0.0,-7.175000190734862,-2.984999895095825,28.114999771118164 -11031,2017-10-03 15:00:00,27.05699920654297,0.0,34.365001678466804,0.0,-7.14300012588501,-2.984999895095825,26.35700035095215 -11032,2017-10-03 16:00:00,30.1560001373291,0.0,36.992000579833984,2.0910000801086426,-5.8959999084472665,-2.984999895095825,25.03899955749512 -11033,2017-10-03 17:00:00,32.16699981689453,0.0,39.13600158691406,1.8760000467300413,-7.111000061035156,-2.984999895095825,24.819499969482425 -11034,2017-10-03 18:00:00,34.847000122070305,0.0,41.60300064086914,2.680999994277954,-6.109000205993652,-2.984999895095825,24.819499969482425 -11035,2017-10-03 19:00:00,34.0099983215332,0.0,40.71799850463867,2.760999917984009,-6.119999885559082,-1.7380000352859497,24.819499969482425 -11036,2017-10-03 20:00:00,29.98900032043457,0.0,35.40999984741211,0.0,-4.90399980545044,-1.7380000352859497,24.3799991607666 -11037,2017-10-03 21:00:00,31.74799919128418,0.0,37.2869987487793,1.4210000038146973,-5.447999954223633,-1.7380000352859497,24.15999984741211 -11038,2017-10-03 22:00:00,29.48600006103516,0.0,37.2869987487793,2.8410000801086426,-6.684999942779541,-1.7380000352859497,22.1825008392334 -11039,2017-10-03 23:00:00,29.90500068664551,0.0,36.42900085449219,3.2170000076293945,-5.330999851226807,-1.7380000352859497,21.52300071716309 -11040,2017-10-04 00:00:00,27.559999465942383,0.0,33.69499969482422,1.850000023841858,-6.439000129699707,-1.7380000352859497,21.74300003051757 -11041,2017-10-04 01:00:00,26.72200012207031,0.0,34.6870002746582,2.2780001163482666,-7.697999954223633,-2.9530000686645512,21.74300003051757 -11042,2017-10-04 02:00:00,24.54400062561035,0.0,31.92600059509277,1.4739999771118164,-7.697999954223633,-2.9530000686645512,21.74300003051757 -11043,2017-10-04 03:00:00,25.548999786376957,0.0,32.569000244140625,2.1710000038146973,-7.570000171661378,-1.7059999704360962,22.1825008392334 -11044,2017-10-04 04:00:00,27.47599983215332,0.0,35.57099914550781,3.243000030517578,-7.708000183105469,-1.684000015258789,22.1825008392334 -11045,2017-10-04 05:00:00,24.96299934387207,0.0,31.57699966430664,0.0,-6.84499979019165,-1.684000015258789,22.1825008392334 -11046,2017-10-04 06:00:00,28.062000274658203,0.0,34.472000122070305,2.0639998912811284,-6.84499979019165,-1.684000015258789,22.621999740600582 -11047,2017-10-04 07:00:00,24.54400062561035,0.0,32.273998260498054,0.0,-6.9619998931884775,-2.900000095367432,22.621999740600582 -11048,2017-10-04 08:00:00,21.780000686645508,0.0,29.5939998626709,-1.4210000038146973,-6.951000213623048,-2.900000095367432,22.84199905395508 -11049,2017-10-04 09:00:00,26.88999938964844,0.0,35.25,1.312999963760376,-8.166999816894531,-2.900000095367432,23.2810001373291 -11050,2017-10-04 10:00:00,25.88400077819824,0.0,32.273998260498054,-1.5279999971389768,-6.8979997634887695,-2.900000095367432,24.819499969482425 -11051,2017-10-04 11:00:00,29.319000244140625,0.0,37.39400100708008,2.0369999408721924,-6.84499979019165,-2.900000095367432,26.35700035095215 -11052,2017-10-04 12:00:00,28.899999618530277,0.0,36.42900085449219,1.5279999971389768,-8.081000328063965,-2.900000095367432,27.675500869750977 -11053,2017-10-04 13:00:00,24.96299934387207,0.0,33.53400039672852,0.0,-8.081000328063965,-2.900000095367432,29.214000701904297 -11054,2017-10-04 14:00:00,24.208999633789062,0.0,32.78300094604492,0.0,-8.006999969482424,-2.900000095367432,28.99449920654297 -11055,2017-10-04 15:00:00,26.972999572753903,0.0,34.17699813842773,1.6080000400543213,-8.006999969482424,-2.900000095367432,28.334999084472656 -11056,2017-10-04 16:00:00,25.88400077819824,0.0,33.722000122070305,0.0,-8.177000045776367,-2.900000095367432,27.23600006103516 -11057,2017-10-04 17:00:00,24.208999633789062,0.0,33.50699996948242,0.0,-8.444000244140625,-2.900000095367432,26.35700035095215 -11058,2017-10-04 18:00:00,29.23500061035156,0.0,37.2869987487793,1.4210000038146973,-8.326999664306639,-2.900000095367432,25.917999267578125 -11059,2017-10-04 19:00:00,22.198999404907227,-4.105000019073486,30.98699951171875,-1.3400000333786009,-8.411999702453612,-2.900000095367432,25.47900009155273 -11060,2017-10-04 20:00:00,24.71199989318848,0.0,32.810001373291016,0.0,-7.217999935150146,-2.900000095367432,25.25900077819824 -11061,2017-10-04 21:00:00,25.548999786376957,0.0,33.613998413085945,0.0,-8.432999610900879,-2.900000095367432,24.819499969482425 -11062,2017-10-04 22:00:00,27.392000198364247,0.0,35.4370002746582,1.6349999904632568,-8.295000076293945,-2.900000095367432,23.94050025939941 -11063,2017-10-04 23:00:00,23.790000915527344,0.0,31.20199966430664,0.0,-7.164000034332275,-2.900000095367432,22.84199905395508 -11064,2017-10-05 00:00:00,21.36100006103516,0.0,29.48600006103516,0.0,-8.380000114440918,-2.900000095367432,22.402000427246094 -11065,2017-10-05 01:00:00,19.350000381469727,0.0,27.66399955749512,0.0,-8.444000244140625,-2.900000095367432,21.30349922180176 -11066,2017-10-05 02:00:00,18.59600067138672,0.0,27.50300025939941,0.0,-8.444000244140625,-2.900000095367432,20.864500045776367 -11067,2017-10-05 03:00:00,21.025999069213867,0.0,29.218000411987305,0.0,-8.444000244140625,-2.900000095367432,19.98550033569336 -11068,2017-10-05 04:00:00,23.53899955749512,0.0,32.59600067138672,1.5820000171661377,-9.670000076293944,-2.900000095367432,19.54599952697754 -11069,2017-10-05 05:00:00,20.020999908447266,0.0,29.0310001373291,0.0,-8.454000473022461,-2.900000095367432,19.10650062561035 -11070,2017-10-05 06:00:00,25.548999786376957,0.0,33.88199996948242,1.5549999475479126,-8.444000244140625,-2.900000095367432,18.44700050354004 -11071,2017-10-05 07:00:00,25.71699905395508,0.0,34.6870002746582,1.4210000038146973,-8.444000244140625,-2.900000095367432,18.227500915527344 -11072,2017-10-05 08:00:00,22.70100021362305,0.0,31.416000366210927,0.0,-8.444000244140625,-4.114999771118163,18.44700050354004 -11073,2017-10-05 09:00:00,27.895000457763672,0.0,36.3489990234375,0.0,-8.220000267028809,-2.6760001182556152,19.10650062561035 -11074,2017-10-05 10:00:00,33.088001251220696,0.0,41.52199935913086,3.2969999313354488,-8.61400032043457,-3.2090001106262207,19.98550033569336 -11075,2017-10-05 11:00:00,33.50699996948242,0.0,41.87099838256836,3.4040000438690186,-7.217999935150146,-3.2090001106262207,20.645000457763672 -11076,2017-10-05 12:00:00,28.145999908447266,0.0,37.42100143432617,1.6080000400543213,-8.550000190734862,-3.2090001106262207,20.864500045776367 -11077,2017-10-05 13:00:00,31.916000366210927,0.0,40.12799835205078,3.378000020980835,-7.291999816894531,-3.2090001106262207,20.20499992370605 -11078,2017-10-05 14:00:00,31.66399955749512,0.0,39.32400131225586,3.135999917984009,-7.452000141143799,-2.5369999408721924,19.98550033569336 -11079,2017-10-05 15:00:00,32.58599853515625,0.0,39.86000061035156,3.0829999446868896,-7.4099998474121085,-2.5369999408721924,19.98550033569336 -11080,2017-10-05 16:00:00,26.972999572753903,0.0,35.089000701904304,1.4479999542236328,-8.741999626159668,-2.5369999408721924,19.98550033569336 -11081,2017-10-05 17:00:00,33.92599868774414,0.0,40.87900161743164,2.5729999542236333,-7.559000015258789,-2.5369999408721924,20.424999237060547 -11082,2017-10-05 18:00:00,34.68000030517578,0.0,41.52199935913086,3.3510000705718994,-6.48199987411499,-2.5369999408721924,21.083999633789062 -11083,2017-10-05 19:00:00,30.82699966430664,0.0,37.448001861572266,1.3400000333786009,-6.502999782562256,-2.5369999408721924,21.083999633789062 -11084,2017-10-05 20:00:00,33.50699996948242,0.0,39.08300018310547,2.0910000801086426,-5.447999954223633,-2.5369999408721924,21.52300071716309 -11085,2017-10-05 21:00:00,32.669998168945305,0.0,38.43899917602539,3.0559999942779537,-5.191999912261963,-2.5369999408721924,21.96299934387207 -11086,2017-10-05 22:00:00,33.92599868774414,0.0,40.23500061035156,4.932000160217285,-5.639999866485598,-2.5369999408721924,21.96299934387207 -11087,2017-10-05 23:00:00,31.99900054931641,0.0,38.86800003051758,3.7260000705718994,-5.831999778747559,-2.5369999408721924,22.1825008392334 -11088,2017-10-06 00:00:00,30.743000030517567,0.0,38.30500030517578,4.557000160217285,-7.335000038146973,-2.5369999408721924,22.402000427246094 -11089,2017-10-06 01:00:00,29.82099914550781,0.0,37.04600143432617,3.4040000438690186,-7.50600004196167,-2.5369999408721924,22.402000427246094 -11090,2017-10-06 02:00:00,30.82699966430664,0.0,36.50899887084961,3.51200008392334,-4.840000152587892,-2.5369999408721924,22.402000427246094 -11091,2017-10-06 03:00:00,28.062000274658203,0.0,35.4370002746582,3.753000020980835,-7.431000232696532,-2.5369999408721924,22.402000427246094 -11092,2017-10-06 04:00:00,27.895000457763672,0.0,35.75899887084961,3.2969999313354488,-7.431000232696532,-2.5369999408721924,22.621999740600582 -11093,2017-10-06 05:00:00,27.22500038146973,0.0,34.87400054931641,2.8410000801086426,-8.656999588012695,-2.5369999408721924,22.621999740600582 -11094,2017-10-06 06:00:00,30.57500076293945,0.0,38.198001861572266,3.243000030517578,-8.689000129699707,-2.5369999408721924,22.84199905395508 -11095,2017-10-06 07:00:00,29.90500068664551,0.0,38.0369987487793,3.0290000438690186,-8.581999778747559,-2.5369999408721924,22.84199905395508 -11096,2017-10-06 08:00:00,28.565000534057607,0.0,35.946998596191406,0.0,-7.34600019454956,-2.5369999408721924,23.06150054931641 -11097,2017-10-06 09:00:00,29.319000244140625,0.0,37.5009994506836,1.850000023841858,-8.593000411987305,-2.5369999408721924,23.94050025939941 -11098,2017-10-06 10:00:00,32.669998168945305,0.0,39.86000061035156,3.0290000438690186,-7.206999778747559,-2.5369999408721924,24.819499969482425 -11099,2017-10-06 11:00:00,34.93099975585937,0.0,42.99599838256836,3.9670000076293945,-8.645999908447267,-2.5369999408721924,25.25900077819824 -11100,2017-10-06 12:00:00,31.2450008392334,0.0,39.29700088500977,1.715999960899353,-7.559000015258789,-2.5369999408721924,26.13750076293945 -11101,2017-10-06 13:00:00,33.34000015258789,0.0,41.57600021362305,4.2890000343322745,-7.559000015258789,-2.5369999408721924,27.23600006103516 -11102,2017-10-06 14:00:00,28.481000900268555,0.0,35.70500183105469,1.7690000534057615,-7.559000015258789,-2.5369999408721924,28.55500030517578 -11103,2017-10-06 15:00:00,33.674999237060554,0.0,41.46799850463867,3.61899995803833,-7.559000015258789,-2.5369999408721924,29.214000701904297 -11104,2017-10-06 16:00:00,35.85300064086914,0.0,43.15700149536133,4.073999881744385,-7.633999824523926,-2.259999990463257,29.214000701904297 -11105,2017-10-06 17:00:00,32.83700180053711,0.0,41.09299850463867,3.135999917984009,-7.750999927520753,-2.259999990463257,28.77449989318848 -11106,2017-10-06 18:00:00,34.345001220703125,0.0,41.57600021362305,3.0829999446868896,-6.493000030517577,-2.259999990463257,28.114999771118164 -11107,2017-10-06 19:00:00,34.261001586914055,0.0,39.29700088500977,1.7690000534057615,-3.9660000801086426,-1.2150000333786009,27.67600059509277 -11108,2017-10-06 20:00:00,32.83700180053711,0.0,39.61899948120117,1.6349999904632568,-7.14300012588501,-1.5460000038146973,27.23600006103516 -11109,2017-10-06 21:00:00,36.35499954223633,0.0,41.81700134277344,4.073999881744385,-5.8959999084472665,-1.2369999885559082,26.79700088500977 -11110,2017-10-06 22:00:00,31.496999740600582,0.0,38.76100158691406,3.3239998817443848,-6.065999984741211,-1.3009999990463257,26.35700035095215 -11111,2017-10-06 23:00:00,33.674999237060554,0.0,39.69900131225586,3.6459999084472656,-6.045000076293945,-1.3009999990463257,25.917999267578125 -11112,2017-10-07 00:00:00,32.417999267578125,0.0,38.89500045776367,3.9670000076293945,-6.0879998207092285,-1.3009999990463257,25.47900009155273 -11113,2017-10-07 01:00:00,29.066999435424805,0.0,35.141998291015625,1.4739999771118164,-6.0879998207092285,-1.3009999990463257,24.819499969482425 -11114,2017-10-07 02:00:00,30.492000579833984,0.0,37.34000015258789,3.190000057220459,-7.335000038146973,-1.3009999990463257,24.3799991607666 -11115,2017-10-07 03:00:00,29.40299987792969,0.0,36.24100112915039,3.565000057220459,-7.335000038146973,-1.3009999990463257,24.15999984741211 -11116,2017-10-07 04:00:00,28.899999618530277,0.0,36.29499816894531,3.3510000705718994,-7.282000064849853,-2.5910000801086426,23.72100067138672 -11117,2017-10-07 05:00:00,30.743000030517567,0.0,37.823001861572266,4.744999885559082,-6.02400016784668,-2.5910000801086426,23.500999450683597 -11118,2017-10-07 06:00:00,29.90500068664551,0.0,35.25,2.6540000438690186,-4.702000141143799,-1.2369999885559082,23.2810001373291 -11119,2017-10-07 07:00:00,33.590999603271484,0.0,40.04800033569336,3.9670000076293945,-5.724999904632568,-2.6010000705718994,23.500999450683597 -11120,2017-10-07 08:00:00,27.726999282836918,0.0,33.31999969482422,0.0,-5.692999839782715,-2.6010000705718994,24.60000038146973 -11121,2017-10-07 09:00:00,32.501998901367195,0.0,40.47700119018555,3.9140000343322754,-8.241000175476074,-2.6010000705718994,26.57699966430664 -11122,2017-10-07 10:00:00,35.349998474121094,0.0,43.34500122070313,4.502999782562256,-7.005000114440918,-2.6010000705718994,29.87299919128418 -11123,2017-10-07 11:00:00,36.35499954223633,0.0,42.38000106811523,3.7260000705718994,-7.122000217437744,-2.6010000705718994,32.72949981689453 -11124,2017-10-07 12:00:00,28.145999908447266,0.0,36.10699844360352,1.3940000534057615,-8.47599983215332,-2.6010000705718994,35.36600112915039 -11125,2017-10-07 13:00:00,29.15099906921387,0.0,36.696998596191406,0.0,-8.421999931335451,-2.6010000705718994,37.78350067138672 -11126,2017-10-07 14:00:00,31.077999114990234,0.0,39.99399948120117,2.760999917984009,-8.444000244140625,-2.6010000705718994,39.10200119018555 -11127,2017-10-07 15:00:00,34.512001037597656,0.0,42.24599838256836,4.073999881744385,-8.444000244140625,-2.7079999446868896,40.20000076293945 -11128,2017-10-07 16:00:00,34.345001220703125,0.0,42.03099822998047,3.6719999313354488,-7.122000217437744,-2.494999885559082,38.88199996948242 -11129,2017-10-07 17:00:00,35.518001556396484,0.0,42.75500106811523,3.8329999446868896,-7.111000061035156,-2.494999885559082,37.34349822998047 -11130,2017-10-07 18:00:00,37.19300079345703,0.0,42.56800079345703,3.3239998817443848,-4.423999786376953,-1.2690000534057615,35.58599853515625 -11131,2017-10-07 19:00:00,34.09400177001953,0.0,40.18199920654297,1.8760000467300413,-5.8959999084472665,-2.5160000324249268,33.827999114990234 -11132,2017-10-07 20:00:00,33.34000015258789,0.0,39.75299835205078,1.6619999408721924,-6.033999919891357,-2.664999961853028,32.72949981689453 -11133,2017-10-07 21:00:00,36.858001708984375,4.188000202178955,43.15700149536133,4.824999809265137,-6.162000179290772,-1.246999979019165,31.850500106811523 -11134,2017-10-07 22:00:00,39.37099838256836,5.52899980545044,44.06900024414063,5.199999809265137,-4.989999771118164,0.0,31.19099998474121 -11135,2017-10-07 23:00:00,27.308000564575195,0.0,34.955001831054695,2.252000093460083,-7.335000038146973,-1.2369999885559082,30.53199958801269 -11136,2017-10-08 00:00:00,33.17200088500977,0.0,39.72600173950195,3.859999895095825,-5.853000164031982,-1.8760000467300413,30.312000274658203 -11137,2017-10-08 01:00:00,22.450000762939453,0.0,28.976999282836918,0.0,-5.885000228881836,-1.8760000467300413,29.87299919128418 -11138,2017-10-08 02:00:00,30.90999984741211,0.0,38.198001861572266,3.940000057220459,-6.02400016784668,-1.8760000467300413,29.653499603271484 -11139,2017-10-08 03:00:00,32.501998901367195,0.0,38.70800018310547,4.2890000343322745,-5.171000003814697,-1.8760000467300413,28.99399948120117 -11140,2017-10-08 04:00:00,27.81100082397461,0.0,34.17699813842773,2.7070000171661377,-6.3540000915527335,-2.505000114440918,28.55500030517578 -11141,2017-10-08 05:00:00,30.99399948120117,0.0,36.80400085449219,4.235000133514403,-6.3540000915527335,-1.4500000476837158,27.89550018310547 -11142,2017-10-08 06:00:00,28.565000534057607,0.0,35.86600112915039,3.108999967575073,-7.270999908447266,-1.4500000476837158,27.45599937438965 -11143,2017-10-08 07:00:00,32.417999267578125,0.0,38.65399932861328,3.8329999446868896,-5.96999979019165,-2.7720000743865967,27.23600006103516 -11144,2017-10-08 08:00:00,28.31399917602539,0.0,34.928001403808594,0.0,-6.151999950408936,-2.7720000743865967,28.114999771118164 -11145,2017-10-08 09:00:00,30.99399948120117,0.0,38.14500045776367,3.0829999446868896,-7.367000102996826,-2.7720000743865967,30.312000274658203 -11146,2017-10-08 10:00:00,33.17200088500977,0.0,40.71799850463867,4.690999984741211,-7.538000106811522,-1.4709999561309814,33.388999938964844 -11147,2017-10-08 11:00:00,35.349998474121094,0.0,43.26399993896485,5.013000011444092,-7.494999885559082,-1.9720000028610232,36.68450164794922 -11148,2017-10-08 12:00:00,34.763999938964844,0.0,41.709999084472656,4.315999984741212,-7.111000061035156,-1.9720000028610232,39.10150146484375 -11149,2017-10-08 13:00:00,34.763999938964844,0.0,42.56800079345703,4.3959999084472665,-7.111000061035156,-1.9720000028610232,41.51850128173828 -11150,2017-10-08 14:00:00,35.182998657226555,0.0,42.48699951171875,4.879000186920166,-7.228000164031982,-1.9720000028610232,42.61750030517578 -11151,2017-10-08 15:00:00,34.429000854492195,0.0,41.44200134277344,4.2890000343322745,-7.377999782562256,-1.715999960899353,43.49649810791016 -11152,2017-10-08 16:00:00,36.68999862670898,4.5229997634887695,43.479000091552734,5.308000087738037,-7.39900016784668,-1.715999960899353,41.95800018310547 -11153,2017-10-08 17:00:00,37.44400024414063,4.188000202178955,42.88899993896485,4.449999809265137,-6.193999767303468,-1.5140000581741333,40.41949844360352 -11154,2017-10-08 18:00:00,37.44400024414063,0.0,44.25600051879883,4.36899995803833,-6.172999858856201,-2.8359999656677246,38.44250106811523 -11155,2017-10-08 19:00:00,29.066999435424805,0.0,36.64300155639648,1.3940000534057615,-6.172999858856201,-1.6100000143051147,36.46500015258789 -11156,2017-10-08 20:00:00,32.92100143432617,0.0,39.18999862670898,2.385999917984009,-6.0980000495910645,-1.4390000104904177,35.145999908447266 -11157,2017-10-08 21:00:00,36.35499954223633,4.5229997634887695,42.29899978637695,4.797999858856201,-6.02400016784668,-1.4390000104904177,34.268001556396484 -11158,2017-10-08 22:00:00,28.062000274658203,0.0,34.740001678466804,1.6349999904632568,-6.130000114440918,-1.3009999990463257,33.827999114990234 -11159,2017-10-08 23:00:00,31.32900047302246,0.0,37.071998596191406,3.4579999446868896,-6.172999858856201,-1.2790000438690186,33.388999938964844 -11160,2017-10-09 00:00:00,32.92100143432617,0.0,39.64599990844727,4.584000110626222,-6.695000171661378,-1.2790000438690186,32.94900131225586 -11161,2017-10-09 01:00:00,32.75299835205078,0.0,38.38600158691406,3.5380001068115234,-5.320000171661377,-1.343000054359436,32.5099983215332 -11162,2017-10-09 02:00:00,31.077999114990234,0.0,37.4739990234375,3.940000057220459,-6.557000160217285,-1.940000057220459,31.850500106811523 -11163,2017-10-09 03:00:00,31.99900054931641,0.0,39.11000061035156,4.073999881744385,-7.026000022888184,-1.621000051498413,31.410999298095703 -11164,2017-10-09 04:00:00,32.58599853515625,0.0,38.97600173950195,4.3429999351501465,-5.809999942779541,-1.621000051498413,30.53199958801269 -11165,2017-10-09 05:00:00,32.16699981689453,4.2719998359680185,39.96699905395508,5.334000110626222,-7.005000114440918,-1.621000051498413,29.87299919128418 -11166,2017-10-09 06:00:00,32.669998168945305,0.0,39.08300018310547,3.61899995803833,-7.037000179290772,-1.621000051498413,29.653499603271484 -11167,2017-10-09 07:00:00,25.29800033569336,0.0,32.46200180053711,0.0,-6.88700008392334,-1.621000051498413,29.653499603271484 -11168,2017-10-09 08:00:00,27.47599983215332,0.0,36.1879997253418,1.6080000400543213,-8.166999816894531,-2.8469998836517334,30.312000274658203 -11169,2017-10-09 09:00:00,33.84199905395508,0.0,41.415000915527344,4.53000020980835,-8.135000228881836,-2.8469998836517334,32.5099983215332 -11170,2017-10-09 10:00:00,32.16699981689453,0.0,40.07500076293945,3.002000093460083,-6.876999855041504,-2.8469998836517334,35.58549880981445 -11171,2017-10-09 11:00:00,36.35499954223633,4.355999946594238,44.76599884033203,5.816999912261963,-8.199000358581543,-2.174999952316284,38.88150024414063 -11172,2017-10-09 12:00:00,35.76900100708008,0.0,42.48699951171875,3.7799999713897705,-6.802000045776367,-2.174999952316284,41.73799896240234 -11173,2017-10-09 13:00:00,33.42300033569336,0.0,41.709999084472656,3.7799999713897705,-8.006999969482424,-2.174999952316284,43.2765007019043 -11174,2017-10-09 14:00:00,34.0099983215332,0.0,40.31600189208984,2.9489998817443848,-6.84499979019165,-2.174999952316284,44.81399917602539 -11175,2017-10-09 15:00:00,33.92599868774414,0.0,40.95899963378906,3.5920000076293945,-7.131999969482423,-2.9110000133514404,45.03400039672852 -11176,2017-10-09 16:00:00,37.36100006103516,4.440000057220459,43.21099853515625,5.119999885559082,-5.863999843597412,-2.9110000133514404,43.05699920654297 -11177,2017-10-09 17:00:00,38.44900131225586,4.2719998359680185,44.685001373291016,5.1469998359680185,-5.863999843597412,-1.6950000524520874,41.73799896240234 -11178,2017-10-09 18:00:00,40.125,4.941999912261963,45.51599884033203,5.1469998359680185,-4.519999980926514,-1.22599995136261,39.97999954223633 -11179,2017-10-09 19:00:00,32.83700180053711,0.0,39.72600173950195,2.118000030517578,-6.769999980926514,-1.22599995136261,38.00299835205078 -11180,2017-10-09 20:00:00,41.13000106811523,5.947999954223633,45.54299926757813,5.656000137329103,-4.254000186920166,-1.2690000534057615,36.46500015258789 -11181,2017-10-09 21:00:00,39.20299911499024,5.193999767303467,45.24800109863281,5.494999885559082,-5.651000022888184,-1.2790000438690186,35.145999908447266 -11182,2017-10-09 22:00:00,38.36600112915039,6.533999919891357,44.25600051879883,6.164999961853027,-5.789000034332275,0.0,34.707000732421875 -11183,2017-10-09 23:00:00,37.44400024414063,6.031000137329103,42.21900177001953,5.656000137329103,-4.573999881744385,0.0,34.268001556396484 -11184,2017-10-10 00:00:00,34.261001586914055,0.0,40.15499877929688,4.155000209808351,-5.8420000076293945,0.0,34.268001556396484 -11185,2017-10-10 01:00:00,30.65900039672852,0.0,35.57099914550781,2.9749999046325684,-5.276999950408936,0.0,34.04800033569336 -11186,2017-10-10 02:00:00,27.22500038146973,0.0,34.6870002746582,3.51200008392334,-6.866000175476074,-1.2580000162124634,33.388999938964844 -11187,2017-10-10 03:00:00,32.669998168945305,4.941999912261963,37.87699890136719,4.824999809265137,-5.724999904632568,0.0,32.94900131225586 -11188,2017-10-10 04:00:00,31.32900047302246,4.440000057220459,38.43899917602539,5.548999786376953,-5.96999979019165,-1.2690000534057615,32.290000915527344 -11189,2017-10-10 05:00:00,32.75299835205078,0.0,39.430999755859375,3.2170000076293945,-5.683000087738037,-1.22599995136261,32.06999969482422 -11190,2017-10-10 06:00:00,34.429000854492195,0.0,40.28900146484375,2.438999891281128,-5.554999828338623,-1.63100004196167,32.06999969482422 -11191,2017-10-10 07:00:00,30.57500076293945,0.0,35.70500183105469,0.0,-5.5970001220703125,-1.343000054359436,32.06999969482422 -11192,2017-10-10 08:00:00,33.005001068115234,0.0,40.90599822998047,1.5549999475479126,-7.633999824523926,-2.6440000534057617,32.290000915527344 -11193,2017-10-10 09:00:00,35.43399810791016,0.0,42.38000106811523,3.0829999446868896,-7.323999881744385,-2.6440000534057617,33.16899871826172 -11194,2017-10-10 10:00:00,26.72200012207031,0.0,35.2760009765625,0.0,-8.550000190734862,-2.6440000534057617,34.487499237060554 -11195,2017-10-10 11:00:00,30.82699966430664,0.0,38.62699890136719,0.0,-7.291999816894531,-2.6440000534057617,36.68450164794922 -11196,2017-10-10 12:00:00,26.972999572753903,0.0,36.59000015258789,0.0,-8.529000282287598,-2.302999973297119,37.78350067138672 -11197,2017-10-10 13:00:00,28.31399917602539,0.0,37.34000015258789,0.0,-8.604000091552733,-3.635999917984009,38.66249847412109 -11198,2017-10-10 14:00:00,36.60699844360352,0.0,44.97999954223633,3.002000093460083,-8.604000091552733,-3.635999917984009,38.66249847412109 -11199,2017-10-10 15:00:00,34.59600067138672,0.0,43.07699966430664,2.760999917984009,-7.335000038146973,-2.068000078201294,38.22249984741211 -11200,2017-10-10 16:00:00,33.92599868774414,0.0,41.92399978637695,1.850000023841858,-8.550000190734862,-3.2839999198913574,36.90449905395508 -11201,2017-10-10 17:00:00,35.014999389648445,0.0,42.80899810791016,0.0,-7.090000152587893,-3.2839999198913574,34.926498413085945 -11202,2017-10-10 18:00:00,37.19300079345703,0.0,45.73099899291992,2.385999917984009,-8.145000457763674,-2.003999948501587,33.388500213623054 -11203,2017-10-10 19:00:00,34.68000030517578,0.0,41.790000915527344,0.0,-7.879000186920166,-2.0150001049041752,32.070499420166016 -11204,2017-10-10 20:00:00,30.82699966430664,0.0,38.46599960327149,0.0,-6.557000160217285,-2.0150001049041752,30.75149917602539 -11205,2017-10-10 21:00:00,31.413000106811523,0.0,38.22499847412109,0.0,-6.513999938964844,-3.325999975204468,29.43350028991699 -11206,2017-10-10 22:00:00,36.1879997253418,0.0,43.02299880981445,3.6989998817443848,-6.749000072479247,-2.0999999046325684,28.11549949645996 -11207,2017-10-10 23:00:00,33.25600051879883,0.0,41.38800048828125,1.6890000104904177,-7.85699987411499,-2.0999999046325684,27.45599937438965 -11208,2017-10-11 00:00:00,33.17200088500977,0.0,40.61100006103516,1.715999960899353,-7.570000171661378,-2.0999999046325684,26.57699966430664 -11209,2017-10-11 01:00:00,29.82099914550781,0.0,38.573001861572266,0.0,-7.34600019454956,-2.45199990272522,25.478500366210927 -11210,2017-10-11 02:00:00,29.40299987792969,0.0,36.80400085449219,0.0,-7.388000011444093,-2.45199990272522,25.039499282836918 -11211,2017-10-11 03:00:00,33.42300033569336,0.0,40.10100173950195,1.8229999542236328,-6.065999984741211,-1.4500000476837158,24.160499572753903 -11212,2017-10-11 04:00:00,25.1299991607666,0.0,33.45399856567383,0.0,-7.729000091552732,-1.4500000476837158,23.2814998626709 -11213,2017-10-11 05:00:00,31.58099937438965,0.0,38.97600173950195,1.4479999542236328,-7.729000091552732,-1.7059999704360962,22.40250015258789 -11214,2017-10-11 06:00:00,34.0099983215332,0.0,41.76300048828125,1.7690000534057615,-8.208999633789062,-1.6100000143051147,21.962499618530277 -11215,2017-10-11 07:00:00,35.43399810791016,0.0,42.13899993896485,1.7960000038146973,-6.9190001487731925,-2.782999992370605,21.523500442504886 -11216,2017-10-11 08:00:00,27.726999282836918,0.0,36.08100128173828,0.0,-8.251999855041504,-3.059999942779541,21.74300003051757 -11217,2017-10-11 09:00:00,32.501998901367195,0.0,43.31800079345703,3.565000057220459,-9.520999908447266,-3.059999942779541,22.1825008392334 -11218,2017-10-11 10:00:00,30.492000579833984,0.0,40.71799850463867,0.0,-9.4350004196167,-3.059999942779541,22.402000427246094 -11219,2017-10-11 11:00:00,30.239999771118164,0.0,39.29700088500977,0.0,-8.295000076293945,-2.5799999237060547,22.84199905395508 -11220,2017-10-11 12:00:00,31.74799919128418,0.0,41.49499893188477,0.0,-9.48900032043457,-2.5799999237060547,23.500999450683597 -11221,2017-10-11 13:00:00,28.983999252319336,0.0,37.5009994506836,0.0,-9.49899959564209,-3.4440000057220463,22.84199905395508 -11222,2017-10-11 14:00:00,24.96299934387207,0.0,34.12400054931641,0.0,-9.595000267028809,-3.4440000057220463,22.402000427246094 -11223,2017-10-11 15:00:00,30.239999771118164,0.0,40.10100173950195,0.0,-9.562999725341797,-3.4440000057220463,22.402000427246094 -11224,2017-10-11 16:00:00,33.42300033569336,0.0,43.53300094604492,2.6540000438690186,-9.680999755859377,-3.4440000057220463,22.402000427246094 -11225,2017-10-11 17:00:00,35.85300064086914,0.0,44.33700180053711,1.7419999837875366,-8.220000267028809,-2.227999925613404,21.52300071716309 -11226,2017-10-11 18:00:00,37.10900115966797,0.0,44.900001525878906,2.7880001068115234,-8.156000137329103,-3.4440000057220463,21.083999633789062 -11227,2017-10-11 19:00:00,31.832000732421875,0.0,39.56499862670898,0.0,-7.900000095367432,-2.131999969482422,20.424999237060547 -11228,2017-10-11 20:00:00,34.345001220703125,0.0,43.04999923706055,2.3320000171661377,-9.041000366210938,-2.131999969482422,20.20499992370605 -11229,2017-10-11 21:00:00,35.85300064086914,0.0,43.854000091552734,3.243000030517578,-8.411999702453612,-3.4219999313354488,20.20499992370605 -11230,2017-10-11 22:00:00,32.58599853515625,0.0,40.90599822998047,3.002000093460083,-8.411999702453612,-3.4219999313354488,20.20499992370605 -11231,2017-10-11 23:00:00,29.48600006103516,4.775000095367432,40.36899948120117,7.317999839782715,-9.64900016784668,-3.4219999313354488,20.20499992370605 -11232,2017-10-12 00:00:00,27.05699920654297,0.0,38.25199890136719,2.2249999046325684,-11.17300033569336,-3.4219999313354488,20.20499992370605 -11233,2017-10-12 01:00:00,26.30299949645996,0.0,38.43899917602539,2.680999994277954,-11.17300033569336,-3.4219999313354488,20.20499992370605 -11234,2017-10-12 02:00:00,26.386999130249023,0.0,37.93000030517578,2.5199999809265137,-12.40999984741211,-3.4219999313354488,19.766000747680664 -11235,2017-10-12 03:00:00,27.726999282836918,0.0,37.55500030517578,2.2780001163482666,-11.109000205993652,-3.4219999313354488,19.766000747680664 -11236,2017-10-12 04:00:00,24.62800025939941,0.0,34.9010009765625,0.0,-11.109000205993652,-3.4219999313354488,19.326000213623047 -11237,2017-10-12 05:00:00,27.22500038146973,0.0,38.41299819946289,2.358999967575073,-11.06700038909912,-2.5480000972747803,19.326000213623047 -11238,2017-10-12 06:00:00,22.114999771118164,0.0,32.54199981689453,0.0,-11.07699966430664,-3.7739999294281006,18.886999130249023 -11239,2017-10-12 07:00:00,29.319000244140625,0.0,39.83300018310547,2.3320000171661377,-11.02400016784668,-3.7739999294281006,18.44700050354004 -11240,2017-10-12 08:00:00,26.30299949645996,0.0,36.7509994506836,0.0,-9.883000373840332,-3.7739999294281006,18.44700050354004 -11241,2017-10-12 09:00:00,32.08300018310547,0.0,43.74700164794922,3.484999895095825,-11.140999794006348,-3.7739999294281006,18.44700050354004 -11242,2017-10-12 10:00:00,29.23500061035156,0.0,40.36899948120117,0.0,-11.140999794006348,-3.7739999294281006,18.66699981689453 -11243,2017-10-12 11:00:00,30.743000030517567,0.0,42.24599838256836,2.493000030517578,-11.140999794006348,-3.7739999294281006,19.10650062561035 -11244,2017-10-12 12:00:00,29.90500068664551,0.0,42.40700149536133,1.9029999971389768,-12.366999626159668,-3.7739999294281006,19.54599952697754 -11245,2017-10-12 13:00:00,30.32399940490723,0.0,42.13899993896485,3.1630001068115234,-11.109000205993652,-3.7739999294281006,19.98550033569336 -11246,2017-10-12 14:00:00,28.229999542236328,0.0,40.07500076293945,1.3669999837875366,-11.119999885559082,-3.7739999294281006,20.20499992370605 -11247,2017-10-12 15:00:00,28.899999618530277,0.0,41.46799850463867,2.438999891281128,-12.42099952697754,-3.7739999294281006,20.20499992370605 -11248,2017-10-12 16:00:00,31.16200065612793,0.0,42.59400177001953,1.5549999475479126,-11.130000114440918,-3.7739999294281006,20.20499992370605 -11249,2017-10-12 17:00:00,31.2450008392334,0.0,43.31800079345703,0.0,-12.39900016784668,-3.7739999294281006,20.20499992370605 -11250,2017-10-12 18:00:00,32.669998168945305,0.0,44.57799911499024,2.1440000534057617,-11.130000114440918,-3.7739999294281006,20.20499992370605 -11251,2017-10-12 19:00:00,30.99399948120117,0.0,42.13899993896485,0.0,-11.184000015258787,-3.7739999294281006,20.645000457763672 -11252,2017-10-12 20:00:00,30.32399940490723,0.0,41.11999893188477,0.0,-11.055999755859377,-3.7739999294281006,20.864500045776367 -11253,2017-10-12 21:00:00,30.90999984741211,0.0,42.35300064086914,1.8760000467300413,-11.012999534606934,-3.7739999294281006,21.30349922180176 -11254,2017-10-12 22:00:00,31.832000732421875,0.0,42.64799880981445,3.0829999446868896,-11.012999534606934,-3.7739999294281006,21.52300071716309 -11255,2017-10-12 23:00:00,31.66399955749512,0.0,40.55699920654297,2.1710000038146973,-9.616999626159668,-3.7739999294281006,21.52300071716309 -11256,2017-10-13 00:00:00,26.88999938964844,0.0,36.9379997253418,1.6349999904632568,-10.991999626159668,-3.7739999294281006,21.52300071716309 -11257,2017-10-13 01:00:00,22.114999771118164,0.0,32.810001373291016,1.7419999837875366,-9.80799961090088,-3.7739999294281006,21.74300003051757 -11258,2017-10-13 02:00:00,23.28700065612793,0.0,31.416000366210927,0.0,-8.486000061035156,-2.483999967575073,21.74300003051757 -11259,2017-10-13 03:00:00,20.1879997253418,0.0,30.93400001525879,0.0,-10.479999542236328,-2.483999967575073,21.74300003051757 -11260,2017-10-13 04:00:00,23.70599937438965,0.0,32.78300094604492,0.0,-7.985000133514402,-2.483999967575073,21.52300071716309 -11261,2017-10-13 05:00:00,22.450000762939453,0.0,31.92600059509277,0.0,-9.402999877929688,-3.742000102996826,21.52300071716309 -11262,2017-10-13 06:00:00,25.381999969482425,0.0,35.222999572753906,0.0,-9.317999839782717,-3.742000102996826,21.30349922180176 -11263,2017-10-13 07:00:00,25.80100059509277,0.0,36.483001708984375,0.0,-10.468999862670898,-3.742000102996826,21.083999633789062 -11264,2017-10-13 08:00:00,22.617000579833984,-4.5229997634887695,33.21200180053711,-1.3940000534057615,-10.55500030517578,-3.9340000152587886,21.74300003051757 -11265,2017-10-13 09:00:00,28.899999618530277,0.0,40.77199935913086,2.1710000038146973,-11.845000267028809,-3.9340000152587886,22.84199905395508 -11266,2017-10-13 10:00:00,22.95199966430664,-4.440000057220459,35.0620002746582,0.0,-11.822999954223633,-3.9340000152587886,24.15999984741211 -11267,2017-10-13 11:00:00,23.790000915527344,-4.105000019073486,36.617000579833984,0.0,-13.038999557495115,-3.9340000152587886,25.25900077819824 -11268,2017-10-13 12:00:00,21.69599914550781,-4.188000202178955,33.722000122070305,-1.7690000534057615,-13.027999877929688,-3.9340000152587886,26.57699966430664 -11269,2017-10-13 13:00:00,29.15099906921387,0.0,42.03099822998047,2.4660000801086426,-13.006999969482422,-3.9340000152587886,27.675500869750977 -11270,2017-10-13 14:00:00,26.386999130249023,0.0,38.0369987487793,0.0,-11.781000137329102,-3.9340000152587886,28.77449989318848 -11271,2017-10-13 15:00:00,30.65900039672852,0.0,41.22700119018555,1.4210000038146973,-10.52299976348877,-3.9340000152587886,28.77449989318848 -11272,2017-10-13 16:00:00,30.57500076293945,0.0,42.19200134277344,1.4739999771118164,-10.52299976348877,-3.9340000152587886,28.77449989318848 -11273,2017-10-13 17:00:00,31.916000366210927,0.0,43.02299880981445,0.0,-10.800000190734863,-3.9340000152587886,28.334999084472656 -11274,2017-10-13 18:00:00,34.09400177001953,0.0,42.78200149536133,0.0,-8.145000457763674,-2.313999891281128,27.45599937438965 -11275,2017-10-13 19:00:00,32.333999633789055,0.0,41.09299850463867,0.0,-8.656999588012695,-2.2920000553131104,26.79700088500977 -11276,2017-10-13 20:00:00,34.68000030517578,0.0,42.86199951171875,1.4210000038146973,-7.771999835968018,-2.2920000553131104,26.35700035095215 -11277,2017-10-13 21:00:00,33.674999237060554,0.0,43.39899826049805,2.0910000801086426,-9.253999710083008,-2.2920000553131104,25.47900009155273 -11278,2017-10-13 22:00:00,36.52299880981445,0.0,45.06000137329102,4.047999858856201,-9.232999801635742,-2.2920000553131104,24.3799991607666 -11279,2017-10-13 23:00:00,30.1560001373291,0.0,41.30799865722656,3.3510000705718994,-10.447999954223633,-3.507999897003174,24.3799991607666 -11280,2017-10-14 00:00:00,31.077999114990234,0.0,40.82500076293945,2.546999931335449,-10.427000045776367,-3.507999897003174,24.15999984741211 -11281,2017-10-14 01:00:00,29.40299987792969,0.0,39.69900131225586,2.2780001163482666,-10.427000045776367,-3.507999897003174,23.94050025939941 -11282,2017-10-14 02:00:00,29.98900032043457,0.0,39.24399948120117,2.1710000038146973,-9.093999862670898,-3.507999897003174,22.621999740600582 -11283,2017-10-14 03:00:00,27.97900009155273,0.0,37.93000030517578,0.0,-9.147000312805176,-3.507999897003174,22.1825008392334 -11284,2017-10-14 04:00:00,28.481000900268555,0.0,38.43899917602539,2.2249999046325684,-9.232999801635742,-3.507999897003174,21.96299934387207 -11285,2017-10-14 05:00:00,31.496999740600582,0.0,39.56499862670898,2.0369999408721924,-9.114999771118164,-3.507999897003174,21.083999633789062 -11286,2017-10-14 06:00:00,31.2450008392334,0.0,41.11999893188477,2.252000093460083,-8.913000106811523,-3.507999897003174,21.083999633789062 -11287,2017-10-14 07:00:00,32.250999450683594,0.0,41.84400177001953,2.5729999542236333,-8.913000106811523,-3.507999897003174,20.645000457763672 -11288,2017-10-14 08:00:00,27.895000457763672,0.0,37.2869987487793,0.0,-8.913000106811523,-2.2920000553131104,21.083999633789062 -11289,2017-10-14 09:00:00,34.261001586914055,0.0,44.12200164794922,2.7880001068115234,-10.149999618530272,-3.507999897003174,21.96299934387207 -11290,2017-10-14 10:00:00,34.345001220703125,0.0,44.09500122070313,1.5549999475479126,-10.149999618530272,-3.507999897003174,23.06150054931641 -11291,2017-10-14 11:00:00,34.0099983215332,0.0,43.96099853515625,2.0639998912811284,-10.128000259399414,-3.507999897003174,24.15999984741211 -11292,2017-10-14 12:00:00,30.82699966430664,0.0,41.76300048828125,0.0,-10.031999588012695,-3.507999897003174,25.03899955749512 -11293,2017-10-14 13:00:00,31.66399955749512,0.0,42.27299880981445,2.0639998912811284,-10.01099967956543,-3.507999897003174,25.47900009155273 -11294,2017-10-14 14:00:00,30.32399940490723,0.0,40.28900146484375,1.7419999837875366,-9.829999923706056,-3.507999897003174,25.25900077819824 -11295,2017-10-14 15:00:00,32.501998901367195,0.0,42.38000106811523,2.493000030517578,-9.84000015258789,-3.507999897003174,25.03899955749512 -11296,2017-10-14 16:00:00,33.34000015258789,0.0,43.26399993896485,2.1979999542236333,-9.072999954223633,-3.507999897003174,25.03899955749512 -11297,2017-10-14 17:00:00,36.1879997253418,0.0,43.88100051879883,1.9839999675750728,-7.900000095367432,-2.2920000553131104,25.03899955749512 -11298,2017-10-14 18:00:00,36.77399826049805,0.0,44.95299911499024,2.3050000667572017,-7.847000122070312,-1.5460000038146973,25.03899955749512 -11299,2017-10-14 19:00:00,29.15099906921387,0.0,38.89500045776367,0.0,-9.392999649047852,-2.7720000743865967,24.60000038146973 -11300,2017-10-14 20:00:00,34.93099975585937,0.0,42.97000122070313,1.5010000467300415,-7.932000160217285,-2.7720000743865967,24.3799991607666 -11301,2017-10-14 21:00:00,33.005001068115234,0.0,42.75500106811523,1.9299999475479128,-10.416000366210938,-2.25,24.15999984741211 -11302,2017-10-14 22:00:00,33.92599868774414,0.0,42.43399810791016,2.438999891281128,-7.879000186920166,-2.3559999465942383,23.72100067138672 -11303,2017-10-14 23:00:00,33.590999603271484,0.0,42.11199951171875,5.119999885559082,-9.093999862670898,-2.3559999465942383,23.72100067138672 -11304,2017-10-15 00:00:00,32.417999267578125,0.0,39.77999877929688,2.0910000801086426,-6.802000045776367,-2.3559999465942383,23.94050025939941 -11305,2017-10-15 01:00:00,31.916000366210927,0.0,39.45800018310547,3.0290000438690186,-8.347999572753906,-2.3559999465942383,24.15999984741211 -11306,2017-10-15 02:00:00,28.64900016784668,0.0,37.58200073242188,2.2249999046325684,-9.595000267028809,-2.3559999465942383,24.15999984741211 -11307,2017-10-15 03:00:00,31.32900047302246,0.0,39.83300018310547,2.8410000801086426,-8.486000061035156,-2.3559999465942383,23.72100067138672 -11308,2017-10-15 04:00:00,26.05200004577637,0.0,36.027000427246094,1.850000023841858,-9.70199966430664,-3.625,22.84199905395508 -11309,2017-10-15 05:00:00,30.90999984741211,0.0,39.18999862670898,2.8949999809265137,-8.848999977111816,-2.377000093460083,21.52300071716309 -11310,2017-10-15 06:00:00,26.72200012207031,0.0,35.25,0.0,-8.656999588012695,-3.6040000915527344,21.30349922180176 -11311,2017-10-15 07:00:00,31.16200065612793,0.0,40.23500061035156,2.1979999542236333,-8.869999885559082,-3.6040000915527344,21.083999633789062 -11312,2017-10-15 08:00:00,26.972999572753903,0.0,34.20399856567383,0.0,-7.686999797821045,-2.121999979019165,20.424999237060547 -11313,2017-10-15 09:00:00,33.34000015258789,0.0,43.45199966430664,2.868000030517578,-10.55500030517578,-3.4219999313354488,20.20499992370605 -11314,2017-10-15 10:00:00,33.088001251220696,0.0,42.94300079345703,2.2780001163482666,-9.392999649047852,-3.4219999313354488,21.083999633789062 -11315,2017-10-15 11:00:00,32.501998901367195,0.0,43.23799896240234,2.0369999408721924,-10.68299961090088,-3.4219999313354488,22.1825008392334 -11316,2017-10-15 12:00:00,31.077999114990234,0.0,40.58399963378906,0.0,-9.765999794006348,-3.4219999313354488,23.2810001373291 -11317,2017-10-15 13:00:00,27.308000564575195,0.0,37.0989990234375,0.0,-9.819000244140623,-3.4219999313354488,24.15999984741211 -11318,2017-10-15 14:00:00,31.2450008392334,0.0,41.52199935913086,1.6619999408721924,-10.04300022125244,-3.4219999313354488,25.25900077819824 -11319,2017-10-15 15:00:00,32.92100143432617,0.0,42.40700149536133,1.7690000534057615,-9.562999725341797,-3.4219999313354488,25.47900009155273 -11320,2017-10-15 16:00:00,33.50699996948242,0.0,42.59400177001953,1.6349999904632568,-9.520999908447266,-3.4219999313354488,25.917999267578125 -11321,2017-10-15 17:00:00,34.17699813842773,0.0,43.82699966430664,0.0,-9.829999923706056,-3.4219999313354488,25.917999267578125 -11322,2017-10-15 18:00:00,36.1879997253418,0.0,44.41699981689453,1.3940000534057615,-7.282000064849853,-3.4219999313354488,25.47900009155273 -11323,2017-10-15 19:00:00,35.0989990234375,0.0,44.06900024414063,1.7419999837875366,-8.496999740600586,-1.7910000085830688,25.03899955749512 -11324,2017-10-15 20:00:00,32.92100143432617,0.0,42.35300064086914,1.3669999837875366,-9.45699977874756,-3.0280001163482666,25.03899955749512 -11325,2017-10-15 21:00:00,34.17699813842773,0.0,43.104000091552734,2.2249999046325684,-8.251999855041504,-3.0280001163482666,24.15999984741211 -11326,2017-10-15 22:00:00,31.16200065612793,0.0,40.34299850463867,1.715999960899353,-9.531000137329102,-3.0280001163482666,23.500999450683597 -11327,2017-10-15 23:00:00,34.0099983215332,0.0,42.13899993896485,2.627000093460083,-8.295000076293945,-3.0280001163482666,23.06150054931641 -11328,2017-10-16 00:00:00,32.16699981689453,0.0,40.02099990844727,2.4130001068115234,-6.982999801635742,-1.812000036239624,23.2810001373291 -11329,2017-10-16 01:00:00,29.48600006103516,0.0,38.573001861572266,1.3400000333786009,-9.744000434875488,-3.059999942779541,22.84199905395508 -11330,2017-10-16 02:00:00,28.31399917602539,0.0,37.2869987487793,0.0,-9.222000122070312,-3.059999942779541,23.2810001373291 -11331,2017-10-16 03:00:00,27.22500038146973,0.0,37.367000579833984,0.0,-9.29699993133545,-3.0920000076293945,23.500999450683597 -11332,2017-10-16 04:00:00,27.726999282836918,0.0,38.25199890136719,1.6890000104904177,-10.66100025177002,-2.96399998664856,22.84199905395508 -11333,2017-10-16 05:00:00,29.65399932861328,0.0,38.78799819946289,2.7880001068115234,-9.446000099182127,-2.96399998664856,22.402000427246094 -11334,2017-10-16 06:00:00,19.26700019836425,-4.775000095367432,28.44099998474121,-2.009999990463257,-9.446000099182127,-2.878999948501587,21.74300003051757 -11335,2017-10-16 07:00:00,14.491999626159668,-4.60699987411499,23.07999992370605,-1.9839999675750728,-8.805999755859375,-2.878999948501587,21.74300003051757 -11336,2017-10-16 08:00:00,7.958000183105469,-6.198999881744385,18.97800064086914,-2.815000057220459,-10.55500030517578,-2.878999948501587,22.1825008392334 -11337,2017-10-16 09:00:00,9.800999641418455,-5.863999843597412,21.149999618530277,-2.627000093460083,-10.55500030517578,-4.105000019073486,22.84199905395508 -11338,2017-10-16 10:00:00,12.39799976348877,-4.941999912261963,24.15200042724609,-1.4210000038146973,-11.88700008392334,-4.105000019073486,23.500999450683597 -11339,2017-10-16 11:00:00,13.56999969482422,-4.5229997634887695,23.88400077819824,-1.5279999971389768,-9.008999824523926,-3.635999917984009,24.15999984741211 -11340,2017-10-16 12:00:00,12.732999801635742,-5.863999843597412,20.934999465942383,-3.1630001068115234,-7.633999824523926,-3.635999917984009,24.819499969482425 -11341,2017-10-16 13:00:00,11.140999794006348,-5.52899980545044,20.34600067138672,-2.546999931335449,-8.913000106811523,-3.635999917984009,25.03899955749512 -11342,2017-10-16 14:00:00,11.5600004196167,-5.110000133514403,22.59700012207031,-1.5820000171661377,-11.364999771118164,-3.635999917984009,23.500999450683597 -11343,2017-10-16 15:00:00,14.91100025177002,-4.105000019073486,23.267000198364247,-1.3940000534057615,-8.934000015258789,-3.635999917984009,22.621999740600582 -11344,2017-10-16 16:00:00,24.96299934387207,0.0,34.28499984741211,0.0,-8.934000015258789,-3.635999917984009,22.1825008392334 -11345,2017-10-16 17:00:00,33.50699996948242,0.0,41.95100021362305,2.438999891281128,-7.815000057220459,-2.4200000762939453,21.52300071716309 -11346,2017-10-16 18:00:00,36.43899917602539,0.0,44.81900024414063,3.753000020980835,-9.041000366210938,-2.4200000762939453,21.083999633789062 -11347,2017-10-16 19:00:00,35.349998474121094,0.0,43.479000091552734,2.9749999046325684,-7.686999797821045,-2.4200000762939453,21.083999633789062 -11348,2017-10-16 20:00:00,31.496999740600582,0.0,40.50299835205078,3.135999917984009,-8.913000106811523,-2.4200000762939453,21.083999633789062 -11349,2017-10-16 21:00:00,31.077999114990234,0.0,39.75299835205078,2.9219999313354488,-7.729000091552732,-2.4200000762939453,21.083999633789062 -11350,2017-10-16 22:00:00,33.92599868774414,0.0,42.03099822998047,4.932000160217285,-7.85699987411499,-2.4200000762939453,21.083999633789062 -11351,2017-10-16 23:00:00,30.492000579833984,0.0,38.89500045776367,3.99399995803833,-8.805999755859375,-2.4200000762939453,21.083999633789062 -11352,2017-10-17 00:00:00,32.92100143432617,4.188000202178955,39.99399948120117,5.173999786376953,-7.782999992370605,-2.4200000762939453,21.083999633789062 -11353,2017-10-17 01:00:00,31.413000106811523,0.0,39.86000061035156,4.959000110626222,-7.591000080108643,-2.4200000762939453,21.083999633789062 -11354,2017-10-17 02:00:00,30.072999954223643,0.0,37.448001861572266,4.824999809265137,-7.623000144958496,-2.1429998874664307,21.52300071716309 -11355,2017-10-17 03:00:00,31.74799919128418,0.0,39.00199890136719,4.315999984741212,-7.761000156402588,-1.812000036239624,21.52300071716309 -11356,2017-10-17 04:00:00,32.669998168945305,0.0,39.86000061035156,5.494999885559082,-7.835999965667725,-3.1559998989105225,21.52300071716309 -11357,2017-10-17 05:00:00,31.413000106811523,0.0,39.887001037597656,4.879000186920166,-9.072999954223633,-3.1559998989105225,21.52300071716309 -11358,2017-10-17 06:00:00,32.08300018310547,0.0,40.82500076293945,4.53000020980835,-9.093999862670898,-3.1559998989105225,21.52300071716309 -11359,2017-10-17 07:00:00,31.832000732421875,0.0,41.57600021362305,5.308000087738037,-9.510000228881836,-3.1559998989105225,21.74300003051757 -11360,2017-10-17 08:00:00,25.632999420166016,0.0,34.98199844360352,0.0,-9.168999671936035,-3.1559998989105225,22.1825008392334 -11361,2017-10-17 09:00:00,32.501998901367195,0.0,42.64799880981445,3.8329999446868896,-9.114999771118164,-3.1559998989105225,23.06150054931641 -11362,2017-10-17 10:00:00,29.90500068664551,0.0,39.96699905395508,2.1979999542236333,-9.114999771118164,-2.7720000743865967,24.3799991607666 -11363,2017-10-17 11:00:00,33.34000015258789,0.0,43.31800079345703,3.4309999942779537,-10.395000457763672,-4.072999954223634,25.25900077819824 -11364,2017-10-17 12:00:00,31.077999114990234,0.0,40.90599822998047,1.9029999971389768,-9.104999542236328,-4.072999954223634,25.917999267578125 -11365,2017-10-17 13:00:00,32.58599853515625,0.0,42.27299880981445,4.584000110626222,-9.157999992370604,-4.072999954223634,26.35700035095215 -11366,2017-10-17 14:00:00,34.345001220703125,0.0,42.59400177001953,4.7709999084472665,-7.932000160217285,-4.072999954223634,26.35700035095215 -11367,2017-10-17 15:00:00,37.77899932861328,4.105000019073486,44.25600051879883,5.199999809265137,-6.88700008392334,-2.8359999656677246,26.79700088500977 -11368,2017-10-17 16:00:00,36.35499954223633,0.0,44.01499938964844,4.932000160217285,-6.88700008392334,-2.8359999656677246,26.79700088500977 -11369,2017-10-17 17:00:00,37.277000427246094,0.0,44.25600051879883,4.502999782562256,-6.598999977111816,-2.8359999656677246,26.57699966430664 -11370,2017-10-17 18:00:00,38.78499984741211,0.0,45.89099884033203,4.744999885559082,-6.598999977111816,-2.8359999656677246,26.35700035095215 -11371,2017-10-17 19:00:00,35.182998657226555,0.0,41.95100021362305,3.2699999809265137,-6.6630001068115225,-1.5670000314712524,26.35700035095215 -11372,2017-10-17 20:00:00,35.685001373291016,0.0,44.14899826049805,4.852000236511231,-9.083000183105469,-2.8250000476837163,25.917999267578125 -11373,2017-10-17 21:00:00,36.02000045776367,0.0,44.97999954223633,5.199999809265137,-7.708000183105469,-2.8250000476837163,25.47900009155273 -11374,2017-10-17 22:00:00,34.93099975585937,0.0,43.26399993896485,4.90500020980835,-7.761000156402588,-2.8250000476837163,25.25900077819824 -11375,2017-10-17 23:00:00,33.34000015258789,0.0,41.95100021362305,5.013000011444092,-7.739999771118164,-1.5989999771118164,25.03899955749512 -11376,2017-10-18 00:00:00,32.92100143432617,0.0,39.69900131225586,4.3959999084472665,-6.5250000953674325,-1.5989999771118164,25.03899955749512 -11377,2017-10-18 01:00:00,30.1560001373291,0.0,38.54700088500977,3.753000020980835,-7.910999774932861,-1.5989999771118164,24.60000038146973 -11378,2017-10-18 02:00:00,31.496999740600582,0.0,39.72600173950195,4.477000236511231,-7.921000003814697,-1.5989999771118164,24.15999984741211 -11379,2017-10-18 03:00:00,30.90999984741211,0.0,38.92200088500977,4.477000236511231,-7.942999839782715,-2.868000030517578,24.15999984741211 -11380,2017-10-18 04:00:00,33.088001251220696,0.0,40.28900146484375,5.0929999351501465,-7.974999904632567,-2.868000030517578,23.94050025939941 -11381,2017-10-18 05:00:00,28.899999618530277,0.0,37.5009994506836,3.6459999084472656,-8.081000328063965,-2.868000030517578,23.72100067138672 -11382,2017-10-18 06:00:00,32.333999633789055,0.0,40.93199920654297,5.736000061035156,-8.081000328063965,-2.868000030517578,23.72100067138672 -11383,2017-10-18 07:00:00,34.345001220703125,0.0,43.04999923706055,4.690999984741211,-8.135000228881836,-2.3989999294281006,23.500999450683597 -11384,2017-10-18 08:00:00,30.82699966430664,0.0,39.512001037597656,3.5380001068115234,-8.305000305175781,-3.549999952316284,23.500999450683597 -11385,2017-10-18 09:00:00,32.83700180053711,0.0,43.104000091552734,5.227000236511231,-9.64900016784668,-3.858999967575073,23.72100067138672 -11386,2017-10-18 10:00:00,30.743000030517567,0.0,40.34299850463867,2.438999891281128,-9.605999946594238,-3.006999969482422,23.94050025939941 -11387,2017-10-18 11:00:00,33.17200088500977,0.0,43.77399826049805,3.378000020980835,-9.637999534606934,-3.006999969482422,24.3799991607666 -11388,2017-10-18 12:00:00,31.74799919128418,0.0,41.49499893188477,3.859999895095825,-9.637999534606934,-3.006999969482422,25.03899955749512 -11389,2017-10-18 13:00:00,33.005001068115234,0.0,42.29899978637695,4.664000034332275,-8.27299976348877,-2.6440000534057617,25.47900009155273 -11390,2017-10-18 14:00:00,33.84199905395508,0.0,43.13000106811523,5.388000011444092,-9.510000228881836,-2.622999906539917,25.917999267578125 -11391,2017-10-18 15:00:00,34.429000854492195,0.0,43.45199966430664,4.7179999351501465,-9.510000228881836,-2.622999906539917,26.57699966430664 -11392,2017-10-18 16:00:00,35.60100173950195,0.0,45.16799926757813,4.7709999084472665,-9.510000228881836,-2.622999906539917,26.79700088500977 -11393,2017-10-18 17:00:00,37.44400024414063,0.0,44.84600067138672,4.182000160217285,-7.111000061035156,-2.1540000438690186,25.917999267578125 -11394,2017-10-18 18:00:00,36.68999862670898,0.0,45.38199996948242,4.477000236511231,-8.262999534606934,-3.2090001106262207,25.47900009155273 -11395,2017-10-18 19:00:00,31.74799919128418,0.0,41.57600021362305,2.493000030517578,-9.157999992370604,-3.5179998874664307,25.03899955749512 -11396,2017-10-18 20:00:00,35.685001373291016,0.0,44.685001373291016,4.744999885559082,-9.157999992370604,-3.5179998874664307,24.60000038146973 -11397,2017-10-18 21:00:00,33.757999420166016,0.0,43.07699966430664,4.7179999351501465,-9.168999671936035,-3.5179998874664307,24.15999984741211 -11398,2017-10-18 22:00:00,34.512001037597656,0.0,44.14899826049805,5.789999961853027,-9.168999671936035,-3.5179998874664307,23.94050025939941 -11399,2017-10-18 23:00:00,32.16699981689453,0.0,41.040000915527344,5.816999912261963,-9.168999671936035,-3.5179998874664307,23.72100067138672 -11400,2017-10-19 00:00:00,29.40299987792969,0.0,40.28900146484375,4.3959999084472665,-10.395000457763672,-3.5179998874664307,23.72100067138672 -11401,2017-10-19 01:00:00,28.983999252319336,0.0,37.58200073242188,4.3429999351501465,-7.835999965667725,-3.5179998874664307,23.2810001373291 -11402,2017-10-19 02:00:00,31.99900054931641,0.0,39.430999755859375,4.315999984741212,-7.803999900817871,-2.377000093460083,23.2810001373291 -11403,2017-10-19 03:00:00,28.229999542236328,0.0,36.42900085449219,3.4579999446868896,-7.708000183105469,-1.8339999914169312,22.84199905395508 -11404,2017-10-19 04:00:00,31.413000106811523,0.0,38.92200088500977,4.26200008392334,-7.708000183105469,-2.377000093460083,22.1825008392334 -11405,2017-10-19 05:00:00,30.82699966430664,0.0,39.37799835205078,4.047999858856201,-7.985000133514402,-2.377000093460083,21.96299934387207 -11406,2017-10-19 06:00:00,30.40800094604492,0.0,39.27000045776367,3.8059999942779537,-8.177000045776367,-2.96399998664856,21.30349922180176 -11407,2017-10-19 07:00:00,28.983999252319336,0.0,37.79600143432617,1.5010000467300415,-8.284000396728517,-2.96399998664856,21.083999633789062 -11408,2017-10-19 08:00:00,16.586000442504886,-4.2719998359680185,26.18899917602539,-1.3940000534057615,-9.626999855041504,-2.622999906539917,21.52300071716309 -11409,2017-10-19 09:00:00,19.01499938964844,-4.355999946594238,28.68199920654297,0.0,-9.626999855041504,-2.900000095367432,22.621999740600582 -11410,2017-10-19 10:00:00,17.926000595092773,0.0,28.4950008392334,0.0,-9.626999855041504,-2.900000095367432,23.06150054931641 -11411,2017-10-19 11:00:00,19.350000381469727,0.0,29.51300048828125,0.0,-9.626999855041504,-2.900000095367432,23.94050025939941 -11412,2017-10-19 12:00:00,14.82699966430664,-5.445000171661377,25.65299987792969,-2.009999990463257,-9.626999855041504,-3.1979999542236333,24.3799991607666 -11413,2017-10-19 13:00:00,14.659000396728516,-4.440000057220459,25.22400093078613,-1.4739999771118164,-9.510000228881836,-3.1979999542236333,26.13750076293945 -11414,2017-10-19 14:00:00,14.91100025177002,-4.2719998359680185,26.51099967956543,0.0,-10.736000061035156,-3.1979999542236333,27.45599937438965 -11415,2017-10-19 15:00:00,15.83199977874756,-4.105000019073486,25.947999954223643,0.0,-9.477999687194824,-3.1979999542236333,27.89550018310547 -11416,2017-10-19 16:00:00,16.836999893188473,0.0,26.29599952697754,0.0,-9.402999877929688,-3.1979999542236333,28.334999084472656 -11417,2017-10-19 17:00:00,19.43400001525879,0.0,29.459999084472656,0.0,-9.574000358581545,-3.1979999542236333,27.23600006103516 -11418,2017-10-19 18:00:00,21.69599914550781,0.0,30.10300064086914,0.0,-8.071000099182129,-2.5269999504089355,25.917999267578125 -11419,2017-10-19 19:00:00,20.43899917602539,0.0,28.92300033569336,0.0,-8.208999633789062,-2.5269999504089355,25.03899955749512 -11420,2017-10-19 20:00:00,19.937000274658203,0.0,27.47599983215332,-1.3400000333786009,-7.985000133514402,-2.5269999504089355,24.3799991607666 -11421,2017-10-19 21:00:00,18.93199920654297,0.0,27.395000457763672,0.0,-9.243000030517578,-2.5269999504089355,23.72100067138672 -11422,2017-10-19 22:00:00,18.59600067138672,0.0,27.53000068664551,0.0,-7.995999813079834,-1.919000029563904,23.2810001373291 -11423,2017-10-19 23:00:00,17.256000518798828,0.0,25.19700050354004,0.0,-7.815000057220459,-3.16599988937378,23.2810001373291 -11424,2017-10-20 00:00:00,13.98900032043457,-4.105000019073486,22.864999771118164,-1.312999963760376,-8.359000205993652,-3.1879999637603764,22.84199905395508 -11425,2017-10-20 01:00:00,14.576000213623049,0.0,23.05299949645996,0.0,-8.359000205993652,-2.367000102996826,22.84199905395508 -11426,2017-10-20 02:00:00,13.152000427246096,-4.105000019073486,21.71299934387207,-1.312999963760376,-8.359000205993652,-2.367000102996826,22.402000427246094 -11427,2017-10-20 03:00:00,14.491999626159668,0.0,22.114999771118164,0.0,-8.390999794006348,-2.345999956130981,21.74300003051757 -11428,2017-10-20 04:00:00,14.82699966430664,0.0,22.731000900268555,0.0,-8.401000022888184,-2.345999956130981,20.645000457763672 -11429,2017-10-20 05:00:00,14.156999588012695,0.0,22.249000549316406,0.0,-8.465000152587889,-2.2920000553131104,20.424999237060547 -11430,2017-10-20 06:00:00,17.423999786376953,0.0,24.36599922180176,0.0,-7.037000179290772,-2.2920000553131104,20.20499992370605 -11431,2017-10-20 07:00:00,18.26099967956543,0.0,26.108999252319336,0.0,-7.131999969482423,-2.9210000038146973,20.20499992370605 -11432,2017-10-20 08:00:00,17.507999420166016,0.0,26.215999603271484,0.0,-8.604000091552733,-2.9210000038146973,21.083999633789062 -11433,2017-10-20 09:00:00,19.183000564575195,0.0,27.66399955749512,0.0,-7.34600019454956,-2.9210000038146973,22.84199905395508 -11434,2017-10-20 10:00:00,21.19300079345703,0.0,29.27199935913086,0.0,-7.355999946594237,-2.5799999237060547,25.69849967956543 -11435,2017-10-20 11:00:00,21.61199951171875,0.0,29.48600006103516,0.0,-7.355999946594237,-2.5799999237060547,29.87299919128418 -11436,2017-10-20 12:00:00,20.857999801635746,0.0,28.68199920654297,-1.5279999971389768,-7.355999946594237,-2.1640000343322754,33.388500213623054 -11437,2017-10-20 13:00:00,17.590999603271484,0.0,25.947999954223643,-1.6619999408721924,-8.581999778747559,-2.1429998874664307,32.94900131225586 -11438,2017-10-20 14:00:00,16.50200080871582,-4.105000019073486,25.250999450683597,-1.5820000171661377,-8.581999778747559,-2.1429998874664307,31.410999298095703 -11439,2017-10-20 15:00:00,17.172000885009766,0.0,26.322999954223643,0.0,-8.581999778747559,-2.5480000972747803,30.97150039672852 -11440,2017-10-20 16:00:00,18.68000030517578,0.0,27.288000106811523,-1.3400000333786009,-8.560999870300293,-2.5480000972747803,30.53199958801269 -11441,2017-10-20 17:00:00,19.350000381469727,-4.440000057220459,26.96699905395508,-2.118000030517578,-7.4629998207092285,-2.5480000972747803,29.87299919128418 -11442,2017-10-20 18:00:00,21.11000061035156,0.0,28.520999908447266,0.0,-7.708000183105469,-2.5480000972747803,27.89550018310547 -11443,2017-10-20 19:00:00,18.68000030517578,-4.105000019073486,27.66399955749512,-1.715999960899353,-9.104999542236328,-2.5480000972747803,25.917999267578125 -11444,2017-10-20 20:00:00,17.926000595092773,-4.690999984741211,25.840999603271484,-2.680999994277954,-8.038999557495117,-1.8020000457763672,24.15999984741211 -11445,2017-10-20 21:00:00,18.68000030517578,0.0,26.69899940490723,-2.1440000534057617,-7.824999809265138,-2.0150001049041752,23.06150054931641 -11446,2017-10-20 22:00:00,18.17799949645996,0.0,26.00200080871582,-1.3940000534057615,-7.793000221252441,-1.715999960899353,22.1825008392334 -11447,2017-10-20 23:00:00,18.17799949645996,0.0,24.982999801635746,-1.5010000467300415,-7.665999889373777,-1.7059999704360962,21.52300071716309 -11448,2017-10-21 00:00:00,14.659000396728516,0.0,22.731000900268555,0.0,-7.932000160217285,-1.2790000438690186,20.864500045776367 -11449,2017-10-21 01:00:00,14.994000434875488,0.0,22.222000122070312,0.0,-8.135000228881836,-2.559000015258789,20.424999237060547 -11450,2017-10-21 02:00:00,13.98900032043457,0.0,21.229999542236328,0.0,-6.642000198364258,-1.5989999771118164,19.766000747680664 -11451,2017-10-21 03:00:00,14.994000434875488,0.0,22.43600082397461,0.0,-7.900000095367432,-3.1979999542236333,19.326000213623047 -11452,2017-10-21 04:00:00,13.234999656677244,0.0,21.524999618530277,0.0,-9.12600040435791,-2.9210000038146973,18.886999130249023 -11453,2017-10-21 05:00:00,12.39799976348877,0.0,22.03400039672852,0.0,-8.732000350952147,-2.931999921798706,18.44700050354004 -11454,2017-10-21 06:00:00,13.56999969482422,0.0,23.15999984741211,0.0,-8.581999778747559,-2.931999921798706,18.007999420166016 -11455,2017-10-21 07:00:00,15.07800006866455,0.0,23.88400077819824,0.0,-8.625,-2.931999921798706,17.788000106811523 -11456,2017-10-21 08:00:00,18.010000228881836,0.0,25.33099937438965,-1.6080000400543213,-7.4099998474121085,-1.6950000524520874,18.66699981689453 -11457,2017-10-21 09:00:00,24.208999633789062,0.0,31.97900009155273,0.0,-7.260000228881836,-1.5570000410079956,21.74300003051757 -11458,2017-10-21 10:00:00,27.05699920654297,0.0,34.955001831054695,2.385999917984009,-7.282000064849853,-1.6529999971389768,25.69849967956543 -11459,2017-10-21 11:00:00,28.983999252319336,0.0,36.66999816894531,2.4660000801086426,-7.282000064849853,-1.6529999971389768,29.21349906921387 -11460,2017-10-21 12:00:00,27.559999465942383,0.0,35.893001556396484,1.715999960899353,-8.732000350952147,-2.878999948501587,31.410999298095703 -11461,2017-10-21 13:00:00,24.459999084472656,0.0,33.50699996948242,0.0,-8.741999626159668,-2.878999948501587,32.72949981689453 -11462,2017-10-21 14:00:00,24.459999084472656,0.0,33.722000122070305,0.0,-8.869999885559082,-3.16599988937378,33.82849884033203 -11463,2017-10-21 15:00:00,23.87400054931641,0.0,32.40800094604492,0.0,-8.880999565124512,-3.16599988937378,33.388500213623054 -11464,2017-10-21 16:00:00,24.54400062561035,0.0,34.23099899291992,0.0,-8.869999885559082,-1.940000057220459,32.290000915527344 -11465,2017-10-21 17:00:00,28.229999542236328,0.0,35.91999816894531,0.0,-7.591000080108643,-1.940000057220459,30.75200080871582 -11466,2017-10-21 18:00:00,26.72200012207031,0.0,34.23099899291992,0.0,-6.684999942779541,-1.940000057220459,28.55500030517578 -11467,2017-10-21 19:00:00,27.97900009155273,0.0,34.12400054931641,0.0,-6.749000072479247,-1.940000057220459,26.35700035095215 -11468,2017-10-21 20:00:00,26.55400085449219,0.0,33.53400039672852,0.0,-6.802000045776367,-1.3539999723434448,24.60000038146973 -11469,2017-10-21 21:00:00,32.501998901367195,0.0,38.70800018310547,3.002000093460083,-6.513999938964844,0.0,23.2810001373291 -11470,2017-10-21 22:00:00,35.0989990234375,4.440000057220459,42.40700149536133,4.2890000343322745,-6.610000133514402,0.0,22.1825008392334 -11471,2017-10-21 23:00:00,31.496999740600582,0.0,41.11999893188477,4.0209999084472665,-8.177000045776367,-2.45199990272522,21.52300071716309 -11472,2017-10-22 00:00:00,29.82099914550781,0.0,37.93000030517578,2.868000030517578,-8.187999725341799,-1.63100004196167,21.083999633789062 -11473,2017-10-22 01:00:00,29.15099906921387,0.0,38.78799819946289,3.61899995803833,-9.4350004196167,-1.6529999971389768,20.864500045776367 -11474,2017-10-22 02:00:00,28.73200035095215,0.0,37.79600143432617,3.0290000438690186,-9.33899974822998,-2.888999938964844,20.424999237060547 -11475,2017-10-22 03:00:00,27.22500038146973,0.0,37.448001861572266,3.4309999942779537,-9.510000228881836,-2.888999938964844,19.98550033569336 -11476,2017-10-22 04:00:00,22.70100021362305,0.0,32.03300094604492,1.4210000038146973,-7.803999900817871,-1.2580000162124634,19.54599952697754 -11477,2017-10-22 05:00:00,27.47599983215332,0.0,36.483001708984375,2.3050000667572017,-9.114999771118164,-2.5269999504089355,19.10650062561035 -11478,2017-10-22 06:00:00,23.53899955749512,0.0,32.97100067138672,0.0,-9.178999900817873,-2.5269999504089355,18.66699981689453 -11479,2017-10-22 07:00:00,32.669998168945305,0.0,40.63800048828125,3.6459999084472656,-7.85699987411499,-2.5269999504089355,18.44700050354004 -11480,2017-10-22 08:00:00,28.81599998474121,0.0,36.1609992980957,0.0,-7.847000122070312,-1.5989999771118164,19.326000213623047 -11481,2017-10-22 09:00:00,29.65399932861328,0.0,37.52799987792969,0.0,-7.750999927520753,-1.7269999980926514,21.74300003051757 -11482,2017-10-22 10:00:00,33.84199905395508,0.0,42.56800079345703,3.7260000705718994,-8.326999664306639,-1.5570000410079956,25.039499282836918 -11483,2017-10-22 11:00:00,32.501998901367195,0.0,43.34500122070313,2.760999917984009,-9.819000244140623,-1.5570000410079956,28.554500579833984 -11484,2017-10-22 12:00:00,31.496999740600582,0.0,40.58399963378906,1.5820000171661377,-8.305000305175781,-2.782999992370605,31.19149971008301 -11485,2017-10-22 13:00:00,30.90999984741211,0.0,40.50299835205078,2.493000030517578,-9.402999877929688,-1.4390000104904177,33.60800170898437 -11486,2017-10-22 14:00:00,31.2450008392334,0.0,40.45000076293945,2.627000093460083,-9.446000099182127,-1.4390000104904177,34.48699951171875 -11487,2017-10-22 15:00:00,30.32399940490723,0.0,39.02899932861328,1.5279999971389768,-8.199000358581543,-2.5160000324249268,34.487499237060554 -11488,2017-10-22 16:00:00,30.90999984741211,0.0,40.42300033569336,1.9570000171661377,-9.467000007629396,-2.5160000324249268,33.16899871826172 -11489,2017-10-22 17:00:00,33.84199905395508,0.0,42.38000106811523,1.9839999675750728,-9.413999557495115,-2.5160000324249268,31.63050079345703 -11490,2017-10-22 18:00:00,37.61199951171875,0.0,45.6500015258789,3.88700008392334,-8.432999610900879,-1.9299999475479128,29.653499603271484 -11491,2017-10-22 19:00:00,32.92100143432617,0.0,41.30799865722656,2.4660000801086426,-7.888999938964844,-1.5460000038146973,27.89550018310547 -11492,2017-10-22 20:00:00,35.0989990234375,0.0,42.29899978637695,2.3320000171661377,-7.750999927520753,0.0,26.35700035095215 -11493,2017-10-22 21:00:00,35.93600082397461,0.0,44.33700180053711,4.36899995803833,-7.538000106811522,-2.632999897003174,25.03899955749512 -11494,2017-10-22 22:00:00,35.26599884033203,0.0,43.72000122070313,4.53000020980835,-8.454000473022461,-1.406999945640564,24.15999984741211 -11495,2017-10-22 23:00:00,31.496999740600582,0.0,38.06399917602539,2.680999994277954,-6.929999828338622,-1.2580000162124634,23.72100067138672 -11496,2017-10-23 00:00:00,32.83700180053711,4.188000202178955,40.07500076293945,4.209000110626222,-7.4629998207092285,0.0,23.2810001373291 -11497,2017-10-23 01:00:00,23.790000915527344,0.0,31.60400009155273,0.0,-7.910999774932861,-1.3969999551773071,23.06150054931641 -11498,2017-10-23 02:00:00,29.319000244140625,0.0,38.94900131225586,3.4579999446868896,-9.232999801635742,-2.5160000324249268,22.84199905395508 -11499,2017-10-23 03:00:00,30.743000030517567,0.0,40.23500061035156,4.3429999351501465,-9.072999954223633,-2.5160000324249268,22.402000427246094 -11500,2017-10-23 04:00:00,28.062000274658203,0.0,37.2869987487793,3.9670000076293945,-9.062000274658203,-2.5160000324249268,22.1825008392334 -11501,2017-10-23 05:00:00,25.214000701904297,0.0,35.57099914550781,2.0369999408721924,-10.479999542236328,-2.5160000324249268,21.96299934387207 -11502,2017-10-23 06:00:00,33.42300033569336,4.188000202178955,41.36100006103516,5.065999984741211,-6.642000198364258,-1.3109999895095823,21.96299934387207 -11503,2017-10-23 07:00:00,25.04700088500977,0.0,33.238998413085945,0.0,-6.813000202178955,-1.406999945640564,21.74300003051757 -11504,2017-10-23 08:00:00,27.559999465942383,0.0,36.13399887084961,0.0,-8.006999969482424,-1.2369999885559082,21.96299934387207 -11505,2017-10-23 09:00:00,32.58599853515625,0.0,41.54899978637695,3.1630001068115234,-8.027999877929688,-1.4500000476837158,22.84199905395508 -11506,2017-10-23 10:00:00,27.81100082397461,0.0,38.0369987487793,0.0,-9.935999870300291,-2.750999927520752,24.819499969482425 -11507,2017-10-23 11:00:00,30.32399940490723,0.0,39.94100189208984,0.0,-8.805999755859375,-1.8869999647140503,28.114999771118164 -11508,2017-10-23 12:00:00,29.56999969482422,0.0,39.21699905395508,1.5010000467300415,-8.965999603271484,-1.5140000581741333,29.65299987792969 -11509,2017-10-23 13:00:00,31.58099937438965,0.0,40.15499877929688,2.868000030517578,-8.550000190734862,-2.750999927520752,28.99449920654297 -11510,2017-10-23 14:00:00,30.492000579833984,0.0,39.86000061035156,3.565000057220459,-8.550000190734862,-2.750999927520752,28.99449920654297 -11511,2017-10-23 15:00:00,31.496999740600582,0.0,40.23500061035156,3.2699999809265137,-8.859999656677246,-2.5799999237060547,28.99449920654297 -11512,2017-10-23 16:00:00,32.333999633789055,0.0,39.512001037597656,3.002000093460083,-7.39900016784668,-2.5799999237060547,29.214000701904297 -11513,2017-10-23 17:00:00,33.34000015258789,0.0,41.97800064086914,2.733999967575073,-8.699999809265138,-1.6419999599456787,28.554500579833984 -11514,2017-10-23 18:00:00,37.52799987792969,0.0,44.92599868774414,3.6989998817443848,-7.4099998474121085,-2.7290000915527344,26.57699966430664 -11515,2017-10-23 19:00:00,22.86899948120117,0.0,30.638999938964844,0.0,-8.529000282287598,-1.2580000162124634,24.3799991607666 -11516,2017-10-23 20:00:00,25.29800033569336,0.0,31.363000869750977,-1.3400000333786009,-5.777999877929688,0.0,22.84199905395508 -11517,2017-10-23 21:00:00,37.44400024414063,4.2719998359680185,44.49800109863281,4.26200008392334,-6.929999828338622,-1.2790000438690186,21.52300071716309 -11518,2017-10-23 22:00:00,36.858001708984375,4.690999984741211,42.86199951171875,4.422999858856201,-6.642000198364258,0.0,20.645000457763672 -11519,2017-10-23 23:00:00,34.345001220703125,4.690999984741211,42.86199951171875,4.932000160217285,-7.868000030517577,-1.2580000162124634,20.20499992370605 -11520,2017-10-24 00:00:00,31.32900047302246,0.0,40.262001037597656,4.209000110626222,-7.942999839782715,-1.5460000038146973,19.54599952697754 -11521,2017-10-24 01:00:00,31.58099937438965,0.0,40.31600189208984,3.6719999313354488,-8.77400016784668,-2.664999961853028,19.10650062561035 -11522,2017-10-24 02:00:00,31.58099937438965,0.0,38.54700088500977,3.753000020980835,-6.7170000076293945,-1.3009999990463257,18.44700050354004 -11523,2017-10-24 03:00:00,33.757999420166016,0.0,40.20899963378906,4.100999832153319,-6.620999813079834,-1.3650000095367432,18.007999420166016 -11524,2017-10-24 04:00:00,26.88999938964844,0.0,33.88199996948242,2.7880001068115234,-6.88700008392334,0.0,17.568000793457028 -11525,2017-10-24 05:00:00,31.2450008392334,0.0,38.65399932861328,2.868000030517578,-8.390999794006348,0.0,16.909000396728516 -11526,2017-10-24 06:00:00,33.92599868774414,0.0,42.43399810791016,4.611000061035156,-8.421999931335451,-1.4290000200271606,16.469499588012695 -11527,2017-10-24 07:00:00,33.674999237060554,0.0,43.58599853515625,4.3429999351501465,-9.659000396728516,-2.815000057220459,16.469499588012695 -11528,2017-10-24 08:00:00,26.30299949645996,0.0,36.66999816894531,1.7690000534057615,-9.713000297546388,-2.815000057220459,17.348499298095707 -11529,2017-10-24 09:00:00,31.077999114990234,0.0,42.05799865722656,3.753000020980835,-9.690999984741213,-2.815000057220459,20.645000457763672 -11530,2017-10-24 10:00:00,28.983999252319336,0.0,38.30500030517578,0.0,-9.670000076293944,-2.815000057220459,24.60000038146973 -11531,2017-10-24 11:00:00,31.2450008392334,0.0,42.24599838256836,1.8760000467300413,-10.852999687194824,-2.815000057220459,28.554500579833984 -11532,2017-10-24 12:00:00,31.16200065612793,0.0,41.01300048828125,2.118000030517578,-9.381999969482422,-2.815000057220459,31.19149971008301 -11533,2017-10-24 13:00:00,20.020999908447266,0.0,30.7189998626709,-1.5010000467300415,-9.392999649047852,-2.815000057220459,33.388500213623054 -11534,2017-10-24 14:00:00,30.743000030517567,0.0,40.85200119018555,3.0559999942779537,-10.576000213623049,-2.815000057220459,34.707000732421875 -11535,2017-10-24 15:00:00,33.25600051879883,0.0,41.57600021362305,3.88700008392334,-8.135000228881836,-2.815000057220459,35.146499633789055 -11536,2017-10-24 16:00:00,31.2450008392334,0.0,41.709999084472656,3.2969999313354488,-10.70400047302246,-2.815000057220459,33.16899871826172 -11537,2017-10-24 17:00:00,34.09400177001953,0.0,43.02299880981445,2.680999994277954,-8.284000396728517,-2.815000057220459,30.97150039672852 -11538,2017-10-24 18:00:00,33.42300033569336,0.0,40.34299850463867,2.627000093460083,-6.781000137329103,-2.186000108718872,28.114999771118164 -11539,2017-10-24 19:00:00,34.17699813842773,0.0,41.84400177001953,2.0910000801086426,-7.206999778747559,-1.715999960899353,25.25900077819824 -11540,2017-10-24 20:00:00,33.17200088500977,0.0,41.33399963378906,3.190000057220459,-7.260000228881836,-1.2580000162124634,23.2810001373291 -11541,2017-10-24 21:00:00,35.76900100708008,0.0,43.39899826049805,4.155000209808351,-7.228000164031982,-1.3009999990463257,22.1825008392334 -11542,2017-10-24 22:00:00,33.92599868774414,0.0,42.459999084472656,4.127999782562257,-8.82800006866455,-1.3009999990463257,21.52300071716309 -11543,2017-10-24 23:00:00,33.17200088500977,0.0,41.87099838256836,3.9670000076293945,-8.892000198364258,-1.63100004196167,20.864500045776367 -11544,2017-10-25 00:00:00,31.74799919128418,0.0,40.45000076293945,4.477000236511231,-8.82800006866455,-2.740000009536743,19.98550033569336 -11545,2017-10-25 01:00:00,29.23500061035156,0.0,38.49300003051758,3.1630001068115234,-8.230999946594237,-2.740000009536743,19.10650062561035 -11546,2017-10-25 02:00:00,29.65399932861328,0.0,37.6619987487793,3.4579999446868896,-7.953000068664551,-2.740000009536743,18.66699981689453 -11547,2017-10-25 03:00:00,29.48600006103516,0.0,38.89500045776367,3.8059999942779537,-9.020000457763672,-1.3220000267028809,18.44700050354004 -11548,2017-10-25 04:00:00,26.72200012207031,0.0,37.233001708984375,3.0829999446868896,-10.149999618530272,-2.569000005722046,18.66699981689453 -11549,2017-10-25 05:00:00,29.15099906921387,0.0,38.86800003051758,3.2699999809265137,-9.32900047302246,-2.569000005722046,18.66699981689453 -11550,2017-10-25 06:00:00,30.40800094604492,0.0,40.12799835205078,3.859999895095825,-10.50100040435791,-2.569000005722046,18.66699981689453 -11551,2017-10-25 07:00:00,31.58099937438965,0.0,39.91400146484375,2.4130001068115234,-9.093999862670898,-2.569000005722046,18.66699981689453 -11552,2017-10-25 08:00:00,24.795000076293945,0.0,32.24700164794922,0.0,-7.697999954223633,-2.569000005722046,19.765499114990234 -11553,2017-10-25 09:00:00,28.145999908447266,0.0,37.4739990234375,1.7419999837875366,-8.98799991607666,-2.569000005722046,21.96299934387207 -11554,2017-10-25 10:00:00,31.413000106811523,0.0,41.54899978637695,2.760999917984009,-8.913000106811523,-2.569000005722046,25.25900077819824 -11555,2017-10-25 11:00:00,31.832000732421875,0.0,41.76300048828125,1.7960000038146973,-10.20300006866455,-2.569000005722046,27.67600059509277 -11556,2017-10-25 12:00:00,29.56999969482422,0.0,38.89500045776367,0.0,-10.17099952697754,-2.569000005722046,29.21349906921387 -11557,2017-10-25 13:00:00,32.08300018310547,0.0,41.20000076293945,3.0290000438690186,-8.720999717712402,-2.569000005722046,31.850500106811523 -11558,2017-10-25 14:00:00,32.83700180053711,0.0,40.61100006103516,3.753000020980835,-7.270999908447266,-1.8760000467300413,33.60850143432617 -11559,2017-10-25 15:00:00,34.261001586914055,0.0,40.79800033569336,4.155000209808351,-7.185999870300293,-1.8760000467300413,32.949501037597656 -11560,2017-10-25 16:00:00,33.005001068115234,0.0,41.33399963378906,3.4579999446868896,-7.953000068664551,-1.406999945640564,31.410999298095703 -11561,2017-10-25 17:00:00,34.93099975585937,0.0,43.02299880981445,3.4040000438690186,-7.868000030517577,-2.622999906539917,29.653499603271484 -11562,2017-10-25 18:00:00,38.11399841308594,4.105000019073486,45.75699996948242,4.047999858856201,-7.484000205993652,-1.2369999885559082,27.89550018310547 -11563,2017-10-25 19:00:00,28.64900016784668,0.0,36.321998596191406,0.0,-6.4070000648498535,-1.2790000438690186,26.13750076293945 -11564,2017-10-25 20:00:00,38.86800003051758,4.60699987411499,44.33700180053711,4.26200008392334,-5.181000232696533,0.0,24.60000038146973 -11565,2017-10-25 21:00:00,36.94200134277344,4.690999984741211,44.84600067138672,4.7179999351501465,-6.684999942779541,-1.2690000534057615,23.500999450683597 -11566,2017-10-25 22:00:00,35.26599884033203,4.355999946594238,42.72800064086914,4.932000160217285,-6.908999919891357,-1.2580000162124634,22.84199905395508 -11567,2017-10-25 23:00:00,32.250999450683594,0.0,41.415000915527344,2.1710000038146973,-9.402999877929688,-1.2580000162124634,22.84199905395508 -11568,2017-10-26 00:00:00,33.005001068115234,0.0,41.25400161743164,2.252000093460083,-7.900000095367432,-1.5989999771118164,23.06150054931641 -11569,2017-10-26 01:00:00,30.32399940490723,0.0,38.46599960327149,1.7419999837875366,-7.782999992370605,-1.3220000267028809,23.2810001373291 -11570,2017-10-26 02:00:00,29.15099906921387,0.0,38.30500030517578,1.6890000104904177,-8.817000389099121,-1.3220000267028809,23.06150054931641 -11571,2017-10-26 03:00:00,28.39699935913086,0.0,36.9379997253418,0.0,-7.39900016784668,-1.5670000314712524,22.84199905395508 -11572,2017-10-26 04:00:00,31.413000106811523,0.0,39.94100189208984,1.7419999837875366,-7.367000102996826,-1.22599995136261,22.84199905395508 -11573,2017-10-26 05:00:00,31.832000732421875,0.0,40.50299835205078,1.6080000400543213,-8.593000411987305,-2.5269999504089355,22.621999740600582 -11574,2017-10-26 06:00:00,33.92599868774414,0.0,41.49499893188477,2.118000030517578,-7.4099998474121085,-1.3650000095367432,22.621999740600582 -11575,2017-10-26 07:00:00,32.669998168945305,0.0,40.82500076293945,1.3940000534057615,-8.763999938964844,-1.5570000410079956,22.621999740600582 -11576,2017-10-26 08:00:00,33.005001068115234,0.0,40.79800033569336,0.0,-7.494999885559082,-1.2899999618530271,23.500999450683597 -11577,2017-10-26 09:00:00,32.333999633789055,0.0,41.22700119018555,0.0,-8.710000038146973,-1.7799999713897705,25.25900077819824 -11578,2017-10-26 10:00:00,29.82099914550781,0.0,39.37799835205078,0.0,-8.593000411987305,-2.2709999084472656,27.67600059509277 -11579,2017-10-26 11:00:00,33.757999420166016,0.0,43.07699966430664,1.9570000171661377,-8.880999565124512,-2.1960000991821294,29.65299987792969 -11580,2017-10-26 12:00:00,30.82699966430664,0.0,40.87900161743164,0.0,-10.149999618530272,-1.8020000457763672,32.50949859619141 -11581,2017-10-26 13:00:00,31.2450008392334,0.0,39.99399948120117,0.0,-8.923999786376953,-1.866000056266785,33.60850143432617 -11582,2017-10-26 14:00:00,29.56999969482422,0.0,38.33200073242188,0.0,-8.923999786376953,-1.662999987602234,33.82849884033203 -11583,2017-10-26 15:00:00,29.65399932861328,0.0,39.887001037597656,1.8229999542236328,-10.223999977111816,-2.611999988555908,34.04800033569336 -11584,2017-10-26 16:00:00,32.58599853515625,0.0,42.32600021362305,1.312999963760376,-8.965999603271484,-2.611999988555908,33.16899871826172 -11585,2017-10-26 17:00:00,33.17200088500977,0.0,43.18399810791016,1.5820000171661377,-10.223999977111816,-2.611999988555908,31.63050079345703 -11586,2017-10-26 18:00:00,38.198001861572266,0.0,46.31999969482422,3.0290000438690186,-7.697999954223633,-2.611999988555908,29.43400001525879 -11587,2017-10-26 19:00:00,33.92599868774414,0.0,41.73699951171875,0.0,-7.676000118255615,-1.3109999895095823,27.67600059509277 -11588,2017-10-26 20:00:00,35.518001556396484,0.0,43.63999938964844,1.7419999837875366,-8.838000297546387,-1.3220000267028809,26.13750076293945 -11589,2017-10-26 21:00:00,33.84199905395508,0.0,43.45199966430664,2.627000093460083,-8.859999656677246,-1.3329999446868896,25.03899955749512 -11590,2017-10-26 22:00:00,35.518001556396484,0.0,42.86199951171875,3.1630001068115234,-7.633999824523926,-1.2580000162124634,24.3799991607666 -11591,2017-10-26 23:00:00,33.674999237060554,0.0,42.40700149536133,2.493000030517578,-7.7189998626708975,-1.3539999723434448,23.94050025939941 -11592,2017-10-27 00:00:00,33.25600051879883,0.0,42.084999084472656,3.6719999313354488,-9.093999862670898,-1.9299999475479128,23.500999450683597 -11593,2017-10-27 01:00:00,31.413000106811523,0.0,39.61899948120117,1.4739999771118164,-7.697999954223633,-1.4609999656677246,22.84199905395508 -11594,2017-10-27 02:00:00,29.82099914550781,0.0,37.68899917602539,2.4660000801086426,-7.782999992370605,-1.4609999656677246,22.402000427246094 -11595,2017-10-27 03:00:00,30.65900039672852,0.0,38.92200088500977,1.715999960899353,-8.902000427246094,-1.6529999971389768,21.74300003051757 -11596,2017-10-27 04:00:00,29.40299987792969,0.0,38.70800018310547,2.680999994277954,-9.029999732971191,-1.6529999971389768,21.083999633789062 -11597,2017-10-27 05:00:00,32.250999450683594,0.0,40.39599990844727,2.3320000171661377,-7.697999954223633,-1.6529999971389768,20.645000457763672 -11598,2017-10-27 06:00:00,33.17200088500977,0.0,40.98600006103516,2.4130001068115234,-8.038999557495117,-1.2150000333786009,20.424999237060547 -11599,2017-10-27 07:00:00,33.25600051879883,0.0,41.17399978637695,1.312999963760376,-7.676000118255615,-1.246999979019165,19.98550033569336 -11600,2017-10-27 08:00:00,30.99399948120117,0.0,39.64599990844727,1.6349999904632568,-8.902000427246094,-1.3329999446868896,20.424999237060547 -11601,2017-10-27 09:00:00,31.832000732421875,0.0,41.49499893188477,2.0369999408721924,-8.902000427246094,-2.611999988555908,23.06150054931641 -11602,2017-10-27 10:00:00,29.066999435424805,0.0,38.22499847412109,0.0,-8.848999977111816,-1.919000029563904,26.796499252319336 -11603,2017-10-27 11:00:00,32.501998901367195,0.0,41.97800064086914,0.0,-8.859999656677246,-1.919000029563904,29.87299919128418 -11604,2017-10-27 12:00:00,30.1560001373291,0.0,40.82500076293945,0.0,-11.407999992370604,-1.919000029563904,30.53199958801269 -11605,2017-10-27 13:00:00,31.74799919128418,0.0,41.84400177001953,1.9029999971389768,-10.20300006866455,-2.3350000381469727,32.94900131225586 -11606,2017-10-27 14:00:00,32.75299835205078,0.0,43.04999923706055,2.815000057220459,-10.458999633789062,-2.3350000381469727,34.487499237060554 -11607,2017-10-27 15:00:00,31.496999740600582,0.0,42.91600036621094,2.815000057220459,-10.458999633789062,-2.6760001182556152,34.487499237060554 -11608,2017-10-27 16:00:00,33.25600051879883,0.0,43.39899826049805,2.385999917984009,-9.12600040435791,-2.559000015258789,32.72949981689453 -11609,2017-10-27 17:00:00,32.333999633789055,0.0,41.040000915527344,0.0,-9.32900047302246,-2.559000015258789,31.410999298095703 -11610,2017-10-27 18:00:00,35.685001373291016,0.0,44.41699981689453,1.9299999475479128,-9.274999618530272,-1.940000057220459,28.99399948120117 -11611,2017-10-27 19:00:00,36.94200134277344,0.0,43.15700149536133,0.0,-6.439000129699707,-1.2150000333786009,27.23600006103516 -11612,2017-10-27 20:00:00,36.52299880981445,0.0,43.80099868774414,1.8229999542236328,-7.900000095367432,0.0,25.917999267578125 -11613,2017-10-27 21:00:00,35.518001556396484,0.0,43.58599853515625,1.6349999904632568,-6.876999855041504,0.0,24.60000038146973 -11614,2017-10-27 22:00:00,37.025001525878906,0.0,44.685001373291016,3.7799999713897705,-7.323999881744385,-1.3220000267028809,23.94050025939941 -11615,2017-10-27 23:00:00,34.0099983215332,0.0,42.459999084472656,2.680999994277954,-8.689000129699707,-1.3009999990463257,23.2810001373291 -11616,2017-10-28 00:00:00,32.333999633789055,0.0,40.12799835205078,2.0639998912811284,-7.014999866485598,-1.3009999990463257,22.84199905395508 -11617,2017-10-28 01:00:00,32.250999450683594,0.0,39.67300033569336,2.0369999408721924,-7.005000114440918,-1.3539999723434448,22.1825008392334 -11618,2017-10-28 02:00:00,29.48600006103516,0.0,38.27899932861328,2.358999967575073,-8.166999816894531,-1.8980000019073489,21.74300003051757 -11619,2017-10-28 03:00:00,31.16200065612793,0.0,39.21699905395508,2.1710000038146973,-8.102999687194824,-2.8469998836517334,21.083999633789062 -11620,2017-10-28 04:00:00,29.65399932861328,0.0,38.97600173950195,2.3050000667572017,-9.33899974822998,-2.7079999446868896,20.645000457763672 -11621,2017-10-28 05:00:00,29.82099914550781,0.0,38.35900115966797,0.0,-8.038999557495117,-1.406999945640564,19.766000747680664 -11622,2017-10-28 06:00:00,32.58599853515625,0.0,40.04800033569336,2.358999967575073,-6.834000110626223,-2.664999961853028,19.326000213623047 -11623,2017-10-28 07:00:00,31.832000732421875,0.0,40.04800033569336,1.4210000038146973,-8.048999786376951,-1.4609999656677246,18.886999130249023 -11624,2017-10-28 08:00:00,30.40800094604492,0.0,38.01100158691406,0.0,-7.037000179290772,-1.3650000095367432,19.54599952697754 -11625,2017-10-28 09:00:00,32.669998168945305,0.0,41.89699935913086,1.4739999771118164,-8.315999984741211,-1.375,22.621999740600582 -11626,2017-10-28 10:00:00,35.43399810791016,0.0,43.37200164794922,2.733999967575073,-8.465000152587889,-2.6549999713897705,26.357500076293945 -11627,2017-10-28 11:00:00,35.518001556396484,0.0,43.90800094604492,2.0369999408721924,-8.880999565124512,-1.63100004196167,29.21349906921387 -11628,2017-10-28 12:00:00,32.92100143432617,0.0,41.89699935913086,0.0,-8.859999656677246,-1.7699999809265137,32.290000915527344 -11629,2017-10-28 13:00:00,29.738000869750977,0.0,41.73699951171875,1.6080000400543213,-11.696000099182127,-2.9530000686645512,34.48699951171875 -11630,2017-10-28 14:00:00,30.239999771118164,0.0,41.46799850463867,2.118000030517578,-10.479999542236328,-2.9530000686645512,36.025001525878906 -11631,2017-10-28 15:00:00,29.40299987792969,0.0,40.95899963378906,0.0,-11.717000007629396,-2.868000030517578,35.80550003051758 -11632,2017-10-28 16:00:00,29.48600006103516,0.0,38.65399932861328,0.0,-7.985000133514402,-1.812000036239624,34.04800033569336 -11633,2017-10-28 17:00:00,31.74799919128418,0.0,42.21900177001953,0.0,-10.298999786376951,-2.111000061035156,32.070499420166016 -11634,2017-10-28 18:00:00,35.60100173950195,0.0,44.63199996948242,1.7690000534057615,-9.168999671936035,-2.111000061035156,29.214000701904297 -11635,2017-10-28 19:00:00,33.84199905395508,0.0,43.07699966430664,1.9029999971389768,-9.243000030517578,-2.5369999408721924,26.79700088500977 -11636,2017-10-28 20:00:00,33.25600051879883,0.0,42.03099822998047,0.0,-8.092000007629395,-1.2690000534057615,25.03899955749512 -11637,2017-10-28 21:00:00,34.68000030517578,0.0,44.44400024414063,2.5199999809265137,-8.934000015258789,-1.3650000095367432,23.94050025939941 -11638,2017-10-28 22:00:00,31.74799919128418,0.0,43.53300094604492,3.190000057220459,-11.609999656677244,-1.2899999618530271,22.84199905395508 -11639,2017-10-28 23:00:00,33.088001251220696,0.0,41.92399978637695,2.5729999542236333,-8.956000328063965,-2.1429998874664307,22.1825008392334 -11640,2017-10-29 00:00:00,30.90999984741211,0.0,39.16299819946289,0.0,-9.093999862670898,-2.1429998874664307,21.52300071716309 -11641,2017-10-29 01:00:00,31.32900047302246,0.0,39.69900131225586,1.5279999971389768,-9.008999824523926,-1.4819999933242798,20.864500045776367 -11642,2017-10-29 02:00:00,30.1560001373291,0.0,38.17100143432617,1.6080000400543213,-8.97700023651123,-1.4819999933242798,19.98550033569336 -11643,2017-10-29 03:00:00,26.72200012207031,0.0,34.79399871826172,0.0,-8.869999885559082,-1.4819999933242798,19.54599952697754 -11644,2017-10-29 04:00:00,28.39699935913086,0.0,38.22499847412109,2.252000093460083,-10.36299991607666,-2.7079999446868896,18.886999130249023 -11645,2017-10-29 05:00:00,29.40299987792969,0.0,40.07500076293945,2.1440000534057617,-10.68299961090088,-2.7079999446868896,18.44700050354004 -11646,2017-10-29 06:00:00,29.56999969482422,0.0,39.99399948120117,1.8760000467300413,-9.371000289916992,-1.843999981880188,18.227500915527344 -11647,2017-10-29 07:00:00,30.65900039672852,0.0,40.45000076293945,0.0,-9.48900032043457,-1.8760000467300413,18.007999420166016 -11648,2017-10-29 08:00:00,25.968000411987305,0.0,35.33000183105469,-2.0369999408721924,-9.531000137329102,-2.463000059127808,18.66699981689453 -11649,2017-10-29 09:00:00,30.1560001373291,0.0,40.93199920654297,0.0,-10.532999992370604,-2.1640000343322754,20.424999237060547 -11650,2017-10-29 10:00:00,30.1560001373291,0.0,41.20000076293945,1.3940000534057615,-10.427000045776367,-2.1640000343322754,22.1825008392334 -11651,2017-10-29 11:00:00,33.92599868774414,0.0,42.80899810791016,2.118000030517578,-9.274999618530272,-1.9720000028610232,23.94050025939941 -11652,2017-10-29 12:00:00,30.072999954223643,0.0,40.69100189208984,1.5010000467300415,-10.50100040435791,-2.96399998664856,25.917999267578125 -11653,2017-10-29 13:00:00,29.48600006103516,0.0,39.40399932861328,1.9299999475479128,-9.361000061035156,-2.96399998664856,28.114999771118164 -11654,2017-10-29 14:00:00,28.899999618530277,0.0,40.02099990844727,1.3669999837875366,-10.960000038146973,-2.121999979019165,29.653499603271484 -11655,2017-10-29 15:00:00,29.98900032043457,0.0,40.20899963378906,0.0,-9.744000434875488,-2.121999979019165,30.53199958801269 -11656,2017-10-29 16:00:00,32.417999267578125,0.0,41.57600021362305,0.0,-9.734000205993652,-1.8229999542236328,29.65299987792969 -11657,2017-10-29 17:00:00,33.17200088500977,0.0,42.35300064086914,0.0,-9.510000228881836,-1.8869999647140503,27.45599937438965 -11658,2017-10-29 18:00:00,35.685001373291016,0.0,43.88100051879883,0.0,-8.284000396728517,0.0,25.69849967956543 -11659,2017-10-29 19:00:00,32.669998168945305,0.0,40.69100189208984,0.0,-8.496999740600586,-1.2150000333786009,23.94050025939941 -11660,2017-10-29 20:00:00,35.93600082397461,0.0,42.88899993896485,0.0,-7.206999778747559,-1.2690000534057615,22.621999740600582 -11661,2017-10-29 21:00:00,32.75299835205078,0.0,40.69100189208984,0.0,-8.508000373840332,0.0,21.52300071716309 -11662,2017-10-29 22:00:00,34.847000122070305,0.0,41.81700134277344,1.5549999475479126,-7.484000205993652,-1.2369999885559082,20.424999237060547 -11663,2017-10-29 23:00:00,33.088001251220696,0.0,42.78200149536133,2.627000093460083,-8.678000450134277,-1.22599995136261,19.54599952697754 -11664,2017-10-30 00:00:00,31.16200065612793,0.0,38.89500045776367,1.6890000104904177,-8.645999908447267,-2.494999885559082,19.10650062561035 -11665,2017-10-30 01:00:00,29.738000869750977,0.0,37.90299987792969,0.0,-7.260000228881836,-2.494999885559082,18.227500915527344 -11666,2017-10-30 02:00:00,28.39699935913086,0.0,37.742000579833984,1.5820000171661377,-8.47599983215332,-2.622999906539917,17.348499298095707 -11667,2017-10-30 03:00:00,29.738000869750977,0.0,38.78799819946289,1.6619999408721924,-8.560999870300293,-2.622999906539917,16.469499588012695 -11668,2017-10-30 04:00:00,29.98900032043457,0.0,38.30500030517578,1.7960000038146973,-8.753000259399414,-2.8359999656677246,15.810999870300291 -11669,2017-10-30 05:00:00,30.743000030517567,0.0,39.02899932861328,1.3940000534057615,-8.763999938964844,-2.8359999656677246,15.15149974822998 -11670,2017-10-30 06:00:00,25.381999969482425,0.0,33.748001098632805,0.0,-7.484000205993652,-1.343000054359436,14.711999893188477 -11671,2017-10-30 07:00:00,24.795000076293945,0.0,33.47999954223633,-1.3669999837875366,-8.63599967956543,-1.3969999551773071,14.272500038146973 -11672,2017-10-30 08:00:00,22.70100021362305,0.0,31.97900009155273,-1.5820000171661377,-8.645999908447267,-1.3969999551773071,14.931500434875488 -11673,2017-10-30 09:00:00,32.333999633789055,0.0,41.17399978637695,0.0,-7.4099998474121085,-1.3969999551773071,18.227500915527344 -11674,2017-10-30 10:00:00,24.125,-4.188000202178955,32.83700180053711,-2.8949999809265137,-8.699999809265138,-1.5349999666213991,21.523500442504886 -11675,2017-10-30 11:00:00,24.208999633789062,0.0,34.60599899291992,-2.0639998912811284,-10.149999618530272,-2.7720000743865967,25.03899955749512 -11676,2017-10-30 12:00:00,31.496999740600582,0.0,41.81700134277344,0.0,-10.15999984741211,-2.7720000743865967,27.01650047302246 -11677,2017-10-30 13:00:00,33.005001068115234,0.0,41.36100006103516,1.5010000467300415,-8.869999885559082,-2.282000064849853,29.43350028991699 -11678,2017-10-30 14:00:00,27.64299964904785,0.0,39.21699905395508,0.0,-11.449999809265137,-2.282000064849853,30.53249931335449 -11679,2017-10-30 15:00:00,31.58099937438965,0.0,42.72800064086914,2.627000093460083,-9.989999771118164,-1.962000012397766,30.97150039672852 -11680,2017-10-30 16:00:00,32.417999267578125,0.0,42.35300064086914,1.3669999837875366,-10.095999717712402,-1.962000012397766,28.99399948120117 -11681,2017-10-30 17:00:00,31.66399955749512,0.0,42.48699951171875,0.0,-9.958000183105469,-1.962000012397766,26.796499252319336 -11682,2017-10-30 18:00:00,36.104000091552734,0.0,43.77399826049805,1.3400000333786009,-7.4099998474121085,-1.962000012397766,23.2810001373291 -11683,2017-10-30 19:00:00,35.518001556396484,0.0,43.58599853515625,0.0,-7.644000053405763,-1.524999976158142,21.083999633789062 -11684,2017-10-30 20:00:00,34.261001586914055,0.0,41.36100006103516,0.0,-6.99399995803833,-1.4179999828338623,19.326000213623047 -11685,2017-10-30 21:00:00,36.60699844360352,0.0,44.36399841308594,1.3400000333786009,-7.793000221252441,0.0,18.007999420166016 -11686,2017-10-30 22:00:00,36.77399826049805,0.0,44.55099868774414,2.760999917984009,-7.611999988555907,-1.3109999895095823,17.128999710083008 -11687,2017-10-30 23:00:00,33.757999420166016,0.0,39.45800018310547,1.4210000038146973,-6.119999885559082,0.0,16.469499588012695 -11688,2017-10-31 00:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11689,2017-10-31 01:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11690,2017-10-31 02:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11691,2017-10-31 03:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11692,2017-10-31 04:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11693,2017-10-31 05:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11694,2017-10-31 06:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11695,2017-10-31 07:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11696,2017-10-31 08:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11697,2017-10-31 09:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11698,2017-10-31 10:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11699,2017-10-31 11:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11700,2017-10-31 12:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11701,2017-10-31 13:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11702,2017-10-31 14:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11703,2017-10-31 15:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11704,2017-10-31 16:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11705,2017-10-31 17:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11706,2017-10-31 18:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11707,2017-10-31 19:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11708,2017-10-31 20:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11709,2017-10-31 21:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11710,2017-10-31 22:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11711,2017-10-31 23:00:00,31.16200065612793,0.0,40.47700119018555,1.7960000038146973,-8.593000411987305,-1.4179999828338623,16.25 -11712,2017-11-01 00:00:00,30.99399948120117,0.0,38.65399932861328,0.0,-8.401000022888184,-1.2150000333786009,18.44700050354004 -11713,2017-11-01 01:00:00,30.90999984741211,0.0,39.61899948120117,1.3669999837875366,-8.47599983215332,-1.2150000333786009,18.007999420166016 -11714,2017-11-01 02:00:00,30.743000030517567,0.0,38.11800003051758,0.0,-6.9619998931884775,-1.621000051498413,17.788000106811523 -11715,2017-11-01 03:00:00,32.16699981689453,0.0,40.93199920654297,1.4479999542236328,-9.616999626159668,-1.621000051498413,17.348499298095707 -11716,2017-11-01 04:00:00,31.32900047302246,0.0,39.75299835205078,1.4739999771118164,-8.699999809265138,-1.621000051498413,16.909000396728516 -11717,2017-11-01 05:00:00,33.088001251220696,0.0,41.60300064086914,1.6080000400543213,-8.63599967956543,-1.4290000200271606,16.68899917602539 -11718,2017-11-01 06:00:00,35.85300064086914,0.0,42.78200149536133,0.0,-7.323999881744385,-1.4290000200271606,16.25 -11719,2017-11-01 07:00:00,35.0989990234375,0.0,43.29100036621094,0.0,-7.782999992370605,-1.3329999446868896,16.030500411987305 -11720,2017-11-01 08:00:00,34.261001586914055,0.0,43.55899810791016,0.0,-9.147000312805176,-1.4709999561309814,16.909000396728516 -11721,2017-11-01 09:00:00,35.182998657226555,0.0,45.03400039672852,1.6080000400543213,-9.12600040435791,-1.4709999561309814,20.424999237060547 -11722,2017-11-01 10:00:00,31.32900047302246,0.0,40.20899963378906,-1.5279999971389768,-9.12600040435791,-1.2150000333786009,24.3799991607666 -11723,2017-11-01 11:00:00,34.847000122070305,0.0,44.87300109863281,1.8760000467300413,-9.052000045776367,-2.440999984741211,28.334999084472656 -11724,2017-11-01 12:00:00,27.726999282836918,0.0,37.742000579833984,0.0,-8.965999603271484,-2.440999984741211,30.97200012207031 -11725,2017-11-01 13:00:00,27.81100082397461,0.0,36.96500015258789,0.0,-8.859999656677246,-2.440999984741211,33.16899871826172 -11726,2017-11-01 14:00:00,22.28199958801269,0.0,32.060001373291016,-2.009999990463257,-8.859999656677246,-1.63100004196167,35.146499633789055 -11727,2017-11-01 15:00:00,22.617000579833984,0.0,32.24700164794922,-1.9570000171661377,-10.21399974822998,-1.6100000143051147,35.146499633789055 -11728,2017-11-01 16:00:00,32.83700180053711,0.0,42.86199951171875,1.6890000104904177,-8.805999755859375,-1.6100000143051147,34.04800033569336 -11729,2017-11-01 17:00:00,33.92599868774414,0.0,42.70199966430664,0.0,-8.795999526977539,-1.3969999551773071,31.850500106811523 -11730,2017-11-01 18:00:00,38.03099822998047,0.0,45.24800109863281,0.0,-7.25,-1.4709999561309814,28.99399948120117 -11731,2017-11-01 19:00:00,32.83700180053711,0.0,40.10100173950195,0.0,-7.067999839782715,-1.3650000095367432,26.79700088500977 -11732,2017-11-01 20:00:00,33.005001068115234,0.0,40.50299835205078,0.0,-7.122000217437744,0.0,24.819499969482425 -11733,2017-11-01 21:00:00,36.858001708984375,0.0,45.78400039672852,2.5199999809265137,-8.401000022888184,-1.2150000333786009,23.2810001373291 -11734,2017-11-01 22:00:00,35.518001556396484,0.0,43.31800079345703,2.2780001163482666,-8.401000022888184,-1.2150000333786009,22.402000427246094 -11735,2017-11-01 23:00:00,33.42300033569336,0.0,40.74499893188477,1.5010000467300415,-7.090000152587893,-1.2690000534057615,21.96299934387207 -11736,2017-11-02 00:00:00,31.32900047302246,0.0,39.72600173950195,1.3940000534057615,-8.305000305175781,-1.3860000371932983,21.083999633789062 -11737,2017-11-02 01:00:00,29.738000869750977,0.0,38.38600158691406,0.0,-8.720999717712402,-1.2150000333786009,20.424999237060547 -11738,2017-11-02 02:00:00,29.48600006103516,0.0,37.608001708984375,0.0,-8.720999717712402,-2.440999984741211,19.766000747680664 -11739,2017-11-02 03:00:00,27.141000747680664,0.0,37.071998596191406,0.0,-9.211000442504885,-2.440999984741211,19.10650062561035 -11740,2017-11-02 04:00:00,26.72200012207031,0.0,38.06399917602539,0.0,-10.37399959564209,-1.3539999723434448,18.44700050354004 -11741,2017-11-02 05:00:00,29.48600006103516,0.0,39.00199890136719,0.0,-9.093999862670898,-2.5799999237060547,18.007999420166016 -11742,2017-11-02 06:00:00,30.82699966430664,0.0,39.16299819946289,0.0,-7.7189998626708975,-1.2690000534057615,17.788000106811523 -11743,2017-11-02 07:00:00,29.98900032043457,0.0,39.02899932861328,0.0,-7.932000160217285,-1.2899999618530271,17.568000793457028 -11744,2017-11-02 08:00:00,26.63800048828125,0.0,35.141998291015625,-1.4210000038146973,-9.072999954223633,-1.3650000095367432,18.227500915527344 -11745,2017-11-02 09:00:00,32.83700180053711,0.0,43.15700149536133,1.7419999837875366,-9.28600025177002,-1.3650000095367432,21.083999633789062 -11746,2017-11-02 10:00:00,29.98900032043457,0.0,39.29700088500977,0.0,-8.944999694824219,-1.3009999990463257,24.60000038146973 -11747,2017-11-02 11:00:00,35.685001373291016,0.0,44.47100067138672,1.9029999971389768,-8.944999694824219,-2.569000005722046,28.55500030517578 -11748,2017-11-02 12:00:00,31.32900047302246,0.0,41.44200134277344,0.0,-8.902000427246094,-2.900000095367432,30.97150039672852 -11749,2017-11-02 13:00:00,33.005001068115234,0.0,42.86199951171875,1.5820000171661377,-10.234999656677246,-2.0469999313354488,33.60800170898437 -11750,2017-11-02 14:00:00,30.1560001373291,0.0,38.92200088500977,0.0,-8.98799991607666,-1.812000036239624,35.146499633789055 -11751,2017-11-02 15:00:00,31.916000366210927,0.0,42.35300064086914,1.6080000400543213,-10.267000198364258,-1.812000036239624,35.58549880981445 -11752,2017-11-02 16:00:00,33.088001251220696,0.0,43.104000091552734,1.312999963760376,-8.965999603271484,-1.812000036239624,34.48699951171875 -11753,2017-11-02 17:00:00,36.02000045776367,0.0,43.88100051879883,0.0,-7.697999954223633,-1.812000036239624,32.72949981689453 -11754,2017-11-02 18:00:00,39.45500183105469,0.0,45.48899841308594,1.5549999475479126,-5.171000003814697,-1.3329999446868896,29.87299919128418 -11755,2017-11-02 19:00:00,33.005001068115234,0.0,40.50299835205078,0.0,-7.803999900817871,0.0,27.67600059509277 -11756,2017-11-02 20:00:00,36.68999862670898,0.0,44.41699981689453,1.9839999675750728,-7.122000217437744,0.0,25.917999267578125 -11757,2017-11-02 21:00:00,36.52299880981445,0.0,44.900001525878906,2.760999917984009,-8.347999572753906,-1.2369999885559082,24.60000038146973 -11758,2017-11-02 22:00:00,36.94200134277344,0.0,43.935001373291016,2.3050000667572017,-7.090000152587893,-1.3009999990463257,23.500999450683597 -11759,2017-11-02 23:00:00,32.83700180053711,0.0,41.25400161743164,2.760999917984009,-8.326999664306639,-1.2369999885559082,22.84199905395508 -11760,2017-11-03 00:00:00,32.75299835205078,0.0,40.58399963378906,1.7419999837875366,-6.99399995803833,0.0,21.96299934387207 -11761,2017-11-03 01:00:00,31.66399955749512,0.0,39.35100173950195,1.5010000467300415,-7.046999931335449,-1.2150000333786009,21.52300071716309 -11762,2017-11-03 02:00:00,26.13599967956543,0.0,34.9010009765625,0.0,-8.550000190734862,-1.2150000333786009,21.083999633789062 -11763,2017-11-03 03:00:00,27.559999465942383,0.0,36.7239990234375,0.0,-8.550000190734862,-2.440999984741211,20.20499992370605 -11764,2017-11-03 04:00:00,28.81599998474121,0.0,37.18000030517578,1.6349999904632568,-8.380000114440918,-2.440999984741211,19.766000747680664 -11765,2017-11-03 05:00:00,28.73200035095215,0.0,39.18999862670898,1.4210000038146973,-10.83199977874756,-1.493000030517578,19.326000213623047 -11766,2017-11-03 06:00:00,29.48600006103516,0.0,39.512001037597656,0.0,-9.45699977874756,-1.493000030517578,18.886999130249023 -11767,2017-11-03 07:00:00,32.08300018310547,0.0,40.95899963378906,0.0,-9.531000137329102,-1.493000030517578,18.886999130249023 -11768,2017-11-03 08:00:00,33.17200088500977,0.0,41.97800064086914,0.0,-8.326999664306639,-2.5480000972747803,19.54599952697754 -11769,2017-11-03 09:00:00,36.1879997253418,0.0,43.15700149536133,1.5820000171661377,-7.099999904632568,-2.5480000972747803,22.1825008392334 -11770,2017-11-03 10:00:00,27.726999282836918,0.0,37.18000030517578,-1.3400000333786009,-8.071000099182129,-2.5480000972747803,25.917999267578125 -11771,2017-11-03 11:00:00,33.50699996948242,0.0,42.70199966430664,0.0,-9.147000312805176,-2.5480000972747803,29.43350028991699 -11772,2017-11-03 12:00:00,30.82699966430664,0.0,41.040000915527344,0.0,-9.317999839782717,-2.5480000972747803,31.410999298095703 -11773,2017-11-03 13:00:00,32.58599853515625,0.0,41.81700134277344,0.0,-9.371000289916992,-2.5480000972747803,32.290000915527344 -11774,2017-11-03 14:00:00,30.90999984741211,0.0,40.55699920654297,0.0,-9.29699993133545,-1.7380000352859497,30.97150039672852 -11775,2017-11-03 15:00:00,30.82699966430664,0.0,39.35100173950195,0.0,-9.12600040435791,-1.6419999599456787,28.55500030517578 -11776,2017-11-03 16:00:00,36.68999862670898,0.0,43.69300079345703,1.7419999837875366,-6.513999938964844,-1.6419999599456787,26.79700088500977 -11777,2017-11-03 17:00:00,34.429000854492195,0.0,43.15700149536133,0.0,-9.1899995803833,-1.2690000534057615,25.47900009155273 -11778,2017-11-03 18:00:00,38.70100021362305,0.0,45.67699813842773,1.5010000467300415,-6.557000160217285,-1.246999979019165,24.819499969482425 -11779,2017-11-03 19:00:00,36.68999862670898,0.0,44.17599868774414,1.5279999971389768,-7.570000171661378,-1.3539999723434448,24.60000038146973 -11780,2017-11-03 20:00:00,36.68999862670898,0.0,43.58599853515625,1.5549999475479126,-7.570000171661378,-1.22599995136261,24.15999984741211 -11781,2017-11-03 21:00:00,36.68999862670898,0.0,41.68299865722656,0.0,-5.25600004196167,0.0,23.72100067138672 -11782,2017-11-03 22:00:00,31.32900047302246,0.0,40.04800033569336,0.0,-7.921000003814697,-1.2580000162124634,22.84199905395508 -11783,2017-11-03 23:00:00,27.22500038146973,0.0,35.25,0.0,-7.995999813079834,-2.740000009536743,22.1825008392334 -11784,2017-11-04 00:00:00,30.99399948120117,0.0,39.27000045776367,1.312999963760376,-8.593000411987305,-1.4390000104904177,21.52300071716309 -11785,2017-11-04 01:00:00,27.64299964904785,0.0,35.70500183105469,0.0,-7.228000164031982,-1.2369999885559082,20.645000457763672 -11786,2017-11-04 02:00:00,29.738000869750977,0.0,37.5009994506836,0.0,-6.758999824523926,-1.2150000333786009,19.326000213623047 -11787,2017-11-04 03:00:00,26.63800048828125,0.0,34.79399871826172,0.0,-7.910999774932861,-1.246999979019165,18.886999130249023 -11788,2017-11-04 04:00:00,29.98900032043457,0.0,38.198001861572266,1.3669999837875366,-8.071000099182129,-1.4609999656677246,18.007999420166016 -11789,2017-11-04 05:00:00,30.743000030517567,0.0,38.33200073242188,1.312999963760376,-7.708000183105469,-1.3109999895095823,17.128999710083008 -11790,2017-11-04 06:00:00,30.32399940490723,0.0,39.37799835205078,1.3940000534057615,-9.114999771118164,-1.7380000352859497,16.25 -11791,2017-11-04 07:00:00,31.58099937438965,0.0,40.79800033569336,0.0,-7.85699987411499,-1.5889999866485596,15.590999603271484 -11792,2017-11-04 08:00:00,29.066999435424805,0.0,36.9119987487793,-1.312999963760376,-6.876999855041504,-1.5889999866485596,16.469499588012695 -11793,2017-11-04 09:00:00,36.1879997253418,0.0,44.12200164794922,2.385999917984009,-8.47599983215332,-1.5889999866485596,18.886499404907227 -11794,2017-11-04 10:00:00,34.847000122070305,0.0,43.02299880981445,1.3400000333786009,-8.63599967956543,-1.5889999866485596,21.523500442504886 -11795,2017-11-04 11:00:00,37.61199951171875,0.0,45.14099884033203,2.4130001068115234,-7.164000034332275,-1.5889999866485596,25.03899955749512 -11796,2017-11-04 12:00:00,33.25600051879883,0.0,42.29899978637695,0.0,-8.486000061035156,-2.8469998836517334,26.79700088500977 -11797,2017-11-04 13:00:00,32.250999450683594,0.0,41.20000076293945,0.0,-8.581999778747559,-2.302999973297119,29.21349906921387 -11798,2017-11-04 14:00:00,32.08300018310547,0.0,41.22700119018555,0.0,-8.63599967956543,-2.302999973297119,30.75200080871582 -11799,2017-11-04 15:00:00,31.16200065612793,0.0,40.20899963378906,0.0,-8.848999977111816,-2.302999973297119,30.3125 -11800,2017-11-04 16:00:00,30.90999984741211,0.0,40.18199920654297,0.0,-8.848999977111816,-1.7269999980926514,28.334999084472656 -11801,2017-11-04 17:00:00,32.333999633789055,0.0,40.45000076293945,-1.5549999475479126,-7.803999900817871,-1.2899999618530271,25.917999267578125 -11802,2017-11-04 18:00:00,34.763999938964844,0.0,41.01300048828125,0.0,-6.449999809265138,-1.3650000095367432,23.500999450683597 -11803,2017-11-04 19:00:00,33.005001068115234,0.0,40.28900146484375,0.0,-7.111000061035156,-1.3329999446868896,21.083999633789062 -11804,2017-11-04 20:00:00,29.066999435424805,0.0,35.40999984741211,0.0,-6.216000080108643,-1.2790000438690186,19.10650062561035 -11805,2017-11-04 21:00:00,38.03099822998047,0.0,46.88299942016602,3.3510000705718994,-8.251999855041504,-1.4609999656677246,17.788000106811523 -11806,2017-11-04 22:00:00,37.946998596191406,0.0,44.14899826049805,2.627000093460083,-5.703999996185303,-1.22599995136261,16.909000396728516 -11807,2017-11-04 23:00:00,35.60100173950195,0.0,43.02299880981445,3.108999967575073,-6.982999801635742,-1.2580000162124634,16.469499588012695 -11808,2017-11-05 00:00:00,32.83700180053711,0.0,40.74499893188477,2.5729999542236333,-7.964000225067139,-1.343000054359436,16.030500411987305 -11809,2017-11-05 01:00:00,32.16699981689453,0.0,39.64599990844727,1.8760000467300413,-7.835999965667725,-1.2580000162124634,16.030500411987305 -11810,2017-11-05 02:00:00,31.99900054931641,0.0,40.39599990844727,2.118000030517578,-7.835999965667725,-1.4290000200271606,16.030500411987305 -11811,2017-11-05 03:00:00,31.58099937438965,0.0,39.72600173950195,2.385999917984009,-7.985000133514402,-1.4290000200271606,16.030500411987305 -11812,2017-11-05 04:00:00,30.492000579833984,0.0,39.08300018310547,2.0639998912811284,-7.985000133514402,-1.4290000200271606,15.590999603271484 -11813,2017-11-05 05:00:00,28.73200035095215,0.0,37.5009994506836,1.312999963760376,-9.211000442504885,-1.621000051498413,15.590999603271484 -11814,2017-11-05 06:00:00,33.42300033569336,0.0,40.74499893188477,1.8760000467300413,-7.879000186920166,-1.715999960899353,15.15149974822998 -11815,2017-11-05 07:00:00,30.40800094604492,0.0,39.48500061035156,1.5279999971389768,-7.879000186920166,-1.715999960899353,15.15149974822998 -11816,2017-11-05 08:00:00,33.92599868774414,0.0,41.52199935913086,0.0,-6.866000175476074,-1.2580000162124634,15.810500144958494 -11817,2017-11-05 09:00:00,32.16699981689453,0.0,41.06600189208984,0.0,-9.33899974822998,-1.3009999990463257,18.44750022888184 -11818,2017-11-05 10:00:00,37.025001525878906,0.0,45.75699996948242,2.680999994277954,-8.006999969482424,-1.4609999656677246,21.083999633789062 -11819,2017-11-05 11:00:00,35.43399810791016,0.0,45.32899856567383,1.9299999475479128,-9.307000160217283,-2.750999927520752,23.500999450683597 -11820,2017-11-05 12:00:00,30.99399948120117,0.0,40.12799835205078,0.0,-9.307000160217283,-2.750999927520752,24.60000038146973 -11821,2017-11-05 13:00:00,34.763999938964844,0.0,43.90800094604492,1.9570000171661377,-9.274999618530272,-2.3989999294281006,26.57749938964844 -11822,2017-11-05 14:00:00,33.17200088500977,0.0,42.97000122070313,2.1979999542236333,-9.307000160217283,-2.3989999294281006,27.67600059509277 -11823,2017-11-05 15:00:00,30.072999954223643,0.0,38.84199905395508,0.0,-7.888999938964844,-1.662999987602234,27.675500869750977 -11824,2017-11-05 16:00:00,35.349998474121094,0.0,43.23799896240234,1.6080000400543213,-8.017000198364258,-1.3220000267028809,26.796499252319336 -11825,2017-11-05 17:00:00,35.76900100708008,0.0,45.06000137329102,0.0,-9.265000343322754,-1.3650000095367432,25.03899955749512 -11826,2017-11-05 18:00:00,38.28200149536133,0.0,46.50799942016602,2.252000093460083,-8.060000419616701,-1.3650000095367432,23.94050025939941 -11827,2017-11-05 19:00:00,37.77899932861328,0.0,44.229000091552734,0.0,-6.982999801635742,-1.2790000438690186,22.84199905395508 -11828,2017-11-05 20:00:00,33.17200088500977,0.0,42.29899978637695,1.4210000038146973,-9.265000343322754,-1.3220000267028809,21.52300071716309 -11829,2017-11-05 21:00:00,39.2869987487793,0.0,45.51599884033203,2.438999891281128,-6.5349998474121085,-1.2150000333786009,21.083999633789062 -11830,2017-11-05 22:00:00,36.1879997253418,0.0,44.06900024414063,2.2249999046325684,-7.750999927520753,-1.3329999446868896,20.645000457763672 -11831,2017-11-05 23:00:00,29.319000244140625,0.0,35.652000427246094,0.0,-6.4710001945495605,-1.2690000534057615,20.20499992370605 -11832,2017-11-06 00:00:00,27.64299964904785,0.0,33.077999114990234,0.0,-5.427000045776367,0.0,19.98550033569336 -11833,2017-11-06 01:00:00,31.2450008392334,0.0,38.573001861572266,2.1710000038146973,-7.238999843597412,0.0,19.54599952697754 -11834,2017-11-06 02:00:00,29.319000244140625,0.0,36.402000427246094,0.0,-7.238999843597412,-1.493000030517578,19.54599952697754 -11835,2017-11-06 03:00:00,30.743000030517567,0.0,38.52000045776367,1.8760000467300413,-7.431000232696532,-1.3220000267028809,19.326499938964844 -11836,2017-11-06 04:00:00,28.31399917602539,0.0,36.29499816894531,0.0,-7.815000057220459,-1.3329999446868896,18.886999130249023 -11837,2017-11-06 05:00:00,31.496999740600582,0.0,39.430999755859375,2.385999917984009,-7.879000186920166,-1.4500000476837158,18.007999420166016 -11838,2017-11-06 06:00:00,33.674999237060554,0.0,40.98600006103516,1.6080000400543213,-7.793000221252441,-1.4390000104904177,17.568000793457028 -11839,2017-11-06 07:00:00,31.99900054931641,0.0,39.29700088500977,1.5549999475479126,-6.642000198364258,-1.246999979019165,17.128999710083008 -11840,2017-11-06 08:00:00,30.99399948120117,0.0,40.71799850463867,0.0,-9.211000442504885,-2.5799999237060547,18.00749969482422 -11841,2017-11-06 09:00:00,33.674999237060554,0.0,42.83599853515625,2.1440000534057617,-9.211000442504885,-2.5799999237060547,20.645000457763672 -11842,2017-11-06 10:00:00,32.08300018310547,0.0,40.42300033569336,0.0,-7.974999904632567,-2.5799999237060547,23.94050025939941 -11843,2017-11-06 11:00:00,35.85300064086914,0.0,44.28300094604492,1.6080000400543213,-7.953000068664551,-2.5799999237060547,27.23600006103516 -11844,2017-11-06 12:00:00,32.83700180053711,0.0,41.81700134277344,0.0,-9.317999839782717,-2.5799999237060547,28.99399948120117 -11845,2017-11-06 13:00:00,33.34000015258789,0.0,42.51399993896485,2.009999990463257,-9.222000122070312,-2.0789999961853027,30.75200080871582 -11846,2017-11-06 14:00:00,30.90999984741211,0.0,39.887001037597656,1.3669999837875366,-9.222000122070312,-2.0789999961853027,31.19099998474121 -11847,2017-11-06 15:00:00,35.0989990234375,0.0,43.45199966430664,2.9219999313354488,-8.006999969482424,-1.5349999666213991,31.19099998474121 -11848,2017-11-06 16:00:00,35.85300064086914,0.0,44.09500122070313,2.1710000038146973,-8.092000007629395,-1.6100000143051147,29.43400001525879 -11849,2017-11-06 17:00:00,37.69599914550781,0.0,45.94499969482422,2.385999917984009,-8.241000175476074,-2.815000057220459,28.334999084472656 -11850,2017-11-06 18:00:00,33.84199905395508,0.0,41.54899978637695,0.0,-6.63100004196167,-1.5349999666213991,27.23600006103516 -11851,2017-11-06 19:00:00,34.68000030517578,0.0,41.92399978637695,0.0,-6.557000160217285,0.0,25.47900009155273 -11852,2017-11-06 20:00:00,35.85300064086914,0.0,42.165000915527344,0.0,-6.396999835968018,-1.406999945640564,23.72100067138672 -11853,2017-11-06 21:00:00,34.512001037597656,0.0,42.91600036621094,1.6349999904632568,-7.686999797821045,-1.2690000534057615,22.621999740600582 -11854,2017-11-06 22:00:00,37.10900115966797,0.0,44.73899841308594,2.868000030517578,-7.6020002365112305,-1.2580000162124634,21.96299934387207 -11855,2017-11-06 23:00:00,35.014999389648445,0.0,42.165000915527344,2.5199999809265137,-6.439000129699707,-1.2899999618530271,21.96299934387207 -11856,2017-11-07 00:00:00,33.84199905395508,0.0,39.94100189208984,2.0369999408721924,-6.269000053405763,0.0,21.52300071716309 -11857,2017-11-07 01:00:00,31.74799919128418,0.0,40.31600189208984,2.5729999542236333,-8.668000221252441,-1.5570000410079956,21.52300071716309 -11858,2017-11-07 02:00:00,31.413000106811523,0.0,39.94100189208984,2.4130001068115234,-8.411999702453612,-1.7059999704360962,21.083999633789062 -11859,2017-11-07 03:00:00,30.1560001373291,0.0,39.61899948120117,2.2249999046325684,-9.819000244140623,-1.7059999704360962,20.645000457763672 -11860,2017-11-07 04:00:00,27.97900009155273,0.0,36.9379997253418,1.9029999971389768,-8.795999526977539,-2.2179999351501465,20.20499992370605 -11861,2017-11-07 05:00:00,31.32900047302246,0.0,39.80699920654297,1.9570000171661377,-8.784999847412111,-2.2179999351501465,19.766000747680664 -11862,2017-11-07 06:00:00,30.65900039672852,0.0,40.34299850463867,1.9570000171661377,-8.902000427246094,-1.812000036239624,19.326000213623047 -11863,2017-11-07 07:00:00,30.65900039672852,0.0,39.887001037597656,0.0,-8.880999565124512,-1.812000036239624,19.10650062561035 -11864,2017-11-07 08:00:00,25.548999786376957,0.0,34.41899871826172,0.0,-8.880999565124512,-1.812000036239624,19.10650062561035 -11865,2017-11-07 09:00:00,34.847000122070305,0.0,43.935001373291016,1.7419999837875366,-8.902000427246094,-1.812000036239624,20.864500045776367 -11866,2017-11-07 10:00:00,30.57500076293945,0.0,39.53799819946289,0.0,-8.923999786376953,-1.5349999666213991,22.621999740600582 -11867,2017-11-07 11:00:00,31.74799919128418,0.0,40.58399963378906,0.0,-9.052000045776367,-1.4179999828338623,23.500999450683597 -11868,2017-11-07 12:00:00,32.417999267578125,0.0,41.46799850463867,0.0,-9.052000045776367,-2.697000026702881,24.60000038146973 -11869,2017-11-07 13:00:00,33.42300033569336,0.0,42.75500106811523,1.7960000038146973,-9.072999954223633,-2.697000026702881,25.47900009155273 -11870,2017-11-07 14:00:00,33.42300033569336,0.0,42.75500106811523,1.850000023841858,-8.859999656677246,-2.697000026702881,26.35700035095215 -11871,2017-11-07 15:00:00,35.0989990234375,0.0,42.43399810791016,2.0639998912811284,-7.570000171661378,-2.697000026702881,27.45599937438965 -11872,2017-11-07 16:00:00,30.32399940490723,0.0,39.00199890136719,0.0,-8.784999847412111,-2.611999988555908,28.11549949645996 -11873,2017-11-07 17:00:00,36.77399826049805,0.0,43.88100051879883,0.0,-7.538000106811522,-2.611999988555908,27.67600059509277 -11874,2017-11-07 18:00:00,37.86299896240234,0.0,43.29100036621094,0.0,-5.10699987411499,-1.2690000534057615,26.35700035095215 -11875,2017-11-07 19:00:00,32.501998901367195,0.0,40.63800048828125,0.0,-7.270999908447266,-1.3009999990463257,25.47900009155273 -11876,2017-11-07 20:00:00,36.858001708984375,0.0,45.24800109863281,2.5199999809265137,-8.710000038146973,-1.2899999618530271,24.60000038146973 -11877,2017-11-07 21:00:00,35.85300064086914,0.0,45.16799926757813,2.868000030517578,-8.699999809265138,-1.63100004196167,24.15999984741211 -11878,2017-11-07 22:00:00,37.10900115966797,0.0,44.87300109863281,3.3510000705718994,-7.484000205993652,-1.63100004196167,23.2810001373291 -11879,2017-11-07 23:00:00,31.832000732421875,0.0,40.07500076293945,0.0,-8.699999809265138,-1.4179999828338623,22.84199905395508 -11880,2017-11-08 00:00:00,31.99900054931641,0.0,40.93199920654297,3.0290000438690186,-8.486000061035156,-1.4179999828338623,22.621999740600582 -11881,2017-11-08 01:00:00,27.392000198364247,0.0,37.20600128173828,0.0,-9.755000114440918,-1.5889999866485596,22.402000427246094 -11882,2017-11-08 02:00:00,28.481000900268555,0.0,38.59999847412109,2.9219999313354488,-9.713000297546388,-2.8469998836517334,21.96299934387207 -11883,2017-11-08 03:00:00,23.70599937438965,0.0,33.21200180053711,0.0,-8.741999626159668,-1.4709999561309814,21.74300003051757 -11884,2017-11-08 04:00:00,28.39699935913086,0.0,37.42100143432617,2.5199999809265137,-8.369000434875487,-1.4709999561309814,21.30349922180176 -11885,2017-11-08 05:00:00,32.417999267578125,0.0,40.42300033569336,2.0639998912811284,-8.295000076293945,-2.687000036239624,20.645000457763672 -11886,2017-11-08 06:00:00,26.2189998626709,0.0,34.49900054931641,0.0,-7.879000186920166,-1.4390000104904177,20.20499992370605 -11887,2017-11-08 07:00:00,35.26599884033203,0.0,42.72800064086914,2.0639998912811284,-8.060000419616701,-1.4390000104904177,19.54599952697754 -11888,2017-11-08 08:00:00,27.392000198364247,0.0,36.21500015258789,0.0,-8.027999877929688,0.0,19.54599952697754 -11889,2017-11-08 09:00:00,31.32900047302246,0.0,39.86000061035156,0.0,-8.027999877929688,-1.63100004196167,21.74300003051757 -11890,2017-11-08 10:00:00,26.80599975585937,0.0,36.3489990234375,0.0,-9.201000213623049,-1.6100000143051147,24.59950065612793 -11891,2017-11-08 11:00:00,32.75299835205078,0.0,42.94300079345703,1.3400000333786009,-10.479999542236328,-1.6100000143051147,27.89550018310547 -11892,2017-11-08 12:00:00,31.16200065612793,0.0,41.44200134277344,0.0,-9.553000450134276,-1.621000051498413,30.09250068664551 -11893,2017-11-08 13:00:00,29.15099906921387,0.0,38.680999755859375,0.0,-9.574000358581545,-1.621000051498413,32.949501037597656 -11894,2017-11-08 14:00:00,30.40800094604492,0.0,40.52999877929688,2.0639998912811284,-9.690999984741213,-1.63100004196167,34.48699951171875 -11895,2017-11-08 15:00:00,33.42300033569336,0.0,42.54100036621094,2.680999994277954,-8.359000205993652,-1.2790000438690186,34.267501831054695 -11896,2017-11-08 16:00:00,31.413000106811523,0.0,41.06600189208984,1.7419999837875366,-9.574000358581545,-1.2790000438690186,32.949501037597656 -11897,2017-11-08 17:00:00,35.014999389648445,0.0,41.87099838256836,0.0,-6.9619998931884775,-1.812000036239624,31.410999298095703 -11898,2017-11-08 18:00:00,37.36100006103516,0.0,43.29100036621094,1.5549999475479126,-6.589000225067139,-1.812000036239624,29.43400001525879 -11899,2017-11-08 19:00:00,35.93600082397461,0.0,43.61299896240234,1.9570000171661377,-7.665999889373777,-1.4500000476837158,27.89550018310547 -11900,2017-11-08 20:00:00,33.34000015258789,0.0,40.63800048828125,0.0,-6.48199987411499,0.0,26.79700088500977 -11901,2017-11-08 21:00:00,37.36100006103516,4.355999946594238,45.91799926757813,4.2890000343322745,-9.020000457763672,-1.22599995136261,25.47900009155273 -11902,2017-11-08 22:00:00,34.59600067138672,0.0,42.27299880981445,2.5999999046325684,-7.824999809265138,0.0,24.819499969482425 -11903,2017-11-08 23:00:00,34.17699813842773,0.0,41.49499893188477,2.118000030517578,-7.888999938964844,-1.5889999866485596,23.94050025939941 -11904,2017-11-09 00:00:00,29.15099906921387,0.0,36.9379997253418,0.0,-7.888999938964844,-1.5570000410079956,23.500999450683597 -11905,2017-11-09 01:00:00,30.32399940490723,0.0,38.65399932861328,1.4210000038146973,-7.888999938964844,-1.715999960899353,23.06150054931641 -11906,2017-11-09 02:00:00,28.145999908447266,0.0,36.64300155639648,1.7419999837875366,-7.985000133514402,-1.715999960899353,22.1825008392334 -11907,2017-11-09 03:00:00,29.23500061035156,0.0,38.73400115966797,1.9029999971389768,-8.262999534606934,-1.6529999971389768,21.30349922180176 -11908,2017-11-09 04:00:00,28.229999542236328,0.0,36.29499816894531,0.0,-8.251999855041504,-1.6529999971389768,20.20499992370605 -11909,2017-11-09 05:00:00,31.2450008392334,0.0,38.94900131225586,1.6890000104904177,-7.323999881744385,-1.6529999971389768,19.10650062561035 -11910,2017-11-09 06:00:00,32.417999267578125,0.0,40.69100189208984,1.7690000534057615,-7.323999881744385,-1.3009999990463257,18.227500915527344 -11911,2017-11-09 07:00:00,34.68000030517578,0.0,41.81700134277344,2.2249999046325684,-6.172999858856201,-1.3969999551773071,17.788000106811523 -11912,2017-11-09 08:00:00,30.492000579833984,0.0,39.86000061035156,0.0,-9.317999839782717,-1.3329999446868896,18.886499404907227 -11913,2017-11-09 09:00:00,33.25600051879883,0.0,44.14899826049805,2.733999967575073,-10.67199993133545,-2.5480000972747803,22.1825008392334 -11914,2017-11-09 10:00:00,28.481000900268555,0.0,39.13600158691406,0.0,-10.640000343322754,-2.5480000972747803,24.819499969482425 -11915,2017-11-09 11:00:00,30.743000030517567,0.0,40.23500061035156,0.0,-9.29699993133545,-2.5480000972747803,27.45599937438965 -11916,2017-11-09 12:00:00,27.392000198364247,0.0,38.59999847412109,0.0,-10.55500030517578,-2.1640000343322754,28.99399948120117 -11917,2017-11-09 13:00:00,32.250999450683594,0.0,41.81700134277344,2.009999990463257,-9.093999862670898,-2.2390000820159908,30.75200080871582 -11918,2017-11-09 14:00:00,30.743000030517567,0.0,40.34299850463867,1.850000023841858,-8.998000144958496,-2.2390000820159908,32.5099983215332 -11919,2017-11-09 15:00:00,27.559999465942383,0.0,36.777000427246094,1.3400000333786009,-8.97700023651123,-2.2390000820159908,32.949501037597656 -11920,2017-11-09 16:00:00,24.87899971008301,0.0,35.089000701904304,0.0,-10.031999588012695,-2.2390000820159908,32.070499420166016 -11921,2017-11-09 17:00:00,25.214000701904297,0.0,34.23099899291992,0.0,-8.732000350952147,-1.866000056266785,30.09250068664551 -11922,2017-11-09 18:00:00,26.386999130249023,0.0,34.79399871826172,-1.5279999971389768,-8.805999755859375,-1.866000056266785,28.114999771118164 -11923,2017-11-09 19:00:00,29.82099914550781,0.0,38.06399917602539,0.0,-8.187999725341799,-1.866000056266785,26.57699966430664 -11924,2017-11-09 20:00:00,32.417999267578125,0.0,40.31600189208984,0.0,-7.985000133514402,-1.866000056266785,25.69849967956543 -11925,2017-11-09 21:00:00,36.35499954223633,0.0,45.03400039672852,3.135999917984009,-9.168999671936035,-1.22599995136261,25.03899955749512 -11926,2017-11-09 22:00:00,36.35499954223633,0.0,45.14099884033203,2.760999917984009,-8.444000244140625,-2.45199990272522,24.60000038146973 -11927,2017-11-09 23:00:00,32.250999450683594,0.0,41.44200134277344,2.7070000171661377,-8.699999809265138,-2.45199990272522,24.15999984741211 -11928,2017-11-10 00:00:00,31.74799919128418,0.0,40.18199920654297,1.5279999971389768,-8.848999977111816,-2.45199990272522,24.15999984741211 -11929,2017-11-10 01:00:00,27.392000198364247,0.0,36.696998596191406,0.0,-8.97700023651123,-2.45199990272522,23.94050025939941 -11930,2017-11-10 02:00:00,29.738000869750977,0.0,40.15499877929688,1.6080000400543213,-10.19200038909912,-2.45199990272522,23.500999450683597 -11931,2017-11-10 03:00:00,31.74799919128418,0.0,39.055999755859375,1.312999963760376,-6.236999988555907,-1.3650000095367432,22.84149932861328 -11932,2017-11-10 04:00:00,31.413000106811523,0.0,39.45800018310547,1.7419999837875366,-7.591000080108643,-1.5889999866485596,21.96299934387207 -11933,2017-11-10 05:00:00,30.1560001373291,0.0,37.0989990234375,1.5279999971389768,-6.781000137329103,-1.4709999561309814,21.083999633789062 -11934,2017-11-10 06:00:00,31.496999740600582,0.0,40.04800033569336,2.5729999542236333,-8.795999526977539,-1.493000030517578,20.424999237060547 -11935,2017-11-10 07:00:00,33.50699996948242,0.0,39.99399948120117,0.0,-6.289999961853027,-1.3650000095367432,19.98550033569336 -11936,2017-11-10 08:00:00,33.50699996948242,0.0,41.49499893188477,1.4479999542236328,-8.390999794006348,-1.2369999885559082,20.424999237060547 -11937,2017-11-10 09:00:00,33.50699996948242,0.0,43.29100036621094,2.252000093460083,-9.64900016784668,-1.2369999885559082,21.74300003051757 -11938,2017-11-10 10:00:00,29.738000869750977,0.0,39.055999755859375,0.0,-9.637999534606934,-1.2369999885559082,23.06150054931641 -11939,2017-11-10 11:00:00,31.496999740600582,0.0,39.75299835205078,0.0,-8.315999984741211,-2.4730000495910645,25.697999954223643 -11940,2017-11-10 12:00:00,31.832000732421875,0.0,40.10100173950195,0.0,-7.953000068664551,-2.111000061035156,28.334999084472656 -11941,2017-11-10 13:00:00,31.32900047302246,0.0,42.43399810791016,1.9839999675750728,-10.437000274658203,-1.7480000257492063,29.214000701904297 -11942,2017-11-10 14:00:00,31.66399955749512,0.0,40.63800048828125,1.850000023841858,-8.97700023651123,-1.7480000257492063,29.43350028991699 -11943,2017-11-10 15:00:00,34.763999938964844,0.0,43.80099868774414,2.8410000801086426,-9.12600040435791,-1.7269999980926514,28.77449989318848 -11944,2017-11-10 16:00:00,35.93600082397461,0.0,43.66699981689453,2.815000057220459,-7.85699987411499,-1.6419999599456787,27.89550018310547 -11945,2017-11-10 17:00:00,34.345001220703125,0.0,41.97800064086914,0.0,-7.85699987411499,-1.7480000257492063,26.79700088500977 -11946,2017-11-10 18:00:00,36.52299880981445,0.0,45.14099884033203,2.1440000534057617,-7.910999774932861,-1.7480000257492063,25.69849967956543 -11947,2017-11-10 19:00:00,33.42300033569336,0.0,41.68299865722656,2.2249999046325684,-8.763999938964844,-1.3539999723434448,25.03899955749512 -11948,2017-11-10 20:00:00,38.28200149536133,0.0,44.685001373291016,3.3510000705718994,-6.386000156402588,-1.2150000333786009,24.60000038146973 -11949,2017-11-10 21:00:00,38.70100021362305,4.188000202178955,45.999000549316406,4.477000236511231,-7.803999900817871,-1.2899999618530271,24.3799991607666 -11950,2017-11-10 22:00:00,38.70100021362305,0.0,45.81100082397461,3.7260000705718994,-7.932000160217285,-1.3860000371932983,24.15999984741211 -11951,2017-11-10 23:00:00,36.27199935913086,0.0,44.06900024414063,3.2969999313354488,-7.65500020980835,-1.3329999446868896,23.72100067138672 -11952,2017-11-11 00:00:00,35.26599884033203,0.0,42.72800064086914,2.9489998817443848,-7.25,-1.2150000333786009,22.84199905395508 -11953,2017-11-11 01:00:00,33.757999420166016,0.0,42.48699951171875,3.3239998817443848,-8.593000411987305,-1.2150000333786009,22.1825008392334 -11954,2017-11-11 02:00:00,32.16699981689453,0.0,42.00500106811523,3.4579999446868896,-9.734000205993652,-1.5460000038146973,21.083999633789062 -11955,2017-11-11 03:00:00,26.386999130249023,0.0,34.06999969482422,0.0,-8.166999816894531,-1.524999976158142,20.645000457763672 -11956,2017-11-11 04:00:00,30.239999771118164,0.0,40.10100173950195,2.7880001068115234,-9.765999794006348,-2.8250000476837163,19.766000747680664 -11957,2017-11-11 05:00:00,0.0,0.0,40.93199920654297,3.4579999446868896,-8.496999740600586,-2.8250000476837163,19.54599952697754 -11958,2017-11-11 06:00:00,33.42300033569336,0.0,41.95100021362305,2.6540000438690186,-8.12399959564209,-1.2369999885559082,19.326000213623047 -11959,2017-11-11 07:00:00,35.014999389648445,0.0,42.00500106811523,2.680999994277954,-6.749000072479247,-1.343000054359436,18.886999130249023 -11960,2017-11-11 08:00:00,27.64299964904785,0.0,37.233001708984375,0.0,-9.413999557495115,-1.684000015258789,18.886999130249023 -11961,2017-11-11 09:00:00,34.0099983215332,0.0,41.89699935913086,2.1440000534057617,-8.071000099182129,-1.684000015258789,20.864500045776367 -11962,2017-11-11 10:00:00,36.1879997253418,0.0,45.43600082397461,2.815000057220459,-9.32900047302246,-1.99399995803833,23.06150054931641 -11963,2017-11-11 11:00:00,37.36100006103516,0.0,45.00699996948242,2.546999931335449,-8.177000045776367,-1.7910000085830688,25.69849967956543 -11964,2017-11-11 12:00:00,32.16699981689453,0.0,42.11199951171875,0.0,-9.413999557495115,-1.7910000085830688,27.236499786376957 -11965,2017-11-11 13:00:00,26.13599967956543,0.0,35.946998596191406,0.0,-9.350000381469728,-1.7910000085830688,29.214000701904297 -11966,2017-11-11 14:00:00,32.08300018310547,0.0,41.81700134277344,2.6540000438690186,-9.381999969482422,-1.9720000028610232,28.77449989318848 -11967,2017-11-11 15:00:00,32.92100143432617,0.0,42.24599838256836,2.3320000171661377,-9.381999969482422,-1.9720000028610232,27.01650047302246 -11968,2017-11-11 16:00:00,34.93099975585937,0.0,43.90800094604492,2.385999917984009,-8.081000328063965,-1.9720000028610232,26.13750076293945 -11969,2017-11-11 17:00:00,34.09400177001953,0.0,43.479000091552734,1.6080000400543213,-9.147000312805176,-1.6419999599456787,25.25900077819824 -11970,2017-11-11 18:00:00,36.94200134277344,0.0,44.87300109863281,1.9570000171661377,-7.824999809265138,-1.2690000534057615,24.60000038146973 -11971,2017-11-11 19:00:00,35.60100173950195,0.0,43.53300094604492,1.715999960899353,-7.494999885559082,-1.22599995136261,23.94050025939941 -11972,2017-11-11 20:00:00,33.50699996948242,0.0,42.32600021362305,2.0639998912811284,-7.708000183105469,-1.246999979019165,23.2810001373291 -11973,2017-11-11 21:00:00,39.0359992980957,0.0,46.48099899291992,3.5380001068115234,-7.815000057220459,0.0,22.84199905395508 -11974,2017-11-11 22:00:00,37.277000427246094,0.0,45.75699996948242,3.9140000343322754,-7.815000057220459,-1.246999979019165,22.402000427246094 -11975,2017-11-11 23:00:00,35.26599884033203,0.0,42.56800079345703,2.6540000438690186,-7.633999824523926,-1.812000036239624,22.1825008392334 -11976,2017-11-12 00:00:00,32.669998168945305,0.0,39.86000061035156,2.3320000171661377,-7.538000106811522,-1.812000036239624,21.96299934387207 -11977,2017-11-12 01:00:00,27.895000457763672,0.0,37.233001708984375,2.0910000801086426,-8.859999656677246,-1.812000036239624,21.52300071716309 -11978,2017-11-12 02:00:00,31.077999114990234,0.0,39.887001037597656,2.680999994277954,-8.848999977111816,-1.5779999494552612,21.52300071716309 -11979,2017-11-12 03:00:00,30.1560001373291,0.0,38.62699890136719,3.565000057220459,-8.848999977111816,-1.940000057220459,21.30349922180176 -11980,2017-11-12 04:00:00,30.239999771118164,0.0,39.16299819946289,2.5999999046325684,-9.041000366210938,-3.1770000457763667,21.083999633789062 -11981,2017-11-12 05:00:00,32.333999633789055,0.0,40.77199935913086,3.378000020980835,-8.892000198364258,-1.7059999704360962,20.645000457763672 -11982,2017-11-12 06:00:00,31.32900047302246,0.0,40.50299835205078,2.815000057220459,-8.12399959564209,-1.9299999475479128,20.424999237060547 -11983,2017-11-12 07:00:00,31.58099937438965,0.0,39.72600173950195,1.7419999837875366,-7.953000068664551,-1.843999981880188,19.766000747680664 -11984,2017-11-12 08:00:00,29.15099906921387,0.0,38.01100158691406,0.0,-9.104999542236328,-1.843999981880188,19.98550033569336 -11985,2017-11-12 09:00:00,32.16699981689453,0.0,42.32600021362305,2.4660000801086426,-9.104999542236328,-1.843999981880188,21.30349922180176 -11986,2017-11-12 10:00:00,34.512001037597656,0.0,44.41699981689453,2.680999994277954,-10.331000328063965,-2.1640000343322754,23.06150054931641 -11987,2017-11-12 11:00:00,35.182998657226555,0.0,43.82699966430664,1.6080000400543213,-8.081000328063965,-1.3009999990463257,25.25900077819824 -11988,2017-11-12 12:00:00,31.74799919128418,0.0,41.17399978637695,0.0,-9.29699993133545,-2.5160000324249268,26.796499252319336 -11989,2017-11-12 13:00:00,31.916000366210927,0.0,40.31600189208984,0.0,-8.071000099182129,-1.3650000095367432,28.334999084472656 -11990,2017-11-12 14:00:00,33.17200088500977,0.0,42.11199951171875,2.546999931335449,-8.380000114440918,-2.5269999504089355,28.55500030517578 -11991,2017-11-12 15:00:00,33.42300033569336,0.0,42.00500106811523,2.5199999809265137,-8.411999702453612,-1.6100000143051147,27.01650047302246 -11992,2017-11-12 16:00:00,35.014999389648445,0.0,42.62099838256836,1.9570000171661377,-7.355999946594237,-1.6100000143051147,26.13750076293945 -11993,2017-11-12 17:00:00,35.85300064086914,0.0,43.18399810791016,1.4210000038146973,-7.591000080108643,-1.7059999704360962,25.69849967956543 -11994,2017-11-12 18:00:00,34.429000854492195,0.0,42.78200149536133,0.0,-7.644000053405763,-1.406999945640564,25.47900009155273 -11995,2017-11-12 19:00:00,34.93099975585937,0.0,42.11199951171875,1.7690000534057615,-6.88700008392334,-1.3329999446868896,25.03899955749512 -11996,2017-11-12 20:00:00,38.11399841308594,0.0,44.20299911499024,1.8760000467300413,-5.938000202178955,0.0,25.03899955749512 -11997,2017-11-12 21:00:00,37.86299896240234,0.0,45.32899856567383,2.733999967575073,-7.824999809265138,-1.3220000267028809,24.60000038146973 -11998,2017-11-12 22:00:00,35.0989990234375,0.0,42.64799880981445,2.493000030517578,-7.761000156402588,-1.2580000162124634,24.15999984741211 -11999,2017-11-12 23:00:00,34.345001220703125,0.0,41.44200134277344,2.6540000438690186,-6.876999855041504,-1.5460000038146973,24.15999984741211 -12000,2017-11-13 00:00:00,30.99399948120117,0.0,38.70800018310547,1.8229999542236328,-6.855000019073486,-1.7380000352859497,23.500999450683597 -12001,2017-11-13 01:00:00,31.32900047302246,0.0,39.72600173950195,2.627000093460083,-7.974999904632567,-1.7380000352859497,23.2810001373291 -12002,2017-11-13 02:00:00,30.65900039672852,0.0,39.80699920654297,2.4130001068115234,-7.995999813079834,-1.7380000352859497,23.2810001373291 -12003,2017-11-13 03:00:00,30.57500076293945,0.0,39.32400131225586,1.8229999542236328,-7.824999809265138,-1.524999976158142,23.06150054931641 -12004,2017-11-13 04:00:00,32.417999267578125,0.0,40.34299850463867,3.0559999942779537,-8.006999969482424,-2.740000009536743,22.84199905395508 -12005,2017-11-13 05:00:00,32.501998901367195,0.0,40.90599822998047,2.5729999542236333,-9.253999710083008,-1.866000056266785,22.84199905395508 -12006,2017-11-13 06:00:00,27.81100082397461,0.0,37.58200073242188,1.4210000038146973,-8.508000373840332,-1.5889999866485596,22.402000427246094 -12007,2017-11-13 07:00:00,31.413000106811523,0.0,40.15499877929688,0.0,-8.369000434875487,-1.5889999866485596,22.402000427246094 -12008,2017-11-13 08:00:00,31.077999114990234,0.0,39.02899932861328,0.0,-8.390999794006348,-1.3109999895095823,22.402000427246094 -12009,2017-11-13 09:00:00,32.501998901367195,0.0,41.790000915527344,2.385999917984009,-9.765999794006348,-1.3969999551773071,22.84199905395508 -12010,2017-11-13 10:00:00,30.82699966430664,0.0,39.56499862670898,0.0,-8.82800006866455,-1.9079999923706048,23.72100067138672 -12011,2017-11-13 11:00:00,34.429000854492195,0.0,43.13000106811523,2.4660000801086426,-8.892000198364258,-1.9079999923706048,24.15999984741211 -12012,2017-11-13 12:00:00,32.250999450683594,0.0,42.03099822998047,1.5279999971389768,-8.892000198364258,-1.950999975204468,24.819499969482425 -12013,2017-11-13 13:00:00,32.75299835205078,0.0,42.27299880981445,1.9029999971389768,-9.052000045776367,-2.1640000343322754,25.69849967956543 -12014,2017-11-13 14:00:00,33.84199905395508,0.0,43.04999923706055,3.135999917984009,-9.147000312805176,-2.1640000343322754,25.69849967956543 -12015,2017-11-13 15:00:00,33.005001068115234,0.0,42.83599853515625,2.8949999809265137,-10.458999633789062,-2.1640000343322754,25.47900009155273 -12016,2017-11-13 16:00:00,32.92100143432617,0.0,42.59400177001953,2.1440000534057617,-9.265000343322754,-2.1640000343322754,24.819499969482425 -12017,2017-11-13 17:00:00,30.65900039672852,0.0,38.78799819946289,0.0,-8.934000015258789,-2.1640000343322754,23.2810001373291 -12018,2017-11-13 18:00:00,35.85300064086914,0.0,43.479000091552734,2.8410000801086426,-7.611999988555907,-1.6100000143051147,23.2810001373291 -12019,2017-11-13 19:00:00,33.590999603271484,0.0,42.35300064086914,1.9299999475479128,-8.848999977111816,-1.3860000371932983,23.06150054931641 -12020,2017-11-13 20:00:00,35.349998474121094,0.0,42.459999084472656,1.715999960899353,-7.633999824523926,-1.3860000371932983,22.84199905395508 -12021,2017-11-13 21:00:00,35.93600082397461,0.0,45.16799926757813,3.99399995803833,-8.848999977111816,-1.3860000371932983,22.84199905395508 -12022,2017-11-13 22:00:00,36.52299880981445,0.0,44.900001525878906,3.4579999446868896,-8.97700023651123,-1.5670000314712524,22.84199905395508 -12023,2017-11-13 23:00:00,33.757999420166016,0.0,43.45199966430664,4.26200008392334,-10.20300006866455,-1.7799999713897705,22.621999740600582 -12024,2017-11-14 00:00:00,31.832000732421875,0.0,40.69100189208984,2.4660000801086426,-8.880999565124512,-1.7799999713897705,22.621999740600582 -12025,2017-11-14 01:00:00,30.743000030517567,0.0,40.04800033569336,2.815000057220459,-8.784999847412111,-3.0280001163482666,22.402000427246094 -12026,2017-11-14 02:00:00,29.738000869750977,0.0,39.64599990844727,2.5199999809265137,-9.786999702453612,-3.0280001163482666,22.402000427246094 -12027,2017-11-14 03:00:00,29.82099914550781,0.0,39.02899932861328,2.5999999046325684,-9.819000244140623,-1.6740000247955322,21.96299934387207 -12028,2017-11-14 04:00:00,28.983999252319336,0.0,38.01100158691406,2.493000030517578,-8.741999626159668,-1.919000029563904,21.96299934387207 -12029,2017-11-14 05:00:00,30.82699966430664,0.0,40.47700119018555,3.6989998817443848,-8.720999717712402,-1.5570000410079956,21.74300003051757 -12030,2017-11-14 06:00:00,32.83700180053711,0.0,42.78200149536133,3.1630001068115234,-9.253999710083008,-2.8250000476837163,21.52300071716309 -12031,2017-11-14 07:00:00,33.17200088500977,0.0,41.25400161743164,3.0290000438690186,-8.017000198364258,-2.8250000476837163,21.52300071716309 -12032,2017-11-14 08:00:00,31.496999740600582,0.0,39.94100189208984,0.0,-8.295000076293945,-2.8250000476837163,21.52300071716309 -12033,2017-11-14 09:00:00,32.92100143432617,0.0,41.54899978637695,0.0,-8.145000457763674,-1.5670000314712524,23.06150054931641 -12034,2017-11-14 10:00:00,22.78499984741211,-4.2719998359680185,31.76499938964844,-2.627000093460083,-8.539999961853027,-1.5670000314712524,24.3799991607666 -12035,2017-11-14 11:00:00,23.37100028991699,0.0,32.00600051879883,-2.118000030517578,-8.454000473022461,-1.5670000314712524,25.25900077819824 -12036,2017-11-14 12:00:00,25.214000701904297,0.0,33.963001251220696,0.0,-8.411999702453612,-2.8570001125335693,25.69849967956543 -12037,2017-11-14 13:00:00,25.29800033569336,0.0,33.47999954223633,0.0,-8.380000114440918,-2.8570001125335693,26.13750076293945 -12038,2017-11-14 14:00:00,27.05699920654297,0.0,36.617000579833984,0.0,-8.848999977111816,-1.99399995803833,26.57699966430664 -12039,2017-11-14 15:00:00,23.28700065612793,-4.105000019073486,30.666000366210927,-2.5999999046325684,-7.494999885559082,-1.99399995803833,27.01650047302246 -12040,2017-11-14 16:00:00,22.114999771118164,0.0,31.30900001525879,-1.7960000038146973,-8.97700023651123,-1.99399995803833,26.35700035095215 -12041,2017-11-14 17:00:00,30.239999771118164,0.0,38.27899932861328,0.0,-7.942999839782715,-1.99399995803833,25.47900009155273 -12042,2017-11-14 18:00:00,33.674999237060554,0.0,40.87900161743164,1.5549999475479126,-7.932000160217285,-1.99399995803833,24.60000038146973 -12043,2017-11-14 19:00:00,27.47599983215332,0.0,35.75899887084961,0.0,-7.7189998626708975,-1.99399995803833,23.72100067138672 -12044,2017-11-14 20:00:00,32.75299835205078,0.0,40.47700119018555,1.7419999837875366,-7.644000053405763,-1.99399995803833,23.2810001373291 -12045,2017-11-14 21:00:00,39.95700073242188,4.2719998359680185,46.2130012512207,4.315999984741212,-6.428999900817871,-1.7910000085830688,22.84199905395508 -12046,2017-11-14 22:00:00,34.261001586914055,0.0,41.52199935913086,3.135999917984009,-7.559000015258789,-1.4609999656677246,22.402000427246094 -12047,2017-11-14 23:00:00,31.58099937438965,0.0,40.28900146484375,3.0559999942779537,-7.367000102996826,-1.4609999656677246,22.1825008392334 -12048,2017-11-15 00:00:00,30.82699966430664,0.0,38.94900131225586,2.5729999542236333,-7.623000144958496,-1.4609999656677246,21.96299934387207 -12049,2017-11-15 01:00:00,29.90500068664551,0.0,38.11800003051758,2.1440000534057617,-7.85699987411499,-1.7910000085830688,21.74300003051757 -12050,2017-11-15 02:00:00,27.64299964904785,0.0,35.35699844360352,1.715999960899353,-8.048999786376951,-2.483999967575073,21.74300003051757 -12051,2017-11-15 03:00:00,29.98900032043457,0.0,37.6619987487793,2.8949999809265137,-8.006999969482424,-2.483999967575073,21.52300071716309 -12052,2017-11-15 04:00:00,29.48600006103516,0.0,38.33200073242188,2.7070000171661377,-8.006999969482424,-2.483999967575073,20.864500045776367 -12053,2017-11-15 05:00:00,27.141000747680664,0.0,34.847000122070305,0.0,-8.017000198364258,-2.483999967575073,19.98550033569336 -12054,2017-11-15 06:00:00,31.496999740600582,0.0,39.67300033569336,3.002000093460083,-8.017000198364258,-1.99399995803833,19.326000213623047 -12055,2017-11-15 07:00:00,33.17200088500977,0.0,40.63800048828125,2.3050000667572017,-8.017000198364258,-1.99399995803833,18.66699981689453 -12056,2017-11-15 08:00:00,29.90500068664551,0.0,38.49300003051758,1.7690000534057615,-9.317999839782717,-3.2090001106262207,18.66699981689453 -12057,2017-11-15 09:00:00,33.674999237060554,0.0,43.29100036621094,2.5729999542236333,-9.29699993133545,-3.2090001106262207,20.644500732421875 -12058,2017-11-15 10:00:00,29.319000244140625,0.0,38.0369987487793,0.0,-9.402999877929688,-3.2090001106262207,23.2814998626709 -12059,2017-11-15 11:00:00,28.481000900268555,0.0,38.30500030517578,0.0,-9.446000099182127,-3.2090001106262207,25.917999267578125 -12060,2017-11-15 12:00:00,30.32399940490723,0.0,39.61899948120117,0.0,-9.574000358581545,-3.2090001106262207,28.334999084472656 -12061,2017-11-15 13:00:00,30.90999984741211,0.0,41.49499893188477,2.5999999046325684,-10.800000190734863,-2.440999984741211,30.53249931335449 -12062,2017-11-15 14:00:00,30.65900039672852,0.0,41.415000915527344,2.815000057220459,-9.381999969482422,-2.569000005722046,31.850500106811523 -12063,2017-11-15 15:00:00,31.99900054931641,0.0,41.65599822998047,2.7880001068115234,-9.392999649047852,-2.569000005722046,31.850500106811523 -12064,2017-11-15 16:00:00,32.92100143432617,0.0,42.38000106811523,2.868000030517578,-9.243000030517578,-2.569000005722046,30.97150039672852 -12065,2017-11-15 17:00:00,34.261001586914055,0.0,42.62099838256836,2.0910000801086426,-7.815000057220459,-2.569000005722046,29.214000701904297 -12066,2017-11-15 18:00:00,36.27199935913086,0.0,45.59700012207031,2.868000030517578,-8.869999885559082,-3.2730000019073486,26.79700088500977 -12067,2017-11-15 19:00:00,34.847000122070305,0.0,44.28300094604492,2.9749999046325684,-8.869999885559082,-2.131999969482422,25.03899955749512 -12068,2017-11-15 20:00:00,36.60699844360352,0.0,44.25600051879883,2.6540000438690186,-7.494999885559082,-2.5480000972747803,23.500999450683597 -12069,2017-11-15 21:00:00,37.36100006103516,0.0,46.2400016784668,3.243000030517578,-8.720999717712402,-2.5480000972747803,22.402000427246094 -12070,2017-11-15 22:00:00,34.847000122070305,0.0,41.89699935913086,2.9219999313354488,-7.473999977111816,-2.5480000972747803,21.96299934387207 -12071,2017-11-15 23:00:00,29.56999969482422,0.0,37.742000579833984,0.0,-7.921000003814697,-2.5480000972747803,21.74300003051757 -12072,2017-11-16 00:00:00,30.57500076293945,0.0,38.89500045776367,2.815000057220459,-8.092000007629395,-2.5480000972747803,21.30349922180176 -12073,2017-11-16 01:00:00,23.53899955749512,0.0,33.722000122070305,0.0,-10.928000450134276,-1.7910000085830688,21.30349922180176 -12074,2017-11-16 02:00:00,29.15099906921387,0.0,38.41299819946289,3.002000093460083,-9.274999618530272,-2.0150001049041752,20.864500045776367 -12075,2017-11-16 03:00:00,31.077999114990234,0.0,38.86800003051758,2.546999931335449,-7.771999835968018,-1.8869999647140503,20.645000457763672 -12076,2017-11-16 04:00:00,28.39699935913086,0.0,38.573001861572266,3.4579999446868896,-9.350000381469728,-3.16599988937378,20.645000457763672 -12077,2017-11-16 05:00:00,27.141000747680664,0.0,36.26800155639648,0.0,-9.29699993133545,-1.9299999475479128,20.645000457763672 -12078,2017-11-16 06:00:00,29.48600006103516,0.0,39.99399948120117,3.135999917984009,-9.317999839782717,-3.16599988937378,20.864500045776367 -12079,2017-11-16 07:00:00,32.92100143432617,0.0,41.28099822998047,2.815000057220459,-8.102999687194824,-2.111000061035156,20.864500045776367 -12080,2017-11-16 08:00:00,25.04700088500977,0.0,35.57099914550781,0.0,-9.510000228881836,-2.111000061035156,21.083999633789062 -12081,2017-11-16 09:00:00,35.182998657226555,0.0,44.12200164794922,3.8059999942779537,-9.28600025177002,-1.9830000400543213,21.74300003051757 -12082,2017-11-16 10:00:00,31.99900054931641,0.0,41.54899978637695,1.312999963760376,-9.33899974822998,-3.1979999542236333,22.1825008392334 -12083,2017-11-16 11:00:00,32.669998168945305,0.0,43.02299880981445,2.118000030517578,-10.66100025177002,-3.1979999542236333,22.621999740600582 -12084,2017-11-16 12:00:00,31.74799919128418,0.0,42.35300064086914,1.4210000038146973,-10.55500030517578,-3.11299991607666,23.06150054931641 -12085,2017-11-16 13:00:00,31.74799919128418,0.0,41.46799850463867,2.546999931335449,-9.317999839782717,-2.4730000495910645,23.06150054931641 -12086,2017-11-16 14:00:00,31.413000106811523,0.0,41.65599822998047,3.51200008392334,-10.491000175476074,-2.4730000495910645,23.2810001373291 -12087,2017-11-16 15:00:00,35.76900100708008,0.0,43.88100051879883,3.8329999446868896,-7.974999904632567,-2.282000064849853,23.500999450683597 -12088,2017-11-16 16:00:00,35.85300064086914,0.0,44.310001373291016,3.243000030517578,-7.964000225067139,-2.0469999313354488,23.500999450683597 -12089,2017-11-16 17:00:00,37.025001525878906,0.0,45.59700012207031,2.760999917984009,-8.166999816894531,-2.111000061035156,23.500999450683597 -12090,2017-11-16 18:00:00,38.36600112915039,0.0,45.56999969482422,3.135999917984009,-8.166999816894531,-1.9830000400543213,23.500999450683597 -12091,2017-11-16 19:00:00,35.182998657226555,0.0,42.38000106811523,2.438999891281128,-7.131999969482423,-1.5779999494552612,23.500999450683597 -12092,2017-11-16 20:00:00,33.42300033569336,0.0,40.85200119018555,1.8760000467300413,-6.8979997634887695,-1.5779999494552612,23.2810001373291 -12093,2017-11-16 21:00:00,36.52299880981445,0.0,46.26699829101562,5.065999984741211,-9.626999855041504,-2.45199990272522,23.2810001373291 -12094,2017-11-16 22:00:00,35.26599884033203,0.0,43.61299896240234,4.557000160217285,-8.336999893188478,-2.45199990272522,23.500999450683597 -12095,2017-11-16 23:00:00,31.74799919128418,0.0,40.98600006103516,3.5380001068115234,-9.253999710083008,-2.45199990272522,23.500999450683597 -12096,2017-11-17 00:00:00,29.82099914550781,0.0,39.512001037597656,2.9489998817443848,-10.788999557495115,-2.45199990272522,23.2810001373291 -12097,2017-11-17 01:00:00,27.726999282836918,0.0,37.20600128173828,1.9029999971389768,-9.178999900817873,-1.63100004196167,23.2810001373291 -12098,2017-11-17 02:00:00,30.90999984741211,0.0,39.86000061035156,3.378000020980835,-8.347999572753906,-2.8469998836517334,23.2810001373291 -12099,2017-11-17 03:00:00,26.80599975585937,0.0,35.972999572753906,1.6349999904632568,-8.753000259399414,-2.0580000877380367,23.2810001373291 -12100,2017-11-17 04:00:00,28.229999542236328,0.0,38.14500045776367,2.4660000801086426,-10.0,-2.0999999046325684,23.2810001373291 -12101,2017-11-17 05:00:00,29.48600006103516,0.0,39.80699920654297,3.0559999942779537,-9.114999771118164,-1.866000056266785,23.2810001373291 -12102,2017-11-17 06:00:00,27.559999465942383,0.0,37.71599960327149,1.5279999971389768,-10.298999786376951,-2.026000022888184,23.2810001373291 -12103,2017-11-17 07:00:00,30.40800094604492,0.0,39.40399932861328,1.850000023841858,-9.008999824523926,-2.026000022888184,23.2810001373291 -12104,2017-11-17 08:00:00,26.88999938964844,0.0,36.7509994506836,0.0,-8.913000106811523,-1.6100000143051147,22.84199905395508 -12105,2017-11-17 09:00:00,23.70599937438965,0.0,34.847000122070305,0.0,-10.031999588012695,-2.664999961853028,22.84199905395508 -12106,2017-11-17 10:00:00,33.42300033569336,0.0,43.854000091552734,1.7419999837875366,-10.074999809265137,-2.664999961853028,22.84199905395508 -12107,2017-11-17 11:00:00,32.669998168945305,0.0,44.229000091552734,1.6080000400543213,-10.128000259399414,-2.2709999084472656,21.96299934387207 -12108,2017-11-17 12:00:00,32.16699981689453,0.0,43.104000091552734,0.0,-10.128000259399414,-2.2709999084472656,21.74300003051757 -12109,2017-11-17 13:00:00,29.738000869750977,0.0,40.28900146484375,1.3669999837875366,-10.064000129699709,-2.2709999084472656,21.74300003051757 -12110,2017-11-17 14:00:00,34.17699813842773,0.0,44.36399841308594,2.7880001068115234,-9.946999549865724,-3.549999952316284,21.74300003051757 -12111,2017-11-17 15:00:00,31.832000732421875,0.0,42.99599838256836,2.1710000038146973,-11.204999923706056,-3.549999952316284,22.1825008392334 -12112,2017-11-17 16:00:00,35.43399810791016,0.0,44.73899841308594,2.385999917984009,-9.85099983215332,-3.549999952316284,22.621999740600582 -12113,2017-11-17 17:00:00,39.0359992980957,0.0,47.01699829101562,2.358999967575073,-7.185999870300293,-2.1640000343322754,21.96299934387207 -12114,2017-11-17 18:00:00,39.0359992980957,0.0,45.73099899291992,2.2780001163482666,-6.269000053405763,-2.1640000343322754,21.52300071716309 -12115,2017-11-17 19:00:00,35.85300064086914,0.0,43.02299880981445,1.4210000038146973,-6.578000068664551,-2.1640000343322754,21.52300071716309 -12116,2017-11-17 20:00:00,35.182998657226555,0.0,40.87900161743164,0.0,-6.502999782562256,-2.1640000343322754,22.1825008392334 -12117,2017-11-17 21:00:00,37.77899932861328,0.0,45.22100067138672,2.680999994277954,-7.739999771118164,-2.1640000343322754,22.1825008392334 -12118,2017-11-17 22:00:00,34.261001586914055,0.0,41.84400177001953,2.493000030517578,-7.323999881744385,-2.1640000343322754,20.645000457763672 -12119,2017-11-17 23:00:00,34.68000030517578,0.0,41.709999084472656,2.493000030517578,-7.494999885559082,-2.1640000343322754,18.227500915527344 -12120,2017-11-18 00:00:00,33.92599868774414,0.0,41.09299850463867,1.9299999475479128,-7.335000038146973,-2.1640000343322754,16.68899917602539 -12121,2017-11-18 01:00:00,32.16699981689453,0.0,39.67300033569336,1.7960000038146973,-7.185999870300293,-2.1640000343322754,15.810999870300291 -12122,2017-11-18 02:00:00,30.32399940490723,0.0,38.0369987487793,3.2170000076293945,-7.25,-2.1640000343322754,15.371000289916992 -12123,2017-11-18 03:00:00,29.319000244140625,0.0,37.367000579833984,1.4739999771118164,-8.486000061035156,-2.1640000343322754,14.932000160217283 -12124,2017-11-18 04:00:00,30.99399948120117,0.0,39.11000061035156,2.627000093460083,-7.50600004196167,-3.380000114440918,14.491999626159668 -12125,2017-11-18 05:00:00,31.16200065612793,0.0,38.81499862670898,1.9570000171661377,-7.686999797821045,-3.380000114440918,14.272500038146973 -12126,2017-11-18 06:00:00,32.333999633789055,0.0,39.99399948120117,2.493000030517578,-7.761000156402588,-3.380000114440918,14.272500038146973 -12127,2017-11-18 07:00:00,27.559999465942383,0.0,38.22499847412109,0.0,-10.51200008392334,-3.380000114440918,14.272500038146973 -12128,2017-11-18 08:00:00,29.738000869750977,0.0,39.430999755859375,0.0,-9.595000267028809,-3.380000114440918,14.491999626159668 -12129,2017-11-18 09:00:00,38.44900131225586,0.0,46.428001403808594,3.108999967575073,-8.401000022888184,-3.380000114440918,14.711999893188477 -12130,2017-11-18 10:00:00,37.52799987792969,0.0,48.54499816894531,2.8410000801086426,-9.595000267028809,-3.380000114440918,14.932000160217283 -12131,2017-11-18 11:00:00,37.44400024414063,0.0,47.125,3.2699999809265137,-9.371000289916992,-3.380000114440918,15.810999870300291 -12132,2017-11-18 12:00:00,35.182998657226555,0.0,44.28300094604492,1.312999963760376,-9.392999649047852,-3.380000114440918,16.68899917602539 -12133,2017-11-18 13:00:00,37.10900115966797,0.0,46.66899871826172,2.9219999313354488,-9.371000289916992,-3.380000114440918,17.348499298095707 -12134,2017-11-18 14:00:00,34.512001037597656,0.0,45.03400039672852,2.8410000801086426,-9.371000289916992,-3.380000114440918,17.788000106811523 -12135,2017-11-18 15:00:00,34.68000030517578,0.0,44.12200164794922,2.680999994277954,-9.722999572753906,-2.8250000476837163,17.568000793457028 -12136,2017-11-18 16:00:00,37.19300079345703,0.0,45.94499969482422,2.9749999046325684,-8.604000091552733,-2.8250000476837163,16.68899917602539 -12137,2017-11-18 17:00:00,40.3759994506836,0.0,48.00899887084961,2.493000030517578,-7.4629998207092285,-2.8250000476837163,15.810999870300291 -12138,2017-11-18 18:00:00,41.88399887084961,0.0,48.8129997253418,3.0290000438690186,-7.15399980545044,-2.8250000476837163,15.15149974822998 -12139,2017-11-18 19:00:00,37.86299896240234,0.0,47.3120002746582,2.9489998817443848,-9.33899974822998,-2.931999921798706,14.49250030517578 -12140,2017-11-18 20:00:00,42.55400085449219,0.0,48.571998596191406,3.108999967575073,-6.802000045776367,-1.7059999704360962,13.833000183105469 -12141,2017-11-18 21:00:00,39.0359992980957,0.0,46.48099899291992,2.0910000801086426,-6.813000202178955,-1.2369999885559082,13.173500061035154 -12142,2017-11-18 22:00:00,39.37099838256836,0.0,48.30400085449219,4.26200008392334,-8.027999877929688,-1.246999979019165,12.51449966430664 -12143,2017-11-18 23:00:00,37.44400024414063,0.0,44.92599868774414,3.2170000076293945,-8.145000457763674,-1.843999981880188,12.074999809265137 -12144,2017-11-19 00:00:00,33.42300033569336,0.0,40.61100006103516,1.850000023841858,-8.208999633789062,-1.843999981880188,11.196499824523926 -12145,2017-11-19 01:00:00,33.590999603271484,0.0,41.28099822998047,2.3320000171661377,-8.262999534606934,-1.843999981880188,10.756999969482422 -12146,2017-11-19 02:00:00,34.93099975585937,0.0,42.29899978637695,2.8410000801086426,-7.037000179290772,-1.843999981880188,10.317500114440918 -12147,2017-11-19 03:00:00,33.590999603271484,0.0,41.17399978637695,3.51200008392334,-8.27299976348877,-1.843999981880188,9.658499717712402 -12148,2017-11-19 04:00:00,32.669998168945305,0.0,40.42300033569336,1.9029999971389768,-6.951000213623048,-1.5889999866485596,9.218500137329102 -12149,2017-11-19 05:00:00,31.413000106811523,0.0,38.97600173950195,1.4210000038146973,-7.046999931335449,-1.7480000257492063,8.559499740600586 -12150,2017-11-19 06:00:00,30.90999984741211,0.0,39.64599990844727,0.0,-8.208999633789062,-1.7480000257492063,8.119999885559082 -12151,2017-11-19 07:00:00,32.08300018310547,0.0,40.45000076293945,1.5010000467300415,-8.220000267028809,-1.7480000257492063,8.119999885559082 -12152,2017-11-19 08:00:00,32.333999633789055,0.0,40.58399963378906,0.0,-8.156000137329103,-1.7480000257492063,8.99899959564209 -12153,2017-11-19 09:00:00,38.44900131225586,0.0,46.18600082397461,2.5199999809265137,-7.803999900817871,-1.343000054359436,10.09749984741211 -12154,2017-11-19 10:00:00,39.53799819946289,0.0,47.7140007019043,2.9219999313354488,-7.85699987411499,-2.569000005722046,11.85550022125244 -12155,2017-11-19 11:00:00,35.43399810791016,0.0,43.37200164794922,0.0,-7.85699987411499,-2.569000005722046,14.711999893188477 -12156,2017-11-19 12:00:00,34.93099975585937,0.0,43.61299896240234,0.0,-7.803999900817871,-2.174999952316284,16.469999313354492 -12157,2017-11-19 13:00:00,32.92100143432617,0.0,42.165000915527344,0.0,-9.253999710083008,-2.174999952316284,17.12849998474121 -12158,2017-11-19 14:00:00,40.54399871826172,0.0,44.47100067138672,2.0910000801086426,-4.243000030517578,0.0,18.227500915527344 -12159,2017-11-19 15:00:00,37.277000427246094,0.0,45.59700012207031,1.7960000038146973,-7.964000225067139,-2.483999967575073,18.00749969482422 -12160,2017-11-19 16:00:00,38.70100021362305,0.0,46.4010009765625,2.009999990463257,-6.705999851226808,-2.483999967575073,17.12849998474121 -12161,2017-11-19 17:00:00,43.47600173950195,0.0,48.7599983215332,2.252000093460083,-5.809999942779541,-1.2150000333786009,16.909000396728516 -12162,2017-11-19 18:00:00,40.54399871826172,0.0,45.8650016784668,0.0,-4.882999897003174,0.0,16.469499588012695 -12163,2017-11-19 19:00:00,39.790000915527344,0.0,44.310001373291016,1.9029999971389768,-4.935999870300293,0.0,16.469499588012695 -12164,2017-11-19 20:00:00,36.68999862670898,0.0,43.29100036621094,0.0,-6.322000026702881,-1.3009999990463257,16.25 -12165,2017-11-19 21:00:00,42.72200012207031,4.105000019073486,49.3489990234375,4.3429999351501465,-6.684999942779541,-1.4390000104904177,16.030500411987305 -12166,2017-11-19 22:00:00,40.29199981689453,0.0,46.64199829101562,3.190000057220459,-6.63100004196167,-1.2690000534057615,16.030500411987305 -12167,2017-11-19 23:00:00,36.60699844360352,0.0,43.74700164794922,2.1710000038146973,-6.4070000648498535,-1.2690000534057615,16.030500411987305 -12168,2017-11-20 00:00:00,33.92599868774414,0.0,40.77199935913086,2.118000030517578,-6.546000003814697,-1.2899999618530271,15.371000289916992 -12169,2017-11-20 01:00:00,28.229999542236328,0.0,35.4370002746582,0.0,-7.761000156402588,-1.3220000267028809,14.491999626159668 -12170,2017-11-20 02:00:00,35.43399810791016,0.0,40.85200119018555,2.733999967575073,-5.235000133514403,-1.22599995136261,13.833000183105469 -12171,2017-11-20 03:00:00,30.82699966430664,0.0,38.573001861572266,2.118000030517578,-7.824999809265138,-1.4500000476837158,13.61299991607666 -12172,2017-11-20 04:00:00,33.005001068115234,0.0,41.22700119018555,2.5999999046325684,-8.965999603271484,-1.4709999561309814,13.61299991607666 -12173,2017-11-20 05:00:00,31.916000366210927,0.0,39.18999862670898,1.5549999475479126,-7.131999969482423,-1.4709999561309814,13.833000183105469 -12174,2017-11-20 06:00:00,34.59600067138672,0.0,41.040000915527344,1.850000023841858,-7.099999904632568,-1.4709999561309814,13.833000183105469 -12175,2017-11-20 07:00:00,37.19300079345703,0.0,44.09500122070313,2.4660000801086426,-6.056000232696532,-1.4709999561309814,13.833000183105469 -12176,2017-11-20 08:00:00,32.669998168945305,0.0,40.04800033569336,0.0,-7.15399980545044,-1.246999979019165,13.833000183105469 -12177,2017-11-20 09:00:00,37.86299896240234,0.0,46.31999969482422,3.8329999446868896,-8.369000434875487,-2.505000114440918,15.590999603271484 -12178,2017-11-20 10:00:00,35.26599884033203,0.0,42.94300079345703,0.0,-8.295000076293945,-2.505000114440918,18.44750022888184 -12179,2017-11-20 11:00:00,29.40299987792969,0.0,37.76900100708008,0.0,-8.550000190734862,-2.505000114440918,20.86400032043457 -12180,2017-11-20 12:00:00,37.61199951171875,0.0,45.8650016784668,0.0,-8.550000190734862,-2.505000114440918,20.20549964904785 -12181,2017-11-20 13:00:00,37.77899932861328,0.0,45.75699996948242,1.8760000467300413,-8.550000190734862,-2.505000114440918,19.54599952697754 -12182,2017-11-20 14:00:00,38.36600112915039,0.0,47.25899887084961,2.8410000801086426,-8.998000144958496,-2.505000114440918,19.10650062561035 -12183,2017-11-20 15:00:00,38.86800003051758,0.0,47.1510009765625,2.815000057220459,-7.697999954223633,-2.505000114440918,19.10650062561035 -12184,2017-11-20 16:00:00,38.28200149536133,0.0,45.32899856567383,1.6890000104904177,-7.803999900817871,-2.505000114440918,19.54599952697754 -12185,2017-11-20 17:00:00,40.9630012512207,0.0,47.63399887084961,1.5010000467300415,-6.546000003814697,-2.505000114440918,18.66699981689453 -12186,2017-11-20 18:00:00,45.06700134277344,0.0,50.68999862670898,3.0559999942779537,-5.298999786376953,-1.2369999885559082,17.128999710083008 -12187,2017-11-20 19:00:00,41.2140007019043,0.0,49.05500030517578,1.8760000467300413,-6.769999980926514,-1.2150000333786009,15.810999870300291 -12188,2017-11-20 20:00:00,42.63800048828125,0.0,49.18899917602539,2.358999967575073,-5.491000175476074,-1.4500000476837158,14.711999893188477 -12189,2017-11-20 21:00:00,42.55400085449219,0.0,48.6520004272461,2.358999967575073,-6.109000205993652,-1.3539999723434448,14.053000450134276 -12190,2017-11-20 22:00:00,40.04100036621094,0.0,47.95500183105469,3.2969999313354488,-7.355999946594237,-1.2580000162124634,13.833000183105469 -12191,2017-11-20 23:00:00,39.62200164794922,0.0,45.4630012512207,2.1710000038146973,-5.906000137329103,-1.3009999990463257,13.393500328063965 -12192,2017-11-21 00:00:00,34.261001586914055,0.0,40.90599822998047,0.0,-5.960000038146973,-2.5269999504089355,12.95400047302246 -12193,2017-11-21 01:00:00,31.832000732421875,0.0,40.50299835205078,0.0,-7.921000003814697,-1.2790000438690186,12.51449966430664 -12194,2017-11-21 02:00:00,30.40800094604492,0.0,38.89500045776367,1.3940000534057615,-8.081000328063965,-1.2790000438690186,12.074999809265137 -12195,2017-11-21 03:00:00,29.066999435424805,0.0,37.93000030517578,0.0,-8.092000007629395,-2.5269999504089355,11.416000366210938 -12196,2017-11-21 04:00:00,33.17200088500977,0.0,40.66400146484375,1.6619999408721924,-6.7170000076293945,-1.962000012397766,10.976499557495115 -12197,2017-11-21 05:00:00,33.92599868774414,0.0,41.415000915527344,1.5010000467300415,-7.995999813079834,-1.962000012397766,10.537500381469728 -12198,2017-11-21 06:00:00,35.0989990234375,0.0,43.69300079345703,2.1710000038146973,-9.062000274658203,-1.962000012397766,10.756999969482422 -12199,2017-11-21 07:00:00,32.83700180053711,0.0,41.49499893188477,0.0,-7.771999835968018,-1.962000012397766,10.976499557495115 -12200,2017-11-21 08:00:00,37.10900115966797,0.0,45.62300109863281,1.9839999675750728,-7.623000144958496,-1.4390000104904177,11.635499954223633 -12201,2017-11-21 09:00:00,38.86800003051758,0.0,46.83000183105469,2.2249999046325684,-7.697999954223633,-2.664999961853028,13.613499641418455 -12202,2017-11-21 10:00:00,35.518001556396484,0.0,44.60499954223633,0.0,-8.859999656677246,-2.664999961853028,15.371500015258787 -12203,2017-11-21 11:00:00,36.43899917602539,0.0,45.00699996948242,0.0,-7.611999988555907,-2.664999961853028,16.68950080871582 -12204,2017-11-21 12:00:00,33.674999237060554,0.0,41.60300064086914,0.0,-7.611999988555907,-2.664999961853028,17.12849998474121 -12205,2017-11-21 13:00:00,39.70600128173828,0.0,48.09000015258789,2.5199999809265137,-7.515999794006348,-2.664999961853028,17.348499298095707 -12206,2017-11-21 14:00:00,39.11999893188477,0.0,46.50799942016602,2.7880001068115234,-7.761000156402588,-2.664999961853028,17.568000793457028 -12207,2017-11-21 15:00:00,39.2869987487793,0.0,48.5989990234375,3.2170000076293945,-8.98799991607666,-2.664999961853028,17.568000793457028 -12208,2017-11-21 16:00:00,41.632999420166016,0.0,49.10800170898438,3.243000030517578,-7.633999824523926,-2.664999961853028,17.348499298095707 -12209,2017-11-21 17:00:00,41.46500015258789,0.0,48.946998596191406,1.6619999408721924,-7.761000156402588,-2.664999961853028,17.348499298095707 -12210,2017-11-21 18:00:00,40.54399871826172,0.0,47.92900085449219,1.4479999542236328,-7.708000183105469,-2.664999961853028,16.909000396728516 -12211,2017-11-21 19:00:00,38.617000579833984,0.0,46.18600082397461,1.3669999837875366,-7.771999835968018,-2.664999961853028,16.909000396728516 -12212,2017-11-21 20:00:00,37.69599914550781,0.0,44.63199996948242,0.0,-6.727000236511231,-1.4390000104904177,16.909000396728516 -12213,2017-11-21 21:00:00,40.62699890136719,0.0,48.49200057983398,1.9299999475479128,-6.929999828338622,-1.4390000104904177,16.469499588012695 -12214,2017-11-21 22:00:00,38.36600112915039,0.0,46.2400016784668,1.715999960899353,-8.326999664306639,-1.2369999885559082,16.25 -12215,2017-11-21 23:00:00,37.946998596191406,0.0,45.19400024414063,2.3320000171661377,-6.802000045776367,-1.715999960899353,16.25 -12216,2017-11-22 00:00:00,33.42300033569336,0.0,41.89699935913086,1.5820000171661377,-8.135000228881836,-2.5799999237060547,16.25 -12217,2017-11-22 01:00:00,35.0989990234375,0.0,42.11199951171875,1.5279999971389768,-6.63100004196167,-2.5799999237060547,16.25 -12218,2017-11-22 02:00:00,32.669998168945305,0.0,41.49499893188477,2.0639998912811284,-8.251999855041504,-2.5799999237060547,16.25 -12219,2017-11-22 03:00:00,33.088001251220696,0.0,39.99399948120117,1.3400000333786009,-7.314000129699707,-2.5799999237060547,16.030500411987305 -12220,2017-11-22 04:00:00,30.65900039672852,0.0,38.27899932861328,2.3050000667572017,-7.34600019454956,-2.5799999237060547,15.810999870300291 -12221,2017-11-22 05:00:00,33.757999420166016,0.0,40.31600189208984,1.5279999971389768,-5.96999979019165,-2.5799999237060547,15.371000289916992 -12222,2017-11-22 06:00:00,34.59600067138672,0.0,42.59400177001953,1.5820000171661377,-7.217999935150146,-2.5799999237060547,14.932000160217283 -12223,2017-11-22 07:00:00,35.518001556396484,0.0,43.18399810791016,2.1440000534057617,-7.420000076293945,-2.5799999237060547,14.491999626159668 -12224,2017-11-22 08:00:00,34.345001220703125,0.0,41.790000915527344,0.0,-7.879000186920166,-2.5799999237060547,14.491999626159668 -12225,2017-11-22 09:00:00,37.44400024414063,0.0,46.749000549316406,2.868000030517578,-8.98799991607666,-2.5799999237060547,16.469499588012695 -12226,2017-11-22 10:00:00,32.501998901367195,0.0,41.30799865722656,0.0,-7.803999900817871,-2.5799999237060547,19.10650062561035 -12227,2017-11-22 11:00:00,29.40299987792969,0.0,37.42100143432617,-2.0639998912811284,-7.803999900817871,-2.5799999237060547,22.183000564575195 -12228,2017-11-22 12:00:00,35.43399810791016,0.0,44.81900024414063,0.0,-9.029999732971191,-2.5799999237060547,24.3799991607666 -12229,2017-11-22 13:00:00,36.68999862670898,0.0,45.32899856567383,2.1979999542236333,-9.029999732971191,-2.5799999237060547,25.917999267578125 -12230,2017-11-22 14:00:00,36.35499954223633,0.0,45.16799926757813,2.4130001068115234,-9.062000274658203,-2.5799999237060547,26.79700088500977 -12231,2017-11-22 15:00:00,35.76900100708008,0.0,44.14899826049805,2.4130001068115234,-7.665999889373777,-2.5799999237060547,25.03899955749512 -12232,2017-11-22 16:00:00,37.025001525878906,0.0,46.64199829101562,2.733999967575073,-10.182000160217283,-2.5799999237060547,23.94050025939941 -12233,2017-11-22 17:00:00,40.459999084472656,0.0,48.0629997253418,1.4479999542236328,-7.623000144958496,-2.483999967575073,22.621999740600582 -12234,2017-11-22 18:00:00,41.88399887084961,0.0,48.946998596191406,1.8760000467300413,-6.269000053405763,-1.3650000095367432,21.52300071716309 -12235,2017-11-22 19:00:00,38.44900131225586,0.0,43.02299880981445,0.0,-5.235000133514403,0.0,20.645000457763672 -12236,2017-11-22 20:00:00,35.43399810791016,0.0,42.165000915527344,0.0,-6.502999782562256,-1.2580000162124634,19.98550033569336 -12237,2017-11-22 21:00:00,39.0359992980957,0.0,45.89099884033203,0.0,-6.749000072479247,-1.2580000162124634,19.326000213623047 -12238,2017-11-22 22:00:00,39.53799819946289,0.0,45.4630012512207,1.9570000171661377,-5.51200008392334,-1.2580000162124634,18.886999130249023 -12239,2017-11-22 23:00:00,34.847000122070305,0.0,43.72000122070313,1.9839999675750728,-8.177000045776367,-1.5889999866485596,18.44700050354004 -12240,2017-11-23 00:00:00,35.518001556396484,0.0,42.43399810791016,1.3669999837875366,-7.014999866485598,-1.5889999866485596,18.007999420166016 -12241,2017-11-23 01:00:00,31.916000366210927,0.0,40.18199920654297,0.0,-7.7189998626708975,-2.803999900817871,17.568000793457028 -12242,2017-11-23 02:00:00,33.088001251220696,0.0,40.02099990844727,0.0,-6.749000072479247,-2.7929999828338623,17.128999710083008 -12243,2017-11-23 03:00:00,30.239999771118164,0.0,38.198001861572266,0.0,-7.964000225067139,-2.7929999828338623,16.030500411987305 -12244,2017-11-23 04:00:00,31.16200065612793,0.0,39.29700088500977,0.0,-8.071000099182129,-2.7929999828338623,14.711999893188477 -12245,2017-11-23 05:00:00,35.349998474121094,0.0,42.05799865722656,2.0910000801086426,-6.695000171661378,-2.7929999828338623,13.61299991607666 -12246,2017-11-23 06:00:00,34.429000854492195,0.0,43.07699966430664,2.2780001163482666,-8.295000076293945,-2.7929999828338623,12.734000205993652 -12247,2017-11-23 07:00:00,32.83700180053711,0.0,41.52199935913086,1.4479999542236328,-8.241000175476074,-2.7929999828338623,12.074999809265137 -12248,2017-11-23 08:00:00,33.84199905395508,0.0,42.38000106811523,0.0,-8.187999725341799,-2.7929999828338623,12.074999809265137 -12249,2017-11-23 09:00:00,32.75299835205078,0.0,41.36100006103516,0.0,-8.251999855041504,-2.7929999828338623,14.052499771118164 -12250,2017-11-23 10:00:00,30.99399948120117,0.0,40.34299850463867,0.0,-9.670000076293944,-2.7929999828338623,17.568500518798828 -12251,2017-11-23 11:00:00,32.58599853515625,0.0,40.262001037597656,0.0,-7.206999778747559,-2.7929999828338623,20.864500045776367 -12252,2017-11-23 12:00:00,30.239999771118164,0.0,38.97600173950195,0.0,-8.432999610900879,-1.4390000104904177,22.40250015258789 -12253,2017-11-23 13:00:00,30.99399948120117,0.0,40.02099990844727,0.0,-8.432999610900879,-1.4390000104904177,24.15999984741211 -12254,2017-11-23 14:00:00,30.072999954223643,0.0,37.87699890136719,0.0,-8.432999610900879,-2.6760001182556152,25.697999954223643 -12255,2017-11-23 15:00:00,32.58599853515625,0.0,40.61100006103516,0.0,-7.452000141143799,-2.6760001182556152,25.697999954223643 -12256,2017-11-23 16:00:00,33.84199905395508,0.0,42.78200149536133,1.9299999475479128,-8.732000350952147,-2.6760001182556152,24.15999984741211 -12257,2017-11-23 17:00:00,33.088001251220696,0.0,40.93199920654297,0.0,-7.515999794006348,-2.6760001182556152,21.962499618530277 -12258,2017-11-23 18:00:00,35.26599884033203,0.0,41.95100021362305,0.0,-6.578000068664551,-1.4500000476837158,19.766000747680664 -12259,2017-11-23 19:00:00,30.072999954223643,0.0,37.608001708984375,-2.1979999542236333,-7.761000156402588,-1.4500000476837158,17.788000106811523 -12260,2017-11-23 20:00:00,36.02000045776367,0.0,43.02299880981445,0.0,-6.598999977111816,-1.4500000476837158,16.25 -12261,2017-11-23 21:00:00,35.685001373291016,0.0,44.95299911499024,2.0639998912811284,-9.052000045776367,-1.2899999618530271,14.711999893188477 -12262,2017-11-23 22:00:00,37.10900115966797,0.0,45.19400024414063,2.1710000038146973,-7.793000221252441,-2.5369999408721924,13.61299991607666 -12263,2017-11-23 23:00:00,34.0099983215332,0.0,41.11999893188477,1.7419999837875366,-7.526999950408935,-2.5369999408721924,12.95400047302246 -12264,2017-11-24 00:00:00,33.005001068115234,0.0,40.31600189208984,2.385999917984009,-7.431000232696532,-1.7380000352859497,12.295000076293944 -12265,2017-11-24 01:00:00,33.92599868774414,0.0,40.87900161743164,1.7690000534057615,-7.420000076293945,-1.7380000352859497,11.635499954223633 -12266,2017-11-24 02:00:00,32.417999267578125,0.0,40.07500076293945,1.7419999837875366,-7.591000080108643,-1.7380000352859497,10.756999969482422 -12267,2017-11-24 03:00:00,33.005001068115234,0.0,40.18199920654297,0.0,-7.377999782562256,-1.7380000352859497,10.317500114440918 -12268,2017-11-24 04:00:00,32.669998168945305,0.0,39.37799835205078,0.0,-5.980999946594237,-1.7380000352859497,9.878000259399414 -12269,2017-11-24 05:00:00,29.15099906921387,0.0,37.18000030517578,0.0,-7.291999816894531,-2.96399998664856,8.99899959564209 -12270,2017-11-24 06:00:00,32.333999633789055,0.0,40.07500076293945,0.0,-7.355999946594237,-2.96399998664856,8.559499740600586 -12271,2017-11-24 07:00:00,35.0989990234375,0.0,42.62099838256836,0.0,-7.515999794006348,-2.96399998664856,8.559499740600586 -12272,2017-11-24 08:00:00,34.93099975585937,0.0,43.29100036621094,1.850000023841858,-8.913000106811523,-1.7380000352859497,8.779500007629395 -12273,2017-11-24 09:00:00,37.52799987792969,0.0,45.81100082397461,3.0290000438690186,-8.732000350952147,-2.9530000686645512,11.85550022125244 -12274,2017-11-24 10:00:00,37.025001525878906,0.0,45.4630012512207,1.3400000333786009,-8.732000350952147,-1.9830000400543213,15.810500144958494 -12275,2017-11-24 11:00:00,28.565000534057607,0.0,37.233001708984375,0.0,-7.633999824523926,-1.99399995803833,20.20499992370605 -12276,2017-11-24 12:00:00,23.62299919128418,-5.193999767303467,33.613998413085945,-3.135999917984009,-10.437000274658203,-1.99399995803833,23.2810001373291 -12277,2017-11-24 13:00:00,32.83700180053711,0.0,41.01300048828125,0.0,-9.104999542236328,-3.2939999103546143,25.478500366210927 -12278,2017-11-24 14:00:00,34.68000030517578,0.0,43.82699966430664,0.0,-9.307000160217283,-3.2939999103546143,25.917999267578125 -12279,2017-11-24 15:00:00,35.76900100708008,0.0,43.96099853515625,1.5549999475479126,-8.027999877929688,-3.2939999103546143,24.819499969482425 -12280,2017-11-24 16:00:00,38.198001861572266,0.0,45.89099884033203,1.5549999475479126,-7.078999996185303,-2.068000078201294,23.72050094604492 -12281,2017-11-24 17:00:00,38.617000579833984,0.0,45.94499969482422,0.0,-7.122000217437744,-2.068000078201294,22.1825008392334 -12282,2017-11-24 18:00:00,39.70600128173828,0.0,47.6870002746582,1.5010000467300415,-6.8979997634887695,-1.8869999647140503,20.424999237060547 -12283,2017-11-24 19:00:00,38.78499984741211,0.0,45.73099899291992,0.0,-5.992000102996826,-1.2150000333786009,18.886999130249023 -12284,2017-11-24 20:00:00,37.69599914550781,0.0,46.6150016784668,1.5010000467300415,-8.625,-1.3220000267028809,17.788000106811523 -12285,2017-11-24 21:00:00,41.13000106811523,0.0,47.01699829101562,1.6619999408721924,-6.386000156402588,-1.246999979019165,16.909000396728516 -12286,2017-11-24 22:00:00,38.36600112915039,0.0,45.8650016784668,2.1710000038146973,-7.39900016784668,-1.2690000534057615,16.030500411987305 -12287,2017-11-24 23:00:00,37.77899932861328,0.0,44.97999954223633,1.9299999475479128,-7.175000190734862,-1.4709999561309814,15.810999870300291 -12288,2017-11-25 00:00:00,35.518001556396484,0.0,43.04999923706055,0.0,-7.388000011444093,-1.4709999561309814,15.590999603271484 -12289,2017-11-25 01:00:00,34.09400177001953,0.0,41.81700134277344,1.9839999675750728,-7.570000171661378,-1.4709999561309814,15.590999603271484 -12290,2017-11-25 02:00:00,32.417999267578125,0.0,39.77999877929688,0.0,-6.781000137329103,-1.4709999561309814,15.590999603271484 -12291,2017-11-25 03:00:00,32.58599853515625,0.0,39.99399948120117,0.0,-8.071000099182129,-1.6950000524520874,15.15149974822998 -12292,2017-11-25 04:00:00,32.669998168945305,0.0,40.28900146484375,0.0,-7.122000217437744,-1.6950000524520874,14.711999893188477 -12293,2017-11-25 05:00:00,33.17200088500977,0.0,40.45000076293945,0.0,-7.25,-1.6950000524520874,13.833000183105469 -12294,2017-11-25 06:00:00,26.88999938964844,0.0,34.5260009765625,0.0,-8.63599967956543,-1.6950000524520874,12.95400047302246 -12295,2017-11-25 07:00:00,36.94200134277344,0.0,42.83599853515625,0.0,-6.184000015258789,-1.6950000524520874,12.51449966430664 -12296,2017-11-25 08:00:00,32.250999450683594,0.0,40.77199935913086,0.0,-7.420000076293945,-1.6950000524520874,12.51449966430664 -12297,2017-11-25 09:00:00,39.11999893188477,0.0,46.53499984741211,2.680999994277954,-6.22599983215332,-1.6950000524520874,15.15149974822998 -12298,2017-11-25 10:00:00,35.518001556396484,0.0,43.82699966430664,0.0,-7.452000141143799,-1.6950000524520874,18.66699981689453 -12299,2017-11-25 11:00:00,36.77399826049805,0.0,45.06000137329102,1.5279999971389768,-7.452000141143799,-1.6950000524520874,22.402000427246094 -12300,2017-11-25 12:00:00,35.76900100708008,0.0,43.69300079345703,0.0,-7.270999908447266,-2.9110000133514404,24.60000038146973 -12301,2017-11-25 13:00:00,36.02000045776367,0.0,44.92599868774414,1.6890000104904177,-8.359000205993652,-2.9110000133514404,25.478500366210927 -12302,2017-11-25 14:00:00,32.75299835205078,0.0,42.70199966430664,1.7690000534057615,-9.680999755859377,-2.9110000133514404,26.357500076293945 -12303,2017-11-25 15:00:00,35.685001373291016,0.0,43.88100051879883,1.9299999475479128,-8.47599983215332,-2.367000102996826,25.917999267578125 -12304,2017-11-25 16:00:00,35.518001556396484,0.0,44.900001525878906,2.0369999408721924,-10.086000442504885,-2.622999906539917,24.819499969482425 -12305,2017-11-25 17:00:00,37.19300079345703,0.0,45.8650016784668,0.0,-8.689000129699707,-2.622999906539917,23.500999450683597 -12306,2017-11-25 18:00:00,35.85300064086914,0.0,44.47100067138672,0.0,-8.539999961853027,-2.622999906539917,21.74300003051757 -12307,2017-11-25 19:00:00,36.52299880981445,0.0,43.82699966430664,0.0,-7.4629998207092285,-2.622999906539917,20.20499992370605 -12308,2017-11-25 20:00:00,35.76900100708008,0.0,43.23799896240234,0.0,-7.815000057220459,-2.622999906539917,18.886999130249023 -12309,2017-11-25 21:00:00,37.52799987792969,0.0,45.30199813842773,0.0,-7.367000102996826,-1.3109999895095823,18.44700050354004 -12310,2017-11-25 22:00:00,37.025001525878906,0.0,44.92599868774414,1.7690000534057615,-7.729000091552732,-1.375,18.227500915527344 -12311,2017-11-25 23:00:00,38.36600112915039,0.0,45.24800109863281,2.385999917984009,-6.375999927520753,-1.375,18.007999420166016 -12312,2017-11-26 00:00:00,35.26599884033203,0.0,43.88100051879883,2.0639998912811284,-7.623000144958496,-2.611999988555908,18.007999420166016 -12313,2017-11-26 01:00:00,36.77399826049805,0.0,43.18399810791016,2.1979999542236333,-6.396999835968018,-1.2790000438690186,18.007999420166016 -12314,2017-11-26 02:00:00,33.005001068115234,0.0,41.22700119018555,0.0,-7.686999797821045,-1.3329999446868896,17.128999710083008 -12315,2017-11-26 03:00:00,34.429000854492195,0.0,41.36100006103516,1.4739999771118164,-6.758999824523926,-2.664999961853028,16.030500411987305 -12316,2017-11-26 04:00:00,25.88400077819824,0.0,33.93600082397461,0.0,-6.7170000076293945,-2.664999961853028,14.932000160217283 -12317,2017-11-26 05:00:00,35.60100173950195,0.0,42.40700149536133,2.1979999542236333,-6.73799991607666,-2.664999961853028,14.053000450134276 -12318,2017-11-26 06:00:00,36.94200134277344,0.0,43.04999923706055,2.3050000667572017,-6.5349998474121085,-1.375,13.61299991607666 -12319,2017-11-26 07:00:00,35.685001373291016,0.0,42.64799880981445,0.0,-7.974999904632567,-1.375,12.95400047302246 -12320,2017-11-26 08:00:00,32.501998901367195,0.0,41.73699951171875,1.715999960899353,-8.208999633789062,-3.0810000896453857,12.95400047302246 -12321,2017-11-26 09:00:00,38.03099822998047,0.0,45.8650016784668,2.5729999542236333,-7.067999839782715,-2.8250000476837163,15.810500144958494 -12322,2017-11-26 10:00:00,37.946998596191406,0.0,47.5,2.358999967575073,-9.626999855041504,-1.8339999914169312,19.54599952697754 -12323,2017-11-26 11:00:00,37.52799987792969,0.0,46.45399856567383,1.850000023841858,-9.510000228881836,-1.8339999914169312,23.500999450683597 -12324,2017-11-26 12:00:00,34.429000854492195,0.0,43.02299880981445,0.0,-8.177000045776367,-1.8339999914169312,26.13800048828125 -12325,2017-11-26 13:00:00,32.92100143432617,0.0,44.20299911499024,1.7419999837875366,-10.55500030517578,-1.8339999914169312,28.77449989318848 -12326,2017-11-26 14:00:00,33.005001068115234,0.0,42.54100036621094,1.5549999475479126,-9.232999801635742,-2.719000101089477,30.53199958801269 -12327,2017-11-26 15:00:00,33.34000015258789,0.0,42.70199966430664,1.5549999475479126,-9.350000381469728,-2.719000101089477,30.3125 -12328,2017-11-26 16:00:00,33.25600051879883,0.0,42.99599838256836,0.0,-9.178999900817873,-2.719000101089477,28.77449989318848 -12329,2017-11-26 17:00:00,37.946998596191406,0.0,44.95299911499024,0.0,-6.727000236511231,-2.719000101089477,26.13750076293945 -12330,2017-11-26 18:00:00,38.86800003051758,0.0,47.3390007019043,0.0,-8.295000076293945,-2.719000101089477,23.72100067138672 -12331,2017-11-26 19:00:00,38.617000579833984,0.0,45.43600082397461,0.0,-7.067999839782715,-1.3650000095367432,21.96299934387207 -12332,2017-11-26 20:00:00,38.617000579833984,0.0,45.62300109863281,0.0,-6.705999851226808,-1.2790000438690186,20.645000457763672 -12333,2017-11-26 21:00:00,38.198001861572266,0.0,43.74700164794922,0.0,-6.269000053405763,-1.3329999446868896,19.766000747680664 -12334,2017-11-26 22:00:00,37.36100006103516,0.0,45.08700180053711,2.438999891281128,-8.359000205993652,-1.3009999990463257,18.66699981689453 -12335,2017-11-26 23:00:00,37.36100006103516,0.0,42.72800064086914,0.0,-5.906000137329103,-1.3009999990463257,18.227500915527344 -12336,2017-11-27 00:00:00,33.757999420166016,0.0,41.65599822998047,2.546999931335449,-7.377999782562256,-1.3009999990463257,17.348499298095707 -12337,2017-11-27 01:00:00,31.66399955749512,0.0,40.18199920654297,0.0,-8.508000373840332,-2.5160000324249268,16.909000396728516 -12338,2017-11-27 02:00:00,29.48600006103516,0.0,38.70800018310547,1.8229999542236328,-8.284000396728517,-1.5140000581741333,16.469499588012695 -12339,2017-11-27 03:00:00,30.743000030517567,0.0,39.80699920654297,0.0,-8.656999588012695,-1.5140000581741333,16.030500411987305 -12340,2017-11-27 04:00:00,31.077999114990234,0.0,39.91400146484375,0.0,-8.241000175476074,-1.5140000581741333,15.810999870300291 -12341,2017-11-27 05:00:00,32.83700180053711,0.0,40.47700119018555,1.4210000038146973,-6.695000171661378,-1.5140000581741333,15.371000289916992 -12342,2017-11-27 06:00:00,33.42300033569336,0.0,41.76300048828125,0.0,-8.027999877929688,-1.8760000467300413,14.711999893188477 -12343,2017-11-27 07:00:00,33.17200088500977,0.0,41.54899978637695,0.0,-8.060000419616701,-1.3860000371932983,14.272500038146973 -12344,2017-11-27 08:00:00,32.250999450683594,0.0,41.52199935913086,0.0,-8.11299991607666,-2.632999897003174,14.49250030517578 -12345,2017-11-27 09:00:00,36.68999862670898,0.0,45.08700180053711,2.1710000038146973,-8.017000198364258,-2.632999897003174,16.25 -12346,2017-11-27 10:00:00,32.501998901367195,0.0,42.67499923706055,0.0,-9.020000457763672,-2.632999897003174,19.10650062561035 -12347,2017-11-27 11:00:00,37.44400024414063,0.0,45.94499969482422,1.4210000038146973,-9.052000045776367,-2.632999897003174,21.96299934387207 -12348,2017-11-27 12:00:00,34.847000122070305,0.0,43.18399810791016,0.0,-8.869999885559082,-2.632999897003174,23.72100067138672 -12349,2017-11-27 13:00:00,34.345001220703125,0.0,43.98799896240234,1.6890000104904177,-9.467000007629396,-3.4440000057220463,25.25849914550781 -12350,2017-11-27 14:00:00,33.757999420166016,0.0,43.02299880981445,2.0910000801086426,-9.467000007629396,-3.4440000057220463,27.01650047302246 -12351,2017-11-27 15:00:00,33.17200088500977,0.0,42.40700149536133,1.8760000467300413,-9.33899974822998,-2.4089999198913574,26.57699966430664 -12352,2017-11-27 16:00:00,35.014999389648445,0.0,44.44400024414063,1.7960000038146973,-9.637999534606934,-2.4089999198913574,25.478500366210927 -12353,2017-11-27 17:00:00,39.11999893188477,0.0,46.69599914550781,1.4739999771118164,-7.591000080108643,-2.3559999465942383,23.94050025939941 -12354,2017-11-27 18:00:00,40.87900161743164,0.0,46.9900016784668,2.0369999408721924,-6.460999965667725,-2.3559999465942383,22.84199905395508 -12355,2017-11-27 19:00:00,37.946998596191406,0.0,43.90800094604492,0.0,-5.383999824523926,-2.3559999465942383,21.96299934387207 -12356,2017-11-27 20:00:00,36.43899917602539,0.0,44.49800109863281,0.0,-8.230999946594237,-2.3559999465942383,21.30349922180176 -12357,2017-11-27 21:00:00,35.60100173950195,0.0,42.75500106811523,0.0,-6.908999919891357,-2.3559999465942383,20.864500045776367 -12358,2017-11-27 22:00:00,30.492000579833984,0.0,37.233001708984375,0.0,-6.769999980926514,-2.3559999465942383,20.424999237060547 -12359,2017-11-27 23:00:00,33.17200088500977,0.0,39.86000061035156,0.0,-6.802000045776367,-2.3559999465942383,19.98550033569336 -12360,2017-11-28 00:00:00,27.141000747680664,0.0,33.64099884033203,-1.3940000534057615,-6.73799991607666,-2.3559999465942383,19.98550033569336 -12361,2017-11-28 01:00:00,33.25600051879883,0.0,39.96699905395508,1.7960000038146973,-6.589000225067139,-2.3559999465942383,19.766000747680664 -12362,2017-11-28 02:00:00,32.501998901367195,0.0,39.35100173950195,1.9299999475479128,-7.964000225067139,-2.3559999465942383,18.886999130249023 -12363,2017-11-28 03:00:00,30.239999771118164,0.0,38.89500045776367,1.9839999675750728,-8.529000282287598,-2.3559999465942383,18.44700050354004 -12364,2017-11-28 04:00:00,33.005001068115234,0.0,40.39599990844727,2.1710000038146973,-7.282000064849853,-2.3559999465942383,18.227500915527344 -12365,2017-11-28 05:00:00,33.674999237060554,0.0,41.54899978637695,3.1630001068115234,-8.560999870300293,-2.3559999465942383,18.007999420166016 -12366,2017-11-28 06:00:00,33.17200088500977,0.0,42.11199951171875,1.9839999675750728,-9.776000022888184,-2.174999952316284,18.007999420166016 -12367,2017-11-28 07:00:00,38.617000579833984,0.0,46.6150016784668,-2.252000093460083,-8.668000221252441,-2.1540000438690186,18.007999420166016 -12368,2017-11-28 08:00:00,16.836999893188473,0.0,26.16200065612793,4.182000160217285,-8.763999938964844,-2.1540000438690186,18.44700050354004 -12369,2017-11-28 09:00:00,19.601999282836918,0.0,28.76300048828125,5.656000137329103,-8.539999961853027,-2.1540000438690186,19.326000213623047 -12370,2017-11-28 10:00:00,15.916000366210938,0.0,24.39299964904785,3.4579999446868896,-7.323999881744385,-2.1540000438690186,19.766000747680664 -12371,2017-11-28 11:00:00,17.423999786376953,0.0,26.83300018310547,4.155000209808351,-8.763999938964844,-2.1540000438690186,20.20499992370605 -12372,2017-11-28 12:00:00,18.93199920654297,0.0,27.690000534057607,5.039000034332275,-9.020000457763672,-2.1540000438690186,21.083999633789062 -12373,2017-11-28 13:00:00,20.77400016784668,0.0,28.25300025939941,5.414999961853027,-7.591000080108643,-2.1540000438690186,22.1825008392334 -12374,2017-11-28 14:00:00,18.0939998626709,0.0,27.23500061035156,5.683000087738037,-8.795999526977539,-3.36899995803833,22.621999740600582 -12375,2017-11-28 15:00:00,17.423999786376953,0.0,25.76000022888184,4.502999782562256,-8.817000389099121,-3.1770000457763667,23.2810001373291 -12376,2017-11-28 16:00:00,22.114999771118164,4.5229997634887695,28.73600006103516,6.058000087738037,-6.269000053405763,-1.8229999542236328,23.500999450683597 -12377,2017-11-28 17:00:00,21.11000061035156,0.0,28.95000076293945,5.119999885559082,-7.7189998626708975,-1.3009999990463257,23.72100067138672 -12378,2017-11-28 18:00:00,24.292999267578125,4.690999984741211,29.64699935913086,5.8439998626708975,-5.2129998207092285,-1.3009999990463257,22.84199905395508 -12379,2017-11-28 19:00:00,18.847999572753903,0.0,26.96699905395508,4.664000034332275,-8.027999877929688,-1.3009999990463257,21.96299934387207 -12380,2017-11-28 20:00:00,19.01499938964844,0.0,27.44899940490723,4.53000020980835,-7.644000053405763,-1.3009999990463257,20.645000457763672 -12381,2017-11-28 21:00:00,22.78499984741211,4.690999984741211,29.11100006103516,6.058000087738037,-6.301000118255615,-1.2580000162124634,20.20499992370605 -12382,2017-11-28 22:00:00,23.035999298095703,5.026000022888184,29.11100006103516,5.978000164031982,-4.9679999351501465,-1.2369999885559082,19.766000747680664 -12383,2017-11-28 23:00:00,22.70100021362305,4.941999912261963,29.00399971008301,6.111999988555907,-5.052999973297119,-1.3220000267028809,19.54599952697754 -12384,2017-11-29 00:00:00,22.70100021362305,4.440000057220459,29.459999084472656,5.869999885559082,-6.248000144958496,-2.559000015258789,19.10650062561035 -12385,2017-11-29 01:00:00,22.86899948120117,4.440000057220459,29.808000564575195,5.816999912261963,-6.322000026702881,-2.559000015258789,19.10650062561035 -12386,2017-11-29 02:00:00,22.114999771118164,4.440000057220459,28.68199920654297,5.5219998359680185,-6.184000015258789,-1.343000054359436,19.10650062561035 -12387,2017-11-29 03:00:00,22.53400039672852,4.2719998359680185,28.333999633789062,5.361000061035156,-5.992000102996826,-1.812000036239624,18.886999130249023 -12388,2017-11-29 04:00:00,19.350000381469727,0.0,27.53000068664551,5.4679999351501465,-7.50600004196167,-1.812000036239624,18.886999130249023 -12389,2017-11-29 05:00:00,16.92099952697754,0.0,22.94599914550781,3.5920000076293945,-6.257999897003174,-2.0789999961853027,18.44700050354004 -12390,2017-11-29 06:00:00,22.28199958801269,4.105000019073486,29.6200008392334,5.763000011444093,-7.611999988555907,-2.0789999961853027,18.007999420166016 -12391,2017-11-29 07:00:00,22.198999404907227,4.2719998359680185,29.351999282836918,5.602000236511231,-6.951000213623048,-2.0789999961853027,17.568000793457028 -12392,2017-11-29 08:00:00,19.43400001525879,0.0,26.69899940490723,4.824999809265137,-6.951000213623048,-2.0789999961853027,17.348499298095707 -12393,2017-11-29 09:00:00,22.86899948120117,4.440000057220459,31.20199966430664,6.701000213623048,-8.82800006866455,-3.2939999103546143,17.348499298095707 -12394,2017-11-29 10:00:00,15.664999961853027,0.0,25.868000030517567,3.5920000076293945,-10.128000259399414,-3.2939999103546143,17.348499298095707 -12395,2017-11-29 11:00:00,16.250999450683597,0.0,25.78700065612793,3.61899995803833,-8.817000389099121,-2.227999925613404,17.788000106811523 -12396,2017-11-29 12:00:00,19.350000381469727,0.0,28.62899971008301,5.065999984741211,-9.114999771118164,-2.483999967575073,18.44750022888184 -12397,2017-11-29 13:00:00,17.674999237060547,0.0,27.74399948120117,5.334000110626222,-10.342000007629396,-2.121999979019165,19.326499938964844 -12398,2017-11-29 14:00:00,21.36100006103516,4.60699987411499,30.638999938964844,6.755000114440918,-9.12600040435791,-2.121999979019165,19.326499938964844 -12399,2017-11-29 15:00:00,20.77400016784668,4.105000019073486,30.37100028991699,6.433000087738037,-9.157999992370604,-2.282000064849853,19.10650062561035 -12400,2017-11-29 16:00:00,20.77400016784668,4.105000019073486,30.47800064086914,6.486999988555907,-9.157999992370604,-2.440999984741211,18.886999130249023 -12401,2017-11-29 17:00:00,41.54899978637695,0.0,49.1349983215332,4.584000110626222,-7.879000186920166,-2.440999984741211,18.66699981689453 -12402,2017-11-29 18:00:00,42.63800048828125,0.0,49.40299987792969,4.315999984741212,-7.697999954223633,-2.440999984741211,18.44700050354004 -12403,2017-11-29 19:00:00,35.76900100708008,0.0,44.71200180053711,2.627000093460083,-8.956000328063965,-2.440999984741211,18.227500915527344 -12404,2017-11-29 20:00:00,39.11999893188477,0.0,46.26699829101562,3.9670000076293945,-7.708000183105469,-2.440999984741211,18.007999420166016 -12405,2017-11-29 21:00:00,39.20299911499024,0.0,45.43600082397461,3.61899995803833,-5.052999973297119,-1.2150000333786009,17.788000106811523 -12406,2017-11-29 22:00:00,36.02000045776367,0.0,44.685001373291016,3.7799999713897705,-7.910999774932861,-1.4609999656677246,17.568000793457028 -12407,2017-11-29 23:00:00,35.685001373291016,0.0,43.02299880981445,4.0209999084472665,-7.964000225067139,-2.6760001182556152,16.909000396728516 -12408,2017-11-30 00:00:00,34.0099983215332,0.0,42.43399810791016,4.2890000343322745,-7.910999774932861,-1.4179999828338623,16.469499588012695 -12409,2017-11-30 01:00:00,32.58599853515625,0.0,38.680999755859375,2.9749999046325684,-6.73799991607666,-1.9299999475479128,16.25 -12410,2017-11-30 02:00:00,31.496999740600582,0.0,39.91400146484375,3.7260000705718994,-8.027999877929688,-1.9299999475479128,15.810999870300291 -12411,2017-11-30 03:00:00,31.496999740600582,0.0,40.15499877929688,3.3239998817443848,-8.027999877929688,-1.63100004196167,14.932000160217283 -12412,2017-11-30 04:00:00,29.23500061035156,0.0,37.90299987792969,2.9489998817443848,-8.97700023651123,-2.687000036239624,13.61299991607666 -12413,2017-11-30 05:00:00,32.250999450683594,0.0,39.48500061035156,3.5380001068115234,-7.729000091552732,-2.687000036239624,13.173999786376951 -12414,2017-11-30 06:00:00,31.16200065612793,0.0,39.77999877929688,2.546999931335449,-8.892000198364258,-2.687000036239624,13.173999786376951 -12415,2017-11-30 07:00:00,34.09400177001953,0.0,41.790000915527344,2.680999994277954,-7.803999900817871,-2.687000036239624,13.61299991607666 -12416,2017-11-30 08:00:00,38.28200149536133,0.0,44.84600067138672,3.2170000076293945,-6.5250000953674325,-2.687000036239624,13.61299991607666 -12417,2017-11-30 09:00:00,39.790000915527344,4.355999946594238,49.61700057983398,5.789999961853027,-9.041000366210938,-2.687000036239624,13.61299991607666 -12418,2017-11-30 10:00:00,38.44900131225586,0.0,47.63399887084961,3.4040000438690186,-9.041000366210938,-1.8229999542236328,13.61299991607666 -12419,2017-11-30 11:00:00,38.617000579833984,0.0,47.23199844360352,2.8949999809265137,-7.739999771118164,-1.8229999542236328,13.61299991607666 -12420,2017-11-30 12:00:00,39.874000549316406,0.0,48.33100128173828,3.99399995803833,-8.11299991607666,-3.0699999332427983,14.053000450134276 -12421,2017-11-30 13:00:00,41.13000106811523,4.355999946594238,49.64400100708008,5.254000186920166,-8.092000007629395,-3.0699999332427983,14.932000160217283 -12422,2017-11-30 14:00:00,41.38100051879883,5.193999767303467,49.72499847412109,6.085000038146973,-8.092000007629395,-3.0699999332427983,15.371000289916992 -12423,2017-11-30 15:00:00,41.96799850463867,5.110000133514403,49.64400100708008,5.656000137329103,-8.156000137329103,-3.0699999332427983,15.590999603271484 -12424,2017-11-30 16:00:00,41.54899978637695,4.60699987411499,50.93099975585938,5.763000011444093,-9.307000160217283,-1.8550000190734863,16.030500411987305 -12425,2017-11-30 17:00:00,44.14599990844727,4.775000095367432,51.14500045776367,4.797999858856201,-6.84499979019165,-1.343000054359436,16.030500411987305 -12426,2017-11-30 18:00:00,44.0620002746582,4.775000095367432,49.64400100708008,4.422999858856201,-6.5250000953674325,-1.343000054359436,16.030500411987305 -12427,2017-11-30 19:00:00,40.20899963378906,0.0,48.5989990234375,3.99399995803833,-7.771999835968018,-1.2690000534057615,16.030500411987305 -12428,2017-11-30 20:00:00,38.95199966430664,0.0,45.2750015258789,3.1630001068115234,-5.777999877929688,-1.246999979019165,16.030500411987305 -12429,2017-11-30 21:00:00,40.79499816894531,4.5229997634887695,47.3120002746582,4.2890000343322745,-6.204999923706055,0.0,15.810999870300291 -12430,2017-11-30 22:00:00,38.86800003051758,4.105000019073486,45.70399856567383,4.127999782562257,-6.151999950408936,-1.3650000095367432,15.590999603271484 -12431,2017-11-30 23:00:00,37.946998596191406,0.0,45.22100067138672,4.53000020980835,-7.005000114440918,-1.2580000162124634,15.371000289916992 -12432,2017-12-01 00:00:00,35.43399810791016,0.0,43.42499923706055,4.3959999084472665,-6.813000202178955,-1.2690000534057615,14.932000160217283 -12433,2017-12-01 01:00:00,30.99399948120117,0.0,38.59999847412109,2.8410000801086426,-8.060000419616701,-1.343000054359436,14.491999626159668 -12434,2017-12-01 02:00:00,31.832000732421875,0.0,40.52999877929688,3.5920000076293945,-7.644000053405763,-2.559000015258789,13.61299991607666 -12435,2017-12-01 03:00:00,32.333999633789055,0.0,40.34299850463867,3.51200008392334,-7.868000030517577,-2.996000051498413,12.73449993133545 -12436,2017-12-01 04:00:00,28.481000900268555,0.0,38.70800018310547,3.0559999942779537,-9.12600040435791,-2.996000051498413,12.074999809265137 -12437,2017-12-01 05:00:00,31.58099937438965,0.0,40.23500061035156,4.611000061035156,-8.934000015258789,-1.812000036239624,11.196499824523926 -12438,2017-12-01 06:00:00,28.31399917602539,0.0,36.08100128173828,1.3669999837875366,-8.539999961853027,-1.4390000104904177,10.317500114440918 -12439,2017-12-01 07:00:00,35.76900100708008,0.0,43.07699966430664,3.3510000705718994,-7.164000034332275,-1.4390000104904177,9.878000259399414 -12440,2017-12-01 08:00:00,36.68999862670898,0.0,43.80099868774414,3.1630001068115234,-7.14300012588501,-1.4390000104904177,9.878000259399414 -12441,2017-12-01 09:00:00,40.29199981689453,0.0,48.73300170898438,4.127999782562257,-7.420000076293945,-2.664999961853028,11.416000366210938 -12442,2017-12-01 10:00:00,37.19300079345703,0.0,45.89099884033203,3.0290000438690186,-8.645999908447267,-2.664999961853028,13.173500061035154 -12443,2017-12-01 11:00:00,39.37099838256836,0.0,49.0009994506836,3.859999895095825,-8.645999908447267,-2.664999961853028,15.15149974822998 -12444,2017-12-01 12:00:00,38.28200149536133,0.0,47.82099914550781,4.073999881744385,-9.883000373840332,-2.2709999084472656,17.568000793457028 -12445,2017-12-01 13:00:00,39.53799819946289,0.0,48.46500015258789,4.7709999084472665,-8.645999908447267,-2.430999994277954,18.44750022888184 -12446,2017-12-01 14:00:00,39.53799819946289,4.5229997634887695,48.4109992980957,5.683000087738037,-8.645999908447267,-2.430999994277954,18.886499404907227 -12447,2017-12-01 15:00:00,35.85300064086914,0.0,45.06000137329102,4.047999858856201,-8.645999908447267,-2.430999994277954,19.765499114990234 -12448,2017-12-01 16:00:00,40.29199981689453,4.355999946594238,49.0009994506836,5.629000186920166,-8.625,-2.430999994277954,19.766000747680664 -12449,2017-12-01 17:00:00,41.46500015258789,0.0,50.44800186157226,5.039000034332275,-8.63599967956543,-2.430999994277954,18.44750022888184 -12450,2017-12-01 18:00:00,43.81100082397461,5.276999950408936,50.90399932861328,5.227000236511231,-6.184000015258789,-2.430999994277954,17.12849998474121 -12451,2017-12-01 19:00:00,38.95199966430664,0.0,44.47100067138672,1.8229999542236328,-5.288000106811523,0.0,15.590999603271484 -12452,2017-12-01 20:00:00,42.55400085449219,4.188000202178955,48.70600128173828,4.182000160217285,-5.724999904632568,-1.3650000095367432,14.491999626159668 -12453,2017-12-01 21:00:00,40.87900161743164,0.0,49.64400100708008,4.7179999351501465,-8.465000152587889,-1.3650000095367432,13.393500328063965 -12454,2017-12-01 22:00:00,40.3759994506836,4.5229997634887695,48.2770004272461,5.065999984741211,-8.199000358581543,-2.5910000801086426,12.51449966430664 -12455,2017-12-01 23:00:00,36.35499954223633,0.0,43.55899810791016,3.5920000076293945,-7.910999774932861,-2.5910000801086426,12.074999809265137 -12456,2017-12-02 00:00:00,36.77399826049805,4.5229997634887695,44.60499954223633,5.065999984741211,-8.187999725341799,-1.343000054359436,12.074999809265137 -12457,2017-12-02 01:00:00,31.832000732421875,0.0,39.59199905395508,2.546999931335449,-7.995999813079834,-1.343000054359436,12.074999809265137 -12458,2017-12-02 02:00:00,26.30299949645996,0.0,34.9010009765625,1.6349999904632568,-8.092000007629395,-2.559000015258789,11.635499954223633 -12459,2017-12-02 03:00:00,32.333999633789055,0.0,40.47700119018555,3.565000057220459,-8.081000328063965,-1.524999976158142,10.756999969482422 -12460,2017-12-02 04:00:00,27.97900009155273,0.0,35.91999816894531,1.8760000467300413,-8.284000396728517,-1.5989999771118164,10.536999702453612 -12461,2017-12-02 05:00:00,32.669998168945305,0.0,40.39599990844727,3.484999895095825,-7.335000038146973,-1.5989999771118164,10.756999969482422 -12462,2017-12-02 06:00:00,31.077999114990234,0.0,39.61899948120117,2.9749999046325684,-7.431000232696532,-1.5989999771118164,10.756999969482422 -12463,2017-12-02 07:00:00,35.518001556396484,0.0,43.02299880981445,4.100999832153319,-7.452000141143799,-1.5989999771118164,11.196499824523926 -12464,2017-12-02 08:00:00,31.74799919128418,0.0,40.04800033569336,2.1440000534057617,-8.625,-1.5989999771118164,11.854999542236328 -12465,2017-12-02 09:00:00,39.37099838256836,0.0,46.9370002746582,4.235000133514403,-7.377999782562256,-1.5989999771118164,12.51449966430664 -12466,2017-12-02 10:00:00,41.04600143432617,0.0,49.45700073242188,5.039000034332275,-7.4099998474121085,-2.8359999656677246,13.393500328063965 -12467,2017-12-02 11:00:00,40.20899963378906,0.0,49.3489990234375,4.824999809265137,-8.625,-2.8359999656677246,14.491999626159668 -12468,2017-12-02 12:00:00,38.70100021362305,0.0,47.23199844360352,3.859999895095825,-8.560999870300293,-2.8359999656677246,16.25 -12469,2017-12-02 13:00:00,38.70100021362305,0.0,47.58000183105469,5.0929999351501465,-8.411999702453612,-2.8359999656677246,17.788000106811523 -12470,2017-12-02 14:00:00,35.26599884033203,0.0,44.73899841308594,4.477000236511231,-9.84000015258789,-2.8359999656677246,19.54599952697754 -12471,2017-12-02 15:00:00,28.31399917602539,0.0,39.11000061035156,2.2780001163482666,-9.862000465393066,-2.8359999656677246,19.766000747680664 -12472,2017-12-02 16:00:00,36.52299880981445,0.0,47.1510009765625,4.449999809265137,-9.85099983215332,-2.8359999656677246,19.766000747680664 -12473,2017-12-02 17:00:00,40.29199981689453,0.0,48.5989990234375,3.5380001068115234,-8.560999870300293,-2.8359999656677246,18.886999130249023 -12474,2017-12-02 18:00:00,41.04600143432617,0.0,49.21500015258789,4.449999809265137,-7.302999973297119,-2.8359999656677246,17.348499298095707 -12475,2017-12-02 19:00:00,36.1879997253418,0.0,43.29100036621094,2.627000093460083,-6.802000045776367,-2.8359999656677246,16.469499588012695 -12476,2017-12-02 20:00:00,41.29800033569336,0.0,49.3489990234375,4.986000061035156,-7.985000133514402,-2.8250000476837163,15.371000289916992 -12477,2017-12-02 21:00:00,42.88899993896485,4.355999946594238,49.5369987487793,4.690999984741211,-6.727000236511231,-2.8250000476837163,14.272500038146973 -12478,2017-12-02 22:00:00,42.303001403808594,5.193999767303467,47.875,5.388000011444092,-5.171000003814697,-2.8250000476837163,13.833000183105469 -12479,2017-12-02 23:00:00,34.59600067138672,0.0,42.51399993896485,3.5380001068115234,-7.65500020980835,-1.6100000143051147,13.393500328063965 -12480,2017-12-03 00:00:00,34.847000122070305,0.0,43.02299880981445,4.26200008392334,-7.633999824523926,-2.943000078201294,12.51449966430664 -12481,2017-12-03 01:00:00,34.93099975585937,0.0,42.24599838256836,3.88700008392334,-7.484000205993652,-2.943000078201294,12.074999809265137 -12482,2017-12-03 02:00:00,34.68000030517578,0.0,41.54899978637695,4.53000020980835,-6.866000175476074,-2.943000078201294,11.635499954223633 -12483,2017-12-03 03:00:00,32.16699981689453,0.0,40.20899963378906,3.6459999084472656,-6.749000072479247,-1.715999960899353,11.196499824523926 -12484,2017-12-03 04:00:00,32.417999267578125,0.0,40.02099990844727,3.6459999084472656,-6.749000072479247,-2.96399998664856,10.756999969482422 -12485,2017-12-03 05:00:00,33.34000015258789,0.0,40.71799850463867,3.9140000343322754,-7.985000133514402,-2.697000026702881,10.536999702453612 -12486,2017-12-03 06:00:00,34.68000030517578,0.0,42.27299880981445,4.073999881744385,-6.758999824523926,-2.697000026702881,10.317500114440918 -12487,2017-12-03 07:00:00,28.73200035095215,0.0,37.233001708984375,2.0910000801086426,-8.241000175476074,-2.697000026702881,9.878000259399414 -12488,2017-12-03 08:00:00,35.014999389648445,0.0,42.084999084472656,2.9219999313354488,-6.790999889373777,-2.697000026702881,9.878000259399414 -12489,2017-12-03 09:00:00,34.261001586914055,0.0,43.26399993896485,3.135999917984009,-8.177000045776367,-2.697000026702881,12.51449966430664 -12490,2017-12-03 10:00:00,35.349998474121094,0.0,44.17599868774414,3.9140000343322754,-8.145000457763674,-2.697000026702881,15.590999603271484 -12491,2017-12-03 11:00:00,38.86800003051758,0.0,47.44599914550781,4.235000133514403,-9.361000061035156,-2.697000026702881,18.66699981689453 -12492,2017-12-03 12:00:00,34.345001220703125,0.0,44.65800094604492,3.3510000705718994,-9.32900047302246,-2.697000026702881,21.523500442504886 -12493,2017-12-03 13:00:00,30.57500076293945,0.0,39.72600173950195,2.2249999046325684,-9.520999908447266,-2.697000026702881,24.379499435424805 -12494,2017-12-03 14:00:00,32.92100143432617,0.0,44.33700180053711,4.0209999084472665,-10.756999969482422,-2.6760001182556152,25.03899955749512 -12495,2017-12-03 15:00:00,34.09400177001953,0.0,44.38999938964844,4.182000160217285,-9.467000007629396,-2.4200000762939453,23.2814998626709 -12496,2017-12-03 16:00:00,36.94200134277344,0.0,45.97200012207031,4.209000110626222,-9.531000137329102,-2.4200000762939453,22.1825008392334 -12497,2017-12-03 17:00:00,40.9630012512207,0.0,48.7859992980957,3.99399995803833,-8.262999534606934,-3.0380001068115234,21.30349922180176 -12498,2017-12-03 18:00:00,36.43899917602539,0.0,43.04999923706055,1.9839999675750728,-6.695000171661378,-3.0380001068115234,19.98550033569336 -12499,2017-12-03 19:00:00,34.17699813842773,0.0,41.46799850463867,1.3940000534057615,-7.815000057220459,-3.006999969482422,19.10650062561035 -12500,2017-12-03 20:00:00,29.23500061035156,0.0,37.367000579833984,0.0,-8.230999946594237,-3.124000072479248,18.44700050354004 -12501,2017-12-03 21:00:00,37.69599914550781,0.0,46.9640007019043,3.940000057220459,-9.531000137329102,-3.124000072479248,18.007999420166016 -12502,2017-12-03 22:00:00,38.78499984741211,0.0,45.8380012512207,4.100999832153319,-6.88700008392334,-3.124000072479248,17.348499298095707 -12503,2017-12-03 23:00:00,31.66399955749512,0.0,40.58399963378906,2.868000030517578,-9.637999534606934,-2.9110000133514404,16.909000396728516 -12504,2017-12-04 00:00:00,35.0989990234375,0.0,41.36100006103516,3.565000057220459,-5.916999816894531,-2.9110000133514404,16.030500411987305 -12505,2017-12-04 01:00:00,33.590999603271484,0.0,40.71799850463867,3.8059999942779537,-7.484000205993652,-2.9110000133514404,15.371000289916992 -12506,2017-12-04 02:00:00,32.58599853515625,0.0,39.80699920654297,3.6989998817443848,-7.4099998474121085,-2.9110000133514404,14.272500038146973 -12507,2017-12-04 03:00:00,26.63800048828125,0.0,33.50699996948242,0.0,-8.656999588012695,-2.9110000133514404,13.833000183105469 -12508,2017-12-04 04:00:00,31.916000366210927,0.0,39.37799835205078,3.484999895095825,-6.439000129699707,-2.9110000133514404,12.95400047302246 -12509,2017-12-04 05:00:00,31.99900054931641,0.0,39.99399948120117,4.073999881744385,-8.166999816894531,-2.9110000133514404,12.51449966430664 -12510,2017-12-04 06:00:00,34.0099983215332,0.0,40.02099990844727,3.4309999942779537,-5.853000164031982,-2.9110000133514404,12.51449966430664 -12511,2017-12-04 07:00:00,35.85300064086914,0.0,43.15700149536133,3.753000020980835,-8.432999610900879,-2.9110000133514404,12.51449966430664 -12512,2017-12-04 08:00:00,35.349998474121094,0.0,41.25400161743164,2.1440000534057617,-5.992000102996826,-2.9110000133514404,12.95400047302246 -12513,2017-12-04 09:00:00,39.70600128173828,4.5229997634887695,49.32300186157226,6.058000087738037,-9.562999725341797,-3.124000072479248,14.272500038146973 -12514,2017-12-04 10:00:00,34.59600067138672,0.0,44.92599868774414,2.868000030517578,-9.520999908447266,-3.4219999313354488,16.030500411987305 -12515,2017-12-04 11:00:00,40.54399871826172,4.2719998359680185,49.21500015258789,5.441999912261963,-8.284000396728517,-3.4219999313354488,18.00749969482422 -12516,2017-12-04 12:00:00,35.85300064086914,0.0,46.05199813842773,3.2699999809265137,-9.510000228881836,-3.4219999313354488,18.886499404907227 -12517,2017-12-04 13:00:00,37.86299896240234,0.0,47.36600112915039,5.013000011444092,-9.48900032043457,-3.4219999313354488,20.424999237060547 -12518,2017-12-04 14:00:00,35.85300064086914,0.0,44.71200180053711,4.63700008392334,-8.208999633789062,-3.4219999313354488,21.74300003051757 -12519,2017-12-04 15:00:00,37.19300079345703,0.0,47.01699829101562,5.414999961853027,-9.45699977874756,-3.4219999313354488,21.74300003051757 -12520,2017-12-04 16:00:00,39.20299911499024,0.0,47.6870002746582,5.281000137329102,-8.145000457763674,-2.3989999294281006,21.083999633789062 -12521,2017-12-04 17:00:00,39.45500183105469,0.0,48.6259994506836,3.6989998817443848,-8.454000473022461,-2.3989999294281006,19.54599952697754 -12522,2017-12-04 18:00:00,42.1349983215332,0.0,49.24200057983398,4.315999984741212,-7.34600019454956,-2.3989999294281006,18.227500915527344 -12523,2017-12-04 19:00:00,40.87900161743164,0.0,48.49200057983398,4.0209999084472665,-7.388000011444093,-2.3989999294281006,16.909000396728516 -12524,2017-12-04 20:00:00,39.2869987487793,0.0,46.85599899291992,3.0829999446868896,-7.452000141143799,-2.3989999294281006,16.030500411987305 -12525,2017-12-04 21:00:00,43.30799865722656,4.355999946594238,49.10800170898438,4.53000020980835,-5.96999979019165,-2.3989999294281006,15.15149974822998 -12526,2017-12-04 22:00:00,37.69599914550781,0.0,45.8650016784668,4.2890000343322745,-7.238999843597412,-2.3989999294281006,14.711999893188477 -12527,2017-12-04 23:00:00,34.429000854492195,0.0,41.22700119018555,3.7260000705718994,-7.4099998474121085,-2.3989999294281006,14.052499771118164 -12528,2017-12-05 00:00:00,30.82699966430664,0.0,38.30500030517578,2.2249999046325684,-7.484000205993652,-1.812000036239624,13.833000183105469 -12529,2017-12-05 01:00:00,33.674999237060554,0.0,41.17399978637695,3.61899995803833,-7.900000095367432,-3.0280001163482666,13.393500328063965 -12530,2017-12-05 02:00:00,33.757999420166016,0.0,41.54899978637695,2.9219999313354488,-6.929999828338622,-3.006999969482422,12.73449993133545 -12531,2017-12-05 03:00:00,30.40800094604492,0.0,39.56499862670898,3.0829999446868896,-9.008999824523926,-3.006999969482422,12.074999809265137 -12532,2017-12-05 04:00:00,31.99900054931641,0.0,41.44200134277344,3.0829999446868896,-9.33899974822998,-3.006999969482422,10.976499557495115 -12533,2017-12-05 05:00:00,29.319000244140625,0.0,38.49300003051758,2.733999967575073,-9.361000061035156,-2.345999956130981,9.878000259399414 -12534,2017-12-05 06:00:00,28.145999908447266,0.0,35.8120002746582,0.0,-8.11299991607666,-2.45199990272522,8.99899959564209 -12535,2017-12-05 07:00:00,29.90500068664551,0.0,37.2599983215332,0.0,-7.111000061035156,-2.45199990272522,8.339500427246094 -12536,2017-12-05 08:00:00,34.59600067138672,0.0,43.39899826049805,1.6890000104904177,-8.380000114440918,-2.45199990272522,8.119999885559082 -12537,2017-12-05 09:00:00,38.78499984741211,0.0,49.3489990234375,4.26200008392334,-9.70199966430664,-2.45199990272522,10.537500381469728 -12538,2017-12-05 10:00:00,36.858001708984375,0.0,46.9370002746582,2.1979999542236333,-9.690999984741213,-2.45199990272522,13.393500328063965 -12539,2017-12-05 11:00:00,36.02000045776367,0.0,45.2750015258789,1.6890000104904177,-9.713000297546388,-2.45199990272522,17.128999710083008 -12540,2017-12-05 12:00:00,37.19300079345703,0.0,44.49800109863281,2.3050000667572017,-7.291999816894531,-2.494999885559082,19.326000213623047 -12541,2017-12-05 13:00:00,36.1879997253418,0.0,47.01699829101562,3.99399995803833,-11.088000297546388,-3.742000102996826,20.644500732421875 -12542,2017-12-05 14:00:00,36.60699844360352,0.0,47.125,4.7709999084472665,-9.84000015258789,-3.742000102996826,21.304000854492188 -12543,2017-12-05 15:00:00,37.52799987792969,0.0,47.07099914550781,4.584000110626222,-9.84000015258789,-3.742000102996826,20.42449951171875 -12544,2017-12-05 16:00:00,39.11999893188477,0.0,48.33100128173828,4.611000061035156,-8.539999961853027,-3.742000102996826,18.66699981689453 -12545,2017-12-05 17:00:00,39.11999893188477,0.0,49.67100143432617,3.753000020980835,-9.883000373840332,-2.4200000762939453,16.909000396728516 -12546,2017-12-05 18:00:00,40.3759994506836,0.0,48.35800170898438,3.3510000705718994,-8.668000221252441,-2.4200000762939453,14.711999893188477 -12547,2017-12-05 19:00:00,39.62200164794922,0.0,48.00899887084961,2.868000030517578,-8.668000221252441,-2.4200000762939453,13.393500328063965 -12548,2017-12-05 20:00:00,40.04100036621094,0.0,47.76800155639648,2.2780001163482666,-8.401000022888184,-2.4200000762939453,12.074999809265137 -12549,2017-12-05 21:00:00,39.45500183105469,0.0,48.67900085449219,2.8410000801086426,-9.690999984741213,-2.4200000762939453,10.756999969482422 -12550,2017-12-05 22:00:00,38.198001861572266,0.0,48.09000015258789,4.155000209808351,-9.819000244140623,-2.4200000762939453,9.878000259399414 -12551,2017-12-05 23:00:00,36.27199935913086,0.0,45.94499969482422,3.8329999446868896,-9.531000137329102,-2.4200000762939453,9.43850040435791 -12552,2017-12-06 00:00:00,34.512001037597656,0.0,43.37200164794922,3.1630001068115234,-8.230999946594237,-2.4200000762939453,8.99899959564209 -12553,2017-12-06 01:00:00,30.57500076293945,0.0,38.94900131225586,2.627000093460083,-8.166999816894531,-2.4200000762939453,8.339500427246094 -12554,2017-12-06 02:00:00,33.50699996948242,0.0,41.20000076293945,3.3239998817443848,-7.473999977111816,-2.4200000762939453,7.680500030517577 -12555,2017-12-06 03:00:00,29.90500068664551,0.0,39.02899932861328,2.627000093460083,-8.795999526977539,-2.4200000762939453,7.021500110626223 -12556,2017-12-06 04:00:00,24.292999267578125,0.0,32.327999114990234,0.0,-7.579999923706055,-2.111000061035156,6.142499923706055 -12557,2017-12-06 05:00:00,27.559999465942383,0.0,35.91999816894531,0.0,-7.291999816894531,-2.25,5.922999858856201 -12558,2017-12-06 06:00:00,29.40299987792969,0.0,37.6619987487793,0.0,-7.4099998474121085,-2.984999895095825,5.483500003814697 -12559,2017-12-06 07:00:00,31.916000366210927,0.0,40.23500061035156,0.0,-7.4099998474121085,-2.984999895095825,5.483500003814697 -12560,2017-12-06 08:00:00,31.58099937438965,0.0,39.77999877929688,0.0,-8.998000144958496,-2.943000078201294,6.362500190734862 -12561,2017-12-06 09:00:00,35.43399810791016,0.0,46.05199813842773,4.047999858856201,-8.913000106811523,-3.401000022888184,8.779000282287598 -12562,2017-12-06 10:00:00,26.386999130249023,0.0,36.5629997253418,0.0,-10.128000259399414,-3.401000022888184,11.85550022125244 -12563,2017-12-06 11:00:00,25.1299991607666,0.0,34.01599884033203,0.0,-8.838000297546387,-2.1429998874664307,15.371500015258787 -12564,2017-12-06 12:00:00,19.85300064086914,0.0,29.351999282836918,-1.9299999475479128,-8.838000297546387,-2.1429998874664307,15.371000289916992 -12565,2017-12-06 13:00:00,21.61199951171875,0.0,29.86199951171875,0.0,-7.611999988555907,-2.1429998874664307,15.590999603271484 -12566,2017-12-06 14:00:00,19.937000274658203,0.0,30.1560001373291,0.0,-10.118000030517578,-2.1429998874664307,17.128999710083008 -12567,2017-12-06 15:00:00,21.863000869750977,0.0,29.808000564575195,0.0,-7.611999988555907,-2.1429998874664307,18.227500915527344 -12568,2017-12-06 16:00:00,22.450000762939453,0.0,31.041000366210927,0.0,-8.262999534606934,-2.1429998874664307,17.568000793457028 -12569,2017-12-06 17:00:00,23.1200008392334,0.0,30.53199958801269,-1.4479999542236328,-6.673999786376952,-2.1429998874664307,16.909000396728516 -12570,2017-12-06 18:00:00,24.62800025939941,-4.105000019073486,31.89900016784668,-2.2249999046325684,-7.782999992370605,-2.1429998874664307,15.810999870300291 -12571,2017-12-06 19:00:00,23.035999298095703,-4.105000019073486,31.76499938964844,-2.118000030517578,-8.465000152587889,-2.1429998874664307,14.711999893188477 -12572,2017-12-06 20:00:00,21.780000686645508,-4.690999984741211,30.961000442504893,-1.9839999675750728,-8.401000022888184,-2.1429998874664307,13.393500328063965 -12573,2017-12-06 21:00:00,23.53899955749512,-5.193999767303467,31.20199966430664,-3.2170000076293945,-7.111000061035156,-2.1429998874664307,12.074999809265137 -12574,2017-12-06 22:00:00,19.601999282836918,-4.60699987411499,28.73600006103516,-2.9489998817443848,-7.676000118255615,-2.1429998874664307,11.196499824523926 -12575,2017-12-06 23:00:00,17.674999237060547,-6.618000030517577,26.02799987792969,-4.611000061035156,-7.985000133514402,-2.1429998874664307,10.317500114440918 -12576,2017-12-07 00:00:00,16.92099952697754,-5.947999954223633,23.75,-3.9670000076293945,-6.589000225067139,-2.1429998874664307,9.43850040435791 -12577,2017-12-07 01:00:00,13.56999969482422,-6.2829999923706055,22.812000274658203,-4.63700008392334,-9.083000183105469,-2.1429998874664307,8.559499740600586 -12578,2017-12-07 02:00:00,14.91100025177002,-6.449999809265138,21.68600082397461,-4.2890000343322745,-6.982999801635742,-2.1429998874664307,8.119999885559082 -12579,2017-12-07 03:00:00,12.39799976348877,-6.86899995803833,21.042999267578125,-5.013000011444092,-8.262999534606934,-2.1429998874664307,8.119999885559082 -12580,2017-12-07 04:00:00,14.072999954223633,-5.611999988555908,21.847000122070312,-3.378000020980835,-7.005000114440918,-2.1429998874664307,8.119999885559082 -12581,2017-12-07 05:00:00,12.5649995803833,-7.203999996185303,20.90800094604492,-4.959000110626222,-8.220000267028809,-2.1429998874664307,8.119999885559082 -12582,2017-12-07 06:00:00,14.659000396728516,-5.863999843597412,23.61599922180176,-3.88700008392334,-8.295000076293945,-2.1429998874664307,8.119999885559082 -12583,2017-12-07 07:00:00,16.586000442504886,-6.533999919891357,25.22400093078613,-4.824999809265137,-8.220000267028809,-2.1429998874664307,8.559499740600586 -12584,2017-12-07 08:00:00,17.926000595092773,-6.2829999923706055,27.10099983215332,-4.100999832153319,-8.305000305175781,-2.1429998874664307,8.99899959564209 -12585,2017-12-07 09:00:00,21.277000427246094,-5.78000020980835,30.638999938964844,-4.26200008392334,-9.562999725341797,-2.1429998874664307,10.317500114440918 -12586,2017-12-07 10:00:00,25.381999969482425,-4.60699987411499,33.13199996948242,-2.680999994277954,-8.295000076293945,-2.1429998874664307,11.635499954223633 -12587,2017-12-07 11:00:00,22.53400039672852,-4.859000205993652,32.30099868774414,-3.0829999446868896,-9.510000228881836,-2.1429998874664307,12.95400047302246 -12588,2017-12-07 12:00:00,21.527999877929688,-6.449999809265138,30.1560001373291,-4.690999984741211,-8.081000328063965,-2.1429998874664307,13.833000183105469 -12589,2017-12-07 13:00:00,19.937000274658203,-6.114999771118164,29.72800064086914,-4.182000160217285,-9.29699993133545,-2.1429998874664307,14.272500038146973 -12590,2017-12-07 14:00:00,18.847999572753903,-5.696000099182129,29.5939998626709,-3.8329999446868896,-10.576000213623049,-2.1429998874664307,15.590999603271484 -12591,2017-12-07 15:00:00,19.43400001525879,-5.52899980545044,29.72800064086914,-3.5380001068115234,-10.543999671936035,-2.1429998874664307,16.68950080871582 -12592,2017-12-07 16:00:00,17.423999786376953,-8.208999633789062,27.93199920654297,-6.164999961853027,-9.32900047302246,-3.3580000400543213,16.909000396728516 -12593,2017-12-07 17:00:00,21.44499969482422,-8.461000442504883,29.808000564575195,-6.566999912261963,-8.048999786376951,-3.3580000400543213,16.25 -12594,2017-12-07 18:00:00,24.125,-5.947999954223633,30.3439998626709,-4.209000110626222,-5.863999843597412,-2.760999917984009,15.371500015258787 -12595,2017-12-07 19:00:00,20.857999801635746,-5.611999988555908,29.64699935913086,-4.100999832153319,-8.61400032043457,-1.4179999828338623,14.272500038146973 -12596,2017-12-07 20:00:00,22.86899948120117,-6.031000137329103,30.07600021362305,-4.073999881744385,-6.119999885559082,-2.7290000915527344,12.95400047302246 -12597,2017-12-07 21:00:00,22.450000762939453,-6.618000030517577,28.65500068664551,-4.7179999351501465,-6.140999794006348,-2.7290000915527344,12.074999809265137 -12598,2017-12-07 22:00:00,19.183000564575195,-6.449999809265138,25.27799987792969,-4.690999984741211,-5.927999973297119,-2.7290000915527344,11.416000366210938 -12599,2017-12-07 23:00:00,17.590999603271484,-6.701000213623048,24.84900093078613,-4.584000110626222,-7.34600019454956,-2.7290000915527344,10.756999969482422 -12600,2017-12-08 00:00:00,14.91100025177002,-6.366000175476074,22.08799934387207,-4.557000160217285,-7.547999858856201,-2.7290000915527344,9.878000259399414 -12601,2017-12-08 01:00:00,11.810999870300291,-7.203999996185303,20.66699981689453,-4.824999809265137,-8.848999977111816,-2.7290000915527344,8.99899959564209 -12602,2017-12-08 02:00:00,11.895000457763672,-7.119999885559082,20.131000518798828,-4.986000061035156,-8.97700023651123,-2.7290000915527344,8.559499740600586 -12603,2017-12-08 03:00:00,11.979000091552734,-6.7849998474121085,19.80900001525879,-5.039000034332275,-7.879000186920166,-2.7290000915527344,7.900000095367432 -12604,2017-12-08 04:00:00,11.810999870300291,-7.706999778747559,20.319000244140625,-5.629000186920166,-8.869999885559082,-2.7290000915527344,7.900000095367432 -12605,2017-12-08 05:00:00,11.392000198364258,-6.953000068664551,20.90800094604492,-5.039000034332275,-9.402999877929688,-2.7290000915527344,7.680500030517577 -12606,2017-12-08 06:00:00,12.732999801635742,-7.958000183105469,21.81999969482422,-5.789999961853027,-9.467000007629396,-2.7290000915527344,7.680500030517577 -12607,2017-12-08 07:00:00,16.50200080871582,-7.789999961853027,24.90299987792969,-5.736000061035156,-8.284000396728517,-2.7290000915527344,7.241000175476074 -12608,2017-12-08 08:00:00,20.60700035095215,-5.947999954223633,28.17300033569336,-4.235000133514403,-7.6020002365112305,-2.7290000915527344,6.801499843597412 -12609,2017-12-08 09:00:00,21.94700050354004,-5.110000133514403,30.23699951171875,-3.1630001068115234,-8.838000297546387,-2.7290000915527344,9.43850040435791 -12610,2017-12-08 10:00:00,24.795000076293945,-4.355999946594238,33.45399856567383,-1.9299999475479128,-8.784999847412111,-2.7290000915527344,12.294500350952148 -12611,2017-12-08 11:00:00,25.1299991607666,-4.355999946594238,34.042999267578125,-2.252000093460083,-8.784999847412111,-2.7290000915527344,15.590999603271484 -12612,2017-12-08 12:00:00,18.17799949645996,-6.618000030517577,27.44899940490723,-4.557000160217285,-10.095999717712402,-2.7290000915527344,17.568500518798828 -12613,2017-12-08 13:00:00,22.36599922180176,-5.445000171661377,31.041000366210927,-3.4579999446868896,-8.848999977111816,-2.7290000915527344,19.106000900268555 -12614,2017-12-08 14:00:00,23.790000915527344,-4.775000095367432,31.84499931335449,-2.8949999809265137,-8.880999565124512,-2.7290000915527344,19.765499114990234 -12615,2017-12-08 15:00:00,22.95199966430664,-4.775000095367432,31.38999938964844,-2.9489998817443848,-8.944999694824219,-2.7290000915527344,18.886499404907227 -12616,2017-12-08 16:00:00,27.22500038146973,0.0,34.12400054931641,-2.118000030517578,-6.396999835968018,-2.7290000915527344,17.348499298095707 -12617,2017-12-08 17:00:00,27.392000198364247,-4.60699987411499,34.1510009765625,-3.243000030517578,-6.5250000953674325,-2.7290000915527344,15.15149974822998 -12618,2017-12-08 18:00:00,26.80599975585937,-5.276999950408936,34.31100082397461,-3.5380001068115234,-7.238999843597412,-2.7290000915527344,13.173500061035154 -12619,2017-12-08 19:00:00,27.97900009155273,-5.026000022888184,34.20399856567383,-3.753000020980835,-5.927999973297119,-2.7290000915527344,11.416000366210938 -12620,2017-12-08 20:00:00,28.229999542236328,-5.445000171661377,34.49900054931641,-3.6459999084472656,-5.960000038146973,-2.7290000915527344,9.878000259399414 -12621,2017-12-08 21:00:00,35.518001556396484,0.0,41.95100021362305,0.0,-6.119999885559082,-2.7290000915527344,8.559499740600586 -12622,2017-12-08 22:00:00,33.088001251220696,0.0,41.87099838256836,2.009999990463257,-8.699999809265138,-1.7799999713897705,7.680500030517577 -12623,2017-12-08 23:00:00,27.47599983215332,0.0,36.777000427246094,0.0,-8.77400016784668,-2.996000051498413,6.801499843597412 -12624,2017-12-09 00:00:00,24.375999450683597,0.0,32.702999114990234,0.0,-7.559000015258789,-2.9210000038146973,6.362500190734862 -12625,2017-12-09 01:00:00,24.96299934387207,0.0,33.26599884033203,0.0,-7.995999813079834,-2.9210000038146973,6.142499923706055 -12626,2017-12-09 02:00:00,27.559999465942383,0.0,35.38399887084961,2.493000030517578,-7.985000133514402,-2.9210000038146973,5.483500003814697 -12627,2017-12-09 03:00:00,26.88999938964844,0.0,35.38399887084961,2.4130001068115234,-8.145000457763674,-2.3239998817443848,5.044000148773193 -12628,2017-12-09 04:00:00,23.95800018310547,0.0,32.16699981689453,1.312999963760376,-9.13700008392334,-2.2709999084472656,4.82450008392334 -12629,2017-12-09 05:00:00,21.025999069213867,0.0,29.64699935913086,0.0,-9.157999992370604,-1.7799999713897705,4.604499816894531 -12630,2017-12-09 06:00:00,28.565000534057607,0.0,36.1879997253418,2.438999891281128,-7.985000133514402,-2.996000051498413,4.604499816894531 -12631,2017-12-09 07:00:00,28.983999252319336,0.0,36.96500015258789,1.5279999971389768,-7.888999938964844,-2.996000051498413,4.1649999618530265 -12632,2017-12-09 08:00:00,25.968000411987305,0.0,34.553001403808594,0.0,-7.803999900817871,-2.996000051498413,4.604499816894531 -12633,2017-12-09 09:00:00,37.61199951171875,0.0,45.8650016784668,3.8329999446868896,-7.7189998626708975,-2.996000051498413,6.14300012588501 -12634,2017-12-09 10:00:00,41.96799850463867,4.690999984741211,50.77000045776367,6.4070000648498535,-8.902000427246094,-2.996000051498413,7.900000095367432 -12635,2017-12-09 11:00:00,43.47600173950195,5.696000099182129,51.84199905395508,6.888999938964844,-7.484000205993652,-2.996000051498413,11.416000366210938 -12636,2017-12-09 12:00:00,38.95199966430664,0.0,48.2239990234375,5.576000213623047,-9.052000045776367,-2.996000051498413,14.272500038146973 -12637,2017-12-09 13:00:00,38.617000579833984,0.0,47.3120002746582,5.736000061035156,-7.644000053405763,-2.996000051498413,15.810500144958494 -12638,2017-12-09 14:00:00,34.93099975585937,0.0,43.53300094604492,4.7179999351501465,-8.934000015258789,-2.996000051498413,18.227500915527344 -12639,2017-12-09 15:00:00,37.277000427246094,0.0,46.0250015258789,5.414999961853027,-9.041000366210938,-2.996000051498413,18.66699981689453 -12640,2017-12-09 16:00:00,40.20899963378906,4.440000057220459,48.8129997253418,5.8439998626708975,-9.052000045776367,-2.996000051498413,17.568500518798828 -12641,2017-12-09 17:00:00,42.387001037597656,4.188000202178955,49.99300003051758,5.414999961853027,-8.668000221252441,-2.996000051498413,16.25 -12642,2017-12-09 18:00:00,43.72700119018555,4.690999984741211,51.387001037597656,5.629000186920166,-7.270999908447266,-2.996000051498413,15.371000289916992 -12643,2017-12-09 19:00:00,41.96799850463867,0.0,49.18899917602539,4.2890000343322745,-7.4099998474121085,-2.996000051498413,14.491999626159668 -12644,2017-12-09 20:00:00,36.52299880981445,0.0,42.88899993896485,1.312999963760376,-5.853000164031982,-2.996000051498413,13.393500328063965 -12645,2017-12-09 21:00:00,40.79499816894531,0.0,50.39500045776367,5.0929999351501465,-8.390999794006348,-2.996000051498413,12.074999809265137 -12646,2017-12-09 22:00:00,40.125,0.0,48.196998596191406,4.744999885559082,-8.208999633789062,-2.996000051498413,11.416000366210938 -12647,2017-12-09 23:00:00,33.17200088500977,0.0,41.87099838256836,3.565000057220459,-8.166999816894531,-2.996000051498413,10.756999969482422 -12648,2017-12-10 00:00:00,37.025001525878906,0.0,44.900001525878906,5.1469998359680185,-7.078999996185303,-2.996000051498413,10.317500114440918 -12649,2017-12-10 01:00:00,36.94200134277344,0.0,43.02299880981445,5.0929999351501465,-6.802000045776367,-2.996000051498413,9.878000259399414 -12650,2017-12-10 02:00:00,34.429000854492195,0.0,42.459999084472656,5.013000011444092,-7.25,-2.996000051498413,10.317500114440918 -12651,2017-12-10 03:00:00,31.32900047302246,0.0,39.56499862670898,4.557000160217285,-7.441999912261963,-2.996000051498413,10.97700023651123 -12652,2017-12-10 04:00:00,31.66399955749512,0.0,40.77199935913086,4.477000236511231,-8.934000015258789,-2.996000051498413,11.416000366210938 -12653,2017-12-10 05:00:00,32.92100143432617,0.0,38.81499862670898,3.859999895095825,-6.311999797821045,-2.996000051498413,11.635499954223633 -12654,2017-12-10 06:00:00,34.512001037597656,0.0,42.05799865722656,5.013000011444092,-8.071000099182129,-2.996000051498413,11.854999542236328 -12655,2017-12-10 07:00:00,37.61199951171875,0.0,43.88100051879883,4.932000160217285,-6.758999824523926,-2.996000051498413,11.854999542236328 -12656,2017-12-10 08:00:00,30.1560001373291,0.0,38.09099960327149,2.1440000534057617,-6.84499979019165,-2.996000051498413,12.294500350952148 -12657,2017-12-10 09:00:00,30.1560001373291,0.0,38.680999755859375,2.358999967575073,-7.815000057220459,-2.996000051498413,13.393500328063965 -12658,2017-12-10 10:00:00,31.32900047302246,0.0,40.58399963378906,2.493000030517578,-7.803999900817871,-2.996000051498413,15.371000289916992 -12659,2017-12-10 11:00:00,39.53799819946289,0.0,48.16999816894531,3.6459999084472656,-8.965999603271484,-2.996000051498413,18.886999130249023 -12660,2017-12-10 12:00:00,33.674999237060554,0.0,43.104000091552734,2.5199999809265137,-8.732000350952147,-2.996000051498413,21.30349922180176 -12661,2017-12-10 13:00:00,36.43899917602539,0.0,44.81900024414063,3.4309999942779537,-8.784999847412111,-2.996000051498413,22.84199905395508 -12662,2017-12-10 14:00:00,35.76900100708008,0.0,44.97999954223633,3.8059999942779537,-8.77400016784668,-2.996000051498413,24.15999984741211 -12663,2017-12-10 15:00:00,37.946998596191406,0.0,45.48899841308594,4.26200008392334,-7.314000129699707,-2.996000051498413,23.500999450683597 -12664,2017-12-10 16:00:00,37.61199951171875,0.0,46.428001403808594,3.88700008392334,-8.604000091552733,-2.996000051498413,21.96299934387207 -12665,2017-12-10 17:00:00,39.790000915527344,0.0,48.0629997253418,3.135999917984009,-8.61400032043457,-2.996000051498413,19.98550033569336 -12666,2017-12-10 18:00:00,40.87900161743164,0.0,49.5099983215332,3.0559999942779537,-8.838000297546387,-2.996000051498413,18.44750022888184 -12667,2017-12-10 19:00:00,35.518001556396484,0.0,43.82699966430664,0.0,-7.228000164031982,-2.996000051498413,17.12849998474121 -12668,2017-12-10 20:00:00,34.93099975585937,0.0,44.04199981689453,0.0,-9.904000282287598,-2.996000051498413,15.590999603271484 -12669,2017-12-10 21:00:00,38.03099822998047,0.0,47.125,3.002000093460083,-8.496999740600586,-2.996000051498413,14.053000450134276 -12670,2017-12-10 22:00:00,37.86299896240234,0.0,46.05199813842773,3.0290000438690186,-8.411999702453612,-2.996000051498413,12.95400047302246 -12671,2017-12-10 23:00:00,34.429000854492195,0.0,42.99599838256836,2.8410000801086426,-8.12399959564209,-2.996000051498413,11.635499954223633 -12672,2017-12-11 00:00:00,32.16699981689453,0.0,39.69900131225586,2.1979999542236333,-8.145000457763674,-2.996000051498413,10.756999969482422 -12673,2017-12-11 01:00:00,26.972999572753903,0.0,35.007999420166016,0.0,-8.199000358581543,-2.996000051498413,9.878000259399414 -12674,2017-12-11 02:00:00,29.98900032043457,0.0,38.52000045776367,2.5729999542236333,-7.090000152587893,-2.996000051498413,8.99899959564209 -12675,2017-12-11 03:00:00,27.726999282836918,0.0,34.928001403808594,0.0,-6.9190001487731925,-2.996000051498413,8.119999885559082 -12676,2017-12-11 04:00:00,28.81599998474121,0.0,36.5629997253418,1.6890000104904177,-8.251999855041504,-2.996000051498413,7.241000175476074 -12677,2017-12-11 05:00:00,24.87899971008301,0.0,31.22900009155273,0.0,-5.980999946594237,-2.996000051498413,6.362500190734862 -12678,2017-12-11 06:00:00,33.25600051879883,0.0,41.14699935913086,2.8949999809265137,-7.323999881744385,-2.996000051498413,5.922999858856201 -12679,2017-12-11 07:00:00,33.34000015258789,0.0,41.20000076293945,1.8760000467300413,-7.206999778747559,-2.996000051498413,5.263500213623047 -12680,2017-12-11 08:00:00,34.17699813842773,0.0,41.44200134277344,1.8229999542236328,-7.25,-2.996000051498413,5.263500213623047 -12681,2017-12-11 09:00:00,40.29199981689453,0.0,49.1619987487793,5.281000137329102,-8.77400016784668,-2.996000051498413,7.680500030517577 -12682,2017-12-11 10:00:00,36.77399826049805,0.0,45.51599884033203,1.4210000038146973,-8.47599983215332,-2.996000051498413,11.63599967956543 -12683,2017-12-11 11:00:00,38.95199966430664,0.0,47.39300155639648,2.5729999542236333,-8.517999649047853,-2.996000051498413,16.25 -12684,2017-12-11 12:00:00,37.277000427246094,0.0,45.62300109863281,3.0559999942779537,-8.571999549865723,-2.996000051498413,19.326000213623047 -12685,2017-12-11 13:00:00,37.19300079345703,0.0,46.428001403808594,3.8329999446868896,-8.486000061035156,-2.996000051498413,21.96299934387207 -12686,2017-12-11 14:00:00,37.86299896240234,0.0,46.50799942016602,4.0209999084472665,-8.380000114440918,-2.996000051498413,24.379499435424805 -12687,2017-12-11 15:00:00,37.69599914550781,0.0,47.125,4.2890000343322745,-9.585000038146973,-2.996000051498413,24.15999984741211 -12688,2017-12-11 16:00:00,40.71099853515625,0.0,48.571998596191406,4.63700008392334,-8.359000205993652,-2.996000051498413,23.2810001373291 -12689,2017-12-11 17:00:00,40.62699890136719,0.0,49.05500030517578,3.88700008392334,-8.359000205993652,-2.996000051498413,20.424999237060547 -12690,2017-12-11 18:00:00,41.54899978637695,0.0,49.83200073242188,3.5920000076293945,-8.284000396728517,-2.996000051498413,18.007999420166016 -12691,2017-12-11 19:00:00,40.9630012512207,0.0,48.38399887084961,3.0559999942779537,-7.473999977111816,-3.1979999542236333,15.810999870300291 -12692,2017-12-11 20:00:00,40.459999084472656,0.0,48.11600112915039,3.0559999942779537,-7.538000106811522,-3.1979999542236333,13.833000183105469 -12693,2017-12-11 21:00:00,40.87900161743164,0.0,48.0359992980957,3.565000057220459,-7.559000015258789,-3.1979999542236333,12.51449966430664 -12694,2017-12-11 22:00:00,38.03099822998047,0.0,47.04399871826172,3.5380001068115234,-8.838000297546387,-3.1979999542236333,11.416000366210938 -12695,2017-12-11 23:00:00,35.43399810791016,0.0,43.18399810791016,3.135999917984009,-7.824999809265138,-3.1979999542236333,10.537500381469728 -12696,2017-12-12 00:00:00,29.319000244140625,0.0,38.70800018310547,1.6349999904632568,-9.029999732971191,-3.1979999542236333,9.878000259399414 -12697,2017-12-12 01:00:00,28.481000900268555,0.0,37.233001708984375,1.8229999542236328,-7.879000186920166,-3.1979999542236333,9.878000259399414 -12698,2017-12-12 02:00:00,28.899999618530277,0.0,36.9119987487793,1.715999960899353,-7.835999965667725,-3.1979999542236333,9.878000259399414 -12699,2017-12-12 03:00:00,27.895000457763672,0.0,35.625,1.3400000333786009,-7.676000118255615,-3.1979999542236333,9.878000259399414 -12700,2017-12-12 04:00:00,22.70100021362305,0.0,30.93400001525879,0.0,-8.284000396728517,-3.1979999542236333,9.43850040435791 -12701,2017-12-12 05:00:00,13.56999969482422,-5.863999843597412,22.249000549316406,-3.51200008392334,-8.166999816894531,-3.1979999542236333,8.99899959564209 -12702,2017-12-12 06:00:00,14.576000213623049,-5.947999954223633,22.32900047302246,-4.155000209808351,-6.855000019073486,-3.1979999542236333,8.339500427246094 -12703,2017-12-12 07:00:00,14.324000358581545,-6.031000137329103,21.927000045776367,-4.155000209808351,-8.145000457763674,-1.940000057220459,8.119999885559082 -12704,2017-12-12 08:00:00,13.654000282287598,-6.031000137329103,22.08799934387207,-4.127999782562257,-8.517999649047853,-1.940000057220459,7.9004998207092285 -12705,2017-12-12 09:00:00,17.926000595092773,0.0,26.590999603271484,-1.6890000104904177,-8.678000450134277,-3.1559998989105225,8.99899959564209 -12706,2017-12-12 10:00:00,19.768999099731445,0.0,28.708999633789062,-1.6890000104904177,-8.678000450134277,-3.1559998989105225,10.756999969482422 -12707,2017-12-12 11:00:00,19.601999282836918,0.0,27.90500068664551,-1.7690000534057615,-8.678000450134277,-3.1559998989105225,13.393500328063965 -12708,2017-12-12 12:00:00,15.748000144958494,-5.361000061035156,25.01000022888184,-3.3510000705718994,-8.720999717712402,-3.1559998989105225,15.590999603271484 -12709,2017-12-12 13:00:00,17.507999420166016,-4.859000205993652,25.947999954223643,-2.358999967575073,-8.081000328063965,-3.1559998989105225,17.568500518798828 -12710,2017-12-12 14:00:00,16.419000625610348,-4.775000095367432,24.768999099731445,-2.5199999809265137,-8.048999786376951,-3.1559998989105225,19.10650062561035 -12711,2017-12-12 15:00:00,17.256000518798828,-4.440000057220459,25.22400093078613,-2.252000093460083,-7.995999813079834,-3.1559998989105225,19.326499938964844 -12712,2017-12-12 16:00:00,17.759000778198242,-4.105000019073486,26.913000106811523,-1.8229999542236328,-7.771999835968018,-3.1559998989105225,17.788000106811523 -12713,2017-12-12 17:00:00,20.1879997253418,-4.5229997634887695,28.708999633789062,-2.2780001163482666,-7.995999813079834,-3.1559998989105225,15.810500144958494 -12714,2017-12-12 18:00:00,18.847999572753903,-4.941999912261963,28.708999633789062,-3.0290000438690186,-9.392999649047852,-3.1559998989105225,14.052499771118164 -12715,2017-12-12 19:00:00,20.356000900268555,-5.52899980545044,27.42200088500977,-3.7260000705718994,-7.974999904632567,-3.1559998989105225,12.73449993133545 -12716,2017-12-12 20:00:00,21.44499969482422,-4.355999946594238,29.11100006103516,-2.868000030517578,-8.048999786376951,-1.9299999475479128,11.635499954223633 -12717,2017-12-12 21:00:00,20.941999435424805,-4.775000095367432,28.92300033569336,-2.9749999046325684,-7.078999996185303,-1.9299999475479128,10.756999969482422 -12718,2017-12-12 22:00:00,19.684999465942383,-4.775000095367432,27.07399940490723,-3.3510000705718994,-7.4629998207092285,-1.9299999475479128,10.317500114440918 -12719,2017-12-12 23:00:00,16.0,-4.440000057220459,25.38500022888184,-2.680999994277954,-9.020000457763672,-1.9299999475479128,10.09749984741211 -12720,2017-12-13 00:00:00,14.91100025177002,-5.276999950408936,22.08799934387207,-3.243000030517578,-7.6020002365112305,-1.9299999475479128,9.878000259399414 -12721,2017-12-13 01:00:00,16.334999084472653,-4.355999946594238,23.75,-2.3050000667572017,-7.65500020980835,-1.9299999475479128,9.658499717712402 -12722,2017-12-13 02:00:00,14.576000213623049,-4.105000019073486,22.70400047302246,-2.118000030517578,-8.529000282287598,-1.9299999475479128,9.658499717712402 -12723,2017-12-13 03:00:00,12.899999618530272,-4.440000057220459,21.49799919128418,-2.2249999046325684,-8.656999588012695,-1.9299999475479128,9.218500137329102 -12724,2017-12-13 04:00:00,11.225000381469728,-4.859000205993652,19.299999237060547,-2.5199999809265137,-7.932000160217285,-3.1559998989105225,9.218500137329102 -12725,2017-12-13 05:00:00,11.644000053405762,-6.114999771118164,18.763999938964844,-3.7799999713897705,-6.557000160217285,-3.1559998989105225,8.779500007629395 -12726,2017-12-13 06:00:00,13.067999839782717,-4.859000205993652,21.202999114990234,-2.5729999542236333,-8.038999557495117,-3.1559998989105225,8.339500427246094 -12727,2017-12-13 07:00:00,14.156999588012695,-5.611999988555908,22.757999420166016,-3.61899995803833,-7.974999904632567,-3.1559998989105225,8.339500427246094 -12728,2017-12-13 08:00:00,21.11000061035156,0.0,29.13800048828125,-1.312999963760376,-7.974999904632567,-3.0380001068115234,8.119999885559082 -12729,2017-12-13 09:00:00,23.53899955749512,0.0,32.78300094604492,0.0,-9.232999801635742,-3.0380001068115234,10.09749984741211 -12730,2017-12-13 10:00:00,25.71699905395508,0.0,34.257999420166016,0.0,-8.529000282287598,-3.0380001068115234,11.85550022125244 -12731,2017-12-13 11:00:00,24.208999633789062,0.0,33.775001525878906,0.0,-8.604000091552733,-3.0380001068115234,12.074999809265137 -12732,2017-12-13 12:00:00,23.1200008392334,0.0,32.22100067138672,0.0,-9.819000244140623,-3.0380001068115234,12.294500350952148 -12733,2017-12-13 13:00:00,23.87400054931641,0.0,32.810001373291016,0.0,-8.593000411987305,-3.0380001068115234,14.272500038146973 -12734,2017-12-13 14:00:00,22.450000762939453,0.0,31.57699966430664,0.0,-8.517999649047853,-3.0380001068115234,15.15149974822998 -12735,2017-12-13 15:00:00,22.53400039672852,0.0,32.060001373291016,0.0,-8.678000450134277,-3.0380001068115234,14.931500434875488 -12736,2017-12-13 16:00:00,26.972999572753903,0.0,34.31100082397461,1.6080000400543213,-7.314000129699707,-3.0380001068115234,14.49250030517578 -12737,2017-12-13 17:00:00,30.57500076293945,0.0,38.198001861572266,1.9029999971389768,-7.879000186920166,-3.0380001068115234,14.272500038146973 -12738,2017-12-13 18:00:00,26.05200004577637,0.0,34.9010009765625,0.0,-9.467000007629396,-3.0380001068115234,14.272500038146973 -12739,2017-12-13 19:00:00,23.70599937438965,0.0,30.5049991607666,0.0,-7.185999870300293,-3.0380001068115234,14.052499771118164 -12740,2017-12-13 20:00:00,29.48600006103516,0.0,35.8120002746582,0.0,-6.065999984741211,-3.0380001068115234,13.833000183105469 -12741,2017-12-13 21:00:00,24.795000076293945,-4.355999946594238,32.327999114990234,-2.4130001068115234,-7.206999778747559,-3.0380001068115234,13.173500061035154 -12742,2017-12-13 22:00:00,38.44900131225586,0.0,45.70399856567383,3.378000020980835,-6.0980000495910645,-3.0380001068115234,11.85550022125244 -12743,2017-12-13 23:00:00,37.946998596191406,0.0,46.05199813842773,3.135999917984009,-7.291999816894531,-3.0380001068115234,10.756999969482422 -12744,2017-12-14 00:00:00,35.518001556396484,0.0,43.02299880981445,3.378000020980835,-7.377999782562256,-3.0380001068115234,9.878000259399414 -12745,2017-12-14 01:00:00,33.50699996948242,0.0,42.29899978637695,2.1710000038146973,-7.377999782562256,-3.0380001068115234,9.658499717712402 -12746,2017-12-14 02:00:00,31.32900047302246,0.0,40.04800033569336,2.627000093460083,-9.12600040435791,-3.0380001068115234,9.658499717712402 -12747,2017-12-14 03:00:00,33.25600051879883,0.0,41.709999084472656,2.7880001068115234,-9.062000274658203,-3.0380001068115234,9.218500137329102 -12748,2017-12-14 04:00:00,28.31399917602539,0.0,36.9379997253418,1.8760000467300413,-8.923999786376953,-3.0380001068115234,8.779500007629395 -12749,2017-12-14 05:00:00,32.08300018310547,0.0,41.57600021362305,2.5729999542236333,-8.848999977111816,-2.111000061035156,8.779500007629395 -12750,2017-12-14 06:00:00,34.261001586914055,0.0,42.86199951171875,2.5729999542236333,-8.550000190734862,-3.325999975204468,8.339500427246094 -12751,2017-12-14 07:00:00,33.757999420166016,0.0,43.55899810791016,2.2780001163482666,-9.765999794006348,-3.325999975204468,7.9004998207092285 -12752,2017-12-14 08:00:00,33.005001068115234,0.0,42.75500106811523,0.0,-9.690999984741213,-3.325999975204468,7.9004998207092285 -12753,2017-12-14 09:00:00,39.45500183105469,0.0,48.70600128173828,3.1630001068115234,-9.690999984741213,-3.325999975204468,7.9004998207092285 -12754,2017-12-14 10:00:00,40.54399871826172,0.0,50.07300186157226,2.252000093460083,-9.49899959564209,-3.325999975204468,8.779500007629395 -12755,2017-12-14 11:00:00,45.1510009765625,0.0,54.81800079345703,4.986000061035156,-9.49899959564209,-3.325999975204468,9.218500137329102 -12756,2017-12-14 12:00:00,43.72700119018555,0.0,52.64599990844727,3.565000057220459,-9.49899959564209,-3.325999975204468,9.658499717712402 -12757,2017-12-14 13:00:00,44.64799880981445,0.0,52.64599990844727,4.557000160217285,-8.262999534606934,-3.325999975204468,10.537500381469728 -12758,2017-12-14 14:00:00,42.97299957275391,0.0,52.11000061035156,4.26200008392334,-9.48900032043457,-2.760999917984009,10.976499557495115 -12759,2017-12-14 15:00:00,44.81600189208984,0.0,52.75400161743164,4.7179999351501465,-8.220000267028809,-2.760999917984009,10.976499557495115 -12760,2017-12-14 16:00:00,46.99399948120117,4.188000202178955,54.84500122070313,5.065999984741211,-8.220000267028809,-2.760999917984009,10.976499557495115 -12761,2017-12-14 17:00:00,49.3390007019043,4.60699987411499,55.62200164794922,5.0929999351501465,-5.745999813079834,-2.760999917984009,10.976499557495115 -12762,2017-12-14 18:00:00,47.58000183105469,0.0,53.959999084472656,4.073999881744385,-5.992000102996826,-2.760999917984009,11.85550022125244 -12763,2017-12-14 19:00:00,45.65399932861328,0.0,53.15599822998047,3.61899995803833,-6.269000053405763,-2.760999917984009,11.85550022125244 -12764,2017-12-14 20:00:00,45.65399932861328,0.0,53.34299850463867,3.7799999713897705,-7.708000183105469,-2.760999917984009,12.294500350952148 -12765,2017-12-14 21:00:00,47.1609992980957,0.0,53.53099822998047,4.127999782562257,-5.853000164031982,-2.760999917984009,12.51449966430664 -12766,2017-12-14 22:00:00,42.63800048828125,0.0,48.86700057983398,3.2170000076293945,-6.109000205993652,-2.760999917984009,12.73449993133545 -12767,2017-12-14 23:00:00,41.96799850463867,0.0,48.73300170898438,4.127999782562257,-7.15399980545044,-2.760999917984009,13.173500061035154 -12768,2017-12-15 00:00:00,38.11399841308594,0.0,44.92599868774414,3.7260000705718994,-7.15399980545044,-2.760999917984009,13.173500061035154 -12769,2017-12-15 01:00:00,36.27199935913086,0.0,43.61299896240234,3.2969999313354488,-6.502999782562256,-2.760999917984009,13.173500061035154 -12770,2017-12-15 02:00:00,32.83700180053711,0.0,39.94100189208984,1.9839999675750728,-6.28000020980835,-2.760999917984009,13.393500328063965 -12771,2017-12-15 03:00:00,32.16699981689453,0.0,41.57600021362305,2.9489998817443848,-9.020000457763672,-2.760999917984009,13.393500328063965 -12772,2017-12-15 04:00:00,33.34000015258789,0.0,42.03099822998047,3.4579999446868896,-7.494999885559082,-2.760999917984009,13.173999786376951 -12773,2017-12-15 05:00:00,31.32900047302246,0.0,38.78799819946289,1.5820000171661377,-7.515999794006348,-2.760999917984009,12.95400047302246 -12774,2017-12-15 06:00:00,36.27199935913086,0.0,43.935001373291016,3.378000020980835,-7.50600004196167,-2.760999917984009,12.074999809265137 -12775,2017-12-15 07:00:00,31.496999740600582,0.0,40.12799835205078,0.0,-7.50600004196167,-2.760999917984009,11.635499954223633 -12776,2017-12-15 08:00:00,39.0359992980957,0.0,47.98199844360352,3.6459999084472656,-8.645999908447267,-2.760999917984009,11.635499954223633 -12777,2017-12-15 09:00:00,43.64300155639648,4.2719998359680185,52.78099822998047,5.4679999351501465,-8.645999908447267,-2.760999917984009,11.635499954223633 -12778,2017-12-15 10:00:00,42.55400085449219,0.0,50.50199890136719,3.378000020980835,-7.910999774932861,-2.760999917984009,11.635499954223633 -12779,2017-12-15 11:00:00,45.90499877929688,0.0,54.57699966430664,3.753000020980835,-8.241000175476074,-2.760999917984009,11.854999542236328 -12780,2017-12-15 12:00:00,39.2869987487793,0.0,48.5989990234375,2.4660000801086426,-8.241000175476074,-2.760999917984009,12.074999809265137 -12781,2017-12-15 13:00:00,46.49100112915039,4.355999946594238,55.40700149536133,5.656000137329103,-8.295000076293945,-2.760999917984009,12.51449966430664 -12782,2017-12-15 14:00:00,44.14599990844727,0.0,52.64599990844727,4.7179999351501465,-8.305000305175781,-2.760999917984009,12.51449966430664 -12783,2017-12-15 15:00:00,47.915000915527344,5.361000061035156,55.54199981689453,6.004000186920166,-8.305000305175781,-2.760999917984009,12.51449966430664 -12784,2017-12-15 16:00:00,46.82600021362305,4.60699987411499,55.99700164794922,5.763000011444093,-8.98799991607666,-2.760999917984009,12.51449966430664 -12785,2017-12-15 17:00:00,49.67399978637695,4.941999912261963,57.01599884033203,5.4679999351501465,-6.428999900817871,-2.760999917984009,12.51449966430664 -12786,2017-12-15 18:00:00,48.50199890136719,4.188000202178955,55.32699966430664,4.584000110626222,-6.63100004196167,-2.760999917984009,12.51449966430664 -12787,2017-12-15 19:00:00,44.56499862670898,0.0,53.36999893188477,2.252000093460083,-7.782999992370605,-2.760999917984009,12.51449966430664 -12788,2017-12-15 20:00:00,44.81600189208984,0.0,51.762001037597656,0.0,-6.396999835968018,-2.760999917984009,12.734000205993652 -12789,2017-12-15 21:00:00,44.48099899291992,0.0,52.21799850463867,2.385999917984009,-7.676000118255615,-2.760999917984009,12.734000205993652 -12790,2017-12-15 22:00:00,43.64300155639648,0.0,51.92300033569336,3.4040000438690186,-7.686999797821045,-2.760999917984009,12.734000205993652 -12791,2017-12-15 23:00:00,38.86800003051758,0.0,47.125,2.0639998912811284,-7.526999950408935,-2.760999917984009,13.173999786376951 -12792,2017-12-16 00:00:00,35.76900100708008,0.0,44.685001373291016,2.7070000171661377,-8.77400016784668,-2.760999917984009,13.173999786376951 -12793,2017-12-16 01:00:00,34.59600067138672,0.0,43.02299880981445,1.5010000467300415,-7.676000118255615,-2.760999917984009,13.173999786376951 -12794,2017-12-16 02:00:00,31.413000106811523,0.0,39.53799819946289,0.0,-8.295000076293945,-2.760999917984009,12.95400047302246 -12795,2017-12-16 03:00:00,33.92599868774414,0.0,42.00500106811523,1.4739999771118164,-8.208999633789062,-2.760999917984009,12.295000076293944 -12796,2017-12-16 04:00:00,34.0099983215332,0.0,41.84400177001953,2.5999999046325684,-7.037000179290772,-2.760999917984009,11.854999542236328 -12797,2017-12-16 05:00:00,34.847000122070305,0.0,42.00500106811523,1.5549999475479126,-7.175000190734862,-2.760999917984009,11.854999542236328 -12798,2017-12-16 06:00:00,34.17699813842773,0.0,42.05799865722656,1.3940000534057615,-7.238999843597412,-2.760999917984009,11.416000366210938 -12799,2017-12-16 07:00:00,38.78499984741211,0.0,45.40900039672852,2.7880001068115234,-7.34600019454956,-2.760999917984009,11.416000366210938 -12800,2017-12-16 08:00:00,37.61199951171875,0.0,45.06000137329102,1.312999963760376,-7.25,-2.760999917984009,11.196499824523926 -12801,2017-12-16 09:00:00,41.632999420166016,0.0,48.8129997253418,1.8760000467300413,-6.0879998207092285,-2.760999917984009,11.196499824523926 -12802,2017-12-16 10:00:00,44.64799880981445,0.0,52.24399948120117,3.002000093460083,-7.4099998474121085,-2.760999917984009,11.416000366210938 -12803,2017-12-16 11:00:00,44.64799880981445,0.0,52.80699920654297,3.3510000705718994,-8.923999786376953,-2.760999917984009,12.074999809265137 -12804,2017-12-16 12:00:00,44.81600189208984,0.0,53.63800048828125,2.868000030517578,-9.093999862670898,-2.760999917984009,12.51449966430664 -12805,2017-12-16 13:00:00,41.38100051879883,0.0,50.31399917602539,2.009999990463257,-8.359000205993652,-2.760999917984009,12.294500350952148 -12806,2017-12-16 14:00:00,44.3129997253418,0.0,53.07500076293945,4.127999782562257,-8.326999664306639,-2.760999917984009,12.73449993133545 -12807,2017-12-16 15:00:00,42.97299957275391,0.0,51.36000061035156,3.6989998817443848,-8.390999794006348,-2.760999917984009,12.73449993133545 -12808,2017-12-16 16:00:00,44.64799880981445,0.0,52.137001037597656,3.190000057220459,-7.078999996185303,-2.760999917984009,12.51449966430664 -12809,2017-12-16 17:00:00,48.33399963378906,0.0,54.46900177001953,3.135999917984009,-5.607999801635742,-1.5460000038146973,12.51449966430664 -12810,2017-12-16 18:00:00,49.42300033569336,4.105000019073486,55.16600036621094,3.753000020980835,-5.683000087738037,-1.5460000038146973,11.85550022125244 -12811,2017-12-16 19:00:00,44.0620002746582,0.0,50.36800003051758,0.0,-5.863999843597412,-1.246999979019165,11.196499824523926 -12812,2017-12-16 20:00:00,49.0880012512207,0.0,53.88000106811523,2.358999967575073,-4.48799991607666,-1.2790000438690186,10.317500114440918 -12813,2017-12-16 21:00:00,50.84700012207031,0.0,55.08599853515625,3.002000093460083,-4.296999931335448,-1.2150000333786009,9.43850040435791 -12814,2017-12-16 22:00:00,47.999000549316406,0.0,54.040000915527344,3.6989998817443848,-5.756999969482423,-1.246999979019165,8.559499740600586 -12815,2017-12-16 23:00:00,43.391998291015625,0.0,51.19900131225586,3.0559999942779537,-8.326999664306639,-2.664999961853028,8.119999885559082 -12816,2017-12-17 00:00:00,34.261001586914055,0.0,42.54100036621094,0.0,-8.550000190734862,-2.664999961853028,7.680500030517577 -12817,2017-12-17 01:00:00,36.1879997253418,0.0,45.06000137329102,2.5199999809265137,-8.593000411987305,-2.664999961853028,7.021500110626223 -12818,2017-12-17 02:00:00,36.77399826049805,0.0,44.47100067138672,2.4130001068115234,-7.238999843597412,-2.664999961853028,6.142499923706055 -12819,2017-12-17 03:00:00,36.43899917602539,0.0,43.45199966430664,1.850000023841858,-6.311999797821045,-2.664999961853028,5.263500213623047 -12820,2017-12-17 04:00:00,31.077999114990234,0.0,38.89500045776367,0.0,-7.932000160217285,-2.664999961853028,4.384500026702882 -12821,2017-12-17 05:00:00,35.93600082397461,0.0,43.26399993896485,1.5010000467300415,-7.611999988555907,-2.664999961853028,3.725500106811523 -12822,2017-12-17 06:00:00,39.20299911499024,0.0,46.13299942016602,2.9489998817443848,-6.269000053405763,-2.664999961853028,3.066499948501587 -12823,2017-12-17 07:00:00,39.70600128173828,0.0,45.32899856567383,1.3669999837875366,-4.9790000915527335,-2.664999961853028,2.627000093460083 -12824,2017-12-17 08:00:00,36.94200134277344,0.0,43.74700164794922,0.0,-6.193999767303468,-2.664999961853028,2.627000093460083 -12825,2017-12-17 09:00:00,44.0620002746582,0.0,51.762001037597656,4.26200008392334,-8.625,-2.664999961853028,5.263500213623047 -12826,2017-12-17 10:00:00,44.14599990844727,0.0,51.36000061035156,3.0290000438690186,-7.323999881744385,-2.664999961853028,8.559499740600586 -12827,2017-12-17 11:00:00,44.14599990844727,0.0,51.41299819946289,3.108999967575073,-7.4099998474121085,-2.664999961853028,12.515000343322756 -12828,2017-12-17 12:00:00,41.54899978637695,0.0,49.8849983215332,2.1979999542236333,-7.484000205993652,-2.664999961853028,14.931500434875488 -12829,2017-12-17 13:00:00,37.52799987792969,0.0,46.29399871826172,1.5010000467300415,-7.85699987411499,-2.664999961853028,16.25 -12830,2017-12-17 14:00:00,39.70600128173828,0.0,49.8849983215332,3.002000093460083,-9.616999626159668,-2.664999961853028,18.007999420166016 -12831,2017-12-17 15:00:00,40.3759994506836,0.0,50.63600158691406,3.88700008392334,-9.510000228881836,-2.664999961853028,17.568500518798828 -12832,2017-12-17 16:00:00,39.70600128173828,0.0,47.9020004272461,2.0639998912811284,-8.27299976348877,-2.664999961853028,16.469999313354492 -12833,2017-12-17 17:00:00,43.64300155639648,0.0,51.62799835205078,2.3320000171661377,-8.27299976348877,-2.664999961853028,14.053000450134276 -12834,2017-12-17 18:00:00,52.1870002746582,4.775000095367432,56.7750015258789,4.073999881744385,-5.61899995803833,-2.664999961853028,11.85550022125244 -12835,2017-12-17 19:00:00,47.07799911499024,0.0,52.99499893188477,2.1979999542236333,-5.703999996185303,-1.3969999551773071,9.878000259399414 -12836,2017-12-17 20:00:00,48.66899871826172,0.0,55.72900009155274,4.073999881744385,-7.291999816894531,-1.3969999551773071,8.779500007629395 -12837,2017-12-17 21:00:00,49.42300033569336,0.0,55.51499938964844,3.6459999084472656,-6.045000076293945,-1.3969999551773071,7.9004998207092285 -12838,2017-12-17 22:00:00,46.2400016784668,0.0,54.01399993896485,4.100999832153319,-7.046999931335449,-2.611999988555908,7.241000175476074 -12839,2017-12-17 23:00:00,44.64799880981445,0.0,51.22600173950195,3.9140000343322754,-7.4099998474121085,-2.611999988555908,6.581999778747559 -12840,2017-12-18 00:00:00,35.93600082397461,0.0,45.59700012207031,1.9029999971389768,-8.77400016784668,-2.611999988555908,6.142499923706055 -12841,2017-12-18 01:00:00,38.28200149536133,0.0,44.92599868774414,2.252000093460083,-6.3439998626708975,-2.611999988555908,5.483500003814697 -12842,2017-12-18 02:00:00,35.685001373291016,0.0,44.12200164794922,3.1630001068115234,-7.974999904632567,-2.611999988555908,4.82450008392334 -12843,2017-12-18 03:00:00,37.77899932861328,0.0,44.76599884033203,3.565000057220459,-6.172999858856201,-2.611999988555908,4.384500026702882 -12844,2017-12-18 04:00:00,35.349998474121094,0.0,43.42499923706055,2.7880001068115234,-7.611999988555907,-2.611999988555908,3.505500078201294 -12845,2017-12-18 05:00:00,36.858001708984375,0.0,44.65800094604492,3.0290000438690186,-7.377999782562256,-2.611999988555908,3.066499948501587 -12846,2017-12-18 06:00:00,40.20899963378906,0.0,46.2130012512207,3.2170000076293945,-6.033999919891357,-2.611999988555908,2.627000093460083 -12847,2017-12-18 07:00:00,36.52299880981445,0.0,43.39899826049805,0.0,-6.982999801635742,-2.611999988555908,2.627000093460083 -12848,2017-12-18 08:00:00,42.303001403808594,0.0,49.85900115966797,2.868000030517578,-7.302999973297119,-2.611999988555908,2.627000093460083 -12849,2017-12-18 09:00:00,45.23500061035156,4.690999984741211,53.61100006103516,5.656000137329103,-8.892000198364258,-2.611999988555908,5.263500213623047 -12850,2017-12-18 10:00:00,43.2239990234375,0.0,51.01100158691406,1.7690000534057615,-7.633999824523926,-2.611999988555908,8.779500007629395 -12851,2017-12-18 11:00:00,42.387001037597656,0.0,51.95000076293945,2.7880001068115234,-9.211000442504885,-2.611999988555908,12.51449966430664 -12852,2017-12-18 12:00:00,43.391998291015625,0.0,52.27099990844727,3.7799999713897705,-9.211000442504885,-2.611999988555908,14.711999893188477 -12853,2017-12-18 13:00:00,44.900001525878906,0.0,52.35200119018555,4.477000236511231,-7.793000221252441,-2.611999988555908,16.25 -12854,2017-12-18 14:00:00,43.89400100708008,0.0,52.29800033569336,4.3429999351501465,-7.835999965667725,-2.611999988555908,18.227500915527344 -12855,2017-12-18 15:00:00,40.9630012512207,0.0,50.07300186157226,3.61899995803833,-9.317999839782717,-2.611999988555908,18.66699981689453 -12856,2017-12-18 16:00:00,44.73199844360352,0.0,51.62799835205078,3.4579999446868896,-6.982999801635742,-2.611999988555908,18.44750022888184 -12857,2017-12-18 17:00:00,48.08300018310547,0.0,55.51499938964844,4.182000160217285,-7.185999870300293,-2.611999988555908,16.68950080871582 -12858,2017-12-18 18:00:00,49.00400161743164,0.0,57.7400016784668,4.315999984741212,-8.315999984741211,-2.5799999237060547,14.711999893188477 -12859,2017-12-18 19:00:00,49.25600051879883,0.0,56.50699996948242,3.940000057220459,-6.876999855041504,-2.5799999237060547,12.95400047302246 -12860,2017-12-18 20:00:00,49.67399978637695,0.0,57.79299926757813,4.0209999084472665,-8.432999610900879,-2.5799999237060547,11.635499954223633 -12861,2017-12-18 21:00:00,51.09799957275391,4.355999946594238,57.41799926757813,3.940000057220459,-6.289999961853027,-2.5799999237060547,10.756999969482422 -12862,2017-12-18 22:00:00,49.25600051879883,4.5229997634887695,56.45299911499024,4.502999782562256,-7.708000183105469,-2.5799999237060547,10.317500114440918 -12863,2017-12-18 23:00:00,42.72200012207031,0.0,49.64400100708008,3.4040000438690186,-7.729000091552732,-2.5799999237060547,9.878000259399414 -12864,2017-12-19 00:00:00,40.125,0.0,47.79499816894531,3.0559999942779537,-7.515999794006348,-2.5799999237060547,9.43850040435791 -12865,2017-12-19 01:00:00,40.3759994506836,0.0,46.5880012512207,3.190000057220459,-6.172999858856201,-2.5799999237060547,8.779500007629395 -12866,2017-12-19 02:00:00,39.45500183105469,0.0,46.10599899291992,2.815000057220459,-7.431000232696532,-2.5799999237060547,7.9004998207092285 -12867,2017-12-19 03:00:00,37.69599914550781,0.0,46.15999984741211,4.047999858856201,-8.763999938964844,-2.5799999237060547,7.4604997634887695 -12868,2017-12-19 04:00:00,34.09400177001953,0.0,42.03099822998047,2.760999917984009,-8.699999809265138,-2.5799999237060547,6.581999778747559 -12869,2017-12-19 05:00:00,37.86299896240234,0.0,45.51599884033203,3.190000057220459,-7.314000129699707,-2.5799999237060547,6.142499923706055 -12870,2017-12-19 06:00:00,38.617000579833984,0.0,47.39300155639648,2.868000030517578,-8.880999565124512,-2.5799999237060547,5.703499794006348 -12871,2017-12-19 07:00:00,39.95700073242188,0.0,47.3390007019043,2.0639998912811284,-7.377999782562256,-2.5799999237060547,5.044000148773193 -12872,2017-12-19 08:00:00,39.62200164794922,0.0,48.2239990234375,2.2780001163482666,-8.720999717712402,-2.5799999237060547,4.82450008392334 -12873,2017-12-19 09:00:00,36.60699844360352,0.0,46.2130012512207,0.0,-8.869999885559082,-2.5799999237060547,7.021500110626223 -12874,2017-12-19 10:00:00,32.83700180053711,0.0,41.62900161743164,0.0,-7.579999923706055,-2.632999897003174,10.756999969482422 -12875,2017-12-19 11:00:00,30.65900039672852,0.0,39.00199890136719,-2.118000030517578,-8.741999626159668,-2.632999897003174,14.711999893188477 -12876,2017-12-19 12:00:00,27.392000198364247,-4.60699987411499,36.08100128173828,-3.1630001068115234,-8.720999717712402,-2.632999897003174,17.568500518798828 -12877,2017-12-19 13:00:00,27.81100082397461,0.0,37.39400100708008,-2.4130001068115234,-8.720999717712402,-2.632999897003174,19.326000213623047 -12878,2017-12-19 14:00:00,31.58099937438965,0.0,40.82500076293945,0.0,-8.710000038146973,-2.984999895095825,20.86400032043457 -12879,2017-12-19 15:00:00,40.54399871826172,0.0,50.63600158691406,1.6349999904632568,-9.979000091552734,-2.984999895095825,20.42449951171875 -12880,2017-12-19 16:00:00,45.4020004272461,0.0,54.71099853515625,2.8410000801086426,-9.1899995803833,-2.984999895095825,19.54599952697754 -12881,2017-12-19 17:00:00,47.74800109863281,0.0,54.89799880981445,2.358999967575073,-6.63100004196167,-2.900000095367432,17.568500518798828 -12882,2017-12-19 18:00:00,48.584999084472656,0.0,55.32699966430664,0.0,-6.749000072479247,-1.6740000247955322,15.371500015258787 -12883,2017-12-19 19:00:00,44.64799880981445,0.0,51.95000076293945,0.0,-6.684999942779541,-1.6740000247955322,13.393500328063965 -12884,2017-12-19 20:00:00,46.90999984741211,0.0,53.959999084472656,0.0,-6.673999786376952,-1.6740000247955322,11.85550022125244 -12885,2017-12-19 21:00:00,42.72200012207031,0.0,49.83200073242188,0.0,-6.673999786376952,-1.246999979019165,10.756999969482422 -12886,2017-12-19 22:00:00,41.96799850463867,0.0,49.45700073242188,0.0,-6.705999851226808,-1.2369999885559082,9.878000259399414 -12887,2017-12-19 23:00:00,46.2400016784668,0.0,52.43199920654297,1.8229999542236328,-6.802000045776367,-1.246999979019165,8.99899959564209 -12888,2017-12-20 00:00:00,41.13000106811523,0.0,48.49200057983398,1.5820000171661377,-7.111000061035156,-1.343000054359436,8.339500427246094 -12889,2017-12-20 01:00:00,39.2869987487793,0.0,45.38199996948242,0.0,-6.396999835968018,-1.4819999933242798,7.9004998207092285 -12890,2017-12-20 02:00:00,37.77899932861328,0.0,45.35499954223633,1.6349999904632568,-7.50600004196167,-1.4819999933242798,7.241000175476074 -12891,2017-12-20 03:00:00,36.94200134277344,0.0,44.17599868774414,0.0,-8.017000198364258,-2.8250000476837163,6.581999778747559 -12892,2017-12-20 04:00:00,31.916000366210927,0.0,39.99399948120117,0.0,-8.27299976348877,-1.6100000143051147,6.142499923706055 -12893,2017-12-20 05:00:00,30.82699966430664,0.0,38.35900115966797,0.0,-7.037000179290772,-1.6100000143051147,5.483500003814697 -12894,2017-12-20 06:00:00,34.763999938964844,0.0,42.27299880981445,0.0,-6.8979997634887695,-2.8359999656677246,5.044000148773193 -12895,2017-12-20 07:00:00,41.38100051879883,0.0,48.946998596191406,0.0,-7.847000122070312,-1.7480000257492063,4.604499816894531 -12896,2017-12-20 08:00:00,38.28200149536133,0.0,47.98199844360352,0.0,-9.104999542236328,-1.7480000257492063,4.384500026702882 -12897,2017-12-20 09:00:00,42.88899993896485,0.0,51.70800018310547,1.3940000534057615,-9.062000274658203,-1.99399995803833,6.801499843597412 -12898,2017-12-20 10:00:00,40.04100036621094,0.0,48.84000015258789,0.0,-8.913000106811523,-1.99399995803833,10.09749984741211 -12899,2017-12-20 11:00:00,42.88899993896485,0.0,51.762001037597656,1.850000023841858,-8.913000106811523,-3.240999937057495,13.173999786376951 -12900,2017-12-20 12:00:00,41.79999923706055,0.0,51.43999862670898,2.5729999542236333,-8.913000106811523,-3.240999937057495,16.469999313354492 -12901,2017-12-20 13:00:00,42.303001403808594,0.0,51.14500045776367,3.5920000076293945,-8.880999565124512,-3.240999937057495,18.66699981689453 -12902,2017-12-20 14:00:00,42.1349983215332,0.0,50.95800018310547,3.99399995803833,-8.869999885559082,-3.240999937057495,21.083999633789062 -12903,2017-12-20 15:00:00,41.54899978637695,0.0,50.36800003051758,3.0559999942779537,-8.869999885559082,-3.1770000457763667,21.083999633789062 -12904,2017-12-20 16:00:00,44.229000091552734,0.0,52.43199920654297,3.859999895095825,-8.902000427246094,-3.1770000457763667,20.424999237060547 -12905,2017-12-20 17:00:00,44.64799880981445,0.0,51.54700088500977,1.8760000467300413,-7.39900016784668,-2.282000064849853,18.66699981689453 -12906,2017-12-20 18:00:00,47.07799911499024,0.0,53.36999893188477,2.3050000667572017,-7.4099998474121085,-2.282000064849853,17.348499298095707 -12907,2017-12-20 19:00:00,44.229000091552734,0.0,49.7509994506836,0.0,-5.052999973297119,-1.22599995136261,15.810500144958494 -12908,2017-12-20 20:00:00,50.26100158691406,0.0,54.30799865722656,2.0369999408721924,-3.858999967575073,0.0,14.272500038146973 -12909,2017-12-20 21:00:00,49.17200088500977,0.0,54.76399993896485,3.002000093460083,-6.396999835968018,0.0,12.95400047302246 -12910,2017-12-20 22:00:00,45.82099914550781,0.0,52.86100006103516,3.108999967575073,-6.460999965667725,-1.2690000534057615,11.635499954223633 -12911,2017-12-20 23:00:00,43.64300155639648,0.0,49.9119987487793,2.7880001068115234,-6.589000225067139,-1.2150000333786009,10.756999969482422 -12912,2017-12-21 00:00:00,39.0359992980957,0.0,45.54299926757813,1.9570000171661377,-6.566999912261963,-1.3329999446868896,9.878000259399414 -12913,2017-12-21 01:00:00,37.10900115966797,0.0,43.77399826049805,1.5549999475479126,-6.493000030517577,-1.2580000162124634,8.99899959564209 -12914,2017-12-21 02:00:00,34.0099983215332,0.0,41.06600189208984,0.0,-6.5349998474121085,-1.2580000162124634,8.119999885559082 -12915,2017-12-21 03:00:00,36.43899917602539,0.0,44.06900024414063,1.715999960899353,-8.187999725341799,-1.2899999618530271,7.241000175476074 -12916,2017-12-21 04:00:00,35.182998657226555,0.0,42.99599838256836,1.9029999971389768,-8.102999687194824,-1.2899999618530271,6.581999778747559 -12917,2017-12-21 05:00:00,35.014999389648445,0.0,41.709999084472656,1.850000023841858,-6.781000137329103,-1.2899999618530271,5.922999858856201 -12918,2017-12-21 06:00:00,36.1879997253418,0.0,43.13000106811523,0.0,-6.684999942779541,-1.2690000534057615,5.483500003814697 -12919,2017-12-21 07:00:00,39.70600128173828,0.0,46.4010009765625,0.0,-6.9190001487731925,-1.2690000534057615,5.044000148773193 -12920,2017-12-21 08:00:00,40.29199981689453,0.0,48.8129997253418,0.0,-8.454000473022461,-1.4709999561309814,4.82450008392334 -12921,2017-12-21 09:00:00,44.3129997253418,0.0,52.137001037597656,2.7880001068115234,-8.645999908447267,-2.687000036239624,7.9004998207092285 -12922,2017-12-21 10:00:00,39.53799819946289,0.0,48.30400085449219,0.0,-8.508000373840332,-2.687000036239624,11.416000366210938 -12923,2017-12-21 11:00:00,39.95700073242188,0.0,48.35800170898438,3.243000030517578,-8.581999778747559,-2.687000036239624,15.15149974822998 -12924,2017-12-21 12:00:00,39.70600128173828,0.0,48.30400085449219,2.5729999542236333,-8.571999549865723,-2.687000036239624,18.007999420166016 -12925,2017-12-21 13:00:00,41.38100051879883,0.0,49.80500030517578,3.2170000076293945,-8.571999549865723,-2.687000036239624,19.765499114990234 -12926,2017-12-21 14:00:00,36.77399826049805,0.0,44.36399841308594,1.5820000171661377,-7.335000038146973,-2.687000036239624,22.1825008392334 -12927,2017-12-21 15:00:00,39.70600128173828,0.0,46.9640007019043,2.7070000171661377,-7.185999870300293,-2.687000036239624,22.1825008392334 -12928,2017-12-21 16:00:00,42.21900177001953,0.0,50.74300003051758,3.6459999084472656,-8.411999702453612,-2.687000036239624,21.304000854492188 -12929,2017-12-21 17:00:00,45.31800079345703,0.0,51.70800018310547,2.8949999809265137,-5.96999979019165,-1.7699999809265137,19.54599952697754 -12930,2017-12-21 18:00:00,45.06700134277344,0.0,51.65499877929688,2.385999917984009,-5.96999979019165,-1.2580000162124634,17.788000106811523 -12931,2017-12-21 19:00:00,44.900001525878906,0.0,50.63600158691406,1.715999960899353,-5.756999969482423,-1.3109999895095823,16.030500411987305 -12932,2017-12-21 20:00:00,44.81600189208984,0.0,49.96599960327149,1.4479999542236328,-5.777999877929688,0.0,14.272500038146973 -12933,2017-12-21 21:00:00,45.65399932861328,4.859000205993652,52.00299835205078,4.7179999351501465,-6.929999828338622,-1.2790000438690186,13.393500328063965 -12934,2017-12-21 22:00:00,46.071998596191406,6.533999919891357,50.98500061035156,5.548999786376953,-4.446000099182129,0.0,13.173999786376951 -12935,2017-12-21 23:00:00,42.97299957275391,5.026000022888184,48.0359992980957,4.664000034332275,-5.500999927520752,0.0,13.173999786376951 -12936,2017-12-22 00:00:00,35.85300064086914,0.0,42.13899993896485,3.2170000076293945,-5.565000057220459,-1.2369999885559082,13.173999786376951 -12937,2017-12-22 01:00:00,37.52799987792969,0.0,42.70199966430664,3.7260000705718994,-4.499000072479248,-1.3009999990463257,12.734000205993652 -12938,2017-12-22 02:00:00,34.59600067138672,0.0,41.57600021362305,4.824999809265137,-7.196000099182129,-2.4730000495910645,11.635499954223633 -12939,2017-12-22 03:00:00,35.85300064086914,0.0,43.31800079345703,4.611000061035156,-7.228000164031982,-2.4730000495910645,10.756999969482422 -12940,2017-12-22 04:00:00,31.496999740600582,0.0,38.17100143432617,2.9489998817443848,-7.34600019454956,-2.4730000495910645,9.878000259399414 -12941,2017-12-22 05:00:00,35.518001556396484,0.0,41.30799865722656,4.690999984741211,-7.238999843597412,-2.4730000495910645,9.43850040435791 -12942,2017-12-22 06:00:00,36.43899917602539,0.0,44.04199981689453,4.584000110626222,-7.4629998207092285,-2.4730000495910645,9.43850040435791 -12943,2017-12-22 07:00:00,38.70100021362305,0.0,43.77399826049805,3.108999967575073,-5.074999809265137,-1.2690000534057615,8.99899959564209 -12944,2017-12-22 08:00:00,41.04600143432617,4.188000202178955,47.6609992980957,4.502999782562256,-6.4710001945495605,-1.4179999828338623,8.559499740600586 -12945,2017-12-22 09:00:00,42.1349983215332,4.775000095367432,49.18899917602539,5.683000087738037,-7.633999824523926,-2.6440000534057617,11.416000366210938 -12946,2017-12-22 10:00:00,39.62200164794922,0.0,47.25899887084961,3.484999895095825,-7.570000171661378,-2.6440000534057617,14.49250030517578 -12947,2017-12-22 11:00:00,39.53799819946289,0.0,47.58000183105469,3.6989998817443848,-7.570000171661378,-2.6440000534057617,18.007999420166016 -12948,2017-12-22 12:00:00,39.62200164794922,0.0,48.11600112915039,4.852000236511231,-7.676000118255615,-2.6440000534057617,21.523500442504886 -12949,2017-12-22 13:00:00,40.04100036621094,4.440000057220459,48.4379997253418,5.816999912261963,-8.784999847412111,-2.6440000534057617,23.94050025939941 -12950,2017-12-22 14:00:00,39.62200164794922,4.355999946594238,47.3390007019043,5.8439998626708975,-7.367000102996826,-2.6440000534057617,26.57699966430664 -12951,2017-12-22 15:00:00,39.790000915527344,5.026000022888184,47.28499984741211,6.138999938964844,-7.367000102996826,-2.6440000534057617,26.57749938964844 -12952,2017-12-22 16:00:00,38.617000579833984,0.0,46.83000183105469,4.959000110626222,-7.367000102996826,-2.6440000534057617,26.357500076293945 -12953,2017-12-22 17:00:00,42.55400085449219,4.355999946594238,49.40299987792969,4.932000160217285,-6.802000045776367,-2.6440000534057617,24.3799991607666 -12954,2017-12-22 18:00:00,45.82099914550781,6.533999919891357,50.47499847412109,5.816999912261963,-5.468999862670898,0.0,21.74300003051757 -12955,2017-12-22 19:00:00,44.39699935913086,4.775000095367432,49.56399917602539,4.182000160217285,-4.414000034332275,0.0,19.54599952697754 -12956,2017-12-22 20:00:00,40.459999084472656,0.0,45.2750015258789,2.5999999046325684,-4.285999774932861,0.0,18.007999420166016 -12957,2017-12-22 21:00:00,45.82099914550781,5.863999843597412,51.43999862670898,5.065999984741211,-5.736000061035156,0.0,16.469499588012695 -12958,2017-12-22 22:00:00,43.97800064086914,5.611999988555908,50.63600158691406,5.227000236511231,-7.058000087738037,0.0,15.590999603271484 -12959,2017-12-22 23:00:00,39.790000915527344,4.105000019073486,45.22100067138672,3.753000020980835,-5.863999843597412,0.0,15.15149974822998 -12960,2017-12-23 00:00:00,37.77899932861328,4.2719998359680185,45.89099884033203,4.744999885559082,-7.131999969482423,-1.2580000162124634,15.15149974822998 -12961,2017-12-23 01:00:00,28.481000900268555,0.0,36.13399887084961,2.0369999408721924,-6.99399995803833,-1.2899999618530271,15.15149974822998 -12962,2017-12-23 02:00:00,35.26599884033203,0.0,41.87099838256836,4.209000110626222,-5.777999877929688,-1.2150000333786009,15.15149974822998 -12963,2017-12-23 03:00:00,30.072999954223643,0.0,38.01100158691406,3.002000093460083,-7.4099998474121085,-1.246999979019165,14.711999893188477 -12964,2017-12-23 04:00:00,26.13599967956543,0.0,32.83700180053711,1.312999963760376,-7.39900016784668,-2.5480000972747803,14.491999626159668 -12965,2017-12-23 05:00:00,31.58099937438965,0.0,39.45800018310547,2.7880001068115234,-7.494999885559082,-2.5480000972747803,14.272500038146973 -12966,2017-12-23 06:00:00,37.946998596191406,0.0,43.58599853515625,4.3429999351501465,-6.184000015258789,-1.5570000410079956,13.833000183105469 -12967,2017-12-23 07:00:00,37.44400024414063,0.0,45.06000137329102,4.235000133514403,-7.4099998474121085,-1.375,13.61299991607666 -12968,2017-12-23 08:00:00,36.27199935913086,0.0,42.27299880981445,2.358999967575073,-6.193999767303468,-1.2369999885559082,13.393500328063965 -12969,2017-12-23 09:00:00,39.62200164794922,0.0,47.23199844360352,4.209000110626222,-7.494999885559082,-2.45199990272522,13.833000183105469 -12970,2017-12-23 10:00:00,41.88399887084961,4.775000095367432,49.83200073242188,5.896999835968018,-7.39900016784668,-2.45199990272522,16.030500411987305 -12971,2017-12-23 11:00:00,41.54899978637695,0.0,49.5099983215332,4.557000160217285,-7.441999912261963,-2.45199990272522,18.44750022888184 -12972,2017-12-23 12:00:00,35.182998657226555,0.0,42.88899993896485,1.7960000038146973,-7.355999946594237,-2.45199990272522,20.20549964904785 -12973,2017-12-23 13:00:00,38.53300094604492,0.0,47.04399871826172,4.7709999084472665,-8.805999755859375,-2.45199990272522,22.1825008392334 -12974,2017-12-23 14:00:00,38.198001861572266,0.0,45.78400039672852,3.7260000705718994,-7.7189998626708975,-2.45199990272522,23.72050094604492 -12975,2017-12-23 15:00:00,39.2869987487793,0.0,46.88299942016602,4.2890000343322745,-7.815000057220459,-2.45199990272522,24.160499572753903 -12976,2017-12-23 16:00:00,39.20299911499024,0.0,46.50799942016602,4.3429999351501465,-7.729000091552732,-2.45199990272522,23.500999450683597 -12977,2017-12-23 17:00:00,44.0620002746582,0.0,49.83200073242188,3.6989998817443848,-6.449999809265138,-2.45199990272522,22.402000427246094 -12978,2017-12-23 18:00:00,44.73199844360352,6.031000137329103,50.44800186157226,5.414999961853027,-5.064000129699707,0.0,21.52300071716309 -12979,2017-12-23 19:00:00,37.025001525878906,0.0,44.25600051879883,0.0,-6.982999801635742,-1.22599995136261,20.645000457763672 -12980,2017-12-23 20:00:00,34.93099975585937,0.0,43.21099853515625,1.6890000104904177,-7.122000217437744,-1.2899999618530271,20.20499992370605 -12981,2017-12-23 21:00:00,42.63800048828125,4.2719998359680185,49.5369987487793,4.824999809265137,-5.821000099182129,-1.246999979019165,19.766000747680664 -12982,2017-12-23 22:00:00,42.72200012207031,4.941999912261963,49.18899917602539,5.227000236511231,-5.916999816894531,-2.4730000495910645,19.326499938964844 -12983,2017-12-23 23:00:00,39.874000549316406,0.0,46.64199829101562,1.5549999475479126,-6.045000076293945,-1.2899999618530271,19.10650062561035 -12984,2017-12-24 00:00:00,26.972999572753903,0.0,33.748001098632805,-2.2780001163482666,-6.130000114440918,-1.2899999618530271,18.44750022888184 -12985,2017-12-24 01:00:00,34.512001037597656,0.0,41.73699951171875,0.0,-6.428999900817871,-2.505000114440918,18.00749969482422 -12986,2017-12-24 02:00:00,33.25600051879883,0.0,40.90599822998047,1.4210000038146973,-6.673999786376952,-2.505000114440918,17.568500518798828 -12987,2017-12-24 03:00:00,35.76900100708008,0.0,42.48699951171875,1.312999963760376,-7.185999870300293,-2.505000114440918,16.909000396728516 -12988,2017-12-24 04:00:00,32.92100143432617,0.0,39.430999755859375,0.0,-7.260000228881836,-2.505000114440918,16.030500411987305 -12989,2017-12-24 05:00:00,32.501998901367195,0.0,40.15499877929688,0.0,-7.196000099182129,-2.505000114440918,15.590999603271484 -12990,2017-12-24 06:00:00,35.60100173950195,0.0,43.31800079345703,0.0,-7.441999912261963,-2.505000114440918,14.711999893188477 -12991,2017-12-24 07:00:00,36.52299880981445,0.0,44.17599868774414,1.4739999771118164,-7.494999885559082,-2.505000114440918,14.272500038146973 -12992,2017-12-24 08:00:00,33.674999237060554,0.0,40.69100189208984,0.0,-6.204999923706055,-2.505000114440918,13.833000183105469 -12993,2017-12-24 09:00:00,34.59600067138672,0.0,42.86199951171875,0.0,-7.6020002365112305,-2.505000114440918,14.272500038146973 -12994,2017-12-24 10:00:00,32.75299835205078,0.0,40.74499893188477,0.0,-8.838000297546387,-2.505000114440918,15.371000289916992 -12995,2017-12-24 11:00:00,34.512001037597656,0.0,41.57600021362305,0.0,-7.547999858856201,-2.505000114440918,16.909500122070312 -12996,2017-12-24 12:00:00,38.44900131225586,0.0,46.2130012512207,0.0,-7.559000015258789,-2.505000114440918,18.66699981689453 -12997,2017-12-24 13:00:00,39.45500183105469,0.0,47.5270004272461,0.0,-7.50600004196167,-2.505000114440918,19.54599952697754 -12998,2017-12-24 14:00:00,39.70600128173828,0.0,47.20500183105469,1.8229999542236328,-7.515999794006348,-2.505000114440918,19.765499114990234 -12999,2017-12-24 15:00:00,39.53799819946289,0.0,46.749000549316406,1.4739999771118164,-7.50600004196167,-2.505000114440918,19.765499114990234 -13000,2017-12-24 16:00:00,37.61199951171875,0.0,45.16799926757813,0.0,-6.4710001945495605,-2.505000114440918,19.326499938964844 -13001,2017-12-24 17:00:00,39.0359992980957,0.0,44.63199996948242,0.0,-5.203000068664551,-1.246999979019165,18.007999420166016 -13002,2017-12-24 18:00:00,37.86299896240234,0.0,42.72800064086914,0.0,-3.986999988555908,0.0,16.68950080871582 -13003,2017-12-24 19:00:00,37.44400024414063,0.0,44.36399841308594,0.0,-6.513999938964844,-1.2580000162124634,15.371500015258787 -13004,2017-12-24 20:00:00,45.4020004272461,0.0,50.74300003051758,0.0,-5.203000068664551,0.0,14.053000450134276 -13005,2017-12-24 21:00:00,41.29800033569336,0.0,49.56399917602539,0.0,-8.145000457763674,-1.2150000333786009,12.95400047302246 -13006,2017-12-24 22:00:00,45.4020004272461,0.0,51.19900131225586,2.4130001068115234,-5.352000236511231,0.0,12.074999809265137 -13007,2017-12-24 23:00:00,42.80500030517578,0.0,48.7859992980957,1.4210000038146973,-5.383999824523926,0.0,11.635499954223633 -13008,2017-12-25 00:00:00,39.11999893188477,0.0,45.00699996948242,1.9029999971389768,-5.703999996185303,0.0,10.756999969482422 -13009,2017-12-25 01:00:00,37.44400024414063,0.0,43.26399993896485,0.0,-4.531000137329102,0.0,9.878000259399414 -13010,2017-12-25 02:00:00,37.52799987792969,0.0,42.94300079345703,0.0,-5.8959999084472665,0.0,8.779500007629395 -13011,2017-12-25 03:00:00,37.025001525878906,0.0,42.54100036621094,0.0,-5.8959999084472665,0.0,7.9004998207092285 -13012,2017-12-25 04:00:00,35.85300064086914,0.0,42.29899978637695,0.0,-7.185999870300293,-2.440999984741211,7.241000175476074 -13013,2017-12-25 05:00:00,34.17699813842773,0.0,42.21900177001953,1.5549999475479126,-7.355999946594237,-2.440999984741211,6.581999778747559 -13014,2017-12-25 06:00:00,34.429000854492195,0.0,39.99399948120117,0.0,-6.248000144958496,-2.440999984741211,5.922999858856201 -13015,2017-12-25 07:00:00,39.2869987487793,0.0,44.36399841308594,0.0,-4.9790000915527335,-1.2690000534057615,5.483500003814697 -13016,2017-12-25 08:00:00,39.45500183105469,0.0,45.8380012512207,0.0,-6.4710001945495605,-1.3009999990463257,5.263500213623047 -13017,2017-12-25 09:00:00,42.387001037597656,0.0,50.12699890136719,2.9219999313354488,-7.611999988555907,-2.5269999504089355,7.4604997634887695 -13018,2017-12-25 10:00:00,39.20299911499024,0.0,46.31999969482422,0.0,-6.311999797821045,-2.5269999504089355,11.63599967956543 -13019,2017-12-25 11:00:00,39.70600128173828,0.0,47.1510009765625,0.0,-7.750999927520753,-2.5269999504089355,15.371000289916992 -13020,2017-12-25 12:00:00,35.93600082397461,0.0,43.45199966430664,0.0,-7.771999835968018,-2.5269999504089355,18.227500915527344 -13021,2017-12-25 13:00:00,34.09400177001953,0.0,42.80899810791016,0.0,-9.083000183105469,-2.5269999504089355,19.98550033569336 -13022,2017-12-25 14:00:00,32.250999450683594,0.0,39.77999877929688,0.0,-7.847000122070312,-2.5269999504089355,21.96299934387207 -13023,2017-12-25 15:00:00,38.36600112915039,0.0,46.66899871826172,2.815000057220459,-7.771999835968018,-2.5269999504089355,21.30349922180176 -13024,2017-12-25 16:00:00,41.13000106811523,0.0,48.7599983215332,2.4130001068115234,-7.644000053405763,-2.5269999504089355,19.326499938964844 -13025,2017-12-25 17:00:00,44.64799880981445,0.0,49.99300003051758,2.546999931335449,-5.181000232696533,-1.22599995136261,17.568000793457028 -13026,2017-12-25 18:00:00,46.49100112915039,0.0,51.762001037597656,2.1440000534057617,-5.394999980926514,-1.2580000162124634,15.590999603271484 -13027,2017-12-25 19:00:00,44.14599990844727,0.0,51.14500045776367,1.7690000534057615,-7.131999969482423,-1.2580000162124634,13.833000183105469 -13028,2017-12-25 20:00:00,45.73699951171875,0.0,52.96799850463867,2.252000093460083,-6.172999858856201,-1.2899999618530271,12.51449966430664 -13029,2017-12-25 21:00:00,45.90499877929688,0.0,51.84199905395508,2.1710000038146973,-6.162000179290772,-2.5369999408721924,11.635499954223633 -13030,2017-12-25 22:00:00,42.47000122070313,0.0,48.30400085449219,1.4739999771118164,-6.02400016784668,-2.5369999408721924,10.756999969482422 -13031,2017-12-25 23:00:00,26.88999938964844,-4.775000095367432,33.21200180053711,-3.88700008392334,-6.642000198364258,-2.5369999408721924,9.878000259399414 -13032,2017-12-26 00:00:00,29.066999435424805,0.0,35.25,-2.760999917984009,-5.394999980926514,-2.5369999408721924,9.218500137329102 -13033,2017-12-26 01:00:00,34.93099975585937,0.0,41.38800048828125,0.0,-6.6630001068115225,-1.3109999895095823,8.559499740600586 -13034,2017-12-26 02:00:00,34.429000854492195,0.0,40.52999877929688,0.0,-6.684999942779541,-1.3109999895095823,8.559499740600586 -13035,2017-12-26 03:00:00,34.261001586914055,0.0,40.61100006103516,0.0,-6.439000129699707,-2.569000005722046,8.559499740600586 -13036,2017-12-26 04:00:00,33.590999603271484,0.0,40.39599990844727,0.0,-6.364999771118164,-2.569000005722046,7.9004998207092285 -13037,2017-12-26 05:00:00,35.0989990234375,0.0,41.25400161743164,0.0,-6.236999988555907,0.0,7.4604997634887695 -13038,2017-12-26 06:00:00,34.68000030517578,0.0,40.50299835205078,0.0,-5.0960001945495605,-1.2150000333786009,7.021500110626223 -13039,2017-12-26 07:00:00,39.11999893188477,0.0,45.22100067138672,0.0,-5.085000038146973,-1.3009999990463257,6.581999778747559 -13040,2017-12-26 08:00:00,35.85300064086914,0.0,42.75500106811523,0.0,-6.322000026702881,-2.463000059127808,6.142499923706055 -13041,2017-12-26 09:00:00,46.40700149536133,4.105000019073486,53.77199935913086,4.879000186920166,-7.4629998207092285,-2.463000059127808,7.9004998207092285 -13042,2017-12-26 10:00:00,38.86800003051758,0.0,48.7599983215332,0.0,-10.022000312805176,-2.463000059127808,11.196000099182127 -13043,2017-12-26 11:00:00,39.70600128173828,0.0,47.60699844360352,0.0,-8.763999938964844,-2.463000059127808,15.590499877929688 -13044,2017-12-26 12:00:00,37.61199951171875,0.0,47.98199844360352,1.5820000171661377,-10.118000030517578,-3.6989998817443848,19.326499938964844 -13045,2017-12-26 13:00:00,39.874000549316406,0.0,50.02000045776367,3.484999895095825,-10.053999900817873,-3.6989998817443848,21.74349975585937 -13046,2017-12-26 14:00:00,39.2869987487793,0.0,49.18899917602539,3.190000057220459,-10.107000350952148,-3.6989998817443848,23.500999450683597 -13047,2017-12-26 15:00:00,39.11999893188477,0.0,48.7599983215332,2.9219999313354488,-10.095999717712402,-2.0899999141693115,23.500999450683597 -13048,2017-12-26 16:00:00,42.55400085449219,0.0,50.63600158691406,3.108999967575073,-8.732000350952147,-2.0899999141693115,22.84199905395508 -13049,2017-12-26 17:00:00,42.21900177001953,0.0,48.8129997253418,1.4210000038146973,-7.452000141143799,-2.0899999141693115,21.083999633789062 -13050,2017-12-26 18:00:00,47.07799911499024,0.0,52.70000076293945,2.546999931335449,-6.172999858856201,-2.0899999141693115,19.10650062561035 -13051,2017-12-26 19:00:00,40.125,0.0,46.69599914550781,0.0,-5.660999774932861,-1.4290000200271606,16.909000396728516 -13052,2017-12-26 20:00:00,43.14099884033203,0.0,50.20700073242188,1.4210000038146973,-7.14300012588501,-1.4290000200271606,15.810999870300291 -13053,2017-12-26 21:00:00,44.64799880981445,0.0,50.98500061035156,2.118000030517578,-7.15399980545044,-1.4290000200271606,14.932000160217283 -13054,2017-12-26 22:00:00,41.29800033569336,0.0,47.7140007019043,1.4210000038146973,-6.9619998931884775,-1.3969999551773071,14.272500038146973 -13055,2017-12-26 23:00:00,36.43899917602539,0.0,41.97800064086914,0.0,-5.992000102996826,-1.3969999551773071,13.833000183105469 -13056,2017-12-27 00:00:00,35.685001373291016,0.0,42.00500106811523,0.0,-7.291999816894531,-2.5160000324249268,13.393500328063965 -13057,2017-12-27 01:00:00,35.014999389648445,0.0,40.90599822998047,0.0,-6.184000015258789,-2.5160000324249268,12.294500350952148 -13058,2017-12-27 02:00:00,33.674999237060554,0.0,39.86000061035156,0.0,-6.193999767303468,-2.5160000324249268,11.416000366210938 -13059,2017-12-27 03:00:00,32.92100143432617,0.0,38.25199890136719,0.0,-5.394999980926514,-2.5160000324249268,10.537500381469728 -13060,2017-12-27 04:00:00,31.32900047302246,0.0,37.15299987792969,0.0,-5.288000106811523,-2.5160000324249268,10.317500114440918 -13061,2017-12-27 05:00:00,31.916000366210927,0.0,38.33200073242188,0.0,-6.3540000915527335,-2.5160000324249268,9.43850040435791 -13062,2017-12-27 06:00:00,34.847000122070305,0.0,42.32600021362305,0.0,-7.686999797821045,-2.5160000324249268,8.779500007629395 -13063,2017-12-27 07:00:00,30.99399948120117,0.0,37.90299987792969,-2.1979999542236333,-6.22599983215332,-2.5160000324249268,8.559499740600586 -13064,2017-12-27 08:00:00,40.20899963378906,0.0,44.87300109863281,0.0,-4.105000019073486,-2.5160000324249268,8.779500007629395 -13065,2017-12-27 09:00:00,42.97299957275391,0.0,50.34099960327149,2.385999917984009,-7.835999965667725,-2.5160000324249268,10.09749984741211 -13066,2017-12-27 10:00:00,36.104000091552734,0.0,44.44400024414063,0.0,-7.835999965667725,-2.5160000324249268,12.294500350952148 -13067,2017-12-27 11:00:00,44.56499862670898,0.0,51.81600189208984,4.477000236511231,-6.513999938964844,-2.5160000324249268,15.15149974822998 -13068,2017-12-27 12:00:00,41.2140007019043,0.0,49.21500015258789,2.9219999313354488,-7.85699987411499,-2.5160000324249268,17.568000793457028 -13069,2017-12-27 13:00:00,38.86800003051758,0.0,45.59700012207031,1.6890000104904177,-6.620999813079834,-2.5160000324249268,18.44750022888184 -13070,2017-12-27 14:00:00,39.95700073242188,0.0,48.0359992980957,2.9489998817443848,-7.985000133514402,-2.5160000324249268,18.66699981689453 -13071,2017-12-27 15:00:00,36.43899917602539,0.0,42.70199966430664,0.0,-6.5349998474121085,-2.5160000324249268,18.66699981689453 -13072,2017-12-27 16:00:00,44.81600189208984,0.0,51.19900131225586,3.5380001068115234,-5.40500020980835,-2.5160000324249268,18.227500915527344 -13073,2017-12-27 17:00:00,45.48600006103516,0.0,52.137001037597656,2.815000057220459,-5.683000087738037,-2.5160000324249268,17.348499298095707 -13074,2017-12-27 18:00:00,46.82600021362305,0.0,51.46699905395508,2.438999891281128,-4.423999786376953,-1.2580000162124634,16.909000396728516 -13075,2017-12-27 19:00:00,44.229000091552734,0.0,48.54499816894531,1.5820000171661377,-4.541999816894531,-1.3220000267028809,16.68950080871582 -13076,2017-12-27 20:00:00,43.2239990234375,0.0,48.571998596191406,1.3940000534057615,-4.541999816894531,-1.3109999895095823,16.469499588012695 -13077,2017-12-27 21:00:00,46.74300003051758,0.0,51.33300018310547,2.3320000171661377,-4.402999877929688,0.0,16.469499588012695 -13078,2017-12-27 22:00:00,38.11399841308594,0.0,44.09500122070313,0.0,-4.670000076293945,-1.4390000104904177,16.469499588012695 -13079,2017-12-27 23:00:00,37.19300079345703,0.0,41.97800064086914,0.0,-4.190000057220459,0.0,16.469499588012695 -13080,2017-12-28 00:00:00,35.518001556396484,0.0,40.63800048828125,0.0,-4.2220001220703125,-1.2150000333786009,16.25 -13081,2017-12-28 01:00:00,35.93600082397461,0.0,41.790000915527344,0.0,-5.330999851226807,-1.3220000267028809,15.810999870300291 -13082,2017-12-28 02:00:00,35.26599884033203,0.0,41.14699935913086,1.4210000038146973,-6.418000221252441,-1.3220000267028809,15.810999870300291 -13083,2017-12-28 03:00:00,36.43899917602539,0.0,41.30799865722656,1.7690000534057615,-3.869999885559082,-1.22599995136261,15.810999870300291 -13084,2017-12-28 04:00:00,33.84199905395508,0.0,39.53799819946289,1.4210000038146973,-5.36299991607666,-2.463000059127808,15.590999603271484 -13085,2017-12-28 05:00:00,34.93099975585937,0.0,41.57600021362305,1.7960000038146973,-6.502999782562256,-2.463000059127808,15.590999603271484 -13086,2017-12-28 06:00:00,34.847000122070305,0.0,40.63800048828125,0.0,-5.1599998474121085,-1.343000054359436,15.590999603271484 -13087,2017-12-28 07:00:00,38.78499984741211,0.0,44.73899841308594,1.3669999837875366,-5.276999950408936,-1.2790000438690186,15.15149974822998 -13088,2017-12-28 08:00:00,37.86299896240234,0.0,43.45199966430664,1.4210000038146973,-6.269000053405763,0.0,15.15149974822998 -13089,2017-12-28 09:00:00,34.68000030517578,0.0,40.66400146484375,0.0,-6.269000053405763,-1.246999979019165,14.711999893188477 -13090,2017-12-28 10:00:00,40.3759994506836,0.0,46.85599899291992,2.0639998912811284,-6.001999855041504,-1.246999979019165,14.272500038146973 -13091,2017-12-28 11:00:00,42.97299957275391,0.0,50.18000030517578,1.7690000534057615,-6.3540000915527335,-1.246999979019165,14.053000450134276 -13092,2017-12-28 12:00:00,38.617000579833984,0.0,46.9640007019043,0.0,-7.6020002365112305,-2.494999885559082,13.833000183105469 -13093,2017-12-28 13:00:00,40.3759994506836,0.0,46.749000549316406,0.0,-6.3439998626708975,-2.494999885559082,14.491999626159668 -13094,2017-12-28 14:00:00,39.62200164794922,0.0,45.94499969482422,0.0,-6.269000053405763,-2.494999885559082,14.711999893188477 -13095,2017-12-28 15:00:00,42.97299957275391,0.0,50.23400115966797,2.627000093460083,-8.048999786376951,-2.494999885559082,14.932000160217283 -13096,2017-12-28 16:00:00,42.55400085449219,0.0,50.04600143432617,3.5380001068115234,-6.802000045776367,-2.494999885559082,15.15149974822998 -13097,2017-12-28 17:00:00,41.88399887084961,0.0,48.91999816894531,0.0,-6.727000236511231,-2.494999885559082,15.590999603271484 -13098,2017-12-28 18:00:00,43.81100082397461,0.0,49.67100143432617,1.5010000467300415,-6.684999942779541,-2.494999885559082,15.810999870300291 -13099,2017-12-28 19:00:00,43.391998291015625,0.0,50.09999847412109,1.7960000038146973,-5.586999893188477,-2.494999885559082,16.030500411987305 -13100,2017-12-28 20:00:00,44.39699935913086,0.0,51.03799819946289,2.118000030517578,-5.8420000076293945,-2.494999885559082,16.25 -13101,2017-12-28 21:00:00,43.72700119018555,0.0,50.85100173950195,2.6540000438690186,-5.927999973297119,-1.2790000438690186,16.25 -13102,2017-12-28 22:00:00,42.387001037597656,0.0,47.79499816894531,2.4660000801086426,-4.808000087738037,0.0,16.25 -13103,2017-12-28 23:00:00,41.38100051879883,0.0,46.66899871826172,2.546999931335449,-4.605999946594238,0.0,16.030500411987305 -13104,2017-12-29 00:00:00,36.60699844360352,0.0,42.03099822998047,1.4739999771118164,-4.605999946594238,-1.3220000267028809,16.030500411987305 -13105,2017-12-29 01:00:00,36.35499954223633,0.0,41.95100021362305,0.0,-5.980999946594237,-1.2150000333786009,15.590999603271484 -13106,2017-12-29 02:00:00,34.68000030517578,0.0,40.61100006103516,0.0,-6.396999835968018,-1.3650000095367432,15.15149974822998 -13107,2017-12-29 03:00:00,34.847000122070305,0.0,40.77199935913086,1.9299999475479128,-6.449999809265138,-1.2790000438690186,15.15149974822998 -13108,2017-12-29 04:00:00,33.590999603271484,0.0,40.79800033569336,1.3940000534057615,-6.428999900817871,-2.494999885559082,14.931500434875488 -13109,2017-12-29 05:00:00,34.261001586914055,0.0,40.04800033569336,0.0,-6.3540000915527335,-2.494999885559082,14.931500434875488 -13110,2017-12-29 06:00:00,33.84199905395508,0.0,41.33399963378906,1.5279999971389768,-7.611999988555907,-1.3009999990463257,14.931500434875488 -13111,2017-12-29 07:00:00,35.182998657226555,0.0,42.19200134277344,0.0,-6.375999927520753,-1.3009999990463257,14.931500434875488 -13112,2017-12-29 08:00:00,35.182998657226555,0.0,41.57600021362305,0.0,-6.375999927520753,-1.3009999990463257,15.15149974822998 -13113,2017-12-29 09:00:00,40.79499816894531,0.0,48.2239990234375,2.009999990463257,-7.6020002365112305,-2.5369999408721924,15.15149974822998 -13114,2017-12-29 10:00:00,31.32900047302246,0.0,38.62699890136719,-2.5199999809265137,-6.3540000915527335,-2.5369999408721924,16.030500411987305 -13115,2017-12-29 11:00:00,33.50699996948242,0.0,41.22700119018555,0.0,-8.060000419616701,-2.5369999408721924,16.909000396728516 -13116,2017-12-29 12:00:00,37.025001525878906,0.0,44.685001373291016,0.0,-6.822999954223633,-2.5369999408721924,18.007999420166016 -13117,2017-12-29 13:00:00,42.72200012207031,0.0,50.15399932861328,2.680999994277954,-6.813000202178955,-2.5369999408721924,18.44700050354004 -13118,2017-12-29 14:00:00,37.86299896240234,0.0,45.67699813842773,0.0,-8.102999687194824,-2.5369999408721924,18.66699981689453 -13119,2017-12-29 15:00:00,35.85300064086914,0.0,42.51399993896485,0.0,-6.929999828338622,-2.5369999408721924,19.10650062561035 -13120,2017-12-29 16:00:00,39.37099838256836,0.0,45.62300109863281,0.0,-5.491000175476074,-1.2899999618530271,19.10650062561035 -13121,2017-12-29 17:00:00,40.459999084472656,0.0,46.9640007019043,0.0,-5.40500020980835,-1.406999945640564,19.10650062561035 -13122,2017-12-29 18:00:00,42.387001037597656,0.0,46.749000549316406,0.0,-4.201000213623047,0.0,19.10650062561035 -13123,2017-12-29 19:00:00,41.71599960327149,0.0,47.875,0.0,-5.703999996185303,-1.2790000438690186,18.66699981689453 -13124,2017-12-29 20:00:00,44.983001708984375,0.0,49.7509994506836,0.0,-4.232999801635741,0.0,18.44700050354004 -13125,2017-12-29 21:00:00,44.48099899291992,0.0,49.02799987792969,0.0,-4.296999931335448,0.0,18.44700050354004 -13126,2017-12-29 22:00:00,41.96799850463867,0.0,47.84799957275391,0.0,-5.5229997634887695,-1.2690000534057615,18.227500915527344 -13127,2017-12-29 23:00:00,38.78499984741211,0.0,45.2750015258789,0.0,-5.714000225067139,-1.3009999990463257,18.227500915527344 -13128,2017-12-30 00:00:00,35.014999389648445,0.0,41.57600021362305,0.0,-5.76800012588501,-1.2690000534057615,18.227500915527344 -13129,2017-12-30 01:00:00,33.674999237060554,0.0,39.80699920654297,0.0,-5.8420000076293945,-2.45199990272522,18.227500915527344 -13130,2017-12-30 02:00:00,24.459999084472656,-4.440000057220459,32.89099884033203,-3.1630001068115234,-8.336999893188478,-2.45199990272522,18.00749969482422 -13131,2017-12-30 03:00:00,31.74799919128418,0.0,39.16299819946289,0.0,-7.122000217437744,-2.45199990272522,17.788000106811523 -13132,2017-12-30 04:00:00,30.239999771118164,0.0,38.59999847412109,0.0,-8.369000434875487,-2.45199990272522,17.12849998474121 -13133,2017-12-30 05:00:00,33.17200088500977,0.0,40.15499877929688,0.0,-7.046999931335449,-2.45199990272522,16.030000686645508 -13134,2017-12-30 06:00:00,34.345001220703125,0.0,41.30799865722656,0.0,-6.982999801635742,-2.45199990272522,16.030500411987305 -13135,2017-12-30 07:00:00,35.60100173950195,0.0,42.00500106811523,0.0,-5.736000061035156,-1.4179999828338623,16.030500411987305 -13136,2017-12-30 08:00:00,37.946998596191406,0.0,45.24800109863281,0.0,-7.206999778747559,-1.2690000534057615,16.030500411987305 -13137,2017-12-30 09:00:00,34.429000854492195,0.0,42.91600036621094,0.0,-8.645999908447267,-2.5269999504089355,16.25 -13138,2017-12-30 10:00:00,34.847000122070305,0.0,42.38000106811523,0.0,-7.547999858856201,-2.5269999504089355,16.469999313354492 -13139,2017-12-30 11:00:00,42.1349983215332,0.0,49.96599960327149,0.0,-7.761000156402588,-2.5269999504089355,16.469999313354492 -13140,2017-12-30 12:00:00,39.874000549316406,0.0,48.571998596191406,0.0,-7.761000156402588,-2.5269999504089355,16.030000686645508 -13141,2017-12-30 13:00:00,41.04600143432617,0.0,49.1349983215332,0.0,-7.697999954223633,-2.5269999504089355,16.25 -13142,2017-12-30 14:00:00,41.71599960327149,0.0,49.69800186157226,0.0,-7.697999954223633,-2.5269999504089355,16.25 -13143,2017-12-30 15:00:00,42.387001037597656,0.0,50.34099960327149,1.4479999542236328,-7.7189998626708975,-2.5269999504089355,15.590999603271484 -13144,2017-12-30 16:00:00,43.55899810791016,0.0,50.87699890136719,0.0,-7.7189998626708975,-2.5269999504089355,15.15149974822998 -13145,2017-12-30 17:00:00,45.4020004272461,0.0,51.01100158691406,0.0,-6.48199987411499,-2.5269999504089355,14.711999893188477 -13146,2017-12-30 18:00:00,46.15599822998047,0.0,51.62799835205078,0.0,-4.861999988555908,-1.246999979019165,14.272500038146973 -13147,2017-12-30 19:00:00,40.9630012512207,0.0,47.3390007019043,0.0,-6.439000129699707,-1.2150000333786009,14.052499771118164 -13148,2017-12-30 20:00:00,42.80500030517578,0.0,49.18899917602539,0.0,-6.4710001945495605,-2.45199990272522,13.833000183105469 -13149,2017-12-30 21:00:00,44.81600189208984,0.0,51.86899948120117,0.0,-6.5349998474121085,-2.45199990272522,13.173999786376951 -13150,2017-12-30 22:00:00,43.81100082397461,0.0,50.39500045776367,0.0,-6.5349998474121085,-2.45199990272522,12.51449966430664 -13151,2017-12-30 23:00:00,41.04600143432617,0.0,48.35800170898438,0.0,-6.610000133514402,-2.45199990272522,12.074999809265137 -13152,2017-12-31 00:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13153,2017-12-31 01:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13154,2017-12-31 02:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13155,2017-12-31 03:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13156,2017-12-31 04:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13157,2017-12-31 05:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13158,2017-12-31 06:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13159,2017-12-31 07:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13160,2017-12-31 08:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13161,2017-12-31 09:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13162,2017-12-31 10:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13163,2017-12-31 11:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13164,2017-12-31 12:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13165,2017-12-31 13:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13166,2017-12-31 14:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13167,2017-12-31 15:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13168,2017-12-31 16:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13169,2017-12-31 17:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13170,2017-12-31 18:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13171,2017-12-31 19:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13172,2017-12-31 20:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13173,2017-12-31 21:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13174,2017-12-31 22:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13175,2017-12-31 23:00:00,37.86299896240234,0.0,44.95299911499024,0.0,-6.790999889373777,-2.45199990272522,11.635499954223633 -13176,2018-01-01 00:00:00,38.86800003051758,0.0,44.79199981689453,0.0,-6.204999923706055,-1.3650000095367432,9.878000259399414 -13177,2018-01-01 01:00:00,32.83700180053711,0.0,38.54700088500977,-2.5199999809265137,-6.269000053405763,-1.3650000095367432,9.878000259399414 -13178,2018-01-01 02:00:00,36.02000045776367,0.0,41.92399978637695,0.0,-6.151999950408936,-1.3650000095367432,9.43850040435791 -13179,2018-01-01 03:00:00,34.0099983215332,0.0,40.63800048828125,0.0,-7.377999782562256,-1.3650000095367432,9.43850040435791 -13180,2018-01-01 04:00:00,34.09400177001953,0.0,40.28900146484375,0.0,-6.065999984741211,-1.3650000095367432,8.99899959564209 -13181,2018-01-01 05:00:00,34.68000030517578,0.0,40.93199920654297,0.0,-6.045000076293945,-2.697000026702881,8.99899959564209 -13182,2018-01-01 06:00:00,34.93099975585937,0.0,41.36100006103516,0.0,-6.130000114440918,-2.697000026702881,8.779000282287598 -13183,2018-01-01 07:00:00,36.858001708984375,0.0,42.72800064086914,0.0,-6.418000221252441,-1.3220000267028809,8.340000152587889 -13184,2018-01-01 08:00:00,35.26599884033203,0.0,41.92399978637695,-1.3400000333786009,-7.65500020980835,-1.3220000267028809,8.340000152587889 -13185,2018-01-01 09:00:00,38.44900131225586,0.0,46.2400016784668,0.0,-7.686999797821045,-1.3220000267028809,9.878000259399414 -13186,2018-01-01 10:00:00,38.95199966430664,0.0,45.8650016784668,0.0,-8.048999786376951,-1.3220000267028809,12.294500350952148 -13187,2018-01-01 11:00:00,38.78499984741211,0.0,45.32899856567383,0.0,-6.758999824523926,-1.3220000267028809,15.371000289916992 -13188,2018-01-01 12:00:00,36.104000091552734,0.0,43.63999938964844,0.0,-8.145000457763674,-1.3220000267028809,18.00749969482422 -13189,2018-01-01 13:00:00,35.85300064086914,0.0,42.88899993896485,0.0,-6.652999877929688,-1.3220000267028809,19.326499938964844 -13190,2018-01-01 14:00:00,36.52299880981445,0.0,43.23799896240234,0.0,-6.684999942779541,-1.3220000267028809,21.30349922180176 -13191,2018-01-01 15:00:00,33.674999237060554,0.0,41.57600021362305,0.0,-7.985000133514402,-1.2369999885559082,21.523500442504886 -13192,2018-01-01 16:00:00,39.53799819946289,0.0,45.8380012512207,0.0,-6.684999942779541,-1.2369999885559082,20.644500732421875 -13193,2018-01-01 17:00:00,40.54399871826172,0.0,47.58000183105469,0.0,-6.9619998931884775,-1.2690000534057615,18.886499404907227 -13194,2018-01-01 18:00:00,44.81600189208984,0.0,49.43000030517578,0.0,-5.25600004196167,-1.246999979019165,17.568500518798828 -13195,2018-01-01 19:00:00,40.71099853515625,0.0,46.26699829101562,-1.312999963760376,-5.607999801635742,-1.2150000333786009,16.030500411987305 -13196,2018-01-01 20:00:00,45.31800079345703,0.0,50.34099960327149,0.0,-4.9679999351501465,-1.2580000162124634,15.590999603271484 -13197,2018-01-01 21:00:00,44.64799880981445,0.0,49.3759994506836,0.0,-4.935999870300293,0.0,15.371500015258787 -13198,2018-01-01 22:00:00,39.37099838256836,0.0,45.94499969482422,0.0,-6.673999786376952,-1.2899999618530271,15.371500015258787 -13199,2018-01-01 23:00:00,36.02000045776367,0.0,41.84400177001953,0.0,-5.5329999923706055,-1.3109999895095823,15.590999603271484 -13200,2018-01-02 00:00:00,36.94200134277344,0.0,41.87099838256836,0.0,-5.427000045776367,0.0,15.590999603271484 -13201,2018-01-02 01:00:00,34.261001586914055,0.0,39.72600173950195,0.0,-5.660999774932861,0.0,15.590999603271484 -13202,2018-01-02 02:00:00,32.08300018310547,0.0,38.30500030517578,-1.312999963760376,-7.314000129699707,-1.3860000371932983,15.371000289916992 -13203,2018-01-02 03:00:00,29.56999969482422,0.0,36.26800155639648,-1.7960000038146973,-6.077000141143799,-1.3860000371932983,15.15149974822998 -13204,2018-01-02 04:00:00,31.74799919128418,0.0,38.17100143432617,0.0,-6.130000114440918,-1.3220000267028809,14.932000160217283 -13205,2018-01-02 05:00:00,32.417999267578125,0.0,39.512001037597656,0.0,-6.236999988555907,-1.3109999895095823,14.932000160217283 -13206,2018-01-02 06:00:00,34.59600067138672,0.0,40.52999877929688,0.0,-6.056000232696532,-1.3109999895095823,14.491999626159668 -13207,2018-01-02 07:00:00,36.60699844360352,0.0,42.40700149536133,0.0,-6.28000020980835,-1.3109999895095823,14.491999626159668 -13208,2018-01-02 08:00:00,39.20299911499024,0.0,45.6500015258789,0.0,-6.28000020980835,-1.3650000095367432,14.711999893188477 -13209,2018-01-02 09:00:00,41.38100051879883,0.0,49.24200057983398,2.0369999408721924,-7.570000171661378,-1.3650000095367432,15.15149974822998 -13210,2018-01-02 10:00:00,38.78499984741211,0.0,45.70399856567383,-1.312999963760376,-6.3540000915527335,-1.375,16.25 -13211,2018-01-02 11:00:00,39.790000915527344,0.0,47.25899887084961,0.0,-7.579999923706055,-1.375,17.12849998474121 -13212,2018-01-02 12:00:00,42.55400085449219,0.0,49.5099983215332,0.0,-6.3540000915527335,-1.375,17.788000106811523 -13213,2018-01-02 13:00:00,43.2239990234375,0.0,50.39500045776367,2.0369999408721924,-7.591000080108643,-1.375,18.66699981689453 -13214,2018-01-02 14:00:00,43.2239990234375,0.0,50.28799819946289,2.760999917984009,-7.6020002365112305,-1.375,19.765499114990234 -13215,2018-01-02 15:00:00,44.39699935913086,0.0,50.18000030517578,2.3050000667572017,-6.364999771118164,-1.375,19.765499114990234 -13216,2018-01-02 16:00:00,44.39699935913086,0.0,51.81600189208984,2.546999931335449,-7.815000057220459,-1.375,19.54599952697754 -13217,2018-01-02 17:00:00,42.63800048828125,0.0,48.91999816894531,0.0,-5.500999927520752,-1.2899999618530271,19.10650062561035 -13218,2018-01-02 18:00:00,45.4020004272461,0.0,50.36800003051758,0.0,-4.872000217437744,0.0,18.66699981689453 -13219,2018-01-02 19:00:00,43.47600173950195,0.0,47.5,0.0,-3.763000011444092,0.0,18.227500915527344 -13220,2018-01-02 20:00:00,43.97800064086914,0.0,50.47499847412109,0.0,-5.96999979019165,-1.3109999895095823,17.788000106811523 -13221,2018-01-02 21:00:00,40.459999084472656,0.0,45.70399856567383,-1.3669999837875366,-5.415999889373778,0.0,17.12849998474121 -13222,2018-01-02 22:00:00,42.05199813842773,0.0,48.09000015258789,0.0,-5.383999824523926,-1.2580000162124634,16.909000396728516 -13223,2018-01-02 23:00:00,41.54899978637695,0.0,45.56999969482422,0.0,-4.1469998359680185,0.0,16.469499588012695 -13224,2018-01-03 00:00:00,37.36100006103516,0.0,43.23799896240234,0.0,-5.394999980926514,-1.2899999618530271,16.25 -13225,2018-01-03 01:00:00,32.669998168945305,0.0,38.41299819946289,0.0,-5.415999889373778,-1.2690000534057615,15.15149974822998 -13226,2018-01-03 02:00:00,33.757999420166016,0.0,39.887001037597656,0.0,-6.749000072479247,-1.22599995136261,14.491999626159668 -13227,2018-01-03 03:00:00,33.17200088500977,0.0,39.94100189208984,0.0,-7.441999912261963,-1.4609999656677246,13.393500328063965 -13228,2018-01-03 04:00:00,33.088001251220696,0.0,38.89500045776367,0.0,-6.184000015258789,-1.3329999446868896,12.51449966430664 -13229,2018-01-03 05:00:00,33.005001068115234,0.0,39.08300018310547,0.0,-6.172999858856201,-1.3329999446868896,11.635499954223633 -13230,2018-01-03 06:00:00,32.83700180053711,0.0,39.86000061035156,0.0,-6.589000225067139,-2.5480000972747803,11.196499824523926 -13231,2018-01-03 07:00:00,32.92100143432617,0.0,40.61100006103516,-1.6080000400543213,-7.942999839782715,-2.5480000972747803,10.756999969482422 -13232,2018-01-03 08:00:00,35.685001373291016,0.0,42.75500106811523,0.0,-6.684999942779541,-2.5480000972747803,10.537500381469728 -13233,2018-01-03 09:00:00,44.14599990844727,0.0,50.85100173950195,2.627000093460083,-6.727000236511231,-2.5480000972747803,10.317500114440918 -13234,2018-01-03 10:00:00,40.04100036621094,0.0,47.63399887084961,0.0,-6.813000202178955,-2.5480000972747803,11.196499824523926 -13235,2018-01-03 11:00:00,39.0359992980957,0.0,45.54299926757813,0.0,-6.866000175476074,-2.5480000972747803,11.196499824523926 -13236,2018-01-03 12:00:00,41.29800033569336,0.0,47.01699829101562,0.0,-6.84499979019165,-2.5480000972747803,11.196499824523926 -13237,2018-01-03 13:00:00,40.9630012512207,0.0,47.74100112915039,0.0,-6.929999828338622,-2.5480000972747803,10.317500114440918 -13238,2018-01-03 14:00:00,41.29800033569336,0.0,46.2400016784668,0.0,-5.607999801635742,-2.5480000972747803,9.657999992370604 -13239,2018-01-03 15:00:00,39.95700073242188,0.0,45.78400039672852,0.0,-5.427000045776367,-2.5480000972747803,8.99899959564209 -13240,2018-01-03 16:00:00,42.05199813842773,0.0,48.7859992980957,0.0,-6.8979997634887695,-2.5480000972747803,8.559499740600586 -13241,2018-01-03 17:00:00,41.632999420166016,0.0,47.98199844360352,2.252000093460083,-5.756999969482423,-2.5480000972747803,8.119999885559082 -13242,2018-01-03 18:00:00,48.16699981689453,0.0,51.01100158691406,2.493000030517578,-3.3480000495910645,0.0,7.680500030517577 -13243,2018-01-03 19:00:00,52.1870002746582,4.440000057220459,53.15599822998047,2.680999994277954,0.0,0.0,7.241000175476074 -13244,2018-01-03 20:00:00,54.19800186157226,5.947999954223633,54.25500106811523,3.5380001068115234,0.0,0.0,7.241000175476074 -13245,2018-01-03 21:00:00,52.35499954223633,4.941999912261963,53.31700134277344,3.2699999809265137,0.0,0.0,6.801499843597412 -13246,2018-01-03 22:00:00,46.90999984741211,0.0,47.25899887084961,2.385999917984009,0.0,0.0,6.801499843597412 -13247,2018-01-03 23:00:00,42.05199813842773,0.0,42.48699951171875,0.0,0.0,0.0,6.362500190734862 -13248,2018-01-04 00:00:00,39.37099838256836,0.0,40.93199920654297,0.0,-1.3009999990463257,0.0,5.703499794006348 -13249,2018-01-04 01:00:00,38.86800003051758,0.0,39.48500061035156,0.0,0.0,0.0,5.483500003814697 -13250,2018-01-04 02:00:00,42.55400085449219,5.026000022888184,43.07699966430664,3.7799999713897705,0.0,0.0,5.044000148773193 -13251,2018-01-04 03:00:00,41.04600143432617,0.0,42.72800064086914,2.760999917984009,0.0,0.0,4.1649999618530265 -13252,2018-01-04 04:00:00,41.54899978637695,4.440000057220459,43.72000122070313,3.940000057220459,-1.22599995136261,0.0,3.945499897003174 -13253,2018-01-04 05:00:00,43.2239990234375,4.355999946594238,43.31800079345703,2.9489998817443848,0.0,0.0,3.725500106811523 -13254,2018-01-04 06:00:00,39.70600128173828,0.0,40.23500061035156,1.4739999771118164,0.0,0.0,3.725500106811523 -13255,2018-01-04 07:00:00,46.40700149536133,5.193999767303467,47.04399871826172,3.243000030517578,0.0,0.0,3.725500106811523 -13256,2018-01-04 08:00:00,42.387001037597656,0.0,44.81900024414063,1.6080000400543213,-1.6100000143051147,0.0,3.945499897003174 -13257,2018-01-04 09:00:00,53.44400024414063,8.041999816894531,55.03200149536133,6.031000137329103,-2.611999988555908,0.0,3.725500106811523 -13258,2018-01-04 10:00:00,51.26599884033203,4.440000057220459,53.63800048828125,3.4040000438690186,-2.5369999408721924,-1.2369999885559082,4.1649999618530265 -13259,2018-01-04 11:00:00,54.61700057983398,7.203999996185303,57.1500015258789,5.869999885559082,-1.3969999551773071,0.0,4.82450008392334 -13260,2018-01-04 12:00:00,54.11399841308594,5.863999843597412,56.29199981689453,4.63700008392334,-2.559000015258789,-1.2580000162124634,5.483500003814697 -13261,2018-01-04 13:00:00,56.71099853515625,7.958000183105469,58.14199829101562,6.2189998626708975,-1.22599995136261,0.0,5.922999858856201 -13262,2018-01-04 14:00:00,56.71099853515625,8.963000297546387,57.9000015258789,7.130000114440918,-1.3969999551773071,0.0,6.581999778747559 -13263,2018-01-04 15:00:00,53.44400024414063,7.288000106811522,55.43399810791016,5.789999961853027,-1.406999945640564,0.0,6.362500190734862 -13264,2018-01-04 16:00:00,52.35499954223633,6.198999881744385,54.06700134277344,5.1469998359680185,-1.375,-1.406999945640564,6.362500190734862 -13265,2018-01-04 17:00:00,55.70600128173828,6.618000030517577,57.06900024414063,4.932000160217285,0.0,0.0,6.362500190734862 -13266,2018-01-04 18:00:00,56.87799835205078,7.119999885559082,56.45299911499024,4.53000020980835,0.0,0.0,6.362500190734862 -13267,2018-01-04 19:00:00,51.51699829101562,0.0,52.24399948120117,2.1440000534057617,0.0,0.0,6.14300012588501 -13268,2018-01-04 20:00:00,49.00400161743164,0.0,49.59099960327149,0.0,0.0,0.0,5.922999858856201 -13269,2018-01-04 21:00:00,49.0880012512207,0.0,49.85900115966797,0.0,0.0,0.0,6.14300012588501 -13270,2018-01-04 22:00:00,42.1349983215332,0.0,42.91600036621094,0.0,0.0,0.0,6.362500190734862 -13271,2018-01-04 23:00:00,41.88399887084961,0.0,43.29100036621094,1.312999963760376,-1.3109999895095823,0.0,6.362500190734862 -13272,2018-01-05 00:00:00,36.43899917602539,0.0,38.573001861572266,0.0,-2.8469998836517334,0.0,6.14300012588501 -13273,2018-01-05 01:00:00,35.349998474121094,0.0,37.742000579833984,0.0,-2.632999897003174,-1.3109999895095823,5.922999858856201 -13274,2018-01-05 02:00:00,40.71099853515625,0.0,41.73699951171875,1.9570000171661377,0.0,0.0,5.922999858856201 -13275,2018-01-05 03:00:00,39.37099838256836,0.0,41.87099838256836,2.1440000534057617,-2.559000015258789,-1.2369999885559082,5.922999858856201 -13276,2018-01-05 04:00:00,39.874000549316406,0.0,41.95100021362305,2.385999917984009,-2.664999961853028,0.0,5.922999858856201 -13277,2018-01-05 05:00:00,40.29199981689453,0.0,41.95100021362305,2.358999967575073,-1.3329999446868896,0.0,5.922999858856201 -13278,2018-01-05 06:00:00,38.11399841308594,0.0,40.82500076293945,1.4210000038146973,-2.760999917984009,-1.4500000476837158,6.14300012588501 -13279,2018-01-05 07:00:00,43.2239990234375,0.0,45.08700180053711,2.385999917984009,-2.494999885559082,0.0,5.703000068664551 -13280,2018-01-05 08:00:00,45.65399932861328,0.0,48.196998596191406,2.9489998817443848,-2.494999885559082,-1.2690000534057615,5.483500003814697 -13281,2018-01-05 09:00:00,51.43399810791016,6.366000175476074,52.99499893188477,4.932000160217285,-1.406999945640564,0.0,5.483500003814697 -13282,2018-01-05 10:00:00,49.00400161743164,5.026000022888184,51.01100158691406,4.127999782562257,-1.375,0.0,6.14300012588501 -13283,2018-01-05 11:00:00,55.2869987487793,7.958000183105469,56.61399841308594,6.2189998626708975,-1.4819999933242798,0.0,7.0209999084472665 -13284,2018-01-05 12:00:00,54.44900131225586,7.706999778747559,56.64099884033203,6.191999912261963,-1.4500000476837158,0.0,7.460999965667725 -13285,2018-01-05 13:00:00,41.54899978637695,0.0,44.95299911499024,0.0,-2.5269999504089355,-1.246999979019165,8.340000152587889 -13286,2018-01-05 14:00:00,54.19800186157226,7.037000179290772,57.41799926757813,6.245999813079834,-2.760999917984009,-1.4709999561309814,9.657999992370604 -13287,2018-01-05 15:00:00,55.95700073242188,8.293000221252441,58.38299942016602,6.6479997634887695,-2.687000036239624,0.0,10.097999572753906 -13288,2018-01-05 16:00:00,55.70600128173828,8.293000221252441,57.84700012207031,6.728000164031982,-2.483999967575073,0.0,10.317500114440918 -13289,2018-01-05 17:00:00,57.04600143432617,7.539000034332275,58.22200012207031,5.414999961853027,0.0,0.0,10.317500114440918 -13290,2018-01-05 18:00:00,53.69499969482422,5.78000020980835,54.06700134277344,3.940000057220459,0.0,0.0,10.097999572753906 -13291,2018-01-05 19:00:00,52.60599899291992,5.445000171661377,53.47700119018555,4.155000209808351,0.0,0.0,9.878000259399414 -13292,2018-01-05 20:00:00,55.87300109863281,6.366000175476074,57.63199996948242,5.0929999351501465,-1.5889999866485596,-1.3860000371932983,9.218500137329102 -13293,2018-01-05 21:00:00,55.87300109863281,6.198999881744385,56.82799911499024,4.2890000343322745,0.0,0.0,8.779500007629395 -13294,2018-01-05 22:00:00,54.61700057983398,6.618000030517577,57.36399841308594,5.710000038146973,-2.505000114440918,-1.246999979019165,8.119999885559082 -13295,2018-01-05 23:00:00,50.68000030517578,5.78000020980835,52.56600189208984,4.584000110626222,-1.4179999828338623,0.0,7.9004998207092285 -13296,2018-01-06 00:00:00,46.15599822998047,4.105000019073486,48.00899887084961,3.6989998817443848,-1.2150000333786009,-1.343000054359436,7.9004998207092285 -13297,2018-01-06 01:00:00,41.88399887084961,0.0,43.39899826049805,3.002000093460083,-1.7699999809265137,0.0,7.9004998207092285 -13298,2018-01-06 02:00:00,43.64300155639648,4.355999946594238,44.25600051879883,3.0559999942779537,0.0,0.0,7.680500030517577 -13299,2018-01-06 03:00:00,38.95199966430664,0.0,41.20000076293945,2.438999891281128,-2.878999948501587,0.0,7.241000175476074 -13300,2018-01-06 04:00:00,35.0989990234375,0.0,37.2869987487793,0.0,-1.2369999885559082,-1.2690000534057615,6.581999778747559 -13301,2018-01-06 05:00:00,39.53799819946289,0.0,41.57600021362305,1.9839999675750728,-1.2150000333786009,0.0,5.703499794006348 -13302,2018-01-06 06:00:00,43.97800064086914,4.355999946594238,45.73099899291992,3.51200008392334,-1.246999979019165,0.0,5.263500213623047 -13303,2018-01-06 07:00:00,44.56499862670898,0.0,45.67699813842773,2.760999917984009,0.0,0.0,5.263500213623047 -13304,2018-01-06 08:00:00,39.874000549316406,0.0,43.07699966430664,0.0,-2.782999992370605,-1.2899999618530271,5.703499794006348 -13305,2018-01-06 09:00:00,43.05699920654297,0.0,45.56999969482422,2.1979999542236333,-2.782999992370605,-1.246999979019165,6.142499923706055 -13306,2018-01-06 10:00:00,44.73199844360352,0.0,46.803001403808594,2.733999967575073,-1.3650000095367432,0.0,7.241000175476074 -13307,2018-01-06 11:00:00,50.09299850463867,5.276999950408936,51.97600173950195,4.422999858856201,-2.430999994277954,0.0,10.09749984741211 -13308,2018-01-06 12:00:00,45.98899841308594,0.0,47.60699844360352,2.438999891281128,-1.3860000371932983,0.0,12.074999809265137 -13309,2018-01-06 13:00:00,47.74800109863281,0.0,49.85900115966797,2.0910000801086426,-2.45199990272522,0.0,11.416000366210938 -13310,2018-01-06 14:00:00,51.26599884033203,5.611999988555908,52.915000915527344,4.073999881744385,0.0,0.0,10.756999969482422 -13311,2018-01-06 15:00:00,50.76300048828125,5.361000061035156,52.05699920654297,4.182000160217285,0.0,0.0,10.317500114440918 -13312,2018-01-06 16:00:00,56.96200180053711,7.706999778747559,57.01599884033203,5.494999885559082,0.0,0.0,9.878000259399414 -13313,2018-01-06 17:00:00,58.38600158691406,7.203999996185303,58.8120002746582,5.065999984741211,0.0,0.0,9.218500137329102 -13314,2018-01-06 18:00:00,57.13000106811523,6.449999809265138,57.65900039672852,4.235000133514403,0.0,0.0,8.779500007629395 -13315,2018-01-06 19:00:00,53.0250015258789,0.0,52.83399963378906,1.4210000038146973,0.0,0.0,8.559499740600586 -13316,2018-01-06 20:00:00,54.11399841308594,4.105000019073486,53.15599822998047,1.8229999542236328,0.0,0.0,8.340000152587889 -13317,2018-01-06 21:00:00,50.34500122070313,4.941999912261963,51.49399948120117,3.8059999942779537,0.0,0.0,8.119999885559082 -13318,2018-01-06 22:00:00,49.17200088500977,4.859000205993652,48.6259994506836,2.868000030517578,0.0,0.0,8.119999885559082 -13319,2018-01-06 23:00:00,52.02000045776367,6.2829999923706055,52.05699920654297,4.664000034332275,0.0,0.0,8.119999885559082 -13320,2018-01-07 00:00:00,47.32899856567383,5.863999843597412,48.4109992980957,4.7709999084472665,0.0,0.0,8.119999885559082 -13321,2018-01-07 01:00:00,44.64799880981445,4.188000202178955,44.84600067138672,2.9219999313354488,0.0,0.0,8.559499740600586 -13322,2018-01-07 02:00:00,40.62699890136719,0.0,42.03099822998047,3.1630001068115234,0.0,0.0,8.779500007629395 -13323,2018-01-07 03:00:00,44.0620002746582,4.941999912261963,44.63199996948242,3.9670000076293945,-1.758999943733215,0.0,8.779500007629395 -13324,2018-01-07 04:00:00,40.54399871826172,0.0,42.56800079345703,3.484999895095825,-1.2150000333786009,0.0,8.779500007629395 -13325,2018-01-07 05:00:00,40.54399871826172,0.0,41.62900161743164,2.6540000438690186,0.0,0.0,8.779500007629395 -13326,2018-01-07 06:00:00,44.73199844360352,4.355999946594238,46.07899856567383,3.6719999313354488,-1.4290000200271606,0.0,8.779500007629395 -13327,2018-01-07 07:00:00,44.81600189208984,4.941999912261963,46.90999984741211,4.449999809265137,-1.7480000257492063,-1.22599995136261,8.99899959564209 -13328,2018-01-07 08:00:00,44.14599990844727,0.0,45.70399856567383,2.8410000801086426,-1.3329999446868896,0.0,8.779500007629395 -13329,2018-01-07 09:00:00,49.50699996948242,6.031000137329103,52.137001037597656,5.227000236511231,-2.5799999237060547,-1.3009999990463257,8.779500007629395 -13330,2018-01-07 10:00:00,54.70000076293945,7.539000034332275,56.15800094604492,6.004000186920166,-1.3109999895095823,0.0,8.559499740600586 -13331,2018-01-07 11:00:00,56.125,6.953000068664551,57.5250015258789,5.1469998359680185,-1.3009999990463257,0.0,8.779000282287598 -13332,2018-01-07 12:00:00,50.59600067138672,4.5229997634887695,51.97600173950195,2.868000030517578,-1.2369999885559082,0.0,9.658499717712402 -13333,2018-01-07 13:00:00,55.78900146484375,8.293000221252441,57.44499969482422,6.058000087738037,-1.3650000095367432,0.0,9.658499717712402 -13334,2018-01-07 14:00:00,52.1870002746582,6.198999881744385,54.89799880981445,5.227000236511231,-2.878999948501587,-1.343000054359436,9.218500137329102 -13335,2018-01-07 15:00:00,51.43399810791016,5.611999988555908,52.72700119018555,3.99399995803833,0.0,0.0,9.658499717712402 -13336,2018-01-07 16:00:00,52.27099990844727,5.863999843597412,53.39699935913086,4.26200008392334,0.0,0.0,9.658499717712402 -13337,2018-01-07 17:00:00,52.52299880981445,4.775000095367432,53.23600006103516,3.190000057220459,0.0,0.0,9.658499717712402 -13338,2018-01-07 18:00:00,47.41299819946289,0.0,46.9640007019043,0.0,0.0,0.0,9.218500137329102 -13339,2018-01-07 19:00:00,47.32899856567383,0.0,47.63399887084961,0.0,0.0,0.0,8.99899959564209 -13340,2018-01-07 20:00:00,48.16699981689453,0.0,48.33100128173828,0.0,0.0,0.0,8.99899959564209 -13341,2018-01-07 21:00:00,56.125,7.288000106811522,56.82799911499024,5.119999885559082,0.0,0.0,8.779500007629395 -13342,2018-01-07 22:00:00,51.09799957275391,6.86899995803833,51.95000076293945,5.1469998359680185,0.0,0.0,8.779500007629395 -13343,2018-01-07 23:00:00,40.20899963378906,0.0,40.90599822998047,0.0,0.0,0.0,8.340000152587889 -13344,2018-01-08 00:00:00,36.104000091552734,0.0,36.992000579833984,0.0,0.0,0.0,8.340000152587889 -13345,2018-01-08 01:00:00,42.1349983215332,0.0,43.26399993896485,2.2249999046325684,0.0,0.0,7.9004998207092285 -13346,2018-01-08 02:00:00,38.78499984741211,0.0,40.04800033569336,2.385999917984009,-1.2150000333786009,0.0,7.680500030517577 -13347,2018-01-08 03:00:00,33.25600051879883,0.0,34.257999420166016,0.0,0.0,0.0,7.021500110626223 -13348,2018-01-08 04:00:00,33.088001251220696,0.0,34.955001831054695,0.0,-1.3009999990463257,0.0,6.581999778747559 -13349,2018-01-08 05:00:00,36.60699844360352,0.0,36.1609992980957,0.0,0.0,0.0,6.142499923706055 -13350,2018-01-08 06:00:00,41.2140007019043,0.0,42.35300064086914,2.1979999542236333,0.0,0.0,5.922999858856201 -13351,2018-01-08 07:00:00,45.82099914550781,0.0,46.90999984741211,2.118000030517578,0.0,0.0,5.922999858856201 -13352,2018-01-08 08:00:00,47.07799911499024,0.0,47.74100112915039,1.4479999542236328,0.0,0.0,5.703499794006348 -13353,2018-01-08 09:00:00,52.1870002746582,7.119999885559082,53.85300064086914,5.710000038146973,-1.2899999618530271,0.0,5.922999858856201 -13354,2018-01-08 10:00:00,52.02000045776367,5.52899980545044,53.45100021362305,4.155000209808351,-1.375,0.0,7.241499900817871 -13355,2018-01-08 11:00:00,53.77899932861328,6.86899995803833,55.78300094604492,5.4679999351501465,-1.8339999914169312,0.0,8.99899959564209 -13356,2018-01-08 12:00:00,55.95700073242188,8.208999633789062,58.03400039672852,6.540999889373777,-2.4730000495910645,0.0,9.878000259399414 -13357,2018-01-08 13:00:00,55.95700073242188,8.878999710083008,58.2760009765625,6.728000164031982,-2.505000114440918,0.0,10.31700038909912 -13358,2018-01-08 14:00:00,56.3759994506836,9.21399974822998,58.14199829101562,7.23799991607666,-2.505000114440918,0.0,12.074999809265137 -13359,2018-01-08 15:00:00,49.25600051879883,5.110000133514403,50.58200073242188,4.047999858856201,0.0,0.0,12.295000076293944 -13360,2018-01-08 16:00:00,47.49599838256836,4.60699987411499,48.38399887084961,3.0290000438690186,0.0,0.0,11.416000366210938 -13361,2018-01-08 17:00:00,47.58000183105469,0.0,48.54499816894531,0.0,0.0,0.0,9.658499717712402 -13362,2018-01-08 18:00:00,51.18199920654297,4.188000202178955,49.85900115966797,1.4739999771118164,1.3009999990463257,0.0,7.900000095367432 -13363,2018-01-08 19:00:00,53.52799987792969,4.60699987411499,53.34299850463867,1.850000023841858,0.0,0.0,7.021500110626223 -13364,2018-01-08 20:00:00,54.02999877929688,0.0,53.18299865722656,0.0,0.0,0.0,6.802000045776367 -13365,2018-01-08 21:00:00,62.82600021362305,10.052000045776367,60.34000015258789,5.4679999351501465,3.625,0.0,6.802000045776367 -13366,2018-01-08 22:00:00,57.79999923706055,8.208999633789062,57.92699813842773,5.199999809265137,0.0,0.0,6.802000045776367 -13367,2018-01-08 23:00:00,51.43399810791016,7.372000217437744,51.43999862670898,4.932000160217285,0.0,0.0,6.802000045776367 -13368,2018-01-09 00:00:00,47.915000915527344,6.618000030517577,46.9900016784668,4.209000110626222,0.0,0.0,7.021500110626223 -13369,2018-01-09 01:00:00,45.48600006103516,4.440000057220459,45.91799926757813,2.546999931335449,0.0,0.0,7.021500110626223 -13370,2018-01-09 02:00:00,37.61199951171875,0.0,39.21699905395508,0.0,-1.3009999990463257,0.0,7.021500110626223 -13371,2018-01-09 03:00:00,39.790000915527344,4.941999912261963,41.01300048828125,3.753000020980835,0.0,0.0,6.362500190734862 -13372,2018-01-09 04:00:00,41.71599960327149,4.355999946594238,42.97000122070313,3.1630001068115234,0.0,0.0,5.703000068664551 -13373,2018-01-09 05:00:00,40.29199981689453,0.0,41.11999893188477,2.009999990463257,0.0,0.0,5.044000148773193 -13374,2018-01-09 06:00:00,44.81600189208984,4.105000019073486,45.91799926757813,2.7070000171661377,0.0,0.0,4.604499816894531 -13375,2018-01-09 07:00:00,50.76300048828125,6.701000213623048,51.25299835205078,4.53000020980835,0.0,0.0,4.1649999618530265 -13376,2018-01-09 08:00:00,47.49599838256836,5.193999767303467,50.07300186157226,3.99399995803833,-1.3539999723434448,0.0,4.1649999618530265 -13377,2018-01-09 09:00:00,57.38100051879883,11.140999794006348,58.38299942016602,8.52400016784668,0.0,0.0,6.581999778747559 -13378,2018-01-09 10:00:00,47.07799911499024,4.690999984741211,48.0359992980957,2.9749999046325684,0.0,0.0,9.657999992370604 -13379,2018-01-09 11:00:00,46.2400016784668,0.0,48.49200057983398,3.108999967575073,-1.3860000371932983,0.0,12.295000076293944 -13380,2018-01-09 12:00:00,45.06700134277344,0.0,48.0629997253418,3.243000030517578,-2.7929999828338623,0.0,14.931500434875488 -13381,2018-01-09 13:00:00,45.31800079345703,4.440000057220459,47.76800155639648,3.8329999446868896,-2.7929999828338623,0.0,15.590999603271484 -13382,2018-01-09 14:00:00,47.41299819946289,5.863999843597412,50.20700073242188,5.254000186920166,-3.0280001163482666,0.0,17.128999710083008 -13383,2018-01-09 15:00:00,44.39699935913086,5.361000061035156,47.3120002746582,4.557000160217285,-3.0280001163482666,0.0,16.68950080871582 -13384,2018-01-09 16:00:00,45.56999969482422,4.355999946594238,47.79499816894531,3.190000057220459,-1.7910000085830688,0.0,16.030000686645508 -13385,2018-01-09 17:00:00,48.41799926757813,4.690999984741211,50.04600143432617,3.108999967575073,-1.4609999656677246,0.0,14.272500038146973 -13386,2018-01-09 18:00:00,48.33399963378906,0.0,48.51800155639648,1.7690000534057615,0.0,0.0,12.73449993133545 -13387,2018-01-09 19:00:00,48.33399963378906,0.0,49.10800170898438,0.0,0.0,0.0,11.85550022125244 -13388,2018-01-09 20:00:00,47.24499893188477,0.0,48.67900085449219,0.0,-1.2790000438690186,0.0,11.196499824523926 -13389,2018-01-09 21:00:00,47.999000549316406,0.0,48.4109992980957,1.4210000038146973,0.0,0.0,10.976499557495115 -13390,2018-01-09 22:00:00,48.08300018310547,0.0,49.45700073242188,2.680999994277954,-2.494999885559082,0.0,10.537500381469728 -13391,2018-01-09 23:00:00,46.15599822998047,4.355999946594238,46.5880012512207,2.438999891281128,0.0,0.0,10.317500114440918 -13392,2018-01-10 00:00:00,38.198001861572266,0.0,39.24399948120117,0.0,0.0,0.0,10.09749984741211 -13393,2018-01-10 01:00:00,34.59600067138672,0.0,34.87400054931641,0.0,0.0,0.0,9.658499717712402 -13394,2018-01-10 02:00:00,33.088001251220696,0.0,34.17699813842773,0.0,0.0,0.0,9.43850040435791 -13395,2018-01-10 03:00:00,34.93099975585937,0.0,36.483001708984375,0.0,-1.2580000162124634,0.0,8.99899959564209 -13396,2018-01-10 04:00:00,38.86800003051758,0.0,39.512001037597656,1.6080000400543213,0.0,0.0,8.339500427246094 -13397,2018-01-10 05:00:00,34.93099975585937,0.0,36.9119987487793,0.0,-1.375,0.0,7.680500030517577 -13398,2018-01-10 06:00:00,37.44400024414063,0.0,38.11800003051758,1.4479999542236328,0.0,0.0,7.241000175476074 -13399,2018-01-10 07:00:00,38.53300094604492,0.0,38.78799819946289,0.0,0.0,0.0,6.801499843597412 -13400,2018-01-10 08:00:00,38.198001861572266,0.0,38.52000045776367,0.0,0.0,0.0,6.362500190734862 -13401,2018-01-10 09:00:00,44.900001525878906,5.276999950408936,47.74100112915039,4.477000236511231,-2.440999984741211,0.0,7.4604997634887695 -13402,2018-01-10 10:00:00,45.98899841308594,4.440000057220459,47.47299957275391,3.190000057220459,-1.2150000333786009,0.0,9.878000259399414 -13403,2018-01-10 11:00:00,48.25,5.361000061035156,49.02799987792969,3.8329999446868896,0.0,0.0,12.95400047302246 -13404,2018-01-10 12:00:00,43.2239990234375,0.0,44.25600051879883,2.0369999408721924,0.0,0.0,16.030000686645508 -13405,2018-01-10 13:00:00,40.71099853515625,0.0,41.30799865722656,0.0,0.0,0.0,16.469999313354492 -13406,2018-01-10 14:00:00,42.1349983215332,0.0,43.18399810791016,2.3050000667572017,0.0,0.0,18.007999420166016 -13407,2018-01-10 15:00:00,40.459999084472656,0.0,41.38800048828125,1.6349999904632568,0.0,0.0,16.909500122070312 -13408,2018-01-10 16:00:00,43.72700119018555,4.440000057220459,44.20299911499024,2.733999967575073,0.0,0.0,15.590499877929688 -13409,2018-01-10 17:00:00,46.15599822998047,4.440000057220459,45.91799926757813,2.1710000038146973,0.0,0.0,13.173500061035154 -13410,2018-01-10 18:00:00,46.74300003051758,0.0,45.51599884033203,1.3400000333786009,0.0,0.0,11.63599967956543 -13411,2018-01-10 19:00:00,47.49599838256836,0.0,46.9640007019043,0.0,0.0,0.0,10.317500114440918 -13412,2018-01-10 20:00:00,46.32400131225586,0.0,44.65800094604492,-1.3400000333786009,1.503000020980835,0.0,9.658499717712402 -13413,2018-01-10 21:00:00,46.82600021362305,0.0,45.75699996948242,0.0,0.0,0.0,8.99899959564209 -13414,2018-01-10 22:00:00,43.97800064086914,0.0,44.38999938964844,0.0,0.0,0.0,8.339500427246094 -13415,2018-01-10 23:00:00,40.62699890136719,0.0,41.44200134277344,0.0,0.0,0.0,7.241000175476074 -13416,2018-01-11 00:00:00,38.03099822998047,0.0,38.41299819946289,0.0,0.0,0.0,6.581999778747559 -13417,2018-01-11 01:00:00,35.43399810791016,0.0,36.858001708984375,0.0,-1.2790000438690186,0.0,5.922999858856201 -13418,2018-01-11 02:00:00,33.088001251220696,0.0,34.097000122070305,0.0,-1.8550000190734863,0.0,5.044000148773193 -13419,2018-01-11 03:00:00,33.92599868774414,0.0,35.625,0.0,-1.2369999885559082,0.0,4.1649999618530265 -13420,2018-01-11 04:00:00,42.88899993896485,4.440000057220459,43.74700164794922,3.378000020980835,0.0,0.0,3.505500078201294 -13421,2018-01-11 05:00:00,44.56499862670898,5.445000171661377,46.0250015258789,4.502999782562256,-1.2790000438690186,0.0,2.8464999198913574 -13422,2018-01-11 06:00:00,47.24499893188477,6.114999771118164,49.05500030517578,4.959000110626222,0.0,0.0,2.407500028610229 -13423,2018-01-11 07:00:00,48.91999816894531,4.775000095367432,49.18899917602539,3.2170000076293945,0.0,0.0,2.1875 -13424,2018-01-11 08:00:00,47.49599838256836,5.863999843597412,48.8129997253418,4.53000020980835,0.0,0.0,2.1875 -13425,2018-01-11 09:00:00,50.09299850463867,7.454999923706055,52.08399963378906,5.816999912261963,-1.3009999990463257,0.0,4.82450008392334 -13426,2018-01-11 10:00:00,49.84199905395508,5.026000022888184,51.60100173950195,4.182000160217285,-1.3109999895095823,0.0,8.340000152587889 -13427,2018-01-11 11:00:00,53.61100006103516,8.795999526977539,56.37200164794922,7.263999938964844,-2.483999967575073,0.0,12.075499534606935 -13428,2018-01-11 12:00:00,50.68000030517578,7.288000106811522,52.75400161743164,5.602000236511231,-2.483999967575073,0.0,15.15149974822998 -13429,2018-01-11 13:00:00,46.82600021362305,7.372000217437744,48.9739990234375,6.004000186920166,-2.483999967575073,0.0,16.25 -13430,2018-01-11 14:00:00,50.59600067138672,6.953000068664551,52.21799850463867,6.031000137329103,-1.2899999618530271,0.0,18.227500915527344 -13431,2018-01-11 15:00:00,51.68500137329102,8.878999710083008,53.55799865722656,6.7820000648498535,-1.3539999723434448,0.0,17.128999710083008 -13432,2018-01-11 16:00:00,53.19300079345703,8.628000259399414,55.03200149536133,6.298999786376952,-1.2580000162124634,0.0,16.030000686645508 -13433,2018-01-11 17:00:00,57.13000106811523,8.711999893188478,56.69400024414063,5.656000137329103,0.0,0.0,13.833000183105469 -13434,2018-01-11 18:00:00,59.47499847412109,8.878999710083008,58.4630012512207,5.5219998359680185,0.0,0.0,12.074999809265137 -13435,2018-01-11 19:00:00,54.86800003051758,6.031000137329103,54.95199966430664,3.190000057220459,0.0,0.0,10.976499557495115 -13436,2018-01-11 20:00:00,57.71599960327149,6.449999809265138,57.25699996948242,3.2969999313354488,0.0,0.0,9.878000259399414 -13437,2018-01-11 21:00:00,60.73199844360352,8.543999671936035,60.2859992980957,4.932000160217285,0.0,0.0,8.99899959564209 -13438,2018-01-11 22:00:00,56.79499816894531,8.963000297546387,58.00799942016602,6.380000114440918,0.0,0.0,8.339500427246094 -13439,2018-01-11 23:00:00,51.60100173950195,5.78000020980835,52.48600006103516,3.51200008392334,0.0,0.0,7.4604997634887695 -13440,2018-01-12 00:00:00,46.15599822998047,4.775000095367432,47.5270004272461,2.9489998817443848,0.0,0.0,6.581999778747559 -13441,2018-01-12 01:00:00,47.24499893188477,5.52899980545044,48.09000015258789,3.51200008392334,0.0,0.0,5.703499794006348 -13442,2018-01-12 02:00:00,44.3129997253418,4.355999946594238,45.78400039672852,3.3239998817443848,-1.246999979019165,0.0,4.604499816894531 -13443,2018-01-12 03:00:00,42.47000122070313,4.440000057220459,43.66699981689453,3.243000030517578,0.0,0.0,3.505500078201294 -13444,2018-01-12 04:00:00,44.81600189208984,4.440000057220459,46.2130012512207,3.6989998817443848,0.0,0.0,2.627000093460083 -13445,2018-01-12 05:00:00,48.33399963378906,6.2829999923706055,46.31999969482422,3.565000057220459,1.2899999618530271,0.0,1.968000054359436 -13446,2018-01-12 06:00:00,47.915000915527344,5.52899980545044,49.05500030517578,4.209000110626222,0.0,0.0,1.308500051498413 -13447,2018-01-12 07:00:00,47.32899856567383,5.193999767303467,48.35800170898438,3.4579999446868896,0.0,0.0,0.8694999814033508 -13448,2018-01-12 08:00:00,49.3390007019043,5.947999954223633,50.68999862670898,4.63700008392334,-1.22599995136261,0.0,0.6495000123977661 -13449,2018-01-12 09:00:00,50.93099975585938,7.372000217437744,53.665000915527344,6.191999912261963,-2.5480000972747803,0.0,3.2860000133514404 -13450,2018-01-12 10:00:00,47.41299819946289,0.0,50.93099975585938,3.484999895095825,-2.569000005722046,-1.406999945640564,6.361999988555907 -13451,2018-01-12 11:00:00,50.26100158691406,5.110000133514403,52.83399963378906,4.449999809265137,-2.282000064849853,-1.2369999885559082,9.657999992370604 -13452,2018-01-12 12:00:00,47.1609992980957,4.440000057220459,49.18899917602539,3.378000020980835,-2.282000064849853,0.0,13.173999786376951 -13453,2018-01-12 13:00:00,43.05699920654297,0.0,45.30199813842773,1.8760000467300413,-1.950999975204468,0.0,14.272000312805176 -13454,2018-01-12 14:00:00,50.34500122070313,6.2829999923706055,52.29800033569336,4.959000110626222,-1.758999943733215,0.0,16.68950080871582 -13455,2018-01-12 15:00:00,50.00899887084961,6.366000175476074,51.86899948120117,4.852000236511231,-2.4730000495910645,0.0,16.469999313354492 -13456,2018-01-12 16:00:00,51.85200119018555,6.953000068664551,53.959999084472656,4.852000236511231,-1.7910000085830688,0.0,15.590999603271484 -13457,2018-01-12 17:00:00,56.62699890136719,8.208999633789062,55.75600051879883,4.986000061035156,0.0,0.0,13.61299991607666 -13458,2018-01-12 18:00:00,58.05099868774414,8.041999816894531,57.33700180053711,4.7709999084472665,0.0,0.0,10.976499557495115 -13459,2018-01-12 19:00:00,61.48600006103516,7.372000217437744,54.14799880981445,1.6349999904632568,6.493000030517577,2.760999917984009,9.218500137329102 -13460,2018-01-12 20:00:00,62.90999984741211,9.130999565124512,55.86299896240234,3.2170000076293945,6.375999927520753,2.760999917984009,8.339500427246094 -13461,2018-01-12 21:00:00,66.00900268554689,11.644000053405762,58.75799942016602,5.039000034332275,7.665999889373777,2.760999917984009,7.241000175476074 -13462,2018-01-12 22:00:00,62.40700149536133,9.968000411987305,55.83599853515625,4.2890000343322745,6.439000129699707,2.760999917984009,6.581999778747559 -13463,2018-01-12 23:00:00,54.11399841308594,7.958000183105469,53.98699951171875,4.557000160217285,0.0,0.0,6.142499923706055 -13464,2018-01-13 00:00:00,45.48600006103516,4.5229997634887695,45.73099899291992,2.4130001068115234,0.0,0.0,5.263500213623047 -13465,2018-01-13 01:00:00,45.48600006103516,4.440000057220459,46.749000549316406,2.7880001068115234,-1.3220000267028809,0.0,4.384500026702882 -13466,2018-01-13 02:00:00,44.56499862670898,5.276999950408936,45.73099899291992,3.6989998817443848,0.0,0.0,3.505500078201294 -13467,2018-01-13 03:00:00,38.53300094604492,0.0,40.12799835205078,0.0,-1.6100000143051147,0.0,2.627000093460083 -13468,2018-01-13 04:00:00,44.14599990844727,4.60699987411499,45.59700012207031,3.51200008392334,0.0,0.0,2.1875 -13469,2018-01-13 05:00:00,41.46500015258789,0.0,42.29899978637695,2.680999994277954,0.0,0.0,1.7484999895095823 -13470,2018-01-13 06:00:00,47.83200073242188,5.611999988555908,46.64199829101562,3.2170000076293945,2.227999925613404,0.0,1.308500051498413 -13471,2018-01-13 07:00:00,48.08300018310547,5.193999767303467,49.3489990234375,3.5380001068115234,0.0,0.0,0.8694999814033508 -13472,2018-01-13 08:00:00,47.74800109863281,5.947999954223633,49.48300170898438,4.53000020980835,-1.3860000371932983,0.0,0.429500013589859 -13473,2018-01-13 09:00:00,52.43899917602539,7.454999923706055,54.73699951171875,5.8439998626708975,-2.611999988555908,0.0,3.2860000133514404 -13474,2018-01-13 10:00:00,52.35499954223633,7.958000183105469,52.99499893188477,5.816999912261963,0.0,0.0,5.483500003814697 -13475,2018-01-13 11:00:00,52.85800170898438,7.119999885559082,54.54999923706055,5.227000236511231,-1.2690000534057615,0.0,8.339500427246094 -13476,2018-01-13 12:00:00,44.73199844360352,0.0,47.3390007019043,2.252000093460083,-1.2899999618530271,0.0,9.43850040435791 -13477,2018-01-13 13:00:00,52.85800170898438,7.454999923706055,54.60300064086914,5.5219998359680185,-1.2790000438690186,0.0,10.756999969482422 -13478,2018-01-13 14:00:00,53.2760009765625,8.041999816894531,54.52299880981445,5.923999786376952,0.0,0.0,12.074999809265137 -13479,2018-01-13 15:00:00,52.85800170898438,8.628000259399414,54.040000915527344,5.8439998626708975,0.0,0.0,12.51449966430664 -13480,2018-01-13 16:00:00,38.70100021362305,0.0,39.53799819946289,0.0,0.0,0.0,11.854999542236328 -13481,2018-01-13 17:00:00,41.29800033569336,0.0,40.69100189208984,0.0,0.0,0.0,11.635499954223633 -13482,2018-01-13 18:00:00,41.04600143432617,0.0,40.15499877929688,0.0,0.0,0.0,11.196499824523926 -13483,2018-01-13 19:00:00,42.88899993896485,0.0,41.20000076293945,0.0,1.4290000200271606,0.0,10.537500381469728 -13484,2018-01-13 20:00:00,45.98899841308594,0.0,44.95299911499024,0.0,0.0,0.0,9.878000259399414 -13485,2018-01-13 21:00:00,54.95199966430664,6.114999771118164,53.55799865722656,2.627000093460083,1.2150000333786009,0.0,9.657999992370604 -13486,2018-01-13 22:00:00,55.87300109863281,7.288000106811522,54.41600036621094,3.3510000705718994,1.3650000095367432,0.0,9.218999862670898 -13487,2018-01-13 23:00:00,54.95199966430664,9.800999641418455,55.29999923706055,6.728000164031982,0.0,0.0,9.43850040435791 -13488,2018-01-14 00:00:00,50.26100158691406,8.543999671936035,50.58200073242188,5.629000186920166,0.0,0.0,9.43850040435791 -13489,2018-01-14 01:00:00,43.05699920654297,5.947999954223633,43.23799896240234,3.6719999313354488,0.0,0.0,9.878000259399414 -13490,2018-01-14 02:00:00,47.66400146484375,6.953000068664551,48.0629997253418,4.53000020980835,0.0,0.0,9.878000259399414 -13491,2018-01-14 03:00:00,44.73199844360352,5.611999988555908,45.75699996948242,3.8059999942779537,0.0,0.0,9.878000259399414 -13492,2018-01-14 04:00:00,44.81600189208984,6.7849998474121085,44.92599868774414,4.584000110626222,0.0,0.0,9.657999992370604 -13493,2018-01-14 05:00:00,45.06700134277344,6.2829999923706055,46.803001403808594,4.852000236511231,0.0,0.0,8.99899959564209 -13494,2018-01-14 06:00:00,43.97800064086914,4.5229997634887695,44.60499954223633,3.0559999942779537,0.0,0.0,8.779000282287598 -13495,2018-01-14 07:00:00,48.75299835205078,5.611999988555908,48.7599983215332,3.8329999446868896,0.0,0.0,8.559499740600586 -13496,2018-01-14 08:00:00,46.90999984741211,5.52899980545044,49.43000030517578,4.073999881744385,-2.2390000820159908,0.0,8.559499740600586 -13497,2018-01-14 09:00:00,50.59600067138672,7.454999923706055,53.23600006103516,5.736000061035156,-2.6549999713897705,0.0,9.218999862670898 -13498,2018-01-14 10:00:00,46.071998596191406,0.0,47.92900085449219,1.9029999971389768,-2.6760001182556152,0.0,10.536999702453612 -13499,2018-01-14 11:00:00,51.76900100708008,6.86899995803833,54.41600036621094,4.852000236511231,-2.622999906539917,0.0,11.854999542236328 -13500,2018-01-14 12:00:00,51.93600082397461,7.119999885559082,52.94100189208984,4.797999858856201,0.0,0.0,13.61299991607666 -13501,2018-01-14 13:00:00,51.85200119018555,7.789999961853027,53.55799865722656,5.736000061035156,-1.406999945640564,0.0,15.590999603271484 -13502,2018-01-14 14:00:00,48.50199890136719,6.366000175476074,50.68999862670898,4.584000110626222,-2.611999988555908,0.0,16.909000396728516 -13503,2018-01-14 15:00:00,50.17699813842773,6.953000068664551,52.43199920654297,5.227000236511231,-2.611999988555908,0.0,18.44750022888184 -13504,2018-01-14 16:00:00,50.17699813842773,6.7849998474121085,51.81600189208984,4.879000186920166,-1.4500000476837158,0.0,19.98550033569336 -13505,2018-01-14 17:00:00,51.68500137329102,5.78000020980835,52.512001037597656,3.940000057220459,0.0,0.0,19.765499114990234 -13506,2018-01-14 18:00:00,51.34999847412109,5.445000171661377,54.28200149536133,4.36899995803833,-2.740000009536743,0.0,18.00749969482422 -13507,2018-01-14 19:00:00,49.00400161743164,0.0,50.47499847412109,1.7690000534057615,-1.3539999723434448,0.0,16.030500411987305 -13508,2018-01-14 20:00:00,51.09799957275391,4.775000095367432,53.42399978637695,3.0559999942779537,-2.6760001182556152,0.0,14.272500038146973 -13509,2018-01-14 21:00:00,51.85200119018555,6.366000175476074,55.00500106811523,4.7709999084472665,-2.559000015258789,0.0,12.95400047302246 -13510,2018-01-14 22:00:00,49.67399978637695,4.941999912261963,51.89599990844727,3.378000020980835,-2.559000015258789,0.0,12.074999809265137 -13511,2018-01-14 23:00:00,47.1609992980957,4.5229997634887695,51.30599975585938,4.235000133514403,-3.6989998817443848,-1.246999979019165,11.196499824523926 -13512,2018-01-15 00:00:00,42.55400085449219,0.0,43.96099853515625,2.5199999809265137,-1.246999979019165,0.0,10.756999969482422 -13513,2018-01-15 01:00:00,43.30799865722656,0.0,46.26699829101562,2.8949999809265137,-2.719000101089477,0.0,9.878000259399414 -13514,2018-01-15 02:00:00,40.87900161743164,0.0,42.43399810791016,1.9299999475479128,-1.22599995136261,0.0,8.99899959564209 -13515,2018-01-15 03:00:00,33.84199905395508,0.0,35.73199844360352,0.0,-1.2150000333786009,0.0,8.119999885559082 -13516,2018-01-15 04:00:00,32.333999633789055,0.0,35.2760009765625,0.0,-1.3109999895095823,0.0,7.4604997634887695 -13517,2018-01-15 05:00:00,38.617000579833984,0.0,39.99399948120117,1.8760000467300413,0.0,0.0,6.581999778747559 -13518,2018-01-15 06:00:00,43.64300155639648,4.5229997634887695,44.81900024414063,3.4309999942779537,0.0,0.0,6.142499923706055 -13519,2018-01-15 07:00:00,45.31800079345703,4.690999984741211,46.45399856567383,3.4040000438690186,0.0,0.0,5.703499794006348 -13520,2018-01-15 08:00:00,42.21900177001953,4.188000202178955,43.23799896240234,2.3050000667572017,0.0,0.0,5.483500003814697 -13521,2018-01-15 09:00:00,51.01499938964844,8.711999893188478,52.78099822998047,7.050000190734862,-1.5989999771118164,0.0,7.9004998207092285 -13522,2018-01-15 10:00:00,46.57500076293945,5.52899980545044,48.38399887084961,3.8329999446868896,-1.4709999561309814,0.0,12.51449966430664 -13523,2018-01-15 11:00:00,44.64799880981445,4.188000202178955,47.23199844360352,2.9489998817443848,-2.7079999446868896,0.0,17.788000106811523 -13524,2018-01-15 12:00:00,45.65399932861328,6.366000175476074,48.7599983215332,6.701000213623048,-2.7079999446868896,0.0,22.40250015258789 -13525,2018-01-15 13:00:00,42.72200012207031,4.775000095367432,45.14099884033203,4.100999832153319,-2.5369999408721924,0.0,24.15999984741211 -13526,2018-01-15 14:00:00,40.29199981689453,4.859000205993652,42.56800079345703,3.61899995803833,-2.5369999408721924,0.0,26.79700088500977 -13527,2018-01-15 15:00:00,47.58000183105469,8.543999671936035,49.77799987792969,6.4070000648498535,-2.5369999408721924,0.0,27.236499786376957 -13528,2018-01-15 16:00:00,47.58000183105469,7.706999778747559,50.04600143432617,5.736000061035156,-2.5799999237060547,0.0,27.236499786376957 -13529,2018-01-15 17:00:00,45.48600006103516,5.361000061035156,45.89099884033203,3.5380001068115234,0.0,0.0,25.25900077819824 -13530,2018-01-15 18:00:00,50.59600067138672,6.7849998474121085,52.05699920654297,5.0929999351501465,0.0,0.0,23.2814998626709 -13531,2018-01-15 19:00:00,46.99399948120117,0.0,47.20500183105469,1.8229999542236328,0.0,0.0,21.30349922180176 -13532,2018-01-15 20:00:00,48.16699981689453,0.0,49.5369987487793,2.385999917984009,0.0,0.0,20.424999237060547 -13533,2018-01-15 21:00:00,47.32899856567383,5.193999767303467,49.26900100708008,3.9140000343322754,-1.6950000524520874,0.0,19.766000747680664 -13534,2018-01-15 22:00:00,47.999000549316406,7.203999996185303,48.89400100708008,5.414999961853027,0.0,0.0,19.54599952697754 -13535,2018-01-15 23:00:00,39.70600128173828,0.0,41.01300048828125,1.9570000171661377,-1.2690000534057615,0.0,19.326000213623047 -13536,2018-01-16 00:00:00,33.42300033569336,0.0,31.416000366210927,0.0,1.3650000095367432,0.0,19.326000213623047 -13537,2018-01-16 01:00:00,44.39699935913086,6.114999771118164,43.98799896240234,4.36899995803833,0.0,0.0,18.886999130249023 -13538,2018-01-16 02:00:00,43.55899810791016,6.366000175476074,43.479000091552734,4.7179999351501465,0.0,0.0,18.886999130249023 -13539,2018-01-16 03:00:00,41.04600143432617,5.52899980545044,42.459999084472656,4.3429999351501465,-1.246999979019165,0.0,18.44700050354004 -13540,2018-01-16 04:00:00,39.53799819946289,4.440000057220459,40.23500061035156,3.4040000438690186,0.0,0.0,18.007999420166016 -13541,2018-01-16 05:00:00,41.79999923706055,5.78000020980835,42.32600021362305,4.36899995803833,0.0,0.0,17.348499298095707 -13542,2018-01-16 06:00:00,42.55400085449219,5.445000171661377,43.80099868774414,4.26200008392334,0.0,0.0,16.909000396728516 -13543,2018-01-16 07:00:00,41.29800033569336,4.188000202178955,40.07500076293945,2.1440000534057617,1.22599995136261,0.0,16.469499588012695 -13544,2018-01-16 08:00:00,42.97299957275391,5.361000061035156,43.74700164794922,3.753000020980835,0.0,0.0,16.25 -13545,2018-01-16 09:00:00,51.01499938964844,9.381999969482422,51.65499877929688,7.263999938964844,0.0,0.0,15.590999603271484 -13546,2018-01-16 10:00:00,45.82099914550781,4.775000095367432,47.82099914550781,3.51200008392334,-2.45199990272522,0.0,16.25 -13547,2018-01-16 11:00:00,43.05699920654297,5.863999843597412,44.47100067138672,5.013000011444092,-2.45199990272522,0.0,16.909000396728516 -13548,2018-01-16 12:00:00,42.63800048828125,0.0,45.48899841308594,2.760999917984009,-2.45199990272522,0.0,17.568500518798828 -13549,2018-01-16 13:00:00,44.900001525878906,4.440000057220459,47.36600112915039,3.4579999446868896,-2.45199990272522,0.0,17.788000106811523 -13550,2018-01-16 14:00:00,41.632999420166016,4.440000057220459,44.20299911499024,3.484999895095825,-2.45199990272522,0.0,16.68950080871582 -13551,2018-01-16 15:00:00,33.590999603271484,0.0,42.29899978637695,2.6540000438690186,-8.732000350952147,-2.440999984741211,15.371000289916992 -13552,2018-01-16 16:00:00,43.2239990234375,6.031000137329103,52.56600189208984,6.138999938964844,-8.732000350952147,-2.440999984741211,14.711999893188477 -13553,2018-01-16 17:00:00,40.9630012512207,0.0,48.91999816894531,3.378000020980835,-7.729000091552732,-2.440999984741211,14.272500038146973 -13554,2018-01-16 18:00:00,47.41299819946289,5.947999954223633,52.86100006103516,5.013000011444092,-6.4710001945495605,0.0,14.052499771118164 -13555,2018-01-16 19:00:00,43.55899810791016,0.0,50.79700088500977,3.2969999313354488,-6.73799991607666,-1.4609999656677246,13.833000183105469 -13556,2018-01-16 20:00:00,41.96799850463867,0.0,50.79700088500977,3.8059999942779537,-7.879000186920166,-1.3220000267028809,13.613499641418455 -13557,2018-01-16 21:00:00,42.21900177001953,4.105000019073486,50.68999862670898,4.155000209808351,-8.12399959564209,-1.3329999446868896,13.833000183105469 -13558,2018-01-16 22:00:00,37.86299896240234,0.0,48.6259994506836,4.155000209808351,-10.86400032043457,-1.7269999980926514,14.053000450134276 -13559,2018-01-16 23:00:00,40.29199981689453,4.440000057220459,48.6520004272461,4.664000034332275,-8.411999702453612,-1.2790000438690186,14.272500038146973 -13560,2018-01-17 00:00:00,27.559999465942383,0.0,35.70500183105469,0.0,-8.411999702453612,-1.246999979019165,14.272500038146973 -13561,2018-01-17 01:00:00,32.417999267578125,0.0,39.02899932861328,2.358999967575073,-6.982999801635742,-1.246999979019165,14.272500038146973 -13562,2018-01-17 02:00:00,27.47599983215332,0.0,35.73199844360352,0.0,-7.15399980545044,-1.343000054359436,14.052499771118164 -13563,2018-01-17 03:00:00,28.229999542236328,0.0,37.2599983215332,2.358999967575073,-8.465000152587889,-1.343000054359436,13.61299991607666 -13564,2018-01-17 04:00:00,25.1299991607666,0.0,34.23099899291992,0.0,-8.645999908447267,-2.559000015258789,13.173999786376951 -13565,2018-01-17 05:00:00,29.65399932861328,0.0,38.198001861572266,2.1979999542236333,-8.720999717712402,-2.559000015258789,12.734000205993652 -13566,2018-01-17 06:00:00,35.518001556396484,0.0,44.25600051879883,3.8329999446868896,-8.795999526977539,-2.559000015258789,12.51449966430664 -13567,2018-01-17 07:00:00,35.685001373291016,0.0,44.92599868774414,2.5199999809265137,-9.989999771118164,-1.2580000162124634,12.51449966430664 -13568,2018-01-17 08:00:00,35.182998657226555,0.0,43.18399810791016,1.312999963760376,-7.111000061035156,-1.4290000200271606,12.51449966430664 -13569,2018-01-17 09:00:00,37.44400024414063,0.0,47.28499984741211,4.959000110626222,-9.871999740600586,-1.375,12.734000205993652 -13570,2018-01-17 10:00:00,36.68999862670898,0.0,44.06900024414063,2.760999917984009,-7.39900016784668,-1.375,14.053000450134276 -13571,2018-01-17 11:00:00,37.10900115966797,0.0,44.63199996948242,2.358999967575073,-7.355999946594237,-1.246999979019165,16.68950080871582 -13572,2018-01-17 12:00:00,33.757999420166016,0.0,43.80099868774414,2.760999917984009,-10.15999984741211,-1.3009999990463257,18.44750022888184 -13573,2018-01-17 13:00:00,38.70100021362305,0.0,47.23199844360352,4.127999782562257,-8.82800006866455,-1.3009999990463257,19.326499938964844 -13574,2018-01-17 14:00:00,32.83700180053711,0.0,43.63999938964844,2.8410000801086426,-10.022000312805176,-2.5160000324249268,20.20549964904785 -13575,2018-01-17 15:00:00,33.42300033569336,0.0,44.92599868774414,3.5920000076293945,-11.204999923706056,-2.5160000324249268,19.98550033569336 -13576,2018-01-17 16:00:00,35.60100173950195,4.105000019073486,44.900001525878906,4.664000034332275,-8.710000038146973,-2.5160000324249268,19.326000213623047 -13577,2018-01-17 17:00:00,31.2450008392334,0.0,42.29899978637695,3.6989998817443848,-10.3100004196167,-2.5160000324249268,18.44700050354004 -13578,2018-01-17 18:00:00,42.55400085449219,4.2719998359680185,51.387001037597656,4.690999984741211,-9.062000274658203,-2.5160000324249268,16.909000396728516 -13579,2018-01-17 19:00:00,40.29199981689453,0.0,48.6520004272461,2.5199999809265137,-7.793000221252441,-2.5160000324249268,15.590999603271484 -13580,2018-01-17 20:00:00,34.345001220703125,0.0,43.72000122070313,0.0,-9.072999954223633,-2.5160000324249268,14.272500038146973 -13581,2018-01-17 21:00:00,34.261001586914055,0.0,44.25600051879883,0.0,-9.114999771118164,-2.5160000324249268,13.393500328063965 -13582,2018-01-17 22:00:00,34.59600067138672,0.0,45.999000549316406,3.51200008392334,-11.866000175476074,-1.7480000257492063,12.51449966430664 -13583,2018-01-17 23:00:00,38.53300094604492,0.0,47.3390007019043,1.9570000171661377,-9.222000122070312,-1.662999987602234,12.074999809265137 -13584,2018-01-18 00:00:00,35.349998474121094,0.0,45.56999969482422,1.4479999542236328,-10.50100040435791,-1.662999987602234,11.196499824523926 -13585,2018-01-18 01:00:00,33.34000015258789,0.0,43.90800094604492,0.0,-9.28600025177002,-1.3650000095367432,10.756999969482422 -13586,2018-01-18 02:00:00,33.757999420166016,0.0,43.21099853515625,2.1979999542236333,-9.201000213623049,-1.63100004196167,10.317500114440918 -13587,2018-01-18 03:00:00,33.088001251220696,0.0,42.56800079345703,1.9299999475479128,-9.201000213623049,-1.3860000371932983,9.878000259399414 -13588,2018-01-18 04:00:00,34.345001220703125,0.0,43.31800079345703,1.312999963760376,-9.083000183105469,-1.3860000371932983,9.43850040435791 -13589,2018-01-18 05:00:00,35.76900100708008,0.0,44.685001373291016,1.850000023841858,-8.848999977111816,-1.2690000534057615,9.218500137329102 -13590,2018-01-18 06:00:00,34.68000030517578,0.0,44.81900024414063,1.4479999542236328,-10.182000160217283,-2.494999885559082,8.99899959564209 -13591,2018-01-18 07:00:00,35.60100173950195,0.0,44.47100067138672,0.0,-8.923999786376953,-1.63100004196167,8.99899959564209 -13592,2018-01-18 08:00:00,35.76900100708008,0.0,45.22100067138672,0.0,-8.965999603271484,-1.63100004196167,9.43850040435791 -13593,2018-01-18 09:00:00,39.11999893188477,0.0,51.65499877929688,3.378000020980835,-11.93000030517578,-2.996000051498413,10.976499557495115 -13594,2018-01-18 10:00:00,35.85300064086914,0.0,47.7140007019043,0.0,-11.93000030517578,-2.996000051498413,12.95400047302246 -13595,2018-01-18 11:00:00,37.77899932861328,0.0,48.9739990234375,0.0,-10.66100025177002,-2.996000051498413,13.833000183105469 -13596,2018-01-18 12:00:00,36.27199935913086,0.0,48.51800155639648,0.0,-11.918999671936035,-2.996000051498413,14.711999893188477 -13597,2018-01-18 13:00:00,39.95700073242188,0.0,51.387001037597656,2.9489998817443848,-11.866000175476074,-2.2390000820159908,15.590999603271484 -13598,2018-01-18 14:00:00,38.53300094604492,0.0,50.09999847412109,2.493000030517578,-11.876999855041506,-2.1429998874664307,16.68950080871582 -13599,2018-01-18 15:00:00,38.86800003051758,0.0,50.28799819946289,2.8949999809265137,-11.876999855041506,-2.2390000820159908,17.12849998474121 -13600,2018-01-18 16:00:00,39.70600128173828,0.0,51.60100173950195,3.2699999809265137,-11.940999984741213,-2.0999999046325684,16.909000396728516 -13601,2018-01-18 17:00:00,42.1349983215332,0.0,53.39699935913086,2.9749999046325684,-10.651000022888184,-2.0999999046325684,16.469499588012695 -13602,2018-01-18 18:00:00,41.13000106811523,0.0,52.16400146484375,2.2249999046325684,-10.640000343322754,-2.0999999046325684,16.030500411987305 -13603,2018-01-18 19:00:00,39.874000549316406,0.0,50.18000030517578,0.0,-10.427000045776367,-2.0999999046325684,16.030500411987305 -13604,2018-01-18 20:00:00,38.36600112915039,0.0,50.52899932861328,0.0,-11.663999557495115,-2.0999999046325684,16.030500411987305 -13605,2018-01-18 21:00:00,41.29800033569336,0.0,52.19100189208984,2.1710000038146973,-10.37399959564209,-2.5480000972747803,16.030500411987305 -13606,2018-01-18 22:00:00,36.68999862670898,0.0,48.38399887084961,1.3940000534057615,-10.288000106811523,-2.5480000972747803,16.030500411987305 -13607,2018-01-18 23:00:00,37.025001525878906,0.0,48.16999816894531,1.6349999904632568,-10.83199977874756,-3.1770000457763667,15.810999870300291 -13608,2018-01-19 00:00:00,34.09400177001953,0.0,44.685001373291016,0.0,-10.83199977874756,-3.0699999332427983,15.810999870300291 -13609,2018-01-19 01:00:00,35.85300064086914,0.0,44.47100067138672,1.8229999542236328,-7.793000221252441,-3.0169999599456787,15.590999603271484 -13610,2018-01-19 02:00:00,31.832000732421875,0.0,43.104000091552734,1.312999963760376,-10.416000366210938,-2.9530000686645512,15.371000289916992 -13611,2018-01-19 03:00:00,31.077999114990234,0.0,40.87900161743164,0.0,-9.381999969482422,-2.5799999237060547,15.15149974822998 -13612,2018-01-19 04:00:00,32.58599853515625,0.0,40.36899948120117,0.0,-7.708000183105469,-2.5799999237060547,14.711999893188477 -13613,2018-01-19 05:00:00,31.496999740600582,0.0,41.06600189208984,0.0,-9.361000061035156,-2.5799999237060547,14.272500038146973 -13614,2018-01-19 06:00:00,34.17699813842773,0.0,43.55899810791016,0.0,-9.350000381469728,-1.343000054359436,13.173999786376951 -13615,2018-01-19 07:00:00,34.763999938964844,0.0,43.26399993896485,0.0,-7.995999813079834,-2.559000015258789,12.51449966430664 -13616,2018-01-19 08:00:00,35.93600082397461,0.0,45.24800109863281,0.0,-9.829999923706056,-2.559000015258789,12.074999809265137 -13617,2018-01-19 09:00:00,40.62699890136719,0.0,52.99499893188477,4.3429999351501465,-11.088000297546388,-2.559000015258789,12.074999809265137 -13618,2018-01-19 10:00:00,35.85300064086914,0.0,46.9900016784668,0.0,-11.088000297546388,-2.483999967575073,12.074999809265137 -13619,2018-01-19 11:00:00,34.68000030517578,0.0,45.78400039672852,0.0,-11.088000297546388,-2.282000064849853,12.51449966430664 -13620,2018-01-19 12:00:00,34.17699813842773,0.0,46.2400016784668,0.0,-12.314000129699709,-2.282000064849853,13.173500061035154 -13621,2018-01-19 13:00:00,35.85300064086914,0.0,46.64199829101562,1.3669999837875366,-11.07699966430664,-2.45199990272522,13.833000183105469 -13622,2018-01-19 14:00:00,36.60699844360352,0.0,47.82099914550781,0.0,-11.07699966430664,-2.2390000820159908,14.053000450134276 -13623,2018-01-19 15:00:00,41.88399887084961,0.0,51.762001037597656,3.190000057220459,-9.79800033569336,-2.45199990272522,14.491999626159668 -13624,2018-01-19 16:00:00,37.86299896240234,0.0,48.571998596191406,1.3400000333786009,-11.088000297546388,-2.45199990272522,14.711999893188477 -13625,2018-01-19 17:00:00,41.88399887084961,0.0,52.43199920654297,1.5820000171661377,-9.659000396728516,-2.45199990272522,14.932000160217283 -13626,2018-01-19 18:00:00,40.125,0.0,50.60900115966797,0.0,-10.298999786376951,-2.943000078201294,14.932000160217283 -13627,2018-01-19 19:00:00,38.28200149536133,0.0,48.2770004272461,0.0,-10.107000350952148,-1.662999987602234,14.932000160217283 -13628,2018-01-19 20:00:00,34.763999938964844,0.0,44.06900024414063,-1.6080000400543213,-8.421999931335451,-1.662999987602234,14.932000160217283 -13629,2018-01-19 21:00:00,40.20899963378906,0.0,50.50199890136719,0.0,-9.829999923706056,-1.7480000257492063,14.711999893188477 -13630,2018-01-19 22:00:00,35.182998657226555,0.0,45.51599884033203,0.0,-9.776000022888184,-2.0150001049041752,14.711999893188477 -13631,2018-01-19 23:00:00,38.198001861572266,0.0,48.09000015258789,0.0,-9.755000114440918,-2.0150001049041752,14.272500038146973 -13632,2018-01-20 00:00:00,36.27199935913086,0.0,45.62300109863281,0.0,-9.531000137329102,-1.5989999771118164,14.272500038146973 -13633,2018-01-20 01:00:00,34.09400177001953,0.0,44.12200164794922,0.0,-9.13700008392334,-1.940000057220459,13.833000183105469 -13634,2018-01-20 02:00:00,33.25600051879883,0.0,43.23799896240234,0.0,-9.392999649047852,-1.940000057220459,13.833000183105469 -13635,2018-01-20 03:00:00,34.68000030517578,0.0,42.70199966430664,0.0,-8.092000007629395,-1.6950000524520874,12.95400047302246 -13636,2018-01-20 04:00:00,32.75299835205078,0.0,41.36100006103516,0.0,-8.656999588012695,-1.6950000524520874,12.51449966430664 -13637,2018-01-20 05:00:00,33.84199905395508,0.0,43.02299880981445,0.0,-8.805999755859375,-1.6950000524520874,12.074999809265137 -13638,2018-01-20 06:00:00,34.17699813842773,0.0,42.35300064086914,0.0,-8.753000259399414,-1.6950000524520874,12.074999809265137 -13639,2018-01-20 07:00:00,34.429000854492195,0.0,44.04199981689453,0.0,-8.732000350952147,-1.6950000524520874,11.635499954223633 -13640,2018-01-20 08:00:00,39.37099838256836,0.0,46.88299942016602,2.009999990463257,-7.750999927520753,-1.6950000524520874,11.635499954223633 -13641,2018-01-20 09:00:00,36.68999862670898,0.0,46.749000549316406,1.3669999837875366,-9.425000190734863,-2.4730000495910645,12.074999809265137 -13642,2018-01-20 10:00:00,41.2140007019043,0.0,49.59099960327149,2.6540000438690186,-9.211000442504885,-1.63100004196167,12.95400047302246 -13643,2018-01-20 11:00:00,43.05699920654297,0.0,50.26100158691406,1.6619999408721924,-6.684999942779541,-1.2150000333786009,14.49250030517578 -13644,2018-01-20 12:00:00,40.20899963378906,0.0,48.91999816894531,0.0,-9.211000442504885,-2.5480000972747803,15.371500015258787 -13645,2018-01-20 13:00:00,44.39699935913086,0.0,50.68999862670898,1.9570000171661377,-6.7170000076293945,-1.3329999446868896,15.810500144958494 -13646,2018-01-20 14:00:00,45.98899841308594,0.0,47.82099914550781,0.0,-2.6440000534057617,0.0,16.469499588012695 -13647,2018-01-20 15:00:00,48.66899871826172,0.0,49.99300003051758,1.9299999475479128,-1.406999945640564,0.0,16.68950080871582 -13648,2018-01-20 16:00:00,48.75299835205078,0.0,50.18000030517578,1.4210000038146973,-1.3220000267028809,0.0,16.909000396728516 -13649,2018-01-20 17:00:00,49.00400161743164,0.0,49.26900100708008,0.0,0.0,0.0,16.909000396728516 -13650,2018-01-20 18:00:00,48.66899871826172,0.0,50.04600143432617,0.0,-1.3329999446868896,0.0,16.909000396728516 -13651,2018-01-20 19:00:00,46.32400131225586,0.0,48.09000015258789,0.0,-1.2899999618530271,0.0,16.469499588012695 -13652,2018-01-20 20:00:00,48.83700180053711,0.0,49.26900100708008,0.0,0.0,0.0,16.25 -13653,2018-01-20 21:00:00,48.25,0.0,50.18000030517578,0.0,-1.3650000095367432,0.0,16.030500411987305 -13654,2018-01-20 22:00:00,44.64799880981445,0.0,45.67699813842773,0.0,0.0,0.0,15.810999870300291 -13655,2018-01-20 23:00:00,48.33399963378906,0.0,48.91999816894531,1.5820000171661377,0.0,0.0,15.371000289916992 -13656,2018-01-21 00:00:00,44.14599990844727,0.0,45.94499969482422,0.0,-1.6529999971389768,0.0,15.371000289916992 -13657,2018-01-21 01:00:00,40.459999084472656,0.0,41.46799850463867,0.0,0.0,0.0,14.711999893188477 -13658,2018-01-21 02:00:00,39.95700073242188,0.0,41.52199935913086,0.0,0.0,0.0,14.272500038146973 -13659,2018-01-21 03:00:00,40.54399871826172,0.0,41.17399978637695,0.0,0.0,0.0,13.833000183105469 -13660,2018-01-21 04:00:00,40.125,0.0,42.62099838256836,1.5279999971389768,-2.5910000801086426,0.0,13.393500328063965 -13661,2018-01-21 05:00:00,41.38100051879883,0.0,42.99599838256836,0.0,-2.622999906539917,0.0,13.393500328063965 -13662,2018-01-21 06:00:00,40.04100036621094,0.0,41.68299865722656,0.0,-1.3860000371932983,0.0,13.393500328063965 -13663,2018-01-21 07:00:00,44.229000091552734,0.0,44.52399826049805,1.4739999771118164,0.0,0.0,13.393500328063965 -13664,2018-01-21 08:00:00,45.06700134277344,0.0,46.0250015258789,0.0,0.0,0.0,13.393500328063965 -13665,2018-01-21 09:00:00,42.1349983215332,0.0,44.81900024414063,0.0,-2.505000114440918,0.0,13.833000183105469 -13666,2018-01-21 10:00:00,45.98899841308594,0.0,47.58000183105469,0.0,-2.505000114440918,0.0,14.49250030517578 -13667,2018-01-21 11:00:00,45.06700134277344,0.0,47.09799957275391,0.0,-1.3109999895095823,0.0,15.371500015258787 -13668,2018-01-21 12:00:00,40.54399871826172,0.0,41.89699935913086,-2.9219999313354488,-1.2369999885559082,0.0,16.030000686645508 -13669,2018-01-21 13:00:00,39.62200164794922,0.0,41.49499893188477,-2.6540000438690186,-1.375,0.0,16.25 -13670,2018-01-21 14:00:00,33.84199905395508,0.0,34.65999984741211,-2.9749999046325684,0.0,0.0,15.371000289916992 -13671,2018-01-21 15:00:00,31.66399955749512,0.0,33.45399856567383,-3.9670000076293945,-1.3969999551773071,0.0,14.491999626159668 -13672,2018-01-21 16:00:00,33.088001251220696,0.0,34.1510009765625,-4.0209999084472665,0.0,0.0,13.61299991607666 -13673,2018-01-21 17:00:00,34.17699813842773,0.0,34.632999420166016,-4.557000160217285,0.0,0.0,12.95400047302246 -13674,2018-01-21 18:00:00,32.333999633789055,-4.440000057220459,33.588001251220696,-4.959000110626222,0.0,0.0,12.51449966430664 -13675,2018-01-21 19:00:00,31.077999114990234,-5.276999950408936,33.42699813842773,-5.441999912261963,-2.174999952316284,0.0,12.074999809265137 -13676,2018-01-21 20:00:00,32.58599853515625,-4.60699987411499,34.5260009765625,-4.824999809265137,-1.5989999771118164,0.0,11.635499954223633 -13677,2018-01-21 21:00:00,32.08300018310547,-4.941999912261963,33.400001525878906,-5.656000137329103,0.0,0.0,11.635499954223633 -13678,2018-01-21 22:00:00,28.565000534057607,-5.026000022888184,31.57699966430664,-5.199999809265137,-3.0169999599456787,0.0,11.635499954223633 -13679,2018-01-21 23:00:00,27.64299964904785,-4.355999946594238,29.19099998474121,-5.039000034332275,-1.4390000104904177,0.0,11.416000366210938 -13680,2018-01-22 00:00:00,23.20400047302246,-5.947999954223633,25.59900093078613,-6.031000137329103,-2.5480000972747803,0.0,11.635499954223633 -13681,2018-01-22 01:00:00,23.45499992370605,-5.863999843597412,24.95599937438965,-5.896999835968018,-1.6740000247955322,0.0,11.635499954223633 -13682,2018-01-22 02:00:00,21.19300079345703,-5.193999767303467,23.32099914550781,-5.361000061035156,-2.6549999713897705,0.0,11.416000366210938 -13683,2018-01-22 03:00:00,21.61199951171875,-4.690999984741211,22.275999069213867,-5.441999912261963,0.0,0.0,10.756999969482422 -13684,2018-01-22 04:00:00,21.36100006103516,-5.276999950408936,23.267000198364247,-5.1469998359680185,-1.3650000095367432,0.0,9.658499717712402 -13685,2018-01-22 05:00:00,22.78499984741211,-4.775000095367432,23.61599922180176,-5.119999885559082,0.0,0.0,8.99899959564209 -13686,2018-01-22 06:00:00,23.45499992370605,-4.5229997634887695,25.733999252319336,-4.90500020980835,-2.5269999504089355,0.0,8.99899959564209 -13687,2018-01-22 07:00:00,24.62800025939941,-5.361000061035156,26.645000457763672,-5.4679999351501465,-1.7699999809265137,0.0,8.779000282287598 -13688,2018-01-22 08:00:00,27.81100082397461,0.0,30.55900001525879,-3.8329999446868896,-3.049000024795532,0.0,8.779000282287598 -13689,2018-01-22 09:00:00,28.145999908447266,0.0,32.327999114990234,-3.2969999313354488,-4.232999801635741,-1.3109999895095823,9.657999992370604 -13690,2018-01-22 10:00:00,28.565000534057607,-4.440000057220459,32.97100067138672,-3.9670000076293945,-4.232999801635741,-1.22599995136261,12.294500350952148 -13691,2018-01-22 11:00:00,29.066999435424805,-4.690999984741211,33.400001525878906,-4.502999782562256,-4.232999801635741,0.0,14.272500038146973 -13692,2018-01-22 12:00:00,28.39699935913086,-4.5229997634887695,31.89900016784668,-4.611000061035156,-3.006999969482422,0.0,15.15149974822998 -13693,2018-01-22 13:00:00,28.983999252319336,0.0,32.38100051879883,-3.8059999942779537,-3.006999969482422,0.0,15.15149974822998 -13694,2018-01-22 14:00:00,28.39699935913086,0.0,32.67599868774414,-3.108999967575073,-4.232999801635741,0.0,15.371000289916992 -13695,2018-01-22 15:00:00,26.47100067138672,-4.355999946594238,31.38999938964844,-3.753000020980835,-4.232999801635741,-1.246999979019165,16.469499588012695 -13696,2018-01-22 16:00:00,27.559999465942383,-4.188000202178955,30.55900001525879,-4.235000133514403,-3.0169999599456787,0.0,16.909000396728516 -13697,2018-01-22 17:00:00,28.31399917602539,-4.690999984741211,31.54999923706055,-4.422999858856201,-3.124000072479248,0.0,16.68950080871582 -13698,2018-01-22 18:00:00,28.81599998474121,-4.60699987411499,32.54199981689453,-4.315999984741212,-3.124000072479248,-1.2580000162124634,15.15149974822998 -13699,2018-01-22 19:00:00,30.743000030517567,-4.440000057220459,32.944000244140625,-4.879000186920166,-1.9079999923706048,0.0,13.393500328063965 -13700,2018-01-22 20:00:00,33.590999603271484,-4.188000202178955,33.025001525878906,-5.548999786376953,0.0,0.0,12.074999809265137 -13701,2018-01-22 21:00:00,31.99900054931641,0.0,32.810001373291016,-4.824999809265137,0.0,0.0,11.196499824523926 -13702,2018-01-22 22:00:00,28.64900016784668,0.0,30.61199951171875,-4.449999809265137,-1.5460000038146973,0.0,10.756999969482422 -13703,2018-01-22 23:00:00,28.229999542236328,0.0,29.48600006103516,-4.26200008392334,0.0,0.0,10.756999969482422 -13704,2018-01-23 00:00:00,25.1299991607666,-4.105000019073486,27.07399940490723,-4.557000160217285,-2.7079999446868896,0.0,10.976499557495115 -13705,2018-01-23 01:00:00,23.87400054931641,0.0,26.43000030517578,-4.0209999084472665,-1.4709999561309814,0.0,11.196499824523926 -13706,2018-01-23 02:00:00,22.36599922180176,-4.60699987411499,24.71500015258789,-4.664000034332275,-1.3009999990463257,0.0,11.196499824523926 -13707,2018-01-23 03:00:00,22.450000762939453,-4.859000205993652,24.742000579833984,-4.90500020980835,-2.569000005722046,0.0,11.196499824523926 -13708,2018-01-23 04:00:00,23.20400047302246,-4.105000019073486,25.733999252319336,-4.100999832153319,-1.9299999475479128,0.0,11.196499824523926 -13709,2018-01-23 05:00:00,21.69599914550781,-4.690999984741211,24.71500015258789,-4.7179999351501465,-2.6010000705718994,0.0,10.97700023651123 -13710,2018-01-23 06:00:00,24.375999450683597,-4.440000057220459,27.020000457763672,-4.584000110626222,-3.0920000076293945,0.0,10.756999969482422 -13711,2018-01-23 07:00:00,23.70599937438965,-4.859000205993652,27.15399932861328,-4.932000160217285,-3.0920000076293945,0.0,10.536999702453612 -13712,2018-01-23 08:00:00,27.81100082397461,0.0,31.256000518798828,-4.100999832153319,-3.1559998989105225,0.0,10.097999572753906 -13713,2018-01-23 09:00:00,28.73200035095215,0.0,33.990001678466804,-2.0369999408721924,-4.423999786376953,0.0,9.657999992370604 -13714,2018-01-23 10:00:00,31.66399955749512,0.0,35.49100112915039,-2.1440000534057617,-3.2090001106262207,0.0,9.657999992370604 -13715,2018-01-23 11:00:00,32.501998901367195,0.0,36.10699844360352,-2.627000093460083,-3.2090001106262207,0.0,9.657999992370604 -13716,2018-01-23 12:00:00,29.56999969482422,0.0,33.45399856567383,-4.2890000343322745,-3.2090001106262207,0.0,10.317500114440918 -13717,2018-01-23 13:00:00,31.32900047302246,0.0,33.990001678466804,-3.243000030517578,-1.99399995803833,0.0,10.756999969482422 -13718,2018-01-23 14:00:00,30.90999984741211,0.0,34.338001251220696,-2.9489998817443848,-3.2839999198913574,0.0,10.976499557495115 -13719,2018-01-23 15:00:00,33.42300033569336,0.0,36.05400085449219,-2.0369999408721924,-2.068000078201294,0.0,10.756999969482422 -13720,2018-01-23 16:00:00,34.0099983215332,0.0,36.08100128173828,-2.680999994277954,-2.2070000171661377,0.0,10.317500114440918 -13721,2018-01-23 17:00:00,34.261001586914055,0.0,36.1609992980957,-3.7799999713897705,-2.5160000324249268,0.0,9.878000259399414 -13722,2018-01-23 18:00:00,34.763999938964844,0.0,36.3489990234375,-3.753000020980835,-2.6010000705718994,0.0,9.218500137329102 -13723,2018-01-23 19:00:00,36.35499954223633,0.0,36.9119987487793,-4.073999881744385,0.0,0.0,8.99899959564209 -13724,2018-01-23 20:00:00,38.03099822998047,0.0,39.59199905395508,-2.815000057220459,-1.2690000534057615,0.0,8.99899959564209 -13725,2018-01-23 21:00:00,40.29199981689453,0.0,42.64799880981445,-2.3050000667572017,-2.6440000534057617,0.0,8.559499740600586 -13726,2018-01-23 22:00:00,41.29800033569336,0.0,42.99599838256836,-1.6890000104904177,-1.2150000333786009,0.0,8.559499740600586 -13727,2018-01-23 23:00:00,48.83700180053711,4.5229997634887695,49.72499847412109,2.1979999542236333,0.0,0.0,8.339500427246094 -13728,2018-01-24 00:00:00,46.57500076293945,0.0,47.6870002746582,1.7419999837875366,0.0,0.0,7.9004998207092285 -13729,2018-01-24 01:00:00,43.89400100708008,0.0,44.87300109863281,0.0,0.0,0.0,7.4604997634887695 -13730,2018-01-24 02:00:00,43.14099884033203,0.0,43.90800094604492,0.0,0.0,0.0,7.4604997634887695 -13731,2018-01-24 03:00:00,37.44400024414063,0.0,40.04800033569336,0.0,-1.343000054359436,0.0,7.021500110626223 -13732,2018-01-24 04:00:00,40.9630012512207,0.0,42.32600021362305,0.0,-1.8869999647140503,0.0,7.021500110626223 -13733,2018-01-24 05:00:00,40.79499816894531,0.0,43.02299880981445,1.3400000333786009,-1.3109999895095823,0.0,6.581999778747559 -13734,2018-01-24 06:00:00,39.53799819946289,0.0,41.790000915527344,0.0,-2.5910000801086426,0.0,6.142499923706055 -13735,2018-01-24 07:00:00,41.54899978637695,0.0,43.29100036621094,0.0,-1.2580000162124634,0.0,5.703499794006348 -13736,2018-01-24 08:00:00,42.55400085449219,0.0,45.19400024414063,0.0,-2.45199990272522,0.0,5.483500003814697 -13737,2018-01-24 09:00:00,49.75799942016602,4.859000205993652,52.35200119018555,3.2969999313354488,-2.6440000534057617,0.0,5.263500213623047 -13738,2018-01-24 10:00:00,45.98899841308594,0.0,49.21500015258789,0.0,-2.430999994277954,0.0,5.483500003814697 -13739,2018-01-24 11:00:00,45.90499877929688,0.0,48.7859992980957,0.0,-2.388000011444092,0.0,5.922999858856201 -13740,2018-01-24 12:00:00,43.391998291015625,0.0,46.6150016784668,0.0,-3.6040000915527344,0.0,5.922999858856201 -13741,2018-01-24 13:00:00,45.1510009765625,0.0,48.6259994506836,0.0,-3.6040000915527344,0.0,6.142499923706055 -13742,2018-01-24 14:00:00,42.05199813842773,0.0,45.03400039672852,0.0,-3.6040000915527344,0.0,6.581999778747559 -13743,2018-01-24 15:00:00,46.90999984741211,0.0,50.93099975585938,2.546999931335449,-3.6040000915527344,0.0,6.802000045776367 -13744,2018-01-24 16:00:00,44.81600189208984,0.0,47.92900085449219,0.0,-2.259999990463257,0.0,6.361999988555907 -13745,2018-01-24 17:00:00,50.76300048828125,0.0,53.69200134277344,2.0910000801086426,-2.5160000324249268,0.0,5.922999858856201 -13746,2018-01-24 18:00:00,53.0250015258789,0.0,55.51499938964844,2.009999990463257,-2.5160000324249268,0.0,5.703499794006348 -13747,2018-01-24 19:00:00,49.84199905395508,0.0,52.37799835205078,0.0,-2.6549999713897705,0.0,5.703499794006348 -13748,2018-01-24 20:00:00,53.77899932861328,0.0,55.99700164794922,1.3400000333786009,-2.6549999713897705,0.0,5.263500213623047 -13749,2018-01-24 21:00:00,53.61100006103516,4.105000019073486,56.37200164794922,2.2780001163482666,-2.6010000705718994,0.0,4.82450008392334 -13750,2018-01-24 22:00:00,50.76300048828125,0.0,53.42399978637695,2.1440000534057617,-2.611999988555908,0.0,5.044000148773193 -13751,2018-01-24 23:00:00,50.34500122070313,4.440000057220459,52.915000915527344,2.680999994277954,-2.6010000705718994,0.0,4.82450008392334 -13752,2018-01-25 00:00:00,44.73199844360352,0.0,45.67699813842773,0.0,0.0,0.0,4.604499816894531 -13753,2018-01-25 01:00:00,41.632999420166016,0.0,44.06900024414063,0.0,-2.8570001125335693,0.0,3.945499897003174 -13754,2018-01-25 02:00:00,40.62699890136719,0.0,42.86199951171875,0.0,-2.430999994277954,0.0,3.2860000133514404 -13755,2018-01-25 03:00:00,38.70100021362305,0.0,40.95899963378906,0.0,-2.494999885559082,0.0,2.8469998836517334 -13756,2018-01-25 04:00:00,39.874000549316406,0.0,44.06900024414063,0.0,-2.8250000476837163,0.0,2.407000064849853 -13757,2018-01-25 05:00:00,36.104000091552734,0.0,38.73400115966797,-2.0910000801086426,-2.7929999828338623,0.0,2.1875 -13758,2018-01-25 06:00:00,40.04100036621094,0.0,43.07699966430664,-1.7419999837875366,-2.803999900817871,0.0,2.1875 -13759,2018-01-25 07:00:00,34.0099983215332,-4.188000202178955,37.04600143432617,-4.422999858856201,-2.8250000476837163,0.0,2.1875 -13760,2018-01-25 08:00:00,39.874000549316406,0.0,42.27299880981445,-1.312999963760376,-2.8250000476837163,0.0,1.528499960899353 -13761,2018-01-25 09:00:00,41.88399887084961,0.0,44.12200164794922,0.0,-1.246999979019165,0.0,1.528499960899353 -13762,2018-01-25 10:00:00,41.88399887084961,0.0,44.87300109863281,0.0,-2.5799999237060547,0.0,1.528499960899353 -13763,2018-01-25 11:00:00,47.41299819946289,0.0,50.28799819946289,0.0,-3.816999912261963,0.0,1.7484999895095823 -13764,2018-01-25 12:00:00,44.14599990844727,0.0,47.47299957275391,0.0,-4.051000118255615,0.0,1.7484999895095823 -13765,2018-01-25 13:00:00,44.900001525878906,0.0,48.51800155639648,0.0,-4.190000057220459,0.0,1.7484999895095823 -13766,2018-01-25 14:00:00,47.24499893188477,0.0,50.93099975585938,0.0,-3.006999969482422,0.0,1.7484999895095823 -13767,2018-01-25 15:00:00,53.946998596191406,5.445000171661377,56.47999954223633,3.6989998817443848,-2.868000030517578,0.0,1.7484999895095823 -13768,2018-01-25 16:00:00,48.08300018310547,0.0,50.42200088500977,0.0,-1.5889999866485596,0.0,2.1875 -13769,2018-01-25 17:00:00,47.49599838256836,0.0,49.99300003051758,0.0,-2.96399998664856,0.0,2.1875 -13770,2018-01-25 18:00:00,47.58000183105469,0.0,48.2239990234375,0.0,0.0,0.0,2.1875 -13771,2018-01-25 19:00:00,46.90999984741211,0.0,48.946998596191406,0.0,-1.3539999723434448,0.0,2.1875 -13772,2018-01-25 20:00:00,51.26599884033203,0.0,52.88800048828125,0.0,-1.2150000333786009,0.0,2.1875 -13773,2018-01-25 21:00:00,45.73699951171875,0.0,47.74100112915039,0.0,-1.406999945640564,0.0,2.627000093460083 -13774,2018-01-25 22:00:00,39.95700073242188,0.0,42.64799880981445,-1.7419999837875366,-2.740000009536743,0.0,2.627000093460083 -13775,2018-01-25 23:00:00,37.77899932861328,0.0,41.84400177001953,0.0,-2.878999948501587,0.0,3.066499948501587 -13776,2018-01-26 00:00:00,42.63800048828125,0.0,44.04199981689453,0.0,-1.5460000038146973,0.0,2.8464999198913574 -13777,2018-01-26 01:00:00,38.44900131225586,0.0,40.79800033569336,-1.3400000333786009,-2.45199990272522,0.0,2.407500028610229 -13778,2018-01-26 02:00:00,38.86800003051758,0.0,42.03099822998047,0.0,-2.003999948501587,0.0,2.407500028610229 -13779,2018-01-26 03:00:00,38.198001861572266,0.0,41.28099822998047,0.0,-3.3580000400543213,0.0,2.187999963760376 -13780,2018-01-26 04:00:00,32.92100143432617,0.0,36.21500015258789,-2.627000093460083,-3.2730000019073486,0.0,2.187999963760376 -13781,2018-01-26 05:00:00,36.94200134277344,0.0,39.53799819946289,0.0,-2.121999979019165,0.0,2.187999963760376 -13782,2018-01-26 06:00:00,39.2869987487793,0.0,42.40700149536133,0.0,-3.4119999408721924,0.0,2.187999963760376 -13783,2018-01-26 07:00:00,39.70600128173828,0.0,43.07699966430664,0.0,-3.049000024795532,0.0,2.187999963760376 -13784,2018-01-26 08:00:00,38.86800003051758,0.0,41.97800064086914,-1.8229999542236328,-2.9749999046325684,0.0,2.627000093460083 -13785,2018-01-26 09:00:00,38.44900131225586,0.0,41.87099838256836,-1.4739999771118164,-2.9210000038146973,0.0,3.2860000133514404 -13786,2018-01-26 10:00:00,36.77399826049805,0.0,39.91400146484375,-2.6540000438690186,-2.9210000038146973,0.0,3.945499897003174 -13787,2018-01-26 11:00:00,40.9630012512207,0.0,44.229000091552734,-1.3940000534057615,-2.888999938964844,0.0,4.385000228881837 -13788,2018-01-26 12:00:00,42.1349983215332,0.0,45.19400024414063,-1.6080000400543213,-2.888999938964844,0.0,4.823999881744385 -13789,2018-01-26 13:00:00,45.31800079345703,0.0,50.42200088500977,0.0,-4.169000148773193,-1.4390000104904177,5.044000148773193 -13790,2018-01-26 14:00:00,45.23500061035156,0.0,48.7859992980957,0.0,-2.8469998836517334,0.0,6.142499923706055 -13791,2018-01-26 15:00:00,48.41799926757813,0.0,52.21799850463867,1.5010000467300415,-4.072999954223634,-1.2690000534057615,7.021500110626223 -13792,2018-01-26 16:00:00,48.08300018310547,0.0,51.387001037597656,0.0,-4.019000053405762,0.0,7.241000175476074 -13793,2018-01-26 17:00:00,53.44400024414063,0.0,55.72900009155274,1.5820000171661377,-2.6010000705718994,0.0,6.581999778747559 -13794,2018-01-26 18:00:00,52.52299880981445,0.0,55.51499938964844,1.312999963760376,-2.6010000705718994,0.0,5.922999858856201 -13795,2018-01-26 19:00:00,49.92599868774414,0.0,52.59299850463867,0.0,-2.569000005722046,0.0,5.703499794006348 -13796,2018-01-26 20:00:00,46.49100112915039,0.0,49.1619987487793,-1.312999963760376,-3.0699999332427983,0.0,5.483500003814697 -13797,2018-01-26 21:00:00,48.91999816894531,0.0,53.39699935913086,0.0,-4.926000118255615,-1.2899999618530271,5.263500213623047 -13798,2018-01-26 22:00:00,47.915000915527344,0.0,49.9119987487793,0.0,-2.227999925613404,0.0,5.044000148773193 -13799,2018-01-26 23:00:00,46.40700149536133,0.0,47.63399887084961,0.0,-1.2150000333786009,0.0,4.82450008392334 -13800,2018-01-27 00:00:00,44.983001708984375,0.0,47.09799957275391,1.5010000467300415,-2.430999994277954,0.0,4.384500026702882 -13801,2018-01-27 01:00:00,45.73699951171875,0.0,46.5880012512207,0.0,0.0,0.0,4.384500026702882 -13802,2018-01-27 02:00:00,43.2239990234375,0.0,45.4630012512207,1.7419999837875366,-2.9530000686645512,0.0,3.945499897003174 -13803,2018-01-27 03:00:00,40.54399871826172,0.0,43.53300094604492,0.0,-2.9749999046325684,-1.3009999990463257,3.945499897003174 -13804,2018-01-27 04:00:00,38.86800003051758,0.0,41.709999084472656,0.0,-2.96399998664856,-1.2790000438690186,3.505500078201294 -13805,2018-01-27 05:00:00,37.025001525878906,0.0,39.69900131225586,-2.0910000801086426,-2.9110000133514404,0.0,3.505500078201294 -13806,2018-01-27 06:00:00,41.38100051879883,0.0,43.479000091552734,0.0,-2.9110000133514404,0.0,3.2860000133514404 -13807,2018-01-27 07:00:00,40.20899963378906,0.0,43.42499923706055,0.0,-3.0280001163482666,0.0,1.968000054359436 -13808,2018-01-27 08:00:00,37.10900115966797,0.0,40.07500076293945,-2.2249999046325684,-2.569000005722046,0.0,1.528499960899353 -13809,2018-01-27 09:00:00,43.391998291015625,0.0,47.7140007019043,0.0,-4.114999771118163,-1.3539999723434448,0.6495000123977661 -13810,2018-01-27 10:00:00,40.20899963378906,0.0,43.50600051879883,-1.6890000104904177,-2.803999900817871,0.0,-0.2294999957084656 -13811,2018-01-27 11:00:00,50.00899887084961,0.0,53.79899978637695,0.0,-4.1469998359680185,-1.22599995136261,0.4300000071525574 -13812,2018-01-27 12:00:00,44.81600189208984,0.0,48.7599983215332,1.3400000333786009,-2.931999921798706,-1.2690000534057615,0.8690000176429749 -13813,2018-01-27 13:00:00,44.0620002746582,0.0,47.6609992980957,1.6619999408721924,-3.3159999847412114,-1.3009999990463257,1.7480000257492063 -13814,2018-01-27 14:00:00,44.48099899291992,0.0,48.73300170898438,1.5549999475479126,-4.638000011444092,-1.22599995136261,2.1875 -13815,2018-01-27 15:00:00,48.91999816894531,4.440000057220459,54.12099838256836,4.26200008392334,-4.702000141143799,-1.3009999990463257,2.8469998836517334 -13816,2018-01-27 16:00:00,45.90499877929688,0.0,48.54499816894531,1.9570000171661377,-3.390000104904175,0.0,3.2860000133514404 -13817,2018-01-27 17:00:00,54.28200149536133,5.611999988555908,56.18500137329102,4.100999832153319,-2.068000078201294,0.0,3.2860000133514404 -13818,2018-01-27 18:00:00,53.19300079345703,5.110000133514403,57.33700180053711,4.422999858856201,-3.1770000457763667,-1.2150000333786009,3.945499897003174 -13819,2018-01-27 19:00:00,50.00899887084961,0.0,53.47700119018555,2.5199999809265137,-3.1770000457763667,-1.22599995136261,3.945499897003174 -13820,2018-01-27 20:00:00,46.99399948120117,0.0,50.50199890136719,1.6349999904632568,-3.1879999637603764,-1.246999979019165,3.945499897003174 -13821,2018-01-27 21:00:00,44.39699935913086,0.0,49.48300170898438,0.0,-4.423999786376953,-1.246999979019165,3.945499897003174 -13822,2018-01-27 22:00:00,41.632999420166016,0.0,45.62300109863281,0.0,-4.446000099182129,-1.2369999885559082,3.945499897003174 -13823,2018-01-27 23:00:00,37.277000427246094,0.0,40.07500076293945,0.0,-3.2090001106262207,0.0,4.384500026702882 -13824,2018-01-28 00:00:00,35.85300064086914,0.0,39.055999755859375,0.0,-3.1879999637603764,-1.375,4.384500026702882 -13825,2018-01-28 01:00:00,31.916000366210927,0.0,35.303001403808594,-1.6080000400543213,-3.2939999103546143,-1.3650000095367432,4.1649999618530265 -13826,2018-01-28 02:00:00,29.65399932861328,0.0,32.810001373291016,-2.1440000534057617,-3.240999937057495,-1.246999979019165,3.725500106811523 -13827,2018-01-28 03:00:00,29.90500068664551,0.0,32.16699981689453,-2.9219999313354488,-2.0150001049041752,0.0,3.505500078201294 -13828,2018-01-28 04:00:00,29.90500068664551,0.0,31.95199966430664,-2.7070000171661377,-2.0899999141693115,0.0,3.505500078201294 -13829,2018-01-28 05:00:00,30.1560001373291,0.0,33.69499969482422,-1.9029999971389768,-3.336999893188477,-1.2369999885559082,3.2860000133514404 -13830,2018-01-28 06:00:00,33.590999603271484,0.0,36.50899887084961,0.0,-3.2839999198913574,0.0,3.2860000133514404 -13831,2018-01-28 07:00:00,31.66399955749512,0.0,34.5260009765625,-2.0910000801086426,-2.174999952316284,0.0,3.2860000133514404 -13832,2018-01-28 08:00:00,32.83700180053711,0.0,35.49100112915039,-3.2170000076293945,-2.2070000171661377,0.0,3.066499948501587 -13833,2018-01-28 09:00:00,37.61199951171875,0.0,40.79800033569336,0.0,-3.433000087738037,-1.2899999618530271,2.8464999198913574 -13834,2018-01-28 10:00:00,38.70100021362305,0.0,43.13000106811523,0.0,-3.433000087738037,-1.5779999494552612,2.8464999198913574 -13835,2018-01-28 11:00:00,42.80500030517578,0.0,46.69599914550781,0.0,-3.549999952316284,-1.22599995136261,3.2860000133514404 -13836,2018-01-28 12:00:00,48.16699981689453,0.0,52.43199920654297,2.1440000534057617,-3.549999952316284,-1.2369999885559082,3.505500078201294 -13837,2018-01-28 13:00:00,44.56499862670898,0.0,48.33100128173828,0.0,-3.5290000438690186,-1.2690000534057615,3.725500106811523 -13838,2018-01-28 14:00:00,44.48099899291992,0.0,47.875,0.0,-3.3480000495910645,-1.2369999885559082,3.945499897003174 -13839,2018-01-28 15:00:00,47.66400146484375,0.0,50.52899932861328,1.7419999837875366,-3.3480000495910645,0.0,4.384500026702882 -13840,2018-01-28 16:00:00,42.97299957275391,0.0,46.15999984741211,0.0,-3.7309999465942383,0.0,4.82450008392334 -13841,2018-01-28 17:00:00,50.512001037597656,0.0,52.53900146484375,1.5279999971389768,-2.494999885559082,0.0,5.263500213623047 -13842,2018-01-28 18:00:00,51.18199920654297,0.0,53.74599838256836,1.5010000467300415,-2.1640000343322754,0.0,5.263500213623047 -13843,2018-01-28 19:00:00,51.93600082397461,0.0,54.81800079345703,1.715999960899353,-3.4119999408721924,0.0,5.263500213623047 -13844,2018-01-28 20:00:00,45.65399932861328,0.0,48.38399887084961,0.0,-3.380000114440918,0.0,5.044000148773193 -13845,2018-01-28 21:00:00,52.27099990844727,0.0,54.81800079345703,2.438999891281128,-1.9079999923706048,0.0,4.82450008392334 -13846,2018-01-28 22:00:00,50.34500122070313,5.110000133514403,53.665000915527344,4.0209999084472665,-3.1879999637603764,0.0,4.384500026702882 -13847,2018-01-28 23:00:00,47.49599838256836,0.0,48.89400100708008,2.5199999809265137,0.0,0.0,4.1649999618530265 -13848,2018-01-29 00:00:00,40.79499816894531,0.0,44.09500122070313,0.0,-2.25,-1.246999979019165,4.1649999618530265 -13849,2018-01-29 01:00:00,41.632999420166016,0.0,43.26399993896485,1.7960000038146973,-1.3109999895095823,0.0,3.945499897003174 -13850,2018-01-29 02:00:00,36.94200134277344,0.0,40.39599990844727,0.0,-3.763000011444092,-1.2369999885559082,3.945499897003174 -13851,2018-01-29 03:00:00,31.916000366210927,0.0,35.2760009765625,0.0,-2.5369999408721924,-1.2369999885559082,3.725500106811523 -13852,2018-01-29 04:00:00,30.492000579833984,0.0,33.82899856567383,-1.5010000467300415,-3.8059999942779537,-1.2690000534057615,3.2860000133514404 -13853,2018-01-29 05:00:00,31.66399955749512,0.0,35.597999572753906,-2.0369999408721924,-2.9530000686645512,-1.246999979019165,2.8469998836517334 -13854,2018-01-29 06:00:00,39.95700073242188,0.0,43.02299880981445,1.7960000038146973,-2.9530000686645512,-1.2899999618530271,2.627000093460083 -13855,2018-01-29 07:00:00,40.87900161743164,0.0,44.09500122070313,2.009999990463257,-2.8469998836517334,-1.2899999618530271,2.407000064849853 -13856,2018-01-29 08:00:00,41.13000106811523,0.0,44.76599884033203,0.0,-2.8469998836517334,-1.2899999618530271,2.1875 -13857,2018-01-29 09:00:00,47.41299819946289,4.188000202178955,51.78900146484375,3.9670000076293945,-4.061999797821045,-1.3220000267028809,2.627000093460083 -13858,2018-01-29 10:00:00,48.25,0.0,52.19100189208984,2.8410000801086426,-4.061999797821045,-1.3220000267028809,3.945499897003174 -13859,2018-01-29 11:00:00,52.94100189208984,4.188000202178955,57.09600067138672,3.3510000705718994,-4.061999797821045,-1.6100000143051147,5.044000148773193 -13860,2018-01-29 12:00:00,52.60599899291992,5.110000133514403,57.25699996948242,4.477000236511231,-4.061999797821045,-1.6100000143051147,6.142499923706055 -13861,2018-01-29 13:00:00,52.52299880981445,5.78000020980835,56.90900039672852,4.959000110626222,-4.061999797821045,-1.6100000143051147,7.241000175476074 -13862,2018-01-29 14:00:00,50.00899887084961,4.775000095367432,53.69200134277344,3.9670000076293945,-2.8469998836517334,-1.2690000534057615,8.339500427246094 -13863,2018-01-29 15:00:00,46.82600021362305,0.0,50.34099960327149,2.7880001068115234,-4.072999954223634,-1.2690000534057615,8.99899959564209 -13864,2018-01-29 16:00:00,51.09799957275391,4.941999912261963,55.13899993896485,4.047999858856201,-4.072999954223634,-1.2790000438690186,8.779500007629395 -13865,2018-01-29 17:00:00,51.76900100708008,4.440000057220459,55.29999923706055,3.4309999942779537,-3.9660000801086426,-1.2790000438690186,7.680500030517577 -13866,2018-01-29 18:00:00,53.77899932861328,5.193999767303467,56.72100067138672,3.8329999446868896,-2.5910000801086426,-1.2150000333786009,6.581999778747559 -13867,2018-01-29 19:00:00,49.67399978637695,0.0,52.83399963378906,1.3940000534057615,-2.5799999237060547,-1.2690000534057615,5.263999938964844 -13868,2018-01-29 20:00:00,53.69499969482422,4.355999946594238,57.7400016784668,3.3239998817443848,-4.201000213623047,-1.2369999885559082,4.1649999618530265 -13869,2018-01-29 21:00:00,51.68500137329102,0.0,53.61100006103516,1.4479999542236328,-2.9749999046325684,0.0,3.066499948501587 -13870,2018-01-29 22:00:00,52.85800170898438,5.445000171661377,54.76399993896485,3.61899995803833,-1.3329999446868896,0.0,2.1875 -13871,2018-01-29 23:00:00,48.584999084472656,4.2719998359680185,50.23400115966797,2.868000030517578,-1.2369999885559082,0.0,1.7484999895095823 -13872,2018-01-30 00:00:00,43.89400100708008,0.0,44.95299911499024,1.9029999971389768,0.0,0.0,0.8694999814033508 -13873,2018-01-30 01:00:00,42.97299957275391,0.0,44.65800094604492,1.8229999542236328,-1.2580000162124634,0.0,0.429500013589859 -13874,2018-01-30 02:00:00,38.53300094604492,0.0,40.98600006103516,0.0,-1.4390000104904177,0.0,-0.0094999996945261 -13875,2018-01-30 03:00:00,35.85300064086914,0.0,37.608001708984375,0.0,-1.343000054359436,0.0,-0.2294999957084656 -13876,2018-01-30 04:00:00,32.501998901367195,0.0,34.713001251220696,-1.312999963760376,-1.3109999895095823,0.0,-0.8884999752044678 -13877,2018-01-30 05:00:00,35.43399810791016,0.0,37.15299987792969,0.0,-2.463000059127808,0.0,-1.3285000324249268 -13878,2018-01-30 06:00:00,36.68999862670898,0.0,38.52000045776367,0.0,-1.6529999971389768,0.0,-2.2070000171661377 -13879,2018-01-30 07:00:00,35.014999389648445,0.0,37.20600128173828,0.0,-1.9079999923706048,0.0,-2.6465001106262207 -13880,2018-01-30 08:00:00,32.92100143432617,0.0,38.573001861572266,0.0,-4.711999893188477,-1.2580000162124634,-2.6465001106262207 -13881,2018-01-30 09:00:00,40.459999084472656,0.0,46.6150016784668,2.5199999809265137,-6.045000076293945,-1.2580000162124634,-1.7675000429153442 -13882,2018-01-30 10:00:00,42.88899993896485,0.0,47.6609992980957,1.8760000467300413,-4.829999923706055,-1.2580000162124634,1.0889999866485596 -13883,2018-01-30 11:00:00,42.55400085449219,0.0,47.63399887084961,1.8229999542236328,-4.829999923706055,-1.2580000162124634,5.483500003814697 -13884,2018-01-30 12:00:00,39.874000549316406,0.0,44.81900024414063,1.3940000534057615,-4.829999923706055,-1.2580000162124634,9.657999992370604 -13885,2018-01-30 13:00:00,45.56999969482422,4.355999946594238,50.15399932861328,4.2890000343322745,-4.829999923706055,-1.2580000162124634,12.074999809265137 -13886,2018-01-30 14:00:00,43.2239990234375,0.0,47.63399887084961,3.7799999713897705,-4.829999923706055,-1.2580000162124634,13.61299991607666 -13887,2018-01-30 15:00:00,41.632999420166016,0.0,46.66899871826172,3.3510000705718994,-4.829999923706055,-1.2580000162124634,12.074999809265137 -13888,2018-01-30 16:00:00,45.1510009765625,4.859000205993652,49.72499847412109,5.065999984741211,-4.829999923706055,-1.2580000162124634,10.536999702453612 -13889,2018-01-30 17:00:00,51.76900100708008,4.2719998359680185,55.03200149536133,3.6459999084472656,-3.614000082015991,-1.2580000162124634,8.339500427246094 -13890,2018-01-30 18:00:00,51.34999847412109,0.0,55.08599853515625,3.243000030517578,-4.008999824523927,-1.2790000438690186,7.0209999084472665 -13891,2018-01-30 19:00:00,48.75299835205078,0.0,52.83399963378906,1.8760000467300413,-3.9660000801086426,-1.375,5.922999858856201 -13892,2018-01-30 20:00:00,50.34500122070313,0.0,55.03200149536133,2.0639998912811284,-3.9660000801086426,-1.375,5.044000148773193 -13893,2018-01-30 21:00:00,53.2760009765625,4.440000057220459,56.80099868774414,3.4309999942779537,-3.9660000801086426,-1.2369999885559082,4.384500026702882 -13894,2018-01-30 22:00:00,49.75799942016602,0.0,53.82600021362305,3.51200008392334,-3.7739999294281006,-1.246999979019165,3.945499897003174 -13895,2018-01-30 23:00:00,44.56499862670898,0.0,48.7599983215332,2.733999967575073,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13896,2018-01-31 00:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13897,2018-01-31 01:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13898,2018-01-31 02:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13899,2018-01-31 03:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13900,2018-01-31 04:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13901,2018-01-31 05:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13902,2018-01-31 06:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13903,2018-01-31 07:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13904,2018-01-31 08:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13905,2018-01-31 09:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13906,2018-01-31 10:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13907,2018-01-31 11:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13908,2018-01-31 12:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13909,2018-01-31 13:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13910,2018-01-31 14:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13911,2018-01-31 15:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13912,2018-01-31 16:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13913,2018-01-31 17:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13914,2018-01-31 18:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13915,2018-01-31 19:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13916,2018-01-31 20:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13917,2018-01-31 21:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13918,2018-01-31 22:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13919,2018-01-31 23:00:00,44.64799880981445,0.0,48.70600128173828,2.8949999809265137,-3.7739999294281006,-1.246999979019165,3.066499948501587 -13920,2018-02-01 00:00:00,40.29199981689453,0.0,42.40700149536133,0.0,-1.6950000524520874,0.0,3.2860000133514404 -13921,2018-02-01 01:00:00,39.0359992980957,0.0,40.66400146484375,0.0,-1.2580000162124634,0.0,2.627000093460083 -13922,2018-02-01 02:00:00,37.277000427246094,0.0,38.198001861572266,0.0,0.0,0.0,1.7484999895095823 -13923,2018-02-01 03:00:00,43.30799865722656,0.0,44.52399826049805,1.6619999408721924,0.0,0.0,1.308500051498413 -13924,2018-02-01 04:00:00,41.79999923706055,0.0,44.14899826049805,3.4040000438690186,-2.9749999046325684,0.0,0.429500013589859 -13925,2018-02-01 05:00:00,42.55400085449219,4.60699987411499,44.55099868774414,4.100999832153319,-1.8980000019073489,0.0,-0.0094999996945261 -13926,2018-02-01 06:00:00,41.2140007019043,0.0,43.39899826049805,2.760999917984009,-1.2369999885559082,0.0,-0.4494999945163727 -13927,2018-02-01 07:00:00,45.31800079345703,4.690999984741211,46.4010009765625,3.2699999809265137,0.0,0.0,-0.8884999752044678 -13928,2018-02-01 08:00:00,37.69599914550781,0.0,41.709999084472656,0.0,-4.275000095367432,0.0,-0.8884999752044678 -13929,2018-02-01 09:00:00,47.74800109863281,5.193999767303467,52.35200119018555,4.502999782562256,-4.083000183105469,-1.2580000162124634,1.0889999866485596 -13930,2018-02-01 10:00:00,45.82099914550781,0.0,49.64400100708008,2.438999891281128,-2.96399998664856,-1.2150000333786009,5.044000148773193 -13931,2018-02-01 11:00:00,48.66899871826172,0.0,52.61999893188477,3.190000057220459,-3.838000059127808,-1.2690000534057615,9.878000259399414 -13932,2018-02-01 12:00:00,44.64799880981445,0.0,48.84000015258789,2.3320000171661377,-3.838000059127808,-1.246999979019165,13.833000183105469 -13933,2018-02-01 13:00:00,47.66400146484375,5.276999950408936,51.49399948120117,4.53000020980835,-3.838000059127808,-1.246999979019165,15.590999603271484 -13934,2018-02-01 14:00:00,47.74800109863281,5.445000171661377,51.86899948120117,4.744999885559082,-3.986999988555908,-1.246999979019165,15.810500144958494 -13935,2018-02-01 15:00:00,46.74300003051758,5.611999988555908,51.09199905395508,5.227000236511231,-3.986999988555908,-1.2690000534057615,15.15149974822998 -13936,2018-02-01 16:00:00,45.23500061035156,4.188000202178955,49.26900100708008,3.8059999942779537,-3.986999988555908,-1.343000054359436,14.272500038146973 -13937,2018-02-01 17:00:00,43.72700119018555,0.0,47.58000183105469,2.0910000801086426,-3.848999977111816,-1.2790000438690186,12.95400047302246 -13938,2018-02-01 18:00:00,43.30799865722656,0.0,46.5620002746582,1.4210000038146973,-2.4730000495910645,-1.2150000333786009,11.196499824523926 -13939,2018-02-01 19:00:00,47.24499893188477,0.0,51.06499862670898,1.7419999837875366,-3.7100000381469727,-1.3109999895095823,9.218500137329102 -13940,2018-02-01 20:00:00,51.85200119018555,0.0,54.41600036621094,2.5199999809265137,-2.483999967575073,0.0,7.9004998207092285 -13941,2018-02-01 21:00:00,54.78400039672852,5.52899980545044,55.38100051879883,3.243000030517578,0.0,0.0,7.021500110626223 -13942,2018-02-01 22:00:00,51.26599884033203,5.110000133514403,52.915000915527344,4.047999858856201,-2.440999984741211,0.0,6.581999778747559 -13943,2018-02-01 23:00:00,41.04600143432617,0.0,44.09500122070313,0.0,-2.740000009536743,-1.22599995136261,6.581999778747559 -13944,2018-02-02 00:00:00,40.20899963378906,0.0,42.48699951171875,1.4739999771118164,-2.697000026702881,0.0,6.581999778747559 -13945,2018-02-02 01:00:00,41.632999420166016,0.0,43.61299896240234,1.850000023841858,-1.2369999885559082,0.0,6.362500190734862 -13946,2018-02-02 02:00:00,39.62200164794922,0.0,41.57600021362305,1.715999960899353,-2.5269999504089355,0.0,6.142499923706055 -13947,2018-02-02 03:00:00,41.46500015258789,0.0,43.77399826049805,2.1979999542236333,-2.026000022888184,0.0,5.922999858856201 -13948,2018-02-02 04:00:00,41.2140007019043,0.0,42.13899993896485,1.8760000467300413,0.0,0.0,5.703499794006348 -13949,2018-02-02 05:00:00,42.303001403808594,0.0,43.04999923706055,2.1979999542236333,0.0,0.0,5.263500213623047 -13950,2018-02-02 06:00:00,37.19300079345703,0.0,39.61899948120117,0.0,-2.996000051498413,0.0,5.044000148773193 -13951,2018-02-02 07:00:00,42.80500030517578,0.0,44.73899841308594,1.6619999408721924,-1.503000020980835,0.0,4.384500026702882 -13952,2018-02-02 08:00:00,39.95700073242188,0.0,43.50600051879883,0.0,-2.888999938964844,0.0,3.945499897003174 -13953,2018-02-02 09:00:00,47.32899856567383,5.696000099182129,51.19900131225586,5.119999885559082,-4.105000019073486,-1.4179999828338623,5.263500213623047 -13954,2018-02-02 10:00:00,45.98899841308594,0.0,49.96599960327149,3.5380001068115234,-4.105000019073486,-1.4179999828338623,8.339500427246094 -13955,2018-02-02 11:00:00,48.584999084472656,4.440000057220459,52.137001037597656,3.6459999084472656,-4.105000019073486,-1.246999979019165,12.51449966430664 -13956,2018-02-02 12:00:00,45.48600006103516,0.0,49.64400100708008,2.546999931335449,-4.105000019073486,-1.2790000438690186,15.810500144958494 -13957,2018-02-02 13:00:00,50.09299850463867,6.114999771118164,53.04899978637695,5.065999984741211,-2.888999938964844,0.0,15.371000289916992 -13958,2018-02-02 14:00:00,49.92599868774414,6.533999919891357,53.18299865722656,5.254000186920166,-2.9210000038146973,0.0,14.491999626159668 -13959,2018-02-02 15:00:00,46.071998596191406,5.361000061035156,50.55599975585938,4.7709999084472665,-4.040999889373778,-1.22599995136261,15.590999603271484 -13960,2018-02-02 16:00:00,46.32400131225586,5.026000022888184,48.54499816894531,3.99399995803833,-2.750999927520752,0.0,14.932000160217283 -13961,2018-02-02 17:00:00,49.84199905395508,5.947999954223633,51.86899948120117,4.073999881744385,-2.5799999237060547,0.0,13.61299991607666 -13962,2018-02-02 18:00:00,52.43899917602539,5.78000020980835,54.81800079345703,3.9670000076293945,-2.815000057220459,0.0,12.074999809265137 -13963,2018-02-02 19:00:00,49.0880012512207,4.105000019073486,50.71599960327149,2.5729999542236333,-1.4609999656677246,0.0,10.756999969482422 -13964,2018-02-02 20:00:00,54.78400039672852,5.78000020980835,55.67599868774414,3.4040000438690186,0.0,0.0,9.878000259399414 -13965,2018-02-02 21:00:00,55.0359992980957,6.366000175476074,56.15800094604492,4.127999782562257,0.0,0.0,9.43850040435791 -13966,2018-02-02 22:00:00,54.44900131225586,6.533999919891357,54.25500106811523,3.9140000343322754,0.0,0.0,8.779500007629395 -13967,2018-02-02 23:00:00,49.67399978637695,5.361000061035156,50.58200073242188,3.61899995803833,0.0,0.0,8.119999885559082 -13968,2018-02-03 00:00:00,41.29800033569336,0.0,43.18399810791016,1.8760000467300413,-1.4709999561309814,0.0,7.680500030517577 -13969,2018-02-03 01:00:00,43.97800064086914,0.0,45.91799926757813,2.680999994277954,-1.6950000524520874,0.0,7.021500110626223 -13970,2018-02-03 02:00:00,42.387001037597656,4.355999946594238,44.01499938964844,3.4309999942779537,-1.2580000162124634,0.0,6.581999778747559 -13971,2018-02-03 03:00:00,41.54899978637695,0.0,43.50600051879883,2.438999891281128,-1.621000051498413,0.0,5.703499794006348 -13972,2018-02-03 04:00:00,41.632999420166016,0.0,43.23799896240234,2.5199999809265137,-1.22599995136261,0.0,4.82450008392334 -13973,2018-02-03 05:00:00,41.71599960327149,0.0,43.72000122070313,2.680999994277954,-1.2580000162124634,0.0,3.945499897003174 -13974,2018-02-03 06:00:00,43.81100082397461,4.5229997634887695,44.63199996948242,2.9749999046325684,0.0,0.0,3.066499948501587 -13975,2018-02-03 07:00:00,43.05699920654297,0.0,44.310001373291016,2.118000030517578,0.0,0.0,2.1875 -13976,2018-02-03 08:00:00,43.97800064086914,0.0,46.374000549316406,2.0910000801086426,-2.760999917984009,0.0,2.1875 -13977,2018-02-03 09:00:00,47.24499893188477,5.52899980545044,50.71599960327149,4.449999809265137,-3.986999988555908,0.0,3.945499897003174 -13978,2018-02-03 10:00:00,48.16699981689453,5.361000061035156,51.73500061035156,4.073999881744385,-3.986999988555908,0.0,7.241000175476074 -13979,2018-02-03 11:00:00,48.50199890136719,4.859000205993652,52.137001037597656,3.6989998817443848,-2.750999927520752,0.0,10.536999702453612 -13980,2018-02-03 12:00:00,44.81600189208984,0.0,47.63399887084961,2.680999994277954,-2.719000101089477,0.0,13.613499641418455 -13981,2018-02-03 13:00:00,44.900001525878906,4.690999984741211,48.35800170898438,3.88700008392334,-2.719000101089477,0.0,13.613499641418455 -13982,2018-02-03 14:00:00,48.584999084472656,6.114999771118164,52.137001037597656,4.932000160217285,-3.9340000152587886,0.0,14.931500434875488 -13983,2018-02-03 15:00:00,48.08300018310547,5.611999988555908,51.19900131225586,4.3959999084472665,-2.719000101089477,0.0,12.95400047302246 -13984,2018-02-03 16:00:00,50.26100158691406,6.366000175476074,53.23600006103516,4.63700008392334,-2.719000101089477,0.0,11.416000366210938 -13985,2018-02-03 17:00:00,53.36000061035156,6.198999881744385,54.79100036621094,4.100999832153319,-1.4819999933242798,0.0,9.657999992370604 -13986,2018-02-03 18:00:00,53.52799987792969,6.366000175476074,55.03200149536133,3.88700008392334,-1.246999979019165,0.0,8.119999885559082 -13987,2018-02-03 19:00:00,52.27099990844727,5.026000022888184,53.39699935913086,2.8410000801086426,0.0,0.0,7.241000175476074 -13988,2018-02-03 20:00:00,53.44400024414063,5.276999950408936,53.77199935913086,2.680999994277954,0.0,0.0,6.581999778747559 -13989,2018-02-03 21:00:00,55.53799819946289,6.114999771118164,57.06900024414063,3.9670000076293945,-1.2790000438690186,0.0,5.703499794006348 -13990,2018-02-03 22:00:00,51.51699829101562,4.941999912261963,52.43199920654297,2.7880001068115234,0.0,0.0,5.263500213623047 -13991,2018-02-03 23:00:00,44.983001708984375,0.0,43.854000091552734,0.0,2.282000064849853,0.0,4.384500026702882 -13992,2018-02-04 00:00:00,45.48600006103516,0.0,46.26699829101562,1.8229999542236328,0.0,0.0,3.945499897003174 -13993,2018-02-04 01:00:00,43.14099884033203,0.0,44.55099868774414,1.7690000534057615,-1.3860000371932983,0.0,2.8469998836517334 -13994,2018-02-04 02:00:00,41.96799850463867,0.0,43.96099853515625,2.252000093460083,-2.622999906539917,0.0,1.968000054359436 -13995,2018-02-04 03:00:00,40.29199981689453,0.0,43.29100036621094,2.4130001068115234,-2.622999906539917,-1.2580000162124634,1.308500051498413 -13996,2018-02-04 04:00:00,41.29800033569336,0.0,43.80099868774414,2.0910000801086426,-2.622999906539917,0.0,0.429500013589859 -13997,2018-02-04 05:00:00,38.70100021362305,0.0,40.50299835205078,1.4210000038146973,-1.4390000104904177,0.0,-0.0094999996945261 -13998,2018-02-04 06:00:00,39.790000915527344,0.0,41.60300064086914,0.0,-2.5480000972747803,0.0,-0.4494999945163727 -13999,2018-02-04 07:00:00,41.54899978637695,0.0,43.74700164794922,1.4210000038146973,-1.2790000438690186,0.0,-0.8884999752044678 -14000,2018-02-04 08:00:00,38.617000579833984,0.0,41.28099822998047,0.0,-1.5570000410079956,0.0,-1.1085000038146973 -14001,2018-02-04 09:00:00,41.88399887084961,0.0,46.34700012207031,1.7960000038146973,-4.105000019073486,0.0,1.0889999866485596 -14002,2018-02-04 10:00:00,41.96799850463867,0.0,45.2750015258789,0.0,-4.105000019073486,0.0,5.044000148773193 -14003,2018-02-04 11:00:00,43.97800064086914,0.0,47.178001403808594,1.5820000171661377,-2.8469998836517334,0.0,9.43850040435791 -14004,2018-02-04 12:00:00,45.48600006103516,0.0,49.69800186157226,2.9219999313354488,-4.061999797821045,0.0,12.074999809265137 -14005,2018-02-04 13:00:00,43.72700119018555,0.0,46.9900016784668,2.252000093460083,-4.072999954223634,0.0,13.833000183105469 -14006,2018-02-04 14:00:00,48.25,5.78000020980835,51.52099990844727,4.664000034332275,-2.8570001125335693,0.0,14.71150016784668 -14007,2018-02-04 15:00:00,47.07799911499024,5.026000022888184,50.18000030517578,4.0209999084472665,-2.8570001125335693,0.0,14.711999893188477 -14008,2018-02-04 16:00:00,48.50199890136719,5.361000061035156,50.98500061035156,3.9670000076293945,-2.8570001125335693,0.0,14.052499771118164 -14009,2018-02-04 17:00:00,51.93600082397461,5.78000020980835,52.86100006103516,3.5920000076293945,0.0,0.0,12.295000076293944 -14010,2018-02-04 18:00:00,54.02999877929688,6.198999881744385,55.56800079345703,4.209000110626222,0.0,0.0,10.097999572753906 -14011,2018-02-04 19:00:00,50.09299850463867,0.0,52.59299850463867,2.0369999408721924,-2.664999961853028,0.0,8.779500007629395 -14012,2018-02-04 20:00:00,54.44900131225586,5.110000133514403,54.06700134277344,2.252000093460083,0.0,0.0,8.119999885559082 -14013,2018-02-04 21:00:00,52.77399826049805,5.110000133514403,52.88800048828125,2.5199999809265137,0.0,0.0,7.680500030517577 -14014,2018-02-04 22:00:00,49.67399978637695,4.355999946594238,49.32300186157226,1.850000023841858,0.0,0.0,7.241000175476074 -14015,2018-02-04 23:00:00,45.73699951171875,0.0,45.89099884033203,1.3940000534057615,0.0,0.0,6.362500190734862 -14016,2018-02-05 00:00:00,46.071998596191406,0.0,45.62300109863281,1.6349999904632568,0.0,0.0,5.703499794006348 -14017,2018-02-05 01:00:00,45.90499877929688,4.60699987411499,46.50799942016602,2.8949999809265137,0.0,0.0,4.604499816894531 -14018,2018-02-05 02:00:00,42.303001403808594,0.0,43.96099853515625,2.5729999542236333,-1.3329999446868896,0.0,3.725500106811523 -14019,2018-02-05 03:00:00,42.05199813842773,0.0,42.59400177001953,1.9839999675750728,0.0,0.0,3.066499948501587 -14020,2018-02-05 04:00:00,37.025001525878906,0.0,38.70800018310547,0.0,-2.45199990272522,0.0,2.1875 -14021,2018-02-05 05:00:00,40.79499816894531,0.0,43.31800079345703,2.868000030517578,-2.5160000324249268,0.0,1.7484999895095823 -14022,2018-02-05 06:00:00,43.2239990234375,0.0,44.38999938964844,2.493000030517578,-1.4500000476837158,0.0,1.308500051498413 -14023,2018-02-05 07:00:00,43.2239990234375,0.0,45.56999969482422,2.009999990463257,-1.8339999914169312,0.0,0.6495000123977661 -14024,2018-02-05 08:00:00,26.05200004577637,4.5229997634887695,29.915000915527344,5.308000087738037,-3.2300000190734863,-1.246999979019165,0.429500013589859 -14025,2018-02-05 09:00:00,24.54400062561035,4.5229997634887695,28.25300025939941,5.199999809265137,-3.2300000190734863,-1.3860000371932983,2.407500028610229 -14026,2018-02-05 10:00:00,22.36599922180176,0.0,26.13599967956543,3.3510000705718994,-3.2300000190734863,-1.2150000333786009,5.483500003814697 -14027,2018-02-05 11:00:00,34.93099975585937,0.0,38.27899932861328,0.0,-3.2300000190734863,0.0,8.99899959564209 -14028,2018-02-05 12:00:00,47.1609992980957,4.188000202178955,51.19900131225586,3.6989998817443848,-2.984999895095825,-1.406999945640564,12.295000076293944 -14029,2018-02-05 13:00:00,47.999000549316406,5.863999843597412,51.97600173950195,5.0929999351501465,-3.059999942779541,0.0,13.613499641418455 -14030,2018-02-05 14:00:00,47.999000549316406,6.198999881744385,51.43999862670898,5.334000110626222,-3.059999942779541,0.0,16.25 -14031,2018-02-05 15:00:00,46.65900039672852,5.611999988555908,50.15399932861328,4.53000020980835,-3.059999942779541,0.0,16.030500411987305 -14032,2018-02-05 16:00:00,48.25,5.696000099182129,50.55599975585938,4.3429999351501465,-1.7059999704360962,0.0,14.932000160217283 -14033,2018-02-05 17:00:00,47.74800109863281,4.690999984741211,50.34099960327149,3.484999895095825,-2.494999885559082,0.0,12.95400047302246 -14034,2018-02-05 18:00:00,44.14599990844727,0.0,47.125,1.850000023841858,-2.494999885559082,0.0,11.196499824523926 -14035,2018-02-05 19:00:00,44.64799880981445,0.0,46.29399871826172,0.0,-1.2690000534057615,0.0,9.657999992370604 -14036,2018-02-05 20:00:00,48.75299835205078,0.0,50.07300186157226,1.3400000333786009,0.0,0.0,8.340000152587889 -14037,2018-02-05 21:00:00,49.3390007019043,0.0,50.09999847412109,1.9839999675750728,0.0,0.0,7.241000175476074 -14038,2018-02-05 22:00:00,44.14599990844727,0.0,45.22100067138672,0.0,0.0,0.0,6.362500190734862 -14039,2018-02-05 23:00:00,48.83700180053711,4.2719998359680185,49.24200057983398,2.3320000171661377,0.0,0.0,5.703499794006348 -14040,2018-02-06 00:00:00,43.97800064086914,0.0,45.24800109863281,1.9299999475479128,0.0,0.0,5.044000148773193 -14041,2018-02-06 01:00:00,42.55400085449219,0.0,44.71200180053711,1.8760000467300413,-1.5779999494552612,0.0,4.604499816894531 -14042,2018-02-06 02:00:00,43.2239990234375,0.0,43.90800094604492,2.4660000801086426,0.0,0.0,4.1649999618530265 -14043,2018-02-06 03:00:00,39.95700073242188,0.0,42.70199966430664,1.8229999542236328,-4.114999771118163,0.0,3.505500078201294 -14044,2018-02-06 04:00:00,38.44900131225586,0.0,40.85200119018555,1.8229999542236328,-1.758999943733215,0.0,3.066499948501587 -14045,2018-02-06 05:00:00,37.277000427246094,0.0,39.35100173950195,0.0,-2.0789999961853027,0.0,2.627000093460083 -14046,2018-02-06 06:00:00,29.56999969482422,0.0,33.373001098632805,-2.2249999046325684,-2.6010000705718994,-1.2150000333786009,2.1875 -14047,2018-02-06 07:00:00,23.035999298095703,-5.110000133514403,25.30500030517578,-4.852000236511231,-1.812000036239624,0.0,1.7484999895095823 -14048,2018-02-06 08:00:00,20.356000900268555,-5.611999988555908,24.097999572753903,-4.690999984741211,-3.101999998092652,-1.3109999895095823,1.968000054359436 -14049,2018-02-06 09:00:00,24.96299934387207,0.0,27.90500068664551,-2.7070000171661377,-2.9110000133514404,0.0,3.945499897003174 -14050,2018-02-06 10:00:00,25.1299991607666,0.0,29.19099998474121,-2.6540000438690186,-2.9110000133514404,-1.246999979019165,6.802000045776367 -14051,2018-02-06 11:00:00,26.55400085449219,0.0,29.72800064086914,-2.438999891281128,-2.9110000133514404,0.0,9.43850040435791 -14052,2018-02-06 12:00:00,23.87400054931641,0.0,27.42200088500977,-3.3510000705718994,-3.049000024795532,-1.22599995136261,12.51449966430664 -14053,2018-02-06 13:00:00,24.292999267578125,0.0,27.770999908447266,-2.5999999046325684,-3.049000024795532,-1.2369999885559082,13.833000183105469 -14054,2018-02-06 14:00:00,23.20400047302246,0.0,26.108999252319336,-3.51200008392334,-3.049000024795532,0.0,16.030500411987305 -14055,2018-02-06 15:00:00,23.035999298095703,0.0,26.538000106811523,-3.108999967575073,-2.5799999237060547,0.0,16.25 -14056,2018-02-06 16:00:00,24.208999633789062,0.0,26.96699905395508,-3.2170000076293945,-2.632999897003174,0.0,15.371000289916992 -14057,2018-02-06 17:00:00,27.141000747680664,0.0,29.4060001373291,-2.8410000801086426,-1.2150000333786009,0.0,13.393500328063965 -14058,2018-02-06 18:00:00,29.15099906921387,0.0,32.03300094604492,-1.850000023841858,-2.7290000915527344,-1.2150000333786009,11.196499824523926 -14059,2018-02-06 19:00:00,32.58599853515625,0.0,34.01599884033203,-1.6349999904632568,0.0,0.0,9.43850040435791 -14060,2018-02-06 20:00:00,35.85300064086914,0.0,37.52799987792969,-1.9839999675750728,0.0,0.0,7.900000095367432 -14061,2018-02-06 21:00:00,40.125,0.0,41.11999893188477,0.0,0.0,0.0,6.801499843597412 -14062,2018-02-06 22:00:00,35.76900100708008,0.0,36.777000427246094,0.0,0.0,0.0,6.362500190734862 -14063,2018-02-06 23:00:00,34.512001037597656,0.0,35.16899871826172,-1.4739999771118164,0.0,0.0,5.703499794006348 -14064,2018-02-07 00:00:00,30.239999771118164,0.0,31.60400009155273,-1.6349999904632568,-1.2899999618530271,0.0,5.263500213623047 -14065,2018-02-07 01:00:00,31.74799919128418,0.0,34.79399871826172,0.0,-2.7290000915527344,-1.3220000267028809,4.82450008392334 -14066,2018-02-07 02:00:00,34.261001586914055,0.0,35.7859992980957,0.0,-1.503000020980835,0.0,4.604499816894531 -14067,2018-02-07 03:00:00,35.349998474121094,0.0,37.39400100708008,0.0,-1.2580000162124634,0.0,4.1649999618530265 -14068,2018-02-07 04:00:00,30.1560001373291,0.0,33.292999267578125,0.0,-2.5369999408721924,-1.246999979019165,3.725500106811523 -14069,2018-02-07 05:00:00,29.65399932861328,0.0,32.67599868774414,0.0,-2.5369999408721924,-1.5460000038146973,3.2860000133514404 -14070,2018-02-07 06:00:00,31.496999740600582,0.0,34.98199844360352,0.0,-2.760999917984009,-1.4819999933242798,2.8464999198913574 -14071,2018-02-07 07:00:00,32.16699981689453,0.0,36.05400085449219,0.0,-2.740000009536743,-1.375,2.627000093460083 -14072,2018-02-07 08:00:00,34.0099983215332,0.0,35.678001403808594,0.0,0.0,-1.22599995136261,3.0659999847412114 -14073,2018-02-07 09:00:00,37.277000427246094,0.0,40.63800048828125,0.0,-2.7929999828338623,0.0,4.385000228881837 -14074,2018-02-07 10:00:00,37.19300079345703,0.0,40.66400146484375,0.0,-4.040999889373778,0.0,6.362500190734862 -14075,2018-02-07 11:00:00,40.20899963378906,0.0,43.50600051879883,2.0639998912811284,-2.782999992370605,0.0,8.99899959564209 -14076,2018-02-07 12:00:00,37.946998596191406,0.0,40.04800033569336,1.3400000333786009,-1.2580000162124634,0.0,12.295000076293944 -14077,2018-02-07 13:00:00,27.97900009155273,0.0,39.53799819946289,1.850000023841858,-11.54599952697754,-2.463000059127808,13.393500328063965 -14078,2018-02-07 14:00:00,28.062000274658203,0.0,39.99399948120117,2.358999967575073,-11.57800006866455,-2.282000064849853,15.371500015258787 -14079,2018-02-07 15:00:00,30.743000030517567,0.0,42.43399810791016,2.4660000801086426,-11.57800006866455,-2.377000093460083,15.590999603271484 -14080,2018-02-07 16:00:00,27.97900009155273,0.0,39.56499862670898,1.3940000534057615,-11.57800006866455,-2.7079999446868896,15.371500015258787 -14081,2018-02-07 17:00:00,33.50699996948242,0.0,44.44400024414063,2.733999967575073,-11.53600025177002,-2.7079999446868896,14.272500038146973 -14082,2018-02-07 18:00:00,32.83700180053711,0.0,43.02299880981445,1.7419999837875366,-10.298999786376951,-2.7079999446868896,12.95400047302246 -14083,2018-02-07 19:00:00,30.40800094604492,0.0,41.415000915527344,0.0,-10.298999786376951,-2.7079999446868896,11.635499954223633 -14084,2018-02-07 20:00:00,36.52299880981445,0.0,46.18600082397461,1.5820000171661377,-9.041000366210938,-2.7079999446868896,10.317500114440918 -14085,2018-02-07 21:00:00,40.04100036621094,0.0,48.196998596191406,2.868000030517578,-7.815000057220459,-2.7079999446868896,9.43850040435791 -14086,2018-02-07 22:00:00,35.182998657226555,0.0,45.06000137329102,2.5999999046325684,-10.479999542236328,-2.7079999446868896,8.119999885559082 -14087,2018-02-07 23:00:00,33.42300033569336,0.0,41.36100006103516,1.9570000171661377,-7.932000160217285,-2.7079999446868896,7.241000175476074 -14088,2018-02-08 00:00:00,30.65900039672852,0.0,39.21699905395508,1.9570000171661377,-9.168999671936035,-2.7079999446868896,6.801499843597412 -14089,2018-02-08 01:00:00,24.96299934387207,0.0,34.5260009765625,0.0,-9.222000122070312,-2.7079999446868896,6.362500190734862 -14090,2018-02-08 02:00:00,18.17799949645996,0.0,28.95000076293945,-1.4210000038146973,-10.37399959564209,-2.7079999446868896,5.483500003814697 -14091,2018-02-08 03:00:00,23.37100028991699,0.0,32.00600051879883,0.0,-9.361000061035156,-2.7079999446868896,5.044000148773193 -14092,2018-02-08 04:00:00,23.1200008392334,0.0,32.38100051879883,0.0,-9.477999687194824,-2.7079999446868896,4.384500026702882 -14093,2018-02-08 05:00:00,24.041000366210927,0.0,34.23099899291992,0.0,-9.477999687194824,-2.7079999446868896,3.725500106811523 -14094,2018-02-08 06:00:00,25.29800033569336,0.0,33.722000122070305,0.0,-9.510000228881836,-2.7079999446868896,3.066499948501587 -14095,2018-02-08 07:00:00,25.381999969482425,0.0,34.365001678466804,-1.9299999475479128,-9.510000228881836,-2.7079999446868896,2.407500028610229 -14096,2018-02-08 08:00:00,25.381999969482425,0.0,35.303001403808594,-1.5279999971389768,-9.510000228881836,-2.7079999446868896,2.1875 -14097,2018-02-08 09:00:00,17.34000015258789,-5.026000022888184,28.68199920654297,-2.760999917984009,-10.756999969482422,-2.7079999446868896,3.945499897003174 -14098,2018-02-08 10:00:00,16.083000183105472,-5.696000099182129,27.315000534057607,-3.135999917984009,-11.972999572753904,-2.7079999446868896,7.021500110626223 -14099,2018-02-08 11:00:00,15.413000106811523,-5.696000099182129,27.36899948120117,-3.1630001068115234,-10.756999969482422,-2.7079999446868896,10.317500114440918 -14100,2018-02-08 12:00:00,13.56999969482422,-6.953000068664551,24.47400093078613,-4.315999984741212,-10.756999969482422,-2.7079999446868896,13.833000183105469 -14101,2018-02-08 13:00:00,13.98900032043457,-6.2829999923706055,23.75,-4.127999782562257,-9.425000190734863,-2.7079999446868896,14.931500434875488 -14102,2018-02-08 14:00:00,14.491999626159668,-5.611999988555908,23.910999298095703,-3.6719999313354488,-9.402999877929688,-2.7079999446868896,17.128999710083008 -14103,2018-02-08 15:00:00,14.072999954223633,-6.114999771118164,22.91900062561035,-4.26200008392334,-8.145000457763674,-2.7079999446868896,18.227500915527344 -14104,2018-02-08 16:00:00,12.314000129699709,-6.449999809265138,22.32900047302246,-4.422999858856201,-9.29699993133545,-2.7079999446868896,18.007999420166016 -14105,2018-02-08 17:00:00,12.314000129699709,-7.454999923706055,24.125,-5.065999984741211,-11.791000366210938,-2.7079999446868896,16.25 -14106,2018-02-08 18:00:00,14.241000175476074,-6.031000137329103,25.30500030517578,-4.7709999084472665,-10.543999671936035,-2.7079999446868896,14.49250030517578 -14107,2018-02-08 19:00:00,17.423999786376953,-6.449999809265138,27.15399932861328,-4.584000110626222,-9.713000297546388,-2.7079999446868896,12.73449993133545 -14108,2018-02-08 20:00:00,18.763999938964844,-6.533999919891357,27.66399955749512,-4.744999885559082,-8.817000389099121,-2.7079999446868896,11.196499824523926 -14109,2018-02-08 21:00:00,19.937000274658203,-6.449999809265138,27.79800033569336,-4.90500020980835,-7.697999954223633,-2.7079999446868896,9.878000259399414 -14110,2018-02-08 22:00:00,17.674999237060547,-6.7849998474121085,24.82200050354004,-5.334000110626222,-7.835999965667725,-2.7079999446868896,9.218500137329102 -14111,2018-02-08 23:00:00,14.241000175476074,-7.037000179290772,21.65900039672852,-5.414999961853027,-7.888999938964844,-2.7079999446868896,8.779500007629395 -14112,2018-02-09 00:00:00,11.47599983215332,-7.539000034332275,19.16600036621093,-5.656000137329103,-7.879000186920166,-2.7079999446868896,8.339500427246094 -14113,2018-02-09 01:00:00,9.29800033569336,-7.789999961853027,17.181999206542972,-5.978000164031982,-7.932000160217285,-2.7079999446868896,7.680500030517577 -14114,2018-02-09 02:00:00,6.86899995803833,-8.208999633789062,15.92300033569336,-6.138999938964844,-9.243000030517578,-2.7079999446868896,7.241000175476074 -14115,2018-02-09 03:00:00,5.611999988555908,-8.963000297546387,15.092000007629396,-6.380000114440918,-9.243000030517578,-2.7079999446868896,7.241000175476074 -14116,2018-02-09 04:00:00,5.78000020980835,-8.628000259399414,14.743000030517578,-6.191999912261963,-9.243000030517578,-2.7079999446868896,7.241000175476074 -14117,2018-02-09 05:00:00,6.198999881744385,-8.543999671936035,14.715999603271484,-6.326000213623048,-9.243000030517578,-2.7079999446868896,7.241000175476074 -14118,2018-02-09 06:00:00,6.198999881744385,-8.628000259399414,15.708000183105469,-6.326000213623048,-9.33899974822998,-2.7079999446868896,7.241000175476074 -14119,2018-02-09 07:00:00,9.29800033569336,-8.461000442504883,16.780000686645508,-6.5939998626708975,-7.078999996185303,-2.7079999446868896,7.4604997634887695 -14120,2018-02-09 08:00:00,11.644000053405762,-7.623000144958496,19.40699958801269,-5.816999912261963,-7.771999835968018,-2.7079999446868896,7.680500030517577 -14121,2018-02-09 09:00:00,12.899999618530272,-6.114999771118164,23.64299964904785,-3.61899995803833,-10.223999977111816,-2.7079999446868896,8.340000152587889 -14122,2018-02-09 10:00:00,14.324000358581545,-6.031000137329103,25.27799987792969,-3.753000020980835,-11.482000350952148,-2.7079999446868896,9.43850040435791 -14123,2018-02-09 11:00:00,13.73799991607666,-6.449999809265138,25.518999099731445,-4.073999881744385,-11.461000442504885,-2.7079999446868896,10.756999969482422 -14124,2018-02-09 12:00:00,14.241000175476074,-5.445000171661377,26.69899940490723,-2.815000057220459,-12.675999641418455,-2.7079999446868896,12.51449966430664 -14125,2018-02-09 13:00:00,29.82099914550781,0.0,39.75299835205078,2.4660000801086426,-10.128000259399414,-2.7079999446868896,14.272500038146973 -14126,2018-02-09 14:00:00,32.83700180053711,0.0,43.50600051879883,3.565000057220459,-10.128000259399414,-2.7079999446868896,16.68950080871582 -14127,2018-02-09 15:00:00,33.34000015258789,0.0,43.13000106811523,2.1979999542236333,-8.913000106811523,-2.7079999446868896,17.348499298095707 -14128,2018-02-09 16:00:00,36.52299880981445,0.0,46.34700012207031,2.733999967575073,-10.19200038909912,-2.7079999446868896,17.568500518798828 -14129,2018-02-09 17:00:00,35.26599884033203,0.0,45.32899856567383,0.0,-8.956000328063965,-2.7079999446868896,16.909000396728516 -14130,2018-02-09 18:00:00,38.28200149536133,0.0,47.9020004272461,2.1710000038146973,-10.17099952697754,-2.7079999446868896,16.469499588012695 -14131,2018-02-09 19:00:00,39.37099838256836,0.0,47.20500183105469,0.0,-7.686999797821045,-2.7079999446868896,15.590999603271484 -14132,2018-02-09 20:00:00,35.182998657226555,0.0,43.63999938964844,0.0,-8.902000427246094,-2.7079999446868896,14.932000160217283 -14133,2018-02-09 21:00:00,42.1349983215332,0.0,50.20700073242188,2.493000030517578,-7.526999950408935,-2.7079999446868896,14.272500038146973 -14134,2018-02-09 22:00:00,35.60100173950195,0.0,45.16799926757813,0.0,-8.465000152587889,-2.7079999446868896,13.833000183105469 -14135,2018-02-09 23:00:00,34.09400177001953,0.0,43.72000122070313,0.0,-9.670000076293944,-2.7079999446868896,13.393500328063965 -14136,2018-02-10 00:00:00,32.250999450683594,0.0,41.28099822998047,0.0,-8.581999778747559,-2.7079999446868896,12.95400047302246 -14137,2018-02-10 01:00:00,29.65399932861328,0.0,37.52799987792969,0.0,-8.581999778747559,-2.7079999446868896,12.734000205993652 -14138,2018-02-10 02:00:00,29.90500068664551,0.0,38.62699890136719,0.0,-8.710000038146973,-2.7079999446868896,12.51449966430664 -14139,2018-02-10 03:00:00,30.492000579833984,0.0,37.52799987792969,0.0,-7.484000205993652,-2.7079999446868896,12.074999809265137 -14140,2018-02-10 04:00:00,28.062000274658203,0.0,37.2869987487793,0.0,-8.817000389099121,-2.7079999446868896,11.635499954223633 -14141,2018-02-10 05:00:00,25.46500015258789,0.0,35.75899887084961,0.0,-10.416000366210938,-2.7079999446868896,11.635499954223633 -14142,2018-02-10 06:00:00,27.05699920654297,0.0,37.39400100708008,0.0,-10.597000122070312,-2.7079999446868896,11.416000366210938 -14143,2018-02-10 07:00:00,29.738000869750977,0.0,38.09099960327149,0.0,-9.28600025177002,-2.7079999446868896,11.416000366210938 -14144,2018-02-10 08:00:00,27.64299964904785,0.0,39.64599990844727,0.0,-11.74899959564209,-2.7079999446868896,10.97700023651123 -14145,2018-02-10 09:00:00,32.92100143432617,0.0,42.99599838256836,1.6890000104904177,-9.29699993133545,-2.7079999446868896,10.536999702453612 -14146,2018-02-10 10:00:00,31.74799919128418,0.0,42.32600021362305,0.0,-10.5649995803833,-2.7079999446868896,10.756999969482422 -14147,2018-02-10 11:00:00,35.182998657226555,0.0,47.74100112915039,2.8949999809265137,-10.5649995803833,-2.7079999446868896,11.416000366210938 -14148,2018-02-10 12:00:00,32.83700180053711,0.0,45.24800109863281,1.6080000400543213,-11.791000366210938,-2.7079999446868896,12.95400047302246 -14149,2018-02-10 13:00:00,31.413000106811523,0.0,43.45199966430664,2.009999990463257,-11.791000366210938,-2.5480000972747803,14.49250030517578 -14150,2018-02-10 14:00:00,32.333999633789055,0.0,43.07699966430664,1.9029999971389768,-10.543999671936035,-2.5480000972747803,15.15149974822998 -14151,2018-02-10 15:00:00,30.65900039672852,0.0,42.51399993896485,1.312999963760376,-10.532999992370604,-2.5480000972747803,14.932000160217283 -14152,2018-02-10 16:00:00,34.0099983215332,0.0,44.36399841308594,1.9839999675750728,-10.532999992370604,-2.5480000972747803,14.932000160217283 -14153,2018-02-10 17:00:00,33.088001251220696,0.0,44.71200180053711,1.4479999542236328,-11.770000457763672,-2.5480000972747803,14.491999626159668 -14154,2018-02-10 18:00:00,36.35499954223633,0.0,46.5620002746582,0.0,-9.32900047302246,-2.5480000972747803,13.833000183105469 -14155,2018-02-10 19:00:00,34.512001037597656,0.0,44.47100067138672,0.0,-9.33899974822998,-2.5480000972747803,12.51449966430664 -14156,2018-02-10 20:00:00,37.86299896240234,0.0,46.45399856567383,0.0,-8.11299991607666,-2.5480000972747803,11.635499954223633 -14157,2018-02-10 21:00:00,40.04100036621094,0.0,47.3390007019043,0.0,-6.727000236511231,-2.5480000972747803,10.536999702453612 -14158,2018-02-10 22:00:00,37.277000427246094,0.0,45.73099899291992,1.715999960899353,-8.081000328063965,-2.5480000972747803,9.43850040435791 -14159,2018-02-10 23:00:00,34.17699813842773,0.0,43.53300094604492,1.6619999408721924,-9.510000228881836,-2.5480000972747803,8.559499740600586 -14160,2018-02-11 00:00:00,32.669998168945305,0.0,40.87900161743164,1.3400000333786009,-8.199000358581543,-2.5480000972747803,8.119999885559082 -14161,2018-02-11 01:00:00,27.22500038146973,0.0,36.50899887084961,0.0,-9.253999710083008,-2.5480000972747803,7.680500030517577 -14162,2018-02-11 02:00:00,14.659000396728516,-5.863999843597412,24.36599922180176,-3.859999895095825,-9.274999618530272,-2.5480000972747803,6.801499843597412 -14163,2018-02-11 03:00:00,15.413000106811523,-6.114999771118164,24.84900093078613,-3.940000057220459,-9.222000122070312,-2.5480000972747803,6.142499923706055 -14164,2018-02-11 04:00:00,20.356000900268555,0.0,29.51300048828125,-1.9299999475479128,-9.243000030517578,-2.5480000972747803,5.263500213623047 -14165,2018-02-11 05:00:00,27.97900009155273,0.0,36.83100128173828,0.0,-9.243000030517578,-2.5480000972747803,4.604499816894531 -14166,2018-02-11 06:00:00,26.72200012207031,0.0,35.893001556396484,0.0,-7.974999904632567,-2.5480000972747803,3.945499897003174 -14167,2018-02-11 07:00:00,28.31399917602539,0.0,38.198001861572266,0.0,-9.45699977874756,-2.5480000972747803,3.505500078201294 -14168,2018-02-11 08:00:00,30.65900039672852,0.0,39.24399948120117,0.0,-9.45699977874756,-2.5480000972747803,3.2860000133514404 -14169,2018-02-11 09:00:00,33.674999237060554,0.0,44.92599868774414,2.7880001068115234,-11.152000427246094,-2.5480000972747803,5.044000148773193 -14170,2018-02-11 10:00:00,33.17200088500977,0.0,41.22700119018555,0.0,-8.668000221252441,-2.5480000972747803,8.119999885559082 -14171,2018-02-11 11:00:00,32.250999450683594,0.0,43.07699966430664,0.0,-11.140999794006348,-2.5480000972747803,11.196000099182127 -14172,2018-02-11 12:00:00,27.559999465942383,0.0,37.742000579833984,0.0,-9.904000282287598,-2.5480000972747803,14.272500038146973 -14173,2018-02-11 13:00:00,19.183000564575195,-4.355999946594238,30.5049991607666,-2.118000030517578,-11.140999794006348,-2.5480000972747803,16.25 -14174,2018-02-11 14:00:00,26.2189998626709,0.0,36.96500015258789,0.0,-11.140999794006348,-2.5480000972747803,17.788000106811523 -14175,2018-02-11 15:00:00,30.90999984741211,0.0,41.92399978637695,0.0,-11.140999794006348,-2.5480000972747803,18.44750022888184 -14176,2018-02-11 16:00:00,30.32399940490723,0.0,41.73699951171875,0.0,-11.140999794006348,-2.5480000972747803,18.007999420166016 -14177,2018-02-11 17:00:00,32.669998168945305,0.0,42.86199951171875,0.0,-9.829999923706056,-2.5480000972747803,16.68950080871582 -14178,2018-02-11 18:00:00,33.84199905395508,0.0,43.96099853515625,0.0,-9.786999702453612,-2.5480000972747803,15.15149974822998 -14179,2018-02-11 19:00:00,35.26599884033203,0.0,45.19400024414063,0.0,-9.786999702453612,-2.5480000972747803,13.833000183105469 -14180,2018-02-11 20:00:00,37.52799987792969,0.0,44.52399826049805,0.0,-7.270999908447266,-2.5480000972747803,12.95400047302246 -14181,2018-02-11 21:00:00,37.86299896240234,0.0,46.9640007019043,0.0,-10.064000129699709,-2.5480000972747803,12.074999809265137 -14182,2018-02-11 22:00:00,35.014999389648445,0.0,44.79199981689453,0.0,-8.817000389099121,-2.5480000972747803,10.976499557495115 -14183,2018-02-11 23:00:00,33.34000015258789,0.0,41.65599822998047,0.0,-8.720999717712402,-2.5480000972747803,10.317500114440918 -14184,2018-02-12 00:00:00,28.31399917602539,0.0,38.38600158691406,0.0,-10.223999977111816,-2.5480000972747803,9.878000259399414 -14185,2018-02-12 01:00:00,28.31399917602539,0.0,37.2869987487793,0.0,-9.243000030517578,-2.5480000972747803,9.218500137329102 -14186,2018-02-12 02:00:00,26.63800048828125,0.0,36.402000427246094,0.0,-9.243000030517578,-2.5480000972747803,8.119999885559082 -14187,2018-02-12 03:00:00,24.795000076293945,0.0,34.338001251220696,-1.6349999904632568,-8.27299976348877,-2.5480000972747803,6.801499843597412 -14188,2018-02-12 04:00:00,21.69599914550781,-5.110000133514403,30.7189998626709,-3.0290000438690186,-9.722999572753906,-2.5480000972747803,5.922999858856201 -14189,2018-02-12 05:00:00,18.26099967956543,-5.947999954223633,27.85099983215332,-3.7260000705718994,-8.411999702453612,-2.5480000972747803,5.044000148773193 -14190,2018-02-12 06:00:00,28.481000900268555,0.0,37.04600143432617,0.0,-8.82800006866455,-2.5480000972747803,4.1649999618530265 -14191,2018-02-12 07:00:00,28.565000534057607,0.0,38.43899917602539,0.0,-8.817000389099121,-2.5480000972747803,3.725500106811523 -14192,2018-02-12 08:00:00,29.98900032043457,0.0,38.43899917602539,0.0,-8.817000389099121,-2.5480000972747803,3.725500106811523 -14193,2018-02-12 09:00:00,32.58599853515625,0.0,41.22700119018555,0.0,-8.817000389099121,-2.5480000972747803,5.922999858856201 -14194,2018-02-12 10:00:00,30.32399940490723,0.0,40.63800048828125,0.0,-10.031999588012695,-2.5480000972747803,8.99899959564209 -14195,2018-02-12 11:00:00,28.481000900268555,0.0,38.52000045776367,0.0,-10.031999588012695,-2.5480000972747803,12.074999809265137 -14196,2018-02-12 12:00:00,28.565000534057607,0.0,38.70800018310547,0.0,-10.031999588012695,-2.5480000972747803,15.15149974822998 -14197,2018-02-12 13:00:00,28.39699935913086,0.0,39.18999862670898,0.0,-10.031999588012695,-2.5480000972747803,16.030500411987305 -14198,2018-02-12 14:00:00,27.392000198364247,0.0,36.992000579833984,0.0,-10.031999588012695,-2.5480000972747803,18.44750022888184 -14199,2018-02-12 15:00:00,25.548999786376957,0.0,36.1609992980957,0.0,-11.407999992370604,-2.5480000972747803,18.886499404907227 -14200,2018-02-12 16:00:00,27.22500038146973,0.0,38.09099960327149,0.0,-10.182000160217283,-2.5480000972747803,18.227500915527344 -14201,2018-02-12 17:00:00,32.92100143432617,0.0,42.72800064086914,2.1440000534057617,-10.182000160217283,-2.5480000972747803,16.469499588012695 -14202,2018-02-12 18:00:00,34.345001220703125,0.0,44.65800094604492,2.118000030517578,-10.149999618530272,-2.5480000972747803,14.491999626159668 -14203,2018-02-12 19:00:00,32.08300018310547,0.0,42.80899810791016,0.0,-10.128000259399414,-2.5480000972747803,13.173500061035154 -14204,2018-02-12 20:00:00,38.78499984741211,0.0,46.9900016784668,2.815000057220459,-8.880999565124512,-2.5480000972747803,12.074999809265137 -14205,2018-02-12 21:00:00,31.74799919128418,0.0,41.92399978637695,0.0,-9.925999641418455,-2.5480000972747803,11.196499824523926 -14206,2018-02-12 22:00:00,33.34000015258789,0.0,43.34500122070313,1.7960000038146973,-9.894000053405762,-2.5480000972747803,10.317500114440918 -14207,2018-02-12 23:00:00,26.30299949645996,0.0,37.98400115966797,0.0,-11.109000205993652,-2.5480000972747803,8.99899959564209 -14208,2018-02-13 00:00:00,28.062000274658203,0.0,38.54700088500977,0.0,-9.894000053405762,-2.5480000972747803,8.119999885559082 -14209,2018-02-13 01:00:00,26.13599967956543,0.0,35.303001403808594,0.0,-9.894000053405762,-2.5480000972747803,7.241000175476074 -14210,2018-02-13 02:00:00,25.1299991607666,0.0,35.222999572753906,0.0,-9.894000053405762,-2.5480000972747803,6.362500190734862 -14211,2018-02-13 03:00:00,23.37100028991699,0.0,33.963001251220696,0.0,-9.894000053405762,-2.5480000972747803,5.703499794006348 -14212,2018-02-13 04:00:00,24.459999084472656,0.0,35.25,0.0,-11.109000205993652,-2.5480000972747803,5.044000148773193 -14213,2018-02-13 05:00:00,25.46500015258789,0.0,36.402000427246094,0.0,-11.109000205993652,-2.5480000972747803,4.604499816894531 -14214,2018-02-13 06:00:00,26.386999130249023,0.0,36.7509994506836,1.312999963760376,-11.109000205993652,-2.5480000972747803,3.945499897003174 -14215,2018-02-13 07:00:00,27.895000457763672,0.0,37.87699890136719,0.0,-9.894000053405762,-2.5480000972747803,3.505500078201294 -14216,2018-02-13 08:00:00,26.47100067138672,0.0,36.7509994506836,0.0,-9.894000053405762,-2.5480000972747803,3.725500106811523 -14217,2018-02-13 09:00:00,26.80599975585937,0.0,37.5009994506836,0.0,-11.4399995803833,-2.5480000972747803,6.581999778747559 -14218,2018-02-13 10:00:00,27.141000747680664,0.0,38.38600158691406,0.0,-11.4399995803833,-2.5480000972747803,10.756999969482422 -14219,2018-02-13 11:00:00,20.77400016784668,0.0,32.83700180053711,0.0,-11.449999809265137,-2.5480000972747803,15.15149974822998 -14220,2018-02-13 12:00:00,22.617000579833984,0.0,34.553001403808594,2.118000030517578,-11.449999809265137,-2.5480000972747803,18.886999130249023 -14221,2018-02-13 13:00:00,23.62299919128418,0.0,35.625,6.111999988555907,-11.449999809265137,-2.5480000972747803,20.864500045776367 -14222,2018-02-13 14:00:00,26.55400085449219,5.445000171661377,38.78799819946289,7.854000091552732,-11.397000312805176,-2.5480000972747803,23.72100067138672 -14223,2018-02-13 15:00:00,26.972999572753903,5.52899980545044,38.27899932861328,7.934999942779541,-11.397000312805176,-2.5480000972747803,24.15999984741211 -14224,2018-02-13 16:00:00,26.972999572753903,5.947999954223633,37.95700073242188,7.98799991607666,-11.397000312805176,-2.5480000972747803,23.72050094604492 -14225,2018-02-13 17:00:00,24.71199989318848,4.355999946594238,36.1879997253418,6.915999889373777,-11.397000312805176,-2.5480000972747803,22.1825008392334 -14226,2018-02-13 18:00:00,29.90500068664551,5.78000020980835,40.58399963378906,7.88100004196167,-11.397000312805176,-2.5480000972747803,20.645000457763672 -14227,2018-02-13 19:00:00,28.64900016784668,5.026000022888184,38.86800003051758,7.263999938964844,-10.15999984741211,-2.5480000972747803,18.886999130249023 -14228,2018-02-13 20:00:00,32.75299835205078,6.2829999923706055,43.18399810791016,8.282999992370605,-10.15999984741211,-2.5480000972747803,17.128999710083008 -14229,2018-02-13 21:00:00,33.17200088500977,6.031000137329103,43.13000106811523,7.960999965667725,-10.15999984741211,-2.5480000972747803,15.810999870300291 -14230,2018-02-13 22:00:00,27.895000457763672,4.690999984741211,38.11800003051758,6.7820000648498535,-10.149999618530272,-2.5480000972747803,14.053000450134276 -14231,2018-02-13 23:00:00,27.05699920654297,4.859000205993652,37.6619987487793,7.1570000648498535,-11.407999992370604,-2.5480000972747803,12.95400047302246 -14232,2018-02-14 00:00:00,23.035999298095703,0.0,33.56100082397461,6.2189998626708975,-11.215999603271484,-2.5480000972747803,12.074999809265137 -14233,2018-02-14 01:00:00,22.70100021362305,4.5229997634887695,34.20399856567383,7.130000114440918,-11.237000465393066,-2.5480000972747803,11.416000366210938 -14234,2018-02-14 02:00:00,22.114999771118164,4.355999946594238,33.21200180053711,6.915999889373777,-11.161999702453612,-2.5480000972747803,11.635499954223633 -14235,2018-02-14 03:00:00,23.28700065612793,4.440000057220459,33.292999267578125,6.728000164031982,-9.925999641418455,-2.5480000972747803,11.196499824523926 -14236,2018-02-14 04:00:00,22.36599922180176,4.440000057220459,33.26599884033203,7.1040000915527335,-9.925999641418455,-2.5480000972747803,10.317500114440918 -14237,2018-02-14 05:00:00,22.86899948120117,4.440000057220459,33.85599899291992,7.050000190734862,-9.925999641418455,-2.5480000972747803,9.657999992370604 -14238,2018-02-14 06:00:00,17.759000778198242,0.0,27.18099975585937,4.664000034332275,-9.904000282287598,-2.5480000972747803,9.218999862670898 -14239,2018-02-14 07:00:00,25.04700088500977,4.60699987411499,35.7859992980957,7.050000190734862,-11.119999885559082,-2.5480000972747803,8.779000282287598 -14240,2018-02-14 08:00:00,25.46500015258789,0.0,35.597999572753906,6.085000038146973,-9.713000297546388,-2.5480000972747803,8.99899959564209 -14241,2018-02-14 09:00:00,26.88999938964844,5.110000133514403,37.79600143432617,7.50600004196167,-10.928000450134276,-2.5480000972747803,11.635499954223633 -14242,2018-02-14 10:00:00,23.45499992370605,0.0,33.775001525878906,4.584000110626222,-9.70199966430664,-2.5480000972747803,15.810999870300291 -14243,2018-02-14 11:00:00,23.035999298095703,0.0,34.472000122070305,5.254000186920166,-10.928000450134276,-2.5480000972747803,19.765499114990234 -14244,2018-02-14 12:00:00,25.214000701904297,4.60699987411499,36.96500015258789,7.1040000915527335,-12.142999649047852,-2.5480000972747803,21.74300003051757 -14245,2018-02-14 13:00:00,24.208999633789062,4.859000205993652,37.04600143432617,7.479000091552732,-12.133000373840332,-2.5480000972747803,24.3799991607666 -14246,2018-02-14 14:00:00,24.71199989318848,5.193999767303467,36.3489990234375,7.692999839782715,-12.133000373840332,-2.5480000972747803,26.57699966430664 -14247,2018-02-14 15:00:00,24.71199989318848,5.193999767303467,37.2869987487793,7.934999942779541,-12.121999740600586,-2.5480000972747803,25.03899955749512 -14248,2018-02-14 16:00:00,25.632999420166016,4.941999912261963,37.608001708984375,7.665999889373777,-10.906999588012695,-2.5480000972747803,24.15999984741211 -14249,2018-02-14 17:00:00,27.05699920654297,4.690999984741211,38.97600173950195,7.34499979019165,-10.906999588012695,-2.5480000972747803,23.72100067138672 -14250,2018-02-14 18:00:00,26.55400085449219,4.60699987411499,37.6349983215332,6.995999813079834,-10.875,-2.5480000972747803,23.06150054931641 -14251,2018-02-14 19:00:00,27.559999465942383,4.859000205993652,38.65399932861328,7.1570000648498535,-10.875,-2.5480000972747803,21.96299934387207 -14252,2018-02-14 20:00:00,27.47599983215332,4.775000095367432,38.01100158691406,7.050000190734862,-10.810999870300291,-2.5480000972747803,21.52300071716309 -14253,2018-02-14 21:00:00,30.1560001373291,6.031000137329103,41.415000915527344,8.229000091552733,-10.810999870300291,-2.5480000972747803,20.864500045776367 -14254,2018-02-14 22:00:00,28.983999252319336,5.78000020980835,39.08300018310547,7.854000091552732,-10.810999870300291,-2.5480000972747803,20.864500045776367 -14255,2018-02-14 23:00:00,24.375999450683597,4.440000057220459,36.21500015258789,7.184000015258789,-10.800000190734863,-3.954999923706055,20.424999237060547 -14256,2018-02-15 00:00:00,23.37100028991699,4.690999984741211,34.955001831054695,7.425000190734862,-10.800000190734863,-3.954999923706055,19.766000747680664 -14257,2018-02-15 01:00:00,21.863000869750977,4.2719998359680185,32.863998413085945,6.6479997634887695,-10.800000190734863,-3.954999923706055,18.66699981689453 -14258,2018-02-15 02:00:00,20.69099998474121,4.60699987411499,32.648998260498054,7.23799991607666,-10.800000190734863,-3.954999923706055,17.568000793457028 -14259,2018-02-15 03:00:00,20.356000900268555,4.355999946594238,31.92600059509277,6.915999889373777,-10.779000282287598,-3.954999923706055,16.68899917602539 -14260,2018-02-15 04:00:00,20.10400009155273,4.188000202178955,31.65800094604492,6.9689998626708975,-10.779000282287598,-3.954999923706055,15.810999870300291 -14261,2018-02-15 05:00:00,21.61199951171875,4.2719998359680185,32.060001373291016,6.888999938964844,-10.779000282287598,-3.954999923706055,15.371000289916992 -14262,2018-02-15 06:00:00,22.114999771118164,4.440000057220459,32.97100067138672,7.1570000648498535,-10.779000282287598,-3.954999923706055,14.932000160217283 -14263,2018-02-15 07:00:00,22.36599922180176,0.0,33.13199996948242,6.191999912261963,-10.725000381469728,-3.954999923706055,14.272500038146973 -14264,2018-02-15 08:00:00,16.836999893188473,0.0,27.95800018310547,2.385999917984009,-10.71500015258789,-3.954999923706055,13.61299991607666 -14265,2018-02-15 09:00:00,20.27199935913086,0.0,31.738000869750977,4.073999881744385,-10.71500015258789,-3.954999923706055,13.393500328063965 -14266,2018-02-15 10:00:00,22.28199958801269,0.0,32.944000244140625,3.2699999809265137,-10.607999801635742,-3.954999923706055,13.393500328063965 -14267,2018-02-15 11:00:00,28.64900016784668,4.60699987411499,39.27000045776367,6.755000114440918,-10.607999801635742,-3.954999923706055,13.613499641418455 -14268,2018-02-15 12:00:00,29.15099906921387,4.440000057220459,39.18999862670898,6.701000213623048,-10.607999801635742,-3.954999923706055,13.833000183105469 -14269,2018-02-15 13:00:00,27.64299964904785,4.105000019073486,39.16299819946289,6.5939998626708975,-10.51200008392334,-3.954999923706055,14.272500038146973 -14270,2018-02-15 14:00:00,28.062000274658203,4.2719998359680185,38.97600173950195,6.675000190734862,-10.458999633789062,-3.954999923706055,14.49250030517578 -14271,2018-02-15 15:00:00,29.98900032043457,4.941999912261963,40.98600006103516,7.210999965667725,-10.31999969482422,-3.954999923706055,14.49250030517578 -14272,2018-02-15 16:00:00,28.64900016784668,0.0,39.35100173950195,6.004000186920166,-10.3100004196167,-3.954999923706055,14.272500038146973 -14273,2018-02-15 17:00:00,22.450000762939453,0.0,33.238998413085945,3.8329999446868896,-10.3100004196167,-3.954999923706055,13.393500328063965 -14274,2018-02-15 18:00:00,18.59600067138672,0.0,30.290000915527344,2.0369999408721924,-10.298999786376951,-3.954999923706055,12.51449966430664 -14275,2018-02-15 19:00:00,21.19300079345703,0.0,31.256000518798828,2.4660000801086426,-9.041000366210938,-2.7290000915527344,12.51449966430664 -14276,2018-02-15 20:00:00,25.548999786376957,0.0,34.955001831054695,4.959000110626222,-8.944999694824219,-2.7290000915527344,12.294500350952148 -14277,2018-02-15 21:00:00,24.459999084472656,0.0,35.0620002746582,4.557000160217285,-10.246000289916992,-2.7290000915527344,11.85550022125244 -14278,2018-02-15 22:00:00,28.062000274658203,0.0,39.72600173950195,6.058000087738037,-11.482000350952148,-2.7290000915527344,11.635499954223633 -14279,2018-02-15 23:00:00,24.375999450683597,0.0,35.73199844360352,5.254000186920166,-11.472000122070312,-2.7290000915527344,11.635499954223633 -14280,2018-02-16 00:00:00,25.632999420166016,0.0,38.01100158691406,6.245999813079834,-11.472000122070312,-2.7290000915527344,11.635499954223633 -14281,2018-02-16 01:00:00,21.19300079345703,0.0,33.025001525878906,5.388000011444092,-11.472000122070312,-3.986999988555908,10.756999969482422 -14282,2018-02-16 02:00:00,21.863000869750977,0.0,33.42699813842773,6.004000186920166,-11.472000122070312,-3.986999988555908,10.756999969482422 -14283,2018-02-16 03:00:00,21.11000061035156,0.0,33.292999267578125,5.951000213623048,-11.407999992370604,-3.986999988555908,10.756999969482422 -14284,2018-02-16 04:00:00,20.52300071716309,0.0,32.40800094604492,5.736000061035156,-11.407999992370604,-3.986999988555908,10.756999969482422 -14285,2018-02-16 05:00:00,19.85300064086914,0.0,32.435001373291016,5.896999835968018,-12.623000144958494,-2.5369999408721924,9.878000259399414 -14286,2018-02-16 06:00:00,22.114999771118164,0.0,33.50699996948242,6.298999786376952,-11.37600040435791,-2.5369999408721924,9.878000259399414 -14287,2018-02-16 07:00:00,22.86899948120117,0.0,33.93600082397461,5.8439998626708975,-10.15999984741211,-2.5369999408721924,9.878000259399414 -14288,2018-02-16 08:00:00,19.937000274658203,0.0,31.871999740600582,4.932000160217285,-11.37600040435791,-2.5369999408721924,10.097999572753906 -14289,2018-02-16 09:00:00,25.1299991607666,0.0,35.91999816894531,6.7820000648498535,-10.128000259399414,-2.5369999408721924,10.317500114440918 -14290,2018-02-16 10:00:00,21.780000686645508,0.0,32.514999389648445,4.155000209808351,-10.128000259399414,-2.5369999408721924,10.756999969482422 -14291,2018-02-16 11:00:00,21.61199951171875,0.0,32.327999114990234,3.859999895095825,-10.149999618530272,-2.5369999408721924,11.635499954223633 -14292,2018-02-16 12:00:00,21.863000869750977,0.0,33.963001251220696,4.879000186920166,-11.289999961853027,-2.5369999408721924,12.074999809265137 -14293,2018-02-16 13:00:00,21.527999877929688,0.0,33.15900039672852,5.173999786376953,-11.289999961853027,-2.5369999408721924,12.734000205993652 -14294,2018-02-16 14:00:00,24.62800025939941,0.0,37.18000030517578,6.245999813079834,-12.505999565124512,-2.5369999408721924,13.173999786376951 -14295,2018-02-16 15:00:00,24.459999084472656,0.0,36.9119987487793,5.896999835968018,-11.279999732971191,-2.719000101089477,13.393500328063965 -14296,2018-02-16 16:00:00,24.96299934387207,0.0,36.1879997253418,5.869999885559082,-11.279999732971191,-2.6549999713897705,14.053000450134276 -14297,2018-02-16 17:00:00,27.81100082397461,0.0,38.92200088500977,6.191999912261963,-10.053999900817873,-2.6549999713897705,14.272500038146973 -14298,2018-02-16 18:00:00,26.13599967956543,0.0,36.617000579833984,5.736000061035156,-11.215999603271484,-2.6549999713897705,14.272500038146973 -14299,2018-02-16 19:00:00,28.145999908447266,4.440000057220459,39.48500061035156,6.6479997634887695,-11.204999923706056,-2.6549999713897705,14.053000450134276 -14300,2018-02-16 20:00:00,27.47599983215332,4.188000202178955,39.35100173950195,6.486999988555907,-11.204999923706056,-2.6549999713897705,13.61299991607666 -14301,2018-02-16 21:00:00,29.066999435424805,4.440000057220459,39.37799835205078,6.5939998626708975,-11.204999923706056,-2.6549999713897705,13.61299991607666 -14302,2018-02-16 22:00:00,26.88999938964844,4.188000202178955,38.35900115966797,6.460000038146973,-11.184000015258787,-2.6549999713897705,13.61299991607666 -14303,2018-02-16 23:00:00,23.035999298095703,0.0,34.257999420166016,5.656000137329103,-11.184000015258787,-2.6549999713897705,13.61299991607666 -14304,2018-02-17 00:00:00,22.78499984741211,0.0,35.19599914550781,6.298999786376952,-12.40999984741211,-4.040999889373778,13.61299991607666 -14305,2018-02-17 01:00:00,20.1879997253418,0.0,31.44300079345703,5.683000087738037,-11.119999885559082,-4.040999889373778,13.393500328063965 -14306,2018-02-17 02:00:00,21.94700050354004,0.0,33.26599884033203,6.460000038146973,-11.119999885559082,-4.040999889373778,12.734000205993652 -14307,2018-02-17 03:00:00,21.277000427246094,0.0,32.623001098632805,6.2729997634887695,-11.119999885559082,-4.040999889373778,11.416000366210938 -14308,2018-02-17 04:00:00,20.77400016784668,0.0,32.89099884033203,6.353000164031982,-12.335000038146973,-4.040999889373778,10.536999702453612 -14309,2018-02-17 05:00:00,20.60700035095215,0.0,32.863998413085945,6.566999912261963,-11.088000297546388,-4.040999889373778,10.097999572753906 -14310,2018-02-17 06:00:00,21.863000869750977,0.0,33.400001525878906,6.433000087738037,-11.088000297546388,-4.040999889373778,9.878000259399414 -14311,2018-02-17 07:00:00,20.27199935913086,0.0,31.54999923706055,5.0929999351501465,-11.088000297546388,-4.040999889373778,9.218999862670898 -14312,2018-02-17 08:00:00,23.035999298095703,0.0,34.17699813842773,5.0929999351501465,-11.088000297546388,-4.040999889373778,9.218999862670898 -14313,2018-02-17 09:00:00,23.37100028991699,0.0,35.0620002746582,5.736000061035156,-12.314000129699709,-2.740000009536743,10.536999702453612 -14314,2018-02-17 10:00:00,24.208999633789062,0.0,34.5260009765625,5.227000236511231,-9.85099983215332,-2.740000009536743,12.51449966430664 -14315,2018-02-17 11:00:00,23.70599937438965,0.0,34.766998291015625,6.111999988555907,-11.088000297546388,-2.740000009536743,14.711999893188477 -14316,2018-02-17 12:00:00,23.95800018310547,0.0,35.597999572753906,6.326000213623048,-11.088000297546388,-2.740000009536743,16.909000396728516 -14317,2018-02-17 13:00:00,24.041000366210927,4.188000202178955,35.49100112915039,6.701000213623048,-11.088000297546388,-2.740000009536743,18.66699981689453 -14318,2018-02-17 14:00:00,21.94700050354004,0.0,33.18600082397461,5.923999786376952,-11.088000297546388,-2.740000009536743,21.083999633789062 -14319,2018-02-17 15:00:00,23.87400054931641,4.105000019073486,35.25,6.460000038146973,-11.088000297546388,-2.740000009536743,21.74300003051757 -14320,2018-02-17 16:00:00,23.62299919128418,0.0,35.4370002746582,6.460000038146973,-11.088000297546388,-2.740000009536743,20.644500732421875 -14321,2018-02-17 17:00:00,27.895000457763672,4.440000057220459,36.3489990234375,6.353000164031982,-8.571999549865723,-2.740000009536743,18.66699981689453 -14322,2018-02-17 18:00:00,22.53400039672852,0.0,34.98199844360352,5.1469998359680185,-11.003000259399414,-2.740000009536743,16.469499588012695 -14323,2018-02-17 19:00:00,20.27199935913086,0.0,32.30099868774414,3.753000020980835,-11.02400016784668,-2.740000009536743,14.711999893188477 -14324,2018-02-17 20:00:00,27.895000457763672,0.0,38.27899932861328,6.004000186920166,-9.595000267028809,-2.740000009536743,13.833000183105469 -14325,2018-02-17 21:00:00,28.39699935913086,4.440000057220459,38.70800018310547,6.540999889373777,-10.86400032043457,-2.740000009536743,13.393500328063965 -14326,2018-02-17 22:00:00,26.47100067138672,0.0,37.2869987487793,6.138999938964844,-10.852999687194824,-2.740000009536743,13.393500328063965 -14327,2018-02-17 23:00:00,24.459999084472656,0.0,35.7859992980957,5.869999885559082,-10.852999687194824,-2.740000009536743,12.95400047302246 -14328,2018-02-18 00:00:00,20.020999908447266,0.0,31.92600059509277,5.039000034332275,-10.852999687194824,-2.740000009536743,12.95400047302246 -14329,2018-02-18 01:00:00,21.025999069213867,0.0,33.31999969482422,6.2729997634887695,-12.121999740600586,-2.740000009536743,12.734000205993652 -14330,2018-02-18 02:00:00,21.11000061035156,0.0,32.514999389648445,5.951000213623048,-10.895999908447266,-2.740000009536743,12.51449966430664 -14331,2018-02-18 03:00:00,19.684999465942383,0.0,31.57699966430664,5.923999786376952,-12.111000061035154,-2.740000009536743,12.51449966430664 -14332,2018-02-18 04:00:00,20.1879997253418,0.0,31.60400009155273,5.978000164031982,-10.843000411987305,-2.740000009536743,12.51449966430664 -14333,2018-02-18 05:00:00,20.1879997253418,0.0,32.03300094604492,6.031000137329103,-12.069000244140623,-2.740000009536743,12.734000205993652 -14334,2018-02-18 06:00:00,21.36100006103516,0.0,32.59600067138672,6.245999813079834,-10.800000190734863,-2.740000009536743,12.734000205993652 -14335,2018-02-18 07:00:00,20.43899917602539,0.0,31.416000366210927,5.602000236511231,-10.800000190734863,-2.740000009536743,12.734000205993652 -14336,2018-02-18 08:00:00,20.52300071716309,0.0,31.256000518798828,5.119999885559082,-9.585000038146973,-2.740000009536743,12.734000205993652 -14337,2018-02-18 09:00:00,21.19300079345703,0.0,31.631000518798828,5.173999786376953,-10.800000190734863,-2.740000009536743,12.734000205993652 -14338,2018-02-18 10:00:00,24.96299934387207,0.0,35.4640007019043,5.4679999351501465,-10.800000190734863,-2.740000009536743,13.173999786376951 -14339,2018-02-18 11:00:00,26.72200012207031,4.5229997634887695,38.35900115966797,6.809000015258789,-10.800000190734863,-2.740000009536743,13.833000183105469 -14340,2018-02-18 12:00:00,26.13599967956543,4.355999946594238,37.608001708984375,6.675000190734862,-10.800000190734863,-2.740000009536743,14.272500038146973 -14341,2018-02-18 13:00:00,26.55400085449219,4.2719998359680185,37.55500030517578,6.5939998626708975,-10.800000190734863,-2.740000009536743,14.272500038146973 -14342,2018-02-18 14:00:00,26.386999130249023,4.105000019073486,37.2869987487793,6.298999786376952,-10.800000190734863,-2.740000009536743,14.053000450134276 -14343,2018-02-18 15:00:00,27.05699920654297,4.440000057220459,38.65399932861328,6.755000114440918,-10.800000190734863,-2.740000009536743,12.295000076293944 -14344,2018-02-18 16:00:00,27.05699920654297,4.2719998359680185,38.97600173950195,6.620999813079834,-10.800000190734863,-2.740000009536743,11.416000366210938 -14345,2018-02-18 17:00:00,28.64900016784668,4.105000019073486,39.35100173950195,6.460000038146973,-10.800000190734863,-2.740000009536743,11.196499824523926 -14346,2018-02-18 18:00:00,29.066999435424805,4.60699987411499,40.15499877929688,6.809000015258789,-10.800000190734863,-2.740000009536743,10.756999969482422 -14347,2018-02-18 19:00:00,26.72200012207031,0.0,36.9119987487793,5.8439998626708975,-10.821000099182127,-2.740000009536743,10.537500381469728 -14348,2018-02-18 20:00:00,30.743000030517567,5.110000133514403,41.28099822998047,7.263999938964844,-10.736000061035156,-2.740000009536743,10.537500381469728 -14349,2018-02-18 21:00:00,29.15099906921387,4.859000205993652,41.01300048828125,7.3979997634887695,-10.67199993133545,-2.740000009536743,10.537500381469728 -14350,2018-02-18 22:00:00,28.983999252319336,5.026000022888184,39.02899932861328,7.23799991607666,-10.67199993133545,-2.740000009536743,10.537500381469728 -14351,2018-02-18 23:00:00,25.381999969482425,4.355999946594238,36.7509994506836,6.888999938964844,-10.67199993133545,-2.740000009536743,10.317500114440918 -14352,2018-02-19 00:00:00,23.70599937438965,0.0,34.820999145507805,6.513999938964844,-10.67199993133545,-2.740000009536743,10.317500114440918 -14353,2018-02-19 01:00:00,22.114999771118164,0.0,33.373001098632805,6.298999786376952,-10.67199993133545,-2.740000009536743,10.317500114440918 -14354,2018-02-19 02:00:00,21.19300079345703,0.0,32.944000244140625,6.4070000648498535,-10.67199993133545,-2.740000009536743,10.317500114440918 -14355,2018-02-19 03:00:00,22.198999404907227,4.440000057220459,33.26599884033203,7.0229997634887695,-10.67199993133545,-2.740000009536743,10.317500114440918 -14356,2018-02-19 04:00:00,22.198999404907227,4.355999946594238,33.077999114990234,6.915999889373777,-10.67199993133545,-2.740000009536743,10.317500114440918 -14357,2018-02-19 05:00:00,21.61199951171875,4.2719998359680185,33.238998413085945,7.077000141143799,-10.67199993133545,-2.740000009536743,9.878000259399414 -14358,2018-02-19 06:00:00,18.010000228881836,0.0,29.37899971008301,5.4679999351501465,-10.67199993133545,-2.740000009536743,9.878000259399414 -14359,2018-02-19 07:00:00,22.617000579833984,0.0,33.64099884033203,6.4070000648498535,-10.67199993133545,-2.740000009536743,10.317500114440918 -14360,2018-02-19 08:00:00,21.780000686645508,0.0,32.139999389648445,5.281000137329102,-10.67199993133545,-2.740000009536743,10.317500114440918 -14361,2018-02-19 09:00:00,25.71699905395508,4.188000202178955,36.5359992980957,6.566999912261963,-10.66100025177002,-2.740000009536743,9.878000259399414 -14362,2018-02-19 10:00:00,21.69599914550781,0.0,32.22100067138672,3.190000057220459,-10.66100025177002,-2.740000009536743,9.43850040435791 -14363,2018-02-19 11:00:00,25.1299991607666,0.0,35.8120002746582,5.869999885559082,-10.66100025177002,-2.740000009536743,9.43850040435791 -14364,2018-02-19 12:00:00,23.20400047302246,0.0,35.33000183105469,5.5219998359680185,-10.66100025177002,-2.740000009536743,9.43850040435791 -14365,2018-02-19 13:00:00,28.983999252319336,5.110000133514403,39.53799819946289,7.210999965667725,-10.651000022888184,-2.740000009536743,9.43850040435791 -14366,2018-02-19 14:00:00,27.559999465942383,4.690999984741211,38.97600173950195,7.184000015258789,-10.651000022888184,-2.740000009536743,9.878000259399414 -14367,2018-02-19 15:00:00,27.97900009155273,5.193999767303467,39.75299835205078,7.639999866485598,-11.866000175476074,-2.740000009536743,10.317500114440918 -14368,2018-02-19 16:00:00,28.062000274658203,4.775000095367432,40.02099990844727,7.452000141143799,-11.866000175476074,-2.8359999656677246,10.756999969482422 -14369,2018-02-19 17:00:00,30.239999771118164,5.026000022888184,40.85200119018555,7.184000015258789,-10.447999954223633,-2.8359999656677246,11.196499824523926 -14370,2018-02-19 18:00:00,29.98900032043457,5.110000133514403,41.20000076293945,7.452000141143799,-10.406000137329102,-2.8359999656677246,11.416000366210938 -14371,2018-02-19 19:00:00,30.32399940490723,4.859000205993652,38.680999755859375,6.675000190734862,-9.178999900817873,-2.8359999656677246,11.416000366210938 -14372,2018-02-19 20:00:00,30.99399948120117,5.110000133514403,40.85200119018555,7.1570000648498535,-10.468999862670898,-2.8359999656677246,11.416000366210938 -14373,2018-02-19 21:00:00,26.63800048828125,0.0,38.01100158691406,6.2729997634887695,-10.447999954223633,-2.8359999656677246,11.416000366210938 -14374,2018-02-19 22:00:00,25.29800033569336,0.0,36.1609992980957,6.138999938964844,-10.447999954223633,-2.8359999656677246,11.635499954223633 -14375,2018-02-19 23:00:00,24.041000366210927,0.0,35.19599914550781,6.245999813079834,-11.706000328063965,-2.8250000476837163,11.854999542236328 -14376,2018-02-20 00:00:00,22.86899948120117,4.188000202178955,35.54399871826172,6.888999938964844,-11.652999877929688,-2.8250000476837163,12.074999809265137 -14377,2018-02-20 01:00:00,21.69599914550781,4.105000019073486,34.20399856567383,6.888999938964844,-11.652999877929688,-2.8250000476837163,12.074999809265137 -14378,2018-02-20 02:00:00,20.77400016784668,0.0,33.85599899291992,6.675000190734862,-12.890000343322756,-2.9749999046325684,12.074999809265137 -14379,2018-02-20 03:00:00,22.617000579833984,4.188000202178955,33.31999969482422,6.888999938964844,-11.652999877929688,-2.9749999046325684,11.854999542236328 -14380,2018-02-20 04:00:00,22.28199958801269,4.440000057220459,33.13199996948242,6.915999889373777,-10.416000366210938,-2.782999992370605,11.854999542236328 -14381,2018-02-20 05:00:00,22.198999404907227,4.440000057220459,34.23099899291992,7.290999889373777,-11.642000198364258,-2.782999992370605,11.635499954223633 -14382,2018-02-20 06:00:00,19.85300064086914,0.0,31.711000442504893,6.540999889373777,-11.642000198364258,-2.782999992370605,11.416000366210938 -14383,2018-02-20 07:00:00,23.20400047302246,0.0,34.391998291015625,6.486999988555907,-11.642000198364258,-2.782999992370605,10.756999969482422 -14384,2018-02-20 08:00:00,25.1299991607666,4.440000057220459,36.13399887084961,6.7820000648498535,-10.395000457763672,-2.782999992370605,10.756999969482422 -14385,2018-02-20 09:00:00,25.80100059509277,4.5229997634887695,37.84999847412109,7.1570000648498535,-11.642000198364258,-2.96399998664856,10.756999969482422 -14386,2018-02-20 10:00:00,25.632999420166016,0.0,37.01900100708008,5.896999835968018,-10.36299991607666,-2.96399998664856,10.756999969482422 -14387,2018-02-20 11:00:00,30.82699966430664,5.947999954223633,41.44200134277344,8.015000343322754,-10.36299991607666,-2.96399998664856,10.09749984741211 -14388,2018-02-20 12:00:00,30.492000579833984,5.611999988555908,41.20000076293945,7.800000190734862,-10.36299991607666,-2.96399998664856,10.09749984741211 -14389,2018-02-20 13:00:00,30.82699966430664,5.696000099182129,42.19200134277344,8.041999816894531,-10.35200023651123,-2.96399998664856,10.09749984741211 -14390,2018-02-20 14:00:00,32.83700180053711,6.533999919891357,42.24599838256836,8.282999992370605,-10.35200023651123,-2.96399998664856,9.658499717712402 -14391,2018-02-20 15:00:00,30.90999984741211,5.611999988555908,41.790000915527344,7.960999965667725,-10.342000007629396,-2.96399998664856,9.658499717712402 -14392,2018-02-20 16:00:00,31.66399955749512,5.361000061035156,42.54100036621094,7.692999839782715,-10.342000007629396,-2.96399998664856,9.658499717712402 -14393,2018-02-20 17:00:00,32.501998901367195,5.193999767303467,43.04999923706055,7.1570000648498535,-10.342000007629396,-2.96399998664856,9.43850040435791 -14394,2018-02-20 18:00:00,32.417999267578125,5.026000022888184,42.75500106811523,7.1040000915527335,-10.342000007629396,-2.96399998664856,8.99899959564209 -14395,2018-02-20 19:00:00,30.65900039672852,4.2719998359680185,40.85200119018555,6.326000213623048,-10.3100004196167,-2.96399998664856,8.559499740600586 -14396,2018-02-20 20:00:00,35.182998657226555,5.947999954223633,45.48899841308594,7.934999942779541,-10.3100004196167,-2.96399998664856,8.559499740600586 -14397,2018-02-20 21:00:00,33.757999420166016,5.696000099182129,44.06900024414063,7.692999839782715,-10.331000328063965,-2.96399998664856,8.339500427246094 -14398,2018-02-20 22:00:00,31.077999114990234,5.026000022888184,41.57600021362305,7.290999889373777,-10.331000328063965,-2.96399998664856,8.339500427246094 -14399,2018-02-20 23:00:00,26.80599975585937,4.355999946594238,39.24399948120117,7.1570000648498535,-11.57800006866455,-2.96399998664856,8.559499740600586 -14400,2018-02-21 00:00:00,26.386999130249023,4.5229997634887695,37.55500030517578,6.9689998626708975,-11.54599952697754,-2.96399998664856,8.779500007629395 -14401,2018-02-21 01:00:00,24.87899971008301,4.2719998359680185,36.13399887084961,6.728000164031982,-10.31999969482422,-2.96399998664856,8.99899959564209 -14402,2018-02-21 02:00:00,23.45499992370605,0.0,34.6870002746582,6.326000213623048,-11.53600025177002,-2.96399998664856,9.218999862670898 -14403,2018-02-21 03:00:00,20.77400016784668,0.0,32.702999114990234,6.326000213623048,-11.53600025177002,-2.96399998664856,9.657999992370604 -14404,2018-02-21 04:00:00,10.890000343322754,0.0,22.249000549316406,2.4660000801086426,-11.53600025177002,-2.96399998664856,9.657999992370604 -14405,2018-02-21 05:00:00,12.815999984741213,0.0,23.15999984741211,2.358999967575073,-10.31999969482422,-2.96399998664856,9.43850040435791 -14406,2018-02-21 06:00:00,11.979000091552734,0.0,23.05299949645996,2.546999931335449,-10.31999969482422,-2.96399998664856,9.43850040435791 -14407,2018-02-21 07:00:00,13.319000244140623,0.0,23.88400077819824,2.9489998817443848,-10.267000198364258,-2.96399998664856,9.43850040435791 -14408,2018-02-21 08:00:00,16.083000183105472,0.0,26.940000534057607,3.88700008392334,-10.267000198364258,-2.96399998664856,9.43850040435791 -14409,2018-02-21 09:00:00,22.53400039672852,0.0,34.042999267578125,5.736000061035156,-11.54599952697754,-2.96399998664856,10.097999572753906 -14410,2018-02-21 10:00:00,29.23500061035156,5.445000171661377,40.69100189208984,7.827000141143799,-10.277999877929688,-2.96399998664856,10.756999969482422 -14411,2018-02-21 11:00:00,30.57500076293945,6.533999919891357,41.57600021362305,8.873000144958496,-10.277999877929688,-2.96399998664856,10.97700023651123 -14412,2018-02-21 12:00:00,31.413000106811523,6.618000030517577,42.56800079345703,8.873000144958496,-10.277999877929688,-2.96399998664856,11.416000366210938 -14413,2018-02-21 13:00:00,29.319000244140625,6.2829999923706055,40.85200119018555,8.630999565124513,-10.277999877929688,-2.96399998664856,11.635499954223633 -14414,2018-02-21 14:00:00,31.99900054931641,7.288000106811522,43.935001373291016,9.435999870300291,-11.503999710083008,-2.96399998664856,11.635499954223633 -14415,2018-02-21 15:00:00,32.501998901367195,7.706999778747559,43.90800094604492,9.756999969482422,-11.428999900817873,-2.96399998664856,11.635499954223633 -14416,2018-02-21 16:00:00,32.75299835205078,7.037000179290772,44.12200164794922,9.354999542236328,-10.20300006866455,-2.96399998664856,11.854999542236328 -14417,2018-02-21 17:00:00,33.674999237060554,6.533999919891357,43.98799896240234,8.416999816894531,-10.19200038909912,-2.96399998664856,12.074999809265137 -14418,2018-02-21 18:00:00,33.84199905395508,7.623000144958496,44.73899841308594,9.56999969482422,-10.19200038909912,-2.96399998664856,12.074999809265137 -14419,2018-02-21 19:00:00,33.17200088500977,7.119999885559082,44.04199981689453,9.140999794006348,-10.19200038909912,-2.96399998664856,12.074999809265137 -14420,2018-02-21 20:00:00,33.50699996948242,6.114999771118164,44.38999938964844,8.470999717712402,-10.19200038909912,-2.96399998664856,12.074999809265137 -14421,2018-02-21 21:00:00,33.17200088500977,6.701000213623048,44.71200180053711,8.979999542236328,-11.407999992370604,-2.96399998664856,12.074999809265137 -14422,2018-02-21 22:00:00,32.83700180053711,7.958000183105469,43.21099853515625,10.024999618530272,-10.149999618530272,-2.96399998664856,12.074999809265137 -14423,2018-02-21 23:00:00,27.895000457763672,6.198999881744385,38.22499847412109,8.496999740600586,-10.128000259399414,-2.96399998664856,12.074999809265137 -14424,2018-02-22 00:00:00,26.2189998626709,6.114999771118164,37.98400115966797,8.657999992370605,-11.343999862670898,-2.96399998664856,11.635499954223633 -14425,2018-02-22 01:00:00,23.62299919128418,5.361000061035156,34.955001831054695,7.827000141143799,-11.343999862670898,-2.96399998664856,11.635499954223633 -14426,2018-02-22 02:00:00,24.041000366210927,6.618000030517577,36.321998596191406,9.248000144958496,-11.343999862670898,-2.96399998664856,11.196499824523926 -14427,2018-02-22 03:00:00,24.71199989318848,5.78000020980835,36.29499816894531,8.390000343322754,-11.343999862670898,-2.96399998664856,11.196499824523926 -14428,2018-02-22 04:00:00,23.45499992370605,5.78000020980835,35.946998596191406,8.578000068664549,-11.343999862670898,-2.96399998664856,10.756999969482422 -14429,2018-02-22 05:00:00,24.96299934387207,5.863999843597412,35.86600112915039,8.390000343322754,-10.086000442504885,-2.96399998664856,10.756999969482422 -14430,2018-02-22 06:00:00,24.87899971008301,5.947999954223633,36.0,8.470999717712402,-11.269000053405762,-2.96399998664856,10.756999969482422 -14431,2018-02-22 07:00:00,25.80100059509277,4.355999946594238,37.2599983215332,7.0229997634887695,-11.269000053405762,-2.96399998664856,10.756999969482422 -14432,2018-02-22 08:00:00,25.71699905395508,4.440000057220459,37.18000030517578,6.9689998626708975,-11.269000053405762,-2.96399998664856,10.756999969482422 -14433,2018-02-22 09:00:00,21.527999877929688,0.0,33.80199813842773,6.755000114440918,-11.269000053405762,-2.96399998664856,11.635499954223633 -14434,2018-02-22 10:00:00,16.0,0.0,28.976999282836918,2.546999931335449,-12.463000297546388,-2.96399998664856,13.173999786376951 -14435,2018-02-22 11:00:00,17.926000595092773,0.0,29.915000915527344,3.61899995803833,-12.45199966430664,-2.782999992370605,15.371500015258787 -14436,2018-02-22 12:00:00,20.10400009155273,0.0,30.7189998626709,4.0209999084472665,-11.119999885559082,-2.782999992370605,16.469499588012695 -14437,2018-02-22 13:00:00,22.78499984741211,0.0,34.5260009765625,5.414999961853027,-11.119999885559082,-2.782999992370605,18.00749969482422 -14438,2018-02-22 14:00:00,25.71699905395508,0.0,37.15299987792969,5.576000213623047,-11.119999885559082,-2.782999992370605,19.54599952697754 -14439,2018-02-22 15:00:00,28.81599998474121,4.941999912261963,40.61100006103516,7.23799991607666,-11.119999885559082,-2.782999992370605,20.864500045776367 -14440,2018-02-22 16:00:00,28.481000900268555,4.859000205993652,41.040000915527344,7.479000091552732,-11.119999885559082,-2.782999992370605,20.424999237060547 -14441,2018-02-22 17:00:00,27.141000747680664,0.0,38.73400115966797,6.004000186920166,-11.161999702453612,-2.782999992370605,18.886499404907227 -14442,2018-02-22 18:00:00,31.077999114990234,4.105000019073486,41.14699935913086,6.164999961853027,-9.680999755859377,-2.782999992370605,17.568000793457028 -14443,2018-02-22 19:00:00,27.05699920654297,0.0,38.70800018310547,4.879000186920166,-10.895999908447266,-2.782999992370605,16.030500411987305 -14444,2018-02-22 20:00:00,30.65900039672852,4.105000019073486,42.13899993896485,6.540999889373777,-10.86400032043457,-2.782999992370605,14.711999893188477 -14445,2018-02-22 21:00:00,30.82699966430664,4.941999912261963,42.70199966430664,7.23799991607666,-10.86400032043457,-2.782999992370605,13.61299991607666 -14446,2018-02-22 22:00:00,30.32399940490723,4.5229997634887695,40.77199935913086,6.701000213623048,-10.86400032043457,-2.782999992370605,12.734000205993652 -14447,2018-02-22 23:00:00,28.229999542236328,4.60699987411499,38.46599960327149,6.701000213623048,-9.64900016784668,-2.782999992370605,12.074999809265137 -14448,2018-02-23 00:00:00,24.795000076293945,0.0,34.632999420166016,6.245999813079834,-9.64900016784668,-2.782999992370605,11.635499954223633 -14449,2018-02-23 01:00:00,23.70599937438965,4.105000019073486,34.955001831054695,6.6479997634887695,-10.885000228881836,-2.782999992370605,11.196499824523926 -14450,2018-02-23 02:00:00,23.53899955749512,4.105000019073486,34.57899856567383,6.620999813079834,-10.885000228881836,-2.782999992370605,10.756999969482422 -14451,2018-02-23 03:00:00,23.95800018310547,4.355999946594238,34.57899856567383,6.9689998626708975,-10.885000228881836,-2.782999992370605,9.878000259399414 -14452,2018-02-23 04:00:00,23.45499992370605,0.0,34.391998291015625,6.353000164031982,-10.885000228881836,-2.782999992370605,9.43850040435791 -14453,2018-02-23 05:00:00,23.790000915527344,4.188000202178955,34.553001403808594,6.809000015258789,-10.885000228881836,-2.782999992370605,8.99899959564209 -14454,2018-02-23 06:00:00,21.780000686645508,0.0,33.025001525878906,6.191999912261963,-10.885000228881836,-2.782999992370605,8.559499740600586 -14455,2018-02-23 07:00:00,24.96299934387207,0.0,36.21500015258789,6.138999938964844,-10.885000228881836,-2.782999992370605,8.559499740600586 -14456,2018-02-23 08:00:00,20.10400009155273,0.0,32.35499954223633,3.3239998817443848,-12.10099983215332,-2.740000009536743,8.779000282287598 -14457,2018-02-23 09:00:00,27.141000747680664,0.0,38.92200088500977,6.2189998626708975,-10.885000228881836,-2.740000009536743,10.756999969482422 -14458,2018-02-23 10:00:00,25.04700088500977,0.0,37.4739990234375,5.308000087738037,-12.142999649047852,-2.740000009536743,14.272500038146973 -14459,2018-02-23 11:00:00,26.63800048828125,0.0,39.21699905395508,6.835000038146973,-12.154000282287598,-2.740000009536743,17.788000106811523 -14460,2018-02-23 12:00:00,26.80599975585937,5.110000133514403,39.32400131225586,7.827000141143799,-12.154000282287598,-2.740000009536743,20.644500732421875 -14461,2018-02-23 13:00:00,28.565000534057607,6.86899995803833,39.29700088500977,9.034000396728516,-10.916999816894531,-2.740000009536743,22.183000564575195 -14462,2018-02-23 14:00:00,26.2189998626709,6.114999771118164,37.71599960327149,8.470999717712402,-12.154000282287598,-2.740000009536743,24.15999984741211 -14463,2018-02-23 15:00:00,25.968000411987305,6.7849998474121085,36.9119987487793,8.925999641418457,-10.928000450134276,-2.740000009536743,25.697999954223643 -14464,2018-02-23 16:00:00,26.05200004577637,5.696000099182129,37.95700073242188,8.121999740600586,-10.885000228881836,-2.740000009536743,25.25900077819824 -14465,2018-02-23 17:00:00,27.22500038146973,5.611999988555908,38.59999847412109,8.041999816894531,-10.885000228881836,-2.740000009536743,23.94050025939941 -14466,2018-02-23 18:00:00,26.72200012207031,5.026000022888184,39.29700088500977,7.98799991607666,-10.83199977874756,-2.740000009536743,22.621999740600582 -14467,2018-02-23 19:00:00,26.386999130249023,5.026000022888184,37.90299987792969,7.23799991607666,-10.83199977874756,-2.740000009536743,20.645000457763672 -14468,2018-02-23 20:00:00,26.63800048828125,4.859000205993652,38.14500045776367,7.290999889373777,-10.86400032043457,-2.740000009536743,18.44700050354004 -14469,2018-02-23 21:00:00,30.743000030517567,6.533999919891357,41.790000915527344,8.765000343322754,-10.86400032043457,-2.740000009536743,17.568000793457028 -14470,2018-02-23 22:00:00,27.81100082397461,6.031000137329103,38.54700088500977,8.444000244140625,-10.86400032043457,-2.740000009536743,16.68899917602539 -14471,2018-02-23 23:00:00,26.13599967956543,5.445000171661377,36.321998596191406,7.747000217437744,-10.86400032043457,-2.740000009536743,16.469499588012695 -14472,2018-02-24 00:00:00,25.71699905395508,6.2829999923706055,35.7859992980957,8.604999542236326,-10.86400032043457,-2.740000009536743,16.469499588012695 -14473,2018-02-24 01:00:00,22.28199958801269,5.611999988555908,35.222999572753906,8.578000068664549,-12.07900047302246,-2.740000009536743,16.25 -14474,2018-02-24 02:00:00,22.450000762939453,5.445000171661377,34.41899871826172,8.203000068664549,-12.07900047302246,-2.900000095367432,16.68899917602539 -14475,2018-02-24 03:00:00,15.329999923706056,0.0,26.75200080871582,5.683000087738037,-10.843000411987305,-2.900000095367432,16.68899917602539 -14476,2018-02-24 04:00:00,21.36100006103516,4.941999912261963,33.775001525878906,7.854000091552732,-12.05799961090088,-2.900000095367432,16.469499588012695 -14477,2018-02-24 05:00:00,17.423999786376953,0.0,30.10300064086914,6.513999938964844,-12.04699993133545,-2.900000095367432,16.25 -14478,2018-02-24 06:00:00,16.083000183105472,0.0,28.92300033569336,5.763000011444093,-12.026000022888184,-2.900000095367432,15.810999870300291 -14479,2018-02-24 07:00:00,22.70100021362305,0.0,34.632999420166016,6.004000186920166,-12.026000022888184,-2.900000095367432,15.590999603271484 -14480,2018-02-24 08:00:00,20.857999801635746,0.0,32.40800094604492,4.26200008392334,-10.800000190734863,-2.900000095367432,15.371000289916992 -14481,2018-02-24 09:00:00,21.44499969482422,0.0,33.10499954223633,5.254000186920166,-10.800000190734863,-2.900000095367432,15.590999603271484 -14482,2018-02-24 10:00:00,21.69599914550781,0.0,33.025001525878906,4.0209999084472665,-10.800000190734863,-2.900000095367432,16.25 -14483,2018-02-24 11:00:00,19.01499938964844,0.0,29.37899971008301,3.2170000076293945,-10.800000190734863,-2.900000095367432,17.348499298095707 -14484,2018-02-24 12:00:00,19.099000930786133,0.0,30.1299991607666,3.940000057220459,-10.800000190734863,-2.900000095367432,18.227500915527344 -14485,2018-02-24 13:00:00,24.795000076293945,4.355999946594238,35.16899871826172,6.7820000648498535,-10.736000061035156,-2.900000095367432,19.766000747680664 -14486,2018-02-24 14:00:00,24.795000076293945,4.440000057220459,34.820999145507805,6.675000190734862,-9.446000099182127,-2.900000095367432,21.74300003051757 -14487,2018-02-24 15:00:00,30.40800094604492,6.618000030517577,40.10100173950195,8.470999717712402,-10.68299961090088,-2.900000095367432,21.962499618530277 -14488,2018-02-24 16:00:00,32.75299835205078,6.701000213623048,44.52399826049805,8.845999717712402,-10.67199993133545,-2.900000095367432,21.30349922180176 -14489,2018-02-24 17:00:00,32.333999633789055,5.696000099182129,42.94300079345703,7.827000141143799,-10.928000450134276,-2.900000095367432,20.424999237060547 -14490,2018-02-24 18:00:00,32.92100143432617,5.78000020980835,43.13000106811523,7.692999839782715,-9.713000297546388,-2.900000095367432,19.98550033569336 -14491,2018-02-24 19:00:00,29.98900032043457,5.026000022888184,42.48699951171875,7.372000217437744,-12.111000061035154,-2.900000095367432,19.98550033569336 -14492,2018-02-24 20:00:00,31.413000106811523,5.276999950408936,41.73699951171875,7.3979997634887695,-10.68299961090088,-2.900000095367432,19.54599952697754 -14493,2018-02-24 21:00:00,32.08300018310547,5.863999843597412,43.34500122070313,8.175999641418457,-10.68299961090088,-2.900000095367432,19.326000213623047 -14494,2018-02-24 22:00:00,27.47599983215332,0.0,39.53799819946289,6.4070000648498535,-10.68299961090088,-2.900000095367432,18.886999130249023 -14495,2018-02-24 23:00:00,28.229999542236328,5.445000171661377,39.75299835205078,7.800000190734862,-10.68299961090088,-2.900000095367432,18.44700050354004 -14496,2018-02-25 00:00:00,26.63800048828125,4.775000095367432,37.98400115966797,7.210999965667725,-10.68299961090088,-2.900000095367432,17.788000106811523 -14497,2018-02-25 01:00:00,24.54400062561035,4.775000095367432,37.367000579833984,7.50600004196167,-13.135000228881836,-2.900000095367432,17.128999710083008 -14498,2018-02-25 02:00:00,22.617000579833984,0.0,35.16899871826172,6.380000114440918,-11.918999671936035,-2.900000095367432,16.68899917602539 -14499,2018-02-25 03:00:00,20.43899917602539,0.0,32.569000244140625,6.326000213623048,-11.918999671936035,-2.900000095367432,16.469499588012695 -14500,2018-02-25 04:00:00,23.45499992370605,4.355999946594238,34.87400054931641,6.861999988555907,-11.918999671936035,-2.900000095367432,15.810999870300291 -14501,2018-02-25 05:00:00,17.926000595092773,0.0,30.666000366210927,5.494999885559082,-11.918999671936035,-2.8250000476837163,15.371000289916992 -14502,2018-02-25 06:00:00,20.1879997253418,0.0,31.28199958801269,5.656000137329103,-11.918999671936035,-2.8250000476837163,14.932000160217283 -14503,2018-02-25 07:00:00,25.548999786376957,0.0,37.42100143432617,6.5939998626708975,-10.68299961090088,-2.8250000476837163,14.932000160217283 -14504,2018-02-25 08:00:00,26.05200004577637,4.355999946594238,38.06399917602539,7.0229997634887695,-11.89799976348877,-2.8250000476837163,14.491999626159668 -14505,2018-02-25 09:00:00,25.46500015258789,4.105000019073486,36.83100128173828,6.380000114440918,-10.628999710083008,-2.8250000476837163,14.932000160217283 -14506,2018-02-25 10:00:00,27.81100082397461,5.110000133514403,39.24399948120117,7.50600004196167,-10.66100025177002,-2.8250000476837163,16.469499588012695 -14507,2018-02-25 11:00:00,27.81100082397461,0.0,38.38600158691406,5.736000061035156,-10.66100025177002,-2.8250000476837163,17.788000106811523 -14508,2018-02-25 12:00:00,27.726999282836918,4.105000019073486,40.04800033569336,6.5939998626708975,-11.918999671936035,-2.8250000476837163,19.765499114990234 -14509,2018-02-25 13:00:00,28.31399917602539,5.445000171661377,41.30799865722656,7.934999942779541,-11.940999984741213,-2.8250000476837163,21.304000854492188 -14510,2018-02-25 14:00:00,29.65399932861328,5.276999950408936,40.77199935913086,7.692999839782715,-11.940999984741213,-2.8250000476837163,21.74300003051757 -14511,2018-02-25 15:00:00,28.565000534057607,5.193999767303467,40.69100189208984,7.71999979019165,-11.940999984741213,-2.8250000476837163,21.962499618530277 -14512,2018-02-25 16:00:00,30.743000030517567,5.361000061035156,41.709999084472656,7.77400016784668,-10.67199993133545,-2.8250000476837163,22.402000427246094 -14513,2018-02-25 17:00:00,30.82699966430664,4.941999912261963,42.51399993896485,7.0229997634887695,-10.68299961090088,-2.8250000476837163,21.74300003051757 -14514,2018-02-25 18:00:00,33.17200088500977,5.947999954223633,42.64799880981445,7.692999839782715,-9.425000190734863,-2.8250000476837163,20.424999237060547 -14515,2018-02-25 19:00:00,31.496999740600582,5.445000171661377,41.17399978637695,7.0229997634887695,-9.425000190734863,-2.8250000476837163,19.54599952697754 -14516,2018-02-25 20:00:00,32.669998168945305,5.696000099182129,41.95100021362305,7.317999839782715,-9.477999687194824,-2.8250000476837163,18.44700050354004 -14517,2018-02-25 21:00:00,33.25600051879883,6.366000175476074,43.96099853515625,8.175999641418457,-10.725000381469728,-2.8250000476837163,17.128999710083008 -14518,2018-02-25 22:00:00,31.832000732421875,6.2829999923706055,42.29899978637695,7.98799991607666,-11.03499984741211,-2.8250000476837163,15.810999870300291 -14519,2018-02-25 23:00:00,28.73200035095215,5.361000061035156,39.67300033569336,7.479000091552732,-11.269000053405762,-2.8250000476837163,14.711999893188477 -14520,2018-02-26 00:00:00,27.22500038146973,4.859000205993652,38.14500045776367,7.1040000915527335,-10.053999900817873,-2.8250000476837163,13.833000183105469 -14521,2018-02-26 01:00:00,27.726999282836918,5.361000061035156,38.198001861572266,7.372000217437744,-10.01099967956543,-2.8250000476837163,12.95400047302246 -14522,2018-02-26 02:00:00,25.29800033569336,5.026000022888184,37.18000030517578,7.692999839782715,-11.22599983215332,-2.697000026702881,12.51449966430664 -14523,2018-02-26 03:00:00,26.30299949645996,5.863999843597412,36.992000579833984,8.14900016784668,-11.194000244140623,-2.697000026702881,12.074999809265137 -14524,2018-02-26 04:00:00,25.71699905395508,5.445000171661377,36.992000579833984,7.71999979019165,-11.152000427246094,-2.697000026702881,11.196499824523926 -14525,2018-02-26 05:00:00,23.035999298095703,0.0,34.57899856567383,6.513999938964844,-11.152000427246094,-2.697000026702881,10.756999969482422 -14526,2018-02-26 06:00:00,26.30299949645996,5.445000171661377,38.86800003051758,7.854000091552732,-12.366999626159668,-2.697000026702881,10.317500114440918 -14527,2018-02-26 07:00:00,25.71699905395508,4.105000019073486,37.6349983215332,6.6479997634887695,-12.366999626159668,-2.888999938964844,10.097999572753906 -14528,2018-02-26 08:00:00,24.041000366210927,0.0,35.4640007019043,5.4679999351501465,-11.097999572753906,-2.888999938964844,10.756999969482422 -14529,2018-02-26 09:00:00,25.46500015258789,4.5229997634887695,37.367000579833984,7.23799991607666,-11.097999572753906,-2.888999938964844,12.95400047302246 -14530,2018-02-26 10:00:00,22.28199958801269,0.0,33.963001251220696,4.852000236511231,-11.097999572753906,-2.888999938964844,16.469999313354492 -14531,2018-02-26 11:00:00,22.78499984741211,0.0,34.65999984741211,5.281000137329102,-11.097999572753906,-2.888999938964844,19.326000213623047 -14532,2018-02-26 12:00:00,23.45499992370605,0.0,34.847000122070305,5.602000236511231,-11.097999572753906,-2.888999938964844,22.40250015258789 -14533,2018-02-26 13:00:00,24.125,0.0,35.11600112915039,6.486999988555907,-11.097999572753906,-2.888999938964844,24.3799991607666 -14534,2018-02-26 14:00:00,21.780000686645508,0.0,32.194000244140625,5.388000011444092,-11.097999572753906,-2.888999938964844,26.13750076293945 -14535,2018-02-26 15:00:00,24.125,4.859000205993652,35.86600112915039,7.130000114440918,-11.097999572753906,-2.888999938964844,27.89550018310547 -14536,2018-02-26 16:00:00,20.27199935913086,0.0,32.78300094604492,5.736000061035156,-12.335000038146973,-2.888999938964844,27.45599937438965 -14537,2018-02-26 17:00:00,23.62299919128418,0.0,34.632999420166016,5.4679999351501465,-11.06700038909912,-2.888999938964844,25.917999267578125 -14538,2018-02-26 18:00:00,21.69599914550781,0.0,33.238998413085945,5.065999984741211,-11.472000122070312,-2.888999938964844,23.94050025939941 -14539,2018-02-26 19:00:00,23.790000915527344,0.0,33.42699813842773,4.2890000343322745,-10.223999977111816,-2.888999938964844,22.1825008392334 -14540,2018-02-26 20:00:00,27.308000564575195,4.105000019073486,36.13399887084961,5.656000137329103,-7.824999809265138,-2.888999938964844,20.424999237060547 -14541,2018-02-26 21:00:00,26.80599975585937,4.440000057220459,36.29499816894531,6.085000038146973,-9.4350004196167,-2.888999938964844,19.326000213623047 -14542,2018-02-26 22:00:00,23.53899955749512,0.0,33.31999969482422,5.763000011444093,-9.690999984741213,-2.888999938964844,18.227500915527344 -14543,2018-02-26 23:00:00,22.617000579833984,4.105000019073486,32.514999389648445,5.816999912261963,-9.690999984741213,-2.888999938964844,17.348499298095707 -14544,2018-02-27 00:00:00,21.94700050354004,4.440000057220459,31.041000366210927,6.191999912261963,-9.744000434875488,-2.888999938964844,16.909000396728516 -14545,2018-02-27 01:00:00,21.44499969482422,0.0,30.316999435424805,5.548999786376953,-8.604000091552733,-2.888999938964844,16.909000396728516 -14546,2018-02-27 02:00:00,17.172000885009766,0.0,27.10099983215332,4.852000236511231,-9.946999549865724,-2.888999938964844,16.469499588012695 -14547,2018-02-27 03:00:00,21.69599914550781,4.440000057220459,32.112998962402344,6.6479997634887695,-10.107000350952148,-2.888999938964844,16.030500411987305 -14548,2018-02-27 04:00:00,23.1200008392334,4.859000205993652,31.76499938964844,6.460000038146973,-8.795999526977539,-2.888999938964844,15.590999603271484 -14549,2018-02-27 05:00:00,26.72200012207031,6.449999809265138,36.1609992980957,8.496999740600586,-10.031999588012695,-2.888999938964844,14.932000160217283 -14550,2018-02-27 06:00:00,25.29800033569336,6.2829999923706055,37.071998596191406,8.711999893188478,-11.258000373840332,-2.888999938964844,14.491999626159668 -14551,2018-02-27 07:00:00,24.208999633789062,0.0,35.25,6.191999912261963,-11.258000373840332,-2.888999938964844,14.053000450134276 -14552,2018-02-27 08:00:00,23.62299919128418,0.0,34.44499969482422,5.065999984741211,-10.0,-2.888999938964844,14.272500038146973 -14553,2018-02-27 09:00:00,28.81599998474121,6.2829999923706055,40.45000076293945,8.444000244140625,-11.237000465393066,-2.888999938964844,16.469499588012695 -14554,2018-02-27 10:00:00,25.04700088500977,0.0,37.0989990234375,6.245999813079834,-11.237000465393066,-2.888999938964844,19.98550033569336 -14555,2018-02-27 11:00:00,28.565000534057607,5.026000022888184,40.31600189208984,7.479000091552732,-11.237000465393066,-2.888999938964844,23.94050025939941 -14556,2018-02-27 12:00:00,28.229999542236328,5.611999988555908,39.37799835205078,7.854000091552732,-11.237000465393066,-2.888999938964844,27.67600059509277 -14557,2018-02-27 13:00:00,28.31399917602539,6.366000175476074,39.64599990844727,8.630999565124513,-11.237000465393066,-2.888999938964844,28.99399948120117 -14558,2018-02-27 14:00:00,29.98900032043457,6.701000213623048,39.37799835205078,8.336999893188478,-9.946999549865724,-2.888999938964844,29.65299987792969 -14559,2018-02-27 15:00:00,28.565000534057607,6.618000030517577,39.37799835205078,8.711999893188478,-11.17300033569336,-2.2920000553131104,27.67600059509277 -14560,2018-02-27 16:00:00,31.58099937438965,7.623000144958496,41.92399978637695,9.32800006866455,-9.925999641418455,-2.2920000553131104,25.917999267578125 -14561,2018-02-27 17:00:00,31.077999114990234,7.037000179290772,41.57600021362305,8.604999542236326,-10.960000038146973,-2.2920000553131104,25.03899955749512 -14562,2018-02-27 18:00:00,28.983999252319336,5.696000099182129,39.16299819946289,7.639999866485598,-9.744000434875488,-2.0360000133514404,23.72100067138672 -14563,2018-02-27 19:00:00,26.80599975585937,4.355999946594238,37.5009994506836,6.353000164031982,-11.088000297546388,-2.0360000133514404,20.864500045776367 -14564,2018-02-27 20:00:00,26.972999572753903,4.941999912261963,36.05400085449219,6.460000038146973,-8.560999870300293,-2.0360000133514404,19.326000213623047 -14565,2018-02-27 21:00:00,33.50699996948242,6.198999881744385,42.29899978637695,7.50600004196167,-8.645999908447267,-2.0360000133514404,18.007999420166016 -14566,2018-02-27 22:00:00,27.895000457763672,5.361000061035156,37.31399917602539,7.0229997634887695,-8.550000190734862,-2.0360000133514404,16.68899917602539 -14567,2018-02-27 23:00:00,28.81599998474121,6.366000175476074,39.055999755859375,8.203000068664549,-11.088000297546388,-2.440999984741211,16.469499588012695 -14568,2018-02-28 00:00:00,25.548999786376957,5.52899980545044,36.777000427246094,7.452000141143799,-11.493000030517578,-2.4730000495910645,16.469499588012695 -14569,2018-02-28 01:00:00,26.05200004577637,6.031000137329103,37.233001708984375,8.015000343322754,-10.288000106811523,-1.99399995803833,16.25 -14570,2018-02-28 02:00:00,24.041000366210927,5.52899980545044,35.7859992980957,7.747000217437744,-10.843000411987305,-1.99399995803833,16.25 -14571,2018-02-28 03:00:00,25.04700088500977,5.52899980545044,34.847000122070305,7.290999889373777,-9.562999725341797,-1.9720000028610232,15.810500144958494 -14572,2018-02-28 04:00:00,24.292999267578125,5.193999767303467,35.141998291015625,7.290999889373777,-9.979000091552734,-1.9720000028610232,15.810500144958494 -14573,2018-02-28 05:00:00,24.54400062561035,4.941999912261963,35.19599914550781,6.915999889373777,-10.437000274658203,-1.940000057220459,15.810500144958494 -14574,2018-02-28 06:00:00,24.795000076293945,4.440000057220459,35.19599914550781,6.353000164031982,-10.479999542236328,-1.940000057220459,15.590999603271484 -14575,2018-02-28 07:00:00,25.80100059509277,0.0,35.625,5.789999961853027,-10.479999542236328,-1.940000057220459,15.15149974822998 -14576,2018-02-28 08:00:00,25.71699905395508,0.0,35.8390007019043,5.656000137329103,-10.447999954223633,-2.4200000762939453,14.931500434875488 -14577,2018-02-28 09:00:00,28.73200035095215,5.026000022888184,40.18199920654297,7.184000015258789,-11.706000328063965,-2.4200000762939453,14.931500434875488 -14578,2018-02-28 10:00:00,27.559999465942383,4.60699987411499,39.08300018310547,6.861999988555907,-10.491000175476074,-2.5910000801086426,14.931500434875488 -14579,2018-02-28 11:00:00,29.48600006103516,4.859000205993652,40.39599990844727,7.1040000915527335,-11.74899959564209,-2.5910000801086426,15.590999603271484 -14580,2018-02-28 12:00:00,24.62800025939941,4.105000019073486,34.6870002746582,6.2729997634887695,-10.51200008392334,-2.5910000801086426,16.68899917602539 -14581,2018-02-28 13:00:00,26.30299949645996,5.52899980545044,37.6619987487793,7.854000091552732,-11.727999687194824,-2.5910000801086426,16.909000396728516 -14582,2018-02-28 14:00:00,35.685001373291016,8.628000259399414,43.72000122070313,9.677000045776367,-8.060000419616701,-2.5910000801086426,17.788000106811523 -14583,2018-02-28 15:00:00,31.32900047302246,7.874000072479247,42.83599853515625,9.649999618530272,-10.55500030517578,-2.5910000801086426,18.227500915527344 -14584,2018-02-28 16:00:00,32.669998168945305,7.706999778747559,42.75500106811523,9.354999542236328,-9.446000099182127,-2.5910000801086426,19.326499938964844 -14585,2018-02-28 17:00:00,30.90999984741211,6.366000175476074,41.28099822998047,7.98799991607666,-9.020000457763672,-2.5910000801086426,19.54599952697754 -14586,2018-02-28 18:00:00,32.08300018310547,5.863999843597412,41.57600021362305,7.425000190734862,-9.253999710083008,-2.5910000801086426,19.326000213623047 -14587,2018-02-28 19:00:00,29.738000869750977,6.2829999923706055,38.65399932861328,7.479000091552732,-9.072999954223633,-2.8570001125335693,18.44700050354004 -14588,2018-02-28 20:00:00,31.66399955749512,6.701000213623048,39.99399948120117,7.854000091552732,-7.729000091552732,-2.8570001125335693,17.568000793457028 -14589,2018-02-28 21:00:00,33.088001251220696,7.119999885559082,42.00500106811523,8.121999740600586,-8.295000076293945,-2.900000095367432,16.68899917602539 -14590,2018-02-28 22:00:00,31.832000732421875,7.288000106811522,41.36100006103516,8.765000343322754,-8.432999610900879,-2.900000095367432,15.810999870300291 -14591,2018-02-28 23:00:00,31.077999114990234,7.372000217437744,39.64599990844727,8.470999717712402,-8.465000152587889,-2.900000095367432,15.590999603271484 -14592,2018-03-01 00:00:00,29.40299987792969,7.539000034332275,38.59999847412109,8.899999618530273,-8.496999740600586,-2.900000095367432,15.810999870300291 -14593,2018-03-01 01:00:00,26.972999572753903,6.618000030517577,35.7859992980957,7.88100004196167,-8.550000190734862,-2.900000095367432,16.25 -14594,2018-03-01 02:00:00,26.63800048828125,6.2829999923706055,36.29499816894531,7.98799991607666,-9.12600040435791,-2.900000095367432,16.25 -14595,2018-03-01 03:00:00,25.71699905395508,6.198999881744385,37.34000015258789,8.657999992370605,-11.097999572753906,-2.9210000038146973,16.25 -14596,2018-03-01 04:00:00,24.041000366210927,5.445000171661377,35.16899871826172,7.692999839782715,-9.819000244140623,-2.2179999351501465,16.25 -14597,2018-03-01 05:00:00,22.36599922180176,4.941999912261963,32.810001373291016,7.1570000648498535,-10.138999938964844,-2.2179999351501465,15.371000289916992 -14598,2018-03-01 06:00:00,25.968000411987305,6.031000137329103,36.8849983215332,8.041999816894531,-10.182000160217283,-2.2179999351501465,14.491999626159668 -14599,2018-03-01 07:00:00,27.22500038146973,5.52899980545044,37.448001861572266,7.50600004196167,-10.182000160217283,-2.2179999351501465,14.053000450134276 -14600,2018-03-01 08:00:00,23.28700065612793,4.440000057220459,35.75899887084961,6.9689998626708975,-11.449999809265137,-2.111000061035156,14.053000450134276 -14601,2018-03-01 09:00:00,21.94700050354004,4.440000057220459,33.90900039672852,6.995999813079834,-11.449999809265137,-2.5480000972747803,16.25 -14602,2018-03-01 10:00:00,21.780000686645508,0.0,32.569000244140625,5.334000110626222,-11.41800022125244,-2.5480000972747803,18.66699981689453 -14603,2018-03-01 11:00:00,19.85300064086914,0.0,29.941999435424805,4.502999782562256,-10.20300006866455,-2.5480000972747803,19.54599952697754 -14604,2018-03-01 12:00:00,19.51799964904785,0.0,31.54999923706055,4.502999782562256,-11.461000442504885,-2.5480000972747803,18.886499404907227 -14605,2018-03-01 13:00:00,22.86899948120117,0.0,34.17699813842773,5.683000087738037,-11.472000122070312,-2.632999897003174,18.886499404907227 -14606,2018-03-01 14:00:00,25.632999420166016,4.440000057220459,37.233001708984375,6.486999988555907,-11.354000091552734,-2.632999897003174,18.44750022888184 -14607,2018-03-01 15:00:00,24.71199989318848,0.0,36.05400085449219,6.058000087738037,-11.312000274658203,-2.632999897003174,17.788000106811523 -14608,2018-03-01 16:00:00,25.968000411987305,4.775000095367432,36.5629997253418,6.915999889373777,-10.086000442504885,-2.632999897003174,17.12849998474121 -14609,2018-03-01 17:00:00,33.84199905395508,7.119999885559082,43.74700164794922,8.604999542236326,-10.234999656677246,-2.632999897003174,16.68950080871582 -14610,2018-03-01 18:00:00,32.08300018310547,6.366000175476074,42.24599838256836,8.095000267028809,-9.041000366210938,-2.632999897003174,16.030500411987305 -14611,2018-03-01 19:00:00,29.82099914550781,5.193999767303467,39.35100173950195,6.540999889373777,-9.062000274658203,-2.632999897003174,15.590999603271484 -14612,2018-03-01 20:00:00,33.17200088500977,6.449999809265138,40.71799850463867,7.1570000648498535,-7.803999900817871,-2.632999897003174,15.15149974822998 -14613,2018-03-01 21:00:00,35.26599884033203,7.958000183105469,43.90800094604492,8.765000343322754,-7.739999771118164,-2.632999897003174,14.711999893188477 -14614,2018-03-01 22:00:00,35.43399810791016,8.628000259399414,42.43399810791016,9.11400032043457,-6.557000160217285,-2.632999897003174,14.272500038146973 -14615,2018-03-01 23:00:00,33.17200088500977,8.293000221252441,40.61100006103516,8.95300006866455,-7.985000133514402,-2.632999897003174,14.272500038146973 -14616,2018-03-02 00:00:00,30.072999954223643,7.203999996185303,38.70800018310547,8.203000068664549,-8.295000076293945,-2.632999897003174,13.393500328063965 -14617,2018-03-02 01:00:00,25.548999786376957,5.445000171661377,35.49100112915039,7.317999839782715,-9.49899959564209,-2.632999897003174,12.51449966430664 -14618,2018-03-02 02:00:00,28.81599998474121,7.037000179290772,37.52799987792969,8.470999717712402,-8.432999610900879,-2.632999897003174,10.536999702453612 -14619,2018-03-02 03:00:00,26.13599967956543,5.947999954223633,34.257999420166016,7.263999938964844,-7.484000205993652,-2.632999897003174,9.878000259399414 -14620,2018-03-02 04:00:00,20.857999801635746,4.105000019073486,30.42499923706055,6.004000186920166,-8.956000328063965,-2.632999897003174,9.878000259399414 -14621,2018-03-02 05:00:00,16.92099952697754,0.0,25.78700065612793,4.100999832153319,-8.805999755859375,-2.632999897003174,9.878000259399414 -14622,2018-03-02 06:00:00,17.759000778198242,0.0,27.020000457763672,4.422999858856201,-9.894000053405762,-2.632999897003174,10.097999572753906 -14623,2018-03-02 07:00:00,29.15099906921387,6.2829999923706055,39.055999755859375,7.960999965667725,-10.20300006866455,-2.632999897003174,10.097999572753906 -14624,2018-03-02 08:00:00,27.47599983215332,5.276999950408936,38.06399917602539,7.290999889373777,-10.395000457763672,-2.388000011444092,10.097999572753906 -14625,2018-03-02 09:00:00,30.32399940490723,6.7849998474121085,41.54899978637695,8.685000419616701,-10.395000457763672,-2.388000011444092,10.536999702453612 -14626,2018-03-02 10:00:00,29.40299987792969,4.188000202178955,39.91400146484375,6.058000087738037,-10.427000045776367,-2.388000011444092,11.854999542236328 -14627,2018-03-02 11:00:00,30.82699966430664,6.449999809265138,41.76300048828125,8.336999893188478,-10.427000045776367,-2.388000011444092,12.95400047302246 -14628,2018-03-02 12:00:00,22.70100021362305,0.0,33.667999267578125,5.199999809265137,-10.447999954223633,-2.388000011444092,13.833000183105469 -14629,2018-03-02 13:00:00,33.92599868774414,7.372000217437744,44.73899841308594,8.604999542236326,-10.52299976348877,-3.240999937057495,14.711999893188477 -14630,2018-03-02 14:00:00,33.25600051879883,7.288000106811522,43.72000122070313,8.73900032043457,-10.52299976348877,-3.240999937057495,15.371500015258787 -14631,2018-03-02 15:00:00,32.250999450683594,6.7849998474121085,42.91600036621094,8.470999717712402,-10.66100025177002,-3.240999937057495,16.469499588012695 -14632,2018-03-02 16:00:00,32.58599853515625,6.198999881744385,42.48699951171875,7.77400016784668,-9.425000190734863,-3.240999937057495,16.68950080871582 -14633,2018-03-02 17:00:00,27.559999465942383,0.0,37.6619987487793,5.576000213623047,-9.265000343322754,-3.240999937057495,16.469499588012695 -14634,2018-03-02 18:00:00,33.84199905395508,6.198999881744385,42.43399810791016,7.1570000648498535,-8.027999877929688,-2.003999948501587,16.25 -14635,2018-03-02 19:00:00,30.65900039672852,0.0,39.13600158691406,4.744999885559082,-8.11299991607666,-1.3650000095367432,16.25 -14636,2018-03-02 20:00:00,34.68000030517578,6.7849998474121085,43.34500122070313,7.317999839782715,-8.187999725341799,-1.6529999971389768,16.25 -14637,2018-03-02 21:00:00,34.17699813842773,6.701000213623048,43.63999938964844,7.827000141143799,-9.402999877929688,-1.6529999971389768,16.25 -14638,2018-03-02 22:00:00,34.93099975585937,8.208999633789062,44.52399826049805,9.32800006866455,-9.510000228881836,-2.878999948501587,15.810999870300291 -14639,2018-03-02 23:00:00,31.2450008392334,6.533999919891357,42.21900177001953,8.255999565124513,-10.128000259399414,-2.878999948501587,15.590999603271484 -14640,2018-03-03 00:00:00,30.57500076293945,7.037000179290772,39.99399948120117,8.310000419616701,-8.817000389099121,-2.878999948501587,15.15149974822998 -14641,2018-03-03 01:00:00,28.565000534057607,5.696000099182129,38.78799819946289,7.23799991607666,-11.140999794006348,-2.1960000991821294,13.173500061035154 -14642,2018-03-03 02:00:00,26.386999130249023,6.114999771118164,36.21500015258789,7.479000091552732,-9.894000053405762,-1.3860000371932983,12.51449966430664 -14643,2018-03-03 03:00:00,27.97900009155273,6.618000030517577,38.86800003051758,8.496999740600586,-9.722999572753906,-1.715999960899353,12.95400047302246 -14644,2018-03-03 04:00:00,30.072999954223643,7.119999885559082,38.38600158691406,7.98799991607666,-8.465000152587889,-1.715999960899353,13.61299991607666 -14645,2018-03-03 05:00:00,26.88999938964844,5.611999988555908,37.2869987487793,7.23799991607666,-10.267000198364258,-1.715999960899353,14.053000450134276 -14646,2018-03-03 06:00:00,29.066999435424805,6.198999881744385,38.89500045776367,7.479000091552732,-9.243000030517578,-2.782999992370605,14.491999626159668 -14647,2018-03-03 07:00:00,28.145999908447266,5.361000061035156,38.94900131225586,7.0229997634887695,-9.32900047302246,-2.782999992370605,14.711999893188477 -14648,2018-03-03 08:00:00,27.64299964904785,5.110000133514403,38.73400115966797,7.050000190734862,-10.916999816894531,-2.803999900817871,14.931500434875488 -14649,2018-03-03 09:00:00,27.97900009155273,5.78000020980835,38.76100158691406,7.585999965667725,-10.906999588012695,-2.803999900817871,15.15149974822998 -14650,2018-03-03 10:00:00,27.141000747680664,4.2719998359680185,38.680999755859375,6.2189998626708975,-10.980999946594238,-2.803999900817871,16.25 -14651,2018-03-03 11:00:00,31.413000106811523,6.701000213623048,42.64799880981445,8.470999717712402,-10.980999946594238,-2.0150001049041752,18.44750022888184 -14652,2018-03-03 12:00:00,29.15099906921387,5.611999988555908,41.57600021362305,7.827000141143799,-12.25,-2.377000093460083,22.1825008392334 -14653,2018-03-03 13:00:00,29.40299987792969,7.037000179290772,40.58399963378906,8.604999542236326,-10.970999717712402,-2.174999952316284,25.03899955749512 -14654,2018-03-03 14:00:00,29.066999435424805,6.449999809265138,38.73400115966797,8.041999816894531,-9.755000114440918,-2.174999952316284,26.35700035095215 -14655,2018-03-03 15:00:00,31.496999740600582,7.789999961853027,40.66400146484375,9.006999969482422,-9.904000282287598,-2.174999952316284,28.334999084472656 -14656,2018-03-03 16:00:00,30.82699966430664,7.454999923706055,41.46799850463867,8.979999542236328,-9.935999870300291,-2.174999952316284,28.334999084472656 -14657,2018-03-03 17:00:00,31.32900047302246,6.618000030517577,41.62900161743164,8.282999992370605,-10.138999938964844,-1.8760000467300413,27.23600006103516 -14658,2018-03-03 18:00:00,33.590999603271484,6.953000068664551,41.22700119018555,7.77400016784668,-7.65500020980835,-1.8760000467300413,25.917999267578125 -14659,2018-03-03 19:00:00,33.674999237060554,7.623000144958496,41.57600021362305,8.069000244140625,-7.665999889373777,-1.8760000467300413,24.59950065612793 -14660,2018-03-03 20:00:00,32.58599853515625,6.701000213623048,40.39599990844727,7.479000091552732,-7.6020002365112305,-2.483999967575073,23.94050025939941 -14661,2018-03-03 21:00:00,33.50699996948242,7.454999923706055,41.709999084472656,8.015000343322754,-7.803999900817871,-1.3109999895095823,23.2810001373291 -14662,2018-03-03 22:00:00,35.26599884033203,9.633000373840332,43.82699966430664,10.427000045776367,-7.942999839782715,-1.3109999895095823,22.621999740600582 -14663,2018-03-03 23:00:00,34.59600067138672,8.711999893188478,42.56800079345703,9.248000144958496,-7.547999858856201,-1.3109999895095823,22.1825008392334 -14664,2018-03-04 00:00:00,29.65399932861328,7.706999778747559,37.87699890136719,8.578000068664549,-8.401000022888184,-2.5369999408721924,21.96299934387207 -14665,2018-03-04 01:00:00,30.99399948120117,8.125,39.56499862670898,9.086999893188477,-8.27299976348877,-2.5369999408721924,21.52300071716309 -14666,2018-03-04 02:00:00,28.64900016784668,7.789999961853027,38.38600158691406,9.16800022125244,-9.104999542236328,-2.5369999408721924,21.30349922180176 -14667,2018-03-04 03:00:00,29.65399932861328,8.543999671936035,38.92200088500977,9.649999618530272,-8.359000205993652,-2.5369999408721924,20.864500045776367 -14668,2018-03-04 04:00:00,27.81100082397461,7.706999778747559,37.608001708984375,8.979999542236328,-9.585000038146973,-2.760999917984009,20.645000457763672 -14669,2018-03-04 05:00:00,27.05699920654297,6.618000030517577,37.71599960327149,8.604999542236326,-10.779000282287598,-2.760999917984009,20.645000457763672 -14670,2018-03-04 06:00:00,25.88400077819824,5.696000099182129,36.1879997253418,7.88100004196167,-10.628999710083008,-2.760999917984009,20.645000457763672 -14671,2018-03-04 07:00:00,31.74799919128418,7.539000034332275,40.93199920654297,8.711999893188478,-9.222000122070312,-2.760999917984009,20.424999237060547 -14672,2018-03-04 08:00:00,30.32399940490723,7.288000106811522,40.34299850463867,8.604999542236326,-10.628999710083008,-2.760999917984009,20.424999237060547 -14673,2018-03-04 09:00:00,27.47599983215332,6.114999771118164,38.01100158691406,7.934999942779541,-9.402999877929688,-2.760999917984009,21.523500442504886 -14674,2018-03-04 10:00:00,27.47599983215332,4.355999946594238,37.20600128173828,6.004000186920166,-9.392999649047852,-2.760999917984009,23.94050025939941 -14675,2018-03-04 11:00:00,30.1560001373291,6.86899995803833,39.77999877929688,8.310000419616701,-9.392999649047852,-2.760999917984009,27.89550018310547 -14676,2018-03-04 12:00:00,30.072999954223643,6.449999809265138,40.87900161743164,8.36299991607666,-10.651000022888184,-2.760999917984009,31.850500106811523 -14677,2018-03-04 13:00:00,30.1560001373291,7.454999923706055,40.34299850463867,8.873000144958496,-9.4350004196167,-2.760999917984009,34.92699813842773 -14678,2018-03-04 14:00:00,27.22500038146973,6.533999919891357,37.87699890136719,8.229000091552733,-9.446000099182127,-2.2920000553131104,36.68450164794922 -14679,2018-03-04 15:00:00,30.57500076293945,7.706999778747559,39.86000061035156,8.95300006866455,-9.350000381469728,-2.2920000553131104,34.707000732421875 -14680,2018-03-04 16:00:00,28.64900016784668,6.86899995803833,40.42300033569336,8.819000244140625,-11.822999954223633,-2.2920000553131104,33.16899871826172 -14681,2018-03-04 17:00:00,27.308000564575195,4.775000095367432,36.321998596191406,6.486999988555907,-9.32900047302246,-2.0899999141693115,31.631000518798828 -14682,2018-03-04 18:00:00,24.459999084472656,0.0,33.292999267578125,5.119999885559082,-9.32900047302246,-1.6740000247955322,29.87299919128418 -14683,2018-03-04 19:00:00,33.84199905395508,6.449999809265138,41.14699935913086,7.1570000648498535,-7.888999938964844,-1.7699999809265137,27.23600006103516 -14684,2018-03-04 20:00:00,30.492000579833984,4.859000205993652,40.77199935913086,6.191999912261963,-9.467000007629396,-1.6950000524520874,22.1825008392334 -14685,2018-03-04 21:00:00,30.82699966430664,5.696000099182129,40.50299835205078,6.809000015258789,-9.243000030517578,-1.6529999971389768,18.66699981689453 -14686,2018-03-04 22:00:00,32.333999633789055,7.454999923706055,42.19200134277344,8.496999740600586,-9.12600040435791,-1.6529999971389768,16.68899917602539 -14687,2018-03-04 23:00:00,26.13599967956543,5.696000099182129,36.26800155639648,7.317999839782715,-9.265000343322754,-1.6529999971389768,15.810999870300291 -14688,2018-03-05 00:00:00,19.601999282836918,0.0,29.351999282836918,5.173999786376953,-9.605999946594238,-1.6529999971389768,14.491999626159668 -14689,2018-03-05 01:00:00,18.763999938964844,0.0,29.13800048828125,5.683000087738037,-9.713000297546388,-1.6529999971389768,13.173999786376951 -14690,2018-03-05 02:00:00,20.69099998474121,4.355999946594238,29.808000564575195,5.763000011444093,-8.496999740600586,-1.6529999971389768,12.295000076293944 -14691,2018-03-05 03:00:00,22.36599922180176,5.276999950408936,31.013999938964844,6.6479997634887695,-8.508000373840332,-1.6529999971389768,12.074999809265137 -14692,2018-03-05 04:00:00,15.748000144958494,0.0,24.34000015258789,4.073999881744385,-9.052000045776367,-1.3329999446868896,11.854999542236328 -14693,2018-03-05 05:00:00,15.246000289916992,0.0,25.01000022888184,3.6719999313354488,-9.104999542236328,-2.569000005722046,11.635499954223633 -14694,2018-03-05 06:00:00,16.753999710083008,0.0,27.90500068664551,3.9670000076293945,-10.50100040435791,-2.0899999141693115,11.416000366210938 -14695,2018-03-05 07:00:00,15.916000366210938,0.0,25.17099952697754,2.2780001163482666,-9.104999542236328,-2.0899999141693115,10.756999969482422 -14696,2018-03-05 08:00:00,17.926000595092773,0.0,28.145999908447266,4.63700008392334,-10.586999893188477,-2.0899999141693115,10.536999702453612 -14697,2018-03-05 09:00:00,20.020999908447266,0.0,31.363000869750977,6.058000087738037,-12.196999549865724,-2.0899999141693115,10.536999702453612 -14698,2018-03-05 10:00:00,21.277000427246094,0.0,32.03300094604492,5.119999885559082,-9.70199966430664,-2.0899999141693115,11.196499824523926 -14699,2018-03-05 11:00:00,22.0310001373291,0.0,31.631000518798828,5.119999885559082,-9.70199966430664,-2.0899999141693115,12.51449966430664 -14700,2018-03-05 12:00:00,19.51799964904785,0.0,30.77300071716309,4.502999782562256,-10.916999816894531,-2.0899999141693115,14.711999893188477 -14701,2018-03-05 13:00:00,20.77400016784668,0.0,31.65800094604492,5.254000186920166,-10.821000099182127,-2.45199990272522,17.568500518798828 -14702,2018-03-05 14:00:00,22.114999771118164,6.449999809265138,32.514999389648445,8.630999565124513,-10.885000228881836,-2.45199990272522,21.523500442504886 -14703,2018-03-05 15:00:00,33.25600051879883,8.963000297546387,42.80899810791016,10.133000373840332,-9.626999855041504,-2.45199990272522,24.60000038146973 -14704,2018-03-05 16:00:00,30.072999954223643,7.706999778747559,41.25400161743164,9.48900032043457,-10.916999816894531,-2.45199990272522,24.15999984741211 -14705,2018-03-05 17:00:00,29.98900032043457,7.203999996185303,40.90599822998047,8.550999641418457,-10.885000228881836,-2.900000095367432,22.621999740600582 -14706,2018-03-05 18:00:00,31.16200065612793,6.2829999923706055,41.25400161743164,7.907999992370605,-10.83199977874756,-2.900000095367432,20.864500045776367 -14707,2018-03-05 19:00:00,31.32900047302246,6.7849998474121085,41.33399963378906,7.98799991607666,-9.616999626159668,-1.758999943733215,18.886999130249023 -14708,2018-03-05 20:00:00,34.93099975585937,8.628000259399414,44.71200180053711,9.677000045776367,-8.892000198364258,-1.758999943733215,17.788000106811523 -14709,2018-03-05 21:00:00,36.60699844360352,9.130999565124512,45.59700012207031,9.729999542236328,-9.062000274658203,-1.758999943733215,16.68899917602539 -14710,2018-03-05 22:00:00,33.34000015258789,9.04699993133545,43.26399993896485,10.45400047302246,-9.317999839782717,-1.758999943733215,15.810999870300291 -14711,2018-03-05 23:00:00,31.58099937438965,8.293000221252441,44.12200164794922,10.29300022125244,-11.93000030517578,-2.900000095367432,14.932000160217283 -14712,2018-03-06 00:00:00,30.32399940490723,8.041999816894531,42.05799865722656,10.052000045776367,-11.93000030517578,-2.900000095367432,14.491999626159668 -14713,2018-03-06 01:00:00,29.48600006103516,7.372000217437744,41.28099822998047,9.248000144958496,-10.628999710083008,-2.121999979019165,13.61299991607666 -14714,2018-03-06 02:00:00,24.62800025939941,5.696000099182129,37.367000579833984,8.390000343322754,-11.88700008392334,-3.336999893188477,12.95400047302246 -14715,2018-03-06 03:00:00,26.47100067138672,7.372000217437744,38.01100158691406,9.54300022125244,-10.651000022888184,-3.336999893188477,12.295000076293944 -14716,2018-03-06 04:00:00,24.125,5.863999843597412,36.08100128173828,8.282999992370605,-11.866000175476074,-3.336999893188477,11.854999542236328 -14717,2018-03-06 05:00:00,25.88400077819824,5.863999843597412,38.27899932861328,8.52400016784668,-12.996000289916992,-2.3559999465942383,11.416000366210938 -14718,2018-03-06 06:00:00,25.71699905395508,5.863999843597412,38.52000045776367,8.203000068664549,-11.621000289916992,-2.505000114440918,11.196499824523926 -14719,2018-03-06 07:00:00,30.82699966430664,7.288000106811522,42.32600021362305,9.086999893188477,-11.621000289916992,-2.505000114440918,10.756999969482422 -14720,2018-03-06 08:00:00,31.32900047302246,6.86899995803833,42.86199951171875,8.73900032043457,-11.567999839782717,-2.505000114440918,10.756999969482422 -14721,2018-03-06 09:00:00,32.333999633789055,8.293000221252441,44.28300094604492,9.838000297546388,-11.567999839782717,-2.505000114440918,11.416000366210938 -14722,2018-03-06 10:00:00,30.239999771118164,4.859000205993652,41.57600021362305,6.809000015258789,-11.54599952697754,-2.505000114440918,14.272500038146973 -14723,2018-03-06 11:00:00,30.65900039672852,5.193999767303467,42.03099822998047,6.995999813079834,-11.54599952697754,-2.186000108718872,17.128999710083008 -14724,2018-03-06 12:00:00,32.250999450683594,0.0,43.80099868774414,5.869999885559082,-11.54599952697754,-2.186000108718872,18.44750022888184 -14725,2018-03-06 13:00:00,32.75299835205078,5.445000171661377,44.685001373291016,6.942999839782715,-11.58899974822998,-1.8869999647140503,18.007999420166016 -14726,2018-03-06 14:00:00,33.005001068115234,5.78000020980835,45.19400024414063,7.452000141143799,-11.557000160217283,-3.1559998989105225,17.12849998474121 -14727,2018-03-06 15:00:00,33.590999603271484,6.618000030517577,45.62300109863281,8.041999816894531,-11.600000381469728,-2.003999948501587,16.909000396728516 -14728,2018-03-06 16:00:00,34.17699813842773,6.449999809265138,46.48099899291992,7.934999942779541,-11.600000381469728,-2.003999948501587,16.469499588012695 -14729,2018-03-06 17:00:00,36.60699844360352,5.947999954223633,46.5880012512207,6.675000190734862,-9.041000366210938,-2.003999948501587,16.25 -14730,2018-03-06 18:00:00,36.52299880981445,5.026000022888184,45.999000549316406,6.138999938964844,-10.35200023651123,-1.5779999494552612,16.030500411987305 -14731,2018-03-06 19:00:00,34.512001037597656,4.2719998359680185,43.74700164794922,5.388000011444092,-9.041000366210938,-1.5779999494552612,16.030500411987305 -14732,2018-03-06 20:00:00,35.76900100708008,4.775000095367432,45.03400039672852,5.8439998626708975,-9.029999732971191,-2.7929999828338623,13.833000183105469 -14733,2018-03-06 21:00:00,35.85300064086914,5.110000133514403,46.15999984741211,6.298999786376952,-10.255999565124512,-1.940000057220459,13.393500328063965 -14734,2018-03-06 22:00:00,32.417999267578125,6.449999809265138,41.87099838256836,7.290999889373777,-8.98799991607666,-1.940000057220459,12.51449966430664 -14735,2018-03-06 23:00:00,22.70100021362305,0.0,34.28499984741211,3.002000093460083,-10.479999542236328,-1.940000057220459,11.635499954223633 -14736,2018-03-07 00:00:00,33.92599868774414,6.366000175476074,42.97000122070313,7.184000015258789,-9.70199966430664,-1.5570000410079956,11.635499954223633 -14737,2018-03-07 01:00:00,30.90999984741211,5.611999988555908,40.77199935913086,6.995999813079834,-9.829999923706056,-2.7720000743865967,11.635499954223633 -14738,2018-03-07 02:00:00,28.39699935913086,4.859000205993652,39.86000061035156,6.9689998626708975,-11.557000160217283,-2.7720000743865967,11.854999542236328 -14739,2018-03-07 03:00:00,30.82699966430664,6.449999809265138,39.94100189208984,7.827000141143799,-9.083000183105469,-2.7720000743865967,11.196499824523926 -14740,2018-03-07 04:00:00,28.899999618530277,5.611999988555908,39.67300033569336,7.1570000648498535,-10.0,-1.7699999809265137,10.756999969482422 -14741,2018-03-07 05:00:00,28.062000274658203,5.193999767303467,36.992000579833984,6.6479997634887695,-8.63599967956543,-1.7910000085830688,10.09749984741211 -14742,2018-03-07 06:00:00,30.1560001373291,5.276999950408936,40.95899963378906,6.835000038146973,-10.21399974822998,-3.006999969482422,9.658499717712402 -14743,2018-03-07 07:00:00,30.40800094604492,4.355999946594238,39.67300033569336,5.763000011444093,-8.956000328063965,-3.006999969482422,9.43850040435791 -14744,2018-03-07 08:00:00,22.86899948120117,0.0,35.03499984741211,3.4040000438690186,-11.407999992370604,-3.220000028610228,9.43850040435791 -14745,2018-03-07 09:00:00,36.1879997253418,7.706999778747559,47.5270004272461,9.274999618530272,-11.204999923706056,-3.220000028610228,9.658499717712402 -14746,2018-03-07 10:00:00,33.25600051879883,4.690999984741211,44.65800094604492,6.433000087738037,-11.204999923706056,-2.2920000553131104,9.658499717712402 -14747,2018-03-07 11:00:00,39.37099838256836,7.288000106811522,49.96599960327149,8.604999542236326,-9.946999549865724,-2.2920000553131104,10.09749984741211 -14748,2018-03-07 12:00:00,37.69599914550781,5.78000020980835,49.7509994506836,7.425000190734862,-11.37600040435791,-2.2920000553131104,10.317500114440918 -14749,2018-03-07 13:00:00,39.62200164794922,6.86899995803833,50.39500045776367,8.229000091552733,-11.130000114440918,-2.2920000553131104,10.756999969482422 -14750,2018-03-07 14:00:00,37.10900115966797,6.114999771118164,47.125,7.425000190734862,-9.904000282287598,-2.2920000553131104,11.635499954223633 -14751,2018-03-07 15:00:00,39.62200164794922,7.789999961853027,50.42200088500977,9.11400032043457,-10.031999588012695,-2.0899999141693115,11.635499954223633 -14752,2018-03-07 16:00:00,40.87900161743164,7.958000183105469,51.14500045776367,9.086999893188477,-10.031999588012695,-2.0899999141693115,11.854999542236328 -14753,2018-03-07 17:00:00,37.52799987792969,5.361000061035156,47.95500183105469,6.460000038146973,-10.053999900817873,-2.0899999141693115,11.854999542236328 -14754,2018-03-07 18:00:00,40.04100036621094,6.618000030517577,49.64400100708008,7.34499979019165,-8.741999626159668,-1.8339999914169312,11.854999542236328 -14755,2018-03-07 19:00:00,35.014999389648445,4.105000019073486,45.38199996948242,5.254000186920166,-9.616999626159668,-2.740000009536743,11.854999542236328 -14756,2018-03-07 20:00:00,38.86800003051758,6.198999881744385,47.92900085449219,7.184000015258789,-9.659000396728516,-2.740000009536743,11.854999542236328 -14757,2018-03-07 21:00:00,38.36600112915039,6.366000175476074,47.74100112915039,7.1570000648498535,-9.45699977874756,-2.740000009536743,12.074999809265137 -14758,2018-03-07 22:00:00,39.20299911499024,9.130999565124512,48.6520004272461,9.890999794006348,-9.392999649047852,-2.740000009536743,12.295000076293944 -14759,2018-03-07 23:00:00,29.48600006103516,4.690999984741211,40.12799835205078,6.2729997634887695,-10.68299961090088,-2.740000009536743,12.295000076293944 -14760,2018-03-08 00:00:00,32.417999267578125,5.611999988555908,42.99599838256836,7.130000114440918,-10.767999649047852,-2.740000009536743,12.734000205993652 -14761,2018-03-08 01:00:00,31.32900047302246,5.863999843597412,40.79800033569336,7.0229997634887695,-10.810999870300291,-2.740000009536743,12.51449966430664 -14762,2018-03-08 02:00:00,26.972999572753903,5.110000133514403,37.2869987487793,6.835000038146973,-9.28600025177002,-1.524999976158142,12.51449966430664 -14763,2018-03-08 03:00:00,29.56999969482422,6.449999809265138,38.65399932861328,7.692999839782715,-9.477999687194824,-2.750999927520752,12.074999809265137 -14764,2018-03-08 04:00:00,25.548999786376957,0.0,36.9119987487793,5.629000186920166,-10.427000045776367,-2.750999927520752,12.074999809265137 -14765,2018-03-08 05:00:00,27.05699920654297,0.0,35.893001556396484,4.959000110626222,-9.178999900817873,-1.3650000095367432,11.635499954223633 -14766,2018-03-08 06:00:00,26.80599975585937,0.0,38.01100158691406,5.119999885559082,-10.51200008392334,-2.5910000801086426,11.635499954223633 -14767,2018-03-08 07:00:00,31.74799919128418,4.188000202178955,41.87099838256836,5.710000038146973,-10.736000061035156,-2.5910000801086426,11.635499954223633 -14768,2018-03-08 08:00:00,34.847000122070305,6.031000137329103,45.14099884033203,7.3979997634887695,-9.402999877929688,-1.684000015258789,11.635499954223633 -14769,2018-03-08 09:00:00,34.68000030517578,6.449999809265138,47.178001403808594,8.282999992370605,-11.845000267028809,-2.900000095367432,12.51449966430664 -14770,2018-03-08 10:00:00,32.417999267578125,0.0,44.47100067138672,5.683000087738037,-11.854999542236328,-2.900000095367432,13.613499641418455 -14771,2018-03-08 11:00:00,36.94200134277344,5.696000099182129,47.92900085449219,7.210999965667725,-10.628999710083008,-2.900000095367432,15.15149974822998 -14772,2018-03-08 12:00:00,33.005001068115234,0.0,44.01499938964844,5.763000011444093,-10.725000381469728,-2.900000095367432,17.568500518798828 -14773,2018-03-08 13:00:00,33.757999420166016,5.947999954223633,46.5880012512207,7.960999965667725,-12.026000022888184,-2.505000114440918,19.10650062561035 -14774,2018-03-08 14:00:00,34.847000122070305,7.037000179290772,46.85599899291992,8.685000419616701,-10.810999870300291,-2.505000114440918,18.886999130249023 -14775,2018-03-08 15:00:00,33.674999237060554,6.2829999923706055,44.49800109863281,7.747000217437744,-10.810999870300291,-3.240999937057495,18.227500915527344 -14776,2018-03-08 16:00:00,31.413000106811523,5.026000022888184,41.040000915527344,6.326000213623048,-9.595000267028809,-1.9079999923706048,17.788000106811523 -14777,2018-03-08 17:00:00,35.43399810791016,5.611999988555908,46.69599914550781,7.372000217437744,-10.991999626159668,-1.9079999923706048,17.568500518798828 -14778,2018-03-08 18:00:00,35.518001556396484,5.696000099182129,46.83000183105469,7.1570000648498535,-10.980999946594238,-3.16599988937378,17.12849998474121 -14779,2018-03-08 19:00:00,37.277000427246094,5.52899980545044,46.31999969482422,6.380000114440918,-9.904000282287598,-1.919000029563904,16.68950080871582 -14780,2018-03-08 20:00:00,39.70600128173828,7.203999996185303,48.571998596191406,7.800000190734862,-8.699999809265138,-1.919000029563904,16.469499588012695 -14781,2018-03-08 21:00:00,39.2869987487793,7.203999996185303,48.7599983215332,7.77400016784668,-9.786999702453612,-1.919000029563904,15.810999870300291 -14782,2018-03-08 22:00:00,35.93600082397461,6.2829999923706055,45.94499969482422,7.077000141143799,-9.786999702453612,-1.919000029563904,15.15149974822998 -14783,2018-03-08 23:00:00,33.25600051879883,5.361000061035156,42.51399993896485,6.353000164031982,-9.722999572753906,-1.919000029563904,14.711999893188477 -14784,2018-03-09 00:00:00,28.64900016784668,4.775000095367432,39.83300018310547,6.486999988555907,-9.670000076293944,-1.5889999866485596,13.833000183105469 -14785,2018-03-09 01:00:00,27.97900009155273,4.5229997634887695,38.41299819946289,6.085000038146973,-10.138999938964844,-2.868000030517578,12.734000205993652 -14786,2018-03-09 02:00:00,28.31399917602539,5.445000171661377,38.76100158691406,6.809000015258789,-10.095999717712402,-2.868000030517578,11.635499954223633 -14787,2018-03-09 03:00:00,27.308000564575195,5.110000133514403,38.33200073242188,6.861999988555907,-10.182000160217283,-2.868000030517578,11.196499824523926 -14788,2018-03-09 04:00:00,26.386999130249023,4.60699987411499,37.448001861572266,6.433000087738037,-10.21399974822998,-2.868000030517578,10.317500114440918 -14789,2018-03-09 05:00:00,29.066999435424805,5.193999767303467,39.00199890136719,6.701000213623048,-10.21399974822998,-2.868000030517578,9.43850040435791 -14790,2018-03-09 06:00:00,29.066999435424805,4.690999984741211,39.72600173950195,6.4070000648498535,-10.21399974822998,-2.0580000877380367,8.99899959564209 -14791,2018-03-09 07:00:00,31.496999740600582,4.859000205993652,41.790000915527344,6.4070000648498535,-10.086000442504885,-2.0580000877380367,8.559499740600586 -14792,2018-03-09 08:00:00,31.32900047302246,5.193999767303467,41.22700119018555,6.6479997634887695,-9.12600040435791,-1.5889999866485596,8.99899959564209 -14793,2018-03-09 09:00:00,34.763999938964844,6.7849998474121085,45.91799926757813,8.041999816894531,-10.35200023651123,-1.6950000524520874,10.976499557495115 -14794,2018-03-09 10:00:00,32.333999633789055,4.60699987411499,44.47100067138672,6.2189998626708975,-11.37600040435791,-1.6950000524520874,14.272500038146973 -14795,2018-03-09 11:00:00,33.590999603271484,5.110000133514403,44.79199981689453,6.835000038146973,-11.364999771118164,-1.6950000524520874,17.568500518798828 -14796,2018-03-09 12:00:00,35.60100173950195,6.618000030517577,46.26699829101562,7.88100004196167,-10.20300006866455,-1.6950000524520874,19.98500061035156 -14797,2018-03-09 13:00:00,35.685001373291016,7.874000072479247,46.374000549316406,8.925999641418457,-10.255999565124512,-1.6950000524520874,21.96299934387207 -14798,2018-03-09 14:00:00,34.512001037597656,7.539000034332275,44.52399826049805,8.630999565124513,-9.041000366210938,-1.8869999647140503,23.72100067138672 -14799,2018-03-09 15:00:00,32.75299835205078,7.539000034332275,43.07699966430664,8.765000343322754,-10.532999992370604,-1.7799999713897705,25.25900077819824 -14800,2018-03-09 16:00:00,26.972999572753903,4.775000095367432,38.62699890136719,6.566999912261963,-10.71500015258789,-1.7799999713897705,24.160499572753903 -14801,2018-03-09 17:00:00,33.50699996948242,5.611999988555908,43.58599853515625,6.6479997634887695,-9.477999687194824,-1.7799999713897705,22.84199905395508 -14802,2018-03-09 18:00:00,34.17699813842773,5.026000022888184,44.20299911499024,6.111999988555907,-9.553000450134276,-1.7799999713897705,21.083999633789062 -14803,2018-03-09 19:00:00,36.27199935913086,5.110000133514403,44.95299911499024,5.896999835968018,-8.230999946594237,-1.5349999666213991,18.66699981689453 -14804,2018-03-09 20:00:00,38.28200149536133,6.86899995803833,47.79499816894531,7.3979997634887695,-9.520999908447266,-1.5349999666213991,17.128999710083008 -14805,2018-03-09 21:00:00,38.198001861572266,6.953000068664551,47.98199844360352,7.585999965667725,-9.690999984741213,-1.5349999666213991,15.590999603271484 -14806,2018-03-09 22:00:00,35.85300064086914,5.863999843597412,46.50799942016602,7.0229997634887695,-9.350000381469728,-1.3650000095367432,14.491999626159668 -14807,2018-03-09 23:00:00,37.10900115966797,7.372000217437744,47.3120002746582,8.069000244140625,-9.33899974822998,-1.3650000095367432,14.053000450134276 -14808,2018-03-10 00:00:00,34.59600067138672,6.86899995803833,43.98799896240234,7.800000190734862,-9.4350004196167,-1.6100000143051147,13.61299991607666 -14809,2018-03-10 01:00:00,32.333999633789055,5.863999843597412,42.27299880981445,7.1040000915527335,-9.446000099182127,-1.6419999599456787,13.173999786376951 -14810,2018-03-10 02:00:00,32.669998168945305,6.449999809265138,41.36100006103516,7.077000141143799,-8.262999534606934,-1.6419999599456787,12.95400047302246 -14811,2018-03-10 03:00:00,29.56999969482422,5.361000061035156,38.46599960327149,6.353000164031982,-8.421999931335451,-1.6419999599456787,12.51449966430664 -14812,2018-03-10 04:00:00,28.983999252319336,5.110000133514403,39.32400131225586,6.6479997634887695,-9.680999755859377,-1.6419999599456787,12.074999809265137 -14813,2018-03-10 05:00:00,26.63800048828125,4.941999912261963,37.68899917602539,6.513999938964844,-10.916999816894531,-2.868000030517578,11.416000366210938 -14814,2018-03-10 06:00:00,31.413000106811523,5.52899980545044,40.28900146484375,6.540999889373777,-9.670000076293944,-2.868000030517578,10.756999969482422 -14815,2018-03-10 07:00:00,28.64900016784668,0.0,40.50299835205078,5.656000137329103,-11.03499984741211,-2.868000030517578,10.317500114440918 -14816,2018-03-10 08:00:00,29.066999435424805,4.60699987411499,39.29700088500977,5.923999786376952,-11.109000205993652,-2.868000030517578,10.97700023651123 -14817,2018-03-10 09:00:00,31.74799919128418,6.2829999923706055,44.900001525878906,7.88100004196167,-12.345999717712402,-1.662999987602234,13.173999786376951 -14818,2018-03-10 10:00:00,29.738000869750977,0.0,40.69100189208984,4.797999858856201,-11.06700038909912,-2.900000095367432,17.12849998474121 -14819,2018-03-10 11:00:00,34.0099983215332,5.611999988555908,45.03400039672852,6.9689998626708975,-11.045000076293944,-2.900000095367432,21.083999633789062 -14820,2018-03-10 12:00:00,31.58099937438965,4.60699987411499,42.97000122070313,6.7820000648498535,-11.045000076293944,-2.900000095367432,23.94050025939941 -14821,2018-03-10 13:00:00,30.82699966430664,5.026000022888184,42.83599853515625,7.210999965667725,-11.02400016784668,-2.900000095367432,25.697999954223643 -14822,2018-03-10 14:00:00,32.16699981689453,6.2829999923706055,43.90800094604492,7.88100004196167,-11.02400016784668,-2.1960000991821294,28.55500030517578 -14823,2018-03-10 15:00:00,32.16699981689453,6.7849998474121085,43.29100036621094,8.604999542236326,-11.02400016784668,-1.812000036239624,30.53199958801269 -14824,2018-03-10 16:00:00,32.83700180053711,5.947999954223633,43.55899810791016,7.639999866485598,-11.02400016784668,-1.950999975204468,29.653499603271484 -14825,2018-03-10 17:00:00,34.0099983215332,6.114999771118164,44.36399841308594,7.3979997634887695,-9.958000183105469,-1.950999975204468,28.114999771118164 -14826,2018-03-10 18:00:00,34.261001586914055,5.611999988555908,44.36399841308594,7.0229997634887695,-10.427000045776367,-1.950999975204468,25.69849967956543 -14827,2018-03-10 19:00:00,36.02000045776367,5.696000099182129,44.12200164794922,6.245999813079834,-7.932000160217285,-1.950999975204468,23.72100067138672 -14828,2018-03-10 20:00:00,37.946998596191406,6.198999881744385,44.57799911499024,6.540999889373777,-6.589000225067139,-1.3539999723434448,21.74300003051757 -14829,2018-03-10 21:00:00,35.26599884033203,5.361000061035156,42.91600036621094,6.004000186920166,-7.729000091552732,-1.5140000581741333,19.98550033569336 -14830,2018-03-10 22:00:00,29.48600006103516,0.0,40.55699920654297,5.388000011444092,-10.342000007629396,-1.5140000581741333,18.886999130249023 -14831,2018-03-10 23:00:00,33.50699996948242,5.78000020980835,42.165000915527344,6.566999912261963,-9.12600040435791,-1.5140000581741333,17.568000793457028 -14832,2018-03-11 00:00:00,28.565000534057607,4.440000057220459,38.94900131225586,5.710000038146973,-10.821000099182127,-2.803999900817871,16.909000396728516 -14833,2018-03-11 01:00:00,28.899999618530277,4.60699987411499,38.54700088500977,6.164999961853027,-9.734000205993652,-2.803999900817871,16.68899917602539 -14834,2018-03-11 02:00:00,25.214000701904297,0.0,34.79399871826172,5.199999809265137,-9.70199966430664,-2.803999900817871,16.68899917602539 -14835,2018-03-11 03:00:00,21.36100006103516,0.0,30.10300064086914,3.2699999809265137,-8.454000473022461,-1.5460000038146973,16.030500411987305 -14836,2018-03-11 04:00:00,15.664999961853027,0.0,25.0629997253418,1.6080000400543213,-9.520999908447266,-1.5989999771118164,14.932000160217283 -14837,2018-03-11 05:00:00,25.80100059509277,0.0,35.57099914550781,5.013000011444092,-9.48900032043457,-2.815000057220459,14.272500038146973 -14838,2018-03-11 06:00:00,28.145999908447266,0.0,38.52000045776367,5.656000137329103,-10.255999565124512,-2.815000057220459,13.61299991607666 -14839,2018-03-11 07:00:00,27.559999465942383,0.0,38.01100158691406,4.932000160217285,-10.21399974822998,-2.5160000324249268,13.173999786376951 -14840,2018-03-11 08:00:00,24.125,0.0,35.141998291015625,3.4040000438690186,-9.894000053405762,-2.5160000324249268,14.053000450134276 -14841,2018-03-11 09:00:00,27.559999465942383,0.0,40.07500076293945,5.119999885559082,-12.45199966430664,-2.5160000324249268,16.68899917602539 -14842,2018-03-11 10:00:00,26.30299949645996,0.0,37.93000030517578,2.9489998817443848,-11.161999702453612,-2.5160000324249268,20.424999237060547 -14843,2018-03-11 11:00:00,27.895000457763672,0.0,40.66400146484375,5.308000087738037,-12.345999717712402,-2.5160000324249268,24.819499969482425 -14844,2018-03-11 12:00:00,27.22500038146973,0.0,38.86800003051758,4.2890000343322745,-11.07699966430664,-2.5160000324249268,28.99399948120117 -14845,2018-03-11 13:00:00,28.899999618530277,4.440000057220459,41.62900161743164,6.460000038146973,-12.335000038146973,-2.5160000324249268,30.97200012207031 -14846,2018-03-11 14:00:00,30.57500076293945,5.611999988555908,40.47700119018555,6.835000038146973,-9.84000015258789,-2.5160000324249268,32.949501037597656 -14847,2018-03-11 15:00:00,30.1560001373291,5.276999950408936,40.55699920654297,6.809000015258789,-9.883000373840332,-2.5160000324249268,34.04800033569336 -14848,2018-03-11 16:00:00,30.90999984741211,5.696000099182129,41.38800048828125,6.809000015258789,-9.883000373840332,-1.8550000190734863,32.94900131225586 -14849,2018-03-11 17:00:00,32.83700180053711,5.78000020980835,42.32600021362305,6.620999813079834,-9.84000015258789,-1.8550000190734863,31.631000518798828 -14850,2018-03-11 18:00:00,33.757999420166016,5.276999950408936,43.34500122070313,6.326000213623048,-9.79800033569336,-1.8550000190734863,30.09250068664551 -14851,2018-03-11 19:00:00,32.75299835205078,4.105000019073486,42.51399993896485,5.173999786376953,-9.786999702453612,-1.5570000410079956,27.23600006103516 -14852,2018-03-11 20:00:00,33.088001251220696,4.859000205993652,42.99599838256836,5.441999912261963,-9.79800033569336,-1.4709999561309814,25.25900077819824 -14853,2018-03-11 21:00:00,35.43399810791016,6.198999881744385,44.60499954223633,6.701000213623048,-9.114999771118164,-1.246999979019165,23.72100067138672 -14854,2018-03-11 22:00:00,34.345001220703125,6.618000030517577,43.77399826049805,7.23799991607666,-8.060000419616701,-1.5570000410079956,22.84199905395508 -14855,2018-03-11 23:00:00,30.743000030517567,5.276999950408936,38.65399932861328,6.058000087738037,-8.177000045776367,-1.715999960899353,22.84199905395508 -14856,2018-03-12 00:00:00,27.141000747680664,4.355999946594238,37.4739990234375,5.736000061035156,-10.651000022888184,-1.715999960899353,22.402000427246094 -14857,2018-03-12 01:00:00,25.88400077819824,0.0,36.42900085449219,5.254000186920166,-10.342000007629396,-1.7059999704360962,21.96299934387207 -14858,2018-03-12 02:00:00,23.70599937438965,0.0,33.667999267578125,4.53000020980835,-10.3100004196167,-1.2899999618530271,20.645000457763672 -14859,2018-03-12 03:00:00,21.61199951171875,0.0,31.013999938964844,3.5380001068115234,-9.093999862670898,-1.2899999618530271,19.326000213623047 -14860,2018-03-12 04:00:00,22.198999404907227,0.0,32.00600051879883,3.7260000705718994,-10.479999542236328,-2.5269999504089355,18.227500915527344 -14861,2018-03-12 05:00:00,25.1299991607666,0.0,35.946998596191406,4.477000236511231,-10.543999671936035,-2.5269999504089355,17.348499298095707 -14862,2018-03-12 06:00:00,27.308000564575195,0.0,38.17100143432617,4.7179999351501465,-10.543999671936035,-2.5269999504089355,17.128999710083008 -14863,2018-03-12 07:00:00,29.15099906921387,0.0,39.91400146484375,4.7709999084472665,-10.55500030517578,-2.5269999504089355,17.128999710083008 -14864,2018-03-12 08:00:00,26.972999572753903,0.0,38.17100143432617,5.334000110626222,-10.607999801635742,-2.5269999504089355,18.007999420166016 -14865,2018-03-12 09:00:00,22.95199966430664,0.0,34.87400054931641,4.047999858856201,-11.918999671936035,-2.5269999504089355,20.20499992370605 -14866,2018-03-12 10:00:00,13.904999732971191,0.0,24.875999450683597,1.3940000534057615,-10.640000343322754,-2.5269999504089355,24.3799991607666 -14867,2018-03-12 11:00:00,13.234999656677244,0.0,23.61599922180176,1.5820000171661377,-10.640000343322754,-1.99399995803833,28.334999084472656 -14868,2018-03-12 12:00:00,12.229999542236328,0.0,23.77700042724609,1.5820000171661377,-11.822999954223633,-2.0360000133514404,31.410999298095703 -14869,2018-03-12 13:00:00,13.319000244140623,0.0,25.117000579833984,2.627000093460083,-11.822999954223633,-1.7480000257492063,33.60800170898437 -14870,2018-03-12 14:00:00,16.753999710083008,0.0,24.5,2.6540000438690186,-7.985000133514402,-1.5889999866485596,35.80550003051758 -14871,2018-03-12 15:00:00,13.402999877929688,0.0,25.947999954223643,2.438999891281128,-11.791000366210938,-1.4390000104904177,38.00299835205078 -14872,2018-03-12 16:00:00,21.277000427246094,0.0,31.95199966430664,3.2969999313354488,-10.651000022888184,-2.664999961853028,36.68450164794922 -14873,2018-03-12 17:00:00,31.916000366210927,6.031000137329103,41.84400177001953,7.372000217437744,-10.5649995803833,-1.5570000410079956,35.146499633789055 -14874,2018-03-12 18:00:00,32.250999450683594,5.445000171661377,42.19200134277344,6.995999813079834,-9.222000122070312,-1.3650000095367432,33.60850143432617 -14875,2018-03-12 19:00:00,27.726999282836918,0.0,38.97600173950195,5.494999885559082,-10.468999862670898,-1.6419999599456787,30.75200080871582 -14876,2018-03-12 20:00:00,31.2450008392334,5.110000133514403,41.28099822998047,6.298999786376952,-10.383999824523926,-1.6419999599456787,28.114999771118164 -14877,2018-03-12 21:00:00,32.250999450683594,5.863999843597412,43.66699981689453,7.077000141143799,-11.758999824523926,-2.868000030517578,25.917999267578125 -14878,2018-03-12 22:00:00,32.16699981689453,7.623000144958496,44.09500122070313,9.0600004196167,-11.621000289916992,-2.868000030517578,24.60000038146973 -14879,2018-03-12 23:00:00,30.65900039672852,6.449999809265138,42.27299880981445,8.015000343322754,-10.406000137329102,-1.621000051498413,23.500999450683597 -14880,2018-03-13 00:00:00,26.55400085449219,4.775000095367432,37.071998596191406,6.326000213623048,-9.935999870300291,-1.503000020980835,22.84199905395508 -14881,2018-03-13 01:00:00,27.81100082397461,6.449999809265138,38.92200088500977,7.827000141143799,-11.300999641418455,-1.503000020980835,21.96299934387207 -14882,2018-03-13 02:00:00,27.22500038146973,7.037000179290772,37.87699890136719,8.282999992370605,-9.28600025177002,-1.3009999990463257,21.083999633789062 -14883,2018-03-13 03:00:00,23.37100028991699,5.193999767303467,34.472000122070305,6.675000190734862,-10.543999671936035,-2.5269999504089355,20.645000457763672 -14884,2018-03-13 04:00:00,28.229999542236328,6.031000137329103,39.37799835205078,7.317999839782715,-10.447999954223633,-2.5269999504089355,19.98550033569336 -14885,2018-03-13 05:00:00,31.077999114990234,7.288000106811522,39.75299835205078,8.069000244140625,-9.1899995803833,-1.5570000410079956,19.766000747680664 -14886,2018-03-13 06:00:00,29.40299987792969,6.618000030517577,39.32400131225586,7.854000091552732,-9.29699993133545,-1.524999976158142,19.54599952697754 -14887,2018-03-13 07:00:00,30.1560001373291,5.276999950408936,41.14699935913086,6.433000087738037,-10.427000045776367,-1.2369999885559082,19.10650062561035 -14888,2018-03-13 08:00:00,30.82699966430664,6.366000175476074,40.71799850463867,7.372000217437744,-10.468999862670898,-1.2150000333786009,19.766000747680664 -14889,2018-03-13 09:00:00,34.261001586914055,8.376999855041504,44.65800094604492,9.381999969482422,-10.51200008392334,-1.5670000314712524,22.402000427246094 -14890,2018-03-13 10:00:00,28.481000900268555,4.355999946594238,39.32400131225586,6.111999988555907,-10.491000175476074,-1.5670000314712524,26.357500076293945 -14891,2018-03-13 11:00:00,28.81599998474121,0.0,38.97600173950195,5.281000137329102,-10.479999542236328,-3.3050000667572017,30.312000274658203 -14892,2018-03-13 12:00:00,28.145999908447266,4.440000057220459,40.28900146484375,6.942999839782715,-11.696000099182127,-3.3050000667572017,33.388500213623054 -14893,2018-03-13 13:00:00,29.15099906921387,5.863999843597412,41.46799850463867,7.98799991607666,-11.696000099182127,-2.2709999084472656,35.58599853515625 -14894,2018-03-13 14:00:00,30.82699966430664,6.533999919891357,41.89699935913086,8.36299991607666,-11.696000099182127,-2.2709999084472656,37.78350067138672 -14895,2018-03-13 15:00:00,29.98900032043457,6.618000030517577,41.62900161743164,8.282999992370605,-11.609999656677244,-1.99399995803833,39.32149887084961 -14896,2018-03-13 16:00:00,31.58099937438965,7.119999885559082,42.83599853515625,8.52400016784668,-10.395000457763672,-1.621000051498413,38.22299957275391 -14897,2018-03-13 17:00:00,28.64900016784668,5.445000171661377,40.04800033569336,6.888999938964844,-10.479999542236328,-1.7799999713897705,36.46500015258789 -14898,2018-03-13 18:00:00,33.84199905395508,6.701000213623048,43.50600051879883,7.532000064849853,-9.232999801635742,-1.7799999713897705,34.926498413085945 -14899,2018-03-13 19:00:00,29.98900032043457,0.0,39.48500061035156,4.90500020980835,-9.361000061035156,-1.7799999713897705,32.5099983215332 -14900,2018-03-13 20:00:00,32.16699981689453,6.533999919891357,43.13000106811523,7.71999979019165,-10.576000213623049,-1.7799999713897705,30.312000274658203 -14901,2018-03-13 21:00:00,33.005001068115234,6.618000030517577,43.72000122070313,7.907999992370605,-10.821000099182127,-1.7799999713897705,28.77449989318848 -14902,2018-03-13 22:00:00,31.832000732421875,7.288000106811522,41.81700134277344,8.36299991607666,-10.182000160217283,-1.7799999713897705,27.23600006103516 -14903,2018-03-13 23:00:00,28.73200035095215,5.611999988555908,39.02899932861328,6.7820000648498535,-10.342000007629396,-1.4179999828338623,26.35700035095215 -14904,2018-03-14 00:00:00,27.392000198364247,5.445000171661377,37.18000030517578,6.486999988555907,-10.342000007629396,-1.4179999828338623,25.47900009155273 -14905,2018-03-14 01:00:00,28.73200035095215,6.198999881744385,38.06399917602539,7.317999839782715,-9.062000274658203,-1.4179999828338623,24.819499969482425 -14906,2018-03-14 02:00:00,27.81100082397461,5.78000020980835,37.742000579833984,7.0229997634887695,-10.298999786376951,-2.5269999504089355,24.15999984741211 -14907,2018-03-14 03:00:00,27.22500038146973,5.947999954223633,36.83100128173828,7.317999839782715,-9.020000457763672,-2.5269999504089355,23.72100067138672 -14908,2018-03-14 04:00:00,26.2189998626709,5.696000099182129,36.321998596191406,6.701000213623048,-10.267000198364258,-2.5269999504089355,23.72100067138672 -14909,2018-03-14 05:00:00,27.726999282836918,6.366000175476074,36.858001708984375,7.23799991607666,-10.095999717712402,-2.5269999504089355,23.500999450683597 -14910,2018-03-14 06:00:00,27.81100082397461,5.947999954223633,36.027000427246094,6.728000164031982,-7.282000064849853,-2.5269999504089355,23.500999450683597 -14911,2018-03-14 07:00:00,29.82099914550781,5.361000061035156,39.53799819946289,6.460000038146973,-9.989999771118164,-1.4179999828338623,23.500999450683597 -14912,2018-03-14 08:00:00,28.73200035095215,5.611999988555908,37.39400100708008,6.835000038146973,-8.869999885559082,-1.2580000162124634,23.72100067138672 -14913,2018-03-14 09:00:00,31.077999114990234,7.037000179290772,41.415000915527344,8.444000244140625,-10.086000442504885,-1.6529999971389768,23.72100067138672 -14914,2018-03-14 10:00:00,24.54400062561035,0.0,37.58200073242188,5.602000236511231,-12.515999794006348,-2.900000095367432,24.819499969482425 -14915,2018-03-14 11:00:00,26.88999938964844,0.0,38.97600173950195,5.065999984741211,-11.300999641418455,-2.900000095367432,25.69849967956543 -14916,2018-03-14 12:00:00,30.82699966430664,5.445000171661377,42.51399993896485,7.3979997634887695,-11.300999641418455,-1.950999975204468,26.357500076293945 -14917,2018-03-14 13:00:00,27.141000747680664,5.78000020980835,39.59199905395508,7.665999889373777,-11.300999641418455,-1.950999975204468,27.45599937438965 -14918,2018-03-14 14:00:00,19.601999282836918,0.0,33.10499954223633,5.441999912261963,-12.527000427246096,-1.950999975204468,29.43350028991699 -14919,2018-03-14 15:00:00,31.077999114990234,7.372000217437744,42.165000915527344,8.765000343322754,-11.300999641418455,-1.950999975204468,28.99449920654297 -14920,2018-03-14 16:00:00,30.1560001373291,7.119999885559082,42.54100036621094,8.791999816894531,-12.515999794006348,-1.950999975204468,28.11549949645996 -14921,2018-03-14 17:00:00,31.58099937438965,6.449999809265138,42.80899810791016,8.121999740600586,-11.289999961853027,-1.962000012397766,27.45599937438965 -14922,2018-03-14 18:00:00,33.17200088500977,6.449999809265138,43.34500122070313,7.827000141143799,-9.935999870300291,-1.962000012397766,27.236499786376957 -14923,2018-03-14 19:00:00,30.1560001373291,4.60699987411499,41.790000915527344,6.486999988555907,-11.07699966430664,-1.962000012397766,27.01650047302246 -14924,2018-03-14 20:00:00,32.417999267578125,6.114999771118164,43.77399826049805,7.665999889373777,-12.324999809265137,-1.962000012397766,26.57699966430664 -14925,2018-03-14 21:00:00,33.92599868774414,7.119999885559082,44.310001373291016,8.310000419616701,-9.776000022888184,-1.7380000352859497,26.357500076293945 -14926,2018-03-14 22:00:00,31.99900054931641,7.454999923706055,41.709999084472656,8.14900016784668,-9.829999923706056,-1.7380000352859497,25.917999267578125 -14927,2018-03-14 23:00:00,32.75299835205078,7.623000144958496,41.57600021362305,8.14900016784668,-8.593000411987305,-1.246999979019165,25.69849967956543 -14928,2018-03-15 00:00:00,27.726999282836918,6.618000030517577,37.79600143432617,7.665999889373777,-9.80799961090088,-1.22599995136261,25.69849967956543 -14929,2018-03-15 01:00:00,28.145999908447266,6.533999919891357,37.823001861572266,7.479000091552732,-10.331000328063965,-1.22599995136261,25.47900009155273 -14930,2018-03-15 02:00:00,28.145999908447266,6.618000030517577,38.33200073242188,7.747000217437744,-10.458999633789062,-1.22599995136261,25.03899955749512 -14931,2018-03-15 03:00:00,27.308000564575195,6.618000030517577,37.15299987792969,7.479000091552732,-9.211000442504885,-1.2690000534057615,24.819499969482425 -14932,2018-03-15 04:00:00,28.64900016784668,7.203999996185303,37.76900100708008,7.934999942779541,-9.201000213623049,-1.4390000104904177,24.60000038146973 -14933,2018-03-15 05:00:00,28.64900016784668,6.7849998474121085,38.17100143432617,7.827000141143799,-9.168999671936035,-1.3650000095367432,24.15999984741211 -14934,2018-03-15 06:00:00,25.968000411987305,5.445000171661377,36.992000579833984,7.263999938964844,-10.37399959564209,-1.246999979019165,24.15999984741211 -14935,2018-03-15 07:00:00,30.82699966430664,6.533999919891357,40.15499877929688,7.23799991607666,-9.147000312805176,-2.463000059127808,24.15999984741211 -14936,2018-03-15 08:00:00,30.99399948120117,6.618000030517577,39.887001037597656,7.1570000648498535,-9.201000213623049,-1.5140000581741333,24.60000038146973 -14937,2018-03-15 09:00:00,29.90500068664551,7.203999996185303,42.40700149536133,9.220999717712402,-11.822999954223633,-2.6549999713897705,25.25900077819824 -14938,2018-03-15 10:00:00,26.972999572753903,4.188000202178955,39.48500061035156,6.380000114440918,-11.833999633789062,-2.6549999713897705,26.57699966430664 -14939,2018-03-15 11:00:00,26.55400085449219,4.440000057220459,40.10100173950195,6.5939998626708975,-13.050000190734863,-2.6549999713897705,28.55500030517578 -14940,2018-03-15 12:00:00,29.738000869750977,5.110000133514403,41.81700134277344,6.915999889373777,-11.781000137329102,-2.6549999713897705,29.87299919128418 -14941,2018-03-15 13:00:00,29.48600006103516,6.449999809265138,41.73699951171875,8.203000068664549,-11.6850004196167,-2.6549999713897705,31.19099998474121 -14942,2018-03-15 14:00:00,29.56999969482422,6.618000030517577,41.46799850463867,8.041999816894531,-11.6850004196167,-2.6549999713897705,33.827999114990234 -14943,2018-03-15 15:00:00,29.90500068664551,7.119999885559082,41.25400161743164,8.496999740600586,-10.479999542236328,-2.6549999713897705,35.146499633789055 -14944,2018-03-15 16:00:00,29.319000244140625,6.7849998474121085,42.084999084472656,8.444000244140625,-13.0600004196167,-2.6549999713897705,35.36600112915039 -14945,2018-03-15 17:00:00,28.145999908447266,8.208999633789062,39.64599990844727,6.9689998626708975,-11.717000007629396,-2.6549999713897705,30.75200080871582 -14946,2018-03-15 18:00:00,32.501998901367195,6.449999809265138,43.23799896240234,7.692999839782715,-11.727999687194824,-2.6549999713897705,28.99399948120117 -14947,2018-03-15 19:00:00,32.58599853515625,4.941999912261963,41.73699951171875,6.245999813079834,-9.232999801635742,-1.4290000200271606,24.60000038146973 -14948,2018-03-15 20:00:00,25.29800033569336,0.0,37.20600128173828,5.013000011444092,-11.791000366210938,-2.740000009536743,19.54599952697754 -14949,2018-03-15 21:00:00,24.459999084472656,0.0,38.84199905395508,6.701000213623048,-14.244000434875488,-2.740000009536743,17.128999710083008 -14950,2018-03-15 22:00:00,27.392000198364247,5.193999767303467,38.17100143432617,7.0229997634887695,-10.427000045776367,-2.740000009536743,15.810999870300291 -14951,2018-03-15 23:00:00,29.56999969482422,6.618000030517577,40.61100006103516,8.36299991607666,-10.427000045776367,-2.740000009536743,14.711999893188477 -14952,2018-03-16 00:00:00,28.81599998474121,5.52899980545044,38.78799819946289,7.317999839782715,-9.168999671936035,-2.0150001049041752,14.053000450134276 -14953,2018-03-16 01:00:00,29.15099906921387,6.2829999923706055,39.72600173950195,8.069000244140625,-10.458999633789062,-3.252000093460083,13.61299991607666 -14954,2018-03-16 02:00:00,24.795000076293945,4.941999912261963,37.1259994506836,7.50600004196167,-11.88700008392334,-3.252000093460083,12.95400047302246 -14955,2018-03-16 03:00:00,26.972999572753903,6.198999881744385,38.59999847412109,8.390000343322754,-11.961999893188477,-3.252000093460083,12.734000205993652 -14956,2018-03-16 04:00:00,25.381999969482425,5.445000171661377,37.31399917602539,7.88100004196167,-11.6850004196167,-3.252000093460083,12.95400047302246 -14957,2018-03-16 05:00:00,24.292999267578125,4.5229997634887695,35.222999572753906,6.835000038146973,-10.277999877929688,-1.8020000457763672,12.51449966430664 -14958,2018-03-16 06:00:00,27.559999465942383,5.193999767303467,39.72600173950195,7.639999866485598,-13.027999877929688,-3.0169999599456787,12.074999809265137 -14959,2018-03-16 07:00:00,28.145999908447266,5.611999988555908,40.47700119018555,8.14900016784668,-11.73799991607666,-2.5480000972747803,11.416000366210938 -14960,2018-03-16 08:00:00,27.97900009155273,4.941999912261963,41.73699951171875,7.77400016784668,-12.95400047302246,-2.5480000972747803,10.536999702453612 -14961,2018-03-16 09:00:00,33.42300033569336,8.293000221252441,46.0250015258789,10.239999771118164,-12.986000061035154,-2.5369999408721924,10.536999702453612 -14962,2018-03-16 10:00:00,26.972999572753903,0.0,37.90299987792969,6.058000087738037,-10.479999542236328,-2.5369999408721924,10.97700023651123 -14963,2018-03-16 11:00:00,26.2189998626709,0.0,39.055999755859375,6.540999889373777,-12.986000061035154,-2.5369999408721924,11.854999542236328 -14964,2018-03-16 12:00:00,23.1200008392334,0.0,35.8120002746582,4.584000110626222,-11.770000457763672,-2.687000036239624,13.393500328063965 -14965,2018-03-16 13:00:00,18.68000030517578,0.0,32.38100051879883,4.36899995803833,-13.071000099182127,-2.687000036239624,14.272500038146973 -14966,2018-03-16 14:00:00,23.20400047302246,0.0,35.54399871826172,6.353000164031982,-11.833999633789062,-2.687000036239624,14.932000160217283 -14967,2018-03-16 15:00:00,24.459999084472656,4.105000019073486,38.43899917602539,6.728000164031982,-13.071000099182127,-2.687000036239624,15.810999870300291 -14968,2018-03-16 16:00:00,34.429000854492195,7.119999885559082,45.32899856567383,8.95300006866455,-10.586999893188477,-2.687000036239624,16.909000396728516 -14969,2018-03-16 17:00:00,33.42300033569336,5.863999843597412,44.81900024414063,7.800000190734862,-10.651000022888184,-2.687000036239624,16.909000396728516 -14970,2018-03-16 18:00:00,32.58599853515625,5.361000061035156,44.38999938964844,7.317999839782715,-11.300999641418455,-2.687000036239624,16.25 -14971,2018-03-16 19:00:00,32.669998168945305,4.188000202178955,42.32600021362305,5.736000061035156,-8.817000389099121,-1.950999975204468,15.590999603271484 -14972,2018-03-16 20:00:00,34.847000122070305,6.114999771118164,45.70399856567383,8.550999641418457,-11.482000350952148,-2.0360000133514404,15.371000289916992 -14973,2018-03-16 21:00:00,36.27199935913086,6.953000068664551,47.60699844360352,8.470999717712402,-11.045000076293944,-2.0360000133514404,14.932000160217283 -14974,2018-03-16 22:00:00,33.17200088500977,6.7849998474121085,44.900001525878906,8.282999992370605,-12.270999908447266,-2.0360000133514404,14.491999626159668 -14975,2018-03-16 23:00:00,30.90999984741211,5.611999988555908,42.86199951171875,7.559000015258789,-11.269000053405762,-3.252000093460083,13.61299991607666 -14976,2018-03-17 00:00:00,31.32900047302246,6.2829999923706055,41.60300064086914,7.88100004196167,-9.894000053405762,-1.940000057220459,12.95400047302246 -14977,2018-03-17 01:00:00,27.81100082397461,5.276999950408936,40.31600189208984,7.639999866485598,-12.559000015258787,-3.16599988937378,12.074999809265137 -14978,2018-03-17 02:00:00,26.88999938964844,4.859000205993652,38.73400115966797,7.23799991607666,-11.609999656677244,-3.16599988937378,12.074999809265137 -14979,2018-03-17 03:00:00,24.795000076293945,4.105000019073486,36.24100112915039,6.460000038146973,-11.53600025177002,-3.16599988937378,11.635499954223633 -14980,2018-03-17 04:00:00,24.459999084472656,0.0,37.1259994506836,6.353000164031982,-11.770000457763672,-3.16599988937378,11.196499824523926 -14981,2018-03-17 05:00:00,20.52300071716309,0.0,31.84499931335449,4.2890000343322745,-11.770000457763672,-3.16599988937378,11.196499824523926 -14982,2018-03-17 06:00:00,25.71699905395508,0.0,37.52799987792969,5.789999961853027,-11.770000457763672,-3.16599988937378,11.196499824523926 -14983,2018-03-17 07:00:00,27.05699920654297,0.0,38.52000045776367,5.710000038146973,-10.437000274658203,-1.7269999980926514,11.196499824523926 -14984,2018-03-17 08:00:00,28.64900016784668,4.5229997634887695,39.37799835205078,6.2729997634887695,-10.628999710083008,-2.96399998664856,12.295000076293944 -14985,2018-03-17 09:00:00,29.066999435424805,4.941999912261963,43.13000106811523,7.263999938964844,-13.0600004196167,-2.96399998664856,13.833000183105469 -14986,2018-03-17 10:00:00,27.726999282836918,0.0,39.512001037597656,5.388000011444092,-11.74899959564209,-2.96399998664856,16.469499588012695 -14987,2018-03-17 11:00:00,27.726999282836918,0.0,41.040000915527344,6.245999813079834,-12.975000381469728,-2.96399998664856,19.10650062561035 -14988,2018-03-17 12:00:00,28.899999618530277,4.440000057220459,42.05799865722656,6.888999938964844,-12.975000381469728,-2.96399998664856,21.96299934387207 -14989,2018-03-17 13:00:00,29.65399932861328,5.78000020980835,42.54100036621094,7.71999979019165,-11.717000007629396,-2.003999948501587,23.2814998626709 -14990,2018-03-17 14:00:00,30.32399940490723,6.031000137329103,42.27299880981445,7.907999992370605,-11.631999969482422,-2.003999948501587,23.06150054931641 -14991,2018-03-17 15:00:00,27.559999465942383,5.611999988555908,39.72600173950195,7.639999866485598,-11.696000099182127,-2.003999948501587,23.72100067138672 -14992,2018-03-17 16:00:00,30.57500076293945,6.366000175476074,42.43399810791016,7.854000091552732,-11.609999656677244,-2.003999948501587,23.2810001373291 -14993,2018-03-17 17:00:00,32.58599853515625,6.198999881744385,42.64799880981445,7.263999938964844,-10.331000328063965,-2.003999948501587,22.84199905395508 -14994,2018-03-17 18:00:00,32.83700180053711,5.863999843597412,43.34500122070313,6.942999839782715,-10.383999824523926,-2.003999948501587,21.74300003051757 -14995,2018-03-17 19:00:00,30.40800094604492,4.60699987411499,40.79800033569336,5.896999835968018,-10.35200023651123,-2.003999948501587,20.424999237060547 -14996,2018-03-17 20:00:00,32.16699981689453,6.114999771118164,42.32600021362305,7.34499979019165,-10.67199993133545,-2.003999948501587,19.98550033569336 -14997,2018-03-17 21:00:00,34.763999938964844,6.701000213623048,45.19400024414063,7.71999979019165,-9.413999557495115,-2.003999948501587,19.54599952697754 -14998,2018-03-17 22:00:00,33.590999603271484,6.618000030517577,43.55899810791016,7.827000141143799,-10.71500015258789,-2.003999948501587,19.10650062561035 -14999,2018-03-17 23:00:00,29.90500068664551,5.947999954223633,41.040000915527344,7.23799991607666,-10.586999893188477,-2.003999948501587,19.10650062561035 -15000,2018-03-18 00:00:00,28.983999252319336,5.445000171661377,38.84199905395508,6.755000114440918,-10.427000045776367,-2.003999948501587,17.348499298095707 -15001,2018-03-18 01:00:00,26.47100067138672,4.690999984741211,36.7239990234375,6.326000213623048,-10.331000328063965,-1.3650000095367432,16.469499588012695 -15002,2018-03-18 02:00:00,28.39699935913086,5.52899980545044,36.29499816894531,6.701000213623048,-7.910999774932861,-2.632999897003174,16.25 -15003,2018-03-18 03:00:00,24.71199989318848,4.859000205993652,35.141998291015625,6.380000114440918,-10.468999862670898,-1.5570000410079956,16.909000396728516 -15004,2018-03-18 04:00:00,26.13599967956543,4.775000095367432,36.66999816894531,6.486999988555907,-10.468999862670898,-2.7720000743865967,17.348499298095707 -15005,2018-03-18 05:00:00,27.895000457763672,5.78000020980835,37.18000030517578,7.050000190734862,-9.147000312805176,-2.7720000743865967,16.909000396728516 -15006,2018-03-18 06:00:00,26.55400085449219,4.690999984741211,36.9119987487793,6.245999813079834,-9.637999534606934,-2.7720000743865967,16.030500411987305 -15007,2018-03-18 07:00:00,28.145999908447266,5.110000133514403,38.0369987487793,6.675000190734862,-10.031999588012695,-1.406999945640564,16.030500411987305 -15008,2018-03-18 08:00:00,24.375999450683597,0.0,35.4370002746582,4.7709999084472665,-9.935999870300291,-1.3860000371932983,16.25 -15009,2018-03-18 09:00:00,32.08300018310547,7.119999885559082,42.59400177001953,8.121999740600586,-9.935999870300291,-1.3860000371932983,16.469499588012695 -15010,2018-03-18 10:00:00,26.972999572753903,0.0,39.27000045776367,4.879000186920166,-11.397000312805176,-2.6549999713897705,16.469499588012695 -15011,2018-03-18 11:00:00,24.041000366210927,0.0,36.3489990234375,5.119999885559082,-11.397000312805176,-2.6549999713897705,16.909000396728516 -15012,2018-03-18 12:00:00,25.71699905395508,0.0,37.68899917602539,5.1469998359680185,-11.407999992370604,-2.6549999713897705,17.348499298095707 -15013,2018-03-18 13:00:00,25.381999969482425,0.0,37.4739990234375,5.494999885559082,-11.461000442504885,-2.6549999713897705,17.788000106811523 -15014,2018-03-18 14:00:00,31.832000732421875,5.611999988555908,44.38999938964844,7.50600004196167,-11.472000122070312,-2.6549999713897705,17.788000106811523 -15015,2018-03-18 15:00:00,31.413000106811523,5.696000099182129,43.77399826049805,7.50600004196167,-12.76200008392334,-2.6549999713897705,17.788000106811523 -15016,2018-03-18 16:00:00,32.16699981689453,5.276999950408936,44.71200180053711,7.1570000648498535,-11.343999862670898,-2.6549999713897705,18.007999420166016 -15017,2018-03-18 17:00:00,34.09400177001953,4.775000095367432,45.2750015258789,6.380000114440918,-11.343999862670898,-2.6549999713897705,17.568500518798828 -15018,2018-03-18 18:00:00,33.34000015258789,4.355999946594238,44.12200164794922,6.164999961853027,-11.343999862670898,-2.6549999713897705,16.68950080871582 -15019,2018-03-18 19:00:00,30.65900039672852,0.0,41.14699935913086,5.173999786376953,-11.343999862670898,-2.6549999713897705,16.909000396728516 -15020,2018-03-18 20:00:00,35.685001373291016,5.696000099182129,45.97200012207031,7.317999839782715,-10.118000030517578,-2.6549999713897705,16.68899917602539 -15021,2018-03-18 21:00:00,33.005001068115234,4.60699987411499,43.39899826049805,6.566999912261963,-10.031999588012695,-2.6549999713897705,16.25 -15022,2018-03-18 22:00:00,33.42300033569336,6.701000213623048,44.900001525878906,8.069000244140625,-11.140999794006348,-2.6549999713897705,16.25 -15023,2018-03-18 23:00:00,33.42300033569336,6.366000175476074,43.104000091552734,7.61299991607666,-9.968000411987305,-2.6549999713897705,16.469499588012695 -15024,2018-03-19 00:00:00,29.40299987792969,5.611999988555908,40.20899963378906,6.861999988555907,-11.237000465393066,-2.6549999713897705,16.68950080871582 -15025,2018-03-19 01:00:00,25.548999786376957,0.0,36.617000579833984,5.5219998359680185,-11.204999923706056,-2.6549999713897705,16.469499588012695 -15026,2018-03-19 02:00:00,27.97900009155273,4.775000095367432,38.54700088500977,6.540999889373777,-11.204999923706056,-2.6549999713897705,16.25 -15027,2018-03-19 03:00:00,27.05699920654297,5.445000171661377,38.70800018310547,7.290999889373777,-11.161999702453612,-2.6549999713897705,15.810999870300291 -15028,2018-03-19 04:00:00,25.381999969482425,4.775000095367432,37.95700073242188,6.620999813079834,-12.612000465393065,-2.6549999713897705,15.371000289916992 -15029,2018-03-19 05:00:00,27.308000564575195,4.690999984741211,39.59199905395508,6.701000213623048,-12.559000015258787,-2.6549999713897705,14.932000160217283 -15030,2018-03-19 06:00:00,27.392000198364247,4.60699987411499,40.15499877929688,6.675000190734862,-12.579999923706056,-2.6549999713897705,14.491999626159668 -15031,2018-03-19 07:00:00,31.32900047302246,5.026000022888184,42.459999084472656,6.380000114440918,-11.397000312805176,-2.6549999713897705,14.272500038146973 -15032,2018-03-19 08:00:00,23.1200008392334,0.0,34.257999420166016,3.940000057220459,-11.397000312805176,-2.6549999713897705,14.272500038146973 -15033,2018-03-19 09:00:00,34.0099983215332,6.533999919891357,45.56999969482422,7.934999942779541,-12.644000053405762,-2.6549999713897705,14.711999893188477 -15034,2018-03-19 10:00:00,31.16200065612793,0.0,43.31800079345703,5.683000087738037,-12.644000053405762,-2.6549999713897705,14.931500434875488 -15035,2018-03-19 11:00:00,32.333999633789055,4.188000202178955,44.12200164794922,6.058000087738037,-11.407999992370604,-2.6549999713897705,15.15149974822998 -15036,2018-03-19 12:00:00,33.590999603271484,4.5229997634887695,46.15999984741211,6.5939998626708975,-12.623000144958494,-2.6549999713897705,16.030500411987305 -15037,2018-03-19 13:00:00,36.60699844360352,6.7849998474121085,48.4379997253418,8.444000244140625,-11.354000091552734,-2.6549999713897705,16.469499588012695 -15038,2018-03-19 14:00:00,35.182998657226555,6.86899995803833,46.53499984741211,8.496999740600586,-11.41800022125244,-2.6549999713897705,16.909000396728516 -15039,2018-03-19 15:00:00,30.743000030517567,5.110000133514403,40.10100173950195,6.675000190734862,-10.138999938964844,-2.1540000438690186,17.128999710083008 -15040,2018-03-19 16:00:00,32.501998901367195,6.2829999923706055,43.45199966430664,7.532000064849853,-11.37600040435791,-2.1540000438690186,16.909000396728516 -15041,2018-03-19 17:00:00,32.58599853515625,0.0,42.99599838256836,5.334000110626222,-10.19200038909912,-2.463000059127808,16.68899917602539 -15042,2018-03-19 18:00:00,36.02000045776367,5.52899980545044,47.553001403808594,6.995999813079834,-11.22599983215332,-2.463000059127808,16.469499588012695 -15043,2018-03-19 19:00:00,32.58599853515625,4.5229997634887695,43.29100036621094,5.896999835968018,-11.045000076293944,-2.463000059127808,16.25 -15044,2018-03-19 20:00:00,33.088001251220696,4.859000205993652,44.09500122070313,6.326000213623048,-10.342000007629396,-2.463000059127808,16.25 -15045,2018-03-19 21:00:00,36.02000045776367,6.2829999923706055,46.69599914550781,7.71999979019165,-11.631999969482422,-2.463000059127808,15.371000289916992 -15046,2018-03-19 22:00:00,33.25600051879883,5.947999954223633,44.229000091552734,7.3979997634887695,-10.36299991607666,-2.463000059127808,15.371000289916992 -15047,2018-03-19 23:00:00,32.250999450683594,5.696000099182129,44.17599868774414,7.077000141143799,-10.416000366210938,-2.463000059127808,15.590999603271484 -15048,2018-03-20 00:00:00,31.32900047302246,6.198999881744385,41.73699951171875,7.34499979019165,-10.406000137329102,-2.463000059127808,15.590999603271484 -15049,2018-03-20 01:00:00,30.90999984741211,5.78000020980835,40.74499893188477,6.915999889373777,-9.157999992370604,-2.463000059127808,14.491999626159668 -15050,2018-03-20 02:00:00,29.066999435424805,5.276999950408936,40.52999877929688,6.995999813079834,-11.58899974822998,-2.463000059127808,14.272500038146973 -15051,2018-03-20 03:00:00,29.90500068664551,5.193999767303467,39.86000061035156,6.566999912261963,-8.998000144958496,-2.463000059127808,13.833000183105469 -15052,2018-03-20 04:00:00,28.81599998474121,5.026000022888184,39.77999877929688,6.620999813079834,-10.234999656677246,-2.463000059127808,13.173500061035154 -15053,2018-03-20 05:00:00,26.30299949645996,5.026000022888184,38.46599960327149,6.861999988555907,-11.364999771118164,-2.463000059127808,12.51449966430664 -15054,2018-03-20 06:00:00,27.64299964904785,0.0,38.81499862670898,5.254000186920166,-11.54599952697754,-2.463000059127808,12.295000076293944 -15055,2018-03-20 07:00:00,31.16200065612793,4.5229997634887695,41.84400177001953,5.763000011444093,-10.468999862670898,-2.463000059127808,11.854999542236328 -15056,2018-03-20 08:00:00,30.65900039672852,0.0,39.21699905395508,4.53000020980835,-8.060000419616701,-2.463000059127808,11.854999542236328 -15057,2018-03-20 09:00:00,35.518001556396484,6.198999881744385,44.87300109863281,7.372000217437744,-9.350000381469728,-2.7079999446868896,12.074999809265137 -15058,2018-03-20 10:00:00,29.066999435424805,0.0,40.02099990844727,3.99399995803833,-10.597000122070312,-2.7079999446868896,11.635499954223633 -15059,2018-03-20 11:00:00,33.25600051879883,5.110000133514403,45.03400039672852,7.1570000648498535,-10.597000122070312,-2.7079999446868896,11.635499954223633 -15060,2018-03-20 12:00:00,33.674999237060554,4.5229997634887695,45.16799926757813,6.353000164031982,-10.640000343322754,-2.7079999446868896,11.854999542236328 -15061,2018-03-20 13:00:00,40.459999084472656,7.623000144958496,50.79700088500977,8.819000244140625,-9.776000022888184,-2.7079999446868896,12.295000076293944 -15062,2018-03-20 14:00:00,38.11399841308594,7.288000106811522,49.43000030517578,8.630999565124513,-11.58899974822998,-2.2709999084472656,12.074999809265137 -15063,2018-03-20 15:00:00,37.36100006103516,7.037000179290772,48.89400100708008,8.630999565124513,-11.609999656677244,-2.2709999084472656,11.85550022125244 -15064,2018-03-20 16:00:00,40.9630012512207,7.789999961853027,51.03799819946289,8.979999542236328,-9.157999992370604,-2.2709999084472656,11.85550022125244 -15065,2018-03-20 17:00:00,37.10900115966797,5.611999988555908,49.8849983215332,7.50600004196167,-11.652999877929688,-2.2709999084472656,11.635499954223633 -15066,2018-03-20 18:00:00,36.68999862670898,5.276999950408936,48.0359992980957,6.701000213623048,-10.427000045776367,-2.2709999084472656,11.635499954223633 -15067,2018-03-20 19:00:00,37.277000427246094,5.611999988555908,48.70600128173828,6.995999813079834,-10.50100040435791,-2.750999927520752,11.416000366210938 -15068,2018-03-20 20:00:00,38.44900131225586,6.7849998474121085,49.93899917602539,7.934999942779541,-11.74899959564209,-2.750999927520752,10.537500381469728 -15069,2018-03-20 21:00:00,39.45500183105469,7.623000144958496,51.06499862670898,8.73900032043457,-10.70400047302246,-2.750999927520752,10.09749984741211 -15070,2018-03-20 22:00:00,35.85300064086914,6.533999919891357,45.24800109863281,6.888999938964844,-9.477999687194824,-1.3109999895095823,10.317500114440918 -15071,2018-03-20 23:00:00,33.757999420166016,6.198999881744385,44.20299911499024,7.1570000648498535,-9.989999771118164,-2.569000005722046,10.317500114440918 -15072,2018-03-21 00:00:00,32.08300018310547,6.031000137329103,43.479000091552734,7.290999889373777,-11.109000205993652,-2.569000005722046,10.317500114440918 -15073,2018-03-21 01:00:00,30.57500076293945,5.361000061035156,41.38800048828125,6.942999839782715,-11.152000427246094,-2.569000005722046,10.537500381469728 -15074,2018-03-21 02:00:00,31.16200065612793,6.114999771118164,40.87900161743164,7.263999938964844,-9.541999816894531,-2.569000005722046,10.317500114440918 -15075,2018-03-21 03:00:00,31.32900047302246,6.449999809265138,41.06600189208984,7.372000217437744,-9.104999542236328,-2.569000005722046,9.878000259399414 -15076,2018-03-21 04:00:00,32.501998901367195,6.533999919891357,41.57600021362305,7.290999889373777,-9.178999900817873,-2.569000005722046,9.878000259399414 -15077,2018-03-21 05:00:00,29.23500061035156,5.361000061035156,40.10100173950195,7.0229997634887695,-10.416000366210938,-2.750999927520752,10.09749984741211 -15078,2018-03-21 06:00:00,30.40800094604492,5.193999767303467,39.512001037597656,5.789999961853027,-10.107000350952148,-1.5349999666213991,10.317500114440918 -15079,2018-03-21 07:00:00,33.42300033569336,5.696000099182129,44.97999954223633,6.9689998626708975,-10.107000350952148,-1.5779999494552612,10.317500114440918 -15080,2018-03-21 08:00:00,35.014999389648445,7.037000179290772,45.4630012512207,7.61299991607666,-10.022000312805176,-1.2580000162124634,10.976499557495115 -15081,2018-03-21 09:00:00,37.44400024414063,8.125,50.09999847412109,9.515999794006348,-11.54599952697754,-2.6549999713897705,11.85550022125244 -15082,2018-03-21 10:00:00,33.34000015258789,0.0,45.48899841308594,5.602000236511231,-11.503999710083008,-2.6549999713897705,13.613499641418455 -15083,2018-03-21 11:00:00,34.763999938964844,4.105000019073486,47.178001403808594,5.8439998626708975,-11.4399995803833,-2.6549999713897705,14.272500038146973 -15084,2018-03-21 12:00:00,29.738000869750977,5.026000022888184,42.99599838256836,7.184000015258789,-12.697999954223633,-2.6549999713897705,14.491999626159668 -15085,2018-03-21 13:00:00,33.25600051879883,7.454999923706055,45.16799926757813,8.95300006866455,-12.697999954223633,-2.6549999713897705,16.030000686645508 -15086,2018-03-21 14:00:00,31.66399955749512,7.119999885559082,42.97000122070313,8.550999641418457,-11.449999809265137,-2.6549999713897705,19.10650062561035 -15087,2018-03-21 15:00:00,35.26599884033203,8.461000442504883,47.28499984741211,9.91800022125244,-12.675999641418455,-1.8980000019073489,20.644500732421875 -15088,2018-03-21 16:00:00,36.858001708984375,8.878999710083008,47.5,9.99899959564209,-10.182000160217283,-1.8980000019073489,20.424999237060547 -15089,2018-03-21 17:00:00,36.35499954223633,8.041999816894531,46.85599899291992,8.95300006866455,-10.182000160217283,-1.8980000019073489,20.424999237060547 -15090,2018-03-21 18:00:00,37.61199951171875,7.539000034332275,47.125,8.255999565124513,-8.956000328063965,-1.8980000019073489,19.98550033569336 -15091,2018-03-21 19:00:00,37.61199951171875,7.958000183105469,46.9640007019043,8.470999717712402,-10.15999984741211,-1.8980000019073489,18.66699981689453 -15092,2018-03-21 20:00:00,30.82699966430664,5.026000022888184,41.30799865722656,6.433000087738037,-11.321999549865724,-1.8980000019073489,17.568000793457028 -15093,2018-03-21 21:00:00,32.501998901367195,6.953000068664551,44.04199981689453,8.444000244140625,-11.321999549865724,-1.8980000019073489,16.25 -15094,2018-03-21 22:00:00,31.077999114990234,6.7849998474121085,42.80899810791016,8.95300006866455,-11.321999549865724,-1.8980000019073489,15.15149974822998 -15095,2018-03-21 23:00:00,29.56999969482422,6.533999919891357,40.15499877929688,7.88100004196167,-10.149999618530272,-1.8980000019073489,14.272500038146973 -15096,2018-03-22 00:00:00,27.559999465942383,6.031000137329103,36.96500015258789,7.0229997634887695,-10.15999984741211,-1.8980000019073489,13.393500328063965 -15097,2018-03-22 01:00:00,27.64299964904785,5.863999843597412,36.42900085449219,6.7820000648498535,-8.923999786376953,-1.8980000019073489,12.51449966430664 -15098,2018-03-22 02:00:00,26.13599967956543,6.618000030517577,36.08100128173828,7.747000217437744,-10.223999977111816,-1.8980000019073489,12.074999809265137 -15099,2018-03-22 03:00:00,26.88999938964844,6.7849998474121085,37.2869987487793,8.14900016784668,-10.118000030517578,-1.8980000019073489,11.416000366210938 -15100,2018-03-22 04:00:00,27.895000457763672,7.623000144958496,37.79600143432617,8.657999992370605,-9.958000183105469,-1.8980000019073489,10.756999969482422 -15101,2018-03-22 05:00:00,28.64900016784668,7.288000106811522,39.37799835205078,8.444000244140625,-9.894000053405762,-1.8980000019073489,10.317500114440918 -15102,2018-03-22 06:00:00,29.15099906921387,6.701000213623048,40.15499877929688,8.310000419616701,-11.312000274658203,-1.8980000019073489,9.878000259399414 -15103,2018-03-22 07:00:00,30.65900039672852,6.7849998474121085,42.24599838256836,8.282999992370605,-11.557000160217283,-1.8980000019073489,9.878000259399414 -15104,2018-03-22 08:00:00,33.25600051879883,7.958000183105469,43.37200164794922,9.461999893188477,-10.52299976348877,-1.8980000019073489,10.97700023651123 -15105,2018-03-22 09:00:00,36.43899917602539,9.717000007629396,46.9640007019043,10.480999946594238,-10.586999893188477,-1.8980000019073489,13.61299991607666 -15106,2018-03-22 10:00:00,25.88400077819824,4.355999946594238,38.59999847412109,6.835000038146973,-11.833999633789062,-3.11299991607666,17.788000106811523 -15107,2018-03-22 11:00:00,27.308000564575195,5.276999950408936,40.04800033569336,7.425000190734862,-11.833999633789062,-3.11299991607666,21.523500442504886 -15108,2018-03-22 12:00:00,25.29800033569336,0.0,38.30500030517578,6.620999813079834,-13.08199977874756,-3.11299991607666,24.160499572753903 -15109,2018-03-22 13:00:00,26.972999572753903,5.193999767303467,39.75299835205078,7.585999965667725,-13.0600004196167,-3.11299991607666,26.13800048828125 -15110,2018-03-22 14:00:00,30.99399948120117,7.706999778747559,44.04199981689453,9.91800022125244,-13.0600004196167,-3.11299991607666,27.45599937438965 -15111,2018-03-22 15:00:00,31.077999114990234,7.789999961853027,43.80099868774414,9.677000045776367,-13.0600004196167,-3.11299991607666,27.45599937438965 -15112,2018-03-22 16:00:00,30.492000579833984,7.874000072479247,44.41699981689453,9.461999893188477,-13.08199977874756,-3.11299991607666,26.35700035095215 -15113,2018-03-22 17:00:00,32.16699981689453,7.288000106811522,44.79199981689453,9.274999618530272,-12.986000061035154,-3.11299991607666,25.03899955749512 -15114,2018-03-22 18:00:00,34.763999938964844,8.293000221252441,46.45399856567383,9.48900032043457,-11.833999633789062,-3.11299991607666,23.94050025939941 -15115,2018-03-22 19:00:00,30.57500076293945,5.947999954223633,43.15700149536133,7.585999965667725,-11.73799991607666,-2.0469999313354488,22.402000427246094 -15116,2018-03-22 20:00:00,38.198001861572266,9.04699993133545,47.28499984741211,9.784000396728516,-9.274999618530272,-2.0469999313354488,21.083999633789062 -15117,2018-03-22 21:00:00,36.43899917602539,8.795999526977539,47.58000183105469,9.677000045776367,-11.866000175476074,-2.0469999313354488,20.20499992370605 -15118,2018-03-22 22:00:00,31.916000366210927,8.208999633789062,43.58599853515625,9.677000045776367,-10.576000213623049,-2.0469999313354488,19.326000213623047 -15119,2018-03-22 23:00:00,31.99900054931641,7.623000144958496,41.57600021362305,8.657999992370605,-9.29699993133545,-2.0469999313354488,18.886999130249023 -15120,2018-03-23 00:00:00,31.413000106811523,8.208999633789062,41.709999084472656,9.16800022125244,-10.895999908447266,-2.0469999313354488,18.886999130249023 -15121,2018-03-23 01:00:00,27.559999465942383,6.701000213623048,38.62699890136719,8.015000343322754,-10.939000129699709,-2.0469999313354488,18.007999420166016 -15122,2018-03-23 02:00:00,28.899999618530277,7.874000072479247,39.40399932861328,8.899999618530273,-10.928000450134276,-2.0469999313354488,17.128999710083008 -15123,2018-03-23 03:00:00,27.47599983215332,8.628000259399414,38.33200073242188,9.461999893188477,-10.949000358581545,-2.0469999313354488,16.25 -15124,2018-03-23 04:00:00,29.48600006103516,8.125,39.86000061035156,9.006999969482422,-9.765999794006348,-2.0469999313354488,15.590999603271484 -15125,2018-03-23 05:00:00,29.066999435424805,7.623000144958496,40.34299850463867,9.006999969482422,-11.055999755859377,-2.0469999313354488,14.932000160217283 -15126,2018-03-23 06:00:00,30.1560001373291,6.701000213623048,40.71799850463867,7.907999992370605,-9.744000434875488,-2.0469999313354488,14.491999626159668 -15127,2018-03-23 07:00:00,31.32900047302246,6.618000030517577,42.38000106811523,7.61299991607666,-10.928000450134276,-2.0469999313354488,14.272500038146973 -15128,2018-03-23 08:00:00,30.492000579833984,7.203999996185303,40.07500076293945,7.98799991607666,-9.670000076293944,-2.0469999313354488,15.810999870300291 -15129,2018-03-23 09:00:00,30.072999954223643,7.623000144958496,42.70199966430664,9.461999893188477,-12.142999649047852,-2.0469999313354488,18.44700050354004 -15130,2018-03-23 10:00:00,22.36599922180176,0.0,35.2760009765625,6.164999961853027,-13.43299961090088,-2.0469999313354488,22.84199905395508 -15131,2018-03-23 11:00:00,25.214000701904297,4.355999946594238,37.52799987792969,6.513999938964844,-12.20699977874756,-2.0469999313354488,27.23600006103516 -15132,2018-03-23 12:00:00,21.69599914550781,0.0,34.5260009765625,5.548999786376953,-12.25,-2.0469999313354488,30.3125 -15133,2018-03-23 13:00:00,31.16200065612793,7.706999778747559,42.78200149536133,9.220999717712402,-12.25,-2.0469999313354488,32.290000915527344 -15134,2018-03-23 14:00:00,30.743000030517567,8.208999633789062,42.54100036621094,9.623000144958496,-12.25,-2.0469999313354488,34.707000732421875 -15135,2018-03-23 15:00:00,26.13599967956543,6.7849998474121085,39.13600158691406,8.657999992370605,-12.25,-2.0469999313354488,36.24499893188477 -15136,2018-03-23 16:00:00,30.40800094604492,7.874000072479247,42.62099838256836,9.54300022125244,-12.25,-2.0469999313354488,35.146499633789055 -15137,2018-03-23 17:00:00,29.738000869750977,6.701000213623048,42.21900177001953,8.496999740600586,-12.25,-2.0469999313354488,32.72949981689453 -15138,2018-03-23 18:00:00,33.17200088500977,7.958000183105469,44.310001373291016,9.220999717712402,-11.06700038909912,-2.0469999313354488,30.09250068664551 -15139,2018-03-23 19:00:00,29.48600006103516,6.114999771118164,40.31600189208984,6.861999988555907,-11.012999534606934,-2.0469999313354488,27.89550018310547 -15140,2018-03-23 20:00:00,36.858001708984375,8.878999710083008,45.19400024414063,9.034000396728516,-9.722999572753906,-2.0469999313354488,25.917999267578125 -15141,2018-03-23 21:00:00,35.182998657226555,8.711999893188478,45.24800109863281,9.11400032043457,-10.960000038146973,-2.0469999313354488,24.15999984741211 -15142,2018-03-23 22:00:00,35.685001373291016,8.963000297546387,46.2130012512207,10.105999946594238,-10.960000038146973,-2.0469999313354488,22.84199905395508 -15143,2018-03-23 23:00:00,33.92599868774414,8.711999893188478,44.20299911499024,9.409000396728516,-9.713000297546388,-2.0469999313354488,22.1825008392334 -15144,2018-03-24 00:00:00,29.319000244140625,7.372000217437744,39.45800018310547,8.604999542236326,-10.15999984741211,-2.5799999237060547,21.96299934387207 -15145,2018-03-24 01:00:00,30.99399948120117,8.461000442504883,40.93199920654297,9.274999618530272,-10.479999542236328,-2.5799999237060547,21.52300071716309 -15146,2018-03-24 02:00:00,28.64900016784668,8.376999855041504,39.69900131225586,9.48900032043457,-10.52299976348877,-2.5799999237060547,20.645000457763672 -15147,2018-03-24 03:00:00,24.96299934387207,7.454999923706055,36.3489990234375,8.630999565124513,-10.532999992370604,-2.5799999237060547,20.20499992370605 -15148,2018-03-24 04:00:00,25.968000411987305,7.454999923706055,37.2869987487793,9.006999969482422,-10.5649995803833,-2.5799999237060547,19.98550033569336 -15149,2018-03-24 05:00:00,27.392000198364247,7.623000144958496,37.98400115966797,8.845999717712402,-10.640000343322754,-2.5799999237060547,19.98550033569336 -15150,2018-03-24 06:00:00,28.565000534057607,7.119999885559082,39.64599990844727,8.310000419616701,-10.640000343322754,-2.5799999237060547,19.766000747680664 -15151,2018-03-24 07:00:00,30.57500076293945,8.293000221252441,40.04800033569336,8.791999816894531,-9.413999557495115,-1.3650000095367432,19.54599952697754 -15152,2018-03-24 08:00:00,27.559999465942383,6.2829999923706055,36.96500015258789,6.942999839782715,-9.381999969482422,-1.2790000438690186,20.864500045776367 -15153,2018-03-24 09:00:00,28.062000274658203,7.789999961853027,39.77999877929688,9.11400032043457,-12.07900047302246,-1.22599995136261,22.84199905395508 -15154,2018-03-24 10:00:00,22.617000579833984,4.5229997634887695,35.86600112915039,6.915999889373777,-13.647000312805176,-2.440999984741211,24.3799991607666 -15155,2018-03-24 11:00:00,25.04700088500977,6.533999919891357,38.70800018310547,8.95300006866455,-13.647000312805176,-2.440999984741211,27.01650047302246 -15156,2018-03-24 12:00:00,26.972999572753903,6.953000068664551,41.17399978637695,9.220999717712402,-13.63599967956543,-2.440999984741211,29.87299919128418 -15157,2018-03-24 13:00:00,30.40800094604492,8.963000297546387,43.55899810791016,10.614999771118164,-12.42099952697754,-2.440999984741211,32.070499420166016 -15158,2018-03-24 14:00:00,29.90500068664551,9.04699993133545,42.459999084472656,10.508000373840332,-12.324999809265137,-2.440999984741211,34.707000732421875 -15159,2018-03-24 15:00:00,29.56999969482422,8.628000259399414,42.03099822998047,10.401000022888184,-12.366999626159668,-2.440999984741211,36.68450164794922 -15160,2018-03-24 16:00:00,28.062000274658203,7.203999996185303,39.430999755859375,8.657999992370605,-12.45199966430664,-2.440999984741211,36.025001525878906 -15161,2018-03-24 17:00:00,22.95199966430664,5.445000171661377,34.820999145507805,7.0229997634887695,-11.055999755859377,-2.440999984741211,34.487499237060554 -15162,2018-03-24 18:00:00,19.85300064086914,0.0,30.93400001525879,3.9670000076293945,-9.989999771118164,-2.440999984741211,32.72949981689453 -15163,2018-03-24 19:00:00,21.11000061035156,0.0,30.3439998626709,3.4309999942779537,-10.053999900817873,-2.440999984741211,30.75200080871582 -15164,2018-03-24 20:00:00,19.26700019836425,0.0,30.98699951171875,5.0929999351501465,-11.152000427246094,-2.440999984741211,28.77449989318848 -15165,2018-03-24 21:00:00,27.05699920654297,5.52899980545044,37.93000030517578,6.7820000648498535,-11.152000427246094,-2.440999984741211,26.79700088500977 -15166,2018-03-24 22:00:00,29.98900032043457,6.953000068664551,39.16299819946289,7.1570000648498535,-9.914999961853027,0.0,25.47900009155273 -15167,2018-03-24 23:00:00,28.81599998474121,7.203999996185303,39.21699905395508,8.015000343322754,-9.925999641418455,-1.3969999551773071,24.3799991607666 -15168,2018-03-25 00:00:00,28.481000900268555,7.706999778747559,39.35100173950195,8.36299991607666,-11.397000312805176,-1.2580000162124634,23.72100067138672 -15169,2018-03-25 01:00:00,27.726999282836918,7.706999778747559,37.823001861572266,8.630999565124513,-10.01099967956543,-2.4730000495910645,22.84199905395508 -15170,2018-03-25 02:00:00,25.632999420166016,7.706999778747559,37.90299987792969,8.819000244140625,-12.56999969482422,-2.4730000495910645,21.96299934387207 -15171,2018-03-25 03:00:00,25.04700088500977,7.454999923706055,36.05400085449219,8.496999740600586,-10.04300022125244,-2.4730000495910645,21.30349922180176 -15172,2018-03-25 04:00:00,24.125,7.119999885559082,34.472000122070305,8.310000419616701,-10.17099952697754,-2.4730000495910645,20.645000457763672 -15173,2018-03-25 05:00:00,24.292999267578125,6.701000213623048,35.625,8.14900016784668,-11.407999992370604,-2.4730000495910645,20.20499992370605 -15174,2018-03-25 06:00:00,27.559999465942383,6.618000030517577,37.76900100708008,7.77400016784668,-10.128000259399414,-1.63100004196167,19.766000747680664 -15175,2018-03-25 07:00:00,26.88999938964844,7.203999996185303,38.17100143432617,7.800000190734862,-10.128000259399414,-1.63100004196167,19.54599952697754 -15176,2018-03-25 08:00:00,26.972999572753903,6.114999771118164,36.05400085449219,6.861999988555907,-10.031999588012695,-1.22599995136261,20.864500045776367 -15177,2018-03-25 09:00:00,33.25600051879883,8.376999855041504,41.92399978637695,8.873000144958496,-8.508000373840332,-1.22599995136261,23.2810001373291 -15178,2018-03-25 10:00:00,28.145999908447266,5.361000061035156,37.79600143432617,5.896999835968018,-10.128000259399414,-2.440999984741211,26.57699966430664 -15179,2018-03-25 11:00:00,29.319000244140625,5.947999954223633,42.38000106811523,7.71999979019165,-12.666000366210938,-2.440999984741211,29.214000701904297 -15180,2018-03-25 12:00:00,28.062000274658203,5.947999954223633,41.87099838256836,8.282999992370605,-12.666000366210938,-2.440999984741211,30.75149917602539 -15181,2018-03-25 13:00:00,26.47100067138672,6.449999809265138,41.65599822998047,9.248000144958496,-12.666000366210938,-2.440999984741211,32.72949981689453 -15182,2018-03-25 14:00:00,25.80100059509277,6.2829999923706055,37.608001708984375,8.015000343322754,-11.364999771118164,-2.440999984741211,34.707000732421875 -15183,2018-03-25 15:00:00,29.319000244140625,8.041999816894531,41.57600021362305,9.677000045776367,-11.354000091552734,-2.440999984741211,36.46500015258789 -15184,2018-03-25 16:00:00,30.65900039672852,8.208999633789062,41.84400177001953,9.302000045776367,-11.557000160217283,-2.440999984741211,35.80550003051758 -15185,2018-03-25 17:00:00,32.669998168945305,8.041999816894531,42.72800064086914,8.578000068664549,-10.342000007629396,-2.440999984741211,33.827999114990234 -15186,2018-03-25 18:00:00,33.92599868774414,8.208999633789062,43.58599853515625,9.086999893188477,-10.342000007629396,-2.440999984741211,31.850500106811523 -15187,2018-03-25 19:00:00,29.56999969482422,5.026000022888184,39.69900131225586,6.138999938964844,-10.246000289916992,-2.440999984741211,29.87299919128418 -15188,2018-03-25 20:00:00,33.84199905395508,7.789999961853027,43.39899826049805,8.630999565124513,-8.956000328063965,-2.440999984741211,28.114999771118164 -15189,2018-03-25 21:00:00,35.182998657226555,8.711999893188478,44.73899841308594,9.302000045776367,-8.965999603271484,-2.440999984741211,26.79700088500977 -15190,2018-03-25 22:00:00,30.65900039672852,7.203999996185303,42.13899993896485,8.630999565124513,-11.609999656677244,-2.440999984741211,25.47900009155273 -15191,2018-03-25 23:00:00,29.319000244140625,7.623000144958496,40.07500076293945,8.630999565124513,-10.35200023651123,-2.440999984741211,24.60000038146973 -15192,2018-03-26 00:00:00,27.559999465942383,7.454999923706055,38.198001861572266,8.496999740600586,-11.37600040435791,-2.440999984741211,24.15999984741211 -15193,2018-03-26 01:00:00,27.81100082397461,7.874000072479247,38.81499862670898,9.140999794006348,-10.118000030517578,-2.440999984741211,23.2810001373291 -15194,2018-03-26 02:00:00,26.63800048828125,7.789999961853027,37.367000579833984,8.95300006866455,-9.989999771118164,-2.440999984741211,22.621999740600582 -15195,2018-03-26 03:00:00,28.229999542236328,7.874000072479247,37.15299987792969,8.845999717712402,-8.710000038146973,-2.440999984741211,21.74300003051757 -15196,2018-03-26 04:00:00,26.2189998626709,7.874000072479247,37.98400115966797,8.979999542236328,-12.708000183105469,-2.440999984741211,21.083999633789062 -15197,2018-03-26 05:00:00,27.05699920654297,7.874000072479247,38.65399932861328,9.16800022125244,-12.303000450134276,-2.440999984741211,20.645000457763672 -15198,2018-03-26 06:00:00,27.47599983215332,6.86899995803833,38.92200088500977,8.203000068664549,-10.800000190734863,-2.440999984741211,19.98550033569336 -15199,2018-03-26 07:00:00,28.64900016784668,7.037000179290772,40.71799850463867,8.550999641418457,-10.52299976348877,-2.440999984741211,19.54599952697754 -15200,2018-03-26 08:00:00,27.141000747680664,7.119999885559082,38.94900131225586,8.390000343322754,-10.543999671936035,-2.440999984741211,20.645000457763672 -15201,2018-03-26 09:00:00,31.32900047302246,8.963000297546387,43.90800094604492,10.480999946594238,-12.229000091552734,-2.440999984741211,23.2810001373291 -15202,2018-03-26 10:00:00,25.88400077819824,5.445000171661377,38.70800018310547,7.34499979019165,-12.229000091552734,-2.440999984741211,27.45599937438965 -15203,2018-03-26 11:00:00,28.145999908447266,6.7849998474121085,40.85200119018555,8.630999565124513,-12.229000091552734,-2.440999984741211,31.631000518798828 -15204,2018-03-26 12:00:00,29.23500061035156,6.7849998474121085,40.77199935913086,8.36299991607666,-12.270999908447266,-2.440999984741211,34.707000732421875 -15205,2018-03-26 13:00:00,27.726999282836918,7.706999778747559,40.23500061035156,9.381999969482422,-13.529000282287598,-1.9299999475479128,34.926498413085945 -15206,2018-03-26 14:00:00,27.308000564575195,7.372000217437744,38.65399932861328,8.657999992370605,-12.142999649047852,-1.9299999475479128,33.82849884033203 -15207,2018-03-26 15:00:00,27.895000457763672,7.539000034332275,40.02099990844727,9.248000144958496,-12.142999649047852,-1.9299999475479128,32.72949981689453 -15208,2018-03-26 16:00:00,17.507999420166016,0.0,29.834999084472656,4.502999782562256,-12.142999649047852,-1.9299999475479128,33.16899871826172 -15209,2018-03-26 17:00:00,18.429000854492188,0.0,29.75399971008301,4.3429999351501465,-10.875,-1.9299999475479128,33.16899871826172 -15210,2018-03-26 18:00:00,33.25600051879883,7.789999961853027,42.97000122070313,8.52400016784668,-9.541999816894531,-1.9299999475479128,32.070499420166016 -15211,2018-03-26 19:00:00,30.57500076293945,7.119999885559082,42.19200134277344,8.73900032043457,-10.916999816894531,-1.9299999475479128,30.312000274658203 -15212,2018-03-26 20:00:00,31.58099937438965,7.874000072479247,42.05799865722656,8.845999717712402,-10.885000228881836,-1.9299999475479128,28.55500030517578 -15213,2018-03-26 21:00:00,34.59600067138672,8.795999526977539,45.03400039672852,9.729999542236328,-9.744000434875488,-1.375,26.79700088500977 -15214,2018-03-26 22:00:00,31.832000732421875,8.628000259399414,42.67499923706055,9.677000045776367,-9.79800033569336,-1.375,25.69849967956543 -15215,2018-03-26 23:00:00,29.40299987792969,7.958000183105469,38.70800018310547,8.604999542236326,-9.79800033569336,-1.4500000476837158,25.03899955749512 -15216,2018-03-27 00:00:00,27.726999282836918,7.874000072479247,38.70800018310547,8.819000244140625,-9.79800033569336,-1.2690000534057615,24.15999984741211 -15217,2018-03-27 01:00:00,27.141000747680664,7.789999961853027,37.608001708984375,8.711999893188478,-9.968000411987305,-1.2690000534057615,23.72100067138672 -15218,2018-03-27 02:00:00,28.39699935913086,9.04699993133545,38.30500030517578,9.810999870300291,-9.968000411987305,-1.406999945640564,23.2810001373291 -15219,2018-03-27 03:00:00,24.71199989318848,7.454999923706055,34.79399871826172,8.282999992370605,-9.904000282287598,-1.406999945640564,23.2810001373291 -15220,2018-03-27 04:00:00,27.81100082397461,8.461000442504883,37.93000030517578,9.0600004196167,-9.894000053405762,-1.4390000104904177,22.84199905395508 -15221,2018-03-27 05:00:00,28.73200035095215,8.795999526977539,39.02899932861328,9.56999969482422,-10.031999588012695,-1.4390000104904177,21.96299934387207 -15222,2018-03-27 06:00:00,30.82699966430664,8.461000442504883,40.82500076293945,8.979999542236328,-9.979000091552734,-1.4390000104904177,21.52300071716309 -15223,2018-03-27 07:00:00,29.40299987792969,7.539000034332275,39.99399948120117,8.282999992370605,-10.3100004196167,-1.7380000352859497,21.083999633789062 -15224,2018-03-27 08:00:00,30.99399948120117,8.628000259399414,40.77199935913086,9.274999618530272,-9.361000061035156,-1.7380000352859497,22.402000427246094 -15225,2018-03-27 09:00:00,30.072999954223643,8.543999671936035,43.66699981689453,10.803000450134276,-12.005000114440918,-2.494999885559082,24.160499572753903 -15226,2018-03-27 10:00:00,26.386999130249023,4.60699987411499,38.70800018310547,6.9689998626708975,-11.961999893188477,-2.494999885559082,27.675500869750977 -15227,2018-03-27 11:00:00,27.895000457763672,6.618000030517577,40.262001037597656,8.604999542236326,-11.961999893188477,-2.131999969482422,31.410999298095703 -15228,2018-03-27 12:00:00,26.88999938964844,5.276999950408936,40.10100173950195,7.61299991607666,-12.015000343322756,-3.3480000495910645,34.047500610351555 -15229,2018-03-27 13:00:00,29.56999969482422,7.958000183105469,42.24599838256836,10.07900047302246,-12.015000343322756,-3.3480000495910645,35.80550003051758 -15230,2018-03-27 14:00:00,29.56999969482422,8.041999816894531,41.84400177001953,10.024999618530272,-11.972999572753904,-3.3480000495910645,37.34349822998047 -15231,2018-03-27 15:00:00,29.56999969482422,8.125,41.040000915527344,9.810999870300291,-11.972999572753904,-3.3480000495910645,38.44250106811523 -15232,2018-03-27 16:00:00,29.40299987792969,8.041999816894531,42.64799880981445,9.810999870300291,-12.005000114440918,-3.3480000495910645,37.5634994506836 -15233,2018-03-27 17:00:00,30.072999954223643,7.288000106811522,42.86199951171875,9.16800022125244,-13.230999946594238,-3.3480000495910645,36.46500015258789 -15234,2018-03-27 18:00:00,29.65399932861328,6.86899995803833,40.79800033569336,8.36299991607666,-10.779000282287598,-3.3480000495910645,34.487499237060554 -15235,2018-03-27 19:00:00,26.88999938964844,5.696000099182129,38.11800003051758,7.210999965667725,-11.045000076293944,-2.0580000877380367,32.72949981689453 -15236,2018-03-27 20:00:00,31.16200065612793,7.623000144958496,42.97000122070313,9.034000396728516,-12.23900032043457,-2.0580000877380367,30.97150039672852 -15237,2018-03-27 21:00:00,33.92599868774414,8.963000297546387,45.59700012207031,10.159000396728516,-11.02400016784668,-2.0580000877380367,29.87299919128418 -15238,2018-03-27 22:00:00,27.141000747680664,6.114999771118164,38.70800018310547,7.71999979019165,-11.055999755859377,-2.0580000877380367,28.77449989318848 -15239,2018-03-27 23:00:00,26.88999938964844,7.203999996185303,38.30500030517578,8.819000244140625,-11.003000259399414,-2.0580000877380367,27.89550018310547 -15240,2018-03-28 00:00:00,28.31399917602539,7.539000034332275,39.53799819946289,9.086999893188477,-11.184000015258787,-2.0580000877380367,27.45599937438965 -15241,2018-03-28 01:00:00,28.31399917602539,8.125,39.40399932861328,9.56999969482422,-11.567999839782717,-2.0580000877380367,26.57699966430664 -15242,2018-03-28 02:00:00,24.795000076293945,7.203999996185303,36.777000427246094,8.711999893188478,-11.524999618530272,-2.0580000877380367,26.13750076293945 -15243,2018-03-28 03:00:00,26.88999938964844,7.874000072479247,37.4739990234375,8.95300006866455,-10.223999977111816,-2.0580000877380367,25.69849967956543 -15244,2018-03-28 04:00:00,24.795000076293945,6.86899995803833,37.42100143432617,8.845999717712402,-11.802000045776367,-2.0580000877380367,25.03899955749512 -15245,2018-03-28 05:00:00,27.22500038146973,7.623000144958496,39.24399948120117,9.354999542236328,-11.89799976348877,-2.0580000877380367,24.3799991607666 -15246,2018-03-28 06:00:00,27.308000564575195,6.2829999923706055,38.81499862670898,8.175999641418457,-11.876999855041506,-2.0580000877380367,23.72100067138672 -15247,2018-03-28 07:00:00,28.062000274658203,7.203999996185303,38.78799819946289,8.069000244140625,-10.640000343322754,-2.0580000877380367,23.2810001373291 -15248,2018-03-28 08:00:00,24.62800025939941,5.193999767303467,35.11600112915039,6.888999938964844,-10.619000434875488,-2.0580000877380367,24.3799991607666 -15249,2018-03-28 09:00:00,28.39699935913086,7.623000144958496,40.61100006103516,9.32800006866455,-11.972999572753904,-2.0580000877380367,26.357500076293945 -15250,2018-03-28 10:00:00,24.459999084472656,4.355999946594238,35.597999572753906,5.923999786376952,-11.493000030517578,-2.0580000877380367,30.093000411987305 -15251,2018-03-28 11:00:00,22.70100021362305,0.0,33.93600082397461,5.656000137329103,-11.557000160217283,-2.0580000877380367,33.82849884033203 -15252,2018-03-28 12:00:00,25.381999969482425,4.859000205993652,36.027000427246094,6.486999988555907,-10.928000450134276,-1.503000020980835,36.464500427246094 -15253,2018-03-28 13:00:00,23.53899955749512,5.611999988555908,35.972999572753906,7.585999965667725,-12.218000411987305,-2.719000101089477,38.44250106811523 -15254,2018-03-28 14:00:00,23.70599937438965,6.114999771118164,37.15299987792969,8.578000068664549,-11.951000213623049,-2.719000101089477,41.07899856567383 -15255,2018-03-28 15:00:00,24.459999084472656,6.701000213623048,37.79600143432617,8.819000244140625,-13.166999816894531,-2.0789999961853027,42.61750030517578 -15256,2018-03-28 16:00:00,24.62800025939941,6.7849998474121085,36.1879997253418,8.604999542236326,-11.951000213623049,-2.0789999961853027,41.07899856567383 -15257,2018-03-28 17:00:00,27.05699920654297,6.701000213623048,38.94900131225586,8.711999893188478,-11.972999572753904,-2.0789999961853027,39.10150146484375 -15258,2018-03-28 18:00:00,25.214000701904297,6.031000137329103,36.64300155639648,7.800000190734862,-10.68299961090088,-2.0789999961853027,37.5634994506836 -15259,2018-03-28 19:00:00,24.292999267578125,4.60699987411499,34.79399871826172,6.4070000648498535,-10.447999954223633,-2.0789999961853027,34.926498413085945 -15260,2018-03-28 20:00:00,26.80599975585937,6.7849998474121085,39.055999755859375,8.390000343322754,-11.717000007629396,-2.0789999961853027,32.5099983215332 -15261,2018-03-28 21:00:00,28.39699935913086,7.119999885559082,39.99399948120117,8.819000244140625,-10.50100040435791,-2.0789999961853027,30.75200080871582 -15262,2018-03-28 22:00:00,24.96299934387207,6.7849998474121085,37.31399917602539,8.819000244140625,-11.770000457763672,-2.0789999961853027,29.43400001525879 -15263,2018-03-28 23:00:00,23.87400054931641,6.366000175476074,35.38399887084961,8.282999992370605,-11.706000328063965,-2.0789999961853027,28.55500030517578 -15264,2018-03-29 00:00:00,21.025999069213867,5.193999767303467,33.400001525878906,7.372000217437744,-11.706000328063965,-2.0789999961853027,28.114999771118164 -15265,2018-03-29 01:00:00,18.847999572753903,5.863999843597412,31.79199981689453,7.934999942779541,-11.74899959564209,-2.0789999961853027,28.114999771118164 -15266,2018-03-29 02:00:00,17.004999160766598,4.355999946594238,27.74399948120117,6.031000137329103,-10.71500015258789,-2.0789999961853027,27.89550018310547 -15267,2018-03-29 03:00:00,7.874000072479247,0.0,19.138999938964844,2.868000030517578,-10.800000190734863,-2.0789999961853027,27.67600059509277 -15268,2018-03-29 04:00:00,21.780000686645508,6.533999919891357,32.59600067138672,8.069000244140625,-9.786999702453612,-1.7480000257492063,27.01650047302246 -15269,2018-03-29 05:00:00,23.1200008392334,6.7849998474121085,33.26599884033203,7.98799991607666,-10.246000289916992,-1.7480000257492063,25.69849967956543 -15270,2018-03-29 06:00:00,23.70599937438965,5.947999954223633,33.775001525878906,7.263999938964844,-9.968000411987305,-1.7480000257492063,24.819499969482425 -15271,2018-03-29 07:00:00,26.2189998626709,6.7849998474121085,36.321998596191406,8.015000343322754,-9.041000366210938,-1.246999979019165,24.3799991607666 -15272,2018-03-29 08:00:00,22.36599922180176,5.276999950408936,32.03300094604492,6.942999839782715,-9.33899974822998,-1.524999976158142,25.47900009155273 -15273,2018-03-29 09:00:00,24.125,6.366000175476074,35.73199844360352,8.390000343322754,-10.767999649047852,-1.866000056266785,27.01650047302246 -15274,2018-03-29 10:00:00,20.60700035095215,0.0,33.56100082397461,5.414999961853027,-12.015000343322756,-2.0580000877380367,30.09250068664551 -15275,2018-03-29 11:00:00,18.0939998626709,0.0,29.6200008392334,4.502999782562256,-10.736000061035156,-2.0580000877380367,33.16899871826172 -15276,2018-03-29 12:00:00,16.92099952697754,0.0,30.53199958801269,5.308000087738037,-13.220000267028809,-2.345999956130981,35.36600112915039 -15277,2018-03-29 13:00:00,16.92099952697754,0.0,29.808000564575195,6.004000186920166,-13.220000267028809,-2.345999956130981,37.124000549316406 -15278,2018-03-29 14:00:00,19.937000274658203,4.941999912261963,31.46999931335449,6.888999938964844,-11.994000434875488,-2.345999956130981,39.32149887084961 -15279,2018-03-29 15:00:00,24.62800025939941,7.539000034332275,37.233001708984375,9.409000396728516,-12.04699993133545,-2.345999956130981,39.97999954223633 -15280,2018-03-29 16:00:00,26.55400085449219,7.789999961853027,39.32400131225586,9.838000297546388,-13.30500030517578,-2.345999956130981,38.22299957275391 -15281,2018-03-29 17:00:00,26.72200012207031,7.288000106811522,38.33200073242188,8.657999992370605,-12.164999961853027,-2.345999956130981,36.46500015258789 -15282,2018-03-29 18:00:00,27.64299964904785,6.953000068664551,39.45800018310547,8.416999816894531,-12.142999649047852,-2.345999956130981,35.145999908447266 -15283,2018-03-29 19:00:00,25.80100059509277,5.696000099182129,37.742000579833984,7.210999965667725,-12.04699993133545,-2.345999956130981,33.827999114990234 -15284,2018-03-29 20:00:00,28.145999908447266,7.539000034332275,39.512001037597656,8.925999641418457,-12.185999870300291,-2.1429998874664307,32.5099983215332 -15285,2018-03-29 21:00:00,28.481000900268555,7.789999961853027,40.55699920654297,9.086999893188477,-11.994000434875488,-2.1429998874664307,31.631000518798828 -15286,2018-03-29 22:00:00,26.05200004577637,7.288000106811522,37.367000579833984,8.550999641418457,-10.68299961090088,-2.1429998874664307,30.53199958801269 -15287,2018-03-29 23:00:00,25.381999969482425,7.203999996185303,36.10699844360352,8.203000068664549,-10.640000343322754,-2.1429998874664307,29.43400001525879 -15288,2018-03-30 00:00:00,23.45499992370605,6.701000213623048,34.365001678466804,7.907999992370605,-10.852999687194824,-2.1429998874664307,28.114999771118164 -15289,2018-03-30 01:00:00,23.70599937438965,7.203999996185303,33.69499969482422,8.282999992370605,-10.800000190734863,-2.1429998874664307,27.45599937438965 -15290,2018-03-30 02:00:00,24.292999267578125,7.454999923706055,34.12400054931641,8.36299991607666,-9.626999855041504,-2.1429998874664307,26.57699966430664 -15291,2018-03-30 03:00:00,21.44499969482422,6.114999771118164,32.435001373291016,7.692999839782715,-9.935999870300291,-2.1429998874664307,25.47900009155273 -15292,2018-03-30 04:00:00,23.37100028991699,7.372000217437744,32.78300094604492,8.282999992370605,-10.031999588012695,-2.1429998874664307,24.819499969482425 -15293,2018-03-30 05:00:00,24.125,7.288000106811522,34.097000122070305,8.604999542236326,-10.331000328063965,-2.1429998874664307,24.15999984741211 -15294,2018-03-30 06:00:00,26.05200004577637,6.701000213623048,35.03499984741211,8.121999740600586,-8.071000099182129,-2.1429998874664307,23.72100067138672 -15295,2018-03-30 07:00:00,24.795000076293945,6.2829999923706055,35.4370002746582,7.50600004196167,-10.543999671936035,-2.1429998874664307,23.2810001373291 -15296,2018-03-30 08:00:00,26.88999938964844,7.372000217437744,37.071998596191406,8.578000068664549,-9.477999687194824,-2.1429998874664307,23.06150054931641 -15297,2018-03-30 09:00:00,24.459999084472656,6.86899995803833,37.95700073242188,8.925999641418457,-13.805999755859377,-2.1429998874664307,24.15999984741211 -15298,2018-03-30 10:00:00,17.674999237060547,0.0,30.85300064086914,4.690999984741211,-13.732000350952148,-2.1429998874664307,25.25900077819824 -15299,2018-03-30 11:00:00,19.937000274658203,0.0,32.97100067138672,6.085000038146973,-12.515999794006348,-2.1429998874664307,25.69849967956543 -15300,2018-03-30 12:00:00,16.670000076293945,0.0,30.290000915527344,4.690999984741211,-13.732000350952148,-3.36899995803833,26.57699966430664 -15301,2018-03-30 13:00:00,25.632999420166016,6.198999881744385,38.17100143432617,8.310000419616701,-12.494999885559082,-3.36899995803833,27.89550018310547 -15302,2018-03-30 14:00:00,21.94700050354004,5.276999950408936,34.257999420166016,7.290999889373777,-11.269000053405762,-3.36899995803833,31.19099998474121 -15303,2018-03-30 15:00:00,24.041000366210927,5.78000020980835,36.45600128173828,7.800000190734862,-12.494999885559082,-3.36899995803833,34.04800033569336 -15304,2018-03-30 16:00:00,26.13599967956543,5.947999954223633,36.992000579833984,7.71999979019165,-11.248000144958496,-2.1540000438690186,34.267501831054695 -15305,2018-03-30 17:00:00,26.47100067138672,5.78000020980835,37.0989990234375,6.861999988555907,-11.258000373840332,-2.1540000438690186,33.60850143432617 -15306,2018-03-30 18:00:00,27.141000747680664,5.026000022888184,36.992000579833984,6.326000213623048,-10.01099967956543,-2.1540000438690186,32.06999969482422 -15307,2018-03-30 19:00:00,24.795000076293945,4.440000057220459,35.4640007019043,5.978000164031982,-9.79800033569336,-2.1540000438690186,30.53199958801269 -15308,2018-03-30 20:00:00,28.31399917602539,5.78000020980835,38.25199890136719,6.675000190734862,-9.755000114440918,-2.1540000438690186,29.43400001525879 -15309,2018-03-30 21:00:00,29.738000869750977,7.037000179290772,39.13600158691406,7.425000190734862,-9.755000114440918,0.0,28.334999084472656 -15310,2018-03-30 22:00:00,27.97900009155273,6.701000213623048,38.43899917602539,7.800000190734862,-9.12600040435791,-1.4709999561309814,27.23600006103516 -15311,2018-03-30 23:00:00,26.55400085449219,6.533999919891357,36.66999816894531,7.425000190734862,-9.350000381469728,-1.4709999561309814,26.57699966430664 -15312,2018-03-31 00:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15313,2018-03-31 01:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15314,2018-03-31 02:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15315,2018-03-31 03:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15316,2018-03-31 04:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15317,2018-03-31 05:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15318,2018-03-31 06:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15319,2018-03-31 07:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15320,2018-03-31 08:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15321,2018-03-31 09:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15322,2018-03-31 10:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15323,2018-03-31 11:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15324,2018-03-31 12:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15325,2018-03-31 13:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15326,2018-03-31 14:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15327,2018-03-31 15:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15328,2018-03-31 16:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15329,2018-03-31 17:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15330,2018-03-31 18:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15331,2018-03-31 19:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15332,2018-03-31 20:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15333,2018-03-31 21:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15334,2018-03-31 22:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15335,2018-03-31 23:00:00,23.45499992370605,4.690999984741211,34.12400054931641,6.433000087738037,-10.543999671936035,-1.4709999561309814,26.13750076293945 -15336,2018-04-01 00:00:00,24.125,5.863999843597412,33.373001098632805,6.915999889373777,-9.32900047302246,-1.5349999666213991,27.67600059509277 -15337,2018-04-01 01:00:00,24.54400062561035,5.947999954223633,33.80199813842773,7.263999938964844,-9.425000190734863,-1.5349999666213991,27.01650047302246 -15338,2018-04-01 02:00:00,24.125,6.953000068664551,33.69499969482422,7.71999979019165,-9.4350004196167,-1.3009999990463257,26.35700035095215 -15339,2018-04-01 03:00:00,19.350000381469727,5.110000133514403,29.165000915527344,6.380000114440918,-9.871999740600586,-1.3009999990463257,25.69849967956543 -15340,2018-04-01 04:00:00,22.450000762939453,6.031000137329103,32.273998260498054,7.290999889373777,-10.01099967956543,-1.3009999990463257,25.03899955749512 -15341,2018-04-01 05:00:00,22.28199958801269,6.114999771118164,33.238998413085945,7.665999889373777,-10.0,-1.3969999551773071,24.60000038146973 -15342,2018-04-01 06:00:00,24.292999267578125,5.52899980545044,33.45399856567383,6.675000190734862,-8.934000015258789,-1.3969999551773071,24.15999984741211 -15343,2018-04-01 07:00:00,23.20400047302246,5.276999950408936,32.488998413085945,6.540999889373777,-8.98799991607666,-1.3969999551773071,24.15999984741211 -15344,2018-04-01 08:00:00,21.863000869750977,5.52899980545044,32.83700180053711,7.210999965667725,-10.21399974822998,-1.3220000267028809,25.47900009155273 -15345,2018-04-01 09:00:00,23.95800018310547,6.198999881744385,34.65999984741211,7.532000064849853,-10.21399974822998,-1.22599995136261,28.334999084472656 -15346,2018-04-01 10:00:00,20.356000900268555,0.0,32.40800094604492,5.361000061035156,-11.845000267028809,-2.463000059127808,32.06999969482422 -15347,2018-04-01 11:00:00,27.726999282836918,7.203999996185303,38.27899932861328,8.845999717712402,-10.586999893188477,-2.463000059127808,36.0255012512207 -15348,2018-04-01 12:00:00,25.968000411987305,5.947999954223633,36.80400085449219,7.665999889373777,-10.55500030517578,-2.463000059127808,38.88150024414063 -15349,2018-04-01 13:00:00,22.617000579833984,5.52899980545044,34.79399871826172,7.532000064849853,-11.909000396728516,-2.463000059127808,40.20050048828125 -15350,2018-04-01 14:00:00,23.28700065612793,5.696000099182129,34.632999420166016,7.263999938964844,-11.89799976348877,-2.463000059127808,42.397499084472656 -15351,2018-04-01 15:00:00,25.214000701904297,7.119999885559082,36.992000579833984,8.791999816894531,-11.982999801635742,-2.463000059127808,42.83700180053711 -15352,2018-04-01 16:00:00,26.88999938964844,7.203999996185303,37.6349983215332,8.496999740600586,-10.651000022888184,-2.463000059127808,40.63949966430664 -15353,2018-04-01 17:00:00,25.71699905395508,5.611999988555908,35.40999984741211,6.861999988555907,-9.33899974822998,-2.463000059127808,39.97999954223633 -15354,2018-04-01 18:00:00,28.73200035095215,6.366000175476074,38.33200073242188,7.559000015258789,-9.32900047302246,-2.463000059127808,38.44250106811523 -15355,2018-04-01 19:00:00,27.141000747680664,5.947999954223633,37.367000579833984,7.290999889373777,-10.619000434875488,-2.463000059127808,36.68450164794922 -15356,2018-04-01 20:00:00,28.39699935913086,6.449999809265138,38.198001861572266,7.61299991607666,-9.350000381469728,-2.463000059127808,35.36600112915039 -15357,2018-04-01 21:00:00,29.65399932861328,7.119999885559082,38.49300003051758,7.77400016784668,-9.381999969482422,-1.6529999971389768,34.04800033569336 -15358,2018-04-01 22:00:00,28.31399917602539,7.288000106811522,37.448001861572266,7.934999942779541,-9.361000061035156,-1.2690000534057615,33.16899871826172 -15359,2018-04-01 23:00:00,24.62800025939941,6.031000137329103,33.42699813842773,6.675000190734862,-9.222000122070312,-1.3860000371932983,32.72949981689453 -15360,2018-04-02 00:00:00,20.857999801635746,5.026000022888184,29.64699935913086,5.8439998626708975,-9.253999710083008,-1.3109999895095823,32.290000915527344 -15361,2018-04-02 01:00:00,24.795000076293945,7.119999885559082,34.740001678466804,8.255999565124513,-9.585000038146973,-2.5799999237060547,31.850500106811523 -15362,2018-04-02 02:00:00,24.96299934387207,7.789999961853027,34.49900054931641,8.765000343322754,-9.32900047302246,-2.5799999237060547,31.19099998474121 -15363,2018-04-02 03:00:00,23.95800018310547,7.706999778747559,34.49900054931641,9.034000396728516,-10.55500030517578,-2.5799999237060547,30.75200080871582 -15364,2018-04-02 04:00:00,26.05200004577637,6.198999881744385,35.222999572753906,7.130000114440918,-9.467000007629396,-2.5799999237060547,30.312000274658203 -15365,2018-04-02 05:00:00,23.1200008392334,4.60699987411499,32.83700180053711,5.763000011444093,-9.829999923706056,-1.22599995136261,29.87299919128418 -15366,2018-04-02 06:00:00,27.392000198364247,5.52899980545044,37.367000579833984,6.620999813079834,-10.246000289916992,-1.4390000104904177,29.653499603271484 -15367,2018-04-02 07:00:00,28.565000534057607,5.696000099182129,37.93000030517578,6.513999938964844,-8.956000328063965,-1.4390000104904177,29.653499603271484 -15368,2018-04-02 08:00:00,29.15099906921387,6.449999809265138,38.78799819946289,7.452000141143799,-9.041000366210938,-1.2690000534057615,29.653499603271484 -15369,2018-04-02 09:00:00,27.559999465942383,6.031000137329103,38.62699890136719,7.71999979019165,-11.706000328063965,-2.559000015258789,30.53199958801269 -15370,2018-04-02 10:00:00,25.968000411987305,4.355999946594238,37.04600143432617,6.164999961853027,-10.406000137329102,-2.559000015258789,31.850500106811523 -15371,2018-04-02 11:00:00,26.30299949645996,4.188000202178955,37.31399917602539,6.191999912261963,-11.652999877929688,-2.569000005722046,34.487499237060554 -15372,2018-04-02 12:00:00,28.145999908447266,5.445000171661377,40.23500061035156,7.263999938964844,-11.673999786376951,-2.569000005722046,36.24499893188477 -15373,2018-04-02 13:00:00,28.565000534057607,6.953000068664551,40.31600189208984,8.685000419616701,-11.781000137329102,-2.569000005722046,37.5634994506836 -15374,2018-04-02 14:00:00,28.565000534057607,7.623000144958496,39.94100189208984,8.979999542236328,-11.781000137329102,-2.569000005722046,39.54100036621094 -15375,2018-04-02 15:00:00,30.82699966430664,8.041999816894531,40.31600189208984,9.0600004196167,-10.586999893188477,-2.569000005722046,40.63949966430664 -15376,2018-04-02 16:00:00,31.32900047302246,8.041999816894531,41.65599822998047,9.194000244140623,-10.607999801635742,-1.2150000333786009,39.76100158691406 -15377,2018-04-02 17:00:00,33.34000015258789,7.958000183105469,42.19200134277344,8.36299991607666,-8.027999877929688,-1.524999976158142,38.00299835205078 -15378,2018-04-02 18:00:00,32.16699981689453,6.953000068664551,41.62900161743164,7.800000190734862,-9.232999801635742,-1.2150000333786009,36.68450164794922 -15379,2018-04-02 19:00:00,31.99900054931641,7.288000106811522,40.50299835205078,7.854000091552732,-7.85699987411499,-1.2150000333786009,35.36600112915039 -15380,2018-04-02 20:00:00,33.50699996948242,7.372000217437744,41.44200134277344,7.3979997634887695,-7.847000122070312,0.0,34.707000732421875 -15381,2018-04-02 21:00:00,35.60100173950195,9.04699993133545,43.98799896240234,9.435999870300291,-8.336999893188478,-1.2690000534057615,33.827999114990234 -15382,2018-04-02 22:00:00,33.005001068115234,10.052000045776367,40.63800048828125,10.024999618530272,-9.531000137329102,0.0,32.94900131225586 -15383,2018-04-02 23:00:00,31.496999740600582,8.543999671936035,41.09299850463867,8.925999641418457,-9.477999687194824,-1.3220000267028809,32.290000915527344 -15384,2018-04-03 00:00:00,28.899999618530277,8.628000259399414,39.27000045776367,9.48900032043457,-9.45699977874756,-1.2369999885559082,31.631000518798828 -15385,2018-04-03 01:00:00,27.64299964904785,7.372000217437744,37.42100143432617,8.36299991607666,-9.49899959564209,-1.2369999885559082,30.75200080871582 -15386,2018-04-03 02:00:00,26.05200004577637,7.288000106811522,36.50899887084961,8.685000419616701,-10.597000122070312,-2.569000005722046,30.09250068664551 -15387,2018-04-03 03:00:00,25.632999420166016,6.7849998474121085,35.8120002746582,7.71999979019165,-9.33899974822998,-1.2580000162124634,29.43400001525879 -15388,2018-04-03 04:00:00,25.968000411987305,6.953000068664551,36.13399887084961,8.175999641418457,-9.33899974822998,-1.2580000162124634,28.99399948120117 -15389,2018-04-03 05:00:00,25.80100059509277,7.203999996185303,35.40999984741211,8.069000244140625,-9.894000053405762,-1.2580000162124634,28.334999084472656 -15390,2018-04-03 06:00:00,29.15099906921387,7.706999778747559,39.512001037597656,8.470999717712402,-10.543999671936035,-2.483999967575073,27.67600059509277 -15391,2018-04-03 07:00:00,26.47100067138672,6.198999881744385,37.6349983215332,7.532000064849853,-11.770000457763672,-2.483999967575073,27.67600059509277 -15392,2018-04-03 08:00:00,25.381999969482425,5.445000171661377,36.26800155639648,7.23799991607666,-10.51200008392334,-2.483999967575073,28.554500579833984 -15393,2018-04-03 09:00:00,21.277000427246094,0.0,35.222999572753906,5.736000061035156,-13.519000053405762,-2.483999967575073,30.75149917602539 -15394,2018-04-03 10:00:00,20.52300071716309,5.026000022888184,33.56100082397461,7.532000064849853,-12.229000091552734,-2.483999967575073,34.48699951171875 -15395,2018-04-03 11:00:00,16.670000076293945,0.0,29.459999084472656,5.736000061035156,-13.47599983215332,-2.483999967575073,37.78350067138672 -15396,2018-04-03 12:00:00,16.166999816894528,0.0,28.4950008392334,4.449999809265137,-12.23900032043457,-2.483999967575073,40.20050048828125 -15397,2018-04-03 13:00:00,15.916000366210938,0.0,28.601999282836918,4.449999809265137,-12.23900032043457,-2.345999956130981,42.397499084472656 -15398,2018-04-03 14:00:00,14.743000030517578,0.0,26.96699905395508,4.3429999351501465,-12.23900032043457,-2.227999925613404,43.93600082397461 -15399,2018-04-03 15:00:00,16.166999816894528,0.0,27.66399955749512,4.449999809265137,-11.055999755859377,-1.6419999599456787,45.03400039672852 -15400,2018-04-03 16:00:00,26.30299949645996,5.193999767303467,37.04600143432617,6.755000114440918,-11.119999885559082,-1.5570000410079956,43.93600082397461 -15401,2018-04-03 17:00:00,25.381999969482425,4.188000202178955,34.01599884033203,5.0929999351501465,-8.593000411987305,-1.5570000410079956,42.83700180053711 -15402,2018-04-03 18:00:00,32.83700180053711,7.372000217437744,42.13899993896485,7.71999979019165,-8.625,-1.2580000162124634,41.51850128173828 -15403,2018-04-03 19:00:00,29.82099914550781,5.110000133514403,38.92200088500977,6.058000087738037,-8.63599967956543,-1.3860000371932983,39.10200119018555 -15404,2018-04-03 20:00:00,24.292999267578125,0.0,34.17699813842773,4.36899995803833,-8.848999977111816,-1.3860000371932983,36.90399932861328 -15405,2018-04-03 21:00:00,28.229999542236328,6.031000137329103,36.696998596191406,6.460000038146973,-7.579999923706055,0.0,35.145999908447266 -15406,2018-04-03 22:00:00,23.45499992370605,4.775000095367432,32.569000244140625,5.923999786376952,-8.63599967956543,-1.2369999885559082,33.827999114990234 -15407,2018-04-03 23:00:00,18.847999572753903,0.0,28.03899955749512,4.209000110626222,-8.63599967956543,-1.22599995136261,32.94900131225586 -15408,2018-04-04 00:00:00,17.759000778198242,0.0,26.00200080871582,4.502999782562256,-8.571999549865723,-1.2690000534057615,32.06999969482422 -15409,2018-04-04 01:00:00,14.91100025177002,0.0,24.768999099731445,3.9140000343322754,-9.85099983215332,-1.22599995136261,30.53199958801269 -15410,2018-04-04 02:00:00,14.491999626159668,0.0,24.742000579833984,4.797999858856201,-10.5649995803833,-1.524999976158142,28.554500579833984 -15411,2018-04-04 03:00:00,12.5649995803833,0.0,22.54400062561035,4.744999885559082,-9.008999824523926,-2.483999967575073,26.796499252319336 -15412,2018-04-04 04:00:00,14.994000434875488,0.0,24.25900077819824,4.959000110626222,-9.13700008392334,-2.483999967575073,25.25900077819824 -15413,2018-04-04 05:00:00,12.480999946594238,0.0,22.62400054931641,3.2969999313354488,-10.3100004196167,-2.483999967575073,23.94050025939941 -15414,2018-04-04 06:00:00,15.07800006866455,0.0,26.18899917602539,4.36899995803833,-10.725000381469728,-1.3539999723434448,22.621999740600582 -15415,2018-04-04 07:00:00,15.161999702453612,0.0,24.5,3.51200008392334,-9.520999908447266,0.0,21.74300003051757 -15416,2018-04-04 08:00:00,13.234999656677244,0.0,24.55400085449219,4.477000236511231,-10.746999740600586,-1.246999979019165,20.864500045776367 -15417,2018-04-04 09:00:00,16.166999816894528,0.0,27.10099983215332,5.254000186920166,-9.70199966430664,-1.3009999990463257,19.98550033569336 -15418,2018-04-04 10:00:00,16.419000625610348,0.0,27.34199905395508,4.209000110626222,-10.991999626159668,-2.5480000972747803,19.766000747680664 -15419,2018-04-04 11:00:00,16.166999816894528,0.0,27.55599975585937,3.99399995803833,-11.06700038909912,-2.5480000972747803,19.766000747680664 -15420,2018-04-04 12:00:00,13.654000282287598,0.0,25.41200065612793,2.9489998817443848,-11.03499984741211,-2.5480000972747803,19.766000747680664 -15421,2018-04-04 13:00:00,14.91100025177002,0.0,26.69899940490723,4.422999858856201,-11.06700038909912,-2.5480000972747803,19.98550033569336 -15422,2018-04-04 14:00:00,18.26099967956543,0.0,28.44099998474121,4.824999809265137,-9.935999870300291,-2.5480000972747803,19.98550033569336 -15423,2018-04-04 15:00:00,22.36599922180176,4.5229997634887695,33.05099868774414,6.111999988555907,-11.204999923706056,-2.5480000972747803,19.766000747680664 -15424,2018-04-04 16:00:00,29.90500068664551,7.288000106811522,40.93199920654297,8.604999542236326,-9.914999961853027,-2.5480000972747803,19.54599952697754 -15425,2018-04-04 17:00:00,29.65399932861328,6.618000030517577,40.58399963378906,7.854000091552732,-11.130000114440918,-2.5480000972747803,19.10650062561035 -15426,2018-04-04 18:00:00,30.492000579833984,6.701000213623048,39.99399948120117,7.585999965667725,-8.593000411987305,-2.5480000972747803,19.10650062561035 -15427,2018-04-04 19:00:00,27.308000564575195,5.193999767303467,36.5359992980957,6.298999786376952,-9.84000015258789,-2.5480000972747803,19.10650062561035 -15428,2018-04-04 20:00:00,32.333999633789055,7.958000183105469,40.77199935913086,8.416999816894531,-8.593000411987305,-1.2150000333786009,19.10650062561035 -15429,2018-04-04 21:00:00,31.58099937438965,7.288000106811522,42.03099822998047,8.36299991607666,-9.883000373840332,-1.2150000333786009,19.10650062561035 -15430,2018-04-04 22:00:00,29.40299987792969,7.372000217437744,39.72600173950195,8.444000244140625,-9.968000411987305,-2.483999967575073,18.66699981689453 -15431,2018-04-04 23:00:00,27.141000747680664,6.7849998474121085,37.98400115966797,8.203000068664549,-11.194000244140623,-2.483999967575073,18.66699981689453 -15432,2018-04-05 00:00:00,25.80100059509277,7.119999885559082,35.35699844360352,7.907999992370605,-9.914999961853027,-1.2150000333786009,18.66699981689453 -15433,2018-04-05 01:00:00,24.96299934387207,7.203999996185303,33.47999954223633,7.854000091552732,-8.741999626159668,-1.2899999618530271,18.66699981689453 -15434,2018-04-05 02:00:00,25.381999969482425,7.203999996185303,34.928001403808594,8.416999816894531,-9.744000434875488,-1.2899999618530271,18.44700050354004 -15435,2018-04-05 03:00:00,25.381999969482425,7.706999778747559,35.25,8.630999565124513,-9.626999855041504,-1.2899999618530271,18.227500915527344 -15436,2018-04-05 04:00:00,23.28700065612793,7.539000034332275,34.713001251220696,8.578000068664549,-9.755000114440918,-1.2899999618530271,17.788000106811523 -15437,2018-04-05 05:00:00,24.125,7.288000106811522,33.85599899291992,8.390000343322754,-9.605999946594238,-1.2899999618530271,17.568000793457028 -15438,2018-04-05 06:00:00,26.63800048828125,6.953000068664551,36.321998596191406,8.069000244140625,-9.531000137329102,-1.2899999618530271,17.568000793457028 -15439,2018-04-05 07:00:00,26.88999938964844,6.2829999923706055,36.1879997253418,7.290999889373777,-10.095999717712402,-1.2150000333786009,17.348499298095707 -15440,2018-04-05 08:00:00,22.0310001373291,4.355999946594238,31.631000518798828,5.736000061035156,-10.0,-2.45199990272522,17.128999710083008 -15441,2018-04-05 09:00:00,27.47599983215332,5.863999843597412,39.56499862670898,7.960999965667725,-11.248000144958496,-2.687000036239624,16.469499588012695 -15442,2018-04-05 10:00:00,24.795000076293945,0.0,36.29499816894531,4.932000160217285,-11.248000144958496,-2.687000036239624,15.371000289916992 -15443,2018-04-05 11:00:00,28.73200035095215,5.026000022888184,40.50299835205078,6.7820000648498535,-11.321999549865724,-2.687000036239624,14.053000450134276 -15444,2018-04-05 12:00:00,27.47599983215332,5.193999767303467,39.11000061035156,6.888999938964844,-11.321999549865724,-2.687000036239624,12.95400047302246 -15445,2018-04-05 13:00:00,30.40800094604492,6.198999881744385,41.81700134277344,7.77400016784668,-11.472000122070312,-2.687000036239624,12.95400047302246 -15446,2018-04-05 14:00:00,29.40299987792969,5.947999954223633,40.87900161743164,7.692999839782715,-11.472000122070312,-2.687000036239624,12.295000076293944 -15447,2018-04-05 15:00:00,29.066999435424805,5.947999954223633,39.94100189208984,7.61299991607666,-11.289999961853027,-2.687000036239624,12.074999809265137 -15448,2018-04-05 16:00:00,31.916000366210927,6.701000213623048,41.84400177001953,8.14900016784668,-9.894000053405762,-2.0580000877380367,11.635499954223633 -15449,2018-04-05 17:00:00,30.99399948120117,5.276999950408936,42.11199951171875,7.1040000915527335,-11.109000205993652,-2.0580000877380367,11.196499824523926 -15450,2018-04-05 18:00:00,29.40299987792969,4.941999912261963,40.66400146484375,6.861999988555907,-11.22599983215332,-2.0580000877380367,11.196499824523926 -15451,2018-04-05 19:00:00,32.501998901367195,6.198999881744385,43.37200164794922,7.854000091552732,-11.333000183105469,-3.2839999198913574,11.196499824523926 -15452,2018-04-05 20:00:00,32.250999450683594,6.198999881744385,42.88899993896485,7.800000190734862,-10.095999717712402,-1.950999975204468,11.196499824523926 -15453,2018-04-05 21:00:00,27.22500038146973,4.440000057220459,39.32400131225586,6.4070000648498535,-11.248000144958496,-3.16599988937378,11.196499824523926 -15454,2018-04-05 22:00:00,24.54400062561035,4.690999984741211,36.50899887084961,7.050000190734862,-12.54800033569336,-3.16599988937378,11.635499954223633 -15455,2018-04-05 23:00:00,18.429000854492188,0.0,29.48600006103516,4.664000034332275,-11.22599983215332,-3.16599988937378,11.635499954223633 -15456,2018-04-06 00:00:00,29.738000869750977,7.874000072479247,39.75299835205078,9.0600004196167,-10.416000366210938,-1.950999975204468,11.85550022125244 -15457,2018-04-06 01:00:00,27.97900009155273,7.037000179290772,38.81499862670898,8.336999893188478,-10.532999992370604,-1.950999975204468,11.85550022125244 -15458,2018-04-06 02:00:00,29.066999435424805,6.86899995803833,38.52000045776367,8.255999565124513,-9.211000442504885,-1.950999975204468,11.63599967956543 -15459,2018-04-06 03:00:00,24.87899971008301,6.031000137329103,35.972999572753906,8.069000244140625,-10.331000328063965,-1.950999975204468,12.294500350952148 -15460,2018-04-06 04:00:00,26.13599967956543,6.701000213623048,37.98400115966797,8.444000244140625,-10.427000045776367,-1.950999975204468,12.95400047302246 -15461,2018-04-06 05:00:00,25.632999420166016,6.7849998474121085,37.6349983215332,8.630999565124513,-10.37399959564209,-1.950999975204468,12.95400047302246 -15462,2018-04-06 06:00:00,29.98900032043457,6.7849998474121085,38.86800003051758,7.639999866485598,-9.062000274658203,-1.5570000410079956,12.95400047302246 -15463,2018-04-06 07:00:00,22.86899948120117,4.60699987411499,32.944000244140625,6.191999912261963,-10.095999717712402,-1.5570000410079956,13.173500061035154 -15464,2018-04-06 08:00:00,28.899999618530277,6.2829999923706055,38.01100158691406,7.0229997634887695,-8.859999656677246,-1.5570000410079956,14.272500038146973 -15465,2018-04-06 09:00:00,31.32900047302246,7.958000183105469,42.19200134277344,9.274999618530272,-10.468999862670898,-2.8250000476837163,16.469499588012695 -15466,2018-04-06 10:00:00,27.141000747680664,4.355999946594238,38.76100158691406,6.111999988555907,-11.940999984741213,-2.8250000476837163,18.44750022888184 -15467,2018-04-06 11:00:00,28.81599998474121,6.533999919891357,40.71799850463867,8.14900016784668,-11.961999893188477,-2.8250000476837163,21.083999633789062 -15468,2018-04-06 12:00:00,28.64900016784668,5.611999988555908,40.262001037597656,7.452000141143799,-11.961999893188477,-2.8250000476837163,24.15999984741211 -15469,2018-04-06 13:00:00,26.80599975585937,4.775000095367432,37.98400115966797,6.486999988555907,-10.800000190734863,-1.8229999542236328,25.917999267578125 -15470,2018-04-06 14:00:00,16.670000076293945,0.0,27.93199920654297,4.155000209808351,-10.939000129699709,-3.0380001068115234,26.57699966430664 -15471,2018-04-06 15:00:00,17.34000015258789,0.0,27.87800025939941,4.557000160217285,-11.045000076293944,-3.0380001068115234,25.697999954223643 -15472,2018-04-06 16:00:00,15.413000106811523,0.0,26.243000030517567,4.26200008392334,-11.07699966430664,-3.0380001068115234,25.039499282836918 -15473,2018-04-06 17:00:00,16.50200080871582,0.0,26.215999603271484,3.0829999446868896,-9.585000038146973,-1.812000036239624,24.3799991607666 -15474,2018-04-06 18:00:00,18.429000854492188,0.0,28.78899955749512,4.611000061035156,-9.776000022888184,-1.812000036239624,22.40250015258789 -15475,2018-04-06 19:00:00,24.041000366210927,0.0,34.65999984741211,4.879000186920166,-9.776000022888184,-1.246999979019165,20.644500732421875 -15476,2018-04-06 20:00:00,24.125,0.0,34.60599899291992,4.90500020980835,-11.03499984741211,-2.569000005722046,19.54599952697754 -15477,2018-04-06 21:00:00,22.617000579833984,4.440000057220459,34.553001403808594,6.298999786376952,-11.109000205993652,-1.7699999809265137,18.66699981689453 -15478,2018-04-06 22:00:00,28.73200035095215,8.628000259399414,39.53799819946289,9.784000396728516,-11.215999603271484,-1.7699999809265137,18.227500915527344 -15479,2018-04-06 23:00:00,26.88999938964844,7.454999923706055,35.91999816894531,8.336999893188478,-8.741999626159668,-1.7699999809265137,17.788000106811523 -15480,2018-04-07 00:00:00,25.968000411987305,6.7849998474121085,35.7859992980957,7.934999942779541,-10.107000350952148,-1.7699999809265137,17.568500518798828 -15481,2018-04-07 01:00:00,22.53400039672852,6.198999881744385,32.72999954223633,7.425000190734862,-8.838000297546387,-1.7699999809265137,16.68950080871582 -15482,2018-04-07 02:00:00,29.82099914550781,8.963000297546387,39.18999862670898,9.56999969482422,-9.894000053405762,-1.7699999809265137,16.030500411987305 -15483,2018-04-07 03:00:00,26.30299949645996,7.958000183105469,35.7859992980957,8.711999893188478,-8.753000259399414,-1.715999960899353,15.371000289916992 -15484,2018-04-07 04:00:00,27.392000198364247,8.208999633789062,38.54700088500977,9.409000396728516,-9.935999870300291,-1.715999960899353,14.711999893188477 -15485,2018-04-07 05:00:00,27.726999282836918,7.706999778747559,37.6619987487793,8.711999893188478,-9.477999687194824,-1.715999960899353,14.052499771118164 -15486,2018-04-07 06:00:00,28.39699935913086,7.288000106811522,38.38600158691406,8.282999992370605,-9.734000205993652,-1.2690000534057615,13.393500328063965 -15487,2018-04-07 07:00:00,27.895000457763672,6.953000068664551,38.89500045776367,7.960999965667725,-11.012999534606934,-1.2690000534057615,13.393500328063965 -15488,2018-04-07 08:00:00,26.55400085449219,5.947999954223633,37.0989990234375,6.915999889373777,-10.960000038146973,-1.2690000534057615,14.932000160217283 -15489,2018-04-07 09:00:00,31.32900047302246,8.543999671936035,42.51399993896485,10.722000122070312,-9.734000205993652,-1.2690000534057615,16.68950080871582 -15490,2018-04-07 10:00:00,23.28700065612793,0.0,34.49900054931641,5.065999984741211,-10.960000038146973,-2.494999885559082,19.54599952697754 -15491,2018-04-07 11:00:00,31.832000732421875,7.119999885559082,42.64799880981445,8.36299991607666,-10.960000038146973,-2.494999885559082,22.40250015258789 -15492,2018-04-07 12:00:00,31.077999114990234,6.7849998474121085,42.00500106811523,8.470999717712402,-10.960000038146973,-2.494999885559082,23.94050025939941 -15493,2018-04-07 13:00:00,27.97900009155273,6.701000213623048,39.53799819946289,8.203000068664549,-11.17300033569336,-2.494999885559082,25.25900077819824 -15494,2018-04-07 14:00:00,30.90999984741211,8.628000259399414,42.11199951171875,9.756999969482422,-11.17300033569336,-2.494999885559082,26.79700088500977 -15495,2018-04-07 15:00:00,30.492000579833984,8.041999816894531,41.57600021362305,9.48900032043457,-10.053999900817873,-2.494999885559082,27.67600059509277 -15496,2018-04-07 16:00:00,32.417999267578125,8.628000259399414,42.43399810791016,9.595999717712402,-10.107000350952148,-2.494999885559082,26.57699966430664 -15497,2018-04-07 17:00:00,33.42300033569336,8.293000221252441,42.64799880981445,8.925999641418457,-8.817000389099121,-2.494999885559082,25.25849914550781 -15498,2018-04-07 18:00:00,30.90999984741211,7.203999996185303,41.38800048828125,8.604999542236326,-10.182000160217283,-2.494999885559082,23.500999450683597 -15499,2018-04-07 19:00:00,32.669998168945305,7.119999885559082,42.40700149536133,7.88100004196167,-9.989999771118164,-2.494999885559082,21.52300071716309 -15500,2018-04-07 20:00:00,33.34000015258789,7.789999961853027,42.91600036621094,8.229000091552733,-9.968000411987305,-1.22599995136261,19.766000747680664 -15501,2018-04-07 21:00:00,34.68000030517578,8.543999671936035,45.06000137329102,9.220999717712402,-10.04300022125244,-1.4609999656677246,18.227500915527344 -15502,2018-04-07 22:00:00,32.333999633789055,9.550000190734863,44.28300094604492,11.12399959564209,-11.717000007629396,-1.4609999656677246,17.128999710083008 -15503,2018-04-07 23:00:00,30.82699966430664,8.125,42.59400177001953,9.810999870300291,-9.274999618530272,-1.4709999561309814,16.25 -15504,2018-04-08 00:00:00,30.492000579833984,8.628000259399414,41.49499893188477,9.756999969482422,-10.756999969482422,-1.4709999561309814,15.371000289916992 -15505,2018-04-08 01:00:00,31.16200065612793,9.717000007629396,41.09299850463867,10.45400047302246,-9.467000007629396,-1.4709999561309814,14.932000160217283 -15506,2018-04-08 02:00:00,28.983999252319336,8.125,39.11000061035156,9.034000396728516,-9.562999725341797,-1.4709999561309814,14.491999626159668 -15507,2018-04-08 03:00:00,27.22500038146973,7.706999778747559,37.87699890136719,9.0600004196167,-10.640000343322754,-1.4709999561309814,14.491999626159668 -15508,2018-04-08 04:00:00,30.1560001373291,8.461000442504883,39.32400131225586,9.32800006866455,-8.305000305175781,-1.5570000410079956,14.053000450134276 -15509,2018-04-08 05:00:00,29.40299987792969,8.293000221252441,38.94900131225586,8.979999542236328,-8.689000129699707,-1.6740000247955322,13.61299991607666 -15510,2018-04-08 06:00:00,32.250999450683594,7.623000144958496,40.90599822998047,8.310000419616701,-9.211000442504885,-1.6740000247955322,12.95400047302246 -15511,2018-04-08 07:00:00,29.65399932861328,7.288000106811522,39.83300018310547,7.88100004196167,-9.222000122070312,-1.246999979019165,13.173999786376951 -15512,2018-04-08 08:00:00,26.80599975585937,6.449999809265138,35.652000427246094,6.942999839782715,-9.114999771118164,-1.22599995136261,15.810500144958494 -15513,2018-04-08 09:00:00,28.983999252319336,7.874000072479247,41.01300048828125,9.54300022125244,-11.53600025177002,-2.505000114440918,18.227500915527344 -15514,2018-04-08 10:00:00,26.88999938964844,4.60699987411499,39.27000045776367,6.835000038146973,-12.782999992370604,-2.0580000877380367,22.1825008392334 -15515,2018-04-08 11:00:00,23.20400047302246,4.188000202178955,34.01599884033203,6.4070000648498535,-10.21399974822998,-2.0580000877380367,25.25900077819824 -15516,2018-04-08 12:00:00,24.71199989318848,4.941999912261963,35.597999572753906,6.942999839782715,-11.428999900817873,-1.940000057220459,27.89550018310547 -15517,2018-04-08 13:00:00,22.53400039672852,4.775000095367432,33.82899856567383,6.888999938964844,-11.503999710083008,-2.0360000133514404,30.3125 -15518,2018-04-08 14:00:00,26.2189998626709,7.119999885559082,37.448001861572266,8.496999740600586,-11.493000030517578,-2.0360000133514404,32.72949981689453 -15519,2018-04-08 15:00:00,29.066999435424805,7.874000072479247,40.15499877929688,9.16800022125244,-11.397000312805176,-2.0360000133514404,34.267501831054695 -15520,2018-04-08 16:00:00,29.98900032043457,8.125,40.93199920654297,9.381999969482422,-10.342000007629396,-2.0360000133514404,33.388999938964844 -15521,2018-04-08 17:00:00,31.99900054931641,8.041999816894531,41.17399978637695,8.604999542236326,-8.678000450134277,-2.0360000133514404,32.06999969482422 -15522,2018-04-08 18:00:00,31.66399955749512,7.623000144958496,41.09299850463867,8.336999893188478,-9.968000411987305,-1.6100000143051147,30.312000274658203 -15523,2018-04-08 19:00:00,33.34000015258789,7.958000183105469,41.95100021362305,8.470999717712402,-8.753000259399414,-1.4500000476837158,28.334999084472656 -15524,2018-04-08 20:00:00,29.98900032043457,6.953000068664551,39.887001037597656,8.041999816894531,-8.753000259399414,-1.4500000476837158,27.23600006103516 -15525,2018-04-08 21:00:00,28.64900016784668,5.276999950408936,38.11800003051758,6.298999786376952,-8.838000297546387,-1.5349999666213991,26.35700035095215 -15526,2018-04-08 22:00:00,24.54400062561035,5.52899980545044,35.007999420166016,7.130000114440918,-10.04300022125244,-1.5349999666213991,25.917999267578125 -15527,2018-04-08 23:00:00,20.27199935913086,4.188000202178955,29.05699920654297,5.065999984741211,-8.61400032043457,-1.5349999666213991,25.03899955749512 -15528,2018-04-09 00:00:00,24.125,6.701000213623048,33.69499969482422,7.800000190734862,-8.550000190734862,-1.343000054359436,23.500999450683597 -15529,2018-04-09 01:00:00,28.899999618530277,8.376999855041504,39.75299835205078,9.48900032043457,-11.03499984741211,-1.6419999599456787,21.96299934387207 -15530,2018-04-09 02:00:00,30.90999984741211,8.795999526977539,39.24399948120117,9.354999542236328,-8.529000282287598,-1.5140000581741333,21.083999633789062 -15531,2018-04-09 03:00:00,28.481000900268555,8.543999671936035,37.93000030517578,9.381999969482422,-9.744000434875488,-1.5140000581741333,20.20499992370605 -15532,2018-04-09 04:00:00,29.65399932861328,8.543999671936035,39.512001037597656,9.32800006866455,-9.871999740600586,-1.5140000581741333,19.766000747680664 -15533,2018-04-09 05:00:00,30.239999771118164,8.293000221252441,39.24399948120117,8.925999641418457,-8.444000244140625,-1.493000030517578,18.886999130249023 -15534,2018-04-09 06:00:00,30.57500076293945,8.125,40.98600006103516,8.873000144958496,-9.744000434875488,-1.3329999446868896,18.44700050354004 -15535,2018-04-09 07:00:00,31.496999740600582,8.208999633789062,40.36899948120117,8.496999740600586,-8.689000129699707,0.0,18.007999420166016 -15536,2018-04-09 08:00:00,31.32900047302246,8.543999671936035,39.99399948120117,8.604999542236326,-8.699999809265138,0.0,20.644500732421875 -15537,2018-04-09 09:00:00,29.90500068664551,8.208999633789062,41.22700119018555,9.595999717712402,-10.331000328063965,-2.5160000324249268,23.94050025939941 -15538,2018-04-09 10:00:00,26.88999938964844,5.193999767303467,38.33200073242188,6.809000015258789,-11.663999557495115,-2.5160000324249268,28.334999084472656 -15539,2018-04-09 11:00:00,21.527999877929688,0.0,33.10499954223633,5.414999961853027,-11.642000198364258,-2.5160000324249268,32.06999969482422 -15540,2018-04-09 12:00:00,22.95199966430664,4.775000095367432,34.23099899291992,6.675000190734862,-10.383999824523926,-2.5160000324249268,34.267501831054695 -15541,2018-04-09 13:00:00,24.292999267578125,5.947999954223633,36.0,7.61299991607666,-10.437000274658203,-1.5989999771118164,36.24499893188477 -15542,2018-04-09 14:00:00,28.39699935913086,7.958000183105469,39.96699905395508,9.435999870300291,-11.6850004196167,-1.5989999771118164,38.44250106811523 -15543,2018-04-09 15:00:00,28.062000274658203,8.041999816894531,39.887001037597656,9.649999618530272,-11.6850004196167,-1.5989999771118164,39.98049926757813 -15544,2018-04-09 16:00:00,28.062000274658203,7.539000034332275,40.15499877929688,9.140999794006348,-11.717000007629396,-1.5989999771118164,38.88199996948242 -15545,2018-04-09 17:00:00,30.57500076293945,8.293000221252441,41.68299865722656,9.32800006866455,-11.652999877929688,-2.815000057220459,37.124000549316406 -15546,2018-04-09 18:00:00,24.125,0.0,35.54399871826172,5.736000061035156,-10.458999633789062,-1.3860000371932983,35.80550003051758 -15547,2018-04-09 19:00:00,26.972999572753903,6.031000137329103,39.24399948120117,7.88100004196167,-11.854999542236328,-2.632999897003174,33.827999114990234 -15548,2018-04-09 20:00:00,33.17200088500977,8.461000442504883,43.88100051879883,9.810999870300291,-10.628999710083008,-2.632999897003174,32.06999969482422 -15549,2018-04-09 21:00:00,32.83700180053711,8.711999893188478,45.24800109863281,10.53499984741211,-11.93000030517578,-2.632999897003174,30.97150039672852 -15550,2018-04-09 22:00:00,33.590999603271484,10.890000343322754,42.43399810791016,11.472999572753904,-9.232999801635742,-1.8229999542236328,29.653499603271484 -15551,2018-04-09 23:00:00,32.417999267578125,10.13599967956543,42.32600021362305,10.96399974822998,-10.607999801635742,-1.6950000524520874,29.214000701904297 -15552,2018-04-10 00:00:00,29.98900032043457,9.550000190734863,39.94100189208984,10.401000022888184,-10.468999862670898,-1.6950000524520874,28.114999771118164 -15553,2018-04-10 01:00:00,31.66399955749512,9.800999641418455,40.50299835205078,10.427000045776367,-9.12600040435791,-1.4500000476837158,26.79700088500977 -15554,2018-04-10 02:00:00,26.972999572753903,8.376999855041504,37.58200073242188,9.677000045776367,-10.406000137329102,-1.2790000438690186,25.917999267578125 -15555,2018-04-10 03:00:00,26.05200004577637,9.04699993133545,36.696998596191406,10.239999771118164,-10.406000137329102,-2.494999885559082,25.478500366210927 -15556,2018-04-10 04:00:00,25.548999786376957,8.041999816894531,35.35699844360352,8.95300006866455,-9.1899995803833,-2.494999885559082,25.25900077819824 -15557,2018-04-10 05:00:00,25.632999420166016,7.203999996185303,36.027000427246094,8.229000091552733,-9.12600040435791,-1.343000054359436,24.819499969482425 -15558,2018-04-10 06:00:00,26.63800048828125,6.953000068664551,36.1879997253418,7.639999866485598,-9.168999671936035,-1.662999987602234,23.72100067138672 -15559,2018-04-10 07:00:00,24.96299934387207,5.445000171661377,33.80199813842773,6.2189998626708975,-9.1899995803833,-1.3109999895095823,23.500999450683597 -15560,2018-04-10 08:00:00,22.86899948120117,0.0,35.007999420166016,5.629000186920166,-11.717000007629396,-2.5369999408721924,25.917999267578125 -15561,2018-04-10 09:00:00,27.64299964904785,7.119999885559082,40.55699920654297,9.32800006866455,-11.717000007629396,-2.5369999408721924,28.99449920654297 -15562,2018-04-10 10:00:00,19.768999099731445,0.0,32.194000244140625,5.978000164031982,-13.017999649047852,-1.962000012397766,33.16899871826172 -15563,2018-04-10 11:00:00,16.083000183105472,0.0,27.66399955749512,4.2890000343322745,-11.833999633789062,-3.1979999542236333,36.464500427246094 -15564,2018-04-10 12:00:00,12.229999542236328,0.0,25.30500030517578,2.680999994277954,-11.758999824523926,-3.1979999542236333,38.44200134277344 -15565,2018-04-10 13:00:00,13.487000465393065,0.0,26.00200080871582,4.7709999084472665,-13.017999649047852,-3.1979999542236333,39.76100158691406 -15566,2018-04-10 14:00:00,14.659000396728516,0.0,25.518999099731445,4.879000186920166,-11.833999633789062,-3.1979999542236333,41.51850128173828 -15567,2018-04-10 15:00:00,12.480999946594238,0.0,25.92099952697754,4.209000110626222,-13.102999687194824,-3.1979999542236333,42.397499084472656 -15568,2018-04-10 16:00:00,15.83199977874756,0.0,28.601999282836918,4.127999782562257,-13.038999557495115,-3.1979999542236333,41.51850128173828 -15569,2018-04-10 17:00:00,20.43899917602539,0.0,32.59600067138672,5.978000164031982,-11.812999725341797,-3.1979999542236333,39.97999954223633 -15570,2018-04-10 18:00:00,21.44499969482422,0.0,32.59600067138672,5.710000038146973,-10.5649995803833,-3.1979999542236333,38.63750076293945 -15571,2018-04-10 19:00:00,22.95199966430664,0.0,33.31999969482422,5.199999809265137,-10.50100040435791,-1.9830000400543213,36.87950134277344 -15572,2018-04-10 20:00:00,23.53899955749512,4.5229997634887695,33.85599899291992,5.923999786376952,-10.416000366210938,-1.9830000400543213,34.68249893188477 -15573,2018-04-10 21:00:00,24.459999084472656,4.941999912261963,34.06999969482422,6.4070000648498535,-10.36299991607666,-1.5460000038146973,32.92449951171875 -15574,2018-04-10 22:00:00,22.28199958801269,5.193999767303467,31.54999923706055,6.245999813079834,-8.998000144958496,-1.5460000038146973,32.04550170898437 -15575,2018-04-10 23:00:00,20.77400016784668,4.859000205993652,28.92300033569336,5.683000087738037,-9.114999771118164,0.0,31.16699981689453 -15576,2018-04-11 00:00:00,20.356000900268555,4.5229997634887695,26.940000534057607,5.1469998359680185,-6.8979997634887695,0.0,30.727500915527344 -15577,2018-04-11 01:00:00,21.44499969482422,5.696000099182129,31.54999923706055,7.130000114440918,-10.095999717712402,-1.4709999561309814,30.50749969482422 -15578,2018-04-11 02:00:00,22.86899948120117,7.372000217437744,31.65800094604492,8.015000343322754,-8.805999755859375,-1.343000054359436,30.068500518798828 -15579,2018-04-11 03:00:00,20.27199935913086,4.5229997634887695,28.89699935913086,5.5219998359680185,-9.008999824523926,-1.2369999885559082,28.96949958801269 -15580,2018-04-11 04:00:00,17.926000595092773,4.2719998359680185,28.03899955749512,5.388000011444092,-8.923999786376953,-1.2150000333786009,28.31049919128418 -15581,2018-04-11 05:00:00,15.413000106811523,0.0,24.3129997253418,4.36899995803833,-9.052000045776367,-1.2899999618530271,27.651500701904297 -15582,2018-04-11 06:00:00,14.407999992370604,0.0,25.54599952697754,2.7880001068115234,-10.756999969482422,-1.2150000333786009,27.21199989318848 -15583,2018-04-11 07:00:00,17.843000411987305,0.0,26.35000038146973,3.1630001068115234,-9.361000061035156,0.0,26.772499084472656 -15584,2018-04-11 08:00:00,17.34000015258789,0.0,26.618000030517567,2.760999917984009,-9.713000297546388,-1.2690000534057615,28.530500411987305 -15585,2018-04-11 09:00:00,14.576000213623049,0.0,26.215999603271484,3.9140000343322754,-10.277999877929688,-2.6010000705718994,31.16699981689453 -15586,2018-04-11 10:00:00,15.161999702453612,0.0,27.12700080871582,4.502999782562256,-11.982999801635742,-2.1540000438690186,33.80350112915039 -15587,2018-04-11 11:00:00,15.83199977874756,0.0,27.34199905395508,4.235000133514403,-12.005000114440918,-2.186000108718872,36.000999450683594 -15588,2018-04-11 12:00:00,14.491999626159668,0.0,26.69899940490723,3.5380001068115234,-11.909000396728516,-2.0360000133514404,37.97850036621094 -15589,2018-04-11 13:00:00,14.491999626159668,0.0,26.02799987792969,2.252000093460083,-11.951000213623049,-2.0360000133514404,39.51649856567383 -15590,2018-04-11 14:00:00,13.73799991607666,0.0,24.285999298095703,2.0369999408721924,-10.736000061035156,-2.1640000343322754,39.95600128173828 -15591,2018-04-11 15:00:00,14.743000030517578,0.0,25.17099952697754,4.3959999084472665,-10.736000061035156,-1.63100004196167,39.29700088500977 -15592,2018-04-11 16:00:00,15.664999961853027,0.0,26.270000457763672,4.26200008392334,-10.51200008392334,-1.63100004196167,38.198001861572266 -15593,2018-04-11 17:00:00,14.82699966430664,0.0,25.59900093078613,3.190000057220459,-10.52299976348877,-1.63100004196167,35.78099822998047 -15594,2018-04-11 18:00:00,16.250999450683597,0.0,26.16200065612793,2.9489998817443848,-10.437000274658203,-1.3650000095367432,33.583999633789055 -15595,2018-04-11 19:00:00,17.507999420166016,0.0,27.020000457763672,2.760999917984009,-9.381999969482422,-1.3650000095367432,32.04550170898437 -15596,2018-04-11 20:00:00,16.670000076293945,0.0,26.913000106811523,2.733999967575073,-10.607999801635742,-1.5460000038146973,30.288000106811523 -15597,2018-04-11 21:00:00,17.172000885009766,0.0,27.61000061035156,4.36899995803833,-10.619000434875488,-2.782999992370605,28.96949958801269 -15598,2018-04-11 22:00:00,14.156999588012695,0.0,25.27799987792969,3.51200008392334,-10.619000434875488,-2.483999967575073,28.09049987792969 -15599,2018-04-11 23:00:00,15.581000328063965,0.0,26.108999252319336,4.182000160217285,-10.55500030517578,-2.483999967575073,27.87100028991699 -15600,2018-04-12 00:00:00,12.64900016784668,0.0,22.94599914550781,3.2699999809265137,-10.607999801635742,-2.483999967575073,27.21199989318848 -15601,2018-04-12 01:00:00,19.183000564575195,4.5229997634887695,29.083999633789062,6.191999912261963,-9.425000190734863,-2.483999967575073,26.772499084472656 -15602,2018-04-12 02:00:00,19.85300064086914,4.440000057220459,29.4060001373291,5.629000186920166,-9.49899959564209,-2.483999967575073,26.33300018310547 -15603,2018-04-12 03:00:00,20.1879997253418,5.445000171661377,29.32500076293945,6.4070000648498535,-9.28600025177002,-1.3860000371932983,25.89349937438965 -15604,2018-04-12 04:00:00,19.768999099731445,4.440000057220459,28.8700008392334,5.736000061035156,-9.605999946594238,-1.3860000371932983,25.673999786376957 -15605,2018-04-12 05:00:00,13.98900032043457,0.0,23.50900077819824,3.484999895095825,-9.33899974822998,-1.3860000371932983,25.673999786376957 -15606,2018-04-12 06:00:00,14.324000358581545,0.0,24.125,3.4040000438690186,-9.041000366210938,-1.3860000371932983,25.454500198364247 -15607,2018-04-12 07:00:00,15.329999923706056,0.0,24.742000579833984,3.3239998817443848,-9.13700008392334,-1.2690000534057615,25.01449966430664 -15608,2018-04-12 08:00:00,15.246000289916992,0.0,25.38500022888184,3.3239998817443848,-9.114999771118164,-1.3220000267028809,25.23450088500977 -15609,2018-04-12 09:00:00,14.82699966430664,0.0,26.940000534057607,4.690999984741211,-11.833999633789062,-2.5910000801086426,25.454500198364247 -15610,2018-04-12 10:00:00,15.496999740600586,0.0,28.22599983215332,4.209000110626222,-11.833999633789062,-2.5910000801086426,25.673999786376957 -15611,2018-04-12 11:00:00,17.004999160766598,0.0,28.65500068664551,3.8329999446868896,-11.833999633789062,-2.5910000801086426,23.47649955749512 -15612,2018-04-12 12:00:00,13.904999732971191,0.0,26.00200080871582,2.7070000171661377,-11.791000366210938,-2.5910000801086426,22.37800025939941 -15613,2018-04-12 13:00:00,14.82699966430664,0.0,26.457000732421875,3.6719999313354488,-11.791000366210938,-1.8760000467300413,25.673999786376957 -15614,2018-04-12 14:00:00,19.183000564575195,0.0,30.638999938964844,5.361000061035156,-11.269000053405762,-1.4609999656677246,26.772499084472656 -15615,2018-04-12 15:00:00,20.43899917602539,4.5229997634887695,32.16699981689453,6.164999961853027,-11.321999549865724,-1.3009999990463257,26.772499084472656 -15616,2018-04-12 16:00:00,22.114999771118164,0.0,32.702999114990234,5.227000236511231,-11.321999549865724,-2.5369999408721924,26.33300018310547 -15617,2018-04-12 17:00:00,24.54400062561035,4.188000202178955,35.089000701904304,5.334000110626222,-10.086000442504885,-2.5369999408721924,25.89349937438965 -15618,2018-04-12 18:00:00,21.36100006103516,0.0,31.54999923706055,3.7799999713897705,-9.871999740600586,-2.5369999408721924,25.89349937438965 -15619,2018-04-12 19:00:00,23.035999298095703,0.0,33.990001678466804,5.388000011444092,-9.935999870300291,-2.5369999408721924,25.23450088500977 -15620,2018-04-12 20:00:00,22.28199958801269,0.0,33.588001251220696,5.173999786376953,-11.152000427246094,-1.3220000267028809,24.57550048828125 -15621,2018-04-12 21:00:00,19.26700019836425,0.0,29.6200008392334,3.99399995803833,-9.914999961853027,-1.3220000267028809,24.135499954223643 -15622,2018-04-12 22:00:00,20.52300071716309,4.188000202178955,32.72999954223633,6.004000186920166,-11.140999794006348,-1.5140000581741333,23.69650077819824 -15623,2018-04-12 23:00:00,22.70100021362305,5.110000133514403,33.238998413085945,6.380000114440918,-11.119999885559082,-1.662999987602234,23.69650077819824 -15624,2018-04-13 00:00:00,17.507999420166016,0.0,28.54800033569336,4.664000034332275,-10.427000045776367,-1.662999987602234,23.256500244140625 -15625,2018-04-13 01:00:00,20.020999908447266,4.105000019073486,29.218000411987305,5.173999786376953,-8.97700023651123,-1.662999987602234,23.256500244140625 -15626,2018-04-13 02:00:00,16.083000183105472,0.0,26.13599967956543,4.100999832153319,-10.234999656677246,-1.662999987602234,23.256500244140625 -15627,2018-04-13 03:00:00,12.899999618530272,0.0,22.249000549316406,2.815000057220459,-8.529000282287598,-1.246999979019165,23.03700065612793 -15628,2018-04-13 04:00:00,16.334999084472653,0.0,26.77899932861328,4.127999782562257,-9.914999961853027,-2.6440000534057617,22.8174991607666 -15629,2018-04-13 05:00:00,13.152000427246096,0.0,22.51700019836425,3.8059999942779537,-9.914999961853027,-1.2690000534057615,22.597999572753903 -15630,2018-04-13 06:00:00,13.487000465393065,0.0,23.85700035095215,3.2969999313354488,-9.79800033569336,-1.3220000267028809,22.37800025939941 -15631,2018-04-13 07:00:00,14.91100025177002,0.0,24.92900085449219,3.002000093460083,-9.79800033569336,-1.3650000095367432,19.961000442504886 -15632,2018-04-13 08:00:00,20.1879997253418,5.026000022888184,30.39800071716309,5.896999835968018,-9.85099983215332,-1.2580000162124634,18.202999114990234 -15633,2018-04-13 09:00:00,21.61199951171875,5.193999767303467,33.05099868774414,6.9689998626708975,-11.088000297546388,-1.4179999828338623,17.323999404907227 -15634,2018-04-13 10:00:00,23.45499992370605,5.445000171661377,34.60599899291992,7.34499979019165,-11.140999794006348,-2.697000026702881,17.763999938964844 -15635,2018-04-13 11:00:00,16.419000625610348,0.0,28.62899971008301,4.315999984741212,-11.088000297546388,-2.719000101089477,20.40049934387207 -15636,2018-04-13 12:00:00,15.83199977874756,0.0,27.15399932861328,3.2170000076293945,-11.152000427246094,-2.719000101089477,21.7185001373291 -15637,2018-04-13 13:00:00,16.0,0.0,27.50300025939941,3.6989998817443848,-11.17300033569336,-1.4709999561309814,23.03700065612793 -15638,2018-04-13 14:00:00,15.664999961853027,0.0,25.518999099731445,3.8059999942779537,-9.958000183105469,-1.4709999561309814,23.916000366210927 -15639,2018-04-13 15:00:00,14.91100025177002,0.0,26.37700080871582,4.2890000343322745,-11.300999641418455,-1.4709999561309814,24.355499267578125 -15640,2018-04-13 16:00:00,14.82699966430664,0.0,25.893999099731445,4.36899995803833,-11.321999549865724,-1.4709999561309814,24.355499267578125 -15641,2018-04-13 17:00:00,14.324000358581545,0.0,25.518999099731445,3.6989998817443848,-11.37600040435791,-1.5349999666213991,24.355499267578125 -15642,2018-04-13 18:00:00,16.92099952697754,0.0,25.143999099731445,2.9489998817443848,-8.817000389099121,-1.3009999990463257,24.355499267578125 -15643,2018-04-13 19:00:00,16.250999450683597,0.0,26.18899917602539,3.7260000705718994,-9.958000183105469,-1.4500000476837158,23.03700065612793 -15644,2018-04-13 20:00:00,16.92099952697754,0.0,27.288000106811523,3.51200008392334,-9.883000373840332,-1.5460000038146973,21.499000549316406 -15645,2018-04-13 21:00:00,18.17799949645996,0.0,27.93199920654297,4.315999984741212,-9.585000038146973,-1.2690000534057615,20.620500564575195 -15646,2018-04-13 22:00:00,14.91100025177002,0.0,25.117000579833984,3.753000020980835,-9.531000137329102,-1.2690000534057615,19.741500854492188 -15647,2018-04-13 23:00:00,15.748000144958494,0.0,25.868000030517567,4.584000110626222,-10.756999969482422,-1.375,19.961000442504886 -15648,2018-04-14 00:00:00,14.82699966430664,0.0,24.84900093078613,4.100999832153319,-9.616999626159668,-1.3860000371932983,19.082000732421875 -15649,2018-04-14 01:00:00,13.98900032043457,0.0,23.187000274658203,4.235000133514403,-9.520999908447266,-1.2690000534057615,19.082000732421875 -15650,2018-04-14 02:00:00,10.638999938964844,0.0,21.847000122070312,4.315999984741212,-10.800000190734863,-1.2690000534057615,18.202999114990234 -15651,2018-04-14 03:00:00,11.644000053405762,0.0,21.65900039672852,4.797999858856201,-9.935999870300291,-1.2690000534057615,17.763999938964844 -15652,2018-04-14 04:00:00,11.727999687194824,0.0,22.489999771118164,3.378000020980835,-10.107000350952148,-1.2690000534057615,17.763999938964844 -15653,2018-04-14 05:00:00,16.50200080871582,0.0,26.29599952697754,4.90500020980835,-9.85099983215332,-1.2690000534057615,17.763999938964844 -15654,2018-04-14 06:00:00,20.52300071716309,4.775000095367432,30.1299991607666,5.8439998626708975,-10.022000312805176,-1.2690000534057615,16.445499420166016 -15655,2018-04-14 07:00:00,20.020999908447266,4.355999946594238,30.048999786376957,5.4679999351501465,-9.904000282287598,-1.3329999446868896,16.445499420166016 -15656,2018-04-14 08:00:00,20.69099998474121,0.0,30.8799991607666,4.7709999084472665,-10.053999900817873,-1.3009999990463257,16.445499420166016 -15657,2018-04-14 09:00:00,22.36599922180176,4.60699987411499,33.56100082397461,6.5939998626708975,-10.223999977111816,-1.2369999885559082,16.225500106811527 -15658,2018-04-14 10:00:00,17.674999237060547,0.0,29.5939998626709,4.63700008392334,-12.878999710083008,-2.45199990272522,16.445499420166016 -15659,2018-04-14 11:00:00,22.78499984741211,4.690999984741211,35.222999572753906,6.728000164031982,-12.675999641418455,-2.45199990272522,16.88450050354004 -15660,2018-04-14 12:00:00,20.77400016784668,0.0,32.810001373291016,4.53000020980835,-12.687000274658203,-2.45199990272522,17.104499816894528 -15661,2018-04-14 13:00:00,22.78499984741211,4.60699987411499,35.19599914550781,6.380000114440918,-11.407999992370604,-2.45199990272522,17.544000625610348 -15662,2018-04-14 14:00:00,20.60700035095215,0.0,31.95199966430664,5.710000038146973,-11.407999992370604,-1.6419999599456787,17.763500213623047 -15663,2018-04-14 15:00:00,20.1879997253418,0.0,32.35499954223633,5.736000061035156,-12.623000144958494,-1.6419999599456787,20.18099975585937 -15664,2018-04-14 16:00:00,21.69599914550781,0.0,33.45399856567383,5.5219998359680185,-11.333000183105469,-1.6419999599456787,20.18099975585937 -15665,2018-04-14 17:00:00,21.527999877929688,0.0,33.613998413085945,4.959000110626222,-11.194000244140623,-2.868000030517578,18.86199951171875 -15666,2018-04-14 18:00:00,20.1879997253418,0.0,30.7189998626709,3.88700008392334,-11.184000015258787,-1.6100000143051147,18.64249992370605 -15667,2018-04-14 19:00:00,22.95199966430664,0.0,34.28499984741211,5.334000110626222,-11.184000015258787,-1.6100000143051147,18.64249992370605 -15668,2018-04-14 20:00:00,20.52300071716309,0.0,31.14800071716309,4.36899995803833,-9.925999641418455,-1.6100000143051147,18.862499237060547 -15669,2018-04-14 21:00:00,19.099000930786133,0.0,29.9689998626709,4.209000110626222,-11.03499984741211,-1.6100000143051147,18.862499237060547 -15670,2018-04-14 22:00:00,17.759000778198242,0.0,29.27199935913086,4.63700008392334,-11.097999572753906,-1.6100000143051147,18.862499237060547 -15671,2018-04-14 23:00:00,22.28199958801269,4.355999946594238,32.273998260498054,5.576000213623047,-9.871999740600586,-1.6100000143051147,18.42250061035156 -15672,2018-04-15 00:00:00,18.34499931335449,0.0,29.64699935913086,4.879000186920166,-11.482000350952148,-1.6100000143051147,18.42250061035156 -15673,2018-04-15 01:00:00,18.51300048828125,4.105000019073486,29.218000411987305,5.736000061035156,-10.182000160217283,-1.6100000143051147,17.98349952697754 -15674,2018-04-15 02:00:00,17.674999237060547,0.0,28.601999282836918,5.414999961853027,-9.765999794006348,-1.6740000247955322,17.763999938964844 -15675,2018-04-15 03:00:00,17.256000518798828,0.0,26.913000106811523,4.986000061035156,-9.562999725341797,-1.6740000247955322,17.323999404907227 -15676,2018-04-15 04:00:00,17.507999420166016,0.0,27.26099967956543,4.611000061035156,-9.585000038146973,-1.6740000247955322,17.104499816894528 -15677,2018-04-15 05:00:00,14.407999992370604,0.0,25.78700065612793,4.315999984741212,-11.161999702453612,-1.6740000247955322,16.444999694824222 -15678,2018-04-15 06:00:00,14.324000358581545,0.0,24.15200042724609,3.190000057220459,-9.968000411987305,-1.493000030517578,15.786499977111816 -15679,2018-04-15 07:00:00,12.815999984741213,0.0,22.56999969482422,2.5729999542236333,-8.645999908447267,-1.5779999494552612,15.566499710083008 -15680,2018-04-15 08:00:00,14.156999588012695,0.0,23.66900062561035,3.2699999809265137,-9.85099983215332,-1.3329999446868896,17.544000625610348 -15681,2018-04-15 09:00:00,12.984000205993652,0.0,25.09000015258789,3.5380001068115234,-11.109000205993652,-2.6549999713897705,20.40049934387207 -15682,2018-04-15 10:00:00,13.487000465393065,0.0,25.43899917602539,3.2699999809265137,-11.119999885559082,-2.6549999713897705,24.135499954223643 -15683,2018-04-15 11:00:00,14.156999588012695,0.0,26.16200065612793,3.243000030517578,-12.378000259399414,-2.6549999713897705,27.87150001525879 -15684,2018-04-15 12:00:00,11.225000381469728,0.0,24.045000076293945,2.8410000801086426,-12.366999626159668,-2.6549999713897705,30.507999420166016 -15685,2018-04-15 13:00:00,16.0,0.0,27.18099975585937,4.100999832153319,-11.119999885559082,-2.6549999713897705,32.48550033569336 -15686,2018-04-15 14:00:00,13.319000244140623,0.0,25.01000022888184,3.2170000076293945,-12.345999717712402,-2.6549999713897705,35.12200164794922 -15687,2018-04-15 15:00:00,12.229999542236328,0.0,23.9379997253418,2.6540000438690186,-11.07699966430664,-2.6549999713897705,36.000999450683594 -15688,2018-04-15 16:00:00,12.815999984741213,0.0,23.85700035095215,2.3320000171661377,-11.07699966430664,-2.6549999713897705,34.462501525878906 -15689,2018-04-15 17:00:00,14.156999588012695,0.0,26.18899917602539,2.546999931335449,-11.343999862670898,-2.6549999713897705,32.04600143432617 -15690,2018-04-15 18:00:00,15.496999740600586,0.0,25.625999450683597,2.0639998912811284,-10.064000129699709,-1.4390000104904177,30.06800079345703 -15691,2018-04-15 19:00:00,17.004999160766598,0.0,27.23500061035156,2.5199999809265137,-10.118000030517578,-1.4390000104904177,27.87100028991699 -15692,2018-04-15 20:00:00,15.916000366210938,0.0,26.56399917602539,2.760999917984009,-10.267000198364258,-1.4390000104904177,25.01449966430664 -15693,2018-04-15 21:00:00,17.004999160766598,0.0,27.79800033569336,3.3239998817443848,-11.4399995803833,-1.4390000104904177,22.8174991607666 -15694,2018-04-15 22:00:00,16.0,0.0,25.357999801635746,3.0290000438690186,-10.20300006866455,-1.2899999618530271,21.059499740600582 -15695,2018-04-15 23:00:00,15.83199977874756,0.0,25.68000030517578,3.4579999446868896,-10.255999565124512,-1.2899999618530271,19.741500854492188 -15696,2018-04-16 00:00:00,13.904999732971191,0.0,23.40099906921387,3.4040000438690186,-9.201000213623049,-1.2369999885559082,18.862499237060547 -15697,2018-04-16 01:00:00,10.470999717712402,0.0,22.114999771118164,2.7070000171661377,-10.458999633789062,-1.4819999933242798,17.98349952697754 -15698,2018-04-16 02:00:00,11.47599983215332,0.0,20.96199989318848,2.4660000801086426,-9.147000312805176,-1.4819999933242798,17.104499816894528 -15699,2018-04-16 03:00:00,10.13599967956543,0.0,21.069000244140625,2.8410000801086426,-10.31999969482422,-1.4819999933242798,16.665000915527347 -15700,2018-04-16 04:00:00,10.052000045776367,0.0,20.934999465942383,2.5729999542236333,-10.736000061035156,-1.4819999933242798,16.006000518798828 -15701,2018-04-16 05:00:00,11.47599983215332,0.0,21.87299919128418,3.4309999942779537,-9.45699977874756,-1.3109999895095823,15.566499710083008 -15702,2018-04-16 06:00:00,13.152000427246096,0.0,22.864999771118164,2.815000057220459,-10.532999992370604,-1.4500000476837158,15.346500396728516 -15703,2018-04-16 07:00:00,12.64900016784668,0.0,23.42799949645996,2.680999994277954,-10.692999839782717,-1.4500000476837158,15.786499977111816 -15704,2018-04-16 08:00:00,12.480999946594238,0.0,24.47400093078613,3.6459999084472656,-11.961999893188477,-2.6549999713897705,17.544000625610348 -15705,2018-04-16 09:00:00,12.062999725341797,0.0,25.97500038146973,4.7179999351501465,-13.208999633789062,-2.6549999713897705,19.961000442504886 -15706,2018-04-16 10:00:00,14.241000175476074,0.0,28.145999908447266,4.557000160217285,-13.262999534606935,-2.6549999713897705,22.37800025939941 -15707,2018-04-16 11:00:00,13.234999656677244,0.0,26.322999954223643,3.8059999942779537,-12.196999549865724,-2.6549999713897705,24.57550048828125 -15708,2018-04-16 12:00:00,13.73799991607666,0.0,25.868000030517567,2.8949999809265137,-12.196999549865724,-2.6549999713897705,26.772499084472656 -15709,2018-04-16 13:00:00,12.732999801635742,0.0,24.23200035095215,4.26200008392334,-12.20699977874756,-2.6549999713897705,27.43149948120117 -15710,2018-04-16 14:00:00,11.644000053405762,0.0,23.589000701904297,4.477000236511231,-12.281999588012695,-2.6549999713897705,27.43149948120117 -15711,2018-04-16 15:00:00,11.392000198364258,0.0,24.07200050354004,4.26200008392334,-12.281999588012695,-2.6549999713897705,29.18950080871582 -15712,2018-04-16 16:00:00,11.309000015258787,0.0,23.42799949645996,3.859999895095825,-11.06700038909912,-2.6549999713897705,29.84900093078613 -15713,2018-04-16 17:00:00,13.234999656677244,0.0,24.20599937438965,3.4040000438690186,-9.84000015258789,-1.3109999895095823,29.40950012207031 -15714,2018-04-16 18:00:00,13.821999549865724,0.0,24.875999450683597,3.0829999446868896,-11.06700038909912,-1.3109999895095823,28.090999603271484 -15715,2018-04-16 19:00:00,21.94700050354004,4.105000019073486,32.488998413085945,5.414999961853027,-10.980999946594238,-1.3109999895095823,26.11350059509277 -15716,2018-04-16 20:00:00,25.381999969482425,5.361000061035156,36.29499816894531,6.5939998626708975,-10.916999816894531,-1.3109999895095823,23.69650077819824 -15717,2018-04-16 21:00:00,24.041000366210927,5.110000133514403,34.391998291015625,6.460000038146973,-9.862000465393066,-1.3109999895095823,21.938499450683597 -15718,2018-04-16 22:00:00,20.356000900268555,4.941999912261963,31.57699966430664,6.6479997634887695,-11.161999702453612,-2.697000026702881,20.40049934387207 -15719,2018-04-16 23:00:00,21.527999877929688,5.445000171661377,31.54999923706055,6.6479997634887695,-9.968000411987305,-2.697000026702881,19.961000442504886 -15720,2018-04-17 00:00:00,20.020999908447266,5.193999767303467,30.82699966430664,6.915999889373777,-11.17300033569336,-1.4500000476837158,19.521499633789062 -15721,2018-04-17 01:00:00,23.87400054931641,6.618000030517577,32.97100067138672,7.3979997634887695,-8.581999778747559,-1.4500000476837158,19.521499633789062 -15722,2018-04-17 02:00:00,17.089000701904293,4.440000057220459,29.433000564575195,6.460000038146973,-11.951000213623049,-1.4500000476837158,18.862499237060547 -15723,2018-04-17 03:00:00,26.05200004577637,7.958000183105469,36.027000427246094,8.979999542236328,-10.67199993133545,-1.621000051498413,18.202999114990234 -15724,2018-04-17 04:00:00,24.96299934387207,6.701000213623048,36.10699844360352,8.14900016784668,-10.928000450134276,-1.621000051498413,17.98349952697754 -15725,2018-04-17 05:00:00,25.71699905395508,7.372000217437744,35.8390007019043,8.175999641418457,-9.64900016784668,-1.621000051498413,17.763500213623047 -15726,2018-04-17 06:00:00,29.23500061035156,7.288000106811522,38.62699890136719,7.71999979019165,-8.581999778747559,-1.2580000162124634,17.544000625610348 -15727,2018-04-17 07:00:00,28.31399917602539,7.539000034332275,38.06399917602539,7.77400016784668,-9.904000282287598,-1.3329999446868896,17.544000625610348 -15728,2018-04-17 08:00:00,28.565000534057607,7.288000106811522,39.40399932861328,8.336999893188478,-11.258000373840332,-2.664999961853028,19.302000045776367 -15729,2018-04-17 09:00:00,24.041000366210927,5.696000099182129,38.14500045776367,8.015000343322754,-11.258000373840332,-1.5779999494552612,21.938499450683597 -15730,2018-04-17 10:00:00,23.45499992370605,0.0,35.597999572753906,5.119999885559082,-12.505999565124512,-1.866000056266785,25.01449966430664 -15731,2018-04-17 11:00:00,22.0310001373291,0.0,34.12400054931641,5.308000087738037,-12.505999565124512,-1.7699999809265137,28.96949958801269 -15732,2018-04-17 12:00:00,25.632999420166016,5.361000061035156,38.52000045776367,7.184000015258789,-12.345999717712402,-3.124000072479248,31.386999130249023 -15733,2018-04-17 13:00:00,25.381999969482425,6.953000068664551,38.78799819946289,8.604999542236326,-13.571999549865724,-1.99399995803833,33.363998413085945 -15734,2018-04-17 14:00:00,25.71699905395508,5.611999988555908,37.98400115966797,7.317999839782715,-12.345999717712402,-1.99399995803833,36.44049835205078 -15735,2018-04-17 15:00:00,26.88999938964844,6.2829999923706055,39.18999862670898,7.639999866485598,-12.345999717712402,-1.99399995803833,37.75899887084961 -15736,2018-04-17 16:00:00,27.308000564575195,5.78000020980835,38.46599960327149,7.263999938964844,-10.916999816894531,-1.6529999971389768,36.22050094604492 -15737,2018-04-17 17:00:00,27.97900009155273,6.031000137329103,38.84199905395508,6.809000015258789,-10.86400032043457,-1.5779999494552612,34.463001251220696 -15738,2018-04-17 18:00:00,28.229999542236328,5.361000061035156,38.86800003051758,6.4070000648498535,-9.85099983215332,-1.5779999494552612,32.265499114990234 -15739,2018-04-17 19:00:00,32.333999633789055,7.037000179290772,41.54899978637695,7.747000217437744,-8.369000434875487,-1.6950000524520874,30.068500518798828 -15740,2018-04-17 20:00:00,28.229999542236328,5.947999954223633,39.02899932861328,6.942999839782715,-9.765999794006348,-1.6950000524520874,28.09049987792969 -15741,2018-04-17 21:00:00,30.57500076293945,6.366000175476074,41.46799850463867,7.639999866485598,-10.980999946594238,-1.6950000524520874,26.33300018310547 -15742,2018-04-17 22:00:00,26.386999130249023,6.366000175476074,37.55500030517578,7.210999965667725,-10.939000129699709,-1.63100004196167,25.23450088500977 -15743,2018-04-17 23:00:00,25.46500015258789,5.78000020980835,36.29499816894531,6.835000038146973,-9.690999984741213,-1.22599995136261,24.795000076293945 -15744,2018-04-18 00:00:00,23.790000915527344,6.114999771118164,36.321998596191406,7.747000217437744,-11.140999794006348,-2.440999984741211,24.355499267578125 -15745,2018-04-18 01:00:00,23.53899955749512,6.2829999923706055,33.53400039672852,7.23799991607666,-10.022000312805176,-2.440999984741211,23.916000366210927 -15746,2018-04-18 02:00:00,24.208999633789062,7.037000179290772,35.8390007019043,8.711999893188478,-11.300999641418455,-2.440999984741211,23.47649955749512 -15747,2018-04-18 03:00:00,26.13599967956543,7.372000217437744,36.7509994506836,8.390000343322754,-10.928000450134276,-1.3009999990463257,23.03700065612793 -15748,2018-04-18 04:00:00,24.459999084472656,6.7849998474121085,35.089000701904304,8.069000244140625,-11.03499984741211,-2.569000005722046,22.37800025939941 -15749,2018-04-18 05:00:00,24.71199989318848,6.2829999923706055,35.40999984741211,7.639999866485598,-9.958000183105469,-2.569000005722046,21.499000549316406 -15750,2018-04-18 06:00:00,26.88999938964844,6.2829999923706055,38.573001861572266,7.907999992370605,-11.17300033569336,-2.569000005722046,21.059499740600582 -15751,2018-04-18 07:00:00,26.63800048828125,5.611999988555908,36.9119987487793,6.701000213623048,-10.298999786376951,-2.569000005722046,21.27949905395508 -15752,2018-04-18 08:00:00,23.37100028991699,4.941999912261963,35.222999572753906,6.809000015258789,-11.57800006866455,-2.569000005722046,22.816999435424805 -15753,2018-04-18 09:00:00,25.968000411987305,6.031000137329103,39.96699905395508,8.336999893188478,-13.647000312805176,-3.0280001163482666,25.454500198364247 -15754,2018-04-18 10:00:00,17.423999786376953,0.0,30.90699958801269,4.3429999351501465,-13.647000312805176,-2.313999891281128,28.96949958801269 -15755,2018-04-18 11:00:00,20.52300071716309,0.0,34.28499984741211,5.602000236511231,-13.656999588012695,-2.313999891281128,32.705001831054695 -15756,2018-04-18 12:00:00,17.507999420166016,0.0,31.22900009155273,5.334000110626222,-13.656999588012695,-2.5269999504089355,34.463001251220696 -15757,2018-04-18 13:00:00,21.61199951171875,4.775000095367432,35.75899887084961,7.184000015258789,-13.656999588012695,-2.5269999504089355,36.22050094604492 -15758,2018-04-18 14:00:00,24.375999450683597,6.366000175476074,37.31399917602539,8.550999641418457,-12.430999755859377,-2.5269999504089355,38.41799926757813 -15759,2018-04-18 15:00:00,25.88400077819824,6.114999771118164,39.21699905395508,8.444000244140625,-13.678999900817873,-2.5269999504089355,39.516998291015625 -15760,2018-04-18 16:00:00,25.46500015258789,5.863999843597412,39.00199890136719,8.310000419616701,-13.625,-2.5269999504089355,38.85749816894531 -15761,2018-04-18 17:00:00,29.48600006103516,6.701000213623048,41.709999084472656,8.36299991607666,-12.335000038146973,-2.5269999504089355,37.31900024414063 -15762,2018-04-18 18:00:00,30.65900039672852,6.2829999923706055,41.46799850463867,7.71999979019165,-11.161999702453612,-2.5269999504089355,35.561500549316406 -15763,2018-04-18 19:00:00,26.55400085449219,5.78000020980835,39.29700088500977,7.559000015258789,-12.42099952697754,-2.5269999504089355,33.583999633789055 -15764,2018-04-18 20:00:00,31.32900047302246,6.7849998474121085,42.91600036621094,8.336999893188478,-11.279999732971191,-2.5269999504089355,31.38649940490723 -15765,2018-04-18 21:00:00,30.90999984741211,7.119999885559082,43.104000091552734,8.685000419616701,-12.505999565124512,-2.5269999504089355,29.40950012207031 -15766,2018-04-18 22:00:00,28.39699935913086,6.7849998474121085,41.25400161743164,8.685000419616701,-12.579999923706056,-2.5269999504089355,28.530500411987305 -15767,2018-04-18 23:00:00,27.81100082397461,6.7849998474121085,38.49300003051758,7.88100004196167,-11.312000274658203,-2.0580000877380367,28.31049919128418 -15768,2018-04-19 00:00:00,25.968000411987305,6.449999809265138,36.50899887084961,7.88100004196167,-11.03499984741211,-2.0580000877380367,27.87100028991699 -15769,2018-04-19 01:00:00,25.46500015258789,6.701000213623048,36.08100128173828,7.960999965667725,-11.119999885559082,-2.0580000877380367,27.43149948120117 -15770,2018-04-19 02:00:00,24.54400062561035,6.366000175476074,35.8120002746582,8.015000343322754,-9.989999771118164,-2.0580000877380367,26.552499771118164 -15771,2018-04-19 03:00:00,27.22500038146973,7.789999961853027,38.30500030517578,9.11400032043457,-11.781000137329102,-2.0580000877380367,25.454500198364247 -15772,2018-04-19 04:00:00,26.05200004577637,7.203999996185303,37.18000030517578,8.52400016784668,-10.788999557495115,-1.6740000247955322,24.57550048828125 -15773,2018-04-19 05:00:00,27.22500038146973,7.623000144958496,38.01100158691406,8.550999641418457,-10.779000282287598,-1.6740000247955322,23.69650077819824 -15774,2018-04-19 06:00:00,29.738000869750977,7.454999923706055,40.31600189208984,8.550999641418457,-11.02400016784668,-1.6740000247955322,22.8174991607666 -15775,2018-04-19 07:00:00,25.88400077819824,6.2829999923706055,36.21500015258789,7.372000217437744,-10.128000259399414,-1.6740000247955322,23.256500244140625 -15776,2018-04-19 08:00:00,26.55400085449219,5.78000020980835,37.01900100708008,7.1570000648498535,-10.095999717712402,-1.6740000247955322,25.45400047302246 -15777,2018-04-19 09:00:00,28.31399917602539,7.454999923706055,41.76300048828125,9.409000396728516,-12.729999542236328,-2.888999938964844,28.09049987792969 -15778,2018-04-19 10:00:00,21.61199951171875,0.0,35.0620002746582,6.058000087738037,-12.675999641418455,-2.888999938964844,31.82600021362305 -15779,2018-04-19 11:00:00,23.53899955749512,4.188000202178955,37.20600128173828,6.675000190734862,-12.675999641418455,-2.888999938964844,36.44049835205078 -15780,2018-04-19 12:00:00,24.96299934387207,4.941999912261963,38.33200073242188,6.942999839782715,-12.675999641418455,-2.888999938964844,38.63750076293945 -15781,2018-04-19 13:00:00,24.041000366210927,6.031000137329103,37.52799987792969,8.14900016784668,-12.75100040435791,-2.888999938964844,40.17549896240234 -15782,2018-04-19 14:00:00,27.726999282836918,7.874000072479247,40.69100189208984,9.302000045776367,-12.75100040435791,-2.888999938964844,42.8125 -15783,2018-04-19 15:00:00,25.548999786376957,6.701000213623048,37.95700073242188,8.550999641418457,-12.793999671936035,-2.0789999961853027,43.9109992980957 -15784,2018-04-19 16:00:00,23.70599937438965,0.0,36.1609992980957,5.896999835968018,-12.793999671936035,-2.0789999961853027,42.37300109863281 -15785,2018-04-19 17:00:00,21.780000686645508,0.0,33.667999267578125,4.611000061035156,-11.472000122070312,-2.0789999961853027,40.834999084472656 -15786,2018-04-19 18:00:00,18.93199920654297,0.0,31.041000366210927,3.5380001068115234,-12.09000015258789,-2.0789999961853027,39.29700088500977 -15787,2018-04-19 19:00:00,29.15099906921387,6.7849998474121085,39.02899932861328,7.479000091552732,-10.756999969482422,-2.0789999961853027,37.0994987487793 -15788,2018-04-19 20:00:00,29.56999969482422,6.953000068664551,42.05799865722656,7.88100004196167,-12.09000015258789,-1.4290000200271606,35.34149932861328 -15789,2018-04-19 21:00:00,32.417999267578125,8.376999855041504,43.15700149536133,9.006999969482422,-10.852999687194824,-1.4290000200271606,33.80350112915039 -15790,2018-04-19 22:00:00,29.066999435424805,7.037000179290772,40.74499893188477,8.711999893188478,-10.70400047302246,-1.4290000200271606,32.92449951171875 -15791,2018-04-19 23:00:00,26.30299949645996,6.449999809265138,39.02899932861328,8.416999816894531,-12.142999649047852,-2.6440000534057617,32.265499114990234 -15792,2018-04-20 00:00:00,25.968000411987305,6.533999919891357,36.027000427246094,7.639999866485598,-10.852999687194824,-2.6440000534057617,31.38649940490723 -15793,2018-04-20 01:00:00,25.80100059509277,6.86899995803833,38.0369987487793,8.310000419616701,-11.845000267028809,-1.3329999446868896,30.727500915527344 -15794,2018-04-20 02:00:00,25.632999420166016,7.288000106811522,36.10699844360352,7.960999965667725,-10.67199993133545,-1.22599995136261,30.068500518798828 -15795,2018-04-20 03:00:00,24.459999084472656,6.86899995803833,34.338001251220696,7.71999979019165,-10.67199993133545,-1.22599995136261,29.62899971008301 -15796,2018-04-20 04:00:00,26.05200004577637,7.203999996185303,36.26800155639648,8.095000267028809,-10.21399974822998,-2.440999984741211,28.96949958801269 -15797,2018-04-20 05:00:00,27.392000198364247,7.874000072479247,37.6349983215332,8.470999717712402,-9.883000373840332,-1.621000051498413,28.31049919128418 -15798,2018-04-20 06:00:00,25.04700088500977,6.114999771118164,37.233001708984375,7.639999866485598,-11.53600025177002,-1.621000051498413,27.21199989318848 -15799,2018-04-20 07:00:00,26.972999572753903,6.449999809265138,38.73400115966797,7.77400016784668,-10.427000045776367,-1.621000051498413,27.21199989318848 -15800,2018-04-20 08:00:00,26.88999938964844,6.701000213623048,39.94100189208984,8.416999816894531,-12.878999710083008,-2.9110000133514404,29.18950080871582 -15801,2018-04-20 09:00:00,29.23500061035156,7.623000144958496,41.28099822998047,9.0600004196167,-11.696000099182127,-2.9110000133514404,31.16650009155273 -15802,2018-04-20 10:00:00,23.95800018310547,4.2719998359680185,37.071998596191406,6.4070000648498535,-12.986000061035154,-2.9110000133514404,33.80350112915039 -15803,2018-04-20 11:00:00,26.88999938964844,5.947999954223633,40.55699920654297,7.98799991607666,-12.975000381469728,-2.9110000133514404,36.88000106811523 -15804,2018-04-20 12:00:00,25.29800033569336,0.0,38.06399917602539,5.951000213623048,-12.836000442504885,-2.9110000133514404,38.41799926757813 -15805,2018-04-20 13:00:00,27.64299964904785,7.372000217437744,41.06600189208984,8.979999542236328,-12.890000343322756,-2.9110000133514404,39.516998291015625 -15806,2018-04-20 14:00:00,28.39699935913086,7.789999961853027,41.11999893188477,9.248000144958496,-12.890000343322756,-2.9110000133514404,41.93349838256836 -15807,2018-04-20 15:00:00,28.899999618530277,7.288000106811522,41.06600189208984,9.034000396728516,-11.609999656677244,-2.9110000133514404,41.49399948120117 -15808,2018-04-20 16:00:00,28.31399917602539,7.789999961853027,41.44200134277344,9.48900032043457,-11.73799991607666,-1.7269999980926514,41.93349838256836 -15809,2018-04-20 17:00:00,29.82099914550781,7.037000179290772,42.40700149536133,8.604999542236326,-11.770000457763672,-1.7269999980926514,41.49399948120117 -15810,2018-04-20 18:00:00,29.56999969482422,7.288000106811522,41.95100021362305,8.845999717712402,-11.866000175476074,-1.7269999980926514,39.95600128173828 -15811,2018-04-20 19:00:00,31.99900054931641,8.628000259399414,43.935001373291016,9.94499969482422,-11.812999725341797,-1.7269999980926514,38.41799926757813 -15812,2018-04-20 20:00:00,30.99399948120117,6.86899995803833,42.40700149536133,8.496999740600586,-10.52299976348877,-1.7269999980926514,36.87950134277344 -15813,2018-04-20 21:00:00,27.895000457763672,6.449999809265138,41.14699935913086,8.578000068664549,-13.11299991607666,-3.0380001068115234,35.78150177001953 -15814,2018-04-20 22:00:00,27.308000564575195,7.623000144958496,39.00199890136719,9.0600004196167,-11.876999855041506,-3.0380001068115234,34.682998657226555 -15815,2018-04-20 23:00:00,29.23500061035156,8.125,39.72600173950195,9.16800022125244,-10.607999801635742,-1.812000036239624,33.804000854492195 -15816,2018-04-21 00:00:00,27.81100082397461,8.795999526977539,37.71599960327149,9.409000396728516,-9.13700008392334,-1.812000036239624,32.924999237060554 -15817,2018-04-21 01:00:00,26.72200012207031,8.041999816894531,38.01100158691406,9.16800022125244,-10.491000175476074,-1.3109999895095823,32.485000610351555 -15818,2018-04-21 02:00:00,28.81599998474121,9.885000228881836,38.30500030517578,10.31999969482422,-9.020000457763672,-1.4179999828338623,32.265499114990234 -15819,2018-04-21 03:00:00,27.47599983215332,8.711999893188478,38.25199890136719,9.409000396728516,-10.288000106811523,-1.3539999723434448,31.606000900268555 -15820,2018-04-21 04:00:00,20.60700035095215,5.611999988555908,29.48600006103516,6.486999988555907,-8.944999694824219,-1.3220000267028809,31.16699981689453 -15821,2018-04-21 05:00:00,24.795000076293945,7.203999996185303,35.91999816894531,8.310000419616701,-10.35200023651123,-1.22599995136261,30.507999420166016 -15822,2018-04-21 06:00:00,29.90500068664551,8.461000442504883,40.90599822998047,9.623000144958496,-10.383999824523926,-1.22599995136261,29.84900093078613 -15823,2018-04-21 07:00:00,28.145999908447266,7.958000183105469,39.53799819946289,9.274999618530272,-10.640000343322754,-1.2580000162124634,29.84900093078613 -15824,2018-04-21 08:00:00,24.125,5.193999767303467,36.5629997253418,7.23799991607666,-11.812999725341797,-2.4730000495910645,30.288000106811523 -15825,2018-04-21 09:00:00,28.062000274658203,7.958000183105469,40.55699920654297,9.784000396728516,-12.92199993133545,-2.4730000495910645,30.94750022888184 -15826,2018-04-21 10:00:00,23.45499992370605,4.188000202178955,36.321998596191406,6.433000087738037,-11.673999786376951,-2.4730000495910645,31.82600021362305 -15827,2018-04-21 11:00:00,28.31399917602539,5.52899980545044,40.28900146484375,7.479000091552732,-12.92199993133545,-2.4730000495910645,33.363998413085945 -15828,2018-04-21 12:00:00,22.36599922180176,0.0,34.338001251220696,4.797999858856201,-11.53600025177002,-2.4730000495910645,33.363998413085945 -15829,2018-04-21 13:00:00,21.44499969482422,4.941999912261963,34.87400054931641,7.23799991607666,-13.006999969482422,-2.4730000495910645,34.463001251220696 -15830,2018-04-21 14:00:00,26.2189998626709,7.288000106811522,38.70800018310547,9.140999794006348,-11.74899959564209,-2.4730000495910645,36.22050094604492 -15831,2018-04-21 15:00:00,28.145999908447266,8.125,40.34299850463867,9.91800022125244,-11.781000137329102,-2.4730000495910645,34.24300003051758 -15832,2018-04-21 16:00:00,30.492000579833984,8.795999526977539,42.13899993896485,10.133000373840332,-11.781000137329102,-2.4730000495910645,33.363998413085945 -15833,2018-04-21 17:00:00,31.32900047302246,8.376999855041504,42.88899993896485,9.784000396728516,-11.781000137329102,-2.4730000495910645,32.924999237060554 -15834,2018-04-21 18:00:00,33.088001251220696,8.963000297546387,42.54100036621094,9.48900032043457,-9.317999839782717,-2.4730000495910645,30.94750022888184 -15835,2018-04-21 19:00:00,31.32900047302246,8.461000442504883,40.61100006103516,9.0600004196167,-9.33899974822998,-1.5670000314712524,30.50749969482422 -15836,2018-04-21 20:00:00,34.59600067138672,10.303000450134276,44.06900024414063,10.803000450134276,-9.690999984741213,-1.3539999723434448,30.727500915527344 -15837,2018-04-21 21:00:00,31.413000106811523,9.800999641418455,42.99599838256836,10.803000450134276,-11.045000076293944,-1.2150000333786009,30.94750022888184 -15838,2018-04-21 22:00:00,31.99900054931641,10.890000343322754,43.18399810791016,11.982000350952148,-11.055999755859377,-1.2150000333786009,30.94750022888184 -15839,2018-04-21 23:00:00,32.333999633789055,10.805999755859377,41.44200134277344,10.803000450134276,-8.465000152587889,0.0,30.727500915527344 -15840,2018-04-22 00:00:00,31.32900047302246,10.890000343322754,40.93199920654297,11.151000022888184,-9.562999725341797,-1.3650000095367432,30.288000106811523 -15841,2018-04-22 01:00:00,29.319000244140625,10.55500030517578,39.32400131225586,11.178000450134276,-9.531000137329102,-1.3539999723434448,29.62899971008301 -15842,2018-04-22 02:00:00,29.48600006103516,11.895000457763672,38.70800018310547,11.954999923706056,-9.690999984741213,0.0,29.84900093078613 -15843,2018-04-22 03:00:00,29.15099906921387,10.638999938964844,37.2869987487793,11.071000099182127,-8.529000282287598,0.0,30.068500518798828 -15844,2018-04-22 04:00:00,23.28700065612793,8.628000259399414,34.41899871826172,9.623000144958496,-9.786999702453612,-1.246999979019165,30.068500518798828 -15845,2018-04-22 05:00:00,25.632999420166016,9.130999565124512,35.946998596191406,10.29300022125244,-10.960000038146973,-1.5779999494552612,28.09049987792969 -15846,2018-04-22 06:00:00,27.559999465942383,9.29800033569336,38.35900115966797,10.45400047302246,-10.960000038146973,-1.2150000333786009,26.55299949645996 -15847,2018-04-22 07:00:00,28.81599998474121,9.885000228881836,39.02899932861328,10.588000297546388,-9.690999984741213,-2.440999984741211,26.113000869750977 -15848,2018-04-22 08:00:00,23.28700065612793,7.706999778747559,33.53400039672852,8.73900032043457,-9.765999794006348,-2.440999984741211,26.11350059509277 -15849,2018-04-22 09:00:00,27.559999465942383,8.208999633789062,39.64599990844727,9.729999542236328,-11.119999885559082,-2.440999984741211,27.21199989318848 -15850,2018-04-22 10:00:00,26.13599967956543,6.7849998474121085,38.14500045776367,8.470999717712402,-11.130000114440918,-2.440999984741211,28.53000068664551 -15851,2018-04-22 11:00:00,29.40299987792969,8.208999633789062,40.42300033569336,9.515999794006348,-11.130000114440918,-2.440999984741211,30.507999420166016 -15852,2018-04-22 12:00:00,30.743000030517567,8.963000297546387,42.51399993896485,9.99899959564209,-11.097999572753906,-1.503000020980835,33.144500732421875 -15853,2018-04-22 13:00:00,31.32900047302246,9.130999565124512,42.56800079345703,10.052000045776367,-11.097999572753906,-1.503000020980835,33.80350112915039 -15854,2018-04-22 14:00:00,30.99399948120117,9.633000373840332,42.83599853515625,10.90999984741211,-11.097999572753906,-1.503000020980835,34.24349975585937 -15855,2018-04-22 15:00:00,29.98900032043457,8.795999526977539,41.17399978637695,10.159000396728516,-11.097999572753906,-1.503000020980835,35.561500549316406 -15856,2018-04-22 16:00:00,30.492000579833984,8.208999633789062,41.46799850463867,9.302000045776367,-11.109000205993652,-1.2690000534057615,36.44049835205078 -15857,2018-04-22 17:00:00,29.738000869750977,7.454999923706055,39.83300018310547,8.282999992370605,-9.574000358581545,-1.3109999895095823,36.44049835205078 -15858,2018-04-22 18:00:00,33.25600051879883,8.543999671936035,43.07699966430664,9.409000396728516,-10.67199993133545,-1.758999943733215,35.561500549316406 -15859,2018-04-22 19:00:00,29.82099914550781,7.706999778747559,40.79800033569336,8.899999618530273,-10.586999893188477,-1.6100000143051147,34.463001251220696 -15860,2018-04-22 20:00:00,32.08300018310547,8.041999816894531,42.43399810791016,8.873000144958496,-10.586999893188477,-1.6100000143051147,33.36449813842773 -15861,2018-04-22 21:00:00,32.75299835205078,9.04699993133545,43.26399993896485,10.07900047302246,-10.543999671936035,-1.6100000143051147,32.92449951171875 -15862,2018-04-22 22:00:00,27.559999465942383,8.125,38.70800018310547,9.16800022125244,-10.543999671936035,-1.6100000143051147,32.48550033569336 -15863,2018-04-22 23:00:00,30.743000030517567,9.717000007629396,40.55699920654297,10.480999946594238,-9.32900047302246,-1.6100000143051147,31.60650062561035 -15864,2018-04-23 00:00:00,28.145999908447266,8.878999710083008,39.35100173950195,10.31999969482422,-10.66100025177002,-1.2150000333786009,31.16699981689453 -15865,2018-04-23 01:00:00,27.64299964904785,8.376999855041504,38.22499847412109,9.810999870300291,-10.66100025177002,-1.2150000333786009,30.50749969482422 -15866,2018-04-23 02:00:00,27.392000198364247,8.628000259399414,36.992000579833984,9.515999794006348,-9.361000061035156,-1.2150000333786009,29.40950012207031 -15867,2018-04-23 03:00:00,25.71699905395508,8.543999671936035,35.2760009765625,9.48900032043457,-9.520999908447266,-1.2150000333786009,28.75 -15868,2018-04-23 04:00:00,26.47100067138672,8.963000297546387,36.96500015258789,9.94499969482422,-9.520999908447266,-2.430999994277954,28.09049987792969 -15869,2018-04-23 05:00:00,26.63800048828125,9.04699993133545,37.20600128173828,10.159000396728516,-9.541999816894531,-1.4709999561309814,27.651500701904297 -15870,2018-04-23 06:00:00,29.65399932861328,9.968000411987305,40.18199920654297,10.722000122070312,-9.392999649047852,-1.22599995136261,27.21199989318848 -15871,2018-04-23 07:00:00,30.239999771118164,9.29800033569336,40.04800033569336,9.677000045776367,-9.33899974822998,-1.3009999990463257,26.99250030517578 -15872,2018-04-23 08:00:00,24.041000366210927,7.119999885559082,33.21200180053711,7.639999866485598,-8.944999694824219,0.0,25.23450088500977 -15873,2018-04-23 09:00:00,27.05699920654297,7.706999778747559,39.80699920654297,9.595999717712402,-12.154000282287598,-2.611999988555908,23.916000366210927 -15874,2018-04-23 10:00:00,19.601999282836918,0.0,32.648998260498054,5.013000011444092,-12.164999961853027,-1.7480000257492063,22.8174991607666 -15875,2018-04-23 11:00:00,22.114999771118164,0.0,35.19599914550781,5.8439998626708975,-12.229000091552734,-1.7480000257492063,21.938499450683597 -15876,2018-04-23 12:00:00,21.11000061035156,0.0,33.588001251220696,6.191999912261963,-12.229000091552734,-2.96399998664856,21.059499740600582 -15877,2018-04-23 13:00:00,24.208999633789062,5.52899980545044,36.64300155639648,7.77400016784668,-12.229000091552734,-2.96399998664856,20.620500564575195 -15878,2018-04-23 14:00:00,24.71199989318848,6.031000137329103,37.20600128173828,8.229000091552733,-12.229000091552734,-2.96399998664856,20.620500564575195 -15879,2018-04-23 15:00:00,24.71199989318848,5.52899980545044,37.04600143432617,7.692999839782715,-11.003000259399414,-2.96399998664856,20.620500564575195 -15880,2018-04-23 16:00:00,27.726999282836918,5.947999954223633,38.14500045776367,7.559000015258789,-11.003000259399414,-2.96399998664856,20.620500564575195 -15881,2018-04-23 17:00:00,34.59600067138672,6.86899995803833,44.47100067138672,8.255999565124513,-9.765999794006348,-2.96399998664856,21.059499740600582 -15882,2018-04-23 18:00:00,34.429000854492195,6.618000030517577,43.74700164794922,7.3979997634887695,-9.79800033569336,-1.7059999704360962,21.27949905395508 -15883,2018-04-23 19:00:00,30.65900039672852,5.110000133514403,40.15499877929688,6.298999786376952,-9.776000022888184,-1.7059999704360962,21.499000549316406 -15884,2018-04-23 20:00:00,32.333999633789055,5.78000020980835,41.46799850463867,6.995999813079834,-8.508000373840332,-1.7059999704360962,21.059499740600582 -15885,2018-04-23 21:00:00,32.16699981689453,6.86899995803833,44.33700180053711,8.282999992370605,-11.204999923706056,-1.7059999704360962,21.059499740600582 -15886,2018-04-23 22:00:00,31.32900047302246,8.628000259399414,41.790000915527344,9.302000045776367,-10.128000259399414,-1.7059999704360962,21.27949905395508 -15887,2018-04-23 23:00:00,31.16200065612793,7.874000072479247,40.36899948120117,8.685000419616701,-9.32900047302246,-1.7059999704360962,21.499000549316406 -15888,2018-04-24 00:00:00,30.1560001373291,7.706999778747559,40.15499877929688,8.711999893188478,-9.33899974822998,-1.7059999704360962,21.938499450683597 -15889,2018-04-24 01:00:00,24.459999084472656,5.361000061035156,36.08100128173828,8.121999740600586,-11.770000457763672,-1.7059999704360962,21.938499450683597 -15890,2018-04-24 02:00:00,24.375999450683597,5.52899980545044,35.652000427246094,7.050000190734862,-11.513999938964846,-1.7059999704360962,22.15800094604492 -15891,2018-04-24 03:00:00,27.97900009155273,7.372000217437744,38.09099960327149,8.390000343322754,-10.277999877929688,-1.7059999704360962,21.7189998626709 -15892,2018-04-24 04:00:00,25.88400077819824,6.449999809265138,37.1259994506836,8.095000267028809,-10.3100004196167,-1.7059999704360962,21.7189998626709 -15893,2018-04-24 05:00:00,26.972999572753903,6.618000030517577,37.52799987792969,7.934999942779541,-10.37399959564209,-1.8760000467300413,21.938499450683597 -15894,2018-04-24 06:00:00,25.29800033569336,4.775000095367432,35.25,6.2729997634887695,-10.04300022125244,-1.8760000467300413,21.499000549316406 -15895,2018-04-24 07:00:00,27.895000457763672,6.031000137329103,37.98400115966797,7.372000217437744,-10.04300022125244,-1.8760000467300413,21.059499740600582 -15896,2018-04-24 08:00:00,25.71699905395508,6.2829999923706055,37.01900100708008,7.827000141143799,-10.852999687194824,-1.8760000467300413,21.059499740600582 -15897,2018-04-24 09:00:00,26.05200004577637,6.533999919891357,38.198001861572266,8.015000343322754,-12.142999649047852,-1.8760000467300413,21.938499450683597 -15898,2018-04-24 10:00:00,22.95199966430664,4.5229997634887695,35.8390007019043,6.2729997634887695,-12.04699993133545,-1.5889999866485596,24.135499954223643 -15899,2018-04-24 11:00:00,22.114999771118164,4.2719998359680185,33.42699813842773,5.951000213623048,-12.04699993133545,-1.5889999866485596,25.89349937438965 -15900,2018-04-24 12:00:00,21.11000061035156,0.0,33.26599884033203,5.4679999351501465,-12.04699993133545,-2.888999938964844,27.21199989318848 -15901,2018-04-24 13:00:00,24.87899971008301,5.78000020980835,37.01900100708008,7.452000141143799,-12.04699993133545,-2.888999938964844,27.651500701904297 -15902,2018-04-24 14:00:00,24.375999450683597,6.533999919891357,37.15299987792969,8.14900016784668,-12.05799961090088,-2.888999938964844,27.43199920654297 -15903,2018-04-24 15:00:00,24.375999450683597,6.618000030517577,36.08100128173828,8.444000244140625,-12.05799961090088,-2.888999938964844,27.43199920654297 -15904,2018-04-24 16:00:00,20.27199935913086,0.0,33.10499954223633,6.004000186920166,-12.05799961090088,-1.8339999914169312,27.21199989318848 -15905,2018-04-24 17:00:00,30.40800094604492,7.119999885559082,41.60300064086914,8.416999816894531,-10.767999649047852,-1.8339999914169312,26.992000579833984 -15906,2018-04-24 18:00:00,29.40299987792969,6.86899995803833,41.17399978637695,8.14900016784668,-10.767999649047852,-1.621000051498413,26.772499084472656 -15907,2018-04-24 19:00:00,28.73200035095215,6.366000175476074,39.430999755859375,7.934999942779541,-9.12600040435791,-2.505000114440918,25.454500198364247 -15908,2018-04-24 20:00:00,29.65399932861328,7.454999923706055,41.06600189208984,8.657999992370605,-11.631999969482422,-2.505000114440918,24.135499954223643 -15909,2018-04-24 21:00:00,29.23500061035156,7.288000106811522,41.20000076293945,8.604999542236326,-11.631999969482422,-2.505000114440918,23.256500244140625 -15910,2018-04-24 22:00:00,27.726999282836918,6.953000068664551,39.86000061035156,8.73900032043457,-11.631999969482422,-2.505000114440918,22.37800025939941 -15911,2018-04-24 23:00:00,30.57500076293945,8.208999633789062,40.69100189208984,9.140999794006348,-10.406000137329102,-2.505000114440918,21.938499450683597 -15912,2018-04-25 00:00:00,27.308000564575195,7.706999778747559,36.617000579833984,8.229000091552733,-9.083000183105469,-1.5889999866485596,21.499000549316406 -15913,2018-04-25 01:00:00,23.62299919128418,6.701000213623048,34.87400054931641,7.907999992370605,-10.447999954223633,-1.5889999866485596,21.059499740600582 -15914,2018-04-25 02:00:00,22.450000762939453,6.2829999923706055,34.042999267578125,8.069000244140625,-11.909000396728516,-1.5889999866485596,21.059499740600582 -15915,2018-04-25 03:00:00,22.53400039672852,6.031000137329103,34.097000122070305,7.88100004196167,-12.40999984741211,-2.803999900817871,21.059499740600582 -15916,2018-04-25 04:00:00,20.43899917602539,5.276999950408936,31.97900009155273,7.1570000648498535,-12.303000450134276,-2.803999900817871,20.620500564575195 -15917,2018-04-25 05:00:00,24.375999450683597,6.618000030517577,35.57099914550781,8.121999740600586,-11.02400016784668,-1.493000030517578,20.18050003051757 -15918,2018-04-25 06:00:00,26.88999938964844,7.288000106811522,36.83100128173828,8.36299991607666,-9.84000015258789,-1.493000030517578,20.18050003051757 -15919,2018-04-25 07:00:00,26.47100067138672,6.701000213623048,36.83100128173828,7.907999992370605,-9.862000465393066,-1.621000051498413,20.620500564575195 -15920,2018-04-25 08:00:00,26.88999938964844,6.533999919891357,38.27899932861328,7.98799991607666,-10.991999626159668,-1.621000051498413,22.37800025939941 -15921,2018-04-25 09:00:00,30.072999954223643,8.711999893188478,42.43399810791016,10.29300022125244,-12.270999908447266,-1.621000051498413,25.23450088500977 -15922,2018-04-25 10:00:00,25.381999969482425,5.445000171661377,37.95700073242188,7.290999889373777,-12.270999908447266,-2.8469998836517334,28.75 -15923,2018-04-25 11:00:00,29.82099914550781,6.953000068664551,41.30799865722656,8.550999641418457,-11.02400016784668,-2.8469998836517334,33.144500732421875 -15924,2018-04-25 12:00:00,27.47599983215332,6.533999919891357,40.61100006103516,8.310000419616701,-13.519000053405762,-2.8469998836517334,34.462501525878906 -15925,2018-04-25 13:00:00,27.895000457763672,7.958000183105469,41.09299850463867,9.864999771118164,-12.26099967956543,-2.8469998836517334,34.463001251220696 -15926,2018-04-25 14:00:00,26.972999572753903,7.539000034332275,40.61100006103516,9.32800006866455,-13.47599983215332,-2.8469998836517334,37.0994987487793 -15927,2018-04-25 15:00:00,29.15099906921387,8.125,41.415000915527344,9.784000396728516,-12.229000091552734,-2.8469998836517334,38.63750076293945 -15928,2018-04-25 16:00:00,29.066999435424805,7.958000183105469,41.20000076293945,9.381999969482422,-12.229000091552734,-2.8469998836517334,37.97850036621094 -15929,2018-04-25 17:00:00,29.738000869750977,7.706999778747559,41.60300064086914,9.194000244140623,-12.23900032043457,-2.8469998836517334,36.22100067138672 -15930,2018-04-25 18:00:00,29.15099906921387,6.86899995803833,41.06600189208984,8.416999816894531,-10.991999626159668,-2.8469998836517334,34.02349853515625 -15931,2018-04-25 19:00:00,28.062000274658203,6.366000175476074,38.97600173950195,7.23799991607666,-9.894000053405762,-1.3220000267028809,32.04550170898437 -15932,2018-04-25 20:00:00,30.82699966430664,8.293000221252441,42.59400177001953,9.274999618530272,-11.54599952697754,-1.3220000267028809,29.848499298095703 -15933,2018-04-25 21:00:00,30.82699966430664,7.874000072479247,42.29899978637695,8.925999641418457,-11.621000289916992,-1.5889999866485596,28.09049987792969 -15934,2018-04-25 22:00:00,28.565000534057607,8.125,40.262001037597656,9.381999969482422,-11.642000198364258,-1.22599995136261,27.21199989318848 -15935,2018-04-25 23:00:00,29.48600006103516,8.628000259399414,39.055999755859375,9.354999542236328,-9.413999557495115,-1.2899999618530271,26.772499084472656 -15936,2018-04-26 00:00:00,24.96299934387207,7.119999885559082,34.9010009765625,7.854000091552732,-10.66100025177002,-1.3539999723434448,26.33300018310547 -15937,2018-04-26 01:00:00,27.97900009155273,8.461000442504883,37.2869987487793,8.845999717712402,-9.467000007629396,0.0,25.89349937438965 -15938,2018-04-26 02:00:00,22.53400039672852,6.031000137329103,32.59600067138672,6.995999813079834,-9.883000373840332,-1.4500000476837158,25.673999786376957 -15939,2018-04-26 03:00:00,24.795000076293945,7.454999923706055,34.9010009765625,8.496999740600586,-9.894000053405762,-1.524999976158142,25.454500198364247 -15940,2018-04-26 04:00:00,21.19300079345703,6.618000030517577,32.327999114990234,7.665999889373777,-11.03499984741211,-1.524999976158142,25.454500198364247 -15941,2018-04-26 05:00:00,24.125,6.701000213623048,35.7859992980957,8.14900016784668,-11.06700038909912,-1.524999976158142,25.23450088500977 -15942,2018-04-26 06:00:00,26.88999938964844,7.539000034332275,37.34000015258789,8.229000091552733,-9.70199966430664,-1.524999976158142,25.01449966430664 -15943,2018-04-26 07:00:00,27.392000198364247,7.288000106811522,37.34000015258789,7.934999942779541,-9.680999755859377,-1.524999976158142,25.01449966430664 -15944,2018-04-26 08:00:00,27.726999282836918,7.454999923706055,37.98400115966797,8.336999893188478,-9.70199966430664,-1.3009999990463257,25.454500198364247 -15945,2018-04-26 09:00:00,27.81100082397461,8.293000221252441,40.58399963378906,9.864999771118164,-12.335000038146973,-2.6760001182556152,26.552499771118164 -15946,2018-04-26 10:00:00,25.1299991607666,5.863999843597412,37.95700073242188,7.907999992370605,-12.357000350952148,-2.6760001182556152,27.87100028991699 -15947,2018-04-26 11:00:00,25.632999420166016,4.859000205993652,37.608001708984375,6.728000164031982,-12.357000350952148,-2.174999952316284,29.848499298095703 -15948,2018-04-26 12:00:00,24.795000076293945,6.2829999923706055,38.89500045776367,8.390000343322754,-13.571999549865724,-2.174999952316284,32.265499114990234 -15949,2018-04-26 13:00:00,26.88999938964844,8.041999816894531,40.04800033569336,9.623000144958496,-12.281999588012695,-2.174999952316284,35.12200164794922 -15950,2018-04-26 14:00:00,25.968000411987305,7.958000183105469,38.65399932861328,9.756999969482422,-12.281999588012695,-2.174999952316284,37.31949996948242 -15951,2018-04-26 15:00:00,25.1299991607666,7.789999961853027,38.86800003051758,9.677000045776367,-13.550999641418455,-2.174999952316284,37.31949996948242 -15952,2018-04-26 16:00:00,28.565000534057607,8.041999816894531,41.01300048828125,9.99899959564209,-12.23900032043457,-2.174999952316284,36.65999984741211 -15953,2018-04-26 17:00:00,30.32399940490723,8.041999816894531,41.040000915527344,9.409000396728516,-11.012999534606934,-2.174999952316284,35.561500549316406 -15954,2018-04-26 18:00:00,31.077999114990234,7.958000183105469,41.95100021362305,9.034000396728516,-9.765999794006348,-2.174999952316284,34.02349853515625 -15955,2018-04-26 19:00:00,28.81599998474121,7.706999778747559,40.15499877929688,8.604999542236326,-10.960000038146973,-1.7480000257492063,32.705001831054695 -15956,2018-04-26 20:00:00,33.005001068115234,8.376999855041504,42.99599838256836,9.32800006866455,-10.895999908447266,-1.7480000257492063,31.38649940490723 -15957,2018-04-26 21:00:00,31.077999114990234,7.958000183105469,43.04999923706055,8.979999542236328,-11.045000076293944,-1.7480000257492063,30.068500518798828 -15958,2018-04-26 22:00:00,25.968000411987305,7.203999996185303,37.68899917602539,8.765000343322754,-12.335000038146973,-1.7480000257492063,28.96949958801269 -15959,2018-04-26 23:00:00,28.565000534057607,8.125,39.53799819946289,9.034000396728516,-9.765999794006348,-1.7480000257492063,28.09049987792969 -15960,2018-04-27 00:00:00,26.55400085449219,7.789999961853027,37.68899917602539,8.791999816894531,-10.725000381469728,-1.7480000257492063,27.651500701904297 -15961,2018-04-27 01:00:00,28.39699935913086,8.208999633789062,38.49300003051758,8.630999565124513,-10.458999633789062,-1.2580000162124634,26.772499084472656 -15962,2018-04-27 02:00:00,25.214000701904297,7.958000183105469,36.26800155639648,8.899999618530273,-10.37399959564209,-1.2690000534057615,25.89349937438965 -15963,2018-04-27 03:00:00,23.1200008392334,7.037000179290772,34.391998291015625,7.934999942779541,-10.255999565124512,-1.3539999723434448,25.01449966430664 -15964,2018-04-27 04:00:00,25.548999786376957,7.706999778747559,36.1609992980957,8.36299991607666,-10.67199993133545,-1.3539999723434448,24.135499954223643 -15965,2018-04-27 05:00:00,25.29800033569336,7.623000144958496,36.3489990234375,8.52400016784668,-10.810999870300291,-1.2790000438690186,23.69650077819824 -15966,2018-04-27 06:00:00,25.381999969482425,6.366000175476074,35.11600112915039,7.263999938964844,-9.562999725341797,-1.4819999933242798,23.256500244140625 -15967,2018-04-27 07:00:00,28.565000534057607,7.706999778747559,37.6349983215332,8.041999816894531,-8.284000396728517,0.0,23.256500244140625 -15968,2018-04-27 08:00:00,30.82699966430664,8.041999816894531,39.96699905395508,8.52400016784668,-9.574000358581545,-1.3109999895095823,25.454500198364247 -15969,2018-04-27 09:00:00,26.386999130249023,7.958000183105469,39.00199890136719,9.48900032043457,-12.54800033569336,-2.5269999504089355,28.96999931335449 -15970,2018-04-27 10:00:00,25.80100059509277,6.2829999923706055,37.95700073242188,7.960999965667725,-12.54800033569336,-2.5269999504089355,32.48550033569336 -15971,2018-04-27 11:00:00,28.31399917602539,7.874000072479247,40.58399963378906,9.11400032043457,-12.54800033569336,-2.5269999504089355,36.66049957275391 -15972,2018-04-27 12:00:00,25.1299991607666,6.7849998474121085,38.680999755859375,8.604999542236326,-12.54800033569336,-2.5269999504089355,38.85749816894531 -15973,2018-04-27 13:00:00,28.73200035095215,9.21399974822998,41.06600189208984,10.614999771118164,-12.54800033569336,-2.5269999504089355,40.615501403808594 -15974,2018-04-27 14:00:00,24.71199989318848,7.623000144958496,37.39400100708008,9.381999969482422,-12.45199966430664,-2.5269999504089355,42.8125 -15975,2018-04-27 15:00:00,26.386999130249023,7.789999961853027,39.24399948120117,9.302000045776367,-12.45199966430664,-2.5269999504089355,42.37300109863281 -15976,2018-04-27 16:00:00,25.968000411987305,6.86899995803833,39.00199890136719,8.496999740600586,-12.45199966430664,-2.5269999504089355,41.7135009765625 -15977,2018-04-27 17:00:00,31.413000106811523,9.130999565124512,42.75500106811523,10.024999618530272,-11.204999923706056,-2.5269999504089355,40.39550018310547 -15978,2018-04-27 18:00:00,32.58599853515625,9.381999969482422,42.29899978637695,9.972000122070312,-9.989999771118164,-1.3009999990463257,38.63750076293945 -15979,2018-04-27 19:00:00,29.98900032043457,8.963000297546387,39.91400146484375,9.56999969482422,-10.095999717712402,-1.3009999990463257,36.22050094604492 -15980,2018-04-27 20:00:00,30.82699966430664,8.461000442504883,41.790000915527344,9.381999969482422,-10.064000129699709,-1.3009999990463257,33.80350112915039 -15981,2018-04-27 21:00:00,32.333999633789055,9.130999565124512,42.72800064086914,9.677000045776367,-10.031999588012695,-1.5779999494552612,32.04550170898437 -15982,2018-04-27 22:00:00,29.48600006103516,8.628000259399414,38.84199905395508,9.16800022125244,-8.77400016784668,-1.246999979019165,30.727500915527344 -15983,2018-04-27 23:00:00,28.229999542236328,9.550000190734863,37.95700073242188,9.677000045776367,-8.465000152587889,0.0,29.848499298095703 -15984,2018-04-28 00:00:00,29.15099906921387,9.717000007629396,37.52799987792969,9.91800022125244,-8.838000297546387,0.0,28.96949958801269 -15985,2018-04-28 01:00:00,24.71199989318848,7.874000072479247,35.893001556396484,9.0600004196167,-11.279999732971191,-1.2899999618530271,28.530500411987305 -15986,2018-04-28 02:00:00,26.386999130249023,8.711999893188478,34.955001831054695,8.819000244140625,-9.734000205993652,0.0,28.09049987792969 -15987,2018-04-28 03:00:00,24.375999450683597,8.293000221252441,32.998001098632805,8.444000244140625,-8.411999702453612,0.0,27.651500701904297 -15988,2018-04-28 04:00:00,23.95800018310547,8.293000221252441,35.089000701904304,9.248000144958496,-10.149999618530272,-1.22599995136261,26.99250030517578 -15989,2018-04-28 05:00:00,24.459999084472656,8.125,34.847000122070305,8.925999641418457,-10.074999809265137,-1.662999987602234,26.552499771118164 -15990,2018-04-28 06:00:00,27.726999282836918,8.795999526977539,37.42100143432617,9.354999542236328,-10.0,-1.5989999771118164,25.673999786376957 -15991,2018-04-28 07:00:00,27.392000198364247,7.958000183105469,38.17100143432617,8.95300006866455,-9.925999641418455,-1.4179999828338623,25.89349937438965 -15992,2018-04-28 08:00:00,27.81100082397461,8.461000442504883,39.13600158691406,9.435999870300291,-11.74899959564209,-1.4179999828338623,27.65099906921387 -15993,2018-04-28 09:00:00,28.81599998474121,8.711999893188478,41.06600189208984,10.159000396728516,-11.74899959564209,-1.4179999828338623,30.507999420166016 -15994,2018-04-28 10:00:00,26.72200012207031,6.2829999923706055,38.54700088500977,7.88100004196167,-11.781000137329102,-2.632999897003174,33.363998413085945 -15995,2018-04-28 11:00:00,26.13599967956543,6.701000213623048,38.11800003051758,7.827000141143799,-11.781000137329102,-2.632999897003174,36.43999862670898 -15996,2018-04-28 12:00:00,28.565000534057607,8.795999526977539,40.93199920654297,10.052000045776367,-11.770000457763672,-2.632999897003174,38.198001861572266 -15997,2018-04-28 13:00:00,29.56999969482422,10.13599967956543,41.20000076293945,10.668999671936035,-11.770000457763672,-2.632999897003174,39.51649856567383 -15998,2018-04-28 14:00:00,29.23500061035156,9.717000007629396,41.76300048828125,11.232000350952148,-12.96399974822998,-1.4290000200271606,42.15349960327149 -15999,2018-04-28 15:00:00,28.481000900268555,9.04699993133545,40.95899963378906,10.560999870300291,-11.73799991607666,-1.4290000200271606,43.25199890136719 -16000,2018-04-28 16:00:00,30.99399948120117,10.13599967956543,43.18399810791016,11.258000373840332,-11.73799991607666,-1.4290000200271606,42.37300109863281 -16001,2018-04-28 17:00:00,29.82099914550781,9.550000190734863,41.44200134277344,10.74899959564209,-11.73799991607666,-1.4290000200271606,40.6150016784668 -16002,2018-04-28 18:00:00,31.32900047302246,9.381999969482422,42.13899993896485,10.31999969482422,-10.50100040435791,-1.4290000200271606,39.29700088500977 -16003,2018-04-28 19:00:00,29.738000869750977,8.963000297546387,40.52999877929688,9.91800022125244,-10.532999992370604,-1.4819999933242798,37.0994987487793 -16004,2018-04-28 20:00:00,32.83700180053711,9.21399974822998,44.71200180053711,10.560999870300291,-12.196999549865724,-1.812000036239624,35.78150177001953 -16005,2018-04-28 21:00:00,32.08300018310547,9.717000007629396,43.82699966430664,10.614999771118164,-12.09000015258789,-1.621000051498413,34.68249893188477 -16006,2018-04-28 22:00:00,31.496999740600582,9.633000373840332,42.80899810791016,10.69499969482422,-10.852999687194824,-1.621000051498413,33.36449813842773 -16007,2018-04-28 23:00:00,28.565000534057607,9.21399974822998,39.91400146484375,10.560999870300291,-12.069000244140623,-1.621000051498413,32.265499114990234 -16008,2018-04-29 00:00:00,26.05200004577637,8.125,36.321998596191406,8.925999641418457,-10.86400032043457,-1.493000030517578,31.16699981689453 -16009,2018-04-29 01:00:00,25.71699905395508,8.543999671936035,37.367000579833984,9.729999542236328,-11.781000137329102,-1.3009999990463257,30.727500915527344 -16010,2018-04-29 02:00:00,26.63800048828125,8.963000297546387,37.15299987792969,9.677000045776367,-11.152000427246094,-1.2790000438690186,29.848499298095703 -16011,2018-04-29 03:00:00,25.88400077819824,8.878999710083008,36.617000579833984,9.515999794006348,-10.928000450134276,-1.2790000438690186,29.62899971008301 -16012,2018-04-29 04:00:00,24.87899971008301,8.293000221252441,35.8390007019043,9.274999618530272,-10.607999801635742,-2.5160000324249268,29.18950080871582 -16013,2018-04-29 05:00:00,23.70599937438965,7.539000034332275,35.0620002746582,8.845999717712402,-11.791000366210938,-2.5160000324249268,28.530500411987305 -16014,2018-04-29 06:00:00,25.1299991607666,7.454999923706055,36.483001708984375,8.685000419616701,-10.491000175476074,-1.715999960899353,28.09049987792969 -16015,2018-04-29 07:00:00,22.78499984741211,5.696000099182129,33.05099868774414,6.6479997634887695,-10.767999649047852,-1.406999945640564,27.87100028991699 -16016,2018-04-29 08:00:00,25.1299991607666,6.7849998474121085,36.402000427246094,8.015000343322754,-10.852999687194824,-1.2790000438690186,29.18950080871582 -16017,2018-04-29 09:00:00,26.80599975585937,7.789999961853027,38.22499847412109,9.461999893188477,-10.939000129699709,-2.505000114440918,31.82600021362305 -16018,2018-04-29 10:00:00,26.05200004577637,6.86899995803833,38.43899917602539,8.845999717712402,-12.05799961090088,-2.505000114440918,34.02349853515625 -16019,2018-04-29 11:00:00,28.983999252319336,7.789999961853027,42.29899978637695,9.91800022125244,-12.05799961090088,-2.505000114440918,37.0994987487793 -16020,2018-04-29 12:00:00,28.899999618530277,8.376999855041504,41.57600021362305,10.105999946594238,-13.32699966430664,-2.505000114440918,38.63800048828125 -16021,2018-04-29 13:00:00,29.738000869750977,9.465999603271484,41.68299865722656,10.937000274658203,-12.04699993133545,-2.505000114440918,40.615501403808594 -16022,2018-04-29 14:00:00,30.1560001373291,9.04699993133545,41.81700134277344,10.239999771118164,-12.04699993133545,-2.505000114440918,41.054500579833984 -16023,2018-04-29 15:00:00,28.983999252319336,8.795999526977539,40.90599822998047,10.347000122070312,-12.04699993133545,-2.505000114440918,39.95600128173828 -16024,2018-04-29 16:00:00,29.56999969482422,8.963000297546387,39.512001037597656,9.729999542236328,-10.821000099182127,-2.505000114440918,38.85749816894531 -16025,2018-04-29 17:00:00,29.23500061035156,8.628000259399414,42.11199951171875,9.99899959564209,-13.262999534606935,-2.505000114440918,37.97850036621094 -16026,2018-04-29 18:00:00,31.916000366210927,8.376999855041504,42.05799865722656,9.006999969482422,-9.467000007629396,-2.505000114440918,37.31949996948242 -16027,2018-04-29 19:00:00,29.82099914550781,8.461000442504883,40.82500076293945,9.435999870300291,-10.71500015258789,-1.5889999866485596,36.22050094604492 -16028,2018-04-29 20:00:00,33.757999420166016,10.470999717712402,43.88100051879883,10.560999870300291,-9.510000228881836,-1.3220000267028809,35.34149932861328 -16029,2018-04-29 21:00:00,30.65900039672852,8.293000221252441,39.96699905395508,8.470999717712402,-9.574000358581545,0.0,34.463001251220696 -16030,2018-04-29 22:00:00,26.80599975585937,7.539000034332275,36.8849983215332,8.36299991607666,-11.045000076293944,-1.246999979019165,33.36449813842773 -16031,2018-04-29 23:00:00,26.88999938964844,8.376999855041504,36.21500015258789,8.791999816894531,-8.741999626159668,-1.246999979019165,32.705001831054695 -16032,2018-04-30 00:00:00,20.43899917602539,5.445000171661377,29.13800048828125,6.353000164031982,-9.680999755859377,0.0,32.265499114990234 -16033,2018-04-30 01:00:00,22.198999404907227,6.86899995803833,32.112998962402344,7.479000091552732,-9.605999946594238,-1.2369999885559082,31.60650062561035 -16034,2018-04-30 02:00:00,21.863000869750977,5.696000099182129,30.82699966430664,6.326000213623048,-9.574000358581545,0.0,30.94750022888184 -16035,2018-04-30 03:00:00,21.780000686645508,6.953000068664551,31.416000366210927,7.854000091552732,-8.934000015258789,-1.2690000534057615,30.727500915527344 -16036,2018-04-30 04:00:00,18.51300048828125,5.276999950408936,28.843000411987305,6.540999889373777,-10.277999877929688,-1.3109999895095823,30.50749969482422 -16037,2018-04-30 05:00:00,21.025999069213867,6.701000213623048,31.496999740600582,7.479000091552732,-10.383999824523926,-1.2690000534057615,30.068500518798828 -16038,2018-04-30 06:00:00,19.43400001525879,5.110000133514403,29.32500076293945,6.004000186920166,-9.49899959564209,-1.246999979019165,29.62899971008301 -16039,2018-04-30 07:00:00,22.114999771118164,6.533999919891357,32.273998260498054,7.290999889373777,-9.413999557495115,-1.3009999990463257,29.848499298095703 -16040,2018-04-30 08:00:00,23.1200008392334,5.611999988555908,34.740001678466804,6.995999813079834,-11.918999671936035,-1.3009999990463257,31.16699981689453 -16041,2018-04-30 09:00:00,27.141000747680664,6.7849998474121085,39.94100189208984,8.550999641418457,-12.986000061035154,-2.5160000324249268,32.92449951171875 -16042,2018-04-30 10:00:00,25.04700088500977,5.276999950408936,37.55500030517578,6.9689998626708975,-11.696000099182127,-1.5889999866485596,35.12200164794922 -16043,2018-04-30 11:00:00,32.417999267578125,9.550000190734863,44.38999938964844,10.776000022888184,-11.6850004196167,-1.5889999866485596,37.75849914550781 -16044,2018-04-30 12:00:00,30.492000579833984,7.958000183105469,42.51399993896485,9.435999870300291,-11.6850004196167,-1.5889999866485596,39.73600006103516 -16045,2018-04-30 13:00:00,31.916000366210927,8.711999893188478,43.29100036621094,10.024999618530272,-11.6850004196167,-1.5889999866485596,41.49399948120117 -16046,2018-04-30 14:00:00,30.82699966430664,8.711999893188478,42.56800079345703,11.579999923706056,-11.6850004196167,-1.5889999866485596,42.59299850463867 -16047,2018-04-30 15:00:00,31.32900047302246,8.125,42.80899810791016,9.70400047302246,-11.758999824523926,-1.5889999866485596,41.93349838256836 -16048,2018-04-30 16:00:00,28.899999618530277,7.874000072479247,40.20899963378906,9.140999794006348,-11.673999786376951,-1.8339999914169312,41.49399948120117 -16049,2018-04-30 17:00:00,31.99900054931641,8.628000259399414,43.854000091552734,9.729999542236328,-11.673999786376951,-1.8339999914169312,40.834999084472656 -16050,2018-04-30 18:00:00,31.32900047302246,8.041999816894531,44.01499938964844,9.32800006866455,-11.758999824523926,-1.8339999914169312,39.95600128173828 -16051,2018-04-30 19:00:00,30.239999771118164,7.037000179290772,40.07500076293945,8.015000343322754,-10.628999710083008,-1.8339999914169312,38.85749816894531 -16052,2018-04-30 20:00:00,32.92100143432617,7.874000072479247,43.07699966430664,8.496999740600586,-10.543999671936035,-1.8339999914169312,37.53900146484375 -16053,2018-04-30 21:00:00,35.182998657226555,9.633000373840332,44.06900024414063,9.729999542236328,-9.28600025177002,0.0,36.44049835205078 -16054,2018-04-30 22:00:00,33.42300033569336,9.04699993133545,42.51399993896485,9.16800022125244,-9.13700008392334,0.0,35.561500549316406 -16055,2018-04-30 23:00:00,29.738000869750977,8.461000442504883,38.84199905395508,9.0600004196167,-9.008999824523926,-1.375,34.90250015258789 -16056,2018-05-01 00:00:00,27.392000198364247,7.539000034332275,37.98400115966797,8.496999740600586,-10.3100004196167,-1.2790000438690186,34.463001251220696 -16057,2018-05-01 01:00:00,25.381999969482425,7.623000144958496,36.5359992980957,8.496999740600586,-11.258000373840332,-1.2790000438690186,34.02349853515625 -16058,2018-05-01 02:00:00,25.1299991607666,7.203999996185303,34.713001251220696,7.77400016784668,-10.086000442504885,-1.2790000438690186,33.80350112915039 -16059,2018-05-01 03:00:00,24.87899971008301,6.953000068664551,34.928001403808594,7.854000091552732,-9.979000091552734,-1.343000054359436,33.36449813842773 -16060,2018-05-01 04:00:00,22.78499984741211,6.618000030517577,33.85599899291992,7.907999992370605,-11.364999771118164,-1.2790000438690186,32.48550033569336 -16061,2018-05-01 05:00:00,25.214000701904297,7.119999885559082,35.4640007019043,8.015000343322754,-9.243000030517578,-1.4819999933242798,32.04550170898437 -16062,2018-05-01 06:00:00,26.88999938964844,7.454999923706055,36.42900085449219,7.98799991607666,-9.253999710083008,0.0,31.60650062561035 -16063,2018-05-01 07:00:00,27.22500038146973,7.539000034332275,36.5359992980957,8.015000343322754,-9.350000381469728,-1.2790000438690186,31.82600021362305 -16064,2018-05-01 08:00:00,25.968000411987305,6.198999881744385,36.5359992980957,7.452000141143799,-10.20300006866455,-1.2690000534057615,33.144500732421875 -16065,2018-05-01 09:00:00,27.559999465942383,6.7849998474121085,38.22499847412109,8.015000343322754,-10.246000289916992,-1.2690000534057615,34.02349853515625 -16066,2018-05-01 10:00:00,25.381999969482425,4.775000095367432,35.91999816894531,6.191999912261963,-10.234999656677246,-2.719000101089477,35.34149932861328 -16067,2018-05-01 11:00:00,31.2450008392334,7.288000106811522,41.87099838256836,8.791999816894531,-11.461000442504885,-2.719000101089477,36.65999984741211 -16068,2018-05-01 12:00:00,29.65399932861328,6.7849998474121085,41.06600189208984,8.630999565124513,-11.461000442504885,-2.719000101089477,37.31949996948242 -16069,2018-05-01 13:00:00,27.308000564575195,6.2829999923706055,38.84199905395508,8.041999816894531,-11.37600040435791,-2.719000101089477,38.19850158691406 -16070,2018-05-01 14:00:00,27.895000457763672,6.701000213623048,39.64599990844727,8.550999641418457,-12.666000366210938,-2.719000101089477,38.19850158691406 -16071,2018-05-01 15:00:00,30.239999771118164,7.539000034332275,41.57600021362305,9.11400032043457,-10.19200038909912,-1.7480000257492063,39.73649978637695 -16072,2018-05-01 16:00:00,31.832000732421875,8.125,41.06600189208984,9.006999969482422,-8.77400016784668,-1.7480000257492063,39.73649978637695 -16073,2018-05-01 17:00:00,32.417999267578125,8.041999816894531,41.62900161743164,8.550999641418457,-8.902000427246094,-1.6419999599456787,38.63750076293945 -16074,2018-05-01 18:00:00,31.74799919128418,7.874000072479247,42.165000915527344,8.52400016784668,-10.383999824523926,-1.22599995136261,36.65999984741211 -16075,2018-05-01 19:00:00,27.726999282836918,5.276999950408936,39.430999755859375,6.460000038146973,-11.642000198364258,-1.22599995136261,33.36449813842773 -16076,2018-05-01 20:00:00,28.39699935913086,6.533999919891357,40.34299850463867,7.98799991607666,-11.642000198364258,-1.22599995136261,31.60650062561035 -16077,2018-05-01 21:00:00,30.99399948120117,8.628000259399414,42.70199966430664,9.274999618530272,-11.696000099182127,-2.45199990272522,31.38649940490723 -16078,2018-05-01 22:00:00,31.916000366210927,9.130999565124512,41.20000076293945,9.354999542236328,-9.33899974822998,0.0,31.38649940490723 -16079,2018-05-01 23:00:00,26.13599967956543,7.958000183105469,37.52799987792969,8.604999542236326,-10.83199977874756,-1.3860000371932983,30.507999420166016 -16080,2018-05-02 00:00:00,28.81599998474121,8.628000259399414,39.16299819946289,9.435999870300291,-11.088000297546388,-1.3860000371932983,30.727500915527344 -16081,2018-05-02 01:00:00,26.63800048828125,8.376999855041504,37.6349983215332,9.006999969482422,-9.85099983215332,-1.2580000162124634,30.727500915527344 -16082,2018-05-02 02:00:00,25.548999786376957,8.041999816894531,36.027000427246094,8.95300006866455,-9.786999702453612,-1.2580000162124634,30.727500915527344 -16083,2018-05-02 03:00:00,24.71199989318848,7.706999778747559,35.75899887084961,8.711999893188478,-10.86400032043457,-1.4500000476837158,30.288000106811523 -16084,2018-05-02 04:00:00,24.041000366210927,6.701000213623048,33.238998413085945,7.452000141143799,-9.616999626159668,-1.2899999618530271,30.288000106811523 -16085,2018-05-02 05:00:00,23.45499992370605,7.372000217437744,34.17699813842773,8.390000343322754,-10.3100004196167,-1.2150000333786009,30.288000106811523 -16086,2018-05-02 06:00:00,29.319000244140625,8.041999816894531,39.13600158691406,8.52400016784668,-9.12600040435791,-1.2690000534057615,30.288000106811523 -16087,2018-05-02 07:00:00,29.65399932861328,8.208999633789062,39.64599990844727,8.711999893188478,-10.68299961090088,-1.2690000534057615,30.068500518798828 -16088,2018-05-02 08:00:00,27.64299964904785,6.533999919891357,37.071998596191406,7.317999839782715,-9.765999794006348,-1.2690000534057615,30.288000106811523 -16089,2018-05-02 09:00:00,30.82699966430664,8.461000442504883,42.459999084472656,9.435999870300291,-11.02400016784668,-1.2690000534057615,30.727500915527344 -16090,2018-05-02 10:00:00,26.72200012207031,5.78000020980835,39.40399932861328,7.665999889373777,-12.303000450134276,-2.505000114440918,31.60650062561035 -16091,2018-05-02 11:00:00,29.066999435424805,7.037000179290772,40.79800033569336,8.255999565124513,-12.494999885559082,-2.505000114440918,33.583999633789055 -16092,2018-05-02 12:00:00,29.90500068664551,7.623000144958496,42.40700149536133,9.140999794006348,-12.494999885559082,-2.505000114440918,35.78150177001953 -16093,2018-05-02 13:00:00,30.239999771118164,7.874000072479247,42.13899993896485,9.16800022125244,-12.473999977111816,-2.505000114440918,36.88000106811523 -16094,2018-05-02 14:00:00,26.63800048828125,6.449999809265138,38.0369987487793,7.692999839782715,-11.22599983215332,-2.505000114440918,38.198001861572266 -16095,2018-05-02 15:00:00,31.077999114990234,8.711999893188478,42.24599838256836,9.810999870300291,-11.184000015258787,-2.505000114440918,38.19850158691406 -16096,2018-05-02 16:00:00,30.57500076293945,9.21399974822998,43.07699966430664,10.31999969482422,-12.42099952697754,-2.505000114440918,36.87950134277344 -16097,2018-05-02 17:00:00,31.413000106811523,8.963000297546387,43.29100036621094,10.133000373840332,-12.473999977111816,-2.505000114440918,35.78150177001953 -16098,2018-05-02 18:00:00,30.65900039672852,8.293000221252441,42.67499923706055,9.32800006866455,-12.484000205993652,-2.505000114440918,34.68249893188477 -16099,2018-05-02 19:00:00,26.88999938964844,5.863999843597412,37.4739990234375,6.995999813079834,-10.138999938964844,-2.505000114440918,33.144500732421875 -16100,2018-05-02 20:00:00,32.08300018310547,9.04699993133545,44.57799911499024,9.890999794006348,-12.633999824523926,-2.505000114440918,31.38649940490723 -16101,2018-05-02 21:00:00,32.333999633789055,8.293000221252441,43.96099853515625,9.0600004196167,-11.354000091552734,-2.505000114440918,30.50749969482422 -16102,2018-05-02 22:00:00,25.46500015258789,6.7849998474121085,37.52799987792969,7.907999992370605,-10.67199993133545,-1.524999976158142,29.62899971008301 -16103,2018-05-02 23:00:00,26.88999938964844,7.539000034332275,37.98400115966797,8.444000244140625,-10.779000282287598,-1.246999979019165,28.530500411987305 -16104,2018-05-03 00:00:00,27.308000564575195,8.711999893188478,37.39400100708008,9.11400032043457,-10.31999969482422,-1.3009999990463257,28.09049987792969 -16105,2018-05-03 01:00:00,26.72200012207031,8.125,36.9119987487793,8.52400016784668,-10.35200023651123,0.0,26.772499084472656 -16106,2018-05-03 02:00:00,28.39699935913086,9.21399974822998,38.33200073242188,9.70400047302246,-10.267000198364258,-1.3539999723434448,25.454500198364247 -16107,2018-05-03 03:00:00,26.386999130249023,7.789999961853027,35.11600112915039,8.282999992370605,-9.020000457763672,-1.2150000333786009,24.355499267578125 -16108,2018-05-03 04:00:00,26.05200004577637,7.958000183105469,34.17699813842773,8.095000267028809,-7.750999927520753,0.0,23.47649955749512 -16109,2018-05-03 05:00:00,28.565000534057607,8.461000442504883,39.37799835205078,8.925999641418457,-10.875,-1.2369999885559082,22.597999572753903 -16110,2018-05-03 06:00:00,20.77400016784668,5.110000133514403,33.26599884033203,6.835000038146973,-11.951000213623049,-1.2790000438690186,21.938499450683597 -16111,2018-05-03 07:00:00,28.062000274658203,7.958000183105469,39.48500061035156,9.0600004196167,-10.991999626159668,-1.2690000534057615,22.59749984741211 -16112,2018-05-03 08:00:00,25.214000701904297,5.78000020980835,36.7509994506836,7.23799991607666,-10.939000129699709,-2.483999967575073,25.01499938964844 -16113,2018-05-03 09:00:00,30.32399940490723,9.04699993133545,42.99599838256836,10.31999969482422,-12.25,-2.483999967575073,27.87100028991699 -16114,2018-05-03 10:00:00,26.80599975585937,5.276999950408936,38.81499862670898,6.861999988555907,-12.270999908447266,-2.483999967575073,30.94750022888184 -16115,2018-05-03 11:00:00,28.229999542236328,6.366000175476074,40.58399963378906,7.800000190734862,-12.270999908447266,-2.483999967575073,34.90200042724609 -16116,2018-05-03 12:00:00,28.983999252319336,7.037000179290772,41.30799865722656,8.578000068664549,-12.345999717712402,-2.483999967575073,36.88000106811523 -16117,2018-05-03 13:00:00,31.58099937438965,8.543999671936035,43.82699966430664,9.729999542236328,-12.345999717712402,-2.483999967575073,38.198001861572266 -16118,2018-05-03 14:00:00,30.743000030517567,8.711999893188478,43.13000106811523,10.024999618530272,-12.345999717712402,-2.483999967575073,40.615501403808594 -16119,2018-05-03 15:00:00,29.56999969482422,7.958000183105469,42.11199951171875,9.409000396728516,-12.345999717712402,-2.483999967575073,41.27450180053711 -16120,2018-05-03 16:00:00,26.386999130249023,6.198999881744385,38.70800018310547,7.452000141143799,-12.378000259399414,-1.715999960899353,40.17549896240234 -16121,2018-05-03 17:00:00,29.48600006103516,7.119999885559082,41.28099822998047,8.282999992370605,-12.378000259399414,-1.715999960899353,38.198001861572266 -16122,2018-05-03 18:00:00,29.48600006103516,7.203999996185303,40.04800033569336,7.88100004196167,-9.894000053405762,-1.715999960899353,37.31949996948242 -16123,2018-05-03 19:00:00,30.90999984741211,7.539000034332275,41.57600021362305,8.36299991607666,-10.875,-1.8020000457763672,35.34199905395508 -16124,2018-05-03 20:00:00,31.077999114990234,7.539000034332275,43.13000106811523,8.604999542236326,-12.335000038146973,-1.8020000457763672,32.92449951171875 -16125,2018-05-03 21:00:00,33.005001068115234,8.963000297546387,44.17599868774414,9.649999618530272,-11.045000076293944,-1.8020000457763672,30.727500915527344 -16126,2018-05-03 22:00:00,30.99399948120117,9.381999969482422,42.21900177001953,9.729999542236328,-11.194000244140623,-1.2899999618530271,29.40950012207031 -16127,2018-05-03 23:00:00,31.832000732421875,9.465999603271484,42.459999084472656,9.94499969482422,-10.725000381469728,-1.2899999618530271,28.09049987792969 -16128,2018-05-04 00:00:00,28.983999252319336,8.461000442504883,40.77199935913086,9.381999969482422,-10.767999649047852,-1.3860000371932983,27.21199989318848 -16129,2018-05-04 01:00:00,28.145999908447266,8.293000221252441,39.86000061035156,10.31999969482422,-10.843000411987305,-1.2790000438690186,26.33300018310547 -16130,2018-05-04 02:00:00,26.386999130249023,8.628000259399414,38.70800018310547,9.623000144958496,-11.567999839782717,-1.3109999895095823,25.454500198364247 -16131,2018-05-04 03:00:00,27.895000457763672,8.878999710083008,38.43899917602539,9.729999542236328,-9.958000183105469,-1.2150000333786009,24.57550048828125 -16132,2018-05-04 04:00:00,20.857999801635746,6.031000137329103,31.89900016784668,7.1570000648498535,-10.149999618530272,-1.4709999561309814,24.135499954223643 -16133,2018-05-04 05:00:00,27.97900009155273,8.125,38.78799819946289,9.0600004196167,-10.21399974822998,-1.246999979019165,23.47649955749512 -16134,2018-05-04 06:00:00,29.90500068664551,8.461000442504883,40.12799835205078,9.034000396728516,-8.98799991607666,-1.3109999895095823,22.8174991607666 -16135,2018-05-04 07:00:00,27.81100082397461,7.203999996185303,38.52000045776367,8.14900016784668,-10.36299991607666,-1.3329999446868896,23.69650077819824 -16136,2018-05-04 08:00:00,24.54400062561035,5.696000099182129,36.777000427246094,7.130000114440918,-11.696000099182127,-1.4819999933242798,25.893999099731445 -16137,2018-05-04 09:00:00,31.077999114990234,9.04699993133545,43.66699981689453,10.74899959564209,-12.91100025177002,-2.719000101089477,28.75 -16138,2018-05-04 10:00:00,24.54400062561035,4.941999912261963,37.15299987792969,6.460000038146973,-12.91100025177002,-2.719000101089477,31.606000900268555 -16139,2018-05-04 11:00:00,26.88999938964844,6.198999881744385,39.11000061035156,7.639999866485598,-12.899999618530272,-2.719000101089477,35.78099822998047 -16140,2018-05-04 12:00:00,27.141000747680664,6.449999809265138,40.34299850463867,8.470999717712402,-12.899999618530272,-2.719000101089477,37.0994987487793 -16141,2018-05-04 13:00:00,26.55400085449219,7.539000034332275,39.77999877929688,9.140999794006348,-12.92199993133545,-2.719000101089477,38.85749816894531 -16142,2018-05-04 14:00:00,27.141000747680664,7.539000034332275,39.75299835205078,8.711999893188478,-11.58899974822998,-2.719000101089477,39.73649978637695 -16143,2018-05-04 15:00:00,24.87899971008301,7.372000217437744,37.31399917602539,9.006999969482422,-11.54599952697754,-2.719000101089477,40.6150016784668 -16144,2018-05-04 16:00:00,30.072999954223643,8.795999526977539,41.95100021362305,9.70400047302246,-11.609999656677244,-1.343000054359436,39.73649978637695 -16145,2018-05-04 17:00:00,27.308000564575195,6.618000030517577,39.80699920654297,8.255999565124513,-12.826000213623049,-1.343000054359436,38.41799926757813 -16146,2018-05-04 18:00:00,29.319000244140625,7.706999778747559,41.52199935913086,9.006999969482422,-11.609999656677244,-1.2899999618530271,37.0994987487793 -16147,2018-05-04 19:00:00,30.82699966430664,7.037000179290772,41.84400177001953,7.800000190734862,-11.600000381469728,-1.2899999618530271,35.78150177001953 -16148,2018-05-04 20:00:00,27.392000198364247,5.947999954223633,38.59999847412109,6.620999813079834,-10.267000198364258,-1.2899999618530271,34.463001251220696 -16149,2018-05-04 21:00:00,29.98900032043457,7.203999996185303,40.82500076293945,7.854000091552732,-10.246000289916992,-1.2790000438690186,33.583999633789055 -16150,2018-05-04 22:00:00,32.501998901367195,9.550000190734863,43.53300094604492,10.07900047302246,-11.567999839782717,-1.2790000438690186,32.92449951171875 -16151,2018-05-04 23:00:00,29.90500068664551,9.29800033569336,39.72600173950195,9.354999542236328,-10.223999977111816,0.0,31.82600021362305 -16152,2018-05-05 00:00:00,29.738000869750977,8.795999526977539,40.12799835205078,9.11400032043457,-8.98799991607666,0.0,31.38649940490723 -16153,2018-05-05 01:00:00,28.31399917602539,8.878999710083008,37.2869987487793,9.0600004196167,-9.32900047302246,0.0,31.38649940490723 -16154,2018-05-05 02:00:00,26.972999572753903,9.21399974822998,38.41299819946289,10.052000045776367,-10.852999687194824,-1.2690000534057615,31.16699981689453 -16155,2018-05-05 03:00:00,26.55400085449219,8.963000297546387,37.1259994506836,9.595999717712402,-11.003000259399414,-1.2899999618530271,29.40950012207031 -16156,2018-05-05 04:00:00,22.86899948120117,7.623000144958496,35.007999420166016,8.765000343322754,-10.991999626159668,-1.246999979019165,27.87100028991699 -16157,2018-05-05 05:00:00,22.450000762939453,7.288000106811522,34.06999969482422,8.36299991607666,-10.949000358581545,-1.246999979019165,27.43149948120117 -16158,2018-05-05 06:00:00,23.87400054931641,6.533999919891357,34.6870002746582,7.452000141143799,-10.991999626159668,-1.246999979019165,26.11350059509277 -16159,2018-05-05 07:00:00,25.88400077819824,6.701000213623048,36.13399887084961,7.71999979019165,-9.734000205993652,-1.246999979019165,26.33300018310547 -16160,2018-05-05 08:00:00,26.72200012207031,5.947999954223633,37.2869987487793,6.9689998626708975,-10.053999900817873,-1.246999979019165,25.01499938964844 -16161,2018-05-05 09:00:00,26.47100067138672,6.366000175476074,39.32400131225586,8.496999740600586,-12.527000427246096,-2.632999897003174,23.47649955749512 -16162,2018-05-05 10:00:00,25.548999786376957,5.445000171661377,38.573001861572266,7.532000064849853,-12.527000427246096,-2.632999897003174,23.256999969482425 -16163,2018-05-05 11:00:00,29.65399932861328,7.372000217437744,42.59400177001953,9.461999893188477,-12.527000427246096,-2.632999897003174,24.355499267578125 -16164,2018-05-05 12:00:00,30.40800094604492,7.706999778747559,43.66699981689453,9.461999893188477,-12.505999565124512,-2.632999897003174,25.673999786376957 -16165,2018-05-05 13:00:00,31.16200065612793,8.628000259399414,43.66699981689453,10.37399959564209,-12.505999565124512,-2.632999897003174,27.65099906921387 -16166,2018-05-05 14:00:00,30.57500076293945,8.963000297546387,42.70199966430664,10.45400047302246,-12.505999565124512,-2.632999897003174,28.75 -16167,2018-05-05 15:00:00,30.1560001373291,8.711999893188478,42.54100036621094,10.31999969482422,-12.505999565124512,-2.632999897003174,28.530500411987305 -16168,2018-05-05 16:00:00,30.072999954223643,8.293000221252441,41.95100021362305,9.784000396728516,-12.494999885559082,-2.632999897003174,29.18950080871582 -16169,2018-05-05 17:00:00,29.738000869750977,7.454999923706055,41.22700119018555,8.95300006866455,-11.248000144958496,-2.632999897003174,30.068500518798828 -16170,2018-05-05 18:00:00,31.32900047302246,7.623000144958496,42.91600036621094,8.979999542236328,-11.248000144958496,-2.632999897003174,30.50749969482422 -16171,2018-05-05 19:00:00,28.899999618530277,5.863999843597412,40.20899963378906,7.372000217437744,-11.258000373840332,-2.632999897003174,30.50749969482422 -16172,2018-05-05 20:00:00,32.83700180053711,8.293000221252441,44.06900024414063,9.11400032043457,-11.38599967956543,-2.632999897003174,30.50749969482422 -16173,2018-05-05 21:00:00,33.84199905395508,8.628000259399414,43.26399993896485,8.925999641418457,-8.678000450134277,-1.3009999990463257,30.50749969482422 -16174,2018-05-05 22:00:00,34.261001586914055,10.220000267028809,43.29100036621094,10.53499984741211,-9.541999816894531,-1.2790000438690186,30.50749969482422 -16175,2018-05-05 23:00:00,31.413000106811523,8.711999893188478,41.89699935913086,8.95300006866455,-10.756999969482422,-1.22599995136261,30.94750022888184 -16176,2018-05-06 00:00:00,28.145999908447266,6.86899995803833,37.95700073242188,7.747000217437744,-9.467000007629396,-1.758999943733215,30.06800079345703 -16177,2018-05-06 01:00:00,29.066999435424805,7.789999961853027,39.08300018310547,8.925999641418457,-9.585000038146973,-1.246999979019165,29.62899971008301 -16178,2018-05-06 02:00:00,27.05699920654297,7.623000144958496,38.06399917602539,8.819000244140625,-10.949000358581545,-1.2369999885559082,29.62899971008301 -16179,2018-05-06 03:00:00,26.63800048828125,8.461000442504883,38.01100158691406,9.649999618530272,-11.333000183105469,-1.2369999885559082,29.84900093078613 -16180,2018-05-06 04:00:00,28.31399917602539,8.293000221252441,38.25199890136719,9.006999969482422,-10.074999809265137,-1.3009999990463257,29.18950080871582 -16181,2018-05-06 05:00:00,23.53899955749512,7.706999778747559,35.11600112915039,8.873000144958496,-11.524999618530272,-1.3009999990463257,28.75 -16182,2018-05-06 06:00:00,24.87899971008301,5.193999767303467,35.625,6.755000114440918,-10.342000007629396,-1.5779999494552612,28.75 -16183,2018-05-06 07:00:00,27.141000747680664,7.372000217437744,38.70800018310547,8.630999565124513,-10.576000213623049,-1.22599995136261,29.62899971008301 -16184,2018-05-06 08:00:00,28.64900016784668,7.119999885559082,38.73400115966797,8.36299991607666,-9.361000061035156,-1.2150000333786009,30.288000106811523 -16185,2018-05-06 09:00:00,28.062000274658203,6.7849998474121085,39.11000061035156,8.015000343322754,-11.003000259399414,-2.494999885559082,30.288000106811523 -16186,2018-05-06 10:00:00,27.308000564575195,5.52899980545044,39.21699905395508,7.34499979019165,-12.229000091552734,-2.494999885559082,29.62899971008301 -16187,2018-05-06 11:00:00,31.32900047302246,8.125,43.69300079345703,10.024999618530272,-12.26099967956543,-2.494999885559082,29.62899971008301 -16188,2018-05-06 12:00:00,29.40299987792969,7.119999885559082,42.88899993896485,9.302000045776367,-12.26099967956543,-2.494999885559082,28.09049987792969 -16189,2018-05-06 13:00:00,31.077999114990234,8.461000442504883,43.50600051879883,10.07900047302246,-12.196999549865724,-2.494999885559082,27.43199920654297 -16190,2018-05-06 14:00:00,28.64900016784668,7.454999923706055,41.040000915527344,9.409000396728516,-12.175000190734863,-2.494999885559082,28.530500411987305 -16191,2018-05-06 15:00:00,30.239999771118164,8.543999671936035,43.02299880981445,10.29300022125244,-12.175000190734863,-2.494999885559082,28.75 -16192,2018-05-06 16:00:00,31.496999740600582,8.376999855041504,44.01499938964844,10.267000198364258,-12.175000190734863,-2.494999885559082,29.62899971008301 -16193,2018-05-06 17:00:00,32.83700180053711,7.037000179290772,44.92599868774414,8.657999992370605,-12.175000190734863,-1.8339999914169312,30.068500518798828 -16194,2018-05-06 18:00:00,30.99399948120117,6.86899995803833,40.36899948120117,8.175999641418457,-9.680999755859377,-1.8339999914169312,29.40950012207031 -16195,2018-05-06 19:00:00,29.066999435424805,5.193999767303467,39.53799819946289,6.755000114440918,-9.79800033569336,-1.8339999914169312,29.62899971008301 -16196,2018-05-06 20:00:00,28.565000534057607,5.696000099182129,39.48500061035156,7.263999938964844,-11.088000297546388,-1.8339999914169312,29.62899971008301 -16197,2018-05-06 21:00:00,32.92100143432617,8.293000221252441,43.26399993896485,9.220999717712402,-9.84000015258789,-1.8339999914169312,29.18950080871582 -16198,2018-05-06 22:00:00,30.492000579833984,7.706999778747559,42.459999084472656,9.461999893188477,-11.097999572753906,-1.8339999914169312,28.96949958801269 -16199,2018-05-06 23:00:00,30.743000030517567,8.795999526977539,40.79800033569336,9.838000297546388,-11.097999572753906,-1.8339999914169312,28.530500411987305 -16200,2018-05-07 00:00:00,29.15099906921387,8.543999671936035,40.34299850463867,9.972000122070312,-11.06700038909912,-1.8339999914169312,27.43149948120117 -16201,2018-05-07 01:00:00,24.459999084472656,6.7849998474121085,36.80400085449219,8.336999893188478,-11.17300033569336,-1.8339999914169312,26.552499771118164 -16202,2018-05-07 02:00:00,25.04700088500977,6.7849998474121085,36.21500015258789,8.390000343322754,-11.279999732971191,-1.8339999914169312,26.33300018310547 -16203,2018-05-07 03:00:00,26.63800048828125,7.706999778747559,37.87699890136719,9.140999794006348,-11.289999961853027,-1.8339999914169312,25.89349937438965 -16204,2018-05-07 04:00:00,25.381999969482425,7.119999885559082,36.7239990234375,8.657999992370605,-11.609999656677244,-3.049000024795532,25.673999786376957 -16205,2018-05-07 05:00:00,26.386999130249023,7.037000179290772,38.25199890136719,8.899999618530273,-11.652999877929688,-3.049000024795532,25.454500198364247 -16206,2018-05-07 06:00:00,27.47599983215332,7.288000106811522,40.04800033569336,8.899999618530273,-11.652999877929688,-3.049000024795532,25.454500198364247 -16207,2018-05-07 07:00:00,27.64299964904785,6.701000213623048,37.93000030517578,8.069000244140625,-10.437000274658203,-3.049000024795532,25.454500198364247 -16208,2018-05-07 08:00:00,23.62299919128418,4.941999912261963,36.59000015258789,7.050000190734862,-12.890000343322756,-1.7380000352859497,25.454500198364247 -16209,2018-05-07 09:00:00,25.548999786376957,6.701000213623048,39.32400131225586,8.711999893188478,-12.890000343322756,-2.96399998664856,25.23450088500977 -16210,2018-05-07 10:00:00,23.95800018310547,4.859000205993652,37.2599983215332,7.184000015258789,-12.890000343322756,-2.96399998664856,25.89349937438965 -16211,2018-05-07 11:00:00,23.87400054931641,4.60699987411499,37.071998596191406,6.7820000648498535,-12.890000343322756,-2.96399998664856,26.11350059509277 -16212,2018-05-07 12:00:00,27.559999465942383,5.947999954223633,40.82500076293945,8.52400016784668,-14.13700008392334,-2.96399998664856,26.33300018310547 -16213,2018-05-07 13:00:00,27.726999282836918,6.86899995803833,40.79800033569336,9.0600004196167,-12.899999618530272,-2.96399998664856,27.21199989318848 -16214,2018-05-07 14:00:00,27.22500038146973,6.7849998474121085,41.25400161743164,9.274999618530272,-12.899999618530272,-2.96399998664856,27.651500701904297 -16215,2018-05-07 15:00:00,25.29800033569336,6.449999809265138,39.11000061035156,8.873000144958496,-12.899999618530272,-2.96399998664856,27.651500701904297 -16216,2018-05-07 16:00:00,28.81599998474121,7.539000034332275,42.11199951171875,9.461999893188477,-12.899999618530272,-2.96399998664856,27.651500701904297 -16217,2018-05-07 17:00:00,31.496999740600582,8.125,43.02299880981445,9.0600004196167,-11.6850004196167,-2.96399998664856,27.87100028991699 -16218,2018-05-07 18:00:00,31.916000366210927,7.706999778747559,43.104000091552734,8.819000244140625,-10.491000175476074,-1.6529999971389768,27.87100028991699 -16219,2018-05-07 19:00:00,26.88999938964844,5.52899980545044,37.71599960327149,6.728000164031982,-10.37399959564209,-1.6529999971389768,27.651500701904297 -16220,2018-05-07 20:00:00,25.968000411987305,5.110000133514403,37.34000015258789,6.326000213623048,-10.427000045776367,-1.6529999971389768,27.651500701904297 -16221,2018-05-07 21:00:00,31.2450008392334,8.628000259399414,42.35300064086914,9.354999542236328,-11.652999877929688,-1.6529999971389768,27.21199989318848 -16222,2018-05-07 22:00:00,28.229999542236328,8.376999855041504,39.99399948120117,9.48900032043457,-10.437000274658203,-1.6529999971389768,26.772499084472656 -16223,2018-05-07 23:00:00,29.56999969482422,8.293000221252441,39.18999862670898,8.925999641418457,-10.437000274658203,-1.715999960899353,26.772499084472656 -16224,2018-05-08 00:00:00,25.88400077819824,6.701000213623048,36.375,7.960999965667725,-10.288000106811523,-1.715999960899353,26.552499771118164 -16225,2018-05-08 01:00:00,25.88400077819824,7.623000144958496,36.402000427246094,8.711999893188478,-10.288000106811523,-1.715999960899353,26.33300018310547 -16226,2018-05-08 02:00:00,26.88999938964844,8.293000221252441,37.04600143432617,9.194000244140623,-10.298999786376951,-1.6100000143051147,26.33300018310547 -16227,2018-05-08 03:00:00,21.44499969482422,6.198999881744385,32.35499954223633,7.50600004196167,-10.395000457763672,-1.6100000143051147,26.33300018310547 -16228,2018-05-08 04:00:00,25.968000411987305,8.125,37.2599983215332,9.248000144958496,-10.395000457763672,-1.6100000143051147,26.33300018310547 -16229,2018-05-08 05:00:00,24.87899971008301,7.037000179290772,36.375,8.550999641418457,-11.770000457763672,-1.6100000143051147,26.33300018310547 -16230,2018-05-08 06:00:00,26.30299949645996,6.701000213623048,37.95700073242188,8.416999816894531,-10.543999671936035,-1.6100000143051147,25.89349937438965 -16231,2018-05-08 07:00:00,27.559999465942383,7.203999996185303,38.46599960327149,8.095000267028809,-10.50100040435791,-1.6100000143051147,25.89349937438965 -16232,2018-05-08 08:00:00,26.88999938964844,6.86899995803833,37.4739990234375,7.479000091552732,-10.416000366210938,-1.5889999866485596,26.772499084472656 -16233,2018-05-08 09:00:00,25.80100059509277,5.110000133514403,38.06399917602539,6.888999938964844,-11.74899959564209,-1.5889999866485596,28.530500411987305 -16234,2018-05-08 10:00:00,20.27199935913086,4.440000057220459,32.97100067138672,6.513999938964844,-12.996000289916992,-2.815000057220459,30.288000106811523 -16235,2018-05-08 11:00:00,21.19300079345703,4.440000057220459,33.53400039672852,6.191999912261963,-13.050000190734863,-2.815000057220459,33.36449813842773 -16236,2018-05-08 12:00:00,22.36599922180176,6.618000030517577,35.40999984741211,8.416999816894531,-13.12399959564209,-2.815000057220459,36.65999984741211 -16237,2018-05-08 13:00:00,20.52300071716309,5.110000133514403,32.998001098632805,7.050000190734862,-11.866000175476074,-1.493000030517578,37.53900146484375 -16238,2018-05-08 14:00:00,27.64299964904785,8.376999855041504,40.69100189208984,9.94499969482422,-11.866000175476074,-1.493000030517578,39.95600128173828 -16239,2018-05-08 15:00:00,28.899999618530277,8.376999855041504,40.69100189208984,9.729999542236328,-11.866000175476074,-1.493000030517578,42.15299987792969 -16240,2018-05-08 16:00:00,27.726999282836918,7.623000144958496,39.75299835205078,8.979999542236328,-11.866000175476074,-1.493000030517578,41.054500579833984 -16241,2018-05-08 17:00:00,33.674999237060554,9.29800033569336,43.58599853515625,10.133000373840332,-10.532999992370604,-1.493000030517578,38.85749816894531 -16242,2018-05-08 18:00:00,31.2450008392334,8.125,42.78200149536133,9.248000144958496,-10.586999893188477,-1.493000030517578,37.0994987487793 -16243,2018-05-08 19:00:00,28.899999618530277,7.539000034332275,40.15499877929688,8.604999542236326,-10.458999633789062,-1.493000030517578,35.12200164794922 -16244,2018-05-08 20:00:00,28.983999252319336,6.86899995803833,42.64799880981445,8.470999717712402,-12.986000061035154,-1.493000030517578,32.92449951171875 -16245,2018-05-08 21:00:00,29.82099914550781,7.623000144958496,41.09299850463867,8.765000343322754,-10.52299976348877,-1.493000030517578,30.94750022888184 -16246,2018-05-08 22:00:00,28.983999252319336,8.628000259399414,40.50299835205078,9.70400047302246,-10.427000045776367,-1.493000030517578,29.40950012207031 -16247,2018-05-08 23:00:00,29.48600006103516,9.04699993133545,40.66400146484375,10.185999870300291,-10.916999816894531,-1.493000030517578,28.31049919128418 -16248,2018-05-09 00:00:00,28.31399917602539,8.293000221252441,39.99399948120117,9.381999969482422,-10.916999816894531,-1.493000030517578,27.21199989318848 -16249,2018-05-09 01:00:00,26.72200012207031,8.711999893188478,37.448001861572266,9.756999969482422,-10.821000099182127,-1.4500000476837158,26.33300018310547 -16250,2018-05-09 02:00:00,27.726999282836918,9.130999565124512,39.37799835205078,10.31999969482422,-12.185999870300291,-1.4500000476837158,25.454500198364247 -16251,2018-05-09 03:00:00,26.30299949645996,8.963000297546387,37.15299987792969,10.052000045776367,-10.970999717712402,-1.4500000476837158,24.57550048828125 -16252,2018-05-09 04:00:00,25.80100059509277,8.293000221252441,37.1259994506836,9.409000396728516,-10.980999946594238,-1.4500000476837158,24.135499954223643 -16253,2018-05-09 05:00:00,25.214000701904297,7.203999996185303,36.80400085449219,8.52400016784668,-10.949000358581545,-1.4500000476837158,23.256500244140625 -16254,2018-05-09 06:00:00,23.035999298095703,5.361000061035156,34.12400054931641,6.6479997634887695,-10.83199977874756,-1.4500000476837158,22.37800025939941 -16255,2018-05-09 07:00:00,24.795000076293945,7.119999885559082,35.54399871826172,8.255999565124513,-10.86400032043457,-1.4500000476837158,22.59749984741211 -16256,2018-05-09 08:00:00,24.375999450683597,6.031000137329103,37.2869987487793,7.907999992370605,-13.295000076293944,-2.664999961853028,25.01499938964844 -16257,2018-05-09 09:00:00,27.308000564575195,7.037000179290772,40.42300033569336,9.034000396728516,-12.10099983215332,-2.664999961853028,28.530500411987305 -16258,2018-05-09 10:00:00,25.381999969482425,5.863999843597412,37.87699890136719,7.665999889373777,-13.27299976348877,-2.664999961853028,32.04550170898437 -16259,2018-05-09 11:00:00,28.81599998474121,7.203999996185303,40.87900161743164,9.086999893188477,-12.09000015258789,-2.664999961853028,36.22050094604492 -16260,2018-05-09 12:00:00,27.22500038146973,7.706999778747559,41.38800048828125,9.94499969482422,-13.32699966430664,-3.134000062942505,37.31949996948242 -16261,2018-05-09 13:00:00,28.73200035095215,8.376999855041504,41.09299850463867,10.185999870300291,-13.32699966430664,-3.134000062942505,39.51649856567383 -16262,2018-05-09 14:00:00,26.13599967956543,8.376999855041504,38.73400115966797,10.052000045776367,-13.251999855041506,-3.134000062942505,41.93349838256836 -16263,2018-05-09 15:00:00,28.565000534057607,8.795999526977539,41.33399963378906,10.69499969482422,-12.036999702453612,-3.134000062942505,42.37300109863281 -16264,2018-05-09 16:00:00,30.1560001373291,8.963000297546387,42.86199951171875,10.69499969482422,-13.30500030517578,-3.134000062942505,39.73649978637695 -16265,2018-05-09 17:00:00,30.743000030517567,8.293000221252441,43.42499923706055,9.94499969482422,-13.30500030517578,-3.134000062942505,37.0994987487793 -16266,2018-05-09 18:00:00,30.239999771118164,7.454999923706055,42.64799880981445,9.220999717712402,-11.940999984741213,-3.134000062942505,35.12200164794922 -16267,2018-05-09 19:00:00,25.88400077819824,5.863999843597412,38.92200088500977,8.203000068664549,-13.208999633789062,-3.134000062942505,33.36449813842773 -16268,2018-05-09 20:00:00,28.73200035095215,6.701000213623048,41.62900161743164,8.604999542236326,-13.208999633789062,-3.134000062942505,32.04550170898437 -16269,2018-05-09 21:00:00,21.19300079345703,0.0,34.632999420166016,5.923999786376952,-13.166999816894531,-3.134000062942505,30.50749969482422 -16270,2018-05-09 22:00:00,29.23500061035156,8.878999710083008,41.60300064086914,10.347000122070312,-13.208999633789062,-3.134000062942505,29.18950080871582 -16271,2018-05-09 23:00:00,28.481000900268555,8.963000297546387,40.36899948120117,10.159000396728516,-11.982999801635742,-3.134000062942505,28.31049919128418 -16272,2018-05-10 00:00:00,29.23500061035156,8.878999710083008,40.71799850463867,9.972000122070312,-11.982999801635742,-1.919000029563904,27.651500701904297 -16273,2018-05-10 01:00:00,22.78499984741211,6.7849998474121085,34.9010009765625,8.390000343322754,-12.154000282287598,-1.919000029563904,27.21199989318848 -16274,2018-05-10 02:00:00,25.80100059509277,8.963000297546387,38.22499847412109,10.213000297546388,-12.196999549865724,-1.919000029563904,26.33300018310547 -16275,2018-05-10 03:00:00,25.29800033569336,8.461000442504883,36.83100128173828,9.70400047302246,-12.196999549865724,-1.919000029563904,25.89349937438965 -16276,2018-05-10 04:00:00,25.04700088500977,7.874000072479247,36.10699844360352,9.248000144958496,-10.960000038146973,-1.6740000247955322,25.01449966430664 -16277,2018-05-10 05:00:00,21.69599914550781,6.198999881744385,33.69499969482422,7.98799991607666,-10.916999816894531,-1.6740000247955322,24.57550048828125 -16278,2018-05-10 06:00:00,26.55400085449219,7.119999885559082,37.71599960327149,8.657999992370605,-10.949000358581545,-1.6740000247955322,24.135499954223643 -16279,2018-05-10 07:00:00,27.726999282836918,7.706999778747559,39.02899932861328,9.006999969482422,-10.949000358581545,-1.4709999561309814,24.135499954223643 -16280,2018-05-10 08:00:00,23.37100028991699,5.110000133514403,36.375,7.479000091552732,-12.335000038146973,-2.750999927520752,25.23450088500977 -16281,2018-05-10 09:00:00,27.81100082397461,8.125,40.50299835205078,9.91800022125244,-12.335000038146973,-2.750999927520752,26.55299949645996 -16282,2018-05-10 10:00:00,25.381999969482425,6.449999809265138,37.87699890136719,8.416999816894531,-12.357000350952148,-2.750999927520752,27.87100028991699 -16283,2018-05-10 11:00:00,28.39699935913086,6.533999919891357,40.36899948120117,8.121999740600586,-11.130000114440918,-1.940000057220459,30.727500915527344 -16284,2018-05-10 12:00:00,27.81100082397461,6.618000030517577,41.30799865722656,8.95300006866455,-12.357000350952148,-1.940000057220459,31.82600021362305 -16285,2018-05-10 13:00:00,26.63800048828125,6.86899995803833,39.13600158691406,8.925999641418457,-12.357000350952148,-1.940000057220459,32.265499114990234 -16286,2018-05-10 14:00:00,24.71199989318848,6.366000175476074,37.87699890136719,8.390000343322754,-12.357000350952148,-1.940000057220459,35.561500549316406 -16287,2018-05-10 15:00:00,27.81100082397461,8.461000442504883,41.28099822998047,10.401000022888184,-12.357000350952148,-1.940000057220459,37.75899887084961 -16288,2018-05-10 16:00:00,26.13599967956543,6.533999919891357,37.6619987487793,8.657999992370605,-11.109000205993652,-1.99399995803833,36.87950134277344 -16289,2018-05-10 17:00:00,26.2189998626709,5.696000099182129,38.27899932861328,7.50600004196167,-12.335000038146973,-1.99399995803833,34.90200042724609 -16290,2018-05-10 18:00:00,29.40299987792969,7.037000179290772,39.94100189208984,8.255999565124513,-11.130000114440918,-1.99399995803833,32.92449951171875 -16291,2018-05-10 19:00:00,30.65900039672852,7.789999961853027,41.65599822998047,8.550999641418457,-11.130000114440918,-1.7699999809265137,31.16699981689453 -16292,2018-05-10 20:00:00,29.82099914550781,6.618000030517577,40.90599822998047,7.452000141143799,-11.130000114440918,-1.7699999809265137,30.068500518798828 -16293,2018-05-10 21:00:00,30.32399940490723,8.628000259399414,42.459999084472656,9.99899959564209,-11.130000114440918,-1.2899999618530271,29.40950012207031 -16294,2018-05-10 22:00:00,31.16200065612793,9.885000228881836,41.57600021362305,10.401000022888184,-9.862000465393066,-1.2899999618530271,28.96949958801269 -16295,2018-05-10 23:00:00,28.062000274658203,8.208999633789062,37.42100143432617,8.310000419616701,-9.776000022888184,0.0,28.530500411987305 -16296,2018-05-11 00:00:00,26.80599975585937,7.203999996185303,36.83100128173828,7.71999979019165,-9.776000022888184,-1.2150000333786009,27.87100028991699 -16297,2018-05-11 01:00:00,26.386999130249023,8.543999671936035,36.13399887084961,9.0600004196167,-9.914999961853027,0.0,27.43149948120117 -16298,2018-05-11 02:00:00,25.46500015258789,8.376999855041504,35.19599914550781,8.845999717712402,-9.744000434875488,0.0,27.21199989318848 -16299,2018-05-11 03:00:00,28.481000900268555,9.550000190734863,37.823001861572266,9.677000045776367,-9.690999984741213,0.0,26.772499084472656 -16300,2018-05-11 04:00:00,28.39699935913086,9.550000190734863,38.41299819946289,9.94499969482422,-9.744000434875488,-1.2690000534057615,26.55299949645996 -16301,2018-05-11 05:00:00,25.80100059509277,7.119999885559082,37.071998596191406,8.255999565124513,-10.970999717712402,-1.2369999885559082,26.11350059509277 -16302,2018-05-11 06:00:00,28.73200035095215,8.963000297546387,39.48500061035156,9.595999717712402,-9.722999572753906,-1.2369999885559082,25.89349937438965 -16303,2018-05-11 07:00:00,29.65399932861328,8.878999710083008,40.50299835205078,9.274999618530272,-9.722999572753906,-1.2690000534057615,26.11350059509277 -16304,2018-05-11 08:00:00,24.041000366210927,6.86899995803833,35.91999816894531,7.960999965667725,-10.852999687194824,-1.246999979019165,26.552499771118164 -16305,2018-05-11 09:00:00,31.916000366210927,10.55500030517578,43.34500122070313,11.12399959564209,-12.04699993133545,-2.463000059127808,28.31049919128418 -16306,2018-05-11 10:00:00,25.968000411987305,6.86899995803833,39.00199890136719,8.657999992370605,-12.357000350952148,-2.463000059127808,29.62899971008301 -16307,2018-05-11 11:00:00,27.64299964904785,6.7849998474121085,40.87900161743164,8.791999816894531,-12.357000350952148,-2.463000059127808,30.068500518798828 -16308,2018-05-11 12:00:00,27.392000198364247,6.7849998474121085,40.10100173950195,8.496999740600586,-12.366999626159668,-2.463000059127808,30.50749969482422 -16309,2018-05-11 13:00:00,30.65900039672852,9.04699993133545,41.68299865722656,10.560999870300291,-11.130000114440918,-2.463000059127808,31.82600021362305 -16310,2018-05-11 14:00:00,26.88999938964844,8.208999633789062,38.78799819946289,9.756999969482422,-11.097999572753906,-2.463000059127808,34.463001251220696 -16311,2018-05-11 15:00:00,29.48600006103516,8.208999633789062,42.38000106811523,9.99899959564209,-13.604000091552734,-2.463000059127808,36.000999450683594 -16312,2018-05-11 16:00:00,29.82099914550781,8.293000221252441,42.11199951171875,9.56999969482422,-12.366999626159668,-1.866000056266785,36.44049835205078 -16313,2018-05-11 17:00:00,33.25600051879883,8.461000442504883,44.73899841308594,9.864999771118164,-12.335000038146973,-2.9210000038146973,36.000999450683594 -16314,2018-05-11 18:00:00,33.34000015258789,8.461000442504883,44.47100067138672,9.70400047302246,-11.045000076293944,-2.9210000038146973,35.12200164794922 -16315,2018-05-11 19:00:00,30.32399940490723,6.7849998474121085,41.84400177001953,8.255999565124513,-11.097999572753906,-2.9210000038146973,34.463001251220696 -16316,2018-05-11 20:00:00,30.40800094604492,6.953000068664551,42.165000915527344,8.069000244140625,-11.119999885559082,-1.684000015258789,34.02349853515625 -16317,2018-05-11 21:00:00,34.0099983215332,9.21399974822998,44.01499938964844,9.56999969482422,-9.946999549865724,-1.684000015258789,33.583999633789055 -16318,2018-05-11 22:00:00,29.90500068664551,8.041999816894531,41.790000915527344,9.810999870300291,-11.407999992370604,-1.684000015258789,33.36449813842773 -16319,2018-05-11 23:00:00,31.32900047302246,9.381999969482422,41.30799865722656,9.91800022125244,-8.944999694824219,-1.2369999885559082,32.92449951171875 -16320,2018-05-12 00:00:00,25.80100059509277,7.623000144958496,37.367000579833984,8.925999641418457,-11.482000350952148,-1.4290000200271606,32.705001831054695 -16321,2018-05-12 01:00:00,27.308000564575195,8.795999526977539,38.573001861572266,9.70400047302246,-10.277999877929688,-1.2150000333786009,32.265499114990234 -16322,2018-05-12 02:00:00,26.2189998626709,8.795999526977539,36.45600128173828,9.461999893188477,-9.520999908447266,-1.2790000438690186,31.82600021362305 -16323,2018-05-12 03:00:00,28.64900016784668,9.29800033569336,37.58200073242188,9.91800022125244,-9.722999572753906,-1.2150000333786009,31.38649940490723 -16324,2018-05-12 04:00:00,27.22500038146973,8.963000297546387,37.84999847412109,9.864999771118164,-9.79800033569336,-1.22599995136261,29.18950080871582 -16325,2018-05-12 05:00:00,24.87899971008301,7.037000179290772,35.54399871826172,8.282999992370605,-11.045000076293944,-1.22599995136261,28.09049987792969 -16326,2018-05-12 06:00:00,26.386999130249023,7.454999923706055,36.1609992980957,8.229000091552733,-9.616999626159668,-1.22599995136261,27.651500701904297 -16327,2018-05-12 07:00:00,26.55400085449219,7.454999923706055,36.08100128173828,8.14900016784668,-9.28600025177002,-1.22599995136261,27.651500701904297 -16328,2018-05-12 08:00:00,25.381999969482425,6.533999919891357,36.83100128173828,7.960999965667725,-11.194000244140623,-1.3969999551773071,26.772499084472656 -16329,2018-05-12 09:00:00,25.88400077819824,6.031000137329103,38.38600158691406,7.934999942779541,-11.449999809265137,-2.750999927520752,26.55299949645996 -16330,2018-05-12 10:00:00,26.972999572753903,5.52899980545044,38.70800018310547,7.747000217437744,-11.449999809265137,-2.750999927520752,27.651500701904297 -16331,2018-05-12 11:00:00,32.92100143432617,8.795999526977539,45.2750015258789,10.560999870300291,-11.449999809265137,-2.3559999465942383,29.18950080871582 -16332,2018-05-12 12:00:00,29.066999435424805,6.701000213623048,41.709999084472656,8.925999641418457,-12.687000274658203,-2.3559999465942383,30.288000106811523 -16333,2018-05-12 13:00:00,29.56999969482422,7.874000072479247,42.86199951171875,10.159000396728516,-12.718999862670898,-2.302999973297119,30.94750022888184 -16334,2018-05-12 14:00:00,28.899999618530277,7.706999778747559,40.28900146484375,9.409000396728516,-10.277999877929688,-2.302999973297119,32.04550170898437 -16335,2018-05-12 15:00:00,27.726999282836918,8.125,40.23500061035156,10.024999618530272,-12.729999542236328,-2.302999973297119,32.04550170898437 -16336,2018-05-12 16:00:00,29.15099906921387,7.874000072479247,41.040000915527344,9.649999618530272,-11.54599952697754,-2.302999973297119,32.48550033569336 -16337,2018-05-12 17:00:00,30.82699966430664,7.372000217437744,42.59400177001953,9.140999794006348,-11.54599952697754,-2.302999973297119,32.265499114990234 -16338,2018-05-12 18:00:00,29.82099914550781,7.454999923706055,41.25400161743164,8.873000144958496,-11.557000160217283,-2.302999973297119,32.04600143432617 -16339,2018-05-12 19:00:00,27.47599983215332,6.618000030517577,39.69900131225586,7.98799991607666,-11.557000160217283,-2.302999973297119,31.82600021362305 -16340,2018-05-12 20:00:00,30.99399948120117,7.623000144958496,42.72800064086914,8.925999641418457,-11.600000381469728,-2.302999973297119,30.727500915527344 -16341,2018-05-12 21:00:00,32.08300018310547,8.795999526977539,42.35300064086914,9.006999969482422,-10.277999877929688,-2.302999973297119,30.068500518798828 -16342,2018-05-12 22:00:00,32.333999633789055,8.963000297546387,41.60300064086914,9.16800022125244,-10.267000198364258,-2.302999973297119,29.62899971008301 -16343,2018-05-12 23:00:00,30.32399940490723,8.628000259399414,40.18199920654297,9.11400032043457,-8.82800006866455,-1.5460000038146973,28.96949958801269 -16344,2018-05-13 00:00:00,30.32399940490723,9.130999565124512,39.00199890136719,9.649999618530272,-8.763999938964844,-1.3329999446868896,28.530500411987305 -16345,2018-05-13 01:00:00,27.308000564575195,8.125,38.198001861572266,9.194000244140623,-11.333000183105469,-1.2580000162124634,28.31049919128418 -16346,2018-05-13 02:00:00,25.04700088500977,6.618000030517577,35.141998291015625,7.71999979019165,-9.958000183105469,-1.4179999828338623,27.87100028991699 -16347,2018-05-13 03:00:00,22.450000762939453,5.52899980545044,32.327999114990234,6.6479997634887695,-9.958000183105469,-1.4179999828338623,27.651500701904297 -16348,2018-05-13 04:00:00,21.61199951171875,6.114999771118164,32.35499954223633,7.34499979019165,-11.22599983215332,-1.4179999828338623,27.21199989318848 -16349,2018-05-13 05:00:00,23.62299919128418,6.701000213623048,33.292999267578125,7.692999839782715,-10.01099967956543,-1.6419999599456787,26.99250030517578 -16350,2018-05-13 06:00:00,28.062000274658203,7.789999961853027,37.84999847412109,8.604999542236326,-8.998000144958496,-1.3650000095367432,26.99250030517578 -16351,2018-05-13 07:00:00,27.22500038146973,7.119999885559082,37.5009994506836,7.960999965667725,-10.651000022888184,-1.3220000267028809,26.99250030517578 -16352,2018-05-13 08:00:00,24.208999633789062,5.696000099182129,35.2760009765625,7.1570000648498535,-10.37399959564209,-1.3969999551773071,28.530500411987305 -16353,2018-05-13 09:00:00,24.208999633789062,6.366000175476074,36.375,8.336999893188478,-11.609999656677244,-2.7290000915527344,31.16650009155273 -16354,2018-05-13 10:00:00,25.214000701904297,5.361000061035156,37.90299987792969,7.61299991607666,-12.847000122070312,-2.7290000915527344,34.24300003051758 -16355,2018-05-13 11:00:00,30.99399948120117,7.454999923706055,43.21099853515625,9.32800006866455,-11.631999969482422,-2.7290000915527344,38.63800048828125 -16356,2018-05-13 12:00:00,32.250999450683594,8.461000442504883,43.88100051879883,10.133000373840332,-11.631999969482422,-2.7290000915527344,40.39550018310547 -16357,2018-05-13 13:00:00,30.072999954223643,7.623000144958496,42.19200134277344,9.435999870300291,-11.631999969482422,-1.99399995803833,42.15299987792969 -16358,2018-05-13 14:00:00,32.58599853515625,9.465999603271484,45.06000137329102,11.071000099182127,-11.631999969482422,-1.99399995803833,43.69150161743164 -16359,2018-05-13 15:00:00,31.496999740600582,8.628000259399414,43.63999938964844,10.427000045776367,-11.609999656677244,-1.962000012397766,44.570499420166016 -16360,2018-05-13 16:00:00,30.40800094604492,7.454999923706055,42.99599838256836,9.220999717712402,-12.826000213623049,-1.962000012397766,43.69150161743164 -16361,2018-05-13 17:00:00,32.250999450683594,8.461000442504883,43.72000122070313,9.623000144958496,-11.609999656677244,-1.962000012397766,42.59299850463867 -16362,2018-05-13 18:00:00,29.319000244140625,7.539000034332275,41.790000915527344,9.034000396728516,-11.631999969482422,-1.962000012397766,40.834999084472656 -16363,2018-05-13 19:00:00,26.88999938964844,6.701000213623048,37.58200073242188,8.203000068664549,-10.51200008392334,-1.962000012397766,39.29700088500977 -16364,2018-05-13 20:00:00,29.65399932861328,7.288000106811522,40.79800033569336,8.657999992370605,-11.73799991607666,-1.962000012397766,37.53900146484375 -16365,2018-05-13 21:00:00,32.16699981689453,8.963000297546387,44.01499938964844,10.07900047302246,-10.52299976348877,-1.962000012397766,36.000999450683594 -16366,2018-05-13 22:00:00,28.145999908447266,8.878999710083008,39.77999877929688,10.105999946594238,-10.586999893188477,-1.962000012397766,34.68249893188477 -16367,2018-05-13 23:00:00,29.066999435424805,8.543999671936035,39.86000061035156,9.248000144958496,-10.50100040435791,-1.3329999446868896,34.02349853515625 -16368,2018-05-14 00:00:00,29.15099906921387,9.130999565124512,40.07500076293945,9.91800022125244,-10.5649995803833,-2.5480000972747803,33.80350112915039 -16369,2018-05-14 01:00:00,28.64900016784668,8.461000442504883,39.86000061035156,9.729999542236328,-10.586999893188477,-2.5480000972747803,33.36449813842773 -16370,2018-05-14 02:00:00,24.041000366210927,7.789999961853027,35.518001556396484,8.819000244140625,-10.692999839782717,-2.5480000972747803,32.705001831054695 -16371,2018-05-14 03:00:00,26.972999572753903,8.376999855041504,37.04600143432617,9.274999618530272,-10.51200008392334,-1.2580000162124634,32.485000610351555 -16372,2018-05-14 04:00:00,24.041000366210927,7.874000072479247,35.40999984741211,9.0600004196167,-10.51200008392334,-1.2580000162124634,32.265499114990234 -16373,2018-05-14 05:00:00,24.292999267578125,7.288000106811522,33.80199813842773,8.255999565124513,-9.28600025177002,-1.2580000162124634,31.82600021362305 -16374,2018-05-14 06:00:00,29.98900032043457,8.628000259399414,39.94100189208984,9.54300022125244,-10.640000343322754,-1.3329999446868896,31.606000900268555 -16375,2018-05-14 07:00:00,26.72200012207031,7.623000144958496,38.43899917602539,8.657999992370605,-10.66100025177002,-1.3329999446868896,32.04600143432617 -16376,2018-05-14 08:00:00,24.96299934387207,6.114999771118164,35.8120002746582,7.559000015258789,-10.66100025177002,-1.3329999446868896,33.363998413085945 -16377,2018-05-14 09:00:00,30.57500076293945,9.381999969482422,42.91600036621094,11.204999923706056,-11.876999855041506,-2.5480000972747803,35.78099822998047 -16378,2018-05-14 10:00:00,27.05699920654297,7.539000034332275,39.64599990844727,9.48900032043457,-11.876999855041506,-2.5480000972747803,38.198001861572266 -16379,2018-05-14 11:00:00,30.57500076293945,7.789999961853027,43.80099868774414,9.838000297546388,-11.854999542236328,-2.5480000972747803,41.7135009765625 -16380,2018-05-14 12:00:00,32.75299835205078,8.711999893188478,45.32899856567383,10.480999946594238,-11.845000267028809,-2.5480000972747803,42.8125 -16381,2018-05-14 13:00:00,31.413000106811523,8.795999526977539,44.06900024414063,10.508000373840332,-11.845000267028809,-2.5480000972747803,43.9109992980957 -16382,2018-05-14 14:00:00,33.42300033569336,9.968000411987305,45.38199996948242,11.392000198364258,-11.812999725341797,-1.7059999704360962,43.9109992980957 -16383,2018-05-14 15:00:00,32.83700180053711,10.220000267028809,46.13299942016602,11.767999649047852,-13.071000099182127,-2.931999921798706,44.35100173950195 -16384,2018-05-14 16:00:00,34.429000854492195,10.052000045776367,45.89099884033203,11.472999572753904,-11.717000007629396,-2.931999921798706,45.44900131225586 -16385,2018-05-14 17:00:00,35.26599884033203,10.220000267028809,47.1510009765625,11.446000099182127,-11.727999687194824,-2.931999921798706,44.790000915527344 -16386,2018-05-14 18:00:00,34.847000122070305,9.717000007629396,45.73099899291992,10.401000022888184,-10.437000274658203,-1.3539999723434448,44.13100051879883 -16387,2018-05-14 19:00:00,33.088001251220696,9.717000007629396,42.70199966430664,9.595999717712402,-9.12600040435791,0.0,43.25199890136719 -16388,2018-05-14 20:00:00,35.93600082397461,9.381999969482422,46.18600082397461,9.56999969482422,-9.904000282287598,-1.22599995136261,41.7135009765625 -16389,2018-05-14 21:00:00,37.86299896240234,10.638999938964844,48.00899887084961,10.96399974822998,-9.862000465393066,-1.2690000534057615,40.615501403808594 -16390,2018-05-14 22:00:00,33.34000015258789,9.29800033569336,43.82699966430664,10.07900047302246,-9.862000465393066,-1.2150000333786009,39.95600128173828 -16391,2018-05-14 23:00:00,36.77399826049805,11.309000015258787,46.2400016784668,11.312000274658203,-8.689000129699707,-1.2369999885559082,39.516998291015625 -16392,2018-05-15 00:00:00,32.250999450683594,9.465999603271484,43.479000091552734,10.401000022888184,-10.095999717712402,-1.2369999885559082,39.29700088500977 -16393,2018-05-15 01:00:00,31.99900054931641,8.963000297546387,40.74499893188477,9.11400032043457,-8.859999656677246,0.0,38.85749816894531 -16394,2018-05-15 02:00:00,31.66399955749512,9.717000007629396,42.48699951171875,10.588000297546388,-10.04300022125244,-1.3109999895095823,38.198001861572266 -16395,2018-05-15 03:00:00,30.492000579833984,9.550000190734863,39.77999877929688,9.890999794006348,-8.741999626159668,0.0,37.31900024414063 -16396,2018-05-15 04:00:00,25.88400077819824,6.86899995803833,35.946998596191406,7.639999866485598,-8.913000106811523,-1.22599995136261,36.88000106811523 -16397,2018-05-15 05:00:00,25.381999969482425,7.454999923706055,35.678001403808594,8.336999893188478,-9.12600040435791,-1.246999979019165,36.43999862670898 -16398,2018-05-15 06:00:00,31.16200065612793,9.29800033569336,41.22700119018555,9.810999870300291,-9.894000053405762,-1.246999979019165,36.22050094604492 -16399,2018-05-15 07:00:00,30.90999984741211,9.21399974822998,41.14699935913086,9.890999794006348,-9.64900016784668,-1.2580000162124634,36.43999862670898 -16400,2018-05-15 08:00:00,27.726999282836918,7.958000183105469,40.07500076293945,9.54300022125244,-12.036999702453612,-1.2790000438690186,37.97850036621094 -16401,2018-05-15 09:00:00,33.17200088500977,10.722000122070312,45.62300109863281,12.222999572753904,-12.015000343322756,-2.5910000801086426,40.39550018310547 -16402,2018-05-15 10:00:00,30.743000030517567,9.550000190734863,43.66699981689453,11.312000274658203,-12.015000343322756,-2.5910000801086426,42.8125 -16403,2018-05-15 11:00:00,35.85300064086914,9.717000007629396,48.30400085449219,11.204999923706056,-12.005000114440918,-2.5910000801086426,46.10850143432617 -16404,2018-05-15 12:00:00,35.93600082397461,8.963000297546387,48.0359992980957,10.401000022888184,-12.005000114440918,-2.5910000801086426,47.20700073242188 -16405,2018-05-15 13:00:00,38.198001861572266,10.973999977111816,50.77000045776367,12.25,-12.005000114440918,-2.5910000801086426,47.20700073242188 -16406,2018-05-15 14:00:00,35.93600082397461,10.220000267028809,47.553001403808594,11.526000022888184,-10.767999649047852,-1.684000015258789,47.86650085449219 -16407,2018-05-15 15:00:00,39.790000915527344,11.5600004196167,51.19900131225586,12.46500015258789,-11.918999671936035,-1.684000015258789,48.30550003051758 -16408,2018-05-15 16:00:00,37.19300079345703,11.057000160217283,49.85900115966797,12.357000350952148,-11.940999984741213,-1.6529999971389768,48.08599853515625 -16409,2018-05-15 17:00:00,36.94200134277344,10.38700008392334,48.4379997253418,11.579999923706056,-11.876999855041506,-1.6950000524520874,47.64649963378906 -16410,2018-05-15 18:00:00,40.29199981689453,11.140999794006348,49.8849983215332,11.954999923706056,-10.640000343322754,-1.6950000524520874,46.54800033569336 -16411,2018-05-15 19:00:00,37.44400024414063,9.800999641418455,46.29399871826172,10.31999969482422,-8.081000328063965,-1.6950000524520874,45.449501037597656 -16412,2018-05-15 20:00:00,36.94200134277344,9.800999641418455,47.74100112915039,10.45400047302246,-10.543999671936035,-1.6950000524520874,44.13100051879883 -16413,2018-05-15 21:00:00,39.45500183105469,9.381999969482422,50.12699890136719,10.105999946594238,-10.406000137329102,-1.6950000524520874,43.03200149536133 -16414,2018-05-15 22:00:00,37.19300079345703,9.04699993133545,46.749000549316406,9.32800006866455,-9.371000289916992,-1.4500000476837158,42.37300109863281 -16415,2018-05-15 23:00:00,34.512001037597656,7.372000217437744,44.63199996948242,8.095000267028809,-9.79800033569336,-1.2899999618530271,41.93349838256836 -16416,2018-05-16 00:00:00,29.82099914550781,7.037000179290772,40.10100173950195,7.61299991607666,-9.979000091552734,-1.375,41.7140007019043 -16417,2018-05-16 01:00:00,29.40299987792969,6.86899995803833,39.99399948120117,7.907999992370605,-10.67199993133545,-1.4179999828338623,41.27399826049805 -16418,2018-05-16 02:00:00,31.832000732421875,8.376999855041504,40.87900161743164,8.657999992370605,-9.4350004196167,-1.246999979019165,40.834999084472656 -16419,2018-05-16 03:00:00,28.062000274658203,7.203999996185303,37.95700073242188,8.069000244140625,-9.585000038146973,-1.493000030517578,40.615501403808594 -16420,2018-05-16 04:00:00,30.65900039672852,7.623000144958496,40.02099990844727,7.960999965667725,-9.595000267028809,-1.2899999618530271,40.17549896240234 -16421,2018-05-16 05:00:00,29.319000244140625,6.2829999923706055,39.69900131225586,7.61299991607666,-11.194000244140623,-2.4730000495910645,39.95600128173828 -16422,2018-05-16 06:00:00,27.81100082397461,6.198999881744385,39.887001037597656,7.854000091552732,-11.17300033569336,-2.483999967575073,39.95600128173828 -16423,2018-05-16 07:00:00,29.738000869750977,6.701000213623048,41.25400161743164,8.390000343322754,-11.17300033569336,-2.483999967575073,39.95600128173828 -16424,2018-05-16 08:00:00,28.062000274658203,6.953000068664551,39.430999755859375,8.925999641418457,-11.152000427246094,-2.483999967575073,40.17549896240234 -16425,2018-05-16 09:00:00,37.19300079345703,11.727999687194824,49.05500030517578,13.107999801635742,-12.366999626159668,-2.483999967575073,42.37300109863281 -16426,2018-05-16 10:00:00,33.17200088500977,9.04699993133545,44.47100067138672,10.53499984741211,-11.140999794006348,-2.483999967575073,44.13100051879883 -16427,2018-05-16 11:00:00,36.52299880981445,10.220000267028809,48.6520004272461,11.767999649047852,-12.366999626159668,-2.483999967575073,47.20700073242188 -16428,2018-05-16 12:00:00,41.46500015258789,12.145999908447266,52.915000915527344,12.946999549865724,-11.152000427246094,-2.483999967575073,47.64649963378906 -16429,2018-05-16 13:00:00,38.70100021362305,10.470999717712402,50.63600158691406,11.687000274658203,-11.152000427246094,-2.483999967575073,49.18500137329102 -16430,2018-05-16 14:00:00,39.874000549316406,11.895000457763672,51.17200088500977,12.732999801635742,-11.152000427246094,-2.483999967575073,50.28300094604492 -16431,2018-05-16 15:00:00,39.62200164794922,11.727999687194824,50.87699890136719,12.760000228881836,-11.097999572753906,-2.483999967575073,50.50299835205078 -16432,2018-05-16 16:00:00,42.97299957275391,13.402999877929688,54.46900177001953,14.072999954223633,-11.097999572753906,-2.483999967575073,49.40449905395508 -16433,2018-05-16 17:00:00,42.88899993896485,12.314000129699709,54.68399810791016,13.187999725341797,-11.097999572753906,-1.5779999494552612,48.30599975585938 -16434,2018-05-16 18:00:00,41.632999420166016,11.895000457763672,52.88800048828125,12.598999977111816,-11.097999572753906,-1.5779999494552612,47.64649963378906 -16435,2018-05-16 19:00:00,37.19300079345703,9.381999969482422,48.4109992980957,10.480999946594238,-11.152000427246094,-2.7929999828338623,46.54800033569336 -16436,2018-05-16 20:00:00,41.71599960327149,10.722000122070312,52.75400161743164,11.312000274658203,-9.79800033569336,-2.7929999828338623,45.449501037597656 -16437,2018-05-16 21:00:00,42.88899993896485,12.229999542236328,53.20899963378906,11.821000099182127,-10.04300022125244,-1.524999976158142,44.13100051879883 -16438,2018-05-16 22:00:00,39.20299911499024,11.810999870300291,48.7859992980957,12.008999824523926,-10.04300022125244,-1.524999976158142,43.25199890136719 -16439,2018-05-16 23:00:00,42.47000122070313,12.145999908447266,49.72499847412109,11.204999923706056,-7.367000102996826,0.0,42.37300109863281 -16440,2018-05-17 00:00:00,35.0989990234375,9.968000411987305,44.41699981689453,10.024999618530272,-8.944999694824219,0.0,41.49399948120117 -16441,2018-05-17 01:00:00,32.250999450683594,9.04699993133545,43.58599853515625,9.595999717712402,-10.19200038909912,-1.4390000104904177,40.615501403808594 -16442,2018-05-17 02:00:00,27.559999465942383,9.04699993133545,37.90299987792969,9.56999969482422,-10.277999877929688,-1.4390000104904177,38.85749816894531 -16443,2018-05-17 03:00:00,26.72200012207031,7.623000144958496,37.31399917602539,8.36299991607666,-10.31999969482422,-1.2580000162124634,37.53900146484375 -16444,2018-05-17 04:00:00,21.61199951171875,5.947999954223633,32.623001098632805,6.915999889373777,-10.576000213623049,-1.2369999885559082,33.80350112915039 -16445,2018-05-17 05:00:00,29.65399932861328,8.376999855041504,39.61899948120117,8.630999565124513,-9.350000381469728,-1.2369999885559082,33.144500732421875 -16446,2018-05-17 06:00:00,31.58099937438965,8.208999633789062,40.45000076293945,8.496999740600586,-9.402999877929688,-1.2150000333786009,31.38649940490723 -16447,2018-05-17 07:00:00,30.90999984741211,8.125,39.72600173950195,8.282999992370605,-9.402999877929688,0.0,30.50749969482422 -16448,2018-05-17 08:00:00,29.319000244140625,7.874000072479247,39.29700088500977,8.282999992370605,-9.510000228881836,-1.3329999446868896,31.16699981689453 -16449,2018-05-17 09:00:00,30.82699966430664,8.878999710083008,42.165000915527344,10.024999618530272,-12.133000373840332,-2.5369999408721924,29.40900039672852 -16450,2018-05-17 10:00:00,23.70599937438965,5.611999988555908,36.21500015258789,7.559000015258789,-12.069000244140623,-2.5369999408721924,30.727500915527344 -16451,2018-05-17 11:00:00,26.88999938964844,6.2829999923706055,37.95700073242188,7.827000141143799,-10.852999687194824,-2.5369999408721924,34.463001251220696 -16452,2018-05-17 12:00:00,30.82699966430664,7.372000217437744,40.79800033569336,8.630999565124513,-9.446000099182127,-2.5369999408721924,37.97850036621094 -16453,2018-05-17 13:00:00,30.239999771118164,6.86899995803833,42.084999084472656,8.52400016784668,-11.89799976348877,-2.5369999408721924,41.054500579833984 -16454,2018-05-17 14:00:00,32.75299835205078,9.04699993133545,43.96099853515625,10.239999771118164,-10.68299961090088,-1.6740000247955322,42.59299850463867 -16455,2018-05-17 15:00:00,39.790000915527344,12.229999542236328,50.50199890136719,12.812999725341797,-10.086000442504885,-1.6740000247955322,43.69150161743164 -16456,2018-05-17 16:00:00,39.0359992980957,11.810999870300291,49.3489990234375,12.545000076293944,-10.064000129699709,-1.6740000247955322,43.47200012207031 -16457,2018-05-17 17:00:00,32.417999267578125,8.628000259399414,44.12200164794922,9.99899959564209,-11.237000465393066,-1.7059999704360962,42.15349960327149 -16458,2018-05-17 18:00:00,36.77399826049805,10.220000267028809,48.30400085449219,11.178000450134276,-11.097999572753906,-1.7059999704360962,41.27450180053711 -16459,2018-05-17 19:00:00,36.1879997253418,8.878999710083008,47.7140007019043,9.756999969482422,-11.184000015258787,-1.7059999704360962,40.615501403808594 -16460,2018-05-17 20:00:00,38.95199966430664,9.381999969482422,49.59099960327149,9.838000297546388,-10.022000312805176,-1.7059999704360962,39.73649978637695 -16461,2018-05-17 21:00:00,42.1349983215332,12.314000129699709,50.28799819946289,11.633999824523926,-8.645999908447267,0.0,38.85749816894531 -16462,2018-05-17 22:00:00,38.28200149536133,11.057000160217283,47.36600112915039,10.508000373840332,-8.496999740600586,0.0,37.97850036621094 -16463,2018-05-17 23:00:00,35.014999389648445,9.130999565124512,45.24800109863281,9.56999969482422,-10.0,-1.4609999656677246,37.53900146484375 -16464,2018-05-18 00:00:00,34.847000122070305,10.38700008392334,43.90800094604492,10.213000297546388,-8.77400016784668,0.0,36.87950134277344 -16465,2018-05-18 01:00:00,30.40800094604492,8.795999526977539,39.512001037597656,9.0600004196167,-9.361000061035156,-1.2150000333786009,36.44049835205078 -16466,2018-05-18 02:00:00,31.74799919128418,9.21399974822998,42.32600021362305,10.239999771118164,-9.894000053405762,-1.4709999561309814,36.22050094604492 -16467,2018-05-18 03:00:00,30.57500076293945,9.130999565124512,40.69100189208984,9.91800022125244,-10.01099967956543,-1.4709999561309814,35.78150177001953 -16468,2018-05-18 04:00:00,29.98900032043457,8.795999526977539,41.09299850463867,9.784000396728516,-11.343999862670898,-1.4709999561309814,35.34149932861328 -16469,2018-05-18 05:00:00,31.66399955749512,9.550000190734863,40.90599822998047,9.677000045776367,-8.859999656677246,-1.2369999885559082,35.12200164794922 -16470,2018-05-18 06:00:00,31.99900054931641,9.130999565124512,41.68299865722656,9.48900032043457,-8.880999565124512,-1.3860000371932983,34.90250015258789 -16471,2018-05-18 07:00:00,32.83700180053711,9.885000228881836,41.709999084472656,10.024999618530272,-7.644000053405763,0.0,35.561500549316406 -16472,2018-05-18 08:00:00,30.90999984741211,8.461000442504883,41.040000915527344,9.11400032043457,-10.383999824523926,-1.2150000333786009,36.87950134277344 -16473,2018-05-18 09:00:00,33.757999420166016,10.303000450134276,46.31999969482422,11.446000099182127,-11.812999725341797,-2.5269999504089355,38.19850158691406 -16474,2018-05-18 10:00:00,33.34000015258789,9.21399974822998,45.59700012207031,10.74899959564209,-11.812999725341797,-2.5269999504089355,39.95600128173828 -16475,2018-05-18 11:00:00,37.277000427246094,10.890000343322754,49.45700073242188,12.008999824523926,-11.812999725341797,-2.5269999504089355,42.15349960327149 -16476,2018-05-18 12:00:00,39.62200164794922,11.392000198364258,51.95000076293945,12.62600040435791,-11.812999725341797,-2.5269999504089355,42.8125 -16477,2018-05-18 13:00:00,41.29800033569336,12.480999946594238,53.07500076293945,13.321999549865724,-11.802000045776367,-2.5269999504089355,44.35049819946289 -16478,2018-05-18 14:00:00,41.04600143432617,12.815999984741213,52.75400161743164,14.04599952697754,-11.791000366210938,-2.5269999504089355,45.22949981689453 -16479,2018-05-18 15:00:00,39.95700073242188,13.152000427246096,52.61999893188477,14.286999702453612,-11.791000366210938,-2.5269999504089355,45.22949981689453 -16480,2018-05-18 16:00:00,37.277000427246094,11.644000053405762,49.96599960327149,12.973999977111816,-13.038999557495115,-2.5269999504089355,43.47150039672852 -16481,2018-05-18 17:00:00,36.77399826049805,9.968000411987305,48.2239990234375,11.446000099182127,-10.576000213623049,-2.5269999504089355,39.272499084472656 -16482,2018-05-18 18:00:00,34.429000854492195,8.878999710083008,45.62300109863281,10.722000122070312,-11.791000366210938,-2.5269999504089355,32.46099853515625 -16483,2018-05-18 19:00:00,29.82099914550781,7.623000144958496,41.57600021362305,9.194000244140623,-11.876999855041506,-2.5269999504089355,31.14249992370605 -16484,2018-05-18 20:00:00,33.92599868774414,9.04699993133545,45.89099884033203,10.427000045776367,-11.812999725341797,-2.5269999504089355,30.26350021362305 -16485,2018-05-18 21:00:00,34.345001220703125,9.465999603271484,45.4630012512207,10.29300022125244,-11.812999725341797,-2.5269999504089355,29.60449981689453 -16486,2018-05-18 22:00:00,34.17699813842773,10.052000045776367,43.34500122070313,10.642000198364258,-10.532999992370604,-2.5269999504089355,30.26350021362305 -16487,2018-05-18 23:00:00,31.32900047302246,9.04699993133545,42.05799865722656,9.94499969482422,-10.479999542236328,-2.5269999504089355,30.26350021362305 -16488,2018-05-19 00:00:00,26.63800048828125,7.706999778747559,37.4739990234375,8.604999542236326,-10.619000434875488,-2.5269999504089355,30.702999114990234 -16489,2018-05-19 01:00:00,28.899999618530277,6.953000068664551,37.58200073242188,7.639999866485598,-9.402999877929688,-1.406999945640564,31.14249992370605 -16490,2018-05-19 02:00:00,22.70100021362305,5.78000020980835,34.06999969482422,7.639999866485598,-11.161999702453612,-1.406999945640564,31.36199951171875 -16491,2018-05-19 03:00:00,28.31399917602539,8.125,38.73400115966797,9.220999717712402,-9.690999984741213,-2.622999906539917,31.36199951171875 -16492,2018-05-19 04:00:00,23.37100028991699,6.7849998474121085,34.042999267578125,7.960999965667725,-10.928000450134276,-2.622999906539917,30.702999114990234 -16493,2018-05-19 05:00:00,25.29800033569336,6.86899995803833,35.2760009765625,7.692999839782715,-9.722999572753906,-2.622999906539917,30.26350021362305 -16494,2018-05-19 06:00:00,28.39699935913086,8.041999816894531,38.14500045776367,9.595999717712402,-10.022000312805176,-2.622999906539917,29.38500022888184 -16495,2018-05-19 07:00:00,27.81100082397461,8.795999526977539,37.58200073242188,9.435999870300291,-9.147000312805176,-1.3969999551773071,29.165000915527344 -16496,2018-05-19 08:00:00,27.22500038146973,7.203999996185303,38.43899917602539,8.336999893188478,-10.52299976348877,-1.662999987602234,28.94499969482422 -16497,2018-05-19 09:00:00,30.32399940490723,9.800999641418455,43.21099853515625,11.579999923706056,-11.951000213623049,-2.7929999828338623,28.94499969482422 -16498,2018-05-19 10:00:00,27.726999282836918,6.2829999923706055,39.37799835205078,7.747000217437744,-11.951000213623049,-2.7929999828338623,29.38500022888184 -16499,2018-05-19 11:00:00,32.250999450683594,9.04699993133545,43.72000122070313,10.508000373840332,-12.005000114440918,-1.7480000257492063,30.92250061035156 -16500,2018-05-19 12:00:00,30.072999954223643,8.208999633789062,42.54100036621094,9.838000297546388,-13.241000175476074,-2.96399998664856,31.36249923706055 -16501,2018-05-19 13:00:00,31.496999740600582,9.21399974822998,43.104000091552734,10.74899959564209,-12.026000022888184,-1.9830000400543213,31.36249923706055 -16502,2018-05-19 14:00:00,30.99399948120117,9.29800033569336,42.94300079345703,10.588000297546388,-10.767999649047852,-1.4709999561309814,31.36249923706055 -16503,2018-05-19 15:00:00,28.81599998474121,8.628000259399414,41.97800064086914,10.213000297546388,-13.262999534606935,-2.697000026702881,31.14249992370605 -16504,2018-05-19 16:00:00,30.90999984741211,8.963000297546387,43.26399993896485,10.31999969482422,-12.015000343322756,-2.697000026702881,31.14249992370605 -16505,2018-05-19 17:00:00,31.916000366210927,8.208999633789062,43.104000091552734,9.32800006866455,-10.779000282287598,-2.697000026702881,31.14249992370605 -16506,2018-05-19 18:00:00,28.39699935913086,6.2829999923706055,39.512001037597656,7.3979997634887695,-10.810999870300291,-2.697000026702881,30.702999114990234 -16507,2018-05-19 19:00:00,28.39699935913086,6.7849998474121085,39.75299835205078,7.665999889373777,-10.843000411987305,-2.697000026702881,30.26350021362305 -16508,2018-05-19 20:00:00,31.413000106811523,8.711999893188478,43.69300079345703,10.024999618530272,-12.111000061035154,-2.697000026702881,30.043500900268555 -16509,2018-05-19 21:00:00,35.014999389648445,9.381999969482422,46.2130012512207,10.267000198364258,-10.885000228881836,-2.697000026702881,29.82399940490723 -16510,2018-05-19 22:00:00,32.75299835205078,9.465999603271484,44.01499938964844,10.267000198364258,-10.949000358581545,-1.4709999561309814,29.38500022888184 -16511,2018-05-19 23:00:00,32.58599853515625,9.633000373840332,42.67499923706055,10.185999870300291,-9.734000205993652,-1.2899999618530271,29.38500022888184 -16512,2018-05-20 00:00:00,29.066999435424805,7.789999961853027,39.27000045776367,8.496999740600586,-9.744000434875488,-1.375,29.38500022888184 -16513,2018-05-20 01:00:00,30.82699966430664,9.21399974822998,39.02899932861328,9.274999618530272,-8.411999702453612,0.0,29.165000915527344 -16514,2018-05-20 02:00:00,30.32399940490723,9.29800033569336,39.75299835205078,10.024999618530272,-9.70199966430664,-1.2790000438690186,28.94499969482422 -16515,2018-05-20 03:00:00,23.62299919128418,6.366000175476074,32.810001373291016,6.835000038146973,-8.550000190734862,0.0,28.94499969482422 -16516,2018-05-20 04:00:00,26.13599967956543,7.789999961853027,36.375,8.791999816894531,-9.690999984741213,-1.3650000095367432,28.94499969482422 -16517,2018-05-20 05:00:00,27.895000457763672,8.125,36.9119987487793,8.578000068664549,-9.637999534606934,0.0,28.506000518798828 -16518,2018-05-20 06:00:00,26.80599975585937,6.86899995803833,36.24100112915039,7.692999839782715,-8.732000350952147,-1.2369999885559082,28.506000518798828 -16519,2018-05-20 07:00:00,25.214000701904297,5.696000099182129,36.10699844360352,6.995999813079834,-9.935999870300291,-1.2690000534057615,28.506000518798828 -16520,2018-05-20 08:00:00,27.81100082397461,7.958000183105469,37.071998596191406,8.203000068664549,-9.48900032043457,0.0,28.506000518798828 -16521,2018-05-20 09:00:00,28.81599998474121,8.041999816894531,40.52999877929688,9.302000045776367,-10.725000381469728,-1.2899999618530271,28.506000518798828 -16522,2018-05-20 10:00:00,25.29800033569336,5.696000099182129,38.46599960327149,7.479000091552732,-11.918999671936035,-2.505000114440918,28.506000518798828 -16523,2018-05-20 11:00:00,32.75299835205078,8.628000259399414,45.40900039672852,9.94499969482422,-11.93000030517578,-2.505000114440918,28.725500106811523 -16524,2018-05-20 12:00:00,30.57500076293945,7.119999885559082,43.26399993896485,8.845999717712402,-13.145000457763672,-2.505000114440918,28.94499969482422 -16525,2018-05-20 13:00:00,31.2450008392334,8.376999855041504,43.02299880981445,9.729999542236328,-11.93000030517578,-2.505000114440918,28.94499969482422 -16526,2018-05-20 14:00:00,29.82099914550781,8.711999893188478,42.83599853515625,10.133000373840332,-11.93000030517578,-2.505000114440918,28.94499969482422 -16527,2018-05-20 15:00:00,28.81599998474121,7.203999996185303,41.30799865722656,8.979999542236328,-11.93000030517578,-2.505000114440918,28.725500106811523 -16528,2018-05-20 16:00:00,30.743000030517567,8.041999816894531,43.29100036621094,9.595999717712402,-11.918999671936035,-2.505000114440918,28.506000518798828 -16529,2018-05-20 17:00:00,32.92100143432617,7.203999996185303,43.58599853515625,8.310000419616701,-10.640000343322754,-2.505000114440918,28.06649971008301 -16530,2018-05-20 18:00:00,33.42300033569336,8.041999816894531,43.34500122070313,8.979999542236328,-9.402999877929688,-1.3009999990463257,27.62700080871582 -16531,2018-05-20 19:00:00,27.47599983215332,5.361000061035156,38.52000045776367,6.5939998626708975,-9.413999557495115,-1.6740000247955322,26.528499603271484 -16532,2018-05-20 20:00:00,32.75299835205078,7.874000072479247,43.63999938964844,9.006999969482422,-10.788999557495115,-1.6740000247955322,26.528499603271484 -16533,2018-05-20 21:00:00,33.92599868774414,8.963000297546387,44.229000091552734,9.515999794006348,-10.746999740600586,-1.6740000247955322,26.528499603271484 -16534,2018-05-20 22:00:00,29.65399932861328,7.958000183105469,39.37799835205078,8.36299991607666,-9.722999572753906,-1.5670000314712524,26.74799919128418 -16535,2018-05-20 23:00:00,24.62800025939941,5.863999843597412,34.257999420166016,6.755000114440918,-9.935999870300291,-1.2790000438690186,26.74799919128418 -16536,2018-05-21 00:00:00,29.90500068664551,8.461000442504883,39.02899932861328,8.845999717712402,-8.645999908447267,-1.22599995136261,26.74799919128418 -16537,2018-05-21 01:00:00,27.81100082397461,8.125,38.33200073242188,8.979999542236328,-9.84000015258789,-1.2369999885559082,26.528499603271484 -16538,2018-05-21 02:00:00,23.37100028991699,6.953000068664551,34.23099899291992,7.71999979019165,-9.713000297546388,-1.2690000534057615,26.30850028991699 -16539,2018-05-21 03:00:00,26.63800048828125,7.539000034332275,36.83100128173828,8.336999893188478,-10.779000282287598,-1.2790000438690186,25.86899948120117 -16540,2018-05-21 04:00:00,26.47100067138672,7.539000034332275,35.893001556396484,8.095000267028809,-9.553000450134276,0.0,25.86899948120117 -16541,2018-05-21 05:00:00,27.22500038146973,8.041999816894531,35.8120002746582,8.444000244140625,-8.262999534606934,-1.2369999885559082,25.86899948120117 -16542,2018-05-21 06:00:00,29.738000869750977,8.125,40.42300033569336,9.220999717712402,-10.800000190734863,-1.246999979019165,25.43000030517578 -16543,2018-05-21 07:00:00,30.072999954223643,8.461000442504883,39.35100173950195,8.416999816894531,-9.520999908447266,0.0,25.43000030517578 -16544,2018-05-21 08:00:00,24.62800025939941,7.623000144958496,33.69499969482422,8.470999717712402,-9.520999908447266,-1.246999979019165,25.64949989318848 -16545,2018-05-21 09:00:00,24.87899971008301,8.795999526977539,37.742000579833984,10.642000198364258,-11.951000213623049,-2.740000009536743,26.08849906921387 -16546,2018-05-21 10:00:00,19.43400001525879,5.611999988555908,30.93400001525879,7.479000091552732,-11.951000213623049,-2.740000009536743,26.96750068664551 -16547,2018-05-21 11:00:00,23.035999298095703,6.86899995803833,35.007999420166016,8.791999816894531,-11.940999984741213,-2.740000009536743,27.62700080871582 -16548,2018-05-21 12:00:00,22.86899948120117,6.7849998474121085,34.41899871826172,8.791999816894531,-12.015000343322756,-1.8760000467300413,28.28650093078613 -16549,2018-05-21 13:00:00,22.86899948120117,7.706999778747559,35.86600112915039,9.810999870300291,-12.015000343322756,-2.0789999961853027,29.165000915527344 -16550,2018-05-21 14:00:00,21.025999069213867,8.125,33.748001098632805,10.185999870300291,-13.295000076293944,-2.0789999961853027,29.82399940490723 -16551,2018-05-21 15:00:00,20.69099998474121,7.119999885559082,33.34600067138672,9.034000396728516,-12.05799961090088,-2.0789999961853027,29.82399940490723 -16552,2018-05-21 16:00:00,23.790000915527344,8.711999893188478,36.59000015258789,10.560999870300291,-12.07900047302246,-2.0789999961853027,29.60449981689453 -16553,2018-05-21 17:00:00,27.392000198364247,8.376999855041504,36.96500015258789,9.354999542236328,-10.767999649047852,-2.0789999961853027,29.38500022888184 -16554,2018-05-21 18:00:00,25.88400077819824,8.041999816894531,36.483001708984375,9.086999893188477,-9.520999908447266,-1.3969999551773071,28.06649971008301 -16555,2018-05-21 19:00:00,22.450000762939453,6.953000068664551,32.702999114990234,8.121999740600586,-10.843000411987305,-1.3969999551773071,27.62700080871582 -16556,2018-05-21 20:00:00,23.70599937438965,5.696000099182129,33.10499954223633,6.701000213623048,-9.626999855041504,-1.5140000581741333,28.506000518798828 -16557,2018-05-21 21:00:00,27.05699920654297,8.795999526977539,35.652000427246094,9.32800006866455,-8.465000152587889,0.0,28.94499969482422 -16558,2018-05-21 22:00:00,24.71199989318848,8.041999816894531,35.19599914550781,9.435999870300291,-10.04300022125244,-1.2899999618530271,28.94499969482422 -16559,2018-05-21 23:00:00,27.97900009155273,9.550000190734863,37.31399917602539,10.133000373840332,-8.678000450134277,-1.2150000333786009,28.94499969482422 -16560,2018-05-22 00:00:00,26.63800048828125,9.633000373840332,35.678001403808594,9.91800022125244,-8.63599967956543,0.0,29.165000915527344 -16561,2018-05-22 01:00:00,24.54400062561035,8.376999855041504,34.5260009765625,9.086999893188477,-9.904000282287598,-1.3109999895095823,29.165000915527344 -16562,2018-05-22 02:00:00,22.36599922180176,8.878999710083008,32.139999389648445,9.595999717712402,-9.871999740600586,-1.3109999895095823,29.165000915527344 -16563,2018-05-22 03:00:00,24.292999267578125,8.208999633789062,34.12400054931641,9.354999542236328,-9.871999740600586,-1.3109999895095823,29.165000915527344 -16564,2018-05-22 04:00:00,21.44499969482422,6.701000213623048,31.89900016784668,8.015000343322754,-9.84000015258789,-1.3109999895095823,29.165000915527344 -16565,2018-05-22 05:00:00,22.0310001373291,6.449999809265138,31.68400001525879,7.77400016784668,-9.871999740600586,-1.3109999895095823,28.945499420166016 -16566,2018-05-22 06:00:00,22.617000579833984,7.203999996185303,33.42699813842773,8.470999717712402,-11.204999923706056,-1.7059999704360962,29.165000915527344 -16567,2018-05-22 07:00:00,23.87400054931641,7.454999923706055,34.097000122070305,8.390000343322754,-9.904000282287598,-1.7059999704360962,29.38500022888184 -16568,2018-05-22 08:00:00,16.92099952697754,4.690999984741211,29.2450008392334,6.513999938964844,-11.237000465393066,-1.7059999704360962,28.94499969482422 -16569,2018-05-22 09:00:00,22.95199966430664,7.706999778747559,35.518001556396484,9.515999794006348,-12.527000427246096,-1.7059999704360962,28.94499969482422 -16570,2018-05-22 10:00:00,12.984000205993652,0.0,24.90299987792969,5.816999912261963,-11.289999961853027,-1.7059999704360962,28.945499420166016 -16571,2018-05-22 11:00:00,13.73799991607666,0.0,26.215999603271484,5.334000110626222,-12.515999794006348,-1.5460000038146973,28.506000518798828 -16572,2018-05-22 12:00:00,13.821999549865724,0.0,26.858999252319336,5.308000087738037,-12.538000106811523,-2.7720000743865967,27.62700080871582 -16573,2018-05-22 13:00:00,17.256000518798828,5.110000133514403,30.5049991607666,7.71999979019165,-12.538000106811523,-2.7720000743865967,25.429500579833984 -16574,2018-05-22 14:00:00,16.0,4.775000095367432,29.48600006103516,7.317999839782715,-13.77400016784668,-2.7720000743865967,24.99049949645996 -16575,2018-05-22 15:00:00,15.748000144958494,4.5229997634887695,27.36899948120117,6.995999813079834,-12.505999565124512,-2.1429998874664307,25.43000030517578 -16576,2018-05-22 16:00:00,22.617000579833984,7.372000217437744,35.57099914550781,9.435999870300291,-13.539999961853027,-2.227999925613404,26.089000701904297 -16577,2018-05-22 17:00:00,21.44499969482422,5.863999843597412,31.631000518798828,7.71999979019165,-9.80799961090088,-2.227999925613404,26.089000701904297 -16578,2018-05-22 18:00:00,25.632999420166016,7.789999961853027,34.472000122070305,8.819000244140625,-8.465000152587889,-1.503000020980835,25.86899948120117 -16579,2018-05-22 19:00:00,19.937000274658203,5.78000020980835,30.61199951171875,7.23799991607666,-11.38599967956543,-1.3539999723434448,26.08849906921387 -16580,2018-05-22 20:00:00,23.035999298095703,6.7849998474121085,34.097000122070305,8.229000091552733,-10.223999977111816,-1.3539999723434448,26.528499603271484 -16581,2018-05-22 21:00:00,26.2189998626709,8.461000442504883,36.1879997253418,9.56999969482422,-10.223999977111816,-1.3539999723434448,26.528499603271484 -16582,2018-05-22 22:00:00,20.27199935913086,6.533999919891357,31.738000869750977,8.095000267028809,-11.673999786376951,-2.5799999237060547,26.96750068664551 -16583,2018-05-22 23:00:00,22.198999404907227,7.623000144958496,34.365001678466804,9.435999870300291,-11.758999824523926,-2.5799999237060547,26.96750068664551 -16584,2018-05-23 00:00:00,23.1200008392334,7.958000183105469,34.847000122070305,9.48900032043457,-11.909000396728516,-2.5799999237060547,26.96750068664551 -16585,2018-05-23 01:00:00,21.36100006103516,7.623000144958496,33.18600082397461,9.194000244140623,-10.67199993133545,-2.5799999237060547,26.74799919128418 -16586,2018-05-23 02:00:00,22.95199966430664,8.376999855041504,34.41899871826172,9.99899959564209,-11.93000030517578,-2.5799999237060547,26.74799919128418 -16587,2018-05-23 03:00:00,19.85300064086914,7.789999961853027,31.256000518798828,9.48900032043457,-10.725000381469728,-2.5799999237060547,25.86899948120117 -16588,2018-05-23 04:00:00,22.70100021362305,8.543999671936035,33.722000122070305,9.729999542236328,-10.725000381469728,-2.5799999237060547,25.43000030517578 -16589,2018-05-23 05:00:00,22.114999771118164,7.454999923706055,32.67599868774414,8.979999542236328,-10.756999969482422,-2.5799999237060547,24.55100059509277 -16590,2018-05-23 06:00:00,20.43899917602539,6.701000213623048,30.45100021362305,8.121999740600586,-10.756999969482422,-2.5799999237060547,24.33099937438965 -16591,2018-05-23 07:00:00,24.375999450683597,8.208999633789062,34.23099899291992,9.32800006866455,-9.48900032043457,-2.5799999237060547,24.55100059509277 -16592,2018-05-23 08:00:00,21.69599914550781,6.86899995803833,33.10499954223633,8.282999992370605,-10.640000343322754,-1.2690000534057615,26.74799919128418 -16593,2018-05-23 09:00:00,24.208999633789062,8.461000442504883,36.8849983215332,10.213000297546388,-11.918999671936035,-2.483999967575073,29.82399940490723 -16594,2018-05-23 10:00:00,18.763999938964844,6.2829999923706055,31.81800079345703,8.36299991607666,-13.135000228881836,-2.483999967575073,33.11999893188477 -16595,2018-05-23 11:00:00,18.847999572753903,5.52899980545044,31.871999740600582,7.800000190734862,-11.876999855041506,-2.483999967575073,37.07550048828125 -16596,2018-05-23 12:00:00,19.51799964904785,6.114999771118164,33.10499954223633,8.52400016784668,-13.102999687194824,-2.483999967575073,38.83300018310547 -16597,2018-05-23 13:00:00,22.28199958801269,8.543999671936035,35.16899871826172,10.29300022125244,-13.050000190734863,-2.483999967575073,40.59049987792969 -16598,2018-05-23 14:00:00,22.70100021362305,9.633000373840332,36.05400085449219,11.418999671936035,-13.050000190734863,-2.483999967575073,42.12900161743164 -16599,2018-05-23 15:00:00,24.54400062561035,9.465999603271484,37.31399917602539,11.553000450134276,-13.050000190734863,-2.483999967575073,42.3484992980957 -16600,2018-05-23 16:00:00,21.69599914550781,8.628000259399414,35.16899871826172,10.722000122070312,-13.050000190734863,-2.483999967575073,40.37149810791016 -16601,2018-05-23 17:00:00,22.78499984741211,8.041999816894531,35.089000701904304,9.94499969482422,-11.802000045776367,-2.483999967575073,38.17399978637695 -16602,2018-05-23 18:00:00,22.78499984741211,8.208999633789062,35.222999572753906,10.052000045776367,-12.975000381469728,-2.483999967575073,36.635501861572266 -16603,2018-05-23 19:00:00,22.53400039672852,7.119999885559082,33.15900039672852,8.550999641418457,-10.36299991607666,-2.483999967575073,35.09749984741211 -16604,2018-05-23 20:00:00,21.527999877929688,6.533999919891357,32.194000244140625,7.98799991607666,-11.609999656677244,-2.483999967575073,32.68099975585937 -16605,2018-05-23 21:00:00,23.70599937438965,8.543999671936035,35.75899887084961,10.53499984741211,-11.6850004196167,-2.483999967575073,30.702999114990234 -16606,2018-05-23 22:00:00,21.277000427246094,7.789999961853027,33.13199996948242,9.595999717712402,-11.631999969482422,-2.483999967575073,29.165000915527344 -16607,2018-05-23 23:00:00,26.63800048828125,9.968000411987305,37.071998596191406,11.151000022888184,-10.37399959564209,-2.483999967575073,28.285999298095703 -16608,2018-05-24 00:00:00,24.62800025939941,9.717000007629396,33.990001678466804,10.53499984741211,-9.147000312805176,-1.22599995136261,27.40699958801269 -16609,2018-05-24 01:00:00,22.95199966430664,9.04699993133545,33.47999954223633,10.024999618530272,-10.479999542236328,-1.22599995136261,26.74799919128418 -16610,2018-05-24 02:00:00,22.95199966430664,9.550000190734863,33.748001098632805,10.560999870300291,-10.479999542236328,-1.22599995136261,26.30850028991699 -16611,2018-05-24 03:00:00,22.78499984741211,9.04699993133545,32.97100067138672,9.99899959564209,-9.350000381469728,-1.22599995136261,25.86899948120117 -16612,2018-05-24 04:00:00,20.27199935913086,7.789999961853027,31.013999938964844,8.95300006866455,-10.66100025177002,-1.22599995136261,25.43000030517578 -16613,2018-05-24 05:00:00,24.96299934387207,9.04699993133545,35.35699844360352,9.99899959564209,-10.66100025177002,-1.22599995136261,24.77050018310547 -16614,2018-05-24 06:00:00,26.972999572753903,9.381999969482422,37.233001708984375,10.427000045776367,-10.70400047302246,-1.22599995136261,24.55100059509277 -16615,2018-05-24 07:00:00,26.88999938964844,10.052000045776367,35.75899887084961,10.347000122070312,-9.114999771118164,-1.3539999723434448,25.64949989318848 -16616,2018-05-24 08:00:00,22.36599922180176,8.041999816894531,33.775001525878906,9.649999618530272,-10.331000328063965,-1.22599995136261,27.84700012207031 -16617,2018-05-24 09:00:00,24.375999450683597,9.465999603271484,36.05400085449219,10.989999771118164,-11.609999656677244,-2.5160000324249268,30.26350021362305 -16618,2018-05-24 10:00:00,18.17799949645996,6.031000137329103,30.93400001525879,8.121999740600586,-11.609999656677244,-2.5160000324249268,32.46099853515625 -16619,2018-05-24 11:00:00,21.94700050354004,7.372000217437744,34.44499969482422,9.32800006866455,-12.836000442504885,-2.5160000324249268,31.582000732421875 -16620,2018-05-24 12:00:00,36.68999862670898,9.29800033569336,49.0009994506836,10.53499984741211,-12.847000122070312,-2.5160000324249268,31.80200004577637 -16621,2018-05-24 13:00:00,25.968000411987305,7.789999961853027,38.0369987487793,9.649999618530272,-12.847000122070312,-2.5160000324249268,35.97650146484375 -16622,2018-05-24 14:00:00,28.39699935913086,9.381999969482422,40.47700119018555,10.937000274658203,-11.58899974822998,-2.5160000324249268,38.39350128173828 -16623,2018-05-24 15:00:00,28.899999618530277,9.130999565124512,41.06600189208984,10.829999923706056,-11.609999656677244,-2.5160000324249268,39.49250030517578 -16624,2018-05-24 16:00:00,28.39699935913086,9.21399974822998,39.61899948120117,10.427000045776367,-11.663999557495115,-2.5160000324249268,37.73450088500977 -16625,2018-05-24 17:00:00,28.64900016784668,8.963000297546387,39.96699905395508,9.838000297546388,-10.437000274658203,-2.5160000324249268,36.635501861572266 -16626,2018-05-24 18:00:00,30.90999984741211,8.878999710083008,42.35300064086914,9.99899959564209,-10.437000274658203,-1.3009999990463257,35.5369987487793 -16627,2018-05-24 19:00:00,28.145999908447266,7.539000034332275,38.06399917602539,8.73900032043457,-9.446000099182127,-1.5889999866485596,34.87799835205078 -16628,2018-05-24 20:00:00,30.072999954223643,7.539000034332275,40.45000076293945,8.657999992370605,-9.562999725341797,-1.5889999866485596,34.438499450683594 -16629,2018-05-24 21:00:00,32.417999267578125,9.633000373840332,43.55899810791016,10.722000122070312,-10.597000122070312,-1.5889999866485596,33.77899932861328 -16630,2018-05-24 22:00:00,30.492000579833984,10.303000450134276,41.06600189208984,10.855999946594238,-10.576000213623049,-1.5889999866485596,33.34000015258789 -16631,2018-05-24 23:00:00,30.743000030517567,10.13599967956543,41.06600189208984,10.642000198364258,-10.543999671936035,-1.375,32.46099853515625 -16632,2018-05-25 00:00:00,28.64900016784668,9.465999603271484,38.89500045776367,10.37399959564209,-10.50100040435791,-1.375,29.82399940490723 -16633,2018-05-25 01:00:00,27.22500038146973,9.04699993133545,37.87699890136719,10.133000373840332,-10.479999542236328,-1.375,29.38450050354004 -16634,2018-05-25 02:00:00,25.71699905395508,7.958000183105469,36.321998596191406,8.819000244140625,-10.479999542236328,-1.375,29.38450050354004 -16635,2018-05-25 03:00:00,25.71699905395508,8.795999526977539,36.10699844360352,9.890999794006348,-10.5649995803833,-1.375,29.60449981689453 -16636,2018-05-25 04:00:00,26.80599975585937,9.130999565124512,37.071998596191406,10.024999618530272,-10.5649995803833,-1.375,29.60449981689453 -16637,2018-05-25 05:00:00,26.13599967956543,8.543999671936035,35.8390007019043,9.381999969482422,-9.446000099182127,-1.375,29.60449981689453 -16638,2018-05-25 06:00:00,27.64299964904785,8.795999526977539,37.52799987792969,9.54300022125244,-9.446000099182127,-1.375,29.60449981689453 -16639,2018-05-25 07:00:00,29.65399932861328,8.878999710083008,38.06399917602539,9.11400032043457,-9.361000061035156,0.0,29.82399940490723 -16640,2018-05-25 08:00:00,24.208999633789062,7.037000179290772,35.222999572753906,8.630999565124513,-10.906999588012695,-1.3969999551773071,30.48349952697754 -16641,2018-05-25 09:00:00,28.983999252319336,10.303000450134276,42.35300064086914,11.902000427246096,-12.09000015258789,-2.611999988555908,30.92250061035156 -16642,2018-05-25 10:00:00,24.96299934387207,7.119999885559082,37.39400100708008,9.16800022125244,-12.154000282287598,-2.611999988555908,31.80150032043457 -16643,2018-05-25 11:00:00,25.968000411987305,6.953000068664551,38.49300003051758,9.11400032043457,-12.196999549865724,-2.611999988555908,31.582000732421875 -16644,2018-05-25 12:00:00,28.39699935913086,7.874000072479247,41.06600189208984,9.972000122070312,-12.196999549865724,-2.282000064849853,31.36199951171875 -16645,2018-05-25 13:00:00,27.726999282836918,8.125,39.430999755859375,9.810999870300291,-12.196999549865724,-1.950999975204468,32.24100112915039 -16646,2018-05-25 14:00:00,28.64900016784668,9.550000190734863,40.31600189208984,11.097999572753906,-11.045000076293944,-1.8550000190734863,34.21900177001953 -16647,2018-05-25 15:00:00,27.97900009155273,9.04699993133545,39.94100189208984,10.722000122070312,-12.29300022125244,-1.8550000190734863,33.77899932861328 -16648,2018-05-25 16:00:00,31.32900047302246,9.633000373840332,42.97000122070313,10.53499984741211,-12.29300022125244,-1.8550000190734863,33.34000015258789 -16649,2018-05-25 17:00:00,27.64299964904785,6.366000175476074,39.13600158691406,7.71999979019165,-11.06700038909912,-1.8550000190734863,33.11999893188477 -16650,2018-05-25 18:00:00,30.65900039672852,7.454999923706055,43.69300079345703,9.274999618530272,-12.281999588012695,-1.8550000190734863,29.38500022888184 -16651,2018-05-25 19:00:00,27.141000747680664,5.863999843597412,39.69900131225586,8.041999816894531,-12.29300022125244,-3.0699999332427983,26.96750068664551 -16652,2018-05-25 20:00:00,30.239999771118164,8.293000221252441,42.94300079345703,10.213000297546388,-12.29300022125244,-3.0699999332427983,27.1875 -16653,2018-05-25 21:00:00,30.32399940490723,7.539000034332275,42.35300064086914,9.248000144958496,-12.335000038146973,-3.0699999332427983,27.1875 -16654,2018-05-25 22:00:00,29.90500068664551,8.041999816894531,41.89699935913086,9.864999771118164,-11.045000076293944,-3.0699999332427983,27.1875 -16655,2018-05-25 23:00:00,28.81599998474121,8.293000221252441,40.36899948120117,9.595999717712402,-10.468999862670898,-3.0699999332427983,26.52799987792969 -16656,2018-05-26 00:00:00,29.319000244140625,9.04699993133545,39.86000061035156,10.347000122070312,-10.342000007629396,-1.8550000190734863,26.52799987792969 -16657,2018-05-26 01:00:00,23.20400047302246,5.947999954223633,34.41899871826172,7.452000141143799,-10.21399974822998,-1.8550000190734863,26.74799919128418 -16658,2018-05-26 02:00:00,25.88400077819824,8.461000442504883,37.18000030517578,9.756999969482422,-11.503999710083008,-1.8550000190734863,26.96750068664551 -16659,2018-05-26 03:00:00,28.229999542236328,8.461000442504883,37.84999847412109,9.302000045776367,-8.944999694824219,-1.8550000190734863,27.1875 -16660,2018-05-26 04:00:00,25.46500015258789,7.288000106811522,36.1609992980957,8.52400016784668,-10.36299991607666,-1.8550000190734863,27.1875 -16661,2018-05-26 05:00:00,24.54400062561035,6.449999809265138,34.847000122070305,7.854000091552732,-9.062000274658203,-1.8550000190734863,27.1875 -16662,2018-05-26 06:00:00,29.066999435424805,8.293000221252441,38.92200088500977,9.140999794006348,-9.12600040435791,-1.8550000190734863,27.1875 -16663,2018-05-26 07:00:00,28.73200035095215,7.789999961853027,38.198001861572266,8.791999816894531,-8.902000427246094,-1.343000054359436,27.40699958801269 -16664,2018-05-26 08:00:00,27.81100082397461,7.203999996185303,36.96500015258789,8.041999816894531,-8.699999809265138,-1.3329999446868896,27.62700080871582 -16665,2018-05-26 09:00:00,25.46500015258789,7.203999996185303,38.38600158691406,9.140999794006348,-12.314000129699709,-2.5480000972747803,28.506000518798828 -16666,2018-05-26 10:00:00,26.72200012207031,6.533999919891357,39.35100173950195,8.36299991607666,-12.314000129699709,-2.5480000972747803,28.94499969482422 -16667,2018-05-26 11:00:00,29.066999435424805,8.878999710083008,42.43399810791016,10.69499969482422,-12.314000129699709,-2.5480000972747803,29.38500022888184 -16668,2018-05-26 12:00:00,27.726999282836918,6.701000213623048,41.30799865722656,9.086999893188477,-12.314000129699709,-2.5480000972747803,30.26350021362305 -16669,2018-05-26 13:00:00,30.65900039672852,8.543999671936035,42.83599853515625,9.91800022125244,-12.345999717712402,-2.5480000972747803,31.582000732421875 -16670,2018-05-26 14:00:00,28.565000534057607,8.543999671936035,41.14699935913086,10.45400047302246,-12.25,-2.5480000972747803,32.68050003051758 -16671,2018-05-26 15:00:00,28.31399917602539,8.041999816894531,41.22700119018555,9.810999870300291,-12.25,-2.5480000972747803,33.34000015258789 -16672,2018-05-26 16:00:00,31.32900047302246,8.711999893188478,42.27299880981445,9.784000396728516,-10.939000129699709,-2.5480000972747803,33.34000015258789 -16673,2018-05-26 17:00:00,33.088001251220696,8.543999671936035,43.88100051879883,9.595999717712402,-10.939000129699709,-2.5480000972747803,33.34000015258789 -16674,2018-05-26 18:00:00,27.81100082397461,6.7849998474121085,38.94900131225586,8.390000343322754,-10.916999816894531,-2.5480000972747803,32.900501251220696 -16675,2018-05-26 19:00:00,27.392000198364247,5.78000020980835,38.73400115966797,7.1570000648498535,-10.916999816894531,-2.5480000972747803,32.46099853515625 -16676,2018-05-26 20:00:00,28.481000900268555,5.361000061035156,39.21699905395508,6.915999889373777,-10.895999908447266,-2.5480000972747803,32.021499633789055 -16677,2018-05-26 21:00:00,28.983999252319336,6.7849998474121085,40.63800048828125,8.416999816894531,-10.895999908447266,-2.5480000972747803,31.80200004577637 -16678,2018-05-26 22:00:00,27.559999465942383,6.953000068664551,38.52000045776367,8.069000244140625,-10.895999908447266,-2.5480000972747803,31.582000732421875 -16679,2018-05-26 23:00:00,28.062000274658203,6.618000030517577,37.71599960327149,7.77400016784668,-9.446000099182127,-1.3329999446868896,31.582000732421875 -16680,2018-05-27 00:00:00,27.392000198364247,6.86899995803833,36.858001708984375,7.290999889373777,-9.425000190734863,-1.246999979019165,31.14249992370605 -16681,2018-05-27 01:00:00,27.559999465942383,7.789999961853027,36.321998596191406,8.095000267028809,-9.307000160217283,-1.2899999618530271,30.702999114990234 -16682,2018-05-27 02:00:00,26.88999938964844,7.539000034332275,36.858001708984375,8.496999740600586,-9.371000289916992,-1.3109999895095823,30.482999801635746 -16683,2018-05-27 03:00:00,25.04700088500977,7.288000106811522,35.11600112915039,7.88100004196167,-9.222000122070312,-1.3650000095367432,30.26350021362305 -16684,2018-05-27 04:00:00,27.392000198364247,7.623000144958496,36.10699844360352,7.960999965667725,-9.147000312805176,-1.2580000162124634,30.26350021362305 -16685,2018-05-27 05:00:00,25.968000411987305,7.203999996185303,36.42900085449219,8.121999740600586,-9.211000442504885,-1.2790000438690186,30.04400062561035 -16686,2018-05-27 06:00:00,26.47100067138672,7.454999923706055,36.42900085449219,8.095000267028809,-9.232999801635742,-1.2369999885559082,30.04400062561035 -16687,2018-05-27 07:00:00,28.983999252319336,7.203999996185303,37.071998596191406,7.639999866485598,-7.888999938964844,0.0,30.04400062561035 -16688,2018-05-27 08:00:00,24.96299934387207,5.696000099182129,35.16899871826172,6.755000114440918,-9.211000442504885,-1.2790000438690186,30.26350021362305 -16689,2018-05-27 09:00:00,28.565000534057607,7.119999885559082,40.42300033569336,8.604999542236326,-11.802000045776367,-1.4390000104904177,29.60449981689453 -16690,2018-05-27 10:00:00,26.80599975585937,5.863999843597412,38.573001861572266,7.50600004196167,-11.802000045776367,-2.6549999713897705,29.82399940490723 -16691,2018-05-27 11:00:00,27.141000747680664,5.110000133514403,39.18999862670898,6.942999839782715,-11.802000045776367,-2.6549999713897705,31.14249992370605 -16692,2018-05-27 12:00:00,29.319000244140625,7.203999996185303,41.68299865722656,8.496999740600586,-11.802000045776367,-2.6549999713897705,32.46099853515625 -16693,2018-05-27 13:00:00,30.743000030517567,7.958000183105469,42.51399993896485,9.302000045776367,-11.802000045776367,-2.6549999713897705,34.21900177001953 -16694,2018-05-27 14:00:00,27.97900009155273,7.119999885559082,39.61899948120117,8.550999641418457,-11.802000045776367,-2.6549999713897705,35.756500244140625 -16695,2018-05-27 15:00:00,27.64299964904785,6.86899995803833,39.16299819946289,8.390000343322754,-11.74899959564209,-1.6740000247955322,38.17399978637695 -16696,2018-05-27 16:00:00,29.066999435424805,7.789999961853027,40.69100189208984,8.899999618530273,-11.673999786376951,-1.6740000247955322,38.61299896240234 -16697,2018-05-27 17:00:00,31.66399955749512,7.789999961853027,42.70199966430664,8.604999542236326,-10.35200023651123,-1.6740000247955322,39.053001403808594 -16698,2018-05-27 18:00:00,30.57500076293945,7.706999778747559,41.20000076293945,8.52400016784668,-10.35200023651123,-1.6740000247955322,38.39350128173828 -16699,2018-05-27 19:00:00,28.565000534057607,5.947999954223633,38.89500045776367,6.809000015258789,-10.35200023651123,-1.6740000247955322,37.07500076293945 -16700,2018-05-27 20:00:00,31.2450008392334,6.7849998474121085,41.52199935913086,7.77400016784668,-10.383999824523926,-1.6740000247955322,35.75699996948242 -16701,2018-05-27 21:00:00,29.066999435424805,6.198999881744385,39.02899932861328,7.0229997634887695,-10.383999824523926,-1.6740000247955322,34.65800094604492 -16702,2018-05-27 22:00:00,29.90500068664551,8.041999816894531,40.34299850463867,8.657999992370605,-10.17099952697754,-1.6740000247955322,33.55950164794922 -16703,2018-05-27 23:00:00,27.308000564575195,6.86899995803833,38.22499847412109,8.015000343322754,-10.138999938964844,-1.6740000247955322,32.68099975585937 -16704,2018-05-28 00:00:00,25.632999420166016,6.701000213623048,35.11600112915039,7.1570000648498535,-9.052000045776367,-1.246999979019165,32.021499633789055 -16705,2018-05-28 01:00:00,23.87400054931641,5.611999988555908,33.90900039672852,6.7820000648498535,-9.12600040435791,-1.4609999656677246,31.582000732421875 -16706,2018-05-28 02:00:00,25.80100059509277,6.86899995803833,34.31100082397461,7.210999965667725,-9.605999946594238,0.0,31.14249992370605 -16707,2018-05-28 03:00:00,22.95199966430664,6.2829999923706055,32.97100067138672,7.0229997634887695,-9.541999816894531,-1.2369999885559082,30.702999114990234 -16708,2018-05-28 04:00:00,14.491999626159668,0.0,23.15999984741211,2.815000057220459,-8.61400032043457,0.0,30.26350021362305 -16709,2018-05-28 05:00:00,24.795000076293945,7.789999961853027,34.60599899291992,8.175999641418457,-8.838000297546387,0.0,30.26350021362305 -16710,2018-05-28 06:00:00,28.64900016784668,8.376999855041504,37.71599960327149,8.819000244140625,-9.020000457763672,-1.2150000333786009,29.82399940490723 -16711,2018-05-28 07:00:00,26.55400085449219,7.372000217437744,35.7859992980957,7.747000217437744,-8.880999565124512,0.0,30.26350021362305 -16712,2018-05-28 08:00:00,26.05200004577637,6.618000030517577,36.1879997253418,7.50600004196167,-9.914999961853027,-1.2369999885559082,31.80200004577637 -16713,2018-05-28 09:00:00,25.88400077819824,6.86899995803833,38.49300003051758,8.685000419616701,-12.281999588012695,-2.4730000495910645,33.55950164794922 -16714,2018-05-28 10:00:00,24.62800025939941,5.863999843597412,38.14500045776367,7.585999965667725,-12.366999626159668,-2.4730000495910645,34.438499450683594 -16715,2018-05-28 11:00:00,28.81599998474121,7.454999923706055,41.28099822998047,9.0600004196167,-12.366999626159668,-2.4730000495910645,35.5369987487793 -16716,2018-05-28 12:00:00,26.80599975585937,5.611999988555908,40.15499877929688,7.800000190734862,-13.625,-2.4730000495910645,37.73450088500977 -16717,2018-05-28 13:00:00,28.73200035095215,7.119999885559082,40.93199920654297,8.52400016784668,-12.324999809265137,-2.4730000495910645,38.39350128173828 -16718,2018-05-28 14:00:00,31.2450008392334,9.381999969482422,42.88899993896485,10.883000373840332,-12.324999809265137,-2.4730000495910645,38.61299896240234 -16719,2018-05-28 15:00:00,31.832000732421875,9.968000411987305,43.61299896240234,11.526000022888184,-11.097999572753906,-2.4730000495910645,39.053001403808594 -16720,2018-05-28 16:00:00,33.088001251220696,10.220000267028809,44.49800109863281,11.392000198364258,-10.980999946594238,-1.6950000524520874,39.053001403808594 -16721,2018-05-28 17:00:00,31.496999740600582,9.633000373840332,41.65599822998047,10.401000022888184,-10.980999946594238,-1.6950000524520874,39.053001403808594 -16722,2018-05-28 18:00:00,33.50699996948242,9.381999969482422,42.48699951171875,9.91800022125244,-9.147000312805176,-1.6950000524520874,38.17399978637695 -16723,2018-05-28 19:00:00,32.75299835205078,8.878999710083008,42.51399993896485,9.461999893188477,-8.82800006866455,-1.5670000314712524,37.07500076293945 -16724,2018-05-28 20:00:00,33.92599868774414,9.130999565124512,42.51399993896485,9.435999870300291,-8.913000106811523,-1.246999979019165,36.19599914550781 -16725,2018-05-28 21:00:00,34.59600067138672,9.800999641418455,44.63199996948242,10.401000022888184,-10.138999938964844,-1.63100004196167,35.5369987487793 -16726,2018-05-28 22:00:00,29.90500068664551,8.795999526977539,38.78799819946289,9.11400032043457,-8.880999565124512,-1.2150000333786009,34.87799835205078 -16727,2018-05-28 23:00:00,31.16200065612793,9.29800033569336,39.80699920654297,9.515999794006348,-9.093999862670898,0.0,34.438499450683594 -16728,2018-05-29 00:00:00,27.141000747680664,8.208999633789062,36.9379997253418,8.685000419616701,-9.585000038146973,-1.3650000095367432,33.99900054931641 -16729,2018-05-29 01:00:00,28.481000900268555,8.963000297546387,36.64300155639648,8.791999816894531,-8.241000175476074,0.0,33.77899932861328 -16730,2018-05-29 02:00:00,24.62800025939941,7.454999923706055,33.88199996948242,8.203000068664549,-9.85099983215332,-1.5349999666213991,33.34000015258789 -16731,2018-05-29 03:00:00,26.88999938964844,8.711999893188478,36.1609992980957,9.140999794006348,-9.79800033569336,-1.2690000534057615,32.900501251220696 -16732,2018-05-29 04:00:00,29.738000869750977,9.633000373840332,38.11800003051758,9.677000045776367,-8.571999549865723,0.0,32.900501251220696 -16733,2018-05-29 05:00:00,23.45499992370605,7.203999996185303,33.15900039672852,8.041999816894531,-9.4350004196167,-1.2369999885559082,32.46099853515625 -16734,2018-05-29 06:00:00,30.239999771118164,9.130999565124512,40.20899963378906,9.515999794006348,-9.178999900817873,-1.375,32.46099853515625 -16735,2018-05-29 07:00:00,30.743000030517567,9.04699993133545,40.34299850463867,9.515999794006348,-9.690999984741213,-1.3220000267028809,32.46099853515625 -16736,2018-05-29 08:00:00,24.375999450683597,6.114999771118164,35.49100112915039,7.263999938964844,-10.906999588012695,-1.2580000162124634,33.34000015258789 -16737,2018-05-29 09:00:00,29.82099914550781,9.381999969482422,41.92399978637695,10.855999946594238,-12.121999740600586,-2.483999967575073,34.65800094604492 -16738,2018-05-29 10:00:00,22.86899948120117,5.445000171661377,34.41899871826172,7.317999839782715,-10.885000228881836,-2.483999967575073,35.09749984741211 -16739,2018-05-29 11:00:00,26.30299949645996,7.203999996185303,38.70800018310547,8.496999740600586,-12.142999649047852,-2.483999967575073,35.31700134277344 -16740,2018-05-29 12:00:00,27.64299964904785,6.701000213623048,40.74499893188477,8.282999992370605,-12.164999961853027,-2.483999967575073,36.19599914550781 -16741,2018-05-29 13:00:00,31.077999114990234,9.633000373840332,43.55899810791016,11.232000350952148,-12.164999961853027,-2.483999967575073,36.63600158691406 -16742,2018-05-29 14:00:00,31.496999740600582,10.38700008392334,44.20299911499024,11.767999649047852,-12.164999961853027,-2.483999967575073,37.07500076293945 -16743,2018-05-29 15:00:00,32.83700180053711,10.805999755859377,44.95299911499024,12.08899974822998,-12.164999961853027,-2.483999967575073,37.73450088500977 -16744,2018-05-29 16:00:00,30.90999984741211,9.21399974822998,42.29899978637695,10.642000198364258,-10.83199977874756,-1.715999960899353,37.73450088500977 -16745,2018-05-29 17:00:00,29.65399932861328,8.125,41.20000076293945,9.48900032043457,-10.939000129699709,-1.715999960899353,37.29499816894531 -16746,2018-05-29 18:00:00,28.983999252319336,8.125,40.15499877929688,9.140999794006348,-10.939000129699709,-1.715999960899353,36.85549926757813 -16747,2018-05-29 19:00:00,31.077999114990234,8.293000221252441,41.09299850463867,8.95300006866455,-9.70199966430664,-1.3969999551773071,36.19599914550781 -16748,2018-05-29 20:00:00,32.58599853515625,8.628000259399414,42.48699951171875,9.220999717712402,-9.755000114440918,-1.3860000371932983,35.5369987487793 -16749,2018-05-29 21:00:00,34.429000854492195,9.968000411987305,44.25600051879883,10.508000373840332,-9.755000114440918,-1.4609999656677246,34.65800094604492 -16750,2018-05-29 22:00:00,33.92599868774414,10.220000267028809,43.02299880981445,10.401000022888184,-8.47599983215332,0.0,33.77899932861328 -16751,2018-05-29 23:00:00,27.81100082397461,8.543999671936035,37.4739990234375,8.765000343322754,-9.48900032043457,0.0,33.77899932861328 -16752,2018-05-30 00:00:00,28.983999252319336,8.963000297546387,39.29700088500977,9.48900032043457,-9.48900032043457,-1.2369999885559082,33.77899932861328 -16753,2018-05-30 01:00:00,27.559999465942383,8.628000259399414,37.448001861572266,8.899999618530273,-10.138999938964844,0.0,33.34000015258789 -16754,2018-05-30 02:00:00,26.88999938964844,8.376999855041504,36.50899887084961,9.16800022125244,-8.848999977111816,-1.3009999990463257,31.582000732421875 -16755,2018-05-30 03:00:00,26.63800048828125,8.963000297546387,36.21500015258789,9.274999618530272,-8.913000106811523,0.0,31.80200004577637 -16756,2018-05-30 04:00:00,27.05699920654297,8.878999710083008,36.24100112915039,9.48900032043457,-8.699999809265138,-1.3109999895095823,32.021499633789055 -16757,2018-05-30 05:00:00,26.88999938964844,7.958000183105469,36.1879997253418,8.336999893188478,-8.699999809265138,0.0,32.021499633789055 -16758,2018-05-30 06:00:00,30.32399940490723,8.795999526977539,39.27000045776367,9.034000396728516,-9.32900047302246,0.0,32.021499633789055 -16759,2018-05-30 07:00:00,28.39699935913086,8.628000259399414,37.79600143432617,8.711999893188478,-9.402999877929688,0.0,32.46099853515625 -16760,2018-05-30 08:00:00,23.95800018310547,6.031000137329103,33.80199813842773,6.835000038146973,-9.531000137329102,-1.2580000162124634,32.900501251220696 -16761,2018-05-30 09:00:00,28.31399917602539,9.04699993133545,41.57600021362305,10.803000450134276,-13.262999534606935,-2.5369999408721924,33.77899932861328 -16762,2018-05-30 10:00:00,25.46500015258789,6.031000137329103,38.27899932861328,7.532000064849853,-11.994000434875488,-2.5369999408721924,35.09749984741211 -16763,2018-05-30 11:00:00,28.983999252319336,6.7849998474121085,41.11999893188477,8.203000068664549,-12.026000022888184,-2.5369999408721924,36.19599914550781 -16764,2018-05-30 12:00:00,30.072999954223643,8.711999893188478,42.459999084472656,10.105999946594238,-12.026000022888184,-2.5369999408721924,37.29499816894531 -16765,2018-05-30 13:00:00,30.32399940490723,9.21399974822998,42.29899978637695,10.642000198364258,-11.961999893188477,-2.5369999408721924,38.17399978637695 -16766,2018-05-30 14:00:00,27.308000564575195,7.789999961853027,39.32400131225586,9.302000045776367,-11.961999893188477,-2.5369999408721924,38.17399978637695 -16767,2018-05-30 15:00:00,29.56999969482422,8.628000259399414,41.28099822998047,10.07900047302246,-11.972999572753904,-2.5369999408721924,38.83300018310547 -16768,2018-05-30 16:00:00,29.90500068664551,9.04699993133545,41.84400177001953,10.53499984741211,-11.972999572753904,-2.5369999408721924,39.71200180053711 -16769,2018-05-30 17:00:00,30.65900039672852,8.293000221252441,41.84400177001953,9.70400047302246,-10.756999969482422,-2.5369999408721924,39.71200180053711 -16770,2018-05-30 18:00:00,33.757999420166016,9.465999603271484,44.47100067138672,10.159000396728516,-10.628999710083008,-2.5369999408721924,38.39350128173828 -16771,2018-05-30 19:00:00,28.481000900268555,6.366000175476074,39.99399948120117,7.479000091552732,-11.951000213623049,-2.5369999408721924,37.29499816894531 -16772,2018-05-30 20:00:00,32.08300018310547,9.21399974822998,43.15700149536133,9.972000122070312,-10.640000343322754,-2.5369999408721924,35.97650146484375 -16773,2018-05-30 21:00:00,34.0099983215332,9.550000190734863,44.81900024414063,10.29300022125244,-10.586999893188477,-2.5369999408721924,35.31700134277344 -16774,2018-05-30 22:00:00,28.64900016784668,8.125,39.80699920654297,9.248000144958496,-10.586999893188477,-2.5369999408721924,34.65800094604492 -16775,2018-05-30 23:00:00,28.062000274658203,8.041999816894531,39.13600158691406,9.11400032043457,-10.628999710083008,-2.5369999408721924,33.99900054931641 -16776,2018-05-31 00:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16777,2018-05-31 01:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16778,2018-05-31 02:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16779,2018-05-31 03:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16780,2018-05-31 04:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16781,2018-05-31 05:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16782,2018-05-31 06:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16783,2018-05-31 07:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16784,2018-05-31 08:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16785,2018-05-31 09:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16786,2018-05-31 10:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16787,2018-05-31 11:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16788,2018-05-31 12:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16789,2018-05-31 13:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16790,2018-05-31 14:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16791,2018-05-31 15:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16792,2018-05-31 16:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16793,2018-05-31 17:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16794,2018-05-31 18:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16795,2018-05-31 19:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16796,2018-05-31 20:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16797,2018-05-31 21:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16798,2018-05-31 22:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16799,2018-05-31 23:00:00,28.81599998474121,8.963000297546387,39.72600173950195,9.810999870300291,-10.628999710083008,-2.5369999408721924,33.77899932861328 -16800,2018-06-01 00:00:00,27.141000747680664,7.623000144958496,36.9119987487793,8.819000244140625,-10.053999900817873,-1.6529999971389768,28.920499801635746 -16801,2018-06-01 01:00:00,24.96299934387207,7.539000034332275,37.34000015258789,9.435999870300291,-11.364999771118164,-1.6529999971389768,28.48150062561035 -16802,2018-06-01 02:00:00,22.28199958801269,7.454999923706055,34.5260009765625,9.302000045776367,-12.633999824523926,-1.6529999971389768,27.602500915527344 -16803,2018-06-01 03:00:00,20.941999435424805,5.276999950408936,33.373001098632805,7.425000190734862,-12.75100040435791,-1.6529999971389768,27.16349983215332 -16804,2018-06-01 04:00:00,14.324000358581545,0.0,27.36899948120117,4.959000110626222,-12.996000289916992,-1.6529999971389768,26.723499298095703 -16805,2018-06-01 05:00:00,22.450000762939453,6.86899995803833,34.17699813842773,8.444000244140625,-10.50100040435791,-1.6529999971389768,26.28450012207031 -16806,2018-06-01 06:00:00,23.53899955749512,6.618000030517577,36.027000427246094,8.470999717712402,-11.73799991607666,-1.6529999971389768,25.84449958801269 -16807,2018-06-01 07:00:00,24.62800025939941,6.618000030517577,36.24100112915039,8.390000343322754,-11.73799991607666,-1.6529999971389768,26.28450012207031 -16808,2018-06-01 08:00:00,24.375999450683597,6.2829999923706055,37.39400100708008,8.578000068664549,-12.20699977874756,-3.124000072479248,28.70100021362305 -16809,2018-06-01 09:00:00,25.1299991607666,6.86899995803833,38.198001861572266,9.248000144958496,-13.42300033569336,-3.124000072479248,32.21699905395508 -16810,2018-06-01 10:00:00,25.632999420166016,7.706999778747559,38.73400115966797,10.052000045776367,-13.42300033569336,-3.124000072479248,34.19449996948242 -16811,2018-06-01 11:00:00,26.2189998626709,7.539000034332275,39.77999877929688,9.972000122070312,-13.42300033569336,-3.124000072479248,37.27050018310547 -16812,2018-06-01 12:00:00,28.565000534057607,8.963000297546387,41.22700119018555,11.151000022888184,-13.42300033569336,-3.124000072479248,40.7859992980957 -16813,2018-06-01 13:00:00,28.31399917602539,8.293000221252441,41.81700134277344,10.29300022125244,-13.42300033569336,-3.124000072479248,42.324501037597656 -16814,2018-06-01 14:00:00,27.308000564575195,8.543999671936035,40.87900161743164,10.508000373840332,-12.185999870300291,-3.124000072479248,42.98350143432617 -16815,2018-06-01 15:00:00,28.73200035095215,9.381999969482422,41.84400177001953,11.204999923706056,-13.43299961090088,-3.124000072479248,42.983001708984375 -16816,2018-06-01 16:00:00,30.1560001373291,9.130999565124512,42.38000106811523,11.071000099182127,-12.20699977874756,-3.124000072479248,41.884498596191406 -16817,2018-06-01 17:00:00,27.47599983215332,7.119999885559082,39.75299835205078,8.979999542236328,-12.196999549865724,-1.812000036239624,40.762001037597656 -16818,2018-06-01 18:00:00,27.64299964904785,6.2829999923706055,38.54700088500977,7.71999979019165,-10.852999687194824,-1.812000036239624,39.66299819946289 -16819,2018-06-01 19:00:00,29.066999435424805,6.198999881744385,41.25400161743164,7.77400016784668,-12.164999961853027,-1.812000036239624,37.90549850463867 -16820,2018-06-01 20:00:00,31.32900047302246,8.041999816894531,42.21900177001953,9.140999794006348,-10.895999908447266,-1.5889999866485596,36.58700180053711 -16821,2018-06-01 21:00:00,30.57500076293945,8.461000442504883,41.25400161743164,9.32800006866455,-11.161999702453612,-1.5889999866485596,35.048999786376946 -16822,2018-06-01 22:00:00,32.92100143432617,9.968000411987305,44.01499938964844,10.69499969482422,-9.904000282287598,-1.5889999866485596,34.169998168945305 -16823,2018-06-01 23:00:00,29.066999435424805,9.800999641418455,39.72600173950195,10.588000297546388,-9.925999641418455,-1.5889999866485596,33.950000762939446 -16824,2018-06-02 00:00:00,26.55400085449219,8.711999893188478,36.858001708984375,9.595999717712402,-10.095999717712402,-1.246999979019165,33.291000366210945 -16825,2018-06-02 01:00:00,28.64900016784668,9.550000190734863,38.33200073242188,10.133000373840332,-10.095999717712402,-1.246999979019165,32.852001190185554 -16826,2018-06-02 02:00:00,26.72200012207031,9.04699993133545,37.823001861572266,10.133000373840332,-11.194000244140623,-1.3969999551773071,31.972999572753903 -16827,2018-06-02 03:00:00,27.308000564575195,9.21399974822998,36.9379997253418,9.864999771118164,-10.053999900817873,-1.2790000438690186,31.313499450683597 -16828,2018-06-02 04:00:00,24.125,8.543999671936035,33.69499969482422,9.086999893188477,-9.765999794006348,-1.3009999990463257,30.87400054931641 -16829,2018-06-02 05:00:00,26.13599967956543,7.789999961853027,37.39400100708008,9.140999794006348,-11.03499984741211,-1.3009999990463257,30.434499740600582 -16830,2018-06-02 06:00:00,24.292999267578125,7.037000179290772,36.45600128173828,8.73900032043457,-11.269000053405762,-2.5269999504089355,30.21500015258789 -16831,2018-06-02 07:00:00,26.72200012207031,7.789999961853027,36.402000427246094,8.336999893188478,-9.958000183105469,-1.2790000438690186,30.21500015258789 -16832,2018-06-02 08:00:00,24.54400062561035,7.203999996185303,35.49100112915039,8.229000091552733,-10.458999633789062,-1.2369999885559082,31.53350067138672 -16833,2018-06-02 09:00:00,27.22500038146973,8.208999633789062,39.27000045776367,9.972000122070312,-11.449999809265137,-2.45199990272522,33.511001586914055 -16834,2018-06-02 10:00:00,24.125,6.114999771118164,37.18000030517578,8.175999641418457,-12.687000274658203,-2.45199990272522,34.82899856567383 -16835,2018-06-02 11:00:00,23.62299919128418,7.037000179290772,36.50899887084961,8.819000244140625,-12.687000274658203,-2.45199990272522,36.80649948120117 -16836,2018-06-02 12:00:00,23.87400054931641,5.361000061035156,36.42900085449219,7.23799991607666,-12.687000274658203,-2.45199990272522,37.46599960327149 -16837,2018-06-02 13:00:00,29.066999435424805,7.874000072479247,42.165000915527344,9.461999893188477,-12.687000274658203,-2.45199990272522,39.00400161743164 -16838,2018-06-02 14:00:00,28.145999908447266,7.874000072479247,41.17399978637695,9.515999794006348,-12.687000274658203,-2.45199990272522,38.34500122070313 -16839,2018-06-02 15:00:00,30.072999954223643,8.041999816894531,41.49499893188477,9.381999969482422,-11.472000122070312,-2.45199990272522,38.56449890136719 -16840,2018-06-02 16:00:00,29.65399932861328,8.293000221252441,42.05799865722656,9.729999542236328,-12.772000312805176,-2.45199990272522,37.0265007019043 -16841,2018-06-02 17:00:00,30.82699966430664,7.539000034332275,42.05799865722656,8.604999542236326,-10.36299991607666,-2.45199990272522,37.0265007019043 -16842,2018-06-02 18:00:00,30.57500076293945,7.372000217437744,41.65599822998047,8.578000068664549,-10.31999969482422,-2.45199990272522,36.36750030517578 -16843,2018-06-02 19:00:00,28.565000534057607,7.288000106811522,39.83300018310547,8.095000267028809,-10.182000160217283,-2.45199990272522,35.48849868774414 -16844,2018-06-02 20:00:00,29.82099914550781,8.125,40.262001037597656,9.034000396728516,-10.298999786376951,-2.45199990272522,34.82899856567383 -16845,2018-06-02 21:00:00,32.58599853515625,9.29800033569336,42.94300079345703,10.159000396728516,-10.298999786376951,-1.5460000038146973,34.169998168945305 -16846,2018-06-02 22:00:00,33.088001251220696,9.550000190734863,43.15700149536133,10.37399959564209,-10.21399974822998,-1.5460000038146973,33.291000366210945 -16847,2018-06-02 23:00:00,30.82699966430664,9.381999969482422,40.20899963378906,9.890999794006348,-10.21399974822998,-1.2369999885559082,32.852001190185554 -16848,2018-06-03 00:00:00,26.88999938964844,8.041999816894531,37.42100143432617,9.274999618530272,-10.149999618530272,-1.3329999446868896,32.411998748779304 -16849,2018-06-03 01:00:00,22.36599922180176,5.863999843597412,32.03300094604492,6.835000038146973,-10.149999618530272,-1.3969999551773071,32.192501068115234 -16850,2018-06-03 02:00:00,18.763999938964844,4.941999912261963,28.41399955749512,6.2729997634887695,-8.902000427246094,-1.2790000438690186,31.75300025939941 -16851,2018-06-03 03:00:00,23.62299919128418,7.789999961853027,34.57899856567383,9.006999969482422,-10.532999992370604,-1.2790000438690186,31.53300094604492 -16852,2018-06-03 04:00:00,26.63800048828125,7.288000106811522,35.8120002746582,8.310000419616701,-9.670000076293944,-1.3860000371932983,31.0939998626709 -16853,2018-06-03 05:00:00,23.37100028991699,6.618000030517577,35.0620002746582,8.069000244140625,-11.045000076293944,-1.3860000371932983,30.65399932861328 -16854,2018-06-03 06:00:00,26.80599975585937,7.119999885559082,36.9379997253418,8.203000068664549,-10.949000358581545,-1.3860000371932983,30.21500015258789 -16855,2018-06-03 07:00:00,25.632999420166016,6.86899995803833,36.0,8.095000267028809,-11.003000259399414,-2.611999988555908,30.65399932861328 -16856,2018-06-03 08:00:00,26.2189998626709,6.533999919891357,35.972999572753906,7.50600004196167,-9.70199966430664,-1.246999979019165,32.192501068115234 -16857,2018-06-03 09:00:00,29.82099914550781,8.461000442504883,40.58399963378906,9.16800022125244,-11.17300033569336,-2.6549999713897705,33.291000366210945 -16858,2018-06-03 10:00:00,27.05699920654297,6.198999881744385,38.92200088500977,7.98799991607666,-11.53600025177002,-1.8339999914169312,35.70800018310547 -16859,2018-06-03 11:00:00,30.743000030517567,7.874000072479247,43.26399993896485,9.48900032043457,-12.782999992370604,-1.8339999914169312,39.44300079345703 -16860,2018-06-03 12:00:00,30.32399940490723,8.125,42.59400177001953,9.890999794006348,-12.697999954223633,-1.8339999914169312,40.54199981689453 -16861,2018-06-03 13:00:00,31.16200065612793,9.130999565124512,43.04999923706055,10.560999870300291,-12.687000274658203,-1.8339999914169312,42.29999923706055 -16862,2018-06-03 14:00:00,29.90500068664551,8.711999893188478,42.084999084472656,10.213000297546388,-11.461000442504885,-1.8339999914169312,44.27750015258789 -16863,2018-06-03 15:00:00,31.32900047302246,9.21399974822998,43.02299880981445,10.74899959564209,-11.4399995803833,-1.8339999914169312,44.936500549316406 -16864,2018-06-03 16:00:00,34.261001586914055,10.303000450134276,45.03400039672852,11.418999671936035,-10.277999877929688,-1.8339999914169312,43.17900085449219 -16865,2018-06-03 17:00:00,32.417999267578125,8.543999671936035,44.229000091552734,9.99899959564209,-11.673999786376951,-1.8339999914169312,40.54199981689453 -16866,2018-06-03 18:00:00,29.65399932861328,7.454999923706055,40.85200119018555,8.873000144958496,-10.416000366210938,-1.8339999914169312,38.125 -16867,2018-06-03 19:00:00,28.229999542236328,7.119999885559082,39.56499862670898,8.550999641418457,-10.437000274658203,-1.8339999914169312,36.36750030517578 -16868,2018-06-03 20:00:00,26.47100067138672,5.52899980545044,37.2869987487793,7.1040000915527335,-10.437000274658203,-1.8339999914169312,34.82899856567383 -16869,2018-06-03 21:00:00,27.726999282836918,6.366000175476074,38.97600173950195,7.639999866485598,-10.746999740600586,-1.8339999914169312,33.950000762939446 -16870,2018-06-03 22:00:00,30.65900039672852,8.041999816894531,40.87900161743164,8.95300006866455,-10.746999740600586,-1.8339999914169312,33.07149887084961 -16871,2018-06-03 23:00:00,30.239999771118164,8.878999710083008,40.79800033569336,9.595999717712402,-10.86400032043457,-1.493000030517578,32.192501068115234 -16872,2018-06-04 00:00:00,31.66399955749512,9.717000007629396,41.09299850463867,10.159000396728516,-9.64900016784668,-1.493000030517578,31.53300094604492 -16873,2018-06-04 01:00:00,26.30299949645996,7.706999778747559,36.24100112915039,8.657999992370605,-9.585000038146973,-1.2790000438690186,31.0939998626709 -16874,2018-06-04 02:00:00,26.972999572753903,8.125,37.2869987487793,8.685000419616701,-10.779000282287598,-1.2790000438690186,30.65399932861328 -16875,2018-06-04 03:00:00,27.97900009155273,8.543999671936035,37.5009994506836,9.354999542236328,-9.467000007629396,-1.3539999723434448,30.21500015258789 -16876,2018-06-04 04:00:00,24.795000076293945,7.372000217437744,34.766998291015625,8.255999565124513,-10.725000381469728,-1.3539999723434448,29.336000442504893 -16877,2018-06-04 05:00:00,27.47599983215332,7.454999923706055,36.992000579833984,8.121999740600586,-9.520999908447266,-1.3539999723434448,28.457000732421875 -16878,2018-06-04 06:00:00,28.062000274658203,8.461000442504883,38.84199905395508,9.515999794006348,-9.425000190734863,-1.3009999990463257,28.01799964904785 -16879,2018-06-04 07:00:00,28.565000534057607,8.543999671936035,38.680999755859375,9.381999969482422,-9.446000099182127,-1.3009999990463257,28.457000732421875 -16880,2018-06-04 08:00:00,26.386999130249023,7.539000034332275,37.01900100708008,8.282999992370605,-10.852999687194824,-1.3650000095367432,29.774999618530277 -16881,2018-06-04 09:00:00,24.125,6.533999919891357,36.59000015258789,8.550999641418457,-12.40999984741211,-2.5160000324249268,32.192501068115234 -16882,2018-06-04 10:00:00,25.46500015258789,6.7849998474121085,37.367000579833984,8.470999717712402,-12.40999984741211,-2.5160000324249268,35.048999786376946 -16883,2018-06-04 11:00:00,25.968000411987305,7.119999885559082,38.43899917602539,9.034000396728516,-12.40999984741211,-2.5160000324249268,39.44300079345703 -16884,2018-06-04 12:00:00,25.88400077819824,6.198999881744385,38.38600158691406,8.229000091552733,-12.345999717712402,-2.5160000324249268,41.64099884033203 -16885,2018-06-04 13:00:00,25.46500015258789,7.203999996185303,36.66999816894531,8.925999641418457,-11.17300033569336,-2.5160000324249268,43.39849853515625 -16886,2018-06-04 14:00:00,23.87400054931641,7.037000179290772,36.9119987487793,9.140999794006348,-12.430999755859377,-2.5160000324249268,46.47499847412109 -16887,2018-06-04 15:00:00,25.29800033569336,7.958000183105469,37.71599960327149,9.70400047302246,-12.430999755859377,-2.5160000324249268,46.91450119018555 -16888,2018-06-04 16:00:00,29.98900032043457,10.220000267028809,41.11999893188477,11.767999649047852,-11.194000244140623,-2.5160000324249268,44.27750015258789 -16889,2018-06-04 17:00:00,28.481000900268555,7.706999778747559,38.92200088500977,9.381999969482422,-10.022000312805176,-2.5160000324249268,41.64049911499024 -16890,2018-06-04 18:00:00,30.57500076293945,8.125,42.97000122070313,9.70400047302246,-11.237000465393066,-2.5160000324249268,39.44300079345703 -16891,2018-06-04 19:00:00,29.066999435424805,7.706999778747559,40.31600189208984,8.845999717712402,-11.237000465393066,-2.5160000324249268,37.46599960327149 -16892,2018-06-04 20:00:00,28.73200035095215,7.454999923706055,40.61100006103516,9.220999717712402,-11.237000465393066,-2.5160000324249268,36.147499084472656 -16893,2018-06-04 21:00:00,32.333999633789055,8.543999671936035,43.74700164794922,9.810999870300291,-11.237000465393066,-2.5160000324249268,35.487998962402344 -16894,2018-06-04 22:00:00,28.481000900268555,7.958000183105469,37.823001861572266,8.550999641418457,-10.022000312805176,-2.5160000324249268,34.60900115966797 -16895,2018-06-04 23:00:00,29.48600006103516,10.13599967956543,38.94900131225586,10.560999870300291,-9.64900016784668,-1.246999979019165,33.72999954223633 -16896,2018-06-05 00:00:00,30.99399948120117,10.220000267028809,40.69100189208984,10.803000450134276,-9.659000396728516,-2.463000059127808,33.291000366210945 -16897,2018-06-05 01:00:00,28.899999618530277,9.717000007629396,38.573001861572266,10.614999771118164,-9.734000205993652,-1.4709999561309814,32.852001190185554 -16898,2018-06-05 02:00:00,26.972999572753903,9.21399974822998,36.80400085449219,9.91800022125244,-9.734000205993652,-1.4709999561309814,32.411998748779304 -16899,2018-06-05 03:00:00,27.308000564575195,8.963000297546387,37.98400115966797,10.052000045776367,-10.619000434875488,-1.4709999561309814,31.972999572753903 -16900,2018-06-05 04:00:00,26.88999938964844,8.878999710083008,36.9379997253418,9.56999969482422,-10.843000411987305,-1.4709999561309814,31.53300094604492 -16901,2018-06-05 05:00:00,27.726999282836918,8.461000442504883,37.608001708984375,9.461999893188477,-9.670000076293944,-1.4709999561309814,31.53300094604492 -16902,2018-06-05 06:00:00,25.214000701904297,7.119999885559082,35.007999420166016,7.934999942779541,-9.776000022888184,-1.4709999561309814,31.313499450683597 -16903,2018-06-05 07:00:00,26.55400085449219,7.203999996185303,36.375,7.98799991607666,-9.765999794006348,-1.2369999885559082,31.972999572753903 -16904,2018-06-05 08:00:00,24.71199989318848,5.863999843597412,34.955001831054695,6.620999813079834,-10.619000434875488,-1.2580000162124634,32.852001190185554 -16905,2018-06-05 09:00:00,25.04700088500977,7.203999996185303,37.52799987792969,9.220999717712402,-11.833999633789062,-2.5910000801086426,33.950000762939446 -16906,2018-06-05 10:00:00,15.916000366210938,0.0,28.8700008392334,5.683000087738037,-11.833999633789062,-2.5910000801086426,35.048999786376946 -16907,2018-06-05 11:00:00,18.010000228881836,0.0,30.1299991607666,6.004000186920166,-11.833999633789062,-2.5910000801086426,36.58700180053711 -16908,2018-06-05 12:00:00,17.674999237060547,0.0,30.10300064086914,5.896999835968018,-11.833999633789062,-2.5910000801086426,38.56399917602539 -16909,2018-06-05 13:00:00,19.43400001525879,4.5229997634887695,31.44300079345703,6.6479997634887695,-11.833999633789062,-2.5910000801086426,38.78400039672852 -16910,2018-06-05 14:00:00,18.010000228881836,4.690999984741211,31.041000366210927,6.6479997634887695,-11.812999725341797,-2.5910000801086426,39.00400161743164 -16911,2018-06-05 15:00:00,19.684999465942383,4.188000202178955,31.22900009155273,5.951000213623048,-11.812999725341797,-2.5910000801086426,39.2234992980957 -16912,2018-06-05 16:00:00,19.684999465942383,0.0,31.60400009155273,6.085000038146973,-11.812999725341797,-2.5910000801086426,38.34500122070313 -16913,2018-06-05 17:00:00,19.43400001525879,0.0,31.363000869750977,5.8439998626708975,-11.812999725341797,-2.5910000801086426,37.24649810791016 -16914,2018-06-05 18:00:00,29.066999435424805,6.7849998474121085,39.80699920654297,8.015000343322754,-10.52299976348877,-1.5989999771118164,36.36750030517578 -16915,2018-06-05 19:00:00,29.066999435424805,5.863999843597412,39.99399948120117,7.23799991607666,-11.951000213623049,-2.6440000534057617,35.26850128173828 -16916,2018-06-05 20:00:00,29.48600006103516,7.037000179290772,41.62900161743164,8.765000343322754,-11.140999794006348,-2.569000005722046,34.38949966430664 -16917,2018-06-05 21:00:00,31.66399955749512,7.706999778747559,41.54899978637695,8.496999740600586,-9.925999641418455,-2.569000005722046,33.510501861572266 -16918,2018-06-05 22:00:00,31.16200065612793,9.04699993133545,41.25400161743164,9.54300022125244,-9.946999549865724,-2.569000005722046,32.852001190185554 -16919,2018-06-05 23:00:00,31.2450008392334,8.878999710083008,41.84400177001953,9.649999618530272,-10.128000259399414,-1.4390000104904177,31.972999572753903 -16920,2018-06-06 00:00:00,28.81599998474121,7.539000034332275,39.56499862670898,8.496999740600586,-10.128000259399414,-1.4390000104904177,31.75300025939941 -16921,2018-06-06 01:00:00,27.895000457763672,7.119999885559082,37.5009994506836,7.934999942779541,-10.01099967956543,-1.4390000104904177,31.53300094604492 -16922,2018-06-06 02:00:00,25.46500015258789,6.86899995803833,35.25,7.907999992370605,-9.052000045776367,-1.4390000104904177,30.65399932861328 -16923,2018-06-06 03:00:00,26.13599967956543,6.953000068664551,35.303001403808594,7.827000141143799,-9.1899995803833,-1.4290000200271606,30.21500015258789 -16924,2018-06-06 04:00:00,25.71699905395508,6.449999809265138,35.597999572753906,7.747000217437744,-9.70199966430664,-1.4290000200271606,29.336000442504893 -16925,2018-06-06 05:00:00,25.632999420166016,7.119999885559082,35.893001556396484,8.069000244140625,-10.916999816894531,-1.4290000200271606,28.895999908447266 -16926,2018-06-06 06:00:00,26.88999938964844,6.7849998474121085,36.9119987487793,7.88100004196167,-9.659000396728516,-1.4290000200271606,28.457000732421875 -16927,2018-06-06 07:00:00,26.05200004577637,6.2829999923706055,34.955001831054695,6.6479997634887695,-8.741999626159668,0.0,29.336000442504893 -16928,2018-06-06 08:00:00,27.64299964904785,6.366000175476074,38.92200088500977,8.14900016784668,-10.810999870300291,-1.5989999771118164,31.53350067138672 -16929,2018-06-06 09:00:00,28.64900016784668,7.789999961853027,41.76300048828125,9.48900032043457,-12.05799961090088,-2.8469998836517334,34.38949966430664 -16930,2018-06-06 10:00:00,27.726999282836918,6.114999771118164,40.61100006103516,7.800000190734862,-13.251999855041506,-2.8469998836517334,37.0265007019043 -16931,2018-06-06 11:00:00,32.16699981689453,7.203999996185303,44.47100067138672,8.95300006866455,-12.015000343322756,-2.8469998836517334,40.762001037597656 -16932,2018-06-06 12:00:00,30.40800094604492,7.789999961853027,42.64799880981445,9.48900032043457,-12.015000343322756,-2.8469998836517334,42.29999923706055 -16933,2018-06-06 13:00:00,34.261001586914055,11.309000015258787,46.64199829101562,12.62600040435791,-12.015000343322756,-2.8469998836517334,43.39799880981445 -16934,2018-06-06 14:00:00,32.92100143432617,10.303000450134276,44.685001373291016,11.71399974822998,-12.015000343322756,-2.8469998836517334,44.936500549316406 -16935,2018-06-06 15:00:00,32.501998901367195,9.968000411987305,45.19400024414063,11.633999824523926,-12.015000343322756,-2.8469998836517334,45.15599822998047 -16936,2018-06-06 16:00:00,32.08300018310547,9.381999969482422,44.76599884033203,11.12399959564209,-12.015000343322756,-2.8469998836517334,43.8380012512207 -16937,2018-06-06 17:00:00,33.674999237060554,9.550000190734863,45.89099884033203,11.178000450134276,-12.015000343322756,-2.8469998836517334,42.73949813842773 -16938,2018-06-06 18:00:00,32.75299835205078,7.874000072479247,44.73899841308594,9.274999618530272,-12.015000343322756,-2.8469998836517334,41.64099884033203 -16939,2018-06-06 19:00:00,28.81599998474121,7.372000217437744,40.87900161743164,9.0600004196167,-10.788999557495115,-2.8469998836517334,40.3224983215332 -16940,2018-06-06 20:00:00,32.75299835205078,7.623000144958496,44.87300109863281,9.11400032043457,-12.005000114440918,-2.8469998836517334,38.78400039672852 -16941,2018-06-06 21:00:00,33.17200088500977,8.963000297546387,45.4630012512207,10.31999969482422,-12.05799961090088,-2.8469998836517334,37.68600082397461 -16942,2018-06-06 22:00:00,31.66399955749512,8.711999893188478,42.54100036621094,9.56999969482422,-10.980999946594238,-1.22599995136261,36.80699920654297 -16943,2018-06-06 23:00:00,31.74799919128418,8.795999526977539,41.33399963378906,9.409000396728516,-9.925999641418455,-1.2690000534057615,36.147499084472656 -16944,2018-06-07 00:00:00,32.501998901367195,9.29800033569336,41.95100021362305,10.024999618530272,-10.074999809265137,-1.2690000534057615,35.70800018310547 -16945,2018-06-07 01:00:00,26.05200004577637,6.953000068664551,38.41299819946289,8.73900032043457,-11.866000175476074,-2.7720000743865967,35.04850006103516 -16946,2018-06-07 02:00:00,25.04700088500977,7.203999996185303,36.858001708984375,8.925999641418457,-11.833999633789062,-2.7720000743865967,34.60950088500977 -16947,2018-06-07 03:00:00,26.63800048828125,7.623000144958496,38.33200073242188,9.140999794006348,-12.29300022125244,-2.7720000743865967,34.60950088500977 -16948,2018-06-07 04:00:00,23.28700065612793,6.366000175476074,35.678001403808594,8.041999816894531,-12.29300022125244,-2.7720000743865967,34.38949966430664 -16949,2018-06-07 05:00:00,24.62800025939941,6.7849998474121085,37.5009994506836,8.765000343322754,-12.303000450134276,-2.7720000743865967,33.950000762939446 -16950,2018-06-07 06:00:00,26.88999938964844,6.953000068664551,39.32400131225586,8.604999542236326,-12.29300022125244,-2.7720000743865967,33.510501861572266 -16951,2018-06-07 07:00:00,29.15099906921387,7.958000183105469,40.77199935913086,9.48900032043457,-11.07699966430664,-2.7720000743865967,33.72999954223633 -16952,2018-06-07 08:00:00,25.548999786376957,5.863999843597412,38.198001861572266,8.015000343322754,-12.345999717712402,-2.7720000743865967,35.48849868774414 -16953,2018-06-07 09:00:00,30.1560001373291,8.711999893188478,42.51399993896485,10.347000122070312,-12.345999717712402,-2.7720000743865967,37.46549987792969 -16954,2018-06-07 10:00:00,29.15099906921387,7.539000034332275,42.11199951171875,9.435999870300291,-12.345999717712402,-2.7720000743865967,40.3224983215332 -16955,2018-06-07 11:00:00,33.674999237060554,9.550000190734863,46.64199829101562,11.472999572753904,-12.345999717712402,-2.7720000743865967,43.39849853515625 -16956,2018-06-07 12:00:00,35.182998657226555,9.130999565124512,47.82099914550781,10.776000022888184,-12.345999717712402,-2.7720000743865967,44.936500549316406 -16957,2018-06-07 13:00:00,37.025001525878906,10.220000267028809,48.84000015258789,11.33899974822998,-12.345999717712402,-2.7720000743865967,46.47499847412109 -16958,2018-06-07 14:00:00,36.27199935913086,10.638999938964844,48.7859992980957,11.928999900817873,-12.345999717712402,-2.7720000743865967,46.69449996948242 -16959,2018-06-07 15:00:00,35.014999389648445,10.052000045776367,47.1510009765625,11.446000099182127,-12.345999717712402,-2.7720000743865967,46.47499847412109 -16960,2018-06-07 16:00:00,32.16699981689453,8.543999671936035,44.55099868774414,10.105999946594238,-12.345999717712402,-2.7720000743865967,44.936500549316406 -16961,2018-06-07 17:00:00,35.349998474121094,8.963000297546387,47.23199844360352,10.37399959564209,-11.161999702453612,-2.7720000743865967,43.837501525878906 -16962,2018-06-07 18:00:00,35.014999389648445,8.376999855041504,46.0250015258789,9.248000144958496,-11.161999702453612,-2.7720000743865967,43.39849853515625 -16963,2018-06-07 19:00:00,30.32399940490723,6.031000137329103,41.790000915527344,7.130000114440918,-11.161999702453612,-2.7720000743865967,42.29999923706055 -16964,2018-06-07 20:00:00,36.104000091552734,9.21399974822998,47.01699829101562,10.024999618530272,-11.003000259399414,-2.7720000743865967,40.98149871826172 -16965,2018-06-07 21:00:00,36.52299880981445,8.963000297546387,45.81100082397461,9.16800022125244,-8.581999778747559,-1.343000054359436,40.102500915527344 -16966,2018-06-07 22:00:00,30.492000579833984,7.288000106811522,41.87099838256836,8.282999992370605,-11.37600040435791,-1.343000054359436,39.66299819946289 -16967,2018-06-07 23:00:00,34.59600067138672,9.21399974822998,44.73899841308594,9.864999771118164,-10.149999618530272,-1.343000054359436,39.44300079345703 -16968,2018-06-08 00:00:00,29.98900032043457,8.125,42.00500106811523,9.756999969482422,-11.364999771118164,-1.343000054359436,38.78400039672852 -16969,2018-06-08 01:00:00,28.73200035095215,8.125,39.86000061035156,9.248000144958496,-11.364999771118164,-2.622999906539917,37.90549850463867 -16970,2018-06-08 02:00:00,26.88999938964844,7.037000179290772,37.6349983215332,8.282999992370605,-10.416000366210938,-2.622999906539917,37.24599838256836 -16971,2018-06-08 03:00:00,27.392000198364247,7.037000179290772,38.49300003051758,8.310000419616701,-11.663999557495115,-2.622999906539917,36.80699920654297 -16972,2018-06-08 04:00:00,28.229999542236328,7.623000144958496,39.00199890136719,8.765000343322754,-10.468999862670898,-2.622999906539917,36.367000579833984 -16973,2018-06-08 05:00:00,25.80100059509277,6.701000213623048,36.696998596191406,8.069000244140625,-10.406000137329102,-2.622999906539917,35.487998962402344 -16974,2018-06-08 06:00:00,27.22500038146973,6.7849998474121085,37.71599960327149,7.854000091552732,-10.406000137329102,-2.622999906539917,35.26850128173828 -16975,2018-06-08 07:00:00,25.04700088500977,6.366000175476074,37.31399917602539,8.175999641418457,-11.621000289916992,-2.622999906539917,34.82899856567383 -16976,2018-06-08 08:00:00,25.381999969482425,6.449999809265138,37.98400115966797,8.255999565124513,-11.621000289916992,-2.622999906539917,35.928001403808594 -16977,2018-06-08 09:00:00,28.64900016784668,8.125,41.06600189208984,9.729999542236328,-12.836000442504885,-2.622999906539917,37.24649810791016 -16978,2018-06-08 10:00:00,29.48600006103516,7.539000034332275,41.68299865722656,9.006999969482422,-11.567999839782717,-2.622999906539917,39.66299819946289 -16979,2018-06-08 11:00:00,27.895000457763672,6.2829999923706055,40.71799850463867,8.175999641418457,-12.8149995803833,-2.622999906539917,39.882999420166016 -16980,2018-06-08 12:00:00,29.738000869750977,8.628000259399414,42.91600036621094,10.53499984741211,-12.8149995803833,-2.622999906539917,40.321998596191406 -16981,2018-06-08 13:00:00,30.82699966430664,8.878999710083008,42.88899993896485,10.31999969482422,-11.53600025177002,-2.622999906539917,41.42100143432617 -16982,2018-06-08 14:00:00,28.39699935913086,8.376999855041504,41.01300048828125,10.105999946594238,-11.53600025177002,-2.622999906539917,42.73899841308594 -16983,2018-06-08 15:00:00,28.73200035095215,7.623000144958496,41.01300048828125,9.302000045776367,-12.772000312805176,-2.622999906539917,44.71699905395508 -16984,2018-06-08 16:00:00,31.58099937438965,8.543999671936035,43.88100051879883,10.052000045776367,-11.53600025177002,-2.622999906539917,44.05749893188477 -16985,2018-06-08 17:00:00,31.2450008392334,7.623000144958496,43.23799896240234,9.354999542236328,-11.493000030517578,-2.622999906539917,42.08050155639648 -16986,2018-06-08 18:00:00,28.31399917602539,6.449999809265138,41.30799865722656,8.578000068664549,-12.654999732971191,-2.622999906539917,39.66299819946289 -16987,2018-06-08 19:00:00,26.386999130249023,5.445000171661377,37.6619987487793,7.1570000648498535,-11.4399995803833,-2.622999906539917,37.46599960327149 -16988,2018-06-08 20:00:00,29.15099906921387,5.696000099182129,41.49499893188477,7.692999839782715,-11.4399995803833,-2.622999906539917,36.147499084472656 -16989,2018-06-08 21:00:00,31.99900054931641,7.789999961853027,43.18399810791016,9.086999893188477,-11.4399995803833,-2.622999906539917,35.48849868774414 -16990,2018-06-08 22:00:00,33.42300033569336,8.125,43.02299880981445,8.899999618530273,-10.267000198364258,-2.622999906539917,35.48849868774414 -16991,2018-06-08 23:00:00,32.08300018310547,8.878999710083008,42.459999084472656,9.890999794006348,-10.288000106811523,-1.63100004196167,35.48849868774414 -16992,2018-06-09 00:00:00,30.65900039672852,8.208999633789062,40.63800048828125,9.220999717712402,-10.50100040435791,-1.3109999895095823,35.26850128173828 -16993,2018-06-09 01:00:00,29.82099914550781,8.543999671936035,40.39599990844727,9.677000045776367,-10.875,-2.5369999408721924,34.60950088500977 -16994,2018-06-09 02:00:00,29.066999435424805,7.958000183105469,38.22499847412109,8.550999641418457,-9.585000038146973,-1.2790000438690186,33.950000762939446 -16995,2018-06-09 03:00:00,25.1299991607666,6.7849998474121085,35.4370002746582,8.095000267028809,-9.680999755859377,-2.505000114440918,33.510501861572266 -16996,2018-06-09 04:00:00,25.71699905395508,6.7849998474121085,36.96500015258789,8.336999893188478,-11.449999809265137,-2.505000114440918,31.53300094604492 -16997,2018-06-09 05:00:00,26.13599967956543,6.533999919891357,36.10699844360352,7.585999965667725,-10.128000259399414,-2.505000114440918,32.192501068115234 -16998,2018-06-09 06:00:00,27.895000457763672,7.958000183105469,37.93000030517578,8.873000144958496,-10.128000259399414,-2.505000114440918,32.411998748779304 -16999,2018-06-09 07:00:00,24.795000076293945,6.86899995803833,35.70500183105469,8.203000068664549,-9.968000411987305,-2.505000114440918,32.852001190185554 -17000,2018-06-09 08:00:00,22.70100021362305,6.2829999923706055,34.57899856567383,8.069000244140625,-11.397000312805176,-2.5160000324249268,33.291000366210945 -17001,2018-06-09 09:00:00,28.062000274658203,8.376999855041504,40.58399963378906,10.29300022125244,-11.461000442504885,-2.5160000324249268,33.72999954223633 -17002,2018-06-09 10:00:00,24.87899971008301,5.193999767303467,37.4739990234375,7.184000015258789,-12.708000183105469,-2.5160000324249268,32.852001190185554 -17003,2018-06-09 11:00:00,28.229999542236328,8.543999671936035,41.95100021362305,10.560999870300291,-12.697999954223633,-2.5160000324249268,30.434499740600582 -17004,2018-06-09 12:00:00,27.726999282836918,7.789999961853027,41.44200134277344,9.972000122070312,-12.687000274658203,-2.5160000324249268,27.577999114990234 -17005,2018-06-09 13:00:00,28.229999542236328,8.041999816894531,41.14699935913086,10.105999946594238,-13.934000015258787,-2.5160000324249268,26.69899940490723 -17006,2018-06-09 14:00:00,27.308000564575195,8.461000442504883,40.90599822998047,10.480999946594238,-12.666000366210938,-2.5160000324249268,26.26000022888184 -17007,2018-06-09 15:00:00,22.114999771118164,6.114999771118164,36.0,8.470999717712402,-13.902000427246096,-2.5160000324249268,26.91900062561035 -17008,2018-06-09 16:00:00,25.71699905395508,7.623000144958496,39.08300018310547,9.623000144958496,-12.687000274658203,-2.5160000324249268,28.67650032043457 -17009,2018-06-09 17:00:00,29.65399932861328,8.461000442504883,42.11199951171875,10.213000297546388,-12.687000274658203,-2.5160000324249268,29.555500030517567 -17010,2018-06-09 18:00:00,28.64900016784668,7.874000072479247,40.98600006103516,9.649999618530272,-12.687000274658203,-2.5160000324249268,29.9950008392334 -17011,2018-06-09 19:00:00,28.31399917602539,7.037000179290772,39.56499862670898,8.336999893188478,-11.37600040435791,-2.5160000324249268,29.9950008392334 -17012,2018-06-09 20:00:00,29.066999435424805,7.789999961853027,40.69100189208984,9.140999794006348,-11.37600040435791,-2.5160000324249268,29.9950008392334 -17013,2018-06-09 21:00:00,32.250999450683594,9.633000373840332,43.04999923706055,10.74899959564209,-10.67199993133545,-2.5160000324249268,29.9950008392334 -17014,2018-06-09 22:00:00,29.90500068664551,8.795999526977539,40.95899963378906,9.729999542236328,-10.810999870300291,-2.5160000324249268,29.774999618530277 -17015,2018-06-09 23:00:00,29.82099914550781,8.963000297546387,40.50299835205078,10.024999618530272,-10.810999870300291,-2.5160000324249268,29.774999618530277 -17016,2018-06-10 00:00:00,27.559999465942383,8.376999855041504,38.17100143432617,9.435999870300291,-10.736000061035156,-2.5160000324249268,29.555500030517567 -17017,2018-06-10 01:00:00,27.559999465942383,8.293000221252441,38.17100143432617,9.354999542236328,-10.756999969482422,-2.5160000324249268,29.336000442504893 -17018,2018-06-10 02:00:00,25.548999786376957,7.706999778747559,36.05400085449219,8.73900032043457,-9.49899959564209,-2.5160000324249268,28.895999908447266 -17019,2018-06-10 03:00:00,24.041000366210927,7.372000217437744,34.820999145507805,8.685000419616701,-10.149999618530272,-2.5160000324249268,28.895999908447266 -17020,2018-06-10 04:00:00,23.70599937438965,7.119999885559082,33.93600082397461,8.444000244140625,-10.52299976348877,-2.5160000324249268,28.895999908447266 -17021,2018-06-10 05:00:00,26.2189998626709,7.958000183105469,35.4640007019043,8.791999816894531,-9.361000061035156,-2.5160000324249268,28.457000732421875 -17022,2018-06-10 06:00:00,28.39699935913086,8.963000297546387,38.46599960327149,9.54300022125244,-9.531000137329102,-2.5160000324249268,28.23749923706055 -17023,2018-06-10 07:00:00,25.632999420166016,7.874000072479247,35.91999816894531,8.73900032043457,-9.626999855041504,-1.4290000200271606,28.457000732421875 -17024,2018-06-10 08:00:00,25.381999969482425,7.288000106811522,38.198001861572266,9.248000144958496,-12.430999755859377,-2.559000015258789,29.774999618530277 -17025,2018-06-10 09:00:00,24.96299934387207,7.288000106811522,36.8849983215332,9.086999893188477,-12.430999755859377,-2.559000015258789,31.75300025939941 -17026,2018-06-10 10:00:00,24.292999267578125,5.445000171661377,36.29499816894531,7.317999839782715,-12.430999755859377,-2.559000015258789,32.63199996948242 -17027,2018-06-10 11:00:00,28.899999618530277,7.288000106811522,40.85200119018555,8.819000244140625,-12.378000259399414,-2.559000015258789,33.510501861572266 -17028,2018-06-10 12:00:00,28.73200035095215,8.293000221252441,40.47700119018555,9.810999870300291,-11.140999794006348,-2.559000015258789,34.60950088500977 -17029,2018-06-10 13:00:00,30.1560001373291,8.711999893188478,41.97800064086914,10.105999946594238,-11.097999572753906,-2.559000015258789,36.58700180053711 -17030,2018-06-10 14:00:00,30.239999771118164,9.04699993133545,41.65599822998047,10.668999671936035,-11.097999572753906,-2.559000015258789,39.00350189208984 -17031,2018-06-10 15:00:00,29.82099914550781,8.878999710083008,41.81700134277344,10.45400047302246,-11.06700038909912,-1.6100000143051147,39.66299819946289 -17032,2018-06-10 16:00:00,31.32900047302246,10.55500030517578,43.42499923706055,12.008999824523926,-12.314000129699709,-2.8250000476837163,37.90549850463867 -17033,2018-06-10 17:00:00,32.250999450683594,8.963000297546387,42.99599838256836,9.890999794006348,-10.83199977874756,-2.8250000476837163,37.68600082397461 -17034,2018-06-10 18:00:00,30.239999771118164,8.208999633789062,42.40700149536133,9.756999969482422,-12.05799961090088,-2.8250000476837163,36.80699920654297 -17035,2018-06-10 19:00:00,27.22500038146973,7.119999885559082,38.73400115966797,8.470999717712402,-10.756999969482422,-1.493000030517578,35.70800018310547 -17036,2018-06-10 20:00:00,32.250999450683594,8.878999710083008,43.07699966430664,9.972000122070312,-10.756999969482422,-1.493000030517578,34.60900115966797 -17037,2018-06-10 21:00:00,30.82699966430664,8.795999526977539,40.52999877929688,9.623000144958496,-10.756999969482422,-1.493000030517578,33.291000366210945 -17038,2018-06-10 22:00:00,33.84199905395508,10.55500030517578,43.18399810791016,11.071000099182127,-9.541999816894531,-1.493000030517578,32.411998748779304 -17039,2018-06-10 23:00:00,31.32900047302246,10.13599967956543,41.06600189208984,10.614999771118164,-9.616999626159668,-1.3109999895095823,31.53300094604492 -17040,2018-06-11 00:00:00,31.16200065612793,9.885000228881836,40.47700119018555,10.427000045776367,-9.45699977874756,-1.246999979019165,31.0939998626709 -17041,2018-06-11 01:00:00,26.47100067138672,7.706999778747559,36.42900085449219,8.604999542236326,-9.85099983215332,-1.7059999704360962,30.434499740600582 -17042,2018-06-11 02:00:00,23.95800018310547,7.789999961853027,33.775001525878906,8.711999893188478,-9.829999923706056,-1.2369999885559082,29.9950008392334 -17043,2018-06-11 03:00:00,21.11000061035156,6.2829999923706055,31.20199966430664,7.184000015258789,-9.871999740600586,-1.2369999885559082,29.336000442504893 -17044,2018-06-11 04:00:00,23.62299919128418,7.119999885559082,34.01599884033203,8.336999893188478,-9.722999572753906,-1.2369999885559082,28.895999908447266 -17045,2018-06-11 05:00:00,22.86899948120117,6.533999919891357,33.18600082397461,8.203000068664549,-9.713000297546388,-1.2369999885559082,28.67650032043457 -17046,2018-06-11 06:00:00,27.22500038146973,8.293000221252441,38.73400115966797,9.48900032043457,-10.138999938964844,-1.406999945640564,28.67650032043457 -17047,2018-06-11 07:00:00,24.041000366210927,7.372000217437744,33.45399856567383,8.336999893188478,-8.913000106811523,-1.406999945640564,29.336000442504893 -17048,2018-06-11 08:00:00,23.790000915527344,6.953000068664551,35.222999572753906,8.282999992370605,-10.277999877929688,-1.22599995136261,31.313499450683597 -17049,2018-06-11 09:00:00,27.47599983215332,8.711999893188478,39.59199905395508,10.37399959564209,-11.557000160217283,-2.463000059127808,34.16949844360352 -17050,2018-06-11 10:00:00,27.81100082397461,7.037000179290772,39.96699905395508,8.845999717712402,-11.557000160217283,-2.463000059127808,36.80699920654297 -17051,2018-06-11 11:00:00,31.2450008392334,7.958000183105469,43.26399993896485,9.56999969482422,-11.557000160217283,-2.463000059127808,40.54199981689453 -17052,2018-06-11 12:00:00,31.58099937438965,8.963000297546387,43.74700164794922,10.53499984741211,-11.557000160217283,-2.463000059127808,42.95899963378906 -17053,2018-06-11 13:00:00,32.333999633789055,9.717000007629396,44.229000091552734,11.12399959564209,-11.482000350952148,-2.463000059127808,44.936500549316406 -17054,2018-06-11 14:00:00,30.90999984741211,9.04699993133545,43.53300094604492,10.829999923706056,-11.449999809265137,-2.463000059127808,47.13399887084961 -17055,2018-06-11 15:00:00,30.65900039672852,9.800999641418455,42.86199951171875,11.392000198364258,-12.729999542236328,-2.463000059127808,47.35400009155274 -17056,2018-06-11 16:00:00,32.75299835205078,10.220000267028809,45.35499954223633,11.795000076293944,-11.449999809265137,-2.463000059127808,45.59550094604492 -17057,2018-06-11 17:00:00,32.669998168945305,8.963000297546387,44.49800109863281,10.347000122070312,-11.428999900817873,-2.463000059127808,44.05749893188477 -17058,2018-06-11 18:00:00,34.68000030517578,9.633000373840332,45.00699996948242,10.642000198364258,-10.19200038909912,-2.463000059127808,42.73949813842773 -17059,2018-06-11 19:00:00,30.072999954223643,7.454999923706055,40.52999877929688,8.819000244140625,-11.41800022125244,-2.463000059127808,40.98149871826172 -17060,2018-06-11 20:00:00,28.565000534057607,6.533999919891357,40.55699920654297,7.827000141143799,-11.41800022125244,-2.463000059127808,39.2234992980957 -17061,2018-06-11 21:00:00,32.501998901367195,8.878999710083008,43.74700164794922,9.838000297546388,-11.215999603271484,-2.463000059127808,38.34450149536133 -17062,2018-06-11 22:00:00,33.17200088500977,10.303000450134276,43.72000122070313,10.937000274658203,-11.215999603271484,-2.463000059127808,37.0265007019043 -17063,2018-06-11 23:00:00,34.512001037597656,11.140999794006348,43.42499923706055,11.66100025177002,-8.550000190734862,-1.2369999885559082,36.147499084472656 -17064,2018-06-12 00:00:00,30.40800094604492,9.633000373840332,41.790000915527344,10.560999870300291,-10.0,-1.4609999656677246,35.487998962402344 -17065,2018-06-12 01:00:00,29.738000869750977,9.465999603271484,39.53799819946289,10.133000373840332,-9.12600040435791,-1.4609999656677246,34.82899856567383 -17066,2018-06-12 02:00:00,27.308000564575195,8.963000297546387,38.65399932861328,10.133000373840332,-10.736000061035156,-1.4609999656677246,34.38949966430664 -17067,2018-06-12 03:00:00,29.15099906921387,9.550000190734863,38.680999755859375,10.133000373840332,-9.48900032043457,-1.375,33.950000762939446 -17068,2018-06-12 04:00:00,24.208999633789062,7.623000144958496,34.31100082397461,8.685000419616701,-9.49899959564209,-1.375,33.291000366210945 -17069,2018-06-12 05:00:00,30.1560001373291,9.04699993133545,38.573001861572266,9.461999893188477,-8.284000396728517,-1.3109999895095823,32.852001190185554 -17070,2018-06-12 06:00:00,31.74799919128418,9.550000190734863,40.262001037597656,9.99899959564209,-8.593000411987305,-1.2690000534057615,32.411998748779304 -17071,2018-06-12 07:00:00,29.82099914550781,9.21399974822998,39.24399948120117,9.756999969482422,-9.935999870300291,-1.3109999895095823,33.291000366210945 -17072,2018-06-12 08:00:00,25.214000701904297,6.7849998474121085,37.42100143432617,8.470999717712402,-11.333000183105469,-2.569000005722046,35.04850006103516 -17073,2018-06-12 09:00:00,34.512001037597656,11.140999794006348,47.125,12.732999801635742,-12.559000015258787,-2.569000005722046,37.46549987792969 -17074,2018-06-12 10:00:00,30.99399948120117,7.539000034332275,43.42499923706055,9.248000144958496,-12.559000015258787,-2.569000005722046,40.102500915527344 -17075,2018-06-12 11:00:00,34.847000122070305,9.21399974822998,47.23199844360352,10.855999946594238,-11.300999641418455,-2.569000005722046,43.8380012512207 -17076,2018-06-12 12:00:00,36.1879997253418,10.052000045776367,47.82099914550781,11.446000099182127,-11.300999641418455,-2.569000005722046,46.03549957275391 -17077,2018-06-12 13:00:00,36.94200134277344,10.470999717712402,47.63399887084961,11.446000099182127,-10.064000129699709,-2.569000005722046,48.01250076293945 -17078,2018-06-12 14:00:00,37.61199951171875,12.145999908447266,49.7509994506836,13.269000053405762,-11.333000183105469,-2.569000005722046,49.990501403808594 -17079,2018-06-12 15:00:00,36.52299880981445,11.810999870300291,49.18899917602539,13.21500015258789,-12.494999885559082,-2.569000005722046,50.42950057983398 -17080,2018-06-12 16:00:00,37.277000427246094,12.229999542236328,49.80500030517578,13.697999954223633,-12.494999885559082,-2.569000005722046,49.11149978637695 -17081,2018-06-12 17:00:00,36.77399826049805,10.973999977111816,50.12699890136719,12.517999649047852,-12.8149995803833,-2.569000005722046,47.35350036621094 -17082,2018-06-12 18:00:00,33.674999237060554,9.21399974822998,44.97999954223633,10.427000045776367,-11.54599952697754,-2.569000005722046,46.69449996948242 -17083,2018-06-12 19:00:00,31.99900054931641,8.041999816894531,42.94300079345703,8.979999542236328,-10.395000457763672,-2.569000005722046,44.71649932861328 -17084,2018-06-12 20:00:00,37.277000427246094,9.04699993133545,46.9640007019043,10.052000045776367,-9.274999618530272,-2.569000005722046,42.73949813842773 -17085,2018-06-12 21:00:00,36.35499954223633,9.968000411987305,45.81100082397461,10.427000045776367,-9.350000381469728,-1.3329999446868896,40.54199981689453 -17086,2018-06-12 22:00:00,37.69599914550781,11.47599983215332,47.1510009765625,11.312000274658203,-9.467000007629396,0.0,39.2234992980957 -17087,2018-06-12 23:00:00,35.43399810791016,11.057000160217283,43.50600051879883,11.017000198364258,-8.27299976348877,0.0,38.125 -17088,2018-06-13 00:00:00,34.59600067138672,10.55500030517578,43.31800079345703,10.96399974822998,-9.520999908447266,-1.5989999771118164,37.24599838256836 -17089,2018-06-13 01:00:00,32.417999267578125,9.465999603271484,42.084999084472656,9.91800022125244,-9.49899959564209,-1.4390000104904177,36.147499084472656 -17090,2018-06-13 02:00:00,32.83700180053711,10.303000450134276,42.40700149536133,10.74899959564209,-9.28600025177002,-1.375,35.487998962402344 -17091,2018-06-13 03:00:00,31.32900047302246,9.717000007629396,39.59199905395508,9.864999771118164,-8.027999877929688,0.0,34.60900115966797 -17092,2018-06-13 04:00:00,30.743000030517567,9.29800033569336,38.89500045776367,9.91800022125244,-7.900000095367432,-1.246999979019165,33.72999954223633 -17093,2018-06-13 05:00:00,29.15099906921387,8.293000221252441,38.81499862670898,9.16800022125244,-8.998000144958496,-1.2790000438690186,32.852001190185554 -17094,2018-06-13 06:00:00,27.97900009155273,8.461000442504883,38.62699890136719,9.354999542236328,-11.088000297546388,-1.2790000438690186,32.63199996948242 -17095,2018-06-13 07:00:00,27.726999282836918,7.958000183105469,36.8849983215332,8.52400016784668,-9.48900032043457,-1.375,33.291000366210945 -17096,2018-06-13 08:00:00,31.077999114990234,8.795999526977539,42.38000106811523,10.105999946594238,-10.586999893188477,-1.4179999828338623,35.48849868774414 -17097,2018-06-13 09:00:00,35.85300064086914,12.145999908447266,48.2770004272461,13.482999801635742,-12.111000061035154,-2.7290000915527344,38.34450149536133 -17098,2018-06-13 10:00:00,32.16699981689453,8.963000297546387,44.73899841308594,10.401000022888184,-12.111000061035154,-2.7290000915527344,40.54199981689453 -17099,2018-06-13 11:00:00,34.345001220703125,9.04699993133545,45.78400039672852,10.668999671936035,-10.86400032043457,-2.7290000915527344,44.49700164794922 -17100,2018-06-13 12:00:00,37.19300079345703,11.644000053405762,49.26900100708008,12.84000015258789,-12.142999649047852,-2.7290000915527344,46.4744987487793 -17101,2018-06-13 13:00:00,39.11999893188477,12.5649995803833,50.93099975585938,13.564000129699709,-10.86400032043457,-2.7290000915527344,48.89149856567383 -17102,2018-06-13 14:00:00,38.28200149536133,12.480999946594238,50.15399932861328,13.43000030517578,-10.86400032043457,-2.7290000915527344,50.209999084472656 -17103,2018-06-13 15:00:00,36.858001708984375,12.314000129699709,48.73300170898438,13.67099952697754,-12.111000061035154,-2.7290000915527344,49.11149978637695 -17104,2018-06-13 16:00:00,39.53799819946289,13.402999877929688,50.77000045776367,14.20699977874756,-12.111000061035154,-2.7290000915527344,48.23249816894531 -17105,2018-06-13 17:00:00,39.95700073242188,12.314000129699709,50.52899932861328,12.866999626159668,-10.810999870300291,-2.7290000915527344,46.91400146484375 -17106,2018-06-13 18:00:00,36.1879997253418,10.805999755859377,47.63399887084961,11.741000175476074,-10.810999870300291,-1.4819999933242798,45.59550094604492 -17107,2018-06-13 19:00:00,31.74799919128418,8.208999633789062,43.66699981689453,9.381999969482422,-10.810999870300291,-1.4819999933242798,44.27750015258789 -17108,2018-06-13 20:00:00,38.03099822998047,10.805999755859377,48.91999816894531,11.928999900817873,-10.810999870300291,-1.4819999933242798,42.29999923706055 -17109,2018-06-13 21:00:00,38.53300094604492,10.973999977111816,49.3759994506836,11.5,-10.779000282287598,-1.4819999933242798,40.54199981689453 -17110,2018-06-13 22:00:00,37.10900115966797,10.805999755859377,47.09799957275391,11.12399959564209,-9.616999626159668,-1.3220000267028809,39.2234992980957 -17111,2018-06-13 23:00:00,34.847000122070305,10.38700008392334,46.64199829101562,11.526000022888184,-10.821000099182127,-1.343000054359436,38.56399917602539 -17112,2018-06-14 00:00:00,34.261001586914055,10.722000122070312,43.854000091552734,11.097999572753906,-9.28600025177002,-1.22599995136261,37.68600082397461 -17113,2018-06-14 01:00:00,34.512001037597656,10.13599967956543,45.06000137329102,11.071000099182127,-10.576000213623049,-1.22599995136261,36.80699920654297 -17114,2018-06-14 02:00:00,31.66399955749512,9.21399974822998,41.54899978637695,9.838000297546388,-9.765999794006348,-1.22599995136261,36.367000579833984 -17115,2018-06-14 03:00:00,32.08300018310547,10.220000267028809,42.21900177001953,10.829999923706056,-10.991999626159668,-2.440999984741211,35.487998962402344 -17116,2018-06-14 04:00:00,31.58099937438965,9.717000007629396,41.38800048828125,10.45400047302246,-9.989999771118164,-2.440999984741211,34.82899856567383 -17117,2018-06-14 05:00:00,32.08300018310547,9.800999641418455,42.29899978637695,10.37399959564209,-9.989999771118164,-2.440999984741211,34.169998168945305 -17118,2018-06-14 06:00:00,31.077999114990234,9.885000228881836,42.11199951171875,10.90999984741211,-10.55500030517578,-1.962000012397766,33.72999954223633 -17119,2018-06-14 07:00:00,28.39699935913086,7.119999885559082,38.35900115966797,8.041999816894531,-9.29699993133545,-1.3329999446868896,34.169998168945305 -17120,2018-06-14 08:00:00,32.333999633789055,10.55500030517578,44.04199981689453,11.902000427246096,-11.119999885559082,-1.3329999446868896,36.147499084472656 -17121,2018-06-14 09:00:00,34.59600067138672,12.062999725341797,47.79499816894531,13.75100040435791,-12.335000038146973,-2.5910000801086426,38.78400039672852 -17122,2018-06-14 10:00:00,29.48600006103516,7.539000034332275,41.92399978637695,9.381999969482422,-12.335000038146973,-2.5910000801086426,41.86050033569336 -17123,2018-06-14 11:00:00,30.40800094604492,7.874000072479247,43.21099853515625,9.756999969482422,-12.335000038146973,-2.5910000801086426,45.59600067138672 -17124,2018-06-14 12:00:00,32.83700180053711,9.21399974822998,45.75699996948242,11.043999671936035,-12.335000038146973,-2.5910000801086426,48.23249816894531 -17125,2018-06-14 13:00:00,28.229999542236328,6.2829999923706055,41.30799865722656,8.229000091552733,-12.335000038146973,-2.5910000801086426,49.990501403808594 -17126,2018-06-14 14:00:00,32.250999450683594,8.711999893188478,45.89099884033203,10.560999870300291,-12.335000038146973,-2.5910000801086426,49.55099868774414 -17127,2018-06-14 15:00:00,32.83700180053711,9.465999603271484,45.11399841308594,11.151000022888184,-12.335000038146973,-2.5910000801086426,49.11149978637695 -17128,2018-06-14 16:00:00,31.99900054931641,8.963000297546387,44.28300094604492,10.560999870300291,-12.335000038146973,-2.5910000801086426,48.67150115966797 -17129,2018-06-14 17:00:00,33.088001251220696,8.208999633789062,44.12200164794922,9.354999542236328,-11.088000297546388,-2.5910000801086426,46.4744987487793 -17130,2018-06-14 18:00:00,37.19300079345703,9.29800033569336,48.8129997253418,10.588000297546388,-11.184000015258787,-2.5910000801086426,44.71649932861328 -17131,2018-06-14 19:00:00,32.333999633789055,7.119999885559082,43.69300079345703,8.630999565124513,-11.184000015258787,-2.5910000801086426,42.95899963378906 -17132,2018-06-14 20:00:00,39.11999893188477,11.057000160217283,49.72499847412109,11.633999824523926,-11.097999572753906,-2.5910000801086426,41.42100143432617 -17133,2018-06-14 21:00:00,40.459999084472656,10.722000122070312,50.12699890136719,10.937000274658203,-9.713000297546388,-2.5910000801086426,40.102500915527344 -17134,2018-06-14 22:00:00,47.49599838256836,13.319000244140623,56.18500137329102,12.706000328063965,-7.420000076293945,-1.3860000371932983,39.00400161743164 -17135,2018-06-14 23:00:00,45.82099914550781,13.152000427246096,55.16600036621094,12.41100025177002,-8.913000106811523,-1.2790000438690186,38.78400039672852 -17136,2018-06-15 00:00:00,39.53799819946289,10.55500030517578,50.18000030517578,11.017000198364258,-10.21399974822998,-1.246999979019165,38.56399917602539 -17137,2018-06-15 01:00:00,38.86800003051758,10.638999938964844,49.3759994506836,11.097999572753906,-10.21399974822998,-1.246999979019165,37.90549850463867 -17138,2018-06-15 02:00:00,37.025001525878906,10.805999755859377,47.39300155639648,11.392000198364258,-10.586999893188477,-2.5799999237060547,37.24599838256836 -17139,2018-06-15 03:00:00,34.261001586914055,9.633000373840332,45.73099899291992,10.722000122070312,-10.640000343322754,-2.5799999237060547,36.147499084472656 -17140,2018-06-15 04:00:00,29.98900032043457,7.958000183105469,40.55699920654297,9.086999893188477,-10.640000343322754,-2.5799999237060547,35.26850128173828 -17141,2018-06-15 05:00:00,33.42300033569336,8.628000259399414,44.01499938964844,9.461999893188477,-10.640000343322754,-2.5799999237060547,34.60900115966797 -17142,2018-06-15 06:00:00,33.674999237060554,9.885000228881836,46.13299942016602,11.232000350952148,-12.04699993133545,-2.5799999237060547,34.169998168945305 -17143,2018-06-15 07:00:00,36.94200134277344,11.47599983215332,47.25899887084961,12.196999549865724,-10.71500015258789,-2.5799999237060547,34.60900115966797 -17144,2018-06-15 08:00:00,34.847000122070305,9.800999641418455,46.9640007019043,11.526000022888184,-11.972999572753904,-2.5799999237060547,36.147499084472656 -17145,2018-06-15 09:00:00,38.28200149536133,12.229999542236328,51.06499862670898,13.29599952697754,-11.972999572753904,-2.5799999237060547,38.56449890136719 -17146,2018-06-15 10:00:00,37.44400024414063,11.727999687194824,49.40299987792969,12.812999725341797,-11.972999572753904,-2.5799999237060547,40.98149871826172 -17147,2018-06-15 11:00:00,42.1349983215332,13.152000427246096,53.88000106811523,13.911999702453612,-11.972999572753904,-2.5799999237060547,44.277000427246094 -17148,2018-06-15 12:00:00,42.55400085449219,12.5649995803833,55.22000122070313,13.21500015258789,-11.972999572753904,-2.5799999237060547,46.25500106811523 -17149,2018-06-15 13:00:00,44.39699935913086,13.152000427246096,55.40700149536133,13.456000328063965,-10.736000061035156,-2.5799999237060547,46.91450119018555 -17150,2018-06-15 14:00:00,40.459999084472656,11.5600004196167,52.137001037597656,12.41100025177002,-11.961999893188477,-2.5799999237060547,47.35400009155274 -17151,2018-06-15 15:00:00,38.86800003051758,11.225000381469728,51.06499862670898,12.142999649047852,-11.961999893188477,-2.5799999237060547,48.01250076293945 -17152,2018-06-15 16:00:00,39.53799819946289,10.55500030517578,51.46699905395508,11.66100025177002,-11.994000434875488,-2.5799999237060547,47.35350036621094 -17153,2018-06-15 17:00:00,43.14099884033203,13.402999877929688,54.01399993896485,13.644000053405762,-10.779000282287598,-2.5799999237060547,46.25500106811523 -17154,2018-06-15 18:00:00,42.05199813842773,13.234999656677244,52.24399948120117,13.456000328063965,-10.788999557495115,-2.5799999237060547,44.936500549316406 -17155,2018-06-15 19:00:00,37.61199951171875,10.973999977111816,47.6870002746582,11.553000450134276,-9.562999725341797,-2.5799999237060547,43.61800003051758 -17156,2018-06-15 20:00:00,40.62699890136719,12.145999908447266,51.387001037597656,12.78600025177002,-10.779000282287598,-2.5799999237060547,42.29999923706055 -17157,2018-06-15 21:00:00,45.31800079345703,13.821999549865724,55.08599853515625,13.536999702453612,-10.779000282287598,-2.5799999237060547,40.762001037597656 -17158,2018-06-15 22:00:00,45.23500061035156,16.0,54.76399993896485,15.628000259399414,-9.562999725341797,-1.343000054359436,39.882999420166016 -17159,2018-06-15 23:00:00,43.05699920654297,14.743000030517578,53.665000915527344,14.930999755859377,-11.204999923706056,-1.246999979019165,39.00400161743164 -17160,2018-06-16 00:00:00,40.20899963378906,12.899999618530272,49.9119987487793,13.21500015258789,-9.361000061035156,-1.2899999618530271,38.34450149536133 -17161,2018-06-16 01:00:00,36.68999862670898,11.644000053405762,47.28499984741211,12.277000427246096,-10.597000122070312,-1.2369999885559082,37.90549850463867 -17162,2018-06-16 02:00:00,34.59600067138672,11.392000198364258,43.72000122070313,11.847999572753904,-9.32900047302246,-1.2369999885559082,37.24599838256836 -17163,2018-06-16 03:00:00,36.43899917602539,12.480999946594238,46.26699829101562,12.894000053405762,-9.595000267028809,-1.3009999990463257,36.367000579833984 -17164,2018-06-16 04:00:00,35.518001556396484,12.062999725341797,45.62300109863281,12.571999549865724,-9.531000137329102,-1.3009999990463257,35.70800018310547 -17165,2018-06-16 05:00:00,38.70100021362305,12.480999946594238,46.29399871826172,12.383999824523926,-8.432999610900879,-1.246999979019165,35.048999786376946 -17166,2018-06-16 06:00:00,36.43899917602539,13.234999656677244,46.428001403808594,13.590999603271484,-9.79800033569336,-1.2580000162124634,34.60900115966797 -17167,2018-06-16 07:00:00,35.85300064086914,10.890000343322754,43.96099853515625,10.776000022888184,-8.305000305175781,0.0,34.60900115966797 -17168,2018-06-16 08:00:00,36.60699844360352,10.470999717712402,45.24800109863281,10.37399959564209,-8.390999794006348,0.0,34.82899856567383 -17169,2018-06-16 09:00:00,36.43899917602539,10.973999977111816,48.5989990234375,11.954999923706056,-10.895999908447266,-1.406999945640564,36.147499084472656 -17170,2018-06-16 10:00:00,33.005001068115234,8.208999633789062,45.91799926757813,9.649999618530272,-12.142999649047852,-1.406999945640564,37.90549850463867 -17171,2018-06-16 11:00:00,39.790000915527344,12.732999801635742,51.22600173950195,13.510000228881836,-12.142999649047852,-2.622999906539917,39.882999420166016 -17172,2018-06-16 12:00:00,39.37099838256836,11.644000053405762,51.54700088500977,12.62600040435791,-12.142999649047852,-2.622999906539917,41.64099884033203 -17173,2018-06-16 13:00:00,39.20299911499024,11.895000457763672,50.15399932861328,12.517999649047852,-10.895999908447266,-2.622999906539917,42.51950073242188 -17174,2018-06-16 14:00:00,40.71099853515625,13.234999656677244,52.67300033569336,13.911999702453612,-12.133000373840332,-2.622999906539917,43.61800003051758 -17175,2018-06-16 15:00:00,40.125,13.234999656677244,52.61999893188477,14.04599952697754,-12.133000373840332,-2.622999906539917,43.39849853515625 -17176,2018-06-16 16:00:00,40.29199981689453,12.480999946594238,51.46699905395508,13.00100040435791,-10.895999908447266,-2.622999906539917,43.17850112915039 -17177,2018-06-16 17:00:00,38.86800003051758,10.973999977111816,49.45700073242188,11.687000274658203,-10.895999908447266,-1.8020000457763672,42.52000045776367 -17178,2018-06-16 18:00:00,32.669998168945305,8.461000442504883,43.53300094604492,9.56999969482422,-9.690999984741213,-1.8020000457763672,41.20100021362305 -17179,2018-06-16 19:00:00,30.239999771118164,7.037000179290772,41.28099822998047,8.041999816894531,-10.906999588012695,-1.8020000457763672,39.44300079345703 -17180,2018-06-16 20:00:00,34.0099983215332,8.125,44.44400024414063,8.819000244140625,-10.906999588012695,-1.8020000457763672,38.125 -17181,2018-06-16 21:00:00,36.27199935913086,8.376999855041504,46.07899856567383,8.336999893188478,-9.585000038146973,-1.3009999990463257,37.0265007019043 -17182,2018-06-16 22:00:00,40.125,11.644000053405762,50.42200088500977,11.553000450134276,-9.562999725341797,-1.2369999885559082,36.147499084472656 -17183,2018-06-16 23:00:00,39.62200164794922,11.225000381469728,48.00899887084961,11.043999671936035,-9.020000457763672,0.0,35.70800018310547 -17184,2018-06-17 00:00:00,36.68999862670898,10.890000343322754,46.66899871826172,11.017000198364258,-10.288000106811523,-1.3220000267028809,35.487998962402344 -17185,2018-06-17 01:00:00,37.277000427246094,10.638999938964844,46.9640007019043,10.560999870300291,-9.914999961853027,-1.3109999895095823,35.048999786376946 -17186,2018-06-17 02:00:00,32.16699981689453,8.963000297546387,42.00500106811523,9.54300022125244,-10.118000030517578,-1.3109999895095823,34.60900115966797 -17187,2018-06-17 03:00:00,33.005001068115234,9.885000228881836,43.07699966430664,10.37399959564209,-10.149999618530272,-1.3109999895095823,34.169998168945305 -17188,2018-06-17 04:00:00,31.58099937438965,10.13599967956543,41.73699951171875,10.776000022888184,-10.107000350952148,-1.3109999895095823,33.291000366210945 -17189,2018-06-17 05:00:00,30.072999954223643,8.795999526977539,40.42300033569336,9.409000396728516,-10.064000129699709,-1.2790000438690186,32.852001190185554 -17190,2018-06-17 06:00:00,29.98900032043457,9.550000190734863,40.23500061035156,9.99899959564209,-9.157999992370604,-1.2369999885559082,32.63199996948242 -17191,2018-06-17 07:00:00,30.82699966430664,9.633000373840332,41.040000915527344,10.133000373840332,-10.619000434875488,-1.2580000162124634,32.411998748779304 -17192,2018-06-17 08:00:00,29.738000869750977,9.04699993133545,39.94100189208984,9.435999870300291,-9.968000411987305,-1.2150000333786009,32.852001190185554 -17193,2018-06-17 09:00:00,29.82099914550781,8.711999893188478,42.78200149536133,10.614999771118164,-12.494999885559082,-2.5480000972747803,34.169998168945305 -17194,2018-06-17 10:00:00,30.57500076293945,8.125,42.97000122070313,9.810999870300291,-12.494999885559082,-2.5480000972747803,36.367000579833984 -17195,2018-06-17 11:00:00,33.757999420166016,9.717000007629396,45.89099884033203,10.96399974822998,-11.248000144958496,-2.5480000972747803,40.3224983215332 -17196,2018-06-17 12:00:00,28.062000274658203,7.119999885559082,39.96699905395508,8.657999992370605,-12.463000297546388,-2.5480000972747803,42.08000183105469 -17197,2018-06-17 13:00:00,29.738000869750977,6.618000030517577,41.790000915527344,8.121999740600586,-12.463000297546388,-2.5480000972747803,43.837501525878906 -17198,2018-06-17 14:00:00,29.90500068664551,7.203999996185303,41.709999084472656,8.550999641418457,-12.45199966430664,-2.5480000972747803,45.3759994506836 -17199,2018-06-17 15:00:00,32.417999267578125,8.878999710083008,43.98799896240234,10.07900047302246,-11.204999923706056,-2.5480000972747803,46.25500106811523 -17200,2018-06-17 16:00:00,29.82099914550781,8.543999671936035,42.75500106811523,10.133000373840332,-12.484000205993652,-2.5480000972747803,45.15650177001953 -17201,2018-06-17 17:00:00,31.99900054931641,6.86899995803833,43.74700164794922,8.336999893188478,-12.44200038909912,-2.5480000972747803,43.618499755859375 -17202,2018-06-17 18:00:00,40.3759994506836,11.644000053405762,50.47499847412109,12.03600025177002,-9.979000091552734,-1.3860000371932983,42.73899841308594 -17203,2018-06-17 19:00:00,35.518001556396484,8.711999893188478,46.6150016784668,9.649999618530272,-11.237000465393066,-1.3860000371932983,41.42100143432617 -17204,2018-06-17 20:00:00,38.78499984741211,8.878999710083008,49.83200073242188,9.70400047302246,-11.237000465393066,-1.3860000371932983,40.54199981689453 -17205,2018-06-17 21:00:00,40.71099853515625,11.727999687194824,52.11000061035156,12.170000076293944,-11.237000465393066,-1.3860000371932983,39.66299819946289 -17206,2018-06-17 22:00:00,40.71099853515625,11.979000091552734,50.23400115966797,11.741000175476074,-8.720999717712402,0.0,39.00400161743164 -17207,2018-06-17 23:00:00,38.78499984741211,11.392000198364258,48.49200057983398,11.526000022888184,-10.223999977111816,-1.3650000095367432,38.34450149536133 -17208,2018-06-18 00:00:00,36.02000045776367,10.55500030517578,45.94499969482422,11.017000198364258,-10.31999969482422,-1.3109999895095823,37.90549850463867 -17209,2018-06-18 01:00:00,32.333999633789055,8.963000297546387,41.28099822998047,9.381999969482422,-8.838000297546387,-1.3969999551773071,37.46599960327149 -17210,2018-06-18 02:00:00,34.429000854492195,10.38700008392334,44.12200164794922,10.614999771118164,-8.923999786376953,-1.246999979019165,37.0265007019043 -17211,2018-06-18 03:00:00,33.674999237060554,10.470999717712402,42.75500106811523,10.668999671936035,-9.083000183105469,0.0,36.147499084472656 -17212,2018-06-18 04:00:00,33.25600051879883,10.13599967956543,42.62099838256836,10.480999946594238,-9.243000030517578,-1.2899999618530271,35.70800018310547 -17213,2018-06-18 05:00:00,32.501998901367195,9.633000373840332,42.05799865722656,10.052000045776367,-9.274999618530272,-1.22599995136261,35.04850006103516 -17214,2018-06-18 06:00:00,33.50699996948242,10.55500030517578,43.61299896240234,10.803000450134276,-9.425000190734863,-1.2899999618530271,34.82899856567383 -17215,2018-06-18 07:00:00,31.496999740600582,9.633000373840332,42.67499923706055,10.883000373840332,-10.779000282287598,-1.2899999618530271,34.82899856567383 -17216,2018-06-18 08:00:00,27.726999282836918,6.953000068664551,40.87900161743164,9.140999794006348,-11.994000434875488,-2.632999897003174,35.928001403808594 -17217,2018-06-18 09:00:00,30.40800094604492,7.874000072479247,42.54100036621094,9.54300022125244,-11.972999572753904,-2.632999897003174,37.90549850463867 -17218,2018-06-18 10:00:00,32.16699981689453,7.874000072479247,44.41699981689453,9.48900032043457,-11.972999572753904,-2.632999897003174,40.102500915527344 -17219,2018-06-18 11:00:00,30.1560001373291,6.701000213623048,42.11199951171875,8.336999893188478,-11.972999572753904,-2.632999897003174,44.05749893188477 -17220,2018-06-18 12:00:00,32.08300018310547,7.958000183105469,43.39899826049805,9.435999870300291,-11.972999572753904,-2.632999897003174,46.47499847412109 -17221,2018-06-18 13:00:00,32.58599853515625,7.372000217437744,43.69300079345703,8.73900032043457,-11.982999801635742,-2.632999897003174,47.13399887084961 -17222,2018-06-18 14:00:00,32.417999267578125,9.04699993133545,45.03400039672852,10.508000373840332,-11.972999572753904,-2.632999897003174,46.69449996948242 -17223,2018-06-18 15:00:00,34.261001586914055,9.800999641418455,46.15999984741211,11.043999671936035,-11.972999572753904,-2.632999897003174,48.23249816894531 -17224,2018-06-18 16:00:00,38.03099822998047,9.381999969482422,48.946998596191406,10.74899959564209,-11.972999572753904,-2.632999897003174,47.57300186157226 -17225,2018-06-18 17:00:00,39.45500183105469,8.963000297546387,50.71599960327149,10.105999946594238,-11.982999801635742,-2.632999897003174,46.03499984741211 -17226,2018-06-18 18:00:00,32.250999450683594,7.372000217437744,44.44400024414063,9.034000396728516,-11.982999801635742,-2.632999897003174,44.936500549316406 -17227,2018-06-18 19:00:00,33.25600051879883,7.203999996185303,44.01499938964844,8.336999893188478,-10.756999969482422,-2.632999897003174,43.8380012512207 -17228,2018-06-18 20:00:00,39.11999893188477,8.208999633789062,48.9739990234375,8.685000419616701,-10.767999649047852,-2.632999897003174,43.17850112915039 -17229,2018-06-18 21:00:00,38.53300094604492,7.789999961853027,48.8129997253418,8.550999641418457,-10.756999969482422,-2.632999897003174,42.29999923706055 -17230,2018-06-18 22:00:00,36.77399826049805,8.628000259399414,48.30400085449219,9.677000045776367,-10.70400047302246,-1.3650000095367432,41.42100143432617 -17231,2018-06-18 23:00:00,32.333999633789055,7.372000217437744,44.20299911499024,8.685000419616701,-11.972999572753904,-2.5910000801086426,40.762001037597656 -17232,2018-06-19 00:00:00,35.685001373291016,7.958000183105469,47.04399871826172,9.409000396728516,-10.71500015258789,-2.5910000801086426,40.321998596191406 -17233,2018-06-19 01:00:00,35.26599884033203,8.543999671936035,46.2400016784668,9.649999618530272,-10.71500015258789,-2.5910000801086426,39.882999420166016 -17234,2018-06-19 02:00:00,34.09400177001953,8.461000442504883,45.70399856567383,9.756999969482422,-11.951000213623049,-2.5910000801086426,39.44300079345703 -17235,2018-06-19 03:00:00,30.492000579833984,7.874000072479247,41.49499893188477,9.220999717712402,-10.71500015258789,-2.5910000801086426,39.2234992980957 -17236,2018-06-19 04:00:00,32.669998168945305,8.461000442504883,44.20299911499024,9.838000297546388,-10.692999839782717,-2.5910000801086426,38.78400039672852 -17237,2018-06-19 05:00:00,31.99900054931641,7.958000183105469,43.69300079345703,9.220999717712402,-11.119999885559082,-2.5910000801086426,37.90549850463867 -17238,2018-06-19 06:00:00,30.072999954223643,7.623000144958496,41.60300064086914,8.979999542236328,-11.119999885559082,-2.5910000801086426,37.46599960327149 -17239,2018-06-19 07:00:00,32.417999267578125,8.376999855041504,44.01499938964844,9.99899959564209,-11.461000442504885,-2.5910000801086426,37.46599960327149 -17240,2018-06-19 08:00:00,35.85300064086914,10.220000267028809,46.6150016784668,11.204999923706056,-10.234999656677246,-2.5910000801086426,38.125 -17241,2018-06-19 09:00:00,42.1349983215332,13.152000427246096,53.71900177001953,14.019000053405762,-11.482000350952148,-2.5910000801086426,39.882999420166016 -17242,2018-06-19 10:00:00,34.59600067138672,8.963000297546387,46.4010009765625,10.69499969482422,-11.4399995803833,-2.5910000801086426,41.20100021362305 -17243,2018-06-19 11:00:00,34.59600067138672,9.633000373840332,46.29399871826172,11.232000350952148,-11.4399995803833,-2.5910000801086426,41.64099884033203 -17244,2018-06-19 12:00:00,37.277000427246094,10.13599967956543,49.43000030517578,11.66100025177002,-11.4399995803833,-2.5910000801086426,41.64099884033203 -17245,2018-06-19 13:00:00,38.53300094604492,10.638999938964844,50.09999847412109,11.954999923706056,-11.4399995803833,-2.5910000801086426,41.64099884033203 -17246,2018-06-19 14:00:00,40.9630012512207,11.47599983215332,52.72700119018555,12.41100025177002,-11.4399995803833,-2.5910000801086426,40.98149871826172 -17247,2018-06-19 15:00:00,40.79499816894531,12.5649995803833,53.10200119018555,13.67099952697754,-12.772000312805176,-2.5910000801086426,36.80699920654297 -17248,2018-06-19 16:00:00,41.29800033569336,12.64900016784668,52.915000915527344,13.402999877929688,-11.482000350952148,-2.5910000801086426,36.367000579833984 -17249,2018-06-19 17:00:00,38.70100021362305,10.638999938964844,49.05500030517578,11.579999923706056,-10.267000198364258,-2.5910000801086426,34.169998168945305 -17250,2018-06-19 18:00:00,30.743000030517567,7.037000179290772,43.74700164794922,9.54300022125244,-12.26099967956543,-2.5910000801086426,32.192501068115234 -17251,2018-06-19 19:00:00,29.90500068664551,6.366000175476074,42.78200149536133,8.925999641418457,-12.25,-2.5910000801086426,30.434499740600582 -17252,2018-06-19 20:00:00,33.005001068115234,6.701000213623048,44.33700180053711,8.255999565124513,-11.02400016784668,-2.5910000801086426,30.65399932861328 -17253,2018-06-19 21:00:00,41.96799850463867,12.145999908447266,51.81600189208984,12.46500015258789,-9.80799961090088,-2.5910000801086426,31.0939998626709 -17254,2018-06-19 22:00:00,39.95700073242188,11.727999687194824,48.91999816894531,11.795000076293944,-8.444000244140625,-1.3009999990463257,31.0939998626709 -17255,2018-06-19 23:00:00,43.55899810791016,13.319000244140623,51.30599975585938,13.161999702453612,-8.539999961853027,-1.5460000038146973,31.313499450683597 -17256,2018-06-20 00:00:00,37.69599914550781,11.057000160217283,46.9640007019043,11.28499984741211,-9.755000114440918,-1.5460000038146973,32.192501068115234 -17257,2018-06-20 01:00:00,34.59600067138672,9.885000228881836,44.49800109863281,10.508000373840332,-9.80799961090088,-1.5460000038146973,31.972999572753903 -17258,2018-06-20 02:00:00,33.590999603271484,9.717000007629396,44.28300094604492,10.74899959564209,-11.161999702453612,-1.5460000038146973,31.972999572753903 -17259,2018-06-20 03:00:00,34.763999938964844,10.55500030517578,45.38199996948242,11.258000373840332,-9.946999549865724,-1.5460000038146973,31.75300025939941 -17260,2018-06-20 04:00:00,33.25600051879883,10.303000450134276,43.90800094604492,11.204999923706056,-9.989999771118164,-1.621000051498413,32.192501068115234 -17261,2018-06-20 05:00:00,33.25600051879883,8.963000297546387,44.25600051879883,10.213000297546388,-11.364999771118164,-1.621000051498413,32.192501068115234 -17262,2018-06-20 06:00:00,30.743000030517567,8.628000259399414,42.21900177001953,10.024999618530272,-11.642000198364258,-1.621000051498413,32.63199996948242 -17263,2018-06-20 07:00:00,32.417999267578125,9.717000007629396,42.62099838256836,10.45400047302246,-10.234999656677246,-1.2580000162124634,32.63199996948242 -17264,2018-06-20 08:00:00,29.65399932861328,7.789999961853027,41.20000076293945,8.979999542236328,-11.89799976348877,-1.2580000162124634,33.291000366210945 -17265,2018-06-20 09:00:00,22.198999404907227,6.7849998474121085,33.80199813842773,8.657999992370605,-12.069000244140623,-2.483999967575073,34.169998168945305 -17266,2018-06-20 10:00:00,23.28700065612793,6.86899995803833,35.089000701904304,8.73900032043457,-11.918999671936035,-2.483999967575073,35.048999786376946 -17267,2018-06-20 11:00:00,23.53899955749512,6.114999771118164,35.678001403808594,8.255999565124513,-11.918999671936035,-2.483999967575073,35.487998962402344 -17268,2018-06-20 12:00:00,22.95199966430664,5.445000171661377,34.097000122070305,7.317999839782715,-11.918999671936035,-2.483999967575073,36.58700180053711 -17269,2018-06-20 13:00:00,24.54400062561035,6.618000030517577,36.402000427246094,8.416999816894531,-11.918999671936035,-2.483999967575073,38.56449890136719 -17270,2018-06-20 14:00:00,24.96299934387207,6.533999919891357,35.946998596191406,7.907999992370605,-11.918999671936035,-1.684000015258789,39.2234992980957 -17271,2018-06-20 15:00:00,23.70599937438965,6.618000030517577,36.1609992980957,8.282999992370605,-11.706000328063965,-1.6419999599456787,39.882999420166016 -17272,2018-06-20 16:00:00,24.208999633789062,6.2829999923706055,37.01900100708008,8.255999565124513,-11.706000328063965,-2.878999948501587,40.102500915527344 -17273,2018-06-20 17:00:00,27.05699920654297,6.2829999923706055,38.0369987487793,7.747000217437744,-10.468999862670898,-2.878999948501587,39.44300079345703 -17274,2018-06-20 18:00:00,31.74799919128418,7.119999885559082,42.35300064086914,8.470999717712402,-10.468999862670898,-2.878999948501587,38.56399917602539 -17275,2018-06-20 19:00:00,32.417999267578125,9.04699993133545,42.21900177001953,10.239999771118164,-9.253999710083008,-1.4609999656677246,37.68600082397461 -17276,2018-06-20 20:00:00,33.674999237060554,9.550000190734863,44.49800109863281,10.401000022888184,-10.779000282287598,-1.3109999895095823,36.58700180053711 -17277,2018-06-20 21:00:00,37.19300079345703,11.895000457763672,47.6609992980957,12.357000350952148,-9.585000038146973,-1.3109999895095823,36.147499084472656 -17278,2018-06-20 22:00:00,39.45500183105469,13.234999656677244,48.14300155639648,13.081000328063965,-8.380000114440918,-1.2150000333786009,35.048999786376946 -17279,2018-06-20 23:00:00,37.61199951171875,12.732999801635742,47.74100112915039,13.107999801635742,-9.595000267028809,-1.2369999885559082,34.169998168945305 -17280,2018-06-21 00:00:00,34.763999938964844,12.062999725341797,44.06900024414063,12.517999649047852,-9.381999969482422,-1.2790000438690186,33.72999954223633 -17281,2018-06-21 01:00:00,32.75299835205078,11.644000053405762,42.03099822998047,12.222999572753904,-9.157999992370604,-1.246999979019165,33.291000366210945 -17282,2018-06-21 02:00:00,23.53899955749512,8.041999816894531,33.56100082397461,9.006999969482422,-10.395000457763672,-1.375,32.852001190185554 -17283,2018-06-21 03:00:00,25.632999420166016,8.293000221252441,34.06999969482422,8.604999542236326,-7.985000133514402,0.0,32.411998748779304 -17284,2018-06-21 04:00:00,22.78499984741211,8.041999816894531,33.15900039672852,9.194000244140623,-9.201000213623049,-1.246999979019165,31.53300094604492 -17285,2018-06-21 05:00:00,24.71199989318848,7.874000072479247,34.28499984741211,8.711999893188478,-9.541999816894531,-1.3650000095367432,30.87400054931641 -17286,2018-06-21 06:00:00,31.66399955749512,10.973999977111816,40.74499893188477,11.472999572753904,-8.305000305175781,-1.3220000267028809,30.434499740600582 -17287,2018-06-21 07:00:00,30.40800094604492,9.717000007629396,41.28099822998047,10.69499969482422,-10.949000358581545,-1.2899999618530271,30.65399932861328 -17288,2018-06-21 08:00:00,27.726999282836918,8.125,39.21699905395508,9.623000144958496,-10.949000358581545,-1.2899999618530271,32.852001190185554 -17289,2018-06-21 09:00:00,31.832000732421875,10.55500030517578,45.40900039672852,12.491000175476074,-13.46500015258789,-2.5160000324249268,34.38949966430664 -17290,2018-06-21 10:00:00,28.31399917602539,7.037000179290772,41.73699951171875,9.194000244140623,-13.46500015258789,-2.5160000324249268,36.367000579833984 -17291,2018-06-21 11:00:00,31.2450008392334,10.38700008392334,44.73899841308594,12.41100025177002,-13.46500015258789,-2.5160000324249268,38.34450149536133 -17292,2018-06-21 12:00:00,32.83700180053711,9.465999603271484,46.803001403808594,11.392000198364258,-13.411999702453612,-2.5160000324249268,40.54199981689453 -17293,2018-06-21 13:00:00,31.832000732421875,9.21399974822998,45.32899856567383,11.178000450134276,-13.411999702453612,-2.5160000324249268,40.98149871826172 -17294,2018-06-21 14:00:00,35.182998657226555,11.057000160217283,47.74100112915039,12.517999649047852,-13.411999702453612,-2.5160000324249268,43.61800003051758 -17295,2018-06-21 15:00:00,34.429000854492195,11.225000381469728,47.6870002746582,12.894000053405762,-13.32699966430664,-2.5160000324249268,44.27750015258789 -17296,2018-06-21 16:00:00,33.674999237060554,9.968000411987305,45.75699996948242,11.392000198364258,-12.10099983215332,-2.5160000324249268,43.17900085449219 -17297,2018-06-21 17:00:00,38.11399841308594,11.895000457763672,49.29600143432617,12.41100025177002,-10.83199977874756,-2.5160000324249268,41.86050033569336 -17298,2018-06-21 18:00:00,36.77399826049805,10.805999755859377,47.5270004272461,11.526000022888184,-9.616999626159668,-2.5160000324249268,40.51750183105469 -17299,2018-06-21 19:00:00,30.1560001373291,8.293000221252441,41.415000915527344,9.302000045776367,-10.875,-1.6419999599456787,39.41899871826172 -17300,2018-06-21 20:00:00,37.10900115966797,11.309000015258787,47.07099914550781,11.366000175476074,-9.413999557495115,-1.2150000333786009,38.320499420166016 -17301,2018-06-21 21:00:00,38.53300094604492,11.140999794006348,47.7140007019043,11.33899974822998,-9.33899974822998,-1.3109999895095823,37.6614990234375 -17302,2018-06-21 22:00:00,35.014999389648445,10.638999938964844,44.41699981689453,10.803000450134276,-9.33899974822998,-1.2369999885559082,37.00199890136719 -17303,2018-06-21 23:00:00,35.43399810791016,10.973999977111816,44.63199996948242,11.312000274658203,-9.381999969482422,-1.2690000534057615,36.78250122070313 -17304,2018-06-22 00:00:00,32.669998168945305,11.140999794006348,42.00500106811523,10.96399974822998,-9.243000030517578,0.0,36.5625 -17305,2018-06-22 01:00:00,33.50699996948242,10.470999717712402,43.07699966430664,10.74899959564209,-9.243000030517578,-1.22599995136261,36.12300109863281 -17306,2018-06-22 02:00:00,27.559999465942383,8.628000259399414,39.35100173950195,10.07900047302246,-10.50100040435791,-1.246999979019165,35.24399948120117 -17307,2018-06-22 03:00:00,28.145999908447266,9.130999565124512,38.22499847412109,9.756999969482422,-9.28600025177002,-1.246999979019165,34.804500579833984 -17308,2018-06-22 04:00:00,30.492000579833984,10.38700008392334,39.69900131225586,10.560999870300291,-9.520999908447266,0.0,34.584999084472656 -17309,2018-06-22 05:00:00,27.97900009155273,8.376999855041504,37.6619987487793,10.31999969482422,-9.350000381469728,-1.2580000162124634,34.365501403808594 -17310,2018-06-22 06:00:00,28.81599998474121,8.963000297546387,38.54700088500977,9.48900032043457,-9.350000381469728,0.0,33.70600128173828 -17311,2018-06-22 07:00:00,28.565000534057607,8.711999893188478,38.97600173950195,9.838000297546388,-10.479999542236328,-1.2690000534057615,31.28899955749512 -17312,2018-06-22 08:00:00,27.81100082397461,8.293000221252441,40.20899963378906,10.024999618530272,-11.696000099182127,-2.483999967575073,30.629499435424805 -17313,2018-06-22 09:00:00,29.82099914550781,9.885000228881836,42.21900177001953,11.607000350952148,-11.696000099182127,-2.483999967575073,30.19050025939941 -17314,2018-06-22 10:00:00,27.64299964904785,7.706999778747559,38.70800018310547,8.899999618530273,-10.437000274658203,-1.5779999494552612,29.5314998626709 -17315,2018-06-22 11:00:00,30.1560001373291,9.04699993133545,42.19200134277344,10.37399959564209,-11.758999824523926,-1.5779999494552612,28.65250015258789 -17316,2018-06-22 12:00:00,30.65900039672852,9.381999969482422,41.65599822998047,10.803000450134276,-11.758999824523926,-1.5779999494552612,29.31150054931641 -17317,2018-06-22 13:00:00,29.738000869750977,10.38700008392334,41.89699935913086,11.579999923706056,-11.758999824523926,-1.5779999494552612,28.433000564575195 -17318,2018-06-22 14:00:00,28.899999618530277,10.13599967956543,41.62900161743164,11.71399974822998,-11.758999824523926,-1.5779999494552612,27.55400085449219 -17319,2018-06-22 15:00:00,29.82099914550781,10.638999938964844,41.76300048828125,12.142999649047852,-11.833999633789062,-2.8359999656677246,28.65250015258789 -17320,2018-06-22 16:00:00,29.23500061035156,10.38700008392334,41.57600021362305,11.982000350952148,-11.791000366210938,-2.8359999656677246,28.21299934387207 -17321,2018-06-22 17:00:00,31.077999114990234,9.885000228881836,42.59400177001953,10.883000373840332,-11.727999687194824,-2.8359999656677246,27.773500442504893 -17322,2018-06-22 18:00:00,30.65900039672852,9.130999565124512,41.25400161743164,10.45400047302246,-10.458999633789062,-1.7910000085830688,27.11450004577637 -17323,2018-06-22 19:00:00,26.63800048828125,8.208999633789062,38.76100158691406,9.649999618530272,-11.727999687194824,-1.22599995136261,27.333999633789062 -17324,2018-06-22 20:00:00,33.17200088500977,10.722000122070312,44.97999954223633,11.902000427246096,-11.663999557495115,-2.611999988555908,28.21299934387207 -17325,2018-06-22 21:00:00,34.09400177001953,10.55500030517578,44.52399826049805,11.151000022888184,-10.447999954223633,-2.611999988555908,28.65250015258789 -17326,2018-06-22 22:00:00,32.75299835205078,10.973999977111816,43.02299880981445,11.12399959564209,-10.447999954223633,-1.3009999990463257,27.99349975585937 -17327,2018-06-22 23:00:00,30.743000030517567,10.55500030517578,41.040000915527344,11.097999572753906,-10.767999649047852,-1.2899999618530271,27.99349975585937 -17328,2018-06-23 00:00:00,31.496999740600582,11.644000053405762,42.43399810791016,12.008999824523926,-10.767999649047852,-1.2899999618530271,27.99349975585937 -17329,2018-06-23 01:00:00,29.90500068664551,9.381999969482422,41.06600189208984,10.105999946594238,-10.767999649047852,-1.3329999446868896,27.99349975585937 -17330,2018-06-23 02:00:00,29.82099914550781,10.470999717712402,40.15499877929688,11.017000198364258,-10.725000381469728,-1.2150000333786009,27.99349975585937 -17331,2018-06-23 03:00:00,30.239999771118164,10.805999755859377,40.90599822998047,11.33899974822998,-10.928000450134276,-1.22599995136261,27.99349975585937 -17332,2018-06-23 04:00:00,24.62800025939941,8.711999893188478,35.678001403808594,9.649999618530272,-11.184000015258787,-2.494999885559082,28.21299934387207 -17333,2018-06-23 05:00:00,27.308000564575195,9.21399974822998,38.17100143432617,10.29300022125244,-9.958000183105469,-1.2580000162124634,28.4325008392334 -17334,2018-06-23 06:00:00,27.05699920654297,10.220000267028809,37.79600143432617,10.90999984741211,-9.979000091552734,-1.3329999446868896,28.4325008392334 -17335,2018-06-23 07:00:00,30.072999954223643,10.220000267028809,38.73400115966797,10.347000122070312,-8.581999778747559,0.0,28.871999740600582 -17336,2018-06-23 08:00:00,29.066999435424805,10.220000267028809,40.95899963378906,11.312000274658203,-12.559000015258787,-1.4819999933242798,29.31150054931641 -17337,2018-06-23 09:00:00,30.1560001373291,10.722000122070312,42.99599838256836,12.08899974822998,-12.579999923706056,-2.697000026702881,30.40999984741211 -17338,2018-06-23 10:00:00,26.63800048828125,7.454999923706055,39.37799835205078,8.95300006866455,-12.579999923706056,-2.697000026702881,32.387500762939446 -17339,2018-06-23 11:00:00,29.319000244140625,9.717000007629396,42.13899993896485,11.553000450134276,-12.579999923706056,-2.697000026702881,34.14550018310547 -17340,2018-06-23 12:00:00,30.82699966430664,9.381999969482422,43.31800079345703,11.071000099182127,-12.579999923706056,-2.697000026702881,36.78250122070313 -17341,2018-06-23 13:00:00,31.077999114990234,9.885000228881836,44.17599868774414,11.687000274658203,-12.579999923706056,-2.697000026702881,36.12300109863281 -17342,2018-06-23 14:00:00,27.97900009155273,9.968000411987305,41.62900161743164,11.847999572753904,-12.579999923706056,-2.697000026702881,37.44150161743164 -17343,2018-06-23 15:00:00,30.40800094604492,11.309000015258787,43.55899810791016,13.053999900817873,-12.54800033569336,-2.697000026702881,37.88100051879883 -17344,2018-06-23 16:00:00,28.64900016784668,10.220000267028809,41.49499893188477,11.875,-12.54800033569336,-2.697000026702881,37.00199890136719 -17345,2018-06-23 17:00:00,33.088001251220696,11.644000053405762,44.71200180053711,12.383999824523926,-11.248000144958496,-2.697000026702881,36.5625 -17346,2018-06-23 18:00:00,33.757999420166016,9.968000411987305,44.52399826049805,10.588000297546388,-10.01099967956543,-1.6529999971389768,36.12300109863281 -17347,2018-06-23 19:00:00,27.726999282836918,7.288000106811522,39.35100173950195,8.604999542236326,-11.300999641418455,-1.6529999971389768,35.68349838256836 -17348,2018-06-23 20:00:00,34.17699813842773,9.800999641418455,44.685001373291016,10.480999946594238,-10.022000312805176,-1.6529999971389768,34.365501403808594 -17349,2018-06-23 21:00:00,34.847000122070305,9.968000411987305,44.52399826049805,10.052000045776367,-9.904000282287598,-1.2790000438690186,33.925498962402344 -17350,2018-06-23 22:00:00,29.82099914550781,8.963000297546387,40.23500061035156,9.0600004196167,-9.722999572753906,-1.2150000333786009,33.26649856567383 -17351,2018-06-23 23:00:00,31.496999740600582,9.717000007629396,41.46799850463867,9.972000122070312,-9.157999992370604,-1.246999979019165,32.827499389648445 -17352,2018-06-24 00:00:00,27.97900009155273,8.711999893188478,38.70800018310547,9.32800006866455,-10.479999542236328,-1.406999945640564,32.167999267578125 -17353,2018-06-24 01:00:00,28.983999252319336,8.543999671936035,39.56499862670898,8.925999641418457,-10.586999893188477,-1.2790000438690186,31.728500366210927 -17354,2018-06-24 02:00:00,29.40299987792969,8.795999526977539,39.67300033569336,9.140999794006348,-10.447999954223633,-1.2790000438690186,31.28899955749512 -17355,2018-06-24 03:00:00,28.983999252319336,8.963000297546387,39.75299835205078,9.48900032043457,-10.447999954223633,-1.2150000333786009,30.84950065612793 -17356,2018-06-24 04:00:00,27.22500038146973,7.789999961853027,38.11800003051758,8.52400016784668,-10.36299991607666,-1.22599995136261,30.40999984741211 -17357,2018-06-24 05:00:00,25.214000701904297,6.7849998474121085,34.41899871826172,7.317999839782715,-9.178999900817873,0.0,30.190000534057607 -17358,2018-06-24 06:00:00,25.548999786376957,6.533999919891357,33.50699996948242,6.9689998626708975,-8.401000022888184,0.0,29.97050094604492 -17359,2018-06-24 07:00:00,31.74799919128418,9.550000190734863,41.040000915527344,9.729999542236328,-8.581999778747559,0.0,30.629499435424805 -17360,2018-06-24 08:00:00,30.40800094604492,9.04699993133545,40.66400146484375,9.595999717712402,-9.317999839782717,-1.3220000267028809,32.38800048828125 -17361,2018-06-24 09:00:00,29.15099906921387,8.628000259399414,42.43399810791016,10.480999946594238,-12.185999870300291,-2.5910000801086426,34.365001678466804 -17362,2018-06-24 10:00:00,28.565000534057607,5.611999988555908,40.50299835205078,7.1570000648498535,-12.175000190734863,-2.5910000801086426,36.78200149536133 -17363,2018-06-24 11:00:00,30.90999984741211,9.381999969482422,43.13000106811523,11.178000450134276,-12.175000190734863,-2.5910000801086426,39.63850021362305 -17364,2018-06-24 12:00:00,34.512001037597656,10.55500030517578,45.81100082397461,12.062999725341797,-12.154000282287598,-2.5910000801086426,39.858001708984375 -17365,2018-06-24 13:00:00,35.518001556396484,12.229999542236328,47.39300155639648,13.053999900817873,-12.111000061035154,-2.5910000801086426,39.858001708984375 -17366,2018-06-24 14:00:00,34.0099983215332,11.727999687194824,45.91799926757813,12.732999801635742,-12.111000061035154,-2.5910000801086426,38.7599983215332 -17367,2018-06-24 15:00:00,31.58099937438965,10.973999977111816,44.01499938964844,12.008999824523926,-12.133000373840332,-2.5910000801086426,38.320499420166016 -17368,2018-06-24 16:00:00,35.685001373291016,11.810999870300291,47.553001403808594,12.760000228881836,-12.133000373840332,-2.5910000801086426,38.540000915527344 -17369,2018-06-24 17:00:00,37.69599914550781,12.145999908447266,48.35800170898438,12.41100025177002,-9.553000450134276,-1.493000030517578,38.759498596191406 -17370,2018-06-24 18:00:00,35.26599884033203,11.392000198364258,45.56999969482422,11.633999824523926,-10.779000282287598,-1.246999979019165,38.10100173950195 -17371,2018-06-24 19:00:00,30.90999984741211,8.376999855041504,41.49499893188477,9.194000244140623,-10.779000282287598,-1.246999979019165,37.6609992980957 -17372,2018-06-24 20:00:00,37.61199951171875,11.810999870300291,48.2770004272461,12.25,-10.779000282287598,-1.246999979019165,36.78200149536133 -17373,2018-06-24 21:00:00,37.52799987792969,11.644000053405762,47.9020004272461,11.982000350952148,-10.779000282287598,-1.246999979019165,36.34299850463867 -17374,2018-06-24 22:00:00,38.95199966430664,13.402999877929688,47.79499816894531,12.894000053405762,-9.520999908447266,0.0,35.4640007019043 -17375,2018-06-24 23:00:00,34.345001220703125,11.644000053405762,44.73899841308594,11.928999900817873,-10.479999542236328,-1.5460000038146973,35.4640007019043 -17376,2018-06-25 00:00:00,35.93600082397461,12.39799976348877,44.97999954223633,12.357000350952148,-9.595000267028809,-1.2369999885559082,35.4640007019043 -17377,2018-06-25 01:00:00,32.333999633789055,10.303000450134276,42.32600021362305,10.614999771118164,-9.553000450134276,-1.2369999885559082,35.4640007019043 -17378,2018-06-25 02:00:00,32.669998168945305,11.140999794006348,42.21900177001953,11.418999671936035,-9.574000358581545,-1.22599995136261,35.023998260498054 -17379,2018-06-25 03:00:00,33.92599868774414,11.392000198364258,42.72800064086914,11.5,-9.626999855041504,0.0,34.584999084472656 -17380,2018-06-25 04:00:00,30.57500076293945,10.303000450134276,40.77199935913086,11.017000198364258,-10.895999908447266,-1.246999979019165,34.14550018310547 -17381,2018-06-25 05:00:00,28.983999252319336,9.633000373840332,39.45800018310547,10.29300022125244,-9.626999855041504,-1.4709999561309814,34.14550018310547 -17382,2018-06-25 06:00:00,25.29800033569336,8.543999671936035,34.472000122070305,8.630999565124513,-8.401000022888184,0.0,34.365501403808594 -17383,2018-06-25 07:00:00,27.64299964904785,9.130999565124512,37.367000579833984,9.54300022125244,-9.680999755859377,0.0,35.023998260498054 -17384,2018-06-25 08:00:00,26.47100067138672,8.293000221252441,35.678001403808594,8.685000419616701,-9.562999725341797,0.0,35.90299987792969 -17385,2018-06-25 09:00:00,30.99399948120117,10.55500030517578,42.75500106811523,11.66100025177002,-11.982999801635742,-1.246999979019165,38.10049819946289 -17386,2018-06-25 10:00:00,30.57500076293945,10.220000267028809,43.04999923706055,11.553000450134276,-11.982999801635742,-1.246999979019165,40.95700073242188 -17387,2018-06-25 11:00:00,33.674999237060554,10.722000122070312,45.56999969482422,11.71399974822998,-10.746999740600586,-2.463000059127808,44.47249984741211 -17388,2018-06-25 12:00:00,36.104000091552734,10.638999938964844,47.875,11.687000274658203,-11.961999893188477,-2.463000059127808,46.45050048828125 -17389,2018-06-25 13:00:00,37.44400024414063,12.062999725341797,48.25,12.760000228881836,-10.756999969482422,-2.463000059127808,48.647499084472656 -17390,2018-06-25 14:00:00,35.26599884033203,11.309000015258787,46.18600082397461,12.116000175476074,-10.756999969482422,-2.463000059127808,50.625 -17391,2018-06-25 15:00:00,36.104000091552734,17.004999160766598,45.91799926757813,11.66100025177002,-9.541999816894531,-2.463000059127808,50.625 -17392,2018-06-25 16:00:00,40.04100036621094,10.470999717712402,51.25299835205078,11.366000175476074,-10.756999969482422,-1.843999981880188,49.74599838256836 -17393,2018-06-25 17:00:00,39.62200164794922,10.722000122070312,50.93099975585938,11.12399959564209,-10.756999969482422,-1.843999981880188,48.86700057983398 -17394,2018-06-25 18:00:00,39.20299911499024,9.800999641418455,49.05500030517578,10.07900047302246,-9.49899959564209,-1.2899999618530271,47.98849868774414 -17395,2018-06-25 19:00:00,37.77899932861328,8.795999526977539,47.125,8.95300006866455,-9.49899959564209,-1.5349999666213991,46.45000076293945 -17396,2018-06-25 20:00:00,43.55899810791016,10.805999755859377,52.61999893188477,10.90999984741211,-9.49899959564209,-1.5140000581741333,44.69200134277344 -17397,2018-06-25 21:00:00,44.73199844360352,12.64900016784668,53.90599822998047,11.982000350952148,-9.477999687194824,0.0,43.8134994506836 -17398,2018-06-25 22:00:00,42.47000122070313,12.39799976348877,50.31399917602539,11.446000099182127,-7.046999931335449,0.0,42.91049957275391 -17399,2018-06-25 23:00:00,44.81600189208984,13.152000427246096,53.77199935913086,12.383999824523926,-8.944999694824219,0.0,42.47050094604492 -17400,2018-06-26 00:00:00,42.21900177001953,12.480999946594238,50.15399932861328,11.553000450134276,-8.048999786376951,0.0,42.2509994506836 -17401,2018-06-26 01:00:00,36.77399826049805,10.55500030517578,46.31999969482422,10.185999870300291,-9.425000190734863,0.0,41.811500549316406 -17402,2018-06-26 02:00:00,35.182998657226555,9.885000228881836,44.55099868774414,10.213000297546388,-9.425000190734863,-1.2899999618530271,40.93249893188477 -17403,2018-06-26 03:00:00,29.48600006103516,7.958000183105469,39.53799819946289,8.470999717712402,-9.425000190734863,-1.4709999561309814,40.49300003051758 -17404,2018-06-26 04:00:00,34.59600067138672,10.55500030517578,44.17599868774414,10.560999870300291,-9.48900032043457,-1.3220000267028809,40.05350112915039 -17405,2018-06-26 05:00:00,27.47599983215332,7.119999885559082,37.71599960327149,7.98799991607666,-9.541999816894531,-1.5779999494552612,39.61449813842773 -17406,2018-06-26 06:00:00,27.05699920654297,7.623000144958496,36.402000427246094,8.095000267028809,-9.020000457763672,0.0,39.61449813842773 -17407,2018-06-26 07:00:00,33.25600051879883,10.973999977111816,43.66699981689453,11.33899974822998,-10.3100004196167,-1.343000054359436,39.61449813842773 -17408,2018-06-26 08:00:00,32.08300018310547,10.38700008392334,44.229000091552734,11.579999923706056,-11.53600025177002,-1.375,41.15250015258789 -17409,2018-06-26 09:00:00,38.36600112915039,11.47599983215332,50.26100158691406,12.62600040435791,-11.53600025177002,-2.5910000801086426,42.69049835205078 -17410,2018-06-26 10:00:00,37.77899932861328,11.057000160217283,49.29600143432617,12.08899974822998,-11.53600025177002,-2.5910000801086426,44.448001861572266 -17411,2018-06-26 11:00:00,41.71599960327149,11.644000053405762,53.07500076293945,12.571999549865724,-11.53600025177002,-2.5910000801086426,46.64550018310547 -17412,2018-06-26 12:00:00,42.387001037597656,13.067999839782717,54.12099838256836,13.885000228881836,-11.57800006866455,-1.758999943733215,45.98649978637695 -17413,2018-06-26 13:00:00,44.900001525878906,12.062999725341797,55.24700164794922,12.170000076293944,-10.342000007629396,-1.758999943733215,46.865501403808594 -17414,2018-06-26 14:00:00,40.87900161743164,11.309000015258787,51.81600189208984,11.553000450134276,-10.342000007629396,-1.4609999656677246,47.084999084472656 -17415,2018-06-26 15:00:00,39.20299911499024,11.392000198364258,49.64400100708008,11.928999900817873,-10.331000328063965,-1.2580000162124634,47.084999084472656 -17416,2018-06-26 16:00:00,38.11399841308594,10.973999977111816,48.7599983215332,11.366000175476074,-10.331000328063965,-1.2899999618530271,48.18349838256836 -17417,2018-06-26 17:00:00,39.62200164794922,10.973999977111816,50.60900115966797,11.66100025177002,-11.557000160217283,-1.4179999828338623,48.18349838256836 -17418,2018-06-26 18:00:00,43.64300155639648,13.402999877929688,54.73699951171875,13.777999877929688,-10.298999786376951,-1.4179999828338623,46.865501403808594 -17419,2018-06-26 19:00:00,38.86800003051758,10.052000045776367,49.85900115966797,10.668999671936035,-11.524999618530272,-1.4179999828338623,45.98649978637695 diff --git a/services/finetuning/tests/data/ETTh2.csv.gz b/services/finetuning/tests/data/ETTh2.csv.gz deleted file mode 100644 index c1c696a1..00000000 Binary files a/services/finetuning/tests/data/ETTh2.csv.gz and /dev/null differ diff --git a/services/finetuning/tests/data/ETTh2.feather b/services/finetuning/tests/data/ETTh2.feather deleted file mode 100644 index 483b25f1..00000000 Binary files a/services/finetuning/tests/data/ETTh2.feather and /dev/null differ diff --git a/services/finetuning/tests/fetchdata.py b/services/finetuning/tests/fetchdata.py new file mode 100644 index 00000000..1f28ac9c --- /dev/null +++ b/services/finetuning/tests/fetchdata.py @@ -0,0 +1,44 @@ +"""Utilities used by test cases in this folder""" + +import json +import os + +import pandas as pd +import wget + + +def fetch_etth(): + if not os.path.exists("data/ETTH1.csv"): + dataset_path = "https://raw.githubusercontent.com/zhouhaoyi/ETDataset/main/ETT-small/ETTh1.csv" + os.makedirs("data", exist_ok=True) + dataset_path = wget.download(dataset_path, "data/ETTh1.csv") + timestamp_column = "date" + data = pd.read_csv( + dataset_path, + parse_dates=[timestamp_column], + ) + data.to_feather("data/ETTh1.feather") + data.to_csv("data/ETTh1.csv.gz", compression="gzip") + + +def fetch_finetune_json(): + """Doesn't really fetch, generates it from what fetch_etth""" + payload = { + "data": "file://./data/ETTh1.csv", + "model_id": "mytest-tsfm/ttm-r1", + "schema": { + "timestamp_column": "date", + "target_columns": ["HUFL", "HULL", "MUFL", "MULL", "LUFL", "LULL", "OT"], + }, + "parameters": { + "tune_prefix": "fine_tuned/", + "trainer_args": {"num_train_epochs": 1, "per_device_train_batch_size": 256}, + "fewshot_fraction": 0.05, + }, + } + json.dump(payload, open("data/ftpayload.json", "w")) + + +if __name__ == "__main__": + fetch_etth() + fetch_finetune_json() diff --git a/services/finetuning/tests/test_finetune_libcode.py b/services/finetuning/tests/test_finetune_libcode.py index 92dff822..ddaa8fbe 100644 --- a/services/finetuning/tests/test_finetune_libcode.py +++ b/services/finetuning/tests/test_finetune_libcode.py @@ -12,7 +12,7 @@ PAYLOADS = [ { "data": "file://./path/to/pandas.csv/or/pandas.feather/or/pandas.csv.gz", - "model_id": "ibm/test-ttm-v1", + "model_id": "mytest-tsfm/ttm-r1", "schema": { "timestamp_column": "date", "target_columns": ["HUFL", "HULL", "MUFL", "MULL", "LUFL", "LULL", "OT"], @@ -26,7 +26,9 @@ ] file_data_uris = [ - "file://./tests/data/ETTh2.feather", + "file://./data/ETTh1.feather", + "file://./data/ETTh1.csv", + "file://./data/ETTh1.csv.gz", ] diff --git a/services/finetuning/tests/test_ftmain.py b/services/finetuning/tests/test_ftmain.py new file mode 100644 index 00000000..56e776db --- /dev/null +++ b/services/finetuning/tests/test_ftmain.py @@ -0,0 +1,55 @@ +import pathlib +import subprocess +import sys +import tempfile +from subprocess import CompletedProcess + + +def test_ftmain_good_input(): + with tempfile.TemporaryDirectory() as target_dir: + model_name = "afinetuned_model" + args = [ + "python", + "tsfmfinetuning/ftmain.py", + "--payload", + "./data/ftpayload.json", + "--target_dir", + target_dir, + "--model_name", + model_name, + "--config_file", + "tsfmfinetuning/default_config.yml", + "--model_arch", + "ttm", + "--task_type", + "forecasting", + ] + + other_popen_kwargs = {} + cp: CompletedProcess = subprocess.run( + args, + stdin=None, + input=None, + capture_output=True, + text=True, + shell=False, + cwd=None, + timeout=None, + check=False, + encoding=None, + errors=None, + env=None, + universal_newlines=None, + **other_popen_kwargs, + ) + + print(cp.stdout) + print(cp.stderr) + sys.stdout.flush() + assert cp.returncode == 0 + tdir = pathlib.Path(target_dir) / model_name + assert (tdir / "config.json").exists() and (tdir / "config.json").stat().st_size > 0 + + # make sure our tracking log exists + logfile = pathlib.Path(target_dir) / "output" / "training_logs.jsonl" + assert logfile.exists() and logfile.stat().st_size > 0 diff --git a/services/finetuning/tests/test_ioutils.py b/services/finetuning/tests/test_ioutils.py index d1290f9c..a4f27567 100644 --- a/services/finetuning/tests/test_ioutils.py +++ b/services/finetuning/tests/test_ioutils.py @@ -9,8 +9,8 @@ def test_to_pandas_with_feather_content_from_filesystem(): - df = pd.read_feather("tests/data/ETTh2.feather") - df2 = to_pandas(uri="file://./tests/data/ETTh2.feather") + df = pd.read_feather("data/ETTh1.feather") + df2 = to_pandas(uri="file://./data/ETTh1.feather") assert isinstance(df2.dtypes["date"], np.dtypes.DateTime64DType) assert df.equals(df2) @@ -19,9 +19,9 @@ def test_to_pandas_with_unsupported_uri(): with pytest.raises(NotImplementedError) as _: to_pandas("https://foobaz/fizbot.csv") with pytest.raises(NotImplementedError) as _: - to_pandas("s3a://tsfm-services/ETTh2.feather") + to_pandas("s3a://tsfm-services/ETTh1.feather") with pytest.raises(NotImplementedError) as _: - to_pandas("http://tsfm-services/ETTh2.feather") + to_pandas("http://tsfm-services/ETTh1.feather") def test_to_pandas_with_bad_binary_content(): @@ -40,7 +40,7 @@ def test_to_pandas_with_base64_feathered_content(): def test_to_pandas_with_compressed_csv_from_filesystem(): - df2 = to_pandas(uri="file://./tests/data/ETTh2.csv.gz", timestamp_column="date") + df2 = to_pandas(uri="file://./data/ETTh1.csv.gz", timestamp_column="date") assert isinstance(df2.dtypes["date"], np.dtypes.DateTime64DType) diff --git a/services/finetuning/tsfmfinetuning/error_logging.py b/services/finetuning/tsfmfinetuning/error_logging.py new file mode 100644 index 00000000..abdcc20d --- /dev/null +++ b/services/finetuning/tsfmfinetuning/error_logging.py @@ -0,0 +1,17 @@ +import logging +import os + + +def write_termination_log(text, log_file="error.log"): + """Writes text to termination log. + + Args: + text: str + log_file: Optional[str] + """ + log_file = os.environ.get("TERMINATION_LOG_FILE", log_file) + try: + with open(log_file, "a", encoding="utf-8") as handle: + handle.write(text) + except Exception as e: # pylint: disable=broad-except + logging.warning("Unable to write termination log due to error {}".format(e)) diff --git a/services/finetuning/tsfmfinetuning/filelogging_tracker.py b/services/finetuning/tsfmfinetuning/filelogging_tracker.py new file mode 100644 index 00000000..6cc729b3 --- /dev/null +++ b/services/finetuning/tsfmfinetuning/filelogging_tracker.py @@ -0,0 +1,52 @@ +# Copyright contributors to the TSFM project +# + +# Standard +import json +import os +from datetime import datetime + +# Third Party +from transformers import TrainerCallback + + +class FileLoggingCallback(TrainerCallback): + """Exports metrics, e.g., training loss to a file in the checkpoint directory.""" + + def __init__(self, logs_filename): + self.training_logs_filename = logs_filename + + def on_log(self, args, state, control, logs=None, **kwargs): + """Checks if this log contains keys of interest, e.g., loss, and if so, creates + training_logs.jsonl in the model output dir (if it doesn't already exist), + appends the subdict of the log & dumps the file. + """ + # All processes get the logs from this node; only update from process 0. + if not state.is_world_process_zero: + return + + log_file_path = os.path.join(args.output_dir, self.training_logs_filename) + if logs is not None and "loss" in logs and "epoch" in logs: + self._track_loss("loss", "training_loss", log_file_path, logs, state) + elif logs is not None and "eval_loss" in logs and "epoch" in logs: + self._track_loss("eval_loss", "validation_loss", log_file_path, logs, state) + + def _track_loss(self, loss_key, log_name, log_file, logs, state): + try: + # Take the subdict of the last log line; if any log_keys aren't part of this log + # object, assume this line is something else, e.g., train completion, and skip. + log_obj = { + "name": log_name, + "data": { + "epoch": round(logs["epoch"], 2), + "step": state.global_step, + "value": logs[loss_key], + "timestamp": datetime.isoformat(datetime.now()), + }, + } + except KeyError: + return + + # append the current log to the jsonl file + with open(log_file, "a", encoding="utf-8") as f: + f.write(f"{json.dumps(log_obj, sort_keys=True)}\n") diff --git a/services/finetuning/tsfmfinetuning/finetuning.py b/services/finetuning/tsfmfinetuning/finetuning.py index 4b63e7d5..fcee3e64 100644 --- a/services/finetuning/tsfmfinetuning/finetuning.py +++ b/services/finetuning/tsfmfinetuning/finetuning.py @@ -3,6 +3,7 @@ """Tsfmfinetuning Runtime""" import logging +import os from pathlib import Path from typing import Any, Dict, Tuple, Union @@ -18,6 +19,7 @@ from . import TSFM_ALLOW_LOAD_FROM_HF_HUB from .constants import API_VERSION +from .filelogging_tracker import FileLoggingCallback from .ftpayloads import ( AsyncCallReturn, BaseTuneInput, @@ -204,7 +206,7 @@ def _finetuning_common( overwrite_output_dir=True, learning_rate=parameters.trainer_args.learning_rate, num_train_epochs=parameters.trainer_args.num_train_epochs, - evaluation_strategy="epoch", + eval_strategy="epoch", per_device_train_batch_size=parameters.trainer_args.per_device_train_batch_size, per_device_eval_batch_size=parameters.trainer_args.per_device_eval_batch_size, dataloader_num_workers=4, @@ -219,7 +221,9 @@ def _finetuning_common( use_cpu=not torch.cuda.is_available(), ) - callbacks = [] + callbacks = [ + FileLoggingCallback(logs_filename=os.environ.get("TSFM_TRAINING_TRACKER_LOGFILE", "training_logs.jsonl")) + ] if parameters.trainer_args.early_stopping and validation_dataset: # Create the early stopping callback early_stopping_callback = EarlyStoppingCallback( diff --git a/services/finetuning/tsfmfinetuning/ftmainwxai.py b/services/finetuning/tsfmfinetuning/ftargs.py similarity index 57% rename from services/finetuning/tsfmfinetuning/ftmainwxai.py rename to services/finetuning/tsfmfinetuning/ftargs.py index 6a5f6dab..5b12e7d5 100644 --- a/services/finetuning/tsfmfinetuning/ftmainwxai.py +++ b/services/finetuning/tsfmfinetuning/ftargs.py @@ -1,18 +1,9 @@ -# Standard import argparse -import json import tempfile from pathlib import Path -import yaml -from tsfmfinetuning import TSFM_CONFIG_FILE -from tsfmfinetuning.finetuning import FinetuningRuntime -from tsfmfinetuning.ftpayloads import TinyTimeMixerForecastingTuneInput - - -# remote container space -def main(): +def argparser(): parser = argparse.ArgumentParser() # ################Input data @@ -64,26 +55,4 @@ def main(): choices=task_choices, help=f"""The base model architecture. The following are currently supported: {",".join(task_choices)}""", ) - - # ###########################3 - args, _ = parser.parse_known_args() - - # reconstruct our input object - # these come from a mutually exclusive group - payload: dict = json.loads(args.json_payload) - # this will give us param validation - - if args.model_arch_type == "ttm" and args.model_task_choices == "forecasting": - input: TinyTimeMixerForecastingTuneInput = TinyTimeMixerForecastingTuneInput(**payload) - config_file = args.config_file if args.config_file else TSFM_CONFIG_FILE - with open(config_file, "r") as file: - config = yaml.safe_load(file) - ftr: FinetuningRuntime = FinetuningRuntime(config=config) - ftr.finetuning(input=input, tuned_model_name=args.model_name, output_dir=args.target_dir) - - else: - raise NotImplementedError(f"model arch/task type not implemented {args.model_arch_type} {args.task_type}") - - -if __name__ == "__main__": - main() + return parser diff --git a/services/finetuning/tsfmfinetuning/ftmain.py b/services/finetuning/tsfmfinetuning/ftmain.py new file mode 100644 index 00000000..d90e64d5 --- /dev/null +++ b/services/finetuning/tsfmfinetuning/ftmain.py @@ -0,0 +1,43 @@ +# Standard +import json +import traceback + +import yaml + +from tsfmfinetuning import TSFM_CONFIG_FILE +from tsfmfinetuning.error_logging import write_termination_log +from tsfmfinetuning.finetuning import FinetuningRuntime +from tsfmfinetuning.ftargs import argparser +from tsfmfinetuning.ftpayloads import TinyTimeMixerForecastingTuneInput + + +# remote container space +def main() -> int: + # ###########################3 + args, _ = argparser().parse_known_args() + + # reconstruct our input object + # these come from a mutually exclusive group + payload: dict = json.load(open(args.payload, "r")) + # this will give us param validation + + if args.model_arch == "ttm" and args.task_type == "forecasting": + input: TinyTimeMixerForecastingTuneInput = TinyTimeMixerForecastingTuneInput(**payload) + config_file = args.config_file if args.config_file else TSFM_CONFIG_FILE + with open(config_file, "r") as file: + config = yaml.safe_load(file) + ftr: FinetuningRuntime = FinetuningRuntime(config=config) + ftr.finetuning(input=input, tuned_model_name=args.model_name, output_dir=args.target_dir) + return 0 + + else: + raise NotImplementedError(f"model arch/task type not implemented {args.model_arch_type} {args.task_type}") + + +if __name__ == "__main__": + try: + exit(main()) + except Exception as e: + traceback.print_exception(e) + write_termination_log(f"Exception when running finetuning {e}") + exit(1) diff --git a/services/finetuning/tsfmfinetuning/ftservice.py b/services/finetuning/tsfmfinetuning/ftservice.py deleted file mode 100644 index 206cb662..00000000 --- a/services/finetuning/tsfmfinetuning/ftservice.py +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright contributors to the TSFM project -# -"""Primary entry point for finetuning services""" - -import logging - -import starlette.status as status -import yaml -from fastapi import FastAPI -from fastapi.responses import RedirectResponse - -from . import ( - TSFM_CONFIG_FILE, - TSFM_PYTHON_LOGGING_FORMAT, - TSFM_PYTHON_LOGGING_LEVEL, -) -from .constants import API_VERSION -from .finetuning import FinetuningRuntime - - -logging.basicConfig( - format=TSFM_PYTHON_LOGGING_FORMAT, - level=TSFM_PYTHON_LOGGING_LEVEL, -) - - -if TSFM_CONFIG_FILE: - with open(TSFM_CONFIG_FILE, "r") as file: - config = yaml.safe_load(file) -else: - config = {} - - -app = FastAPI( - title="FM for Time Series API", - version=API_VERSION, - description="This FastAPI application provides service endpoints for performing finetuning tasks on TSFM HF models.", -) -ir = FinetuningRuntime(config=config) -ir.add_routes(app) - - -@app.get("/") -def root(): - return RedirectResponse(url="/docs", status_code=status.HTTP_302_FOUND) - - -if __name__ == "__main__": - # Third Party - import uvicorn - - # Run the FastAPI application on the local host and port 7860 - # CMD["uvicorn", "app:app", "--host", "127.0.0.1", "--port", "7860", "--reload"] - uvicorn.run(app, host="127.0.0.1", port=8000) diff --git a/services/inference/README.md b/services/inference/README.md index e4cdec65..bd2aacfe 100644 --- a/services/inference/README.md +++ b/services/inference/README.md @@ -1,34 +1,28 @@ # TSFM Inference Services -The TSFM Inference Services component provides a runtime for inference related tasks for the tsfm-granite class of +The TSFM Inference Services component provides a runtime for inference related tasks for the tsfm-granite class of timeseries foundation models. At present it provide inference endpoints for the following models: -* https://huggingface.co/ibm-granite/granite-timeseries-ttm-v1 -* https://huggingface.co/ibm-granite/granite-timeseries-patchtst -* https://huggingface.co/ibm-granite/granite-timeseries-patchtsmixer - -## Limitations +- https://huggingface.co/ibm-granite/granite-timeseries-ttm-v1 +- https://huggingface.co/ibm-granite/granite-timeseries-patchtst +- https://huggingface.co/ibm-granite/granite-timeseries-patchtsmixer -* At present the API includes only a forecasting endpoint. Other task-based endpoints such as regression and classification are in the works. -* The primary target environment is x86_64 Linux. -You may encounter hiccups if you try to use this on a different environment. If so, please file an issue. Many of our developers do use a Mac and run all tests not involving building containers locally so you're likely to find a quick resolution. None of our developers use native Windows, however, and we do not plan on supporting that environment. Windows users are advised to use Microsoft's excellent WSL2 implementation which provides a native Linux environment running under Windows without the overheads of virtualization. +## Limitations +- At present the API includes only a forecasting endpoint. Other task-based endpoints such as regression and classification are in the works. +- The primary target environment is x86_64 Linux. + You may encounter hiccups if you try to use this on a different environment. If so, please file an issue. Many of our developers do use a Mac and run all tests not involving building containers locally so you're likely to find a quick resolution. None of our developers use native Windows, however, and we do not plan on supporting that environment. Windows users are advised to use Microsoft's excellent WSL2 implementation which provides a native Linux environment running under Windows without the overheads of virtualization. ## Prerequisites: -* GNU make -* python >=3.10, <3.13 -* poetry (`pip install poetry`) -* zsh or bash -* (optional) docker or podman -* (optional) kubectl if you plan on testing kubernetes-based deployments - -## Known issues: - -* Use of pkill statements in Makefile may not work properly on Mac OS. This will - be apparent if you have left over processs after running test related make - targets. Please help us put OS-specific checks into our Makefile to handle - these cases by filing a PR. +- GNU make +- git +- git-lfs +- python >=3.10, <3.13 +- poetry (`pip install poetry`) +- zsh or bash +- (optional) docker or podman +- (optional) kubectl if you plan on testing kubernetes-based deployments ## Installation @@ -45,14 +39,14 @@ make test_local ### Building an image You must have either docker or podman installed on your system for this to -work. You must also have proper permissions on your system to build images. We assume you have a working docker command which can be docker itself +work. You must also have proper permissions on your system to build images. We assume you have a working docker command which can be docker itself or `podman` that has been aliased as `docker` or has been installed with the podman-docker package that will do this for you. ```bash make image ``` -After a successful build you should have a local image named +After a successful build you should have a local image named `tsfminference:latest` ```sh @@ -92,22 +86,23 @@ a lightweight way of running a local kubernetes cluster using docker. First: -* [Install kubectl](https://kubernetes.io/docs/tasks/tools/) -* [Install kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) -* [Install helm](https://helm.sh/docs/intro/install/) -* If you are using podman, you will need to enable the use of an insecure (using http instead of https) -local container registry by creating a file called `/etc/containers/registries.conf.d/localhost.conf` -with the following content: +- [Install kubectl](https://kubernetes.io/docs/tasks/tools/) +- [Install kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) +- [Install helm](https://helm.sh/docs/intro/install/) +- If you are using podman, you will need to enable the use of an insecure (using http instead of https) + local container registry by creating a file called `/etc/containers/registries.conf.d/localhost.conf` + with the following content: ``` [[registry]] location = "localhost:5001" insecure = true ``` -* If you're using podman, you may run into issues running the kserve container due to -open file (nofile) limits. If so, -see https://github.com/containers/common/blob/main/docs/containers.conf.5.md -for instructions on how to increase the default limits. + +- If you're using podman, you may run into issues running the kserve container due to + open file (nofile) limits. If so, + see https://github.com/containers/common/blob/main/docs/containers.conf.5.md + for instructions on how to increase the default limits. Now install a kind control plane with a local docker registry: @@ -116,11 +111,11 @@ curl -s https://kind.sigs.k8s.io/examples/kind-with-registry.sh | bash Creating cluster "kind" ... ✓ Ensuring node image (kindest/node:v1.29.2) đŸ–ŧ - ✓ Preparing nodes đŸ“Ļ - ✓ Writing configuration 📜 - ✓ Starting control-plane 🕹ī¸ - ✓ Installing CNI 🔌 - ✓ Installing StorageClass 💾 + ✓ Preparing nodes đŸ“Ļ + ✓ Writing configuration 📜 + ✓ Starting control-plane 🕹ī¸ + ✓ Installing CNI 🔌 + ✓ Installing StorageClass 💾 Set kubectl context to "kind-kind" You can now use your cluster with: @@ -141,7 +136,7 @@ docker tag tsfminference:latest localhost:5001/tsfminference:latest Confirm that `kubectl` is using the local cluster as its context ```bash -kubectl config current-context +kubectl config current-context kind-kind ``` @@ -152,10 +147,10 @@ curl -s https://raw.githubusercontent.com/kserve/kserve/master/hack/quick_instal bash ./quick_install.sh -r ``` -This will take a minute or so to complete because a number of kserve-related containers +This will take a minute or so to complete because a number of kserve-related containers need to be pulled and started. The script may fail the first time around (you can run it multiple times without harm) because some containers might still be in the pull or starting state. You can confirm that all of kserve's containers have started properly by doing (you may see some additional cointainers listed that are part of kind's internal services). -You know you have a successful install when you finally see (it might take two +You know you have a successful install when you finally see (it might take two or more tries): ```bash @@ -163,6 +158,7 @@ or more tries): clusterstoragecontainer.serving.kserve.io/default created 😀 Successfully installed KServe ``` + ### Deploy the tsfm kserve service Save the folling yaml snippet to a file called tsfm.yaml. @@ -195,7 +191,7 @@ kubectl apply -f tsfm.yaml Confirm that the service is running: ```bash -kubectl get inferenceservices.serving.kserve.io tsfminferenceserver +kubectl get inferenceservices.serving.kserve.io tsfminferenceserver NAME URL READY PREV LATEST PREVROLLEDOUTREVISION LATESTREADYREVISION AGE tsfminferenceserver http://tsfminferenceserver-kserve-test.example.com True 25m @@ -205,7 +201,7 @@ Create a port forward for the predictor pod: ```bash # your pod identifier suffix will be different -kubectl port-forward pods/tsfminferenceserver-predictor-7dcd6ff5d5-8f726 8000:8000 +kubectl port-forward pods/tsfminferenceserver-predictor-7dcd6ff5d5-8f726 8000:8000 ``` Run the unit tests: