diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..858f024 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,25 @@ +# Multi-stage +# 1) Node image for building frontend assets +# 2) nginx stage to serve frontend assets + +# Name the node stage "builder" +FROM node:16 AS builder +# Set working directory +WORKDIR /app +# Copy all files from current directory to working dir in image +COPY . . +# install node modules and build assets +RUN npm install && npm run build + +# nginx state for serving content +FROM nginx:alpine +# Set working directory to nginx asset directory +WORKDIR /usr/share/nginx/html +# Remove default nginx static assets +RUN rm -rf ./* +# Copy static assets from builder stage +COPY --from=builder /app/dist . +# Add a custom nginx configuration that handles URL rewrites +COPY nginx.conf /etc/nginx/conf.d/default.conf +# Containers run nginx with global directives and daemon off +ENTRYPOINT ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..497dbbb --- /dev/null +++ b/nginx.conf @@ -0,0 +1,10 @@ +server { + listen 80; + server_name localhost; + + location / { + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index bd0a362..6386553 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "@turf/turf": "^6.3.0", "@vue/composition-api": "^1.0.0-rc.7", "core-js": "^3.6.5", - "echarts": "^5.1.0", + "echarts": "^5.4.3", "file-saver": "^2.0.5", "mapbox-gl": "^2.15.0", "marked": "^2.0.3", @@ -23,13 +23,13 @@ "register-service-worker": "^1.7.1", "tiny-cookie": "^2.3.2", "vue": "^2.6.11", - "vue-echarts": "^6.0.0-rc.4", + "vue-echarts": "^6.6.1", "vue-gtag": "^1.16.1", "vue-router": "^3.2.0", "vue-tour": "^2.0.0", "vue2mapbox-gl": "^0.15.0", "vuelidate": "^0.7.6", - "vuetify": "^2.4.0", + "vuetify": "^2.7.1", "vuex": "^3.4.0", "zarr": "^0.5.1", "zarr-js": "^2.2.1" @@ -4433,21 +4433,13 @@ "dev": true }, "node_modules/@vue/composition-api": { - "version": "1.0.0-rc.7", - "resolved": "https://registry.npmjs.org/@vue/composition-api/-/composition-api-1.0.0-rc.7.tgz", - "integrity": "sha512-aj/lWD+9dmJ+r9qkbASByqlphkbwvZ8q1T7yC5H1leWSdtxfWg7tDR98vZEKzjikRSztwC7xrtrLwOnt8glQDA==", - "dependencies": { - "tslib": "^2.2.0" - }, + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@vue/composition-api/-/composition-api-1.7.2.tgz", + "integrity": "sha512-M8jm9J/laYrYT02665HkZ5l2fWTK4dcVg3BsDHm/pfz+MjDYwX+9FUaZyGwEyXEDonQYRCo0H7aLgdklcIELjw==", "peerDependencies": { - "vue": ">= 2.5 < 3" + "vue": ">= 2.5 < 2.7" } }, - "node_modules/@vue/composition-api/node_modules/tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - }, "node_modules/@vue/eslint-config-prettier": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-6.0.0.tgz", @@ -9027,18 +9019,18 @@ } }, "node_modules/echarts": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.1.0.tgz", - "integrity": "sha512-/X2nnN5BXW2tuA/Hv9YY279rDfwcXaBAjK9Azi//llshbKyUXXxBknsug21GJRpwTmLZbE8rjjbhchdm01bZtw==", + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.4.3.tgz", + "integrity": "sha512-mYKxLxhzy6zyTi/FaEbJMOZU1ULGEQHaeIeuMR5L+JnJTpz+YR03mnnpBhbR4+UYJAgiXgpyTVLffPAjOTLkZA==", "dependencies": { - "tslib": "2.0.3", - "zrender": "5.1.0" + "tslib": "2.3.0", + "zrender": "5.4.4" } }, "node_modules/echarts/node_modules/tslib": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", - "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" }, "node_modules/editorconfig": { "version": "0.15.3", @@ -21599,20 +21591,23 @@ "dev": true }, "node_modules/vue-demi": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.7.5.tgz", - "integrity": "sha512-eFSQSvbQdY7C9ujOzvM6tn7XxwLjn0VQDXQsiYBLBwf28Na+2nTQR4BBBcomhmdP6mmHlBKAwarq6a0BPG87hQ==", + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", + "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", "vue-demi-switch": "bin/vue-demi-switch.js" }, + "engines": { + "node": ">=12" + }, "funding": { "url": "https://github.com/sponsors/antfu" }, "peerDependencies": { - "@vue/composition-api": "^1.0.0-beta.1", - "vue": "^2.6.0 || >=3.0.0-rc.1" + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" }, "peerDependenciesMeta": { "@vue/composition-api": { @@ -21621,18 +21616,18 @@ } }, "node_modules/vue-echarts": { - "version": "6.0.0-rc.4", - "resolved": "https://registry.npmjs.org/vue-echarts/-/vue-echarts-6.0.0-rc.4.tgz", - "integrity": "sha512-kkpBkAFIh7aHw2/0FEm9UktQ16LDP5EmATaCqq+CtnSKzd+vuZI6UxrfTLnOQNMCR5eKX8FoonggoKHpcjNGQg==", + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/vue-echarts/-/vue-echarts-6.6.1.tgz", + "integrity": "sha512-EpreTzlNeJ+eaUn0AhXEmKJk98xJGecgTqAdyZovoXWnhTxnlW2HuBM0ei3y8rLw1JCUabf8/sYvxjlr8SzBKQ==", "hasInstallScript": true, "dependencies": { "resize-detector": "^0.3.0", - "vue-demi": "^0.7.4" + "vue-demi": "^0.13.11" }, "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.2", - "echarts": "^5.0.2", - "vue": "^2.6.12 || ^3.0.0" + "@vue/composition-api": "^1.0.5", + "echarts": "^5.4.1", + "vue": "^2.6.12 || ^3.1.1" }, "peerDependenciesMeta": { "@vue/composition-api": { @@ -21991,9 +21986,9 @@ } }, "node_modules/vuetify": { - "version": "2.4.9", - "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-2.4.9.tgz", - "integrity": "sha512-IS+ZKCk4+RhN8PW9mw6dLSGy0hnFZ0YwOg0Ga+sr9bngbSOI6nw0p+Y/U00vRw8DPScqUmK5cSrI8RhiaTpXow==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-2.7.1.tgz", + "integrity": "sha512-DVFmRsDtYrITw9yuGLwpFWngFYzEgk0KwloDCIV3+vhZw+NBFJOSzdbttbYmOwtqvQlhDxUyIRQolrRbSFAKlg==", "funding": { "type": "github", "url": "https://github.com/sponsors/johnleider" @@ -23397,17 +23392,17 @@ } }, "node_modules/zrender": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.1.0.tgz", - "integrity": "sha512-c+8VRx52ycbmqwHeHLlo/BAfIHBl/JZNLM6cfDQFgzIH05yb+f5J9F/fbRsP+zGc8dW9XHuhdt8/iqukgMZSeg==", + "version": "5.4.4", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.4.4.tgz", + "integrity": "sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==", "dependencies": { - "tslib": "2.0.3" + "tslib": "2.3.0" } }, "node_modules/zrender/node_modules/tslib": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", - "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" } }, "dependencies": { @@ -27248,19 +27243,10 @@ } }, "@vue/composition-api": { - "version": "1.0.0-rc.7", - "resolved": "https://registry.npmjs.org/@vue/composition-api/-/composition-api-1.0.0-rc.7.tgz", - "integrity": "sha512-aj/lWD+9dmJ+r9qkbASByqlphkbwvZ8q1T7yC5H1leWSdtxfWg7tDR98vZEKzjikRSztwC7xrtrLwOnt8glQDA==", - "requires": { - "tslib": "^2.2.0" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } - } + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@vue/composition-api/-/composition-api-1.7.2.tgz", + "integrity": "sha512-M8jm9J/laYrYT02665HkZ5l2fWTK4dcVg3BsDHm/pfz+MjDYwX+9FUaZyGwEyXEDonQYRCo0H7aLgdklcIELjw==", + "requires": {} }, "@vue/eslint-config-prettier": { "version": "6.0.0", @@ -31022,18 +31008,18 @@ } }, "echarts": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.1.0.tgz", - "integrity": "sha512-/X2nnN5BXW2tuA/Hv9YY279rDfwcXaBAjK9Azi//llshbKyUXXxBknsug21GJRpwTmLZbE8rjjbhchdm01bZtw==", + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.4.3.tgz", + "integrity": "sha512-mYKxLxhzy6zyTi/FaEbJMOZU1ULGEQHaeIeuMR5L+JnJTpz+YR03mnnpBhbR4+UYJAgiXgpyTVLffPAjOTLkZA==", "requires": { - "tslib": "2.0.3", - "zrender": "5.1.0" + "tslib": "2.3.0", + "zrender": "5.4.4" }, "dependencies": { "tslib": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", - "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" } } }, @@ -41109,18 +41095,18 @@ } }, "vue-demi": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.7.5.tgz", - "integrity": "sha512-eFSQSvbQdY7C9ujOzvM6tn7XxwLjn0VQDXQsiYBLBwf28Na+2nTQR4BBBcomhmdP6mmHlBKAwarq6a0BPG87hQ==", + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", + "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", "requires": {} }, "vue-echarts": { - "version": "6.0.0-rc.4", - "resolved": "https://registry.npmjs.org/vue-echarts/-/vue-echarts-6.0.0-rc.4.tgz", - "integrity": "sha512-kkpBkAFIh7aHw2/0FEm9UktQ16LDP5EmATaCqq+CtnSKzd+vuZI6UxrfTLnOQNMCR5eKX8FoonggoKHpcjNGQg==", + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/vue-echarts/-/vue-echarts-6.6.1.tgz", + "integrity": "sha512-EpreTzlNeJ+eaUn0AhXEmKJk98xJGecgTqAdyZovoXWnhTxnlW2HuBM0ei3y8rLw1JCUabf8/sYvxjlr8SzBKQ==", "requires": { "resize-detector": "^0.3.0", - "vue-demi": "^0.7.4" + "vue-demi": "^0.13.11" } }, "vue-eslint-parser": { @@ -41405,9 +41391,9 @@ "integrity": "sha512-suzIuet1jGcyZ4oUSW8J27R2tNrJ9cIfklAh63EbAkFjE380iv97BAiIeolRYoB9bF9usBXCu4BxftWN1Dkn3g==" }, "vuetify": { - "version": "2.4.9", - "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-2.4.9.tgz", - "integrity": "sha512-IS+ZKCk4+RhN8PW9mw6dLSGy0hnFZ0YwOg0Ga+sr9bngbSOI6nw0p+Y/U00vRw8DPScqUmK5cSrI8RhiaTpXow==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-2.7.1.tgz", + "integrity": "sha512-DVFmRsDtYrITw9yuGLwpFWngFYzEgk0KwloDCIV3+vhZw+NBFJOSzdbttbYmOwtqvQlhDxUyIRQolrRbSFAKlg==", "requires": {} }, "vuetify-loader": { @@ -42577,17 +42563,17 @@ } }, "zrender": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.1.0.tgz", - "integrity": "sha512-c+8VRx52ycbmqwHeHLlo/BAfIHBl/JZNLM6cfDQFgzIH05yb+f5J9F/fbRsP+zGc8dW9XHuhdt8/iqukgMZSeg==", + "version": "5.4.4", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.4.4.tgz", + "integrity": "sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==", "requires": { - "tslib": "2.0.3" + "tslib": "2.3.0" }, "dependencies": { "tslib": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", - "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" } } } diff --git a/package.json b/package.json index 0d457d4..848ab78 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "@turf/turf": "^6.3.0", "@vue/composition-api": "^1.0.0-rc.7", "core-js": "^3.6.5", - "echarts": "^5.1.0", + "echarts": "^5.4.3", "file-saver": "^2.0.5", "mapbox-gl": "^2.15.0", "marked": "^2.0.3", @@ -25,13 +25,13 @@ "register-service-worker": "^1.7.1", "tiny-cookie": "^2.3.2", "vue": "^2.6.11", - "vue-echarts": "^6.0.0-rc.4", + "vue-echarts": "^6.6.1", "vue-gtag": "^1.16.1", "vue-router": "^3.2.0", "vue-tour": "^2.0.0", "vue2mapbox-gl": "^0.15.0", "vuelidate": "^0.7.6", - "vuetify": "^2.4.0", + "vuetify": "^2.7.1", "vuex": "^3.4.0", "zarr": "^0.5.1", "zarr-js": "^2.2.1" diff --git a/public/static/data/HS-MWD.json b/public/static/data/HS-MWD.json new file mode 100644 index 0000000..235b991 --- /dev/null +++ b/public/static/data/HS-MWD.json @@ -0,0 +1,5800 @@ +{ + "All year": { + "graph": [ + { + "Hs": 5.332, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 11.845, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 3.516, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 1.123, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.367, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.107, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.028, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0.011, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0.002, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0.001, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 3.67, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 5.559, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 1.312, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.375, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.096, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0.02, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0.004, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 2.162, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 3.438, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 1.075, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.208, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0.023, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.159, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 1.754, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.471, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.056, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0.003, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 1.719, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 3.995, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 2.152, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.899, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.245, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0.053, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0.004, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0.002, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 2.903, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 7.698, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 4.575, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 1.883, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.349, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.044, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0.002, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 2.2, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 5.798, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 3.259, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 1.386, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.398, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.076, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0.009, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0.001, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 3.442, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 7.765, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 3.356, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 1.391, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.508, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.141, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0.028, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0.001, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "Hs" + }, + "January": { + "graph": [ + { + "Hs": 1.317, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 7.979, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 4.167, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 1.784, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.773, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.29, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.089, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0.024, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 1.613, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 3.919, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 1.668, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.742, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.257, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0.006, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 0.981, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 2.917, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 1.924, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.556, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0.037, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 0.678, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 1.766, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.675, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.079, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 0.874, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 4.622, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 3.583, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 1.808, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.62, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0.137, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 0.987, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 5.92, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 7.674, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 4.264, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.819, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.171, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0.006, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0.003, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 0.99, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 5.269, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 6.244, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 3.632, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 1.161, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.324, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0.024, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0.015, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 1.647, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 6.54, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 4.084, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 2.578, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 1.142, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.516, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0.098, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0.006, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [5, 10, 15, 20], + "parameter": "Hs" + }, + "February": { + "graph": [ + { + "Hs": 2.648, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 7.489, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 3.754, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 0.908, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.439, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.258, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.06, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0.05, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0.013, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 2.075, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 6.828, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 2.494, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.885, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.265, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0.225, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0.05, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 1.549, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 4.659, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 2.233, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.714, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0.057, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 0.922, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 2.078, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.53, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.054, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 1.281, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 4.22, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 2.96, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 1.247, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.499, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0.161, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0.023, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 0.935, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 5.621, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 5.923, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 3.707, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.677, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.124, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0.007, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 0.965, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 4.867, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 4.854, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 2.581, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.744, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.228, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0.06, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 2.092, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 7.281, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 4.415, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 1.995, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.918, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.288, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0.087, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [5, 10, 15, 20], + "parameter": "Hs" + }, + "March": { + "graph": [ + { + "Hs": 3.534, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 11.449, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 3.278, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 1.216, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.305, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.046, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.003, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 2.645, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 7.228, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 2.355, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.632, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.208, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0.012, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 1.815, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 4.038, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 1.262, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.321, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0.128, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.216, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 2.49, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.577, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.018, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 1.069, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 4.005, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 1.726, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.813, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.25, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0.046, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 1.698, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 6.65, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 4.936, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 1.647, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.299, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.064, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 1.61, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 5.819, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 4.539, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 1.958, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.428, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.043, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 2.306, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 8.388, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 4.332, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 1.879, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.672, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.046, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [5, 10, 15, 20], + "parameter": "Hs" + }, + "April": { + "graph": [ + { + "Hs": 6.37, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 16.569, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 4.353, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 1.212, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.42, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.148, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.076, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0.013, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 4.492, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 10.167, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 2.039, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.379, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.114, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 2.667, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 3.747, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 0.773, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.452, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 1.739, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.12, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 1.847, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 3.715, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 1.313, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.417, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.069, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 2.983, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 6.411, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 2.131, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 0.221, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.013, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 1.641, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 4.725, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 1.739, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 0.186, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.003, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 3.857, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 8.153, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 2.61, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 0.871, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.177, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.066, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [8, 16, 24, 32], + "parameter": "Hs" + }, + "May": { + "graph": [ + { + "Hs": 8.801, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 17.146, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 3.531, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 0.8, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.027, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 5.838, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 9.897, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 1.478, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 3.455, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 3.785, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 0.81, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.118, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 0.999, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.058, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 1.924, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 4.096, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 1.222, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.192, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.003, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 3.324, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 8.709, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 2.474, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 0.263, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.012, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 3.073, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 4.793, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 0.751, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 0.027, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 3.675, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 6.137, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 1.365, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 0.208, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.006, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [8, 16, 24, 32], + "parameter": "Hs" + }, + "June": { + "graph": [ + { + "Hs": 11.673, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 18.27, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 2.847, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 0.328, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.123, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.016, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 6.657, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 5.414, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 0.306, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.013, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 2.219, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 2.061, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 0.009, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.212, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 0.909, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.009, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 2.197, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 2.677, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 0.549, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.095, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.013, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 5.262, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 8.545, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 1.828, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 0.335, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.022, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 3.69, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 6.228, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 0.773, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 0.123, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.028, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 4.975, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 8.191, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 1.9, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 0.439, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.063, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [9, 18, 27, 36], + "parameter": "Hs" + }, + "July": { + "graph": [ + { + "Hs": 8.666, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 13.707, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 1.845, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 0.226, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.067, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 6.525, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 3.931, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 0.232, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 3.598, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 2.969, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 0.049, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.39, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 0.532, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 3.018, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 2.991, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 0.556, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.07, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 7.166, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 10.404, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 1.292, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 0.092, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 4.851, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 6.412, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 0.962, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 0.11, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 7.182, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 8.767, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 1.653, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 0.516, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.18, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.04, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [7, 14, 21, 28], + "parameter": "Hs" + }, + "August": { + "graph": [ + { + "Hs": 8.452, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 11.067, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 2.734, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 0.632, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.058, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 5.752, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 2.939, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 0.144, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.006, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 3.65, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 2.377, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 0.064, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.598, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 1.02, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.037, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.018, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 3.162, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 3.388, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 0.599, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.186, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.04, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 6.009, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 10.64, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 2.749, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 0.364, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.037, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 4.307, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 6.742, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 1.683, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 0.367, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.012, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 7.063, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 9.079, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 2.233, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 0.7, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.095, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "Hs" + }, + "September": { + "graph": [ + { + "Hs": 5.717, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 11.761, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 3.286, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 1.304, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.537, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.11, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 3.756, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 4.438, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 0.824, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.18, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.003, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 2.33, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 3.472, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 0.578, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.139, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 1.768, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 1.787, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.18, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.025, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 2.102, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 4.138, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 1.37, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 0.325, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.085, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 2.958, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 8.561, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 4.138, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 1.064, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.11, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.003, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 2.705, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 7.364, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 2.866, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 0.985, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.221, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.022, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 4.255, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 9.214, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 3.516, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 1.222, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.47, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.092, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0.019, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "Hs" + }, + "October": { + "graph": [ + { + "Hs": 2.438, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 9.574, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 3.311, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 1.161, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.336, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.095, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.024, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 1.65, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 4.139, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 1.231, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.324, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.089, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 1.262, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 4.497, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 2.624, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.186, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 0.852, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 2.911, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 1.21, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.11, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0.006, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 1.304, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 5.877, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 3.962, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 1.32, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.281, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0.079, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0.009, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0.021, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 1.72, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 8.297, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 6.678, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 2.673, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.516, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.067, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0.009, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 1.118, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 5.874, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 4.332, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 1.741, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.638, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.086, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0.003, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 1.64, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 6.751, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 4.28, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 1.799, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.666, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.214, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0.015, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [5, 10, 15, 20], + "parameter": "Hs" + }, + "November": { + "graph": [ + { + "Hs": 2.001, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 8.267, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 4.568, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 2.102, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.846, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.139, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.044, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0.038, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 1.177, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 4.062, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 1.278, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.54, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.107, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 1.152, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 3.709, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 1.269, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.24, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0.035, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 0.764, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 3.153, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 1.594, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.202, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0.006, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 1.209, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 4.94, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 4.261, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 2.169, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.439, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0.028, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 0.884, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 6.237, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 7.121, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 3.314, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 0.593, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.047, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 0.792, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 5.657, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 4.706, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 2.049, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.685, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.038, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 1.288, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 7.794, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 5.262, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 2.008, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.821, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.312, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0.047, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0.003, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [5, 10, 15, 20], + "parameter": "Hs" + }, + "December": { + "graph": [ + { + "Hs": 2.276, + "class": "0.0-1.0", + "sector": 0 + }, + { + "Hs": 8.721, + "class": "1.0-2.0", + "sector": 0 + }, + { + "Hs": 4.57, + "class": "2.0-3.0", + "sector": 0 + }, + { + "Hs": 1.802, + "class": "3.0-4.0", + "sector": 0 + }, + { + "Hs": 0.495, + "class": "4.0-5.0", + "sector": 0 + }, + { + "Hs": 0.196, + "class": "5.0-6.0", + "sector": 0 + }, + { + "Hs": 0.046, + "class": "6.0-7.0", + "sector": 0 + }, + { + "Hs": 0.012, + "class": "7.0-8.0", + "sector": 0 + }, + { + "Hs": 0.015, + "class": "8.0-9.0", + "sector": 0 + }, + { + "Hs": 0.009, + "class": "9.0-10.0", + "sector": 0 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 0 + }, + { + "Hs": 1.763, + "class": "0.0-1.0", + "sector": 45 + }, + { + "Hs": 3.922, + "class": "1.0-2.0", + "sector": 45 + }, + { + "Hs": 1.772, + "class": "2.0-3.0", + "sector": 45 + }, + { + "Hs": 0.828, + "class": "3.0-4.0", + "sector": 45 + }, + { + "Hs": 0.116, + "class": "4.0-5.0", + "sector": 45 + }, + { + "Hs": 0.015, + "class": "5.0-6.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 45 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 45 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 45 + }, + { + "Hs": 1.204, + "class": "0.0-1.0", + "sector": 90 + }, + { + "Hs": 3.107, + "class": "1.0-2.0", + "sector": 90 + }, + { + "Hs": 1.359, + "class": "2.0-3.0", + "sector": 90 + }, + { + "Hs": 0.373, + "class": "3.0-4.0", + "sector": 90 + }, + { + "Hs": 0.024, + "class": "4.0-5.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 90 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 90 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 90 + }, + { + "Hs": 0.932, + "class": "0.0-1.0", + "sector": 135 + }, + { + "Hs": 1.708, + "class": "1.0-2.0", + "sector": 135 + }, + { + "Hs": 0.669, + "class": "2.0-3.0", + "sector": 135 + }, + { + "Hs": 0.168, + "class": "3.0-4.0", + "sector": 135 + }, + { + "Hs": 0.018, + "class": "4.0-5.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "5.0-6.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 135 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 135 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 135 + }, + { + "Hs": 0.614, + "class": "0.0-1.0", + "sector": 180 + }, + { + "Hs": 3.269, + "class": "1.0-2.0", + "sector": 180 + }, + { + "Hs": 3.76, + "class": "2.0-3.0", + "sector": 180 + }, + { + "Hs": 2.163, + "class": "3.0-4.0", + "sector": 180 + }, + { + "Hs": 0.654, + "class": "4.0-5.0", + "sector": 180 + }, + { + "Hs": 0.186, + "class": "5.0-6.0", + "sector": 180 + }, + { + "Hs": 0.018, + "class": "6.0-7.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 180 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 180 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 180 + }, + { + "Hs": 0.755, + "class": "0.0-1.0", + "sector": 225 + }, + { + "Hs": 6.161, + "class": "1.0-2.0", + "sector": 225 + }, + { + "Hs": 7.979, + "class": "2.0-3.0", + "sector": 225 + }, + { + "Hs": 4.726, + "class": "3.0-4.0", + "sector": 225 + }, + { + "Hs": 1.103, + "class": "4.0-5.0", + "sector": 225 + }, + { + "Hs": 0.049, + "class": "5.0-6.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "6.0-7.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 225 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 225 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 225 + }, + { + "Hs": 0.544, + "class": "0.0-1.0", + "sector": 270 + }, + { + "Hs": 5.773, + "class": "1.0-2.0", + "sector": 270 + }, + { + "Hs": 5.7, + "class": "2.0-3.0", + "sector": 270 + }, + { + "Hs": 2.908, + "class": "3.0-4.0", + "sector": 270 + }, + { + "Hs": 0.864, + "class": "4.0-5.0", + "sector": 270 + }, + { + "Hs": 0.177, + "class": "5.0-6.0", + "sector": 270 + }, + { + "Hs": 0.024, + "class": "6.0-7.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 270 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 270 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 270 + }, + { + "Hs": 1.222, + "class": "0.0-1.0", + "sector": 315 + }, + { + "Hs": 6.91, + "class": "1.0-2.0", + "sector": 315 + }, + { + "Hs": 4.713, + "class": "2.0-3.0", + "sector": 315 + }, + { + "Hs": 2.505, + "class": "3.0-4.0", + "sector": 315 + }, + { + "Hs": 0.901, + "class": "4.0-5.0", + "sector": 315 + }, + { + "Hs": 0.128, + "class": "5.0-6.0", + "sector": 315 + }, + { + "Hs": 0.073, + "class": "6.0-7.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "7.0-8.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "8.0-9.0", + "sector": 315 + }, + { + "Hs": 0, + "class": "9.0-10.0", + "sector": 315 + }, + { + "Hs": 0, + "class": ">10.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "Hs" + } +} diff --git a/public/static/data/PersistencyHs.json b/public/static/data/PersistencyHs.json new file mode 100644 index 0000000..27c751d --- /dev/null +++ b/public/static/data/PersistencyHs.json @@ -0,0 +1,6914 @@ +[ + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.411", + "Aug": "0.369", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.408", + "Aug": "0.368", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.075", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.404", + "Aug": "0.368", + "Sep": "0.228", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.308", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.362", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.078", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.065", + "Feb": "0.109", + "Mar": "0.122", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.353", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.049", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.203", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.141", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.333", + "Aug": "0.294", + "Sep": "0.156", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.327", + "Aug": "0.290", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.289", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.189", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.236", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.219", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.175", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m" } + }, + { + "Jan": "0.173", + "Feb": "0.226", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.510", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.585", + "Sep": "0.416", + "Oct": "0.228", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.372", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.172", + "Feb": "0.224", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.509", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.226", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.172", + "Feb": "0.222", + "Mar": "0.280", + "Apr": "0.406", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.174", + "Dec": "0.162", + "All-year": "0.368", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.167", + "Feb": "0.222", + "Mar": "0.273", + "Apr": "0.406", + "May": "0.504", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.581", + "Sep": "0.410", + "Oct": "0.218", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.156", + "Feb": "0.211", + "Mar": "0.260", + "Apr": "0.392", + "May": "0.493", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.560", + "Sep": "0.403", + "Oct": "0.196", + "Nov": "0.155", + "Dec": "0.143", + "All-year": "0.349", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.123", + "Feb": "0.167", + "Mar": "0.222", + "Apr": "0.360", + "May": "0.435", + "Jun": "0.533", + "Jul": "0.582", + "Aug": "0.530", + "Sep": "0.351", + "Oct": "0.163", + "Nov": "0.128", + "Dec": "0.116", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.077", + "Feb": "0.091", + "Mar": "0.147", + "Apr": "0.254", + "May": "0.363", + "Jun": "0.422", + "Jul": "0.462", + "Aug": "0.442", + "Sep": "0.245", + "Oct": "0.099", + "Nov": "0.078", + "Dec": "0.067", + "All-year": "0.240", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.150", + "May": "0.263", + "Jun": "0.326", + "Jul": "0.358", + "Aug": "0.353", + "Sep": "0.206", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.190", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.431", + "Jun": "0.539", + "Jul": "0.529", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.430", + "Jun": "0.538", + "Jul": "0.528", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.203", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.520", + "Aug": "0.484", + "Sep": "0.331", + "Oct": "0.141", + "Nov": "0.097", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.074", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.517", + "Aug": "0.475", + "Sep": "0.316", + "Oct": "0.130", + "Nov": "0.091", + "Dec": "0.094", + "All-year": "0.334", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.065", + "Feb": "0.110", + "Mar": "0.187", + "Apr": "0.328", + "May": "0.413", + "Jun": "0.516", + "Jul": "0.497", + "Aug": "0.460", + "Sep": "0.301", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.087", + "All-year": "0.324", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.040", + "Feb": "0.096", + "Mar": "0.136", + "Apr": "0.284", + "May": "0.361", + "Jun": "0.458", + "Jul": "0.459", + "Aug": "0.408", + "Sep": "0.245", + "Oct": "0.086", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.076", + "Apr": "0.144", + "May": "0.239", + "Jun": "0.293", + "Jul": "0.359", + "Aug": "0.325", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.220", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.134", + "Jun": "0.238", + "Jul": "0.249", + "Aug": "0.205", + "Sep": "0.107", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.170", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.297", + "May": "0.319", + "Jun": "0.375", + "Jul": "0.417", + "Aug": "0.402", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.294", + "May": "0.316", + "Jun": "0.375", + "Jul": "0.414", + "Aug": "0.401", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.290", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.398", + "Sep": "0.197", + "Oct": "0.086", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.269", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.387", + "Sep": "0.197", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.038", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.079", + "Apr": "0.260", + "May": "0.316", + "Jun": "0.344", + "Jul": "0.387", + "Aug": "0.376", + "Sep": "0.182", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.022", + "All-year": "0.306", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.210", + "May": "0.195", + "Jun": "0.279", + "Jul": "0.317", + "Aug": "0.296", + "Sep": "0.154", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.270", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.086", + "May": "0.091", + "Jun": "0.225", + "Jul": "0.253", + "Aug": "0.202", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.112", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.137", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.674", + "Jun": "0.753", + "Jul": "0.805", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.363", + "Nov": "0.326", + "Dec": "0.286", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.672", + "Jun": "0.751", + "Jul": "0.804", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.362", + "Nov": "0.326", + "Dec": "0.285", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.261", + "Feb": "0.342", + "Mar": "0.435", + "Apr": "0.574", + "May": "0.672", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.358", + "Nov": "0.324", + "Dec": "0.281", + "All-year": "0.499", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.258", + "Feb": "0.342", + "Mar": "0.431", + "Apr": "0.574", + "May": "0.669", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.724", + "Sep": "0.564", + "Oct": "0.353", + "Nov": "0.316", + "Dec": "0.272", + "All-year": "0.497", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.247", + "Feb": "0.342", + "Mar": "0.414", + "Apr": "0.565", + "May": "0.655", + "Jun": "0.728", + "Jul": "0.780", + "Aug": "0.714", + "Sep": "0.537", + "Oct": "0.327", + "Nov": "0.285", + "Dec": "0.266", + "All-year": "0.488", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.214", + "Feb": "0.302", + "Mar": "0.363", + "Apr": "0.532", + "May": "0.624", + "Jun": "0.702", + "Jul": "0.754", + "Aug": "0.682", + "Sep": "0.503", + "Oct": "0.288", + "Nov": "0.237", + "Dec": "0.215", + "All-year": "0.454", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.116", + "Feb": "0.203", + "Mar": "0.283", + "Apr": "0.455", + "May": "0.542", + "Jun": "0.631", + "Jul": "0.693", + "Aug": "0.641", + "Sep": "0.407", + "Oct": "0.202", + "Nov": "0.131", + "Dec": "0.113", + "All-year": "0.384", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.052", + "Feb": "0.130", + "Mar": "0.181", + "Apr": "0.350", + "May": "0.450", + "Jun": "0.531", + "Jul": "0.591", + "Aug": "0.552", + "Sep": "0.336", + "Oct": "0.129", + "Nov": "0.050", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.317", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.698", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.315", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.695", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.183", + "Feb": "0.226", + "Mar": "0.310", + "Apr": "0.505", + "May": "0.612", + "Jun": "0.693", + "Jul": "0.728", + "Aug": "0.624", + "Sep": "0.471", + "Oct": "0.271", + "Nov": "0.198", + "Dec": "0.179", + "All-year": "0.474", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.180", + "Feb": "0.222", + "Mar": "0.307", + "Apr": "0.498", + "May": "0.606", + "Jun": "0.690", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.463", + "Oct": "0.259", + "Nov": "0.194", + "Dec": "0.176", + "All-year": "0.472", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.140", + "Feb": "0.214", + "Mar": "0.300", + "Apr": "0.483", + "May": "0.591", + "Jun": "0.678", + "Jul": "0.717", + "Aug": "0.614", + "Sep": "0.445", + "Oct": "0.235", + "Nov": "0.182", + "Dec": "0.160", + "All-year": "0.456", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.102", + "Feb": "0.191", + "Mar": "0.278", + "Apr": "0.453", + "May": "0.544", + "Jun": "0.640", + "Jul": "0.665", + "Aug": "0.579", + "Sep": "0.408", + "Oct": "0.179", + "Nov": "0.131", + "Dec": "0.128", + "All-year": "0.420", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.092", + "Mar": "0.187", + "Apr": "0.364", + "May": "0.460", + "Jun": "0.519", + "Jul": "0.579", + "Aug": "0.528", + "Sep": "0.289", + "Oct": "0.110", + "Nov": "0.077", + "Dec": "0.000", + "All-year": "0.354", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.104", + "Apr": "0.226", + "May": "0.345", + "Jun": "0.426", + "Jul": "0.463", + "Aug": "0.454", + "Sep": "0.199", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.591", + "Sep": "0.310", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.455", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.590", + "Sep": "0.308", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.454", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.575", + "Jul": "0.601", + "Aug": "0.582", + "Sep": "0.308", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.452", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.425", + "May": "0.524", + "Jun": "0.563", + "Jul": "0.601", + "Aug": "0.577", + "Sep": "0.300", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.040", + "Feb": "0.060", + "Mar": "0.159", + "Apr": "0.421", + "May": "0.511", + "Jun": "0.536", + "Jul": "0.577", + "Aug": "0.544", + "Sep": "0.297", + "Oct": "0.145", + "Nov": "0.110", + "Dec": "0.062", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.133", + "Apr": "0.386", + "May": "0.473", + "Jun": "0.489", + "Jul": "0.504", + "Aug": "0.505", + "Sep": "0.265", + "Oct": "0.093", + "Nov": "0.051", + "Dec": "0.035", + "All-year": "0.400", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.263", + "May": "0.335", + "Jun": "0.413", + "Jul": "0.358", + "Aug": "0.413", + "Sep": "0.182", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.326", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.147", + "May": "0.180", + "Jun": "0.265", + "Jul": "0.198", + "Aug": "0.278", + "Sep": "0.100", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.249", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m" } + }, + { + "Jan": "0.371", + "Feb": "0.475", + "Mar": "0.570", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.403", + "All-year": "0.619", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.371", + "Feb": "0.474", + "Mar": "0.569", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.402", + "All-year": "0.618", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.368", + "Feb": "0.471", + "Mar": "0.569", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.689", + "Oct": "0.483", + "Nov": "0.435", + "Dec": "0.402", + "All-year": "0.616", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.365", + "Feb": "0.471", + "Mar": "0.565", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.686", + "Oct": "0.479", + "Nov": "0.432", + "Dec": "0.402", + "All-year": "0.612", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.347", + "Feb": "0.458", + "Mar": "0.534", + "Apr": "0.698", + "May": "0.781", + "Jun": "0.853", + "Jul": "0.869", + "Aug": "0.784", + "Sep": "0.666", + "Oct": "0.466", + "Nov": "0.410", + "Dec": "0.372", + "All-year": "0.600", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.302", + "Feb": "0.389", + "Mar": "0.495", + "Apr": "0.676", + "May": "0.761", + "Jun": "0.833", + "Jul": "0.853", + "Aug": "0.773", + "Sep": "0.640", + "Oct": "0.405", + "Nov": "0.353", + "Dec": "0.352", + "All-year": "0.568", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.219", + "Feb": "0.309", + "Mar": "0.409", + "Apr": "0.626", + "May": "0.708", + "Jun": "0.792", + "Jul": "0.812", + "Aug": "0.739", + "Sep": "0.599", + "Oct": "0.329", + "Nov": "0.203", + "Dec": "0.222", + "All-year": "0.502", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.157", + "Feb": "0.186", + "Mar": "0.337", + "Apr": "0.564", + "May": "0.605", + "Jun": "0.726", + "Jul": "0.770", + "Aug": "0.694", + "Sep": "0.464", + "Oct": "0.236", + "Nov": "0.162", + "Dec": "0.140", + "All-year": "0.442", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.271", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.631", + "May": "0.747", + "Jun": "0.803", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.609", + "Oct": "0.395", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.269", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.630", + "May": "0.747", + "Jun": "0.801", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.608", + "Oct": "0.394", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.264", + "Feb": "0.296", + "Mar": "0.426", + "Apr": "0.624", + "May": "0.747", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.737", + "Sep": "0.604", + "Oct": "0.388", + "Nov": "0.308", + "Dec": "0.297", + "All-year": "0.584", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.257", + "Feb": "0.292", + "Mar": "0.418", + "Apr": "0.624", + "May": "0.743", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.731", + "Sep": "0.597", + "Oct": "0.388", + "Nov": "0.301", + "Dec": "0.294", + "All-year": "0.581", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.242", + "Feb": "0.281", + "Mar": "0.409", + "Apr": "0.607", + "May": "0.719", + "Jun": "0.784", + "Jul": "0.813", + "Aug": "0.723", + "Sep": "0.576", + "Oct": "0.370", + "Nov": "0.270", + "Dec": "0.266", + "All-year": "0.564", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.179", + "Feb": "0.241", + "Mar": "0.401", + "Apr": "0.586", + "May": "0.700", + "Jun": "0.765", + "Jul": "0.782", + "Aug": "0.687", + "Sep": "0.528", + "Oct": "0.300", + "Nov": "0.228", + "Dec": "0.216", + "All-year": "0.530", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.102", + "Feb": "0.132", + "Mar": "0.296", + "Apr": "0.506", + "May": "0.624", + "Jun": "0.722", + "Jul": "0.730", + "Aug": "0.636", + "Sep": "0.430", + "Oct": "0.208", + "Nov": "0.142", + "Dec": "0.115", + "All-year": "0.471", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.116", + "Mar": "0.228", + "Apr": "0.410", + "May": "0.478", + "Jun": "0.587", + "Jul": "0.645", + "Aug": "0.581", + "Sep": "0.378", + "Oct": "0.132", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.416", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.138", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.568", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.136", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.297", + "Apr": "0.569", + "May": "0.653", + "Jun": "0.707", + "Jul": "0.741", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.153", + "All-year": "0.562", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.289", + "Apr": "0.569", + "May": "0.641", + "Jun": "0.693", + "Jul": "0.739", + "Aug": "0.687", + "Sep": "0.467", + "Oct": "0.294", + "Nov": "0.207", + "Dec": "0.142", + "All-year": "0.561", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.102", + "Feb": "0.105", + "Mar": "0.243", + "Apr": "0.569", + "May": "0.637", + "Jun": "0.692", + "Jul": "0.722", + "Aug": "0.683", + "Sep": "0.446", + "Oct": "0.261", + "Nov": "0.186", + "Dec": "0.118", + "All-year": "0.548", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.044", + "Feb": "0.086", + "Mar": "0.176", + "Apr": "0.490", + "May": "0.583", + "Jun": "0.663", + "Jul": "0.716", + "Aug": "0.608", + "Sep": "0.379", + "Oct": "0.215", + "Nov": "0.099", + "Dec": "0.077", + "All-year": "0.511", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.073", + "Mar": "0.129", + "Apr": "0.390", + "May": "0.450", + "Jun": "0.565", + "Jul": "0.629", + "Aug": "0.559", + "Sep": "0.283", + "Oct": "0.140", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.440", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.299", + "May": "0.376", + "Jun": "0.494", + "Jul": "0.511", + "Aug": "0.448", + "Sep": "0.144", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.387", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m" } + }, + { + "Jan": "0.478", + "Feb": "0.604", + "Mar": "0.671", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.906", + "Jul": "0.935", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.478", + "Feb": "0.603", + "Mar": "0.670", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.473", + "Feb": "0.601", + "Mar": "0.667", + "Apr": "0.815", + "May": "0.875", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.865", + "Sep": "0.759", + "Oct": "0.599", + "Nov": "0.532", + "Dec": "0.491", + "All-year": "0.701", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.473", + "Feb": "0.600", + "Mar": "0.663", + "Apr": "0.815", + "May": "0.874", + "Jun": "0.904", + "Jul": "0.931", + "Aug": "0.865", + "Sep": "0.755", + "Oct": "0.597", + "Nov": "0.522", + "Dec": "0.482", + "All-year": "0.699", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.446", + "Feb": "0.578", + "Mar": "0.643", + "Apr": "0.796", + "May": "0.869", + "Jun": "0.903", + "Jul": "0.930", + "Aug": "0.864", + "Sep": "0.750", + "Oct": "0.575", + "Nov": "0.503", + "Dec": "0.464", + "All-year": "0.690", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.389", + "Feb": "0.551", + "Mar": "0.633", + "Apr": "0.785", + "May": "0.848", + "Jun": "0.901", + "Jul": "0.921", + "Aug": "0.840", + "Sep": "0.735", + "Oct": "0.538", + "Nov": "0.475", + "Dec": "0.435", + "All-year": "0.660", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.326", + "Feb": "0.467", + "Mar": "0.524", + "Apr": "0.717", + "May": "0.813", + "Jun": "0.876", + "Jul": "0.897", + "Aug": "0.821", + "Sep": "0.690", + "Oct": "0.434", + "Nov": "0.373", + "Dec": "0.313", + "All-year": "0.608", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.255", + "Feb": "0.346", + "Mar": "0.456", + "Apr": "0.656", + "May": "0.758", + "Jun": "0.833", + "Jul": "0.872", + "Aug": "0.784", + "Sep": "0.646", + "Oct": "0.332", + "Nov": "0.283", + "Dec": "0.237", + "All-year": "0.553", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.386", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.834", + "Jun": "0.869", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.525", + "Nov": "0.437", + "Dec": "0.400", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.384", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.833", + "Jun": "0.868", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.524", + "Nov": "0.437", + "Dec": "0.399", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.377", + "Feb": "0.403", + "Mar": "0.573", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.826", + "Sep": "0.723", + "Oct": "0.524", + "Nov": "0.434", + "Dec": "0.398", + "All-year": "0.678", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.372", + "Feb": "0.403", + "Mar": "0.569", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.822", + "Sep": "0.717", + "Oct": "0.522", + "Nov": "0.431", + "Dec": "0.386", + "All-year": "0.677", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.353", + "Feb": "0.376", + "Mar": "0.563", + "Apr": "0.710", + "May": "0.823", + "Jun": "0.864", + "Jul": "0.874", + "Aug": "0.817", + "Sep": "0.709", + "Oct": "0.487", + "Nov": "0.410", + "Dec": "0.355", + "All-year": "0.661", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.292", + "Feb": "0.328", + "Mar": "0.530", + "Apr": "0.691", + "May": "0.791", + "Jun": "0.847", + "Jul": "0.867", + "Aug": "0.785", + "Sep": "0.658", + "Oct": "0.426", + "Nov": "0.351", + "Dec": "0.290", + "All-year": "0.627", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.176", + "Feb": "0.232", + "Mar": "0.440", + "Apr": "0.610", + "May": "0.730", + "Jun": "0.782", + "Jul": "0.832", + "Aug": "0.763", + "Sep": "0.612", + "Oct": "0.334", + "Nov": "0.265", + "Dec": "0.185", + "All-year": "0.571", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.107", + "Feb": "0.144", + "Mar": "0.340", + "Apr": "0.534", + "May": "0.628", + "Jun": "0.767", + "Jul": "0.802", + "Aug": "0.681", + "Sep": "0.533", + "Oct": "0.205", + "Nov": "0.174", + "Dec": "0.115", + "All-year": "0.526", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.243", + "Feb": "0.230", + "Mar": "0.468", + "Apr": "0.665", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.318", + "Dec": "0.242", + "All-year": "0.656", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.241", + "Feb": "0.230", + "Mar": "0.465", + "Apr": "0.663", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.317", + "Dec": "0.242", + "All-year": "0.655", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.237", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.398", + "Nov": "0.311", + "Dec": "0.239", + "All-year": "0.652", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.230", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.391", + "Nov": "0.304", + "Dec": "0.233", + "All-year": "0.651", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.199", + "Feb": "0.216", + "Mar": "0.450", + "Apr": "0.644", + "May": "0.773", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.767", + "Sep": "0.565", + "Oct": "0.379", + "Nov": "0.267", + "Dec": "0.215", + "All-year": "0.634", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.117", + "Feb": "0.118", + "Mar": "0.362", + "Apr": "0.611", + "May": "0.727", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.751", + "Sep": "0.525", + "Oct": "0.341", + "Nov": "0.190", + "Dec": "0.163", + "All-year": "0.602", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.067", + "Feb": "0.079", + "Mar": "0.241", + "Apr": "0.472", + "May": "0.621", + "Jun": "0.742", + "Jul": "0.739", + "Aug": "0.671", + "Sep": "0.375", + "Oct": "0.212", + "Nov": "0.090", + "Dec": "0.000", + "All-year": "0.536", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.098", + "Apr": "0.401", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.656", + "Aug": "0.603", + "Sep": "0.350", + "Oct": "0.125", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.476", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.673", + "Nov": "0.653", + "Dec": "0.592", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.672", + "Nov": "0.653", + "Dec": "0.591", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.556", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.912", + "Sep": "0.828", + "Oct": "0.672", + "Nov": "0.651", + "Dec": "0.587", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.555", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.936", + "Jul": "0.964", + "Aug": "0.911", + "Sep": "0.828", + "Oct": "0.668", + "Nov": "0.645", + "Dec": "0.585", + "All-year": "0.770", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.538", + "Feb": "0.673", + "Mar": "0.745", + "Apr": "0.872", + "May": "0.926", + "Jun": "0.933", + "Jul": "0.960", + "Aug": "0.907", + "Sep": "0.806", + "Oct": "0.653", + "Nov": "0.616", + "Dec": "0.578", + "All-year": "0.758", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.496", + "Feb": "0.636", + "Mar": "0.711", + "Apr": "0.843", + "May": "0.908", + "Jun": "0.931", + "Jul": "0.958", + "Aug": "0.899", + "Sep": "0.790", + "Oct": "0.612", + "Nov": "0.567", + "Dec": "0.532", + "All-year": "0.736", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.409", + "Feb": "0.563", + "Mar": "0.637", + "Apr": "0.814", + "May": "0.898", + "Jun": "0.917", + "Jul": "0.956", + "Aug": "0.868", + "Sep": "0.756", + "Oct": "0.548", + "Nov": "0.483", + "Dec": "0.411", + "All-year": "0.692", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.319", + "Feb": "0.530", + "Mar": "0.516", + "Apr": "0.760", + "May": "0.868", + "Jun": "0.895", + "Jul": "0.925", + "Aug": "0.854", + "Sep": "0.690", + "Oct": "0.450", + "Nov": "0.391", + "Dec": "0.332", + "All-year": "0.641", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.486", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.906", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.526", + "Dec": "0.491", + "All-year": "0.747", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.485", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.905", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.525", + "Dec": "0.491", + "All-year": "0.746", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.476", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.785", + "Oct": "0.614", + "Nov": "0.521", + "Dec": "0.487", + "All-year": "0.745", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.470", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.782", + "Oct": "0.614", + "Nov": "0.512", + "Dec": "0.476", + "All-year": "0.743", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.441", + "Feb": "0.498", + "Mar": "0.641", + "Apr": "0.812", + "May": "0.895", + "Jun": "0.922", + "Jul": "0.906", + "Aug": "0.864", + "Sep": "0.766", + "Oct": "0.589", + "Nov": "0.497", + "Dec": "0.453", + "All-year": "0.734", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.371", + "Feb": "0.434", + "Mar": "0.589", + "Apr": "0.784", + "May": "0.876", + "Jun": "0.910", + "Jul": "0.906", + "Aug": "0.845", + "Sep": "0.750", + "Oct": "0.548", + "Nov": "0.442", + "Dec": "0.401", + "All-year": "0.710", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.251", + "Feb": "0.314", + "Mar": "0.503", + "Apr": "0.727", + "May": "0.831", + "Jun": "0.876", + "Jul": "0.884", + "Aug": "0.802", + "Sep": "0.668", + "Oct": "0.419", + "Nov": "0.331", + "Dec": "0.271", + "All-year": "0.653", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.161", + "Feb": "0.244", + "Mar": "0.459", + "Apr": "0.692", + "May": "0.788", + "Jun": "0.826", + "Jul": "0.873", + "Aug": "0.781", + "Sep": "0.607", + "Oct": "0.298", + "Nov": "0.232", + "Dec": "0.234", + "All-year": "0.603", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.667", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.729", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.728", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.327", + "Feb": "0.287", + "Mar": "0.519", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.725", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.320", + "Feb": "0.280", + "Mar": "0.505", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.849", + "Aug": "0.827", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.723", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.293", + "Feb": "0.269", + "Mar": "0.474", + "Apr": "0.714", + "May": "0.847", + "Jun": "0.856", + "Jul": "0.839", + "Aug": "0.817", + "Sep": "0.665", + "Oct": "0.481", + "Nov": "0.406", + "Dec": "0.267", + "All-year": "0.709", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.235", + "Feb": "0.205", + "Mar": "0.445", + "Apr": "0.711", + "May": "0.798", + "Jun": "0.856", + "Jul": "0.837", + "Aug": "0.788", + "Sep": "0.617", + "Oct": "0.456", + "Nov": "0.318", + "Dec": "0.267", + "All-year": "0.677", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.106", + "Feb": "0.103", + "Mar": "0.332", + "Apr": "0.621", + "May": "0.788", + "Jun": "0.815", + "Jul": "0.790", + "Aug": "0.765", + "Sep": "0.512", + "Oct": "0.294", + "Nov": "0.186", + "Dec": "0.087", + "All-year": "0.616", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.161", + "Apr": "0.536", + "May": "0.711", + "Jun": "0.710", + "Jul": "0.704", + "Aug": "0.671", + "Sep": "0.465", + "Oct": "0.148", + "Nov": "0.119", + "Dec": "0.000", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.959", + "Jun": "0.965", + "Jul": "0.980", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.959", + "Jun": "0.965", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.655", + "Feb": "0.757", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.757", + "Nov": "0.741", + "Dec": "0.680", + "All-year": "0.826", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.649", + "Feb": "0.757", + "Mar": "0.814", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.880", + "Oct": "0.757", + "Nov": "0.735", + "Dec": "0.673", + "All-year": "0.825", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.625", + "Feb": "0.750", + "Mar": "0.802", + "Apr": "0.921", + "May": "0.957", + "Jun": "0.960", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.867", + "Oct": "0.740", + "Nov": "0.709", + "Dec": "0.668", + "All-year": "0.816", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.579", + "Feb": "0.708", + "Mar": "0.767", + "Apr": "0.919", + "May": "0.955", + "Jun": "0.960", + "Jul": "0.976", + "Aug": "0.935", + "Sep": "0.844", + "Oct": "0.721", + "Nov": "0.670", + "Dec": "0.616", + "All-year": "0.798", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.477", + "Feb": "0.654", + "Mar": "0.690", + "Apr": "0.910", + "May": "0.947", + "Jun": "0.952", + "Jul": "0.975", + "Aug": "0.931", + "Sep": "0.796", + "Oct": "0.635", + "Nov": "0.583", + "Dec": "0.498", + "All-year": "0.763", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.421", + "Feb": "0.605", + "Mar": "0.615", + "Apr": "0.860", + "May": "0.939", + "Jun": "0.942", + "Jul": "0.961", + "Aug": "0.891", + "Sep": "0.767", + "Oct": "0.575", + "Nov": "0.507", + "Dec": "0.424", + "All-year": "0.720", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.575", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.607", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.575", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.606", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.571", + "Feb": "0.601", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.945", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.708", + "Nov": "0.600", + "Dec": "0.564", + "All-year": "0.801", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.571", + "Feb": "0.595", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.944", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.705", + "Nov": "0.592", + "Dec": "0.559", + "All-year": "0.798", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.547", + "Feb": "0.594", + "Mar": "0.710", + "Apr": "0.855", + "May": "0.940", + "Jun": "0.940", + "Jul": "0.934", + "Aug": "0.901", + "Sep": "0.825", + "Oct": "0.692", + "Nov": "0.571", + "Dec": "0.532", + "All-year": "0.788", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.495", + "Feb": "0.533", + "Mar": "0.673", + "Apr": "0.833", + "May": "0.923", + "Jun": "0.939", + "Jul": "0.931", + "Aug": "0.890", + "Sep": "0.799", + "Oct": "0.646", + "Nov": "0.510", + "Dec": "0.485", + "All-year": "0.770", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.353", + "Feb": "0.412", + "Mar": "0.617", + "Apr": "0.778", + "May": "0.912", + "Jun": "0.915", + "Jul": "0.921", + "Aug": "0.849", + "Sep": "0.759", + "Oct": "0.536", + "Nov": "0.419", + "Dec": "0.356", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.281", + "Feb": "0.341", + "Mar": "0.511", + "Apr": "0.766", + "May": "0.886", + "Jun": "0.893", + "Jul": "0.908", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.430", + "Nov": "0.309", + "Dec": "0.292", + "All-year": "0.679", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.786", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.783", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.407", + "Feb": "0.403", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.401", + "Feb": "0.381", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.864", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.449", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.378", + "Feb": "0.323", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.866", + "Jun": "0.931", + "Jul": "0.894", + "Aug": "0.852", + "Sep": "0.711", + "Oct": "0.570", + "Nov": "0.492", + "Dec": "0.394", + "All-year": "0.774", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.273", + "Feb": "0.297", + "Mar": "0.497", + "Apr": "0.776", + "May": "0.866", + "Jun": "0.910", + "Jul": "0.876", + "Aug": "0.847", + "Sep": "0.693", + "Oct": "0.507", + "Nov": "0.431", + "Dec": "0.305", + "All-year": "0.739", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.199", + "Feb": "0.197", + "Mar": "0.390", + "Apr": "0.731", + "May": "0.866", + "Jun": "0.885", + "Jul": "0.858", + "Aug": "0.804", + "Sep": "0.543", + "Oct": "0.372", + "Nov": "0.271", + "Dec": "0.172", + "All-year": "0.681", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.114", + "Feb": "0.115", + "Mar": "0.285", + "Apr": "0.590", + "May": "0.840", + "Jun": "0.867", + "Jul": "0.844", + "Aug": "0.757", + "Sep": "0.543", + "Oct": "0.278", + "Nov": "0.204", + "Dec": "0.000", + "All-year": "0.633", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m" } + }, + { + "Jan": "0.743", + "Feb": "0.810", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.921", + "Oct": "0.821", + "Nov": "0.794", + "Dec": "0.737", + "All-year": "0.871", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.743", + "Feb": "0.810", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.921", + "Oct": "0.821", + "Nov": "0.794", + "Dec": "0.737", + "All-year": "0.871", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.742", + "Feb": "0.805", + "Mar": "0.860", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.920", + "Oct": "0.818", + "Nov": "0.792", + "Dec": "0.737", + "All-year": "0.869", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.739", + "Feb": "0.801", + "Mar": "0.856", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.917", + "Oct": "0.818", + "Nov": "0.792", + "Dec": "0.735", + "All-year": "0.868", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.704", + "Feb": "0.798", + "Mar": "0.851", + "Apr": "0.944", + "May": "0.980", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.911", + "Oct": "0.810", + "Nov": "0.785", + "Dec": "0.720", + "All-year": "0.859", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.676", + "Feb": "0.775", + "Mar": "0.849", + "Apr": "0.940", + "May": "0.977", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.896", + "Oct": "0.797", + "Nov": "0.744", + "Dec": "0.684", + "All-year": "0.845", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.586", + "Feb": "0.717", + "Mar": "0.808", + "Apr": "0.937", + "May": "0.974", + "Jun": "0.977", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.866", + "Oct": "0.741", + "Nov": "0.662", + "Dec": "0.608", + "All-year": "0.817", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.532", + "Feb": "0.680", + "Mar": "0.714", + "Apr": "0.902", + "May": "0.964", + "Jun": "0.972", + "Jul": "0.987", + "Aug": "0.954", + "Sep": "0.840", + "Oct": "0.673", + "Nov": "0.569", + "Dec": "0.532", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.641", + "Feb": "0.701", + "Mar": "0.791", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.873", + "Oct": "0.776", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.849", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.641", + "Feb": "0.701", + "Mar": "0.790", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.873", + "Oct": "0.775", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.849", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.638", + "Feb": "0.701", + "Mar": "0.784", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.873", + "Oct": "0.773", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.848", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.637", + "Feb": "0.690", + "Mar": "0.781", + "Apr": "0.896", + "May": "0.958", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.871", + "Oct": "0.770", + "Nov": "0.696", + "Dec": "0.634", + "All-year": "0.846", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.621", + "Feb": "0.662", + "Mar": "0.769", + "Apr": "0.892", + "May": "0.958", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.933", + "Sep": "0.860", + "Oct": "0.755", + "Nov": "0.678", + "Dec": "0.606", + "All-year": "0.838", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.570", + "Feb": "0.637", + "Mar": "0.741", + "Apr": "0.876", + "May": "0.950", + "Jun": "0.956", + "Jul": "0.959", + "Aug": "0.926", + "Sep": "0.847", + "Oct": "0.738", + "Nov": "0.617", + "Dec": "0.547", + "All-year": "0.824", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.457", + "Feb": "0.551", + "Mar": "0.673", + "Apr": "0.861", + "May": "0.940", + "Jun": "0.939", + "Jul": "0.954", + "Aug": "0.892", + "Sep": "0.811", + "Oct": "0.641", + "Nov": "0.535", + "Dec": "0.493", + "All-year": "0.778", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.409", + "Feb": "0.454", + "Mar": "0.589", + "Apr": "0.819", + "May": "0.925", + "Jun": "0.927", + "Jul": "0.940", + "Aug": "0.863", + "Sep": "0.764", + "Oct": "0.556", + "Nov": "0.417", + "Dec": "0.376", + "All-year": "0.744", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.489", + "Feb": "0.512", + "Mar": "0.694", + "Apr": "0.849", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.937", + "Aug": "0.906", + "Sep": "0.782", + "Oct": "0.702", + "Nov": "0.614", + "Dec": "0.575", + "All-year": "0.830", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.487", + "Feb": "0.512", + "Mar": "0.694", + "Apr": "0.849", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.906", + "Sep": "0.781", + "Oct": "0.702", + "Nov": "0.614", + "Dec": "0.573", + "All-year": "0.829", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.483", + "Feb": "0.512", + "Mar": "0.683", + "Apr": "0.844", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.781", + "Oct": "0.702", + "Nov": "0.610", + "Dec": "0.569", + "All-year": "0.828", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.476", + "Feb": "0.512", + "Mar": "0.683", + "Apr": "0.844", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.776", + "Oct": "0.696", + "Nov": "0.601", + "Dec": "0.563", + "All-year": "0.826", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.472", + "Feb": "0.464", + "Mar": "0.683", + "Apr": "0.838", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.892", + "Sep": "0.775", + "Oct": "0.685", + "Nov": "0.589", + "Dec": "0.527", + "All-year": "0.819", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.399", + "Feb": "0.396", + "Mar": "0.664", + "Apr": "0.838", + "May": "0.905", + "Jun": "0.933", + "Jul": "0.919", + "Aug": "0.886", + "Sep": "0.762", + "Oct": "0.626", + "Nov": "0.532", + "Dec": "0.413", + "All-year": "0.801", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.308", + "Feb": "0.272", + "Mar": "0.562", + "Apr": "0.747", + "May": "0.901", + "Jun": "0.903", + "Jul": "0.907", + "Aug": "0.852", + "Sep": "0.669", + "Oct": "0.468", + "Nov": "0.382", + "Dec": "0.211", + "All-year": "0.753", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.219", + "Feb": "0.129", + "Mar": "0.394", + "Apr": "0.706", + "May": "0.871", + "Jun": "0.899", + "Jul": "0.891", + "Aug": "0.798", + "Sep": "0.596", + "Oct": "0.435", + "Nov": "0.269", + "Dec": "0.117", + "All-year": "0.694", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m" } + }, + { + "Jan": "0.806", + "Feb": "0.868", + "Mar": "0.896", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.862", + "Nov": "0.853", + "Dec": "0.798", + "All-year": "0.903", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.806", + "Feb": "0.868", + "Mar": "0.896", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.862", + "Nov": "0.853", + "Dec": "0.798", + "All-year": "0.902", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.804", + "Feb": "0.868", + "Mar": "0.895", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.861", + "Nov": "0.852", + "Dec": "0.795", + "All-year": "0.901", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.803", + "Feb": "0.862", + "Mar": "0.892", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.858", + "Nov": "0.846", + "Dec": "0.792", + "All-year": "0.899", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.791", + "Feb": "0.851", + "Mar": "0.892", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.853", + "Nov": "0.838", + "Dec": "0.778", + "All-year": "0.892", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.750", + "Feb": "0.833", + "Mar": "0.877", + "Apr": "0.957", + "May": "0.993", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.927", + "Oct": "0.845", + "Nov": "0.814", + "Dec": "0.739", + "All-year": "0.883", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.663", + "Feb": "0.781", + "Mar": "0.851", + "Apr": "0.957", + "May": "0.992", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.917", + "Oct": "0.802", + "Nov": "0.768", + "Dec": "0.686", + "All-year": "0.859", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.612", + "Feb": "0.736", + "Mar": "0.804", + "Apr": "0.952", + "May": "0.990", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.974", + "Sep": "0.890", + "Oct": "0.749", + "Nov": "0.681", + "Dec": "0.644", + "All-year": "0.829", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.709", + "Feb": "0.777", + "Mar": "0.835", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.976", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.836", + "Nov": "0.753", + "Dec": "0.713", + "All-year": "0.888", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.835", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.976", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.836", + "Nov": "0.753", + "Dec": "0.713", + "All-year": "0.888", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.834", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.835", + "Nov": "0.753", + "Dec": "0.707", + "All-year": "0.887", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.831", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.832", + "Nov": "0.753", + "Dec": "0.700", + "All-year": "0.885", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.697", + "Feb": "0.762", + "Mar": "0.812", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.969", + "Jul": "0.975", + "Aug": "0.949", + "Sep": "0.892", + "Oct": "0.817", + "Nov": "0.742", + "Dec": "0.687", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.616", + "Feb": "0.723", + "Mar": "0.797", + "Apr": "0.914", + "May": "0.961", + "Jun": "0.967", + "Jul": "0.970", + "Aug": "0.946", + "Sep": "0.885", + "Oct": "0.787", + "Nov": "0.721", + "Dec": "0.660", + "All-year": "0.863", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.569", + "Feb": "0.615", + "Mar": "0.761", + "Apr": "0.908", + "May": "0.956", + "Jun": "0.957", + "Jul": "0.970", + "Aug": "0.943", + "Sep": "0.851", + "Oct": "0.733", + "Nov": "0.604", + "Dec": "0.544", + "All-year": "0.830", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.487", + "Feb": "0.565", + "Mar": "0.696", + "Apr": "0.901", + "May": "0.950", + "Jun": "0.953", + "Jul": "0.967", + "Aug": "0.899", + "Sep": "0.843", + "Oct": "0.674", + "Nov": "0.490", + "Dec": "0.462", + "All-year": "0.796", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.547", + "Feb": "0.599", + "Mar": "0.789", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.681", + "Dec": "0.663", + "All-year": "0.874", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.547", + "Feb": "0.596", + "Mar": "0.789", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.679", + "Dec": "0.663", + "All-year": "0.874", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.543", + "Feb": "0.591", + "Mar": "0.784", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.679", + "Dec": "0.661", + "All-year": "0.873", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.543", + "Feb": "0.582", + "Mar": "0.784", + "Apr": "0.882", + "May": "0.960", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.773", + "Nov": "0.675", + "Dec": "0.661", + "All-year": "0.872", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.505", + "Feb": "0.563", + "Mar": "0.767", + "Apr": "0.882", + "May": "0.945", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.929", + "Sep": "0.849", + "Oct": "0.743", + "Nov": "0.661", + "Dec": "0.610", + "All-year": "0.864", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.474", + "Feb": "0.494", + "Mar": "0.738", + "Apr": "0.872", + "May": "0.937", + "Jun": "0.946", + "Jul": "0.952", + "Aug": "0.914", + "Sep": "0.800", + "Oct": "0.703", + "Nov": "0.622", + "Dec": "0.547", + "All-year": "0.849", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.405", + "Feb": "0.409", + "Mar": "0.649", + "Apr": "0.824", + "May": "0.917", + "Jun": "0.935", + "Jul": "0.933", + "Aug": "0.876", + "Sep": "0.735", + "Oct": "0.672", + "Nov": "0.535", + "Dec": "0.360", + "All-year": "0.807", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.245", + "Feb": "0.243", + "Mar": "0.577", + "Apr": "0.733", + "May": "0.906", + "Jun": "0.933", + "Jul": "0.918", + "Aug": "0.810", + "Sep": "0.733", + "Oct": "0.594", + "Nov": "0.401", + "Dec": "0.243", + "All-year": "0.771", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m" } + }, + { + "Jan": "0.899", + "Feb": "0.927", + "Mar": "0.952", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.897", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.894", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.894", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.983", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.934", + "Nov": "0.935", + "Dec": "0.890", + "All-year": "0.949", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.885", + "Feb": "0.924", + "Mar": "0.944", + "Apr": "0.983", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.929", + "Nov": "0.926", + "Dec": "0.879", + "All-year": "0.944", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.870", + "Feb": "0.907", + "Mar": "0.942", + "Apr": "0.979", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.971", + "Oct": "0.923", + "Nov": "0.910", + "Dec": "0.872", + "All-year": "0.934", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.820", + "Feb": "0.897", + "Mar": "0.921", + "Apr": "0.975", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.961", + "Oct": "0.907", + "Nov": "0.880", + "Dec": "0.833", + "All-year": "0.917", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.786", + "Feb": "0.841", + "Mar": "0.903", + "Apr": "0.973", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.954", + "Oct": "0.856", + "Nov": "0.830", + "Dec": "0.758", + "All-year": "0.900", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.839", + "Feb": "0.864", + "Mar": "0.894", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.953", + "Oct": "0.918", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.940", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.838", + "Feb": "0.864", + "Mar": "0.892", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.953", + "Oct": "0.918", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.940", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.838", + "Feb": "0.864", + "Mar": "0.892", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.916", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.835", + "Feb": "0.864", + "Mar": "0.891", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.916", + "Nov": "0.862", + "Dec": "0.842", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.807", + "Feb": "0.859", + "Mar": "0.881", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.905", + "Nov": "0.849", + "Dec": "0.817", + "All-year": "0.934", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.769", + "Feb": "0.819", + "Mar": "0.875", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.980", + "Sep": "0.952", + "Oct": "0.890", + "Nov": "0.821", + "Dec": "0.782", + "All-year": "0.925", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.710", + "Feb": "0.804", + "Mar": "0.840", + "Apr": "0.956", + "May": "0.992", + "Jun": "0.982", + "Jul": "0.991", + "Aug": "0.978", + "Sep": "0.907", + "Oct": "0.843", + "Nov": "0.792", + "Dec": "0.701", + "All-year": "0.908", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.610", + "Feb": "0.728", + "Mar": "0.826", + "Apr": "0.949", + "May": "0.992", + "Jun": "0.982", + "Jul": "0.991", + "Aug": "0.972", + "Sep": "0.887", + "Oct": "0.812", + "Nov": "0.701", + "Dec": "0.640", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.723", + "Feb": "0.739", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.971", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.911", + "Oct": "0.872", + "Nov": "0.818", + "Dec": "0.792", + "All-year": "0.933", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.723", + "Feb": "0.739", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.971", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.911", + "Oct": "0.872", + "Nov": "0.817", + "Dec": "0.792", + "All-year": "0.932", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.723", + "Feb": "0.725", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.906", + "Oct": "0.871", + "Nov": "0.812", + "Dec": "0.792", + "All-year": "0.932", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.719", + "Feb": "0.716", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.906", + "Oct": "0.871", + "Nov": "0.812", + "Dec": "0.792", + "All-year": "0.930", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.671", + "Feb": "0.701", + "Mar": "0.845", + "Apr": "0.922", + "May": "0.981", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.969", + "Sep": "0.904", + "Oct": "0.851", + "Nov": "0.794", + "Dec": "0.781", + "All-year": "0.922", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.620", + "Feb": "0.655", + "Mar": "0.823", + "Apr": "0.917", + "May": "0.976", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.966", + "Sep": "0.899", + "Oct": "0.831", + "Nov": "0.762", + "Dec": "0.702", + "All-year": "0.910", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.544", + "Feb": "0.646", + "Mar": "0.778", + "Apr": "0.917", + "May": "0.965", + "Jun": "0.960", + "Jul": "0.972", + "Aug": "0.945", + "Sep": "0.860", + "Oct": "0.796", + "Nov": "0.664", + "Dec": "0.531", + "All-year": "0.881", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.476", + "Feb": "0.491", + "Mar": "0.704", + "Apr": "0.885", + "May": "0.914", + "Jun": "0.940", + "Jul": "0.972", + "Aug": "0.915", + "Sep": "0.790", + "Oct": "0.741", + "Nov": "0.567", + "Dec": "0.391", + "All-year": "0.860", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.972", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.972", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.970", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.970", + "Dec": "0.956", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.954", + "Feb": "0.957", + "Mar": "0.979", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.967", + "Dec": "0.952", + "All-year": "0.974", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.949", + "Feb": "0.957", + "Mar": "0.976", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.959", + "Dec": "0.939", + "All-year": "0.970", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.897", + "Feb": "0.951", + "Mar": "0.974", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.964", + "Nov": "0.942", + "Dec": "0.926", + "All-year": "0.962", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.876", + "Feb": "0.944", + "Mar": "0.974", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.960", + "Nov": "0.916", + "Dec": "0.894", + "All-year": "0.953", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.900", + "Feb": "0.923", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.938", + "Dec": "0.924", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.899", + "Feb": "0.923", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.938", + "Dec": "0.923", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.895", + "Feb": "0.920", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.937", + "Dec": "0.921", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.895", + "Feb": "0.917", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.951", + "Nov": "0.937", + "Dec": "0.921", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.891", + "Feb": "0.911", + "Mar": "0.957", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.949", + "Nov": "0.935", + "Dec": "0.915", + "All-year": "0.968", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.864", + "Feb": "0.911", + "Mar": "0.948", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.942", + "Nov": "0.915", + "Dec": "0.909", + "All-year": "0.963", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.798", + "Feb": "0.875", + "Mar": "0.923", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.927", + "Nov": "0.880", + "Dec": "0.861", + "All-year": "0.950", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.751", + "Feb": "0.843", + "Mar": "0.905", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.960", + "Oct": "0.873", + "Nov": "0.873", + "Dec": "0.788", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.829", + "Feb": "0.842", + "Mar": "0.925", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.878", + "All-year": "0.963", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.829", + "Feb": "0.842", + "Mar": "0.925", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.878", + "All-year": "0.963", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.829", + "Feb": "0.835", + "Mar": "0.919", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.874", + "All-year": "0.962", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.829", + "Feb": "0.835", + "Mar": "0.915", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.942", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.874", + "All-year": "0.961", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.829", + "Feb": "0.826", + "Mar": "0.911", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.942", + "Oct": "0.917", + "Nov": "0.879", + "Dec": "0.874", + "All-year": "0.960", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.792", + "Feb": "0.790", + "Mar": "0.901", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.988", + "Sep": "0.931", + "Oct": "0.909", + "Nov": "0.854", + "Dec": "0.831", + "All-year": "0.954", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.683", + "Feb": "0.772", + "Mar": "0.876", + "Apr": "0.954", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.976", + "Sep": "0.914", + "Oct": "0.852", + "Nov": "0.812", + "Dec": "0.774", + "All-year": "0.934", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.618", + "Feb": "0.734", + "Mar": "0.841", + "Apr": "0.922", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.970", + "Sep": "0.886", + "Oct": "0.841", + "Nov": "0.726", + "Dec": "0.636", + "All-year": "0.922", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.988", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.982", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.988", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.982", + "Feb": "0.984", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.986", + "Dec": "0.989", + "All-year": "0.987", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.978", + "Feb": "0.984", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.985", + "Dec": "0.987", + "All-year": "0.984", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.962", + "Feb": "0.979", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.983", + "Dec": "0.985", + "All-year": "0.981", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.942", + "Feb": "0.954", + "Mar": "0.989", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.968", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.942", + "Feb": "0.954", + "Mar": "0.989", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.968", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.940", + "Feb": "0.954", + "Mar": "0.987", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.965", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.939", + "Feb": "0.954", + "Mar": "0.987", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.962", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.937", + "Feb": "0.952", + "Mar": "0.987", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.970", + "Nov": "0.975", + "Dec": "0.958", + "All-year": "0.984", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.919", + "Feb": "0.949", + "Mar": "0.984", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.966", + "Nov": "0.974", + "Dec": "0.953", + "All-year": "0.983", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.909", + "Feb": "0.947", + "Mar": "0.982", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.965", + "Nov": "0.959", + "Dec": "0.937", + "All-year": "0.976", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.879", + "Feb": "0.925", + "Mar": "0.977", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.988", + "Oct": "0.944", + "Nov": "0.944", + "Dec": "0.911", + "All-year": "0.974", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.913", + "Feb": "0.894", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.950", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.913", + "Feb": "0.894", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.950", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.913", + "Feb": "0.894", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.946", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.906", + "Feb": "0.891", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.953", + "Nov": "0.946", + "Dec": "0.925", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.906", + "Feb": "0.874", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.950", + "Nov": "0.943", + "Dec": "0.925", + "All-year": "0.979", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.878", + "Feb": "0.874", + "Mar": "0.961", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.930", + "Nov": "0.943", + "Dec": "0.914", + "All-year": "0.974", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.797", + "Feb": "0.864", + "Mar": "0.931", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.940", + "Oct": "0.902", + "Nov": "0.911", + "Dec": "0.872", + "All-year": "0.965", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.766", + "Feb": "0.842", + "Mar": "0.918", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.993", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.914", + "Oct": "0.859", + "Nov": "0.893", + "Dec": "0.844", + "All-year": "0.960", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.994", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.993", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.993", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.993", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.967", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.988", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.966", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.964", + "Feb": "0.970", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.933", + "Feb": "0.957", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.985", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.952", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.990", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.952", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.990", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.949", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.942", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.942", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.983", + "Nov": "0.967", + "Dec": "0.961", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.927", + "Feb": "0.939", + "Mar": "0.980", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.980", + "Nov": "0.967", + "Dec": "0.938", + "All-year": "0.987", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.906", + "Feb": "0.924", + "Mar": "0.977", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.970", + "Nov": "0.967", + "Dec": "0.938", + "All-year": "0.982", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m" } + }, + { + "Jan": "0.835", + "Feb": "0.882", + "Mar": "0.956", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.919", + "Nov": "0.967", + "Dec": "0.914", + "All-year": "0.977", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m" } + } +] diff --git a/public/static/data/PersistencyHsU10.json b/public/static/data/PersistencyHsU10.json new file mode 100644 index 0000000..9e2cd33 --- /dev/null +++ b/public/static/data/PersistencyHsU10.json @@ -0,0 +1,76034 @@ +[ + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.003", + "Jul": "0.005", + "Aug": "0.005", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.004", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.004", + "Aug": "0.005", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.003", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.001", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.001", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.001", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.001", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.004", + "Jun": "0.030", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.004", + "Jun": "0.029", + "Jul": "0.019", + "Aug": "0.021", + "Sep": "0.002", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.028", + "Jul": "0.019", + "Aug": "0.019", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.012", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.028", + "Jul": "0.018", + "Aug": "0.019", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.008", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.004", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.007", + "Aug": "0.004", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.005", + "Aug": "0.004", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.003", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.008", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.008", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.004", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.004", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.035", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.041", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.002", + "May": "0.005", + "Jun": "0.040", + "Jul": "0.025", + "Aug": "0.031", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.025", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.038", + "Jul": "0.024", + "Aug": "0.029", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.020", + "Aug": "0.022", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.005", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.008", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.001", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.008", + "Jun": "0.017", + "Jul": "0.021", + "Aug": "0.022", + "Sep": "0.012", + "Oct": "0.001", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.012", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.001", + "Apr": "0.009", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.019", + "Aug": "0.020", + "Sep": "0.011", + "Oct": "0.001", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.000", + "Jun": "0.008", + "Jul": "0.013", + "Aug": "0.016", + "Sep": "0.008", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.008", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.008", + "Jul": "0.011", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.005", + "May": "0.003", + "Jun": "0.006", + "Jul": "0.012", + "Aug": "0.013", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.003", + "May": "0.003", + "Jun": "0.004", + "Jul": "0.009", + "Aug": "0.012", + "Sep": "0.001", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.006", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.004", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.001", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.004", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.004", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.006", + "Feb": "0.018", + "Mar": "0.017", + "Apr": "0.049", + "May": "0.053", + "Jun": "0.101", + "Jul": "0.094", + "Aug": "0.097", + "Sep": "0.056", + "Oct": "0.020", + "Nov": "0.004", + "Dec": "0.010", + "All-year": "0.050", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.006", + "Feb": "0.016", + "Mar": "0.017", + "Apr": "0.048", + "May": "0.053", + "Jun": "0.101", + "Jul": "0.092", + "Aug": "0.096", + "Sep": "0.055", + "Oct": "0.019", + "Nov": "0.004", + "Dec": "0.010", + "All-year": "0.050", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.014", + "Mar": "0.016", + "Apr": "0.042", + "May": "0.052", + "Jun": "0.091", + "Jul": "0.083", + "Aug": "0.087", + "Sep": "0.051", + "Oct": "0.017", + "Nov": "0.000", + "Dec": "0.008", + "All-year": "0.046", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.014", + "Mar": "0.014", + "Apr": "0.041", + "May": "0.043", + "Jun": "0.088", + "Jul": "0.075", + "Aug": "0.083", + "Sep": "0.044", + "Oct": "0.015", + "Nov": "0.000", + "Dec": "0.005", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.033", + "May": "0.022", + "Jun": "0.056", + "Jul": "0.048", + "Aug": "0.054", + "Sep": "0.037", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.032", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.035", + "Jul": "0.000", + "Aug": "0.036", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.007", + "Apr": "0.029", + "May": "0.026", + "Jun": "0.047", + "Jul": "0.065", + "Aug": "0.056", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.041", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.007", + "Apr": "0.028", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.065", + "Aug": "0.055", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.040", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.007", + "Apr": "0.024", + "May": "0.024", + "Jun": "0.042", + "Jul": "0.054", + "Aug": "0.052", + "Sep": "0.018", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.035", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.021", + "May": "0.019", + "Jun": "0.042", + "Jul": "0.050", + "Aug": "0.047", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.031", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.021", + "Jul": "0.026", + "Aug": "0.026", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.022", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.003", + "May": "0.019", + "Jun": "0.017", + "Jul": "0.034", + "Aug": "0.032", + "Sep": "0.001", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.035", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.019", + "Jun": "0.017", + "Jul": "0.031", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.035", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.011", + "Jun": "0.011", + "Jul": "0.027", + "Aug": "0.031", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.030", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.009", + "Jun": "0.011", + "Jul": "0.026", + "Aug": "0.027", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.028", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.081", + "May": "0.103", + "Jun": "0.165", + "Jul": "0.172", + "Aug": "0.171", + "Sep": "0.098", + "Oct": "0.028", + "Nov": "0.014", + "Dec": "0.019", + "All-year": "0.088", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.081", + "May": "0.103", + "Jun": "0.164", + "Jul": "0.169", + "Aug": "0.170", + "Sep": "0.097", + "Oct": "0.027", + "Nov": "0.014", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.078", + "May": "0.100", + "Jun": "0.157", + "Jul": "0.161", + "Aug": "0.167", + "Sep": "0.095", + "Oct": "0.027", + "Nov": "0.014", + "Dec": "0.019", + "All-year": "0.085", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.076", + "May": "0.100", + "Jun": "0.152", + "Jul": "0.161", + "Aug": "0.161", + "Sep": "0.095", + "Oct": "0.025", + "Nov": "0.012", + "Dec": "0.019", + "All-year": "0.082", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.026", + "Mar": "0.019", + "Apr": "0.064", + "May": "0.088", + "Jun": "0.140", + "Jul": "0.130", + "Aug": "0.139", + "Sep": "0.084", + "Oct": "0.024", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.041", + "May": "0.056", + "Jun": "0.094", + "Jul": "0.101", + "Aug": "0.099", + "Sep": "0.061", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.054", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.066", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.047", + "May": "0.068", + "Jun": "0.074", + "Jul": "0.112", + "Aug": "0.119", + "Sep": "0.035", + "Oct": "0.006", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.073", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.044", + "May": "0.068", + "Jun": "0.072", + "Jul": "0.110", + "Aug": "0.119", + "Sep": "0.035", + "Oct": "0.006", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.073", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.044", + "May": "0.066", + "Jun": "0.069", + "Jul": "0.108", + "Aug": "0.112", + "Sep": "0.035", + "Oct": "0.005", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.071", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.042", + "May": "0.066", + "Jun": "0.067", + "Jul": "0.101", + "Aug": "0.109", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.069", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.056", + "Jun": "0.057", + "Jul": "0.083", + "Aug": "0.096", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.060", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.039", + "Jul": "0.040", + "Aug": "0.053", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.042", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.008", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.032", + "Jun": "0.040", + "Jul": "0.058", + "Aug": "0.060", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.032", + "Jun": "0.040", + "Jul": "0.058", + "Aug": "0.060", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.028", + "Jun": "0.039", + "Jul": "0.058", + "Aug": "0.056", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.028", + "Jun": "0.039", + "Jul": "0.058", + "Aug": "0.050", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.019", + "Jun": "0.029", + "Jul": "0.040", + "Aug": "0.050", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.051", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.033", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.071", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.116", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.112", + "Jun": "0.176", + "Jul": "0.185", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.034", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.034", + "Mar": "0.028", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.176", + "Jul": "0.184", + "Aug": "0.190", + "Sep": "0.102", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.034", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.111", + "Jun": "0.175", + "Jul": "0.180", + "Aug": "0.188", + "Sep": "0.101", + "Oct": "0.033", + "Nov": "0.015", + "Dec": "0.019", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.032", + "Mar": "0.027", + "Apr": "0.085", + "May": "0.107", + "Jun": "0.172", + "Jul": "0.180", + "Aug": "0.183", + "Sep": "0.098", + "Oct": "0.032", + "Nov": "0.013", + "Dec": "0.019", + "All-year": "0.087", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.027", + "Mar": "0.019", + "Apr": "0.067", + "May": "0.095", + "Jun": "0.152", + "Jul": "0.153", + "Aug": "0.165", + "Sep": "0.088", + "Oct": "0.026", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.079", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.051", + "May": "0.067", + "Jun": "0.127", + "Jul": "0.114", + "Aug": "0.127", + "Sep": "0.068", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.076", + "Jul": "0.069", + "Aug": "0.074", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.036", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.078", + "Jul": "0.119", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.011", + "Apr": "0.051", + "May": "0.069", + "Jun": "0.077", + "Jul": "0.118", + "Aug": "0.124", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.075", + "Jul": "0.116", + "Aug": "0.120", + "Sep": "0.035", + "Oct": "0.007", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.078", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.009", + "Apr": "0.045", + "May": "0.067", + "Jun": "0.068", + "Jul": "0.110", + "Aug": "0.117", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.058", + "Jun": "0.068", + "Jul": "0.101", + "Aug": "0.110", + "Sep": "0.029", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.000", + "Jun": "0.047", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.050", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.066", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.011", + "May": "0.034", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.070", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.065", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.068", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.030", + "Jun": "0.043", + "Jul": "0.065", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.066", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.020", + "Jun": "0.036", + "Jul": "0.040", + "Aug": "0.052", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.039", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 0.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.001", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.018", + "May": "0.016", + "Jun": "0.035", + "Jul": "0.033", + "Aug": "0.034", + "Sep": "0.019", + "Oct": "0.009", + "Nov": "0.003", + "Dec": "0.004", + "All-year": "0.020", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.015", + "Jun": "0.035", + "Jul": "0.031", + "Aug": "0.032", + "Sep": "0.018", + "Oct": "0.007", + "Nov": "0.003", + "Dec": "0.004", + "All-year": "0.019", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.007", + "Apr": "0.011", + "May": "0.008", + "Jun": "0.019", + "Jul": "0.024", + "Aug": "0.022", + "Sep": "0.014", + "Oct": "0.005", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.010", + "May": "0.004", + "Jun": "0.017", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.009", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.006", + "Jun": "0.017", + "Jul": "0.015", + "Aug": "0.019", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.002", + "Apr": "0.008", + "May": "0.006", + "Jun": "0.014", + "Jul": "0.013", + "Aug": "0.017", + "Sep": "0.009", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.003", + "May": "0.000", + "Jun": "0.008", + "Jul": "0.007", + "Aug": "0.013", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.004", + "Jul": "0.000", + "Aug": "0.008", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.008", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.003", + "Jun": "0.008", + "Jul": "0.003", + "Aug": "0.009", + "Sep": "0.004", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.000", + "Jun": "0.008", + "Jul": "0.000", + "Aug": "0.008", + "Sep": "0.003", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.021", + "Feb": "0.042", + "Mar": "0.048", + "Apr": "0.083", + "May": "0.108", + "Jun": "0.171", + "Jul": "0.147", + "Aug": "0.143", + "Sep": "0.090", + "Oct": "0.034", + "Nov": "0.029", + "Dec": "0.035", + "All-year": "0.084", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.021", + "Feb": "0.041", + "Mar": "0.047", + "Apr": "0.083", + "May": "0.105", + "Jun": "0.167", + "Jul": "0.144", + "Aug": "0.140", + "Sep": "0.087", + "Oct": "0.032", + "Nov": "0.028", + "Dec": "0.034", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.020", + "Feb": "0.039", + "Mar": "0.040", + "Apr": "0.073", + "May": "0.097", + "Jun": "0.158", + "Jul": "0.127", + "Aug": "0.130", + "Sep": "0.078", + "Oct": "0.028", + "Nov": "0.026", + "Dec": "0.033", + "All-year": "0.076", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.020", + "Feb": "0.036", + "Mar": "0.038", + "Apr": "0.071", + "May": "0.089", + "Jun": "0.147", + "Jul": "0.124", + "Aug": "0.124", + "Sep": "0.072", + "Oct": "0.027", + "Nov": "0.024", + "Dec": "0.025", + "All-year": "0.072", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.022", + "Mar": "0.024", + "Apr": "0.056", + "May": "0.056", + "Jun": "0.107", + "Jul": "0.082", + "Aug": "0.082", + "Sep": "0.051", + "Oct": "0.019", + "Nov": "0.017", + "Dec": "0.000", + "All-year": "0.054", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.017", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.038", + "Aug": "0.045", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.027", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.015", + "Mar": "0.025", + "Apr": "0.061", + "May": "0.073", + "Jun": "0.095", + "Jul": "0.106", + "Aug": "0.101", + "Sep": "0.059", + "Oct": "0.012", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.071", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.014", + "Mar": "0.024", + "Apr": "0.058", + "May": "0.069", + "Jun": "0.095", + "Jul": "0.102", + "Aug": "0.099", + "Sep": "0.058", + "Oct": "0.012", + "Nov": "0.010", + "Dec": "0.012", + "All-year": "0.070", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.012", + "Mar": "0.024", + "Apr": "0.053", + "May": "0.059", + "Jun": "0.090", + "Jul": "0.090", + "Aug": "0.087", + "Sep": "0.055", + "Oct": "0.012", + "Nov": "0.008", + "Dec": "0.011", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.011", + "Mar": "0.022", + "Apr": "0.048", + "May": "0.051", + "Jun": "0.081", + "Jul": "0.086", + "Aug": "0.082", + "Sep": "0.045", + "Oct": "0.005", + "Nov": "0.000", + "Dec": "0.011", + "All-year": "0.061", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.022", + "May": "0.019", + "Jun": "0.050", + "Jul": "0.037", + "Aug": "0.050", + "Sep": "0.032", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.041", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.028", + "May": "0.035", + "Jun": "0.072", + "Jul": "0.042", + "Aug": "0.066", + "Sep": "0.037", + "Oct": "0.000", + "Nov": "0.001", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.026", + "May": "0.035", + "Jun": "0.067", + "Jul": "0.042", + "Aug": "0.066", + "Sep": "0.036", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.022", + "May": "0.023", + "Jun": "0.053", + "Jul": "0.039", + "Aug": "0.054", + "Sep": "0.032", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.057", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.021", + "May": "0.023", + "Jun": "0.050", + "Jul": "0.032", + "Aug": "0.052", + "Sep": "0.026", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.052", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.019", + "Jul": "0.000", + "Aug": "0.024", + "Sep": "0.017", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.032", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.055", + "Feb": "0.096", + "Mar": "0.108", + "Apr": "0.188", + "May": "0.245", + "Jun": "0.297", + "Jul": "0.302", + "Aug": "0.268", + "Sep": "0.183", + "Oct": "0.079", + "Nov": "0.058", + "Dec": "0.067", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.055", + "Feb": "0.094", + "Mar": "0.106", + "Apr": "0.188", + "May": "0.243", + "Jun": "0.297", + "Jul": "0.299", + "Aug": "0.267", + "Sep": "0.182", + "Oct": "0.076", + "Nov": "0.058", + "Dec": "0.067", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.091", + "Mar": "0.102", + "Apr": "0.178", + "May": "0.234", + "Jun": "0.293", + "Jul": "0.288", + "Aug": "0.261", + "Sep": "0.181", + "Oct": "0.071", + "Nov": "0.055", + "Dec": "0.065", + "All-year": "0.161", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.082", + "Mar": "0.098", + "Apr": "0.176", + "May": "0.231", + "Jun": "0.290", + "Jul": "0.284", + "Aug": "0.255", + "Sep": "0.178", + "Oct": "0.065", + "Nov": "0.052", + "Dec": "0.061", + "All-year": "0.159", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.037", + "Feb": "0.074", + "Mar": "0.088", + "Apr": "0.149", + "May": "0.209", + "Jun": "0.271", + "Jul": "0.246", + "Aug": "0.222", + "Sep": "0.164", + "Oct": "0.052", + "Nov": "0.043", + "Dec": "0.050", + "All-year": "0.145", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.041", + "Mar": "0.046", + "Apr": "0.094", + "May": "0.149", + "Jun": "0.229", + "Jul": "0.181", + "Aug": "0.178", + "Sep": "0.101", + "Oct": "0.040", + "Nov": "0.017", + "Dec": "0.032", + "All-year": "0.106", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.076", + "Jun": "0.088", + "Jul": "0.081", + "Aug": "0.075", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.028", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.035", + "Mar": "0.063", + "Apr": "0.124", + "May": "0.186", + "Jun": "0.218", + "Jul": "0.231", + "Aug": "0.219", + "Sep": "0.116", + "Oct": "0.042", + "Nov": "0.022", + "Dec": "0.025", + "All-year": "0.156", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.035", + "Mar": "0.063", + "Apr": "0.122", + "May": "0.185", + "Jun": "0.215", + "Jul": "0.230", + "Aug": "0.217", + "Sep": "0.115", + "Oct": "0.042", + "Nov": "0.022", + "Dec": "0.025", + "All-year": "0.154", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.016", + "Feb": "0.035", + "Mar": "0.063", + "Apr": "0.117", + "May": "0.175", + "Jun": "0.203", + "Jul": "0.224", + "Aug": "0.212", + "Sep": "0.111", + "Oct": "0.040", + "Nov": "0.020", + "Dec": "0.025", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.028", + "Mar": "0.061", + "Apr": "0.117", + "May": "0.167", + "Jun": "0.200", + "Jul": "0.222", + "Aug": "0.205", + "Sep": "0.105", + "Oct": "0.034", + "Nov": "0.020", + "Dec": "0.019", + "All-year": "0.145", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.022", + "Mar": "0.046", + "Apr": "0.098", + "May": "0.121", + "Jun": "0.190", + "Jul": "0.185", + "Aug": "0.163", + "Sep": "0.087", + "Oct": "0.022", + "Nov": "0.000", + "Dec": "0.019", + "All-year": "0.126", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.048", + "May": "0.081", + "Jun": "0.103", + "Jul": "0.125", + "Aug": "0.101", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.089", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.037", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.007", + "Mar": "0.022", + "Apr": "0.081", + "May": "0.118", + "Jun": "0.143", + "Jul": "0.149", + "Aug": "0.171", + "Sep": "0.086", + "Oct": "0.005", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.139", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.004", + "Mar": "0.020", + "Apr": "0.081", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.149", + "Aug": "0.168", + "Sep": "0.085", + "Oct": "0.005", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.138", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.020", + "Apr": "0.074", + "May": "0.110", + "Jun": "0.140", + "Jul": "0.141", + "Aug": "0.160", + "Sep": "0.083", + "Oct": "0.005", + "Nov": "0.007", + "Dec": "0.000", + "All-year": "0.131", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.013", + "Apr": "0.065", + "May": "0.102", + "Jun": "0.132", + "Jul": "0.134", + "Aug": "0.153", + "Sep": "0.083", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.049", + "May": "0.067", + "Jun": "0.119", + "Jul": "0.083", + "Aug": "0.133", + "Sep": "0.067", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.108", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.040", + "Jul": "0.052", + "Aug": "0.066", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.075", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.022", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.225", + "May": "0.310", + "Jun": "0.389", + "Jul": "0.397", + "Aug": "0.362", + "Sep": "0.226", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.083", + "All-year": "0.217", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.120", + "Mar": "0.136", + "Apr": "0.225", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.392", + "Aug": "0.362", + "Sep": "0.226", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.082", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.117", + "Mar": "0.136", + "Apr": "0.223", + "May": "0.308", + "Jun": "0.384", + "Jul": "0.389", + "Aug": "0.360", + "Sep": "0.224", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.082", + "All-year": "0.212", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.117", + "Mar": "0.136", + "Apr": "0.219", + "May": "0.300", + "Jun": "0.383", + "Jul": "0.389", + "Aug": "0.357", + "Sep": "0.224", + "Oct": "0.103", + "Nov": "0.075", + "Dec": "0.079", + "All-year": "0.210", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.106", + "Mar": "0.118", + "Apr": "0.212", + "May": "0.288", + "Jun": "0.352", + "Jul": "0.370", + "Aug": "0.344", + "Sep": "0.208", + "Oct": "0.090", + "Nov": "0.075", + "Dec": "0.064", + "All-year": "0.199", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.075", + "Mar": "0.097", + "Apr": "0.160", + "May": "0.231", + "Jun": "0.289", + "Jul": "0.310", + "Aug": "0.294", + "Sep": "0.185", + "Oct": "0.058", + "Nov": "0.044", + "Dec": "0.047", + "All-year": "0.164", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.090", + "May": "0.159", + "Jun": "0.215", + "Jul": "0.233", + "Aug": "0.178", + "Sep": "0.101", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.102", + "Jun": "0.123", + "Jul": "0.125", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.076", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.059", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.243", + "Jun": "0.290", + "Jul": "0.325", + "Aug": "0.289", + "Sep": "0.153", + "Oct": "0.064", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.059", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.243", + "Jun": "0.288", + "Jul": "0.324", + "Aug": "0.288", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.059", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.236", + "Jun": "0.285", + "Jul": "0.317", + "Aug": "0.287", + "Sep": "0.149", + "Oct": "0.063", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.202", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.054", + "Mar": "0.083", + "Apr": "0.169", + "May": "0.233", + "Jun": "0.282", + "Jul": "0.312", + "Aug": "0.287", + "Sep": "0.146", + "Oct": "0.060", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.197", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.035", + "Mar": "0.066", + "Apr": "0.147", + "May": "0.198", + "Jun": "0.266", + "Jul": "0.281", + "Aug": "0.265", + "Sep": "0.144", + "Oct": "0.048", + "Nov": "0.019", + "Dec": "0.019", + "All-year": "0.183", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.040", + "Apr": "0.088", + "May": "0.161", + "Jun": "0.223", + "Jul": "0.217", + "Aug": "0.208", + "Sep": "0.102", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.146", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.085", + "Jun": "0.099", + "Jul": "0.112", + "Aug": "0.110", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.094", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.056", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.189", + "Jul": "0.224", + "Aug": "0.215", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.013", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.189", + "Jul": "0.222", + "Aug": "0.215", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.013", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.186", + "Jul": "0.216", + "Aug": "0.207", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.013", + "All-year": "0.172", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.186", + "Jul": "0.216", + "Aug": "0.199", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.013", + "All-year": "0.171", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.154", + "Jul": "0.168", + "Aug": "0.176", + "Sep": "0.076", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.158", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.074", + "Jun": "0.092", + "Jul": "0.147", + "Aug": "0.101", + "Sep": "0.043", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.122", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.067", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.075", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.042", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.409", + "Aug": "0.368", + "Sep": "0.230", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.407", + "Aug": "0.368", + "Sep": "0.230", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.119", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.403", + "Aug": "0.368", + "Sep": "0.227", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.306", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.360", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.077", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.108", + "Mar": "0.120", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.351", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.047", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.202", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.134", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.339", + "Aug": "0.294", + "Sep": "0.158", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.339", + "Aug": "0.294", + "Sep": "0.158", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.331", + "Aug": "0.294", + "Sep": "0.154", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.325", + "Aug": "0.290", + "Sep": "0.151", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.288", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.188", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.232", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.180", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.180", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.218", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.176", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.174", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.411", + "Aug": "0.369", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.408", + "Aug": "0.368", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.404", + "Aug": "0.368", + "Sep": "0.228", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.308", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.362", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.078", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.109", + "Mar": "0.122", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.353", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.049", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.203", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.141", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.333", + "Aug": "0.294", + "Sep": "0.156", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.327", + "Aug": "0.290", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.289", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.189", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.236", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.219", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.175", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.411", + "Aug": "0.369", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.408", + "Aug": "0.368", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.404", + "Aug": "0.368", + "Sep": "0.228", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.308", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.362", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.078", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.109", + "Mar": "0.122", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.353", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.049", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.203", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.141", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.333", + "Aug": "0.294", + "Sep": "0.156", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.327", + "Aug": "0.290", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.289", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.189", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.236", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.219", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.175", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.411", + "Aug": "0.369", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.408", + "Aug": "0.368", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.404", + "Aug": "0.368", + "Sep": "0.228", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.308", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.362", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.078", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.109", + "Mar": "0.122", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.353", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.049", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.203", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.141", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.333", + "Aug": "0.294", + "Sep": "0.156", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.327", + "Aug": "0.290", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.289", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.189", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.236", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.219", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.175", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.411", + "Aug": "0.369", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.408", + "Aug": "0.368", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.404", + "Aug": "0.368", + "Sep": "0.228", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.308", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.362", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.078", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.109", + "Mar": "0.122", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.353", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.049", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.203", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.141", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.333", + "Aug": "0.294", + "Sep": "0.156", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.327", + "Aug": "0.290", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.289", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.189", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.236", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.219", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.175", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.411", + "Aug": "0.369", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.408", + "Aug": "0.368", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.404", + "Aug": "0.368", + "Sep": "0.228", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.308", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.362", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.078", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.109", + "Mar": "0.122", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.353", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.049", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.203", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.141", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.333", + "Aug": "0.294", + "Sep": "0.156", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.327", + "Aug": "0.290", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.289", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.189", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.236", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.219", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.175", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.411", + "Aug": "0.369", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.086", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.121", + "Mar": "0.138", + "Apr": "0.228", + "May": "0.315", + "Jun": "0.392", + "Jul": "0.408", + "Aug": "0.368", + "Sep": "0.231", + "Oct": "0.110", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.120", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.310", + "Jun": "0.388", + "Jul": "0.404", + "Aug": "0.368", + "Sep": "0.228", + "Oct": "0.105", + "Nov": "0.080", + "Dec": "0.085", + "All-year": "0.216", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.118", + "Mar": "0.138", + "Apr": "0.226", + "May": "0.308", + "Jun": "0.388", + "Jul": "0.401", + "Aug": "0.362", + "Sep": "0.227", + "Oct": "0.103", + "Nov": "0.078", + "Dec": "0.083", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.109", + "Mar": "0.122", + "Apr": "0.217", + "May": "0.294", + "Jun": "0.367", + "Jul": "0.377", + "Aug": "0.353", + "Sep": "0.212", + "Oct": "0.096", + "Nov": "0.076", + "Dec": "0.066", + "All-year": "0.203", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.078", + "Mar": "0.097", + "Apr": "0.162", + "May": "0.238", + "Jun": "0.298", + "Jul": "0.321", + "Aug": "0.306", + "Sep": "0.188", + "Oct": "0.058", + "Nov": "0.049", + "Dec": "0.051", + "All-year": "0.171", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.094", + "May": "0.168", + "Jun": "0.221", + "Jul": "0.251", + "Aug": "0.203", + "Sep": "0.112", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.106", + "Jun": "0.144", + "Jul": "0.141", + "Aug": "0.147", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.083", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.185", + "May": "0.244", + "Jun": "0.292", + "Jul": "0.341", + "Aug": "0.294", + "Sep": "0.160", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.207", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.061", + "Mar": "0.083", + "Apr": "0.183", + "May": "0.237", + "Jun": "0.290", + "Jul": "0.333", + "Aug": "0.294", + "Sep": "0.156", + "Oct": "0.067", + "Nov": "0.029", + "Dec": "0.032", + "All-year": "0.205", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.057", + "Mar": "0.083", + "Apr": "0.174", + "May": "0.233", + "Jun": "0.283", + "Jul": "0.327", + "Aug": "0.290", + "Sep": "0.153", + "Oct": "0.063", + "Nov": "0.027", + "Dec": "0.032", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.071", + "Apr": "0.149", + "May": "0.202", + "Jun": "0.268", + "Jul": "0.289", + "Aug": "0.268", + "Sep": "0.144", + "Oct": "0.050", + "Nov": "0.019", + "Dec": "0.026", + "All-year": "0.189", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.041", + "Apr": "0.096", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.236", + "Aug": "0.215", + "Sep": "0.104", + "Oct": "0.016", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.152", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.034", + "May": "0.091", + "Jun": "0.128", + "Jul": "0.145", + "Aug": "0.139", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.099", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.103", + "Aug": "0.049", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.065", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.122", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.230", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.013", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.161", + "Jun": "0.194", + "Jul": "0.227", + "Aug": "0.223", + "Sep": "0.112", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.181", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.156", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.219", + "Sep": "0.104", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.015", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.024", + "Apr": "0.119", + "May": "0.149", + "Jun": "0.192", + "Jul": "0.222", + "Aug": "0.210", + "Sep": "0.104", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.015", + "All-year": "0.175", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.022", + "Apr": "0.097", + "May": "0.124", + "Jun": "0.161", + "Jul": "0.173", + "Aug": "0.188", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.162", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.035", + "May": "0.075", + "Jun": "0.094", + "Jul": "0.149", + "Aug": "0.103", + "Sep": "0.053", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.074", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.047", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.005", + "Feb": "0.011", + "Mar": "0.015", + "Apr": "0.022", + "May": "0.024", + "Jun": "0.044", + "Jul": "0.037", + "Aug": "0.038", + "Sep": "0.022", + "Oct": "0.012", + "Nov": "0.008", + "Dec": "0.005", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.005", + "Feb": "0.011", + "Mar": "0.013", + "Apr": "0.019", + "May": "0.022", + "Jun": "0.044", + "Jul": "0.034", + "Aug": "0.036", + "Sep": "0.021", + "Oct": "0.012", + "Nov": "0.007", + "Dec": "0.005", + "All-year": "0.022", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.015", + "May": "0.011", + "Jun": "0.027", + "Jul": "0.028", + "Aug": "0.028", + "Sep": "0.017", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.008", + "Apr": "0.011", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.014", + "Aug": "0.019", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.004", + "Mar": "0.005", + "Apr": "0.017", + "May": "0.013", + "Jun": "0.025", + "Jul": "0.018", + "Aug": "0.024", + "Sep": "0.016", + "Oct": "0.002", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.020", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.001", + "Mar": "0.005", + "Apr": "0.015", + "May": "0.012", + "Jun": "0.023", + "Jul": "0.016", + "Aug": "0.023", + "Sep": "0.015", + "Oct": "0.001", + "Nov": "0.003", + "Dec": "0.001", + "All-year": "0.018", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.007", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.007", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.010", + "Jul": "0.004", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.006", + "May": "0.005", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.013", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.005", + "Jun": "0.010", + "Jul": "0.005", + "Aug": "0.011", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.015", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.008", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.007", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.001", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.036", + "Feb": "0.055", + "Mar": "0.070", + "Apr": "0.118", + "May": "0.137", + "Jun": "0.194", + "Jul": "0.160", + "Aug": "0.154", + "Sep": "0.103", + "Oct": "0.044", + "Nov": "0.044", + "Dec": "0.042", + "All-year": "0.103", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.034", + "Feb": "0.053", + "Mar": "0.070", + "Apr": "0.114", + "May": "0.135", + "Jun": "0.191", + "Jul": "0.157", + "Aug": "0.151", + "Sep": "0.101", + "Oct": "0.044", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.101", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.029", + "Feb": "0.048", + "Mar": "0.057", + "Apr": "0.099", + "May": "0.122", + "Jun": "0.178", + "Jul": "0.140", + "Aug": "0.140", + "Sep": "0.097", + "Oct": "0.040", + "Nov": "0.038", + "Dec": "0.041", + "All-year": "0.094", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.026", + "Feb": "0.045", + "Mar": "0.053", + "Apr": "0.094", + "May": "0.106", + "Jun": "0.172", + "Jul": "0.140", + "Aug": "0.130", + "Sep": "0.088", + "Oct": "0.037", + "Nov": "0.034", + "Dec": "0.036", + "All-year": "0.089", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.042", + "Mar": "0.033", + "Apr": "0.071", + "May": "0.064", + "Jun": "0.125", + "Jul": "0.092", + "Aug": "0.096", + "Sep": "0.067", + "Oct": "0.020", + "Nov": "0.019", + "Dec": "0.017", + "All-year": "0.063", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.038", + "May": "0.000", + "Jun": "0.074", + "Jul": "0.039", + "Aug": "0.052", + "Sep": "0.017", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.019", + "Feb": "0.020", + "Mar": "0.043", + "Apr": "0.088", + "May": "0.106", + "Jun": "0.127", + "Jul": "0.133", + "Aug": "0.115", + "Sep": "0.076", + "Oct": "0.022", + "Nov": "0.026", + "Dec": "0.017", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.018", + "Feb": "0.020", + "Mar": "0.042", + "Apr": "0.088", + "May": "0.103", + "Jun": "0.125", + "Jul": "0.126", + "Aug": "0.112", + "Sep": "0.075", + "Oct": "0.021", + "Nov": "0.025", + "Dec": "0.017", + "All-year": "0.089", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.018", + "Mar": "0.038", + "Apr": "0.076", + "May": "0.094", + "Jun": "0.116", + "Jul": "0.112", + "Aug": "0.108", + "Sep": "0.071", + "Oct": "0.018", + "Nov": "0.024", + "Dec": "0.017", + "All-year": "0.079", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.018", + "Mar": "0.035", + "Apr": "0.071", + "May": "0.081", + "Jun": "0.108", + "Jul": "0.099", + "Aug": "0.102", + "Sep": "0.068", + "Oct": "0.015", + "Nov": "0.021", + "Dec": "0.014", + "All-year": "0.075", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.008", + "Apr": "0.040", + "May": "0.042", + "Jun": "0.081", + "Jul": "0.056", + "Aug": "0.062", + "Sep": "0.037", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.052", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.035", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.020", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.003", + "Mar": "0.016", + "Apr": "0.060", + "May": "0.055", + "Jun": "0.103", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.044", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.013", + "Apr": "0.054", + "May": "0.055", + "Jun": "0.103", + "Jul": "0.062", + "Aug": "0.082", + "Sep": "0.044", + "Oct": "0.009", + "Nov": "0.007", + "Dec": "0.004", + "All-year": "0.084", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.008", + "Apr": "0.054", + "May": "0.048", + "Jun": "0.090", + "Jul": "0.058", + "Aug": "0.074", + "Sep": "0.040", + "Oct": "0.005", + "Nov": "0.007", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.008", + "Apr": "0.053", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.056", + "Sep": "0.032", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.071", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.018", + "May": "0.019", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.147", + "Mar": "0.167", + "Apr": "0.265", + "May": "0.329", + "Jun": "0.374", + "Jul": "0.371", + "Aug": "0.335", + "Sep": "0.255", + "Oct": "0.124", + "Nov": "0.100", + "Dec": "0.099", + "All-year": "0.225", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.143", + "Mar": "0.167", + "Apr": "0.263", + "May": "0.326", + "Jun": "0.374", + "Jul": "0.367", + "Aug": "0.334", + "Sep": "0.255", + "Oct": "0.122", + "Nov": "0.099", + "Dec": "0.097", + "All-year": "0.223", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.093", + "Feb": "0.141", + "Mar": "0.157", + "Apr": "0.255", + "May": "0.316", + "Jun": "0.357", + "Jul": "0.360", + "Aug": "0.328", + "Sep": "0.247", + "Oct": "0.118", + "Nov": "0.096", + "Dec": "0.093", + "All-year": "0.215", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.089", + "Feb": "0.132", + "Mar": "0.156", + "Apr": "0.249", + "May": "0.305", + "Jun": "0.352", + "Jul": "0.347", + "Aug": "0.317", + "Sep": "0.239", + "Oct": "0.109", + "Nov": "0.087", + "Dec": "0.088", + "All-year": "0.210", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.095", + "Mar": "0.133", + "Apr": "0.206", + "May": "0.273", + "Jun": "0.319", + "Jul": "0.308", + "Aug": "0.274", + "Sep": "0.208", + "Oct": "0.089", + "Nov": "0.069", + "Dec": "0.077", + "All-year": "0.188", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.065", + "Mar": "0.087", + "Apr": "0.136", + "May": "0.197", + "Jun": "0.273", + "Jul": "0.239", + "Aug": "0.211", + "Sep": "0.131", + "Oct": "0.045", + "Nov": "0.045", + "Dec": "0.042", + "All-year": "0.142", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.072", + "May": "0.093", + "Jun": "0.133", + "Jul": "0.102", + "Aug": "0.083", + "Sep": "0.070", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.051", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.038", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.057", + "Mar": "0.108", + "Apr": "0.204", + "May": "0.266", + "Jun": "0.316", + "Jul": "0.299", + "Aug": "0.282", + "Sep": "0.169", + "Oct": "0.072", + "Nov": "0.065", + "Dec": "0.056", + "All-year": "0.212", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.057", + "Mar": "0.108", + "Apr": "0.203", + "May": "0.265", + "Jun": "0.310", + "Jul": "0.295", + "Aug": "0.282", + "Sep": "0.169", + "Oct": "0.071", + "Nov": "0.065", + "Dec": "0.054", + "All-year": "0.210", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.048", + "Feb": "0.054", + "Mar": "0.102", + "Apr": "0.188", + "May": "0.254", + "Jun": "0.293", + "Jul": "0.282", + "Aug": "0.275", + "Sep": "0.155", + "Oct": "0.067", + "Nov": "0.063", + "Dec": "0.052", + "All-year": "0.203", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.050", + "Mar": "0.091", + "Apr": "0.183", + "May": "0.248", + "Jun": "0.290", + "Jul": "0.275", + "Aug": "0.263", + "Sep": "0.152", + "Oct": "0.056", + "Nov": "0.057", + "Dec": "0.047", + "All-year": "0.199", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.027", + "Feb": "0.032", + "Mar": "0.080", + "Apr": "0.150", + "May": "0.212", + "Jun": "0.259", + "Jul": "0.234", + "Aug": "0.202", + "Sep": "0.142", + "Oct": "0.041", + "Nov": "0.041", + "Dec": "0.033", + "All-year": "0.169", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.037", + "Apr": "0.088", + "May": "0.133", + "Jun": "0.165", + "Jul": "0.161", + "Aug": "0.144", + "Sep": "0.093", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.116", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.032", + "Aug": "0.032", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.054", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.025", + "Mar": "0.065", + "Apr": "0.165", + "May": "0.194", + "Jun": "0.226", + "Jul": "0.216", + "Aug": "0.237", + "Sep": "0.137", + "Oct": "0.048", + "Nov": "0.026", + "Dec": "0.020", + "All-year": "0.189", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.025", + "Mar": "0.063", + "Apr": "0.163", + "May": "0.185", + "Jun": "0.226", + "Jul": "0.211", + "Aug": "0.233", + "Sep": "0.136", + "Oct": "0.046", + "Nov": "0.025", + "Dec": "0.019", + "All-year": "0.188", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.018", + "Mar": "0.055", + "Apr": "0.154", + "May": "0.185", + "Jun": "0.218", + "Jul": "0.203", + "Aug": "0.227", + "Sep": "0.135", + "Oct": "0.042", + "Nov": "0.025", + "Dec": "0.016", + "All-year": "0.180", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.018", + "Mar": "0.051", + "Apr": "0.143", + "May": "0.179", + "Jun": "0.218", + "Jul": "0.198", + "Aug": "0.214", + "Sep": "0.114", + "Oct": "0.030", + "Nov": "0.019", + "Dec": "0.009", + "All-year": "0.177", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.031", + "Apr": "0.121", + "May": "0.157", + "Jun": "0.190", + "Jul": "0.155", + "Aug": "0.165", + "Sep": "0.090", + "Oct": "0.020", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.155", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.043", + "May": "0.081", + "Jun": "0.100", + "Jul": "0.056", + "Aug": "0.067", + "Sep": "0.036", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.101", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.031", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.159", + "Feb": "0.208", + "Mar": "0.261", + "Apr": "0.379", + "May": "0.468", + "Jun": "0.538", + "Jul": "0.589", + "Aug": "0.536", + "Sep": "0.379", + "Oct": "0.199", + "Nov": "0.164", + "Dec": "0.147", + "All-year": "0.341", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.157", + "Feb": "0.206", + "Mar": "0.261", + "Apr": "0.379", + "May": "0.467", + "Jun": "0.538", + "Jul": "0.587", + "Aug": "0.535", + "Sep": "0.378", + "Oct": "0.195", + "Nov": "0.162", + "Dec": "0.146", + "All-year": "0.340", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.156", + "Feb": "0.206", + "Mar": "0.251", + "Apr": "0.369", + "May": "0.464", + "Jun": "0.532", + "Jul": "0.575", + "Aug": "0.529", + "Sep": "0.376", + "Oct": "0.191", + "Nov": "0.158", + "Dec": "0.142", + "All-year": "0.333", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.142", + "Feb": "0.199", + "Mar": "0.246", + "Apr": "0.368", + "May": "0.459", + "Jun": "0.524", + "Jul": "0.565", + "Aug": "0.520", + "Sep": "0.369", + "Oct": "0.182", + "Nov": "0.158", + "Dec": "0.138", + "All-year": "0.329", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.135", + "Feb": "0.187", + "Mar": "0.226", + "Apr": "0.358", + "May": "0.431", + "Jun": "0.510", + "Jul": "0.537", + "Aug": "0.493", + "Sep": "0.353", + "Oct": "0.169", + "Nov": "0.132", + "Dec": "0.120", + "All-year": "0.309", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.086", + "Feb": "0.127", + "Mar": "0.194", + "Apr": "0.306", + "May": "0.364", + "Jun": "0.447", + "Jul": "0.501", + "Aug": "0.433", + "Sep": "0.286", + "Oct": "0.137", + "Nov": "0.090", + "Dec": "0.097", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.083", + "Mar": "0.118", + "Apr": "0.192", + "May": "0.234", + "Jun": "0.327", + "Jul": "0.370", + "Aug": "0.316", + "Sep": "0.179", + "Oct": "0.067", + "Nov": "0.067", + "Dec": "0.032", + "All-year": "0.186", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.049", + "Apr": "0.108", + "May": "0.200", + "Jun": "0.254", + "Jul": "0.237", + "Aug": "0.221", + "Sep": "0.109", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.130", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.073", + "Feb": "0.108", + "Mar": "0.173", + "Apr": "0.327", + "May": "0.402", + "Jun": "0.495", + "Jul": "0.481", + "Aug": "0.446", + "Sep": "0.290", + "Oct": "0.120", + "Nov": "0.085", + "Dec": "0.079", + "All-year": "0.315", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.108", + "Mar": "0.172", + "Apr": "0.327", + "May": "0.402", + "Jun": "0.491", + "Jul": "0.478", + "Aug": "0.445", + "Sep": "0.290", + "Oct": "0.118", + "Nov": "0.085", + "Dec": "0.078", + "All-year": "0.314", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.070", + "Feb": "0.106", + "Mar": "0.172", + "Apr": "0.315", + "May": "0.394", + "Jun": "0.479", + "Jul": "0.468", + "Aug": "0.440", + "Sep": "0.282", + "Oct": "0.112", + "Nov": "0.082", + "Dec": "0.075", + "All-year": "0.311", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.070", + "Feb": "0.106", + "Mar": "0.169", + "Apr": "0.311", + "May": "0.394", + "Jun": "0.476", + "Jul": "0.462", + "Aug": "0.434", + "Sep": "0.274", + "Oct": "0.109", + "Nov": "0.081", + "Dec": "0.068", + "All-year": "0.308", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.100", + "Mar": "0.136", + "Apr": "0.290", + "May": "0.372", + "Jun": "0.451", + "Jul": "0.427", + "Aug": "0.402", + "Sep": "0.241", + "Oct": "0.089", + "Nov": "0.066", + "Dec": "0.061", + "All-year": "0.290", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.036", + "Feb": "0.078", + "Mar": "0.117", + "Apr": "0.231", + "May": "0.286", + "Jun": "0.354", + "Jul": "0.356", + "Aug": "0.344", + "Sep": "0.187", + "Oct": "0.058", + "Nov": "0.038", + "Dec": "0.038", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.169", + "Jun": "0.203", + "Jul": "0.242", + "Aug": "0.197", + "Sep": "0.105", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.167", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.055", + "Jun": "0.119", + "Jul": "0.115", + "Aug": "0.125", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.105", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.033", + "Mar": "0.098", + "Apr": "0.263", + "May": "0.312", + "Jun": "0.325", + "Jul": "0.363", + "Aug": "0.356", + "Sep": "0.196", + "Oct": "0.079", + "Nov": "0.053", + "Dec": "0.030", + "All-year": "0.290", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.013", + "Feb": "0.033", + "Mar": "0.095", + "Apr": "0.260", + "May": "0.309", + "Jun": "0.325", + "Jul": "0.363", + "Aug": "0.355", + "Sep": "0.196", + "Oct": "0.079", + "Nov": "0.053", + "Dec": "0.030", + "All-year": "0.289", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.033", + "Mar": "0.089", + "Apr": "0.260", + "May": "0.309", + "Jun": "0.308", + "Jul": "0.359", + "Aug": "0.340", + "Sep": "0.193", + "Oct": "0.075", + "Nov": "0.051", + "Dec": "0.030", + "All-year": "0.286", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.033", + "Mar": "0.087", + "Apr": "0.246", + "May": "0.309", + "Jun": "0.301", + "Jul": "0.351", + "Aug": "0.340", + "Sep": "0.193", + "Oct": "0.063", + "Nov": "0.039", + "Dec": "0.030", + "All-year": "0.281", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.028", + "Mar": "0.074", + "Apr": "0.221", + "May": "0.280", + "Jun": "0.292", + "Jul": "0.327", + "Aug": "0.293", + "Sep": "0.176", + "Oct": "0.054", + "Nov": "0.028", + "Dec": "0.000", + "All-year": "0.254", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.043", + "Apr": "0.171", + "May": "0.183", + "Jun": "0.247", + "Jul": "0.258", + "Aug": "0.227", + "Sep": "0.132", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.210", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.082", + "Jun": "0.078", + "Jul": "0.103", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.120", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.170", + "Feb": "0.223", + "Mar": "0.280", + "Apr": "0.401", + "May": "0.497", + "Jun": "0.581", + "Jul": "0.636", + "Aug": "0.577", + "Sep": "0.406", + "Oct": "0.220", + "Nov": "0.176", + "Dec": "0.156", + "All-year": "0.366", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.170", + "Feb": "0.221", + "Mar": "0.280", + "Apr": "0.401", + "May": "0.495", + "Jun": "0.581", + "Jul": "0.636", + "Aug": "0.576", + "Sep": "0.404", + "Oct": "0.218", + "Nov": "0.176", + "Dec": "0.156", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.168", + "Feb": "0.219", + "Mar": "0.272", + "Apr": "0.395", + "May": "0.495", + "Jun": "0.576", + "Jul": "0.628", + "Aug": "0.575", + "Sep": "0.401", + "Oct": "0.215", + "Nov": "0.174", + "Dec": "0.154", + "All-year": "0.362", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.165", + "Feb": "0.219", + "Mar": "0.267", + "Apr": "0.394", + "May": "0.494", + "Jun": "0.574", + "Jul": "0.624", + "Aug": "0.572", + "Sep": "0.394", + "Oct": "0.208", + "Nov": "0.174", + "Dec": "0.148", + "All-year": "0.359", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.211", + "Mar": "0.254", + "Apr": "0.381", + "May": "0.482", + "Jun": "0.560", + "Jul": "0.603", + "Aug": "0.544", + "Sep": "0.392", + "Oct": "0.192", + "Nov": "0.152", + "Dec": "0.132", + "All-year": "0.342", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.164", + "Mar": "0.220", + "Apr": "0.343", + "May": "0.419", + "Jun": "0.519", + "Jul": "0.554", + "Aug": "0.519", + "Sep": "0.336", + "Oct": "0.151", + "Nov": "0.124", + "Dec": "0.101", + "All-year": "0.301", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.073", + "Feb": "0.091", + "Mar": "0.144", + "Apr": "0.227", + "May": "0.342", + "Jun": "0.408", + "Jul": "0.422", + "Aug": "0.431", + "Sep": "0.215", + "Oct": "0.091", + "Nov": "0.072", + "Dec": "0.067", + "All-year": "0.227", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.146", + "May": "0.218", + "Jun": "0.303", + "Jul": "0.303", + "Aug": "0.345", + "Sep": "0.147", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.176", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.357", + "May": "0.426", + "Jun": "0.535", + "Jul": "0.523", + "Aug": "0.474", + "Sep": "0.320", + "Oct": "0.136", + "Nov": "0.092", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.356", + "May": "0.426", + "Jun": "0.533", + "Jul": "0.523", + "Aug": "0.472", + "Sep": "0.320", + "Oct": "0.136", + "Nov": "0.092", + "Dec": "0.094", + "All-year": "0.335", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.111", + "Mar": "0.200", + "Apr": "0.349", + "May": "0.421", + "Jun": "0.530", + "Jul": "0.511", + "Aug": "0.469", + "Sep": "0.310", + "Oct": "0.132", + "Nov": "0.092", + "Dec": "0.091", + "All-year": "0.331", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.111", + "Mar": "0.197", + "Apr": "0.346", + "May": "0.421", + "Jun": "0.526", + "Jul": "0.505", + "Aug": "0.467", + "Sep": "0.299", + "Oct": "0.124", + "Nov": "0.087", + "Dec": "0.087", + "All-year": "0.328", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.109", + "Mar": "0.174", + "Apr": "0.320", + "May": "0.407", + "Jun": "0.499", + "Jul": "0.485", + "Aug": "0.446", + "Sep": "0.289", + "Oct": "0.114", + "Nov": "0.067", + "Dec": "0.081", + "All-year": "0.317", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.089", + "Mar": "0.129", + "Apr": "0.284", + "May": "0.358", + "Jun": "0.427", + "Jul": "0.441", + "Aug": "0.388", + "Sep": "0.218", + "Oct": "0.067", + "Nov": "0.040", + "Dec": "0.041", + "All-year": "0.285", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.035", + "Apr": "0.138", + "May": "0.212", + "Jun": "0.273", + "Jul": "0.322", + "Aug": "0.315", + "Sep": "0.142", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.209", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.107", + "May": "0.133", + "Jun": "0.222", + "Jul": "0.228", + "Aug": "0.156", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.156", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.019", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.290", + "May": "0.319", + "Jun": "0.368", + "Jul": "0.403", + "Aug": "0.392", + "Sep": "0.199", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.036", + "All-year": "0.318", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.019", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.288", + "May": "0.316", + "Jun": "0.368", + "Jul": "0.403", + "Aug": "0.391", + "Sep": "0.199", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.036", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.090", + "Apr": "0.278", + "May": "0.316", + "Jun": "0.357", + "Jul": "0.399", + "Aug": "0.387", + "Sep": "0.196", + "Oct": "0.086", + "Nov": "0.051", + "Dec": "0.036", + "All-year": "0.315", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.012", + "Feb": "0.034", + "Mar": "0.090", + "Apr": "0.264", + "May": "0.316", + "Jun": "0.357", + "Jul": "0.382", + "Aug": "0.372", + "Sep": "0.196", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.036", + "All-year": "0.310", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.077", + "Apr": "0.256", + "May": "0.316", + "Jun": "0.336", + "Jul": "0.358", + "Aug": "0.356", + "Sep": "0.181", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.020", + "All-year": "0.298", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.046", + "Apr": "0.208", + "May": "0.192", + "Jun": "0.278", + "Jul": "0.277", + "Aug": "0.280", + "Sep": "0.150", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.256", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.085", + "May": "0.091", + "Jun": "0.221", + "Jul": "0.185", + "Aug": "0.134", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.185", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.098", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.119", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.226", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.510", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.581", + "Sep": "0.415", + "Oct": "0.228", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.224", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.509", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.581", + "Sep": "0.415", + "Oct": "0.226", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.222", + "Mar": "0.278", + "Apr": "0.406", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.638", + "Aug": "0.581", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.174", + "Dec": "0.161", + "All-year": "0.367", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.166", + "Feb": "0.222", + "Mar": "0.269", + "Apr": "0.406", + "May": "0.504", + "Jun": "0.585", + "Jul": "0.638", + "Aug": "0.578", + "Sep": "0.409", + "Oct": "0.218", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.211", + "Mar": "0.259", + "Apr": "0.392", + "May": "0.493", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.558", + "Sep": "0.402", + "Oct": "0.196", + "Nov": "0.155", + "Dec": "0.143", + "All-year": "0.348", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.123", + "Feb": "0.167", + "Mar": "0.222", + "Apr": "0.360", + "May": "0.435", + "Jun": "0.533", + "Jul": "0.582", + "Aug": "0.529", + "Sep": "0.351", + "Oct": "0.159", + "Nov": "0.128", + "Dec": "0.116", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.091", + "Mar": "0.147", + "Apr": "0.254", + "May": "0.361", + "Jun": "0.422", + "Jul": "0.462", + "Aug": "0.442", + "Sep": "0.245", + "Oct": "0.099", + "Nov": "0.078", + "Dec": "0.067", + "All-year": "0.239", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.150", + "May": "0.263", + "Jun": "0.326", + "Jul": "0.358", + "Aug": "0.353", + "Sep": "0.206", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.190", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.431", + "Jun": "0.539", + "Jul": "0.528", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.430", + "Jun": "0.538", + "Jul": "0.527", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.142", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.203", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.519", + "Aug": "0.484", + "Sep": "0.328", + "Oct": "0.140", + "Nov": "0.097", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.516", + "Aug": "0.475", + "Sep": "0.312", + "Oct": "0.128", + "Nov": "0.091", + "Dec": "0.094", + "All-year": "0.334", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.110", + "Mar": "0.187", + "Apr": "0.328", + "May": "0.413", + "Jun": "0.516", + "Jul": "0.497", + "Aug": "0.460", + "Sep": "0.300", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.087", + "All-year": "0.324", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.096", + "Mar": "0.136", + "Apr": "0.284", + "May": "0.361", + "Jun": "0.458", + "Jul": "0.458", + "Aug": "0.406", + "Sep": "0.237", + "Oct": "0.086", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.292", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.076", + "Apr": "0.144", + "May": "0.239", + "Jun": "0.275", + "Jul": "0.359", + "Aug": "0.325", + "Sep": "0.147", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.219", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.134", + "Jun": "0.238", + "Jul": "0.247", + "Aug": "0.202", + "Sep": "0.107", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.170", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.297", + "May": "0.319", + "Jun": "0.375", + "Jul": "0.415", + "Aug": "0.402", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.294", + "May": "0.316", + "Jun": "0.375", + "Jul": "0.413", + "Aug": "0.401", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.290", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.413", + "Aug": "0.398", + "Sep": "0.197", + "Oct": "0.086", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.322", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.269", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.413", + "Aug": "0.387", + "Sep": "0.197", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.038", + "All-year": "0.316", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.079", + "Apr": "0.260", + "May": "0.316", + "Jun": "0.344", + "Jul": "0.386", + "Aug": "0.372", + "Sep": "0.182", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.022", + "All-year": "0.306", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.210", + "May": "0.195", + "Jun": "0.279", + "Jul": "0.317", + "Aug": "0.296", + "Sep": "0.154", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.270", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.086", + "May": "0.091", + "Jun": "0.225", + "Jul": "0.253", + "Aug": "0.202", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.112", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.137", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.226", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.510", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.585", + "Sep": "0.416", + "Oct": "0.228", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.372", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.224", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.509", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.226", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.222", + "Mar": "0.280", + "Apr": "0.406", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.174", + "Dec": "0.162", + "All-year": "0.368", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.222", + "Mar": "0.273", + "Apr": "0.406", + "May": "0.504", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.581", + "Sep": "0.410", + "Oct": "0.218", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.156", + "Feb": "0.211", + "Mar": "0.260", + "Apr": "0.392", + "May": "0.493", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.560", + "Sep": "0.403", + "Oct": "0.196", + "Nov": "0.155", + "Dec": "0.143", + "All-year": "0.349", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.123", + "Feb": "0.167", + "Mar": "0.222", + "Apr": "0.360", + "May": "0.435", + "Jun": "0.533", + "Jul": "0.582", + "Aug": "0.530", + "Sep": "0.351", + "Oct": "0.163", + "Nov": "0.128", + "Dec": "0.116", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.091", + "Mar": "0.147", + "Apr": "0.254", + "May": "0.363", + "Jun": "0.422", + "Jul": "0.462", + "Aug": "0.442", + "Sep": "0.245", + "Oct": "0.099", + "Nov": "0.078", + "Dec": "0.067", + "All-year": "0.240", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.150", + "May": "0.263", + "Jun": "0.326", + "Jul": "0.358", + "Aug": "0.353", + "Sep": "0.206", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.190", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.431", + "Jun": "0.539", + "Jul": "0.529", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.430", + "Jun": "0.538", + "Jul": "0.528", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.203", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.520", + "Aug": "0.484", + "Sep": "0.331", + "Oct": "0.141", + "Nov": "0.097", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.517", + "Aug": "0.475", + "Sep": "0.316", + "Oct": "0.130", + "Nov": "0.091", + "Dec": "0.094", + "All-year": "0.334", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.110", + "Mar": "0.187", + "Apr": "0.328", + "May": "0.413", + "Jun": "0.516", + "Jul": "0.497", + "Aug": "0.460", + "Sep": "0.301", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.087", + "All-year": "0.324", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.096", + "Mar": "0.136", + "Apr": "0.284", + "May": "0.361", + "Jun": "0.458", + "Jul": "0.459", + "Aug": "0.408", + "Sep": "0.245", + "Oct": "0.086", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.076", + "Apr": "0.144", + "May": "0.239", + "Jun": "0.293", + "Jul": "0.359", + "Aug": "0.325", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.220", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.134", + "Jun": "0.238", + "Jul": "0.249", + "Aug": "0.205", + "Sep": "0.107", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.170", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.297", + "May": "0.319", + "Jun": "0.375", + "Jul": "0.417", + "Aug": "0.402", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.294", + "May": "0.316", + "Jun": "0.375", + "Jul": "0.414", + "Aug": "0.401", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.290", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.398", + "Sep": "0.197", + "Oct": "0.086", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.269", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.387", + "Sep": "0.197", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.038", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.079", + "Apr": "0.260", + "May": "0.316", + "Jun": "0.344", + "Jul": "0.387", + "Aug": "0.376", + "Sep": "0.182", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.022", + "All-year": "0.306", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.210", + "May": "0.195", + "Jun": "0.279", + "Jul": "0.317", + "Aug": "0.296", + "Sep": "0.154", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.270", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.086", + "May": "0.091", + "Jun": "0.225", + "Jul": "0.253", + "Aug": "0.202", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.112", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.137", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.226", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.510", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.585", + "Sep": "0.416", + "Oct": "0.228", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.372", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.224", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.509", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.226", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.222", + "Mar": "0.280", + "Apr": "0.406", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.174", + "Dec": "0.162", + "All-year": "0.368", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.222", + "Mar": "0.273", + "Apr": "0.406", + "May": "0.504", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.581", + "Sep": "0.410", + "Oct": "0.218", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.156", + "Feb": "0.211", + "Mar": "0.260", + "Apr": "0.392", + "May": "0.493", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.560", + "Sep": "0.403", + "Oct": "0.196", + "Nov": "0.155", + "Dec": "0.143", + "All-year": "0.349", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.123", + "Feb": "0.167", + "Mar": "0.222", + "Apr": "0.360", + "May": "0.435", + "Jun": "0.533", + "Jul": "0.582", + "Aug": "0.530", + "Sep": "0.351", + "Oct": "0.163", + "Nov": "0.128", + "Dec": "0.116", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.091", + "Mar": "0.147", + "Apr": "0.254", + "May": "0.363", + "Jun": "0.422", + "Jul": "0.462", + "Aug": "0.442", + "Sep": "0.245", + "Oct": "0.099", + "Nov": "0.078", + "Dec": "0.067", + "All-year": "0.240", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.150", + "May": "0.263", + "Jun": "0.326", + "Jul": "0.358", + "Aug": "0.353", + "Sep": "0.206", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.190", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.431", + "Jun": "0.539", + "Jul": "0.529", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.430", + "Jun": "0.538", + "Jul": "0.528", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.203", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.520", + "Aug": "0.484", + "Sep": "0.331", + "Oct": "0.141", + "Nov": "0.097", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.517", + "Aug": "0.475", + "Sep": "0.316", + "Oct": "0.130", + "Nov": "0.091", + "Dec": "0.094", + "All-year": "0.334", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.110", + "Mar": "0.187", + "Apr": "0.328", + "May": "0.413", + "Jun": "0.516", + "Jul": "0.497", + "Aug": "0.460", + "Sep": "0.301", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.087", + "All-year": "0.324", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.096", + "Mar": "0.136", + "Apr": "0.284", + "May": "0.361", + "Jun": "0.458", + "Jul": "0.459", + "Aug": "0.408", + "Sep": "0.245", + "Oct": "0.086", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.076", + "Apr": "0.144", + "May": "0.239", + "Jun": "0.293", + "Jul": "0.359", + "Aug": "0.325", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.220", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.134", + "Jun": "0.238", + "Jul": "0.249", + "Aug": "0.205", + "Sep": "0.107", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.170", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.297", + "May": "0.319", + "Jun": "0.375", + "Jul": "0.417", + "Aug": "0.402", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.294", + "May": "0.316", + "Jun": "0.375", + "Jul": "0.414", + "Aug": "0.401", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.290", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.398", + "Sep": "0.197", + "Oct": "0.086", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.269", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.387", + "Sep": "0.197", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.038", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.079", + "Apr": "0.260", + "May": "0.316", + "Jun": "0.344", + "Jul": "0.387", + "Aug": "0.376", + "Sep": "0.182", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.022", + "All-year": "0.306", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.210", + "May": "0.195", + "Jun": "0.279", + "Jul": "0.317", + "Aug": "0.296", + "Sep": "0.154", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.270", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.086", + "May": "0.091", + "Jun": "0.225", + "Jul": "0.253", + "Aug": "0.202", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.112", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.137", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.226", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.510", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.585", + "Sep": "0.416", + "Oct": "0.228", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.372", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.224", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.509", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.226", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.222", + "Mar": "0.280", + "Apr": "0.406", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.174", + "Dec": "0.162", + "All-year": "0.368", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.222", + "Mar": "0.273", + "Apr": "0.406", + "May": "0.504", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.581", + "Sep": "0.410", + "Oct": "0.218", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.156", + "Feb": "0.211", + "Mar": "0.260", + "Apr": "0.392", + "May": "0.493", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.560", + "Sep": "0.403", + "Oct": "0.196", + "Nov": "0.155", + "Dec": "0.143", + "All-year": "0.349", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.123", + "Feb": "0.167", + "Mar": "0.222", + "Apr": "0.360", + "May": "0.435", + "Jun": "0.533", + "Jul": "0.582", + "Aug": "0.530", + "Sep": "0.351", + "Oct": "0.163", + "Nov": "0.128", + "Dec": "0.116", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.091", + "Mar": "0.147", + "Apr": "0.254", + "May": "0.363", + "Jun": "0.422", + "Jul": "0.462", + "Aug": "0.442", + "Sep": "0.245", + "Oct": "0.099", + "Nov": "0.078", + "Dec": "0.067", + "All-year": "0.240", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.150", + "May": "0.263", + "Jun": "0.326", + "Jul": "0.358", + "Aug": "0.353", + "Sep": "0.206", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.190", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.431", + "Jun": "0.539", + "Jul": "0.529", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.430", + "Jun": "0.538", + "Jul": "0.528", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.203", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.520", + "Aug": "0.484", + "Sep": "0.331", + "Oct": "0.141", + "Nov": "0.097", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.517", + "Aug": "0.475", + "Sep": "0.316", + "Oct": "0.130", + "Nov": "0.091", + "Dec": "0.094", + "All-year": "0.334", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.110", + "Mar": "0.187", + "Apr": "0.328", + "May": "0.413", + "Jun": "0.516", + "Jul": "0.497", + "Aug": "0.460", + "Sep": "0.301", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.087", + "All-year": "0.324", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.096", + "Mar": "0.136", + "Apr": "0.284", + "May": "0.361", + "Jun": "0.458", + "Jul": "0.459", + "Aug": "0.408", + "Sep": "0.245", + "Oct": "0.086", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.076", + "Apr": "0.144", + "May": "0.239", + "Jun": "0.293", + "Jul": "0.359", + "Aug": "0.325", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.220", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.134", + "Jun": "0.238", + "Jul": "0.249", + "Aug": "0.205", + "Sep": "0.107", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.170", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.297", + "May": "0.319", + "Jun": "0.375", + "Jul": "0.417", + "Aug": "0.402", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.294", + "May": "0.316", + "Jun": "0.375", + "Jul": "0.414", + "Aug": "0.401", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.290", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.398", + "Sep": "0.197", + "Oct": "0.086", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.269", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.387", + "Sep": "0.197", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.038", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.079", + "Apr": "0.260", + "May": "0.316", + "Jun": "0.344", + "Jul": "0.387", + "Aug": "0.376", + "Sep": "0.182", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.022", + "All-year": "0.306", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.210", + "May": "0.195", + "Jun": "0.279", + "Jul": "0.317", + "Aug": "0.296", + "Sep": "0.154", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.270", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.086", + "May": "0.091", + "Jun": "0.225", + "Jul": "0.253", + "Aug": "0.202", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.112", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.137", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.226", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.510", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.585", + "Sep": "0.416", + "Oct": "0.228", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.372", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.224", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.509", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.226", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.222", + "Mar": "0.280", + "Apr": "0.406", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.174", + "Dec": "0.162", + "All-year": "0.368", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.222", + "Mar": "0.273", + "Apr": "0.406", + "May": "0.504", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.581", + "Sep": "0.410", + "Oct": "0.218", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.156", + "Feb": "0.211", + "Mar": "0.260", + "Apr": "0.392", + "May": "0.493", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.560", + "Sep": "0.403", + "Oct": "0.196", + "Nov": "0.155", + "Dec": "0.143", + "All-year": "0.349", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.123", + "Feb": "0.167", + "Mar": "0.222", + "Apr": "0.360", + "May": "0.435", + "Jun": "0.533", + "Jul": "0.582", + "Aug": "0.530", + "Sep": "0.351", + "Oct": "0.163", + "Nov": "0.128", + "Dec": "0.116", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.091", + "Mar": "0.147", + "Apr": "0.254", + "May": "0.363", + "Jun": "0.422", + "Jul": "0.462", + "Aug": "0.442", + "Sep": "0.245", + "Oct": "0.099", + "Nov": "0.078", + "Dec": "0.067", + "All-year": "0.240", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.150", + "May": "0.263", + "Jun": "0.326", + "Jul": "0.358", + "Aug": "0.353", + "Sep": "0.206", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.190", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.431", + "Jun": "0.539", + "Jul": "0.529", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.430", + "Jun": "0.538", + "Jul": "0.528", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.203", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.520", + "Aug": "0.484", + "Sep": "0.331", + "Oct": "0.141", + "Nov": "0.097", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.517", + "Aug": "0.475", + "Sep": "0.316", + "Oct": "0.130", + "Nov": "0.091", + "Dec": "0.094", + "All-year": "0.334", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.110", + "Mar": "0.187", + "Apr": "0.328", + "May": "0.413", + "Jun": "0.516", + "Jul": "0.497", + "Aug": "0.460", + "Sep": "0.301", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.087", + "All-year": "0.324", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.096", + "Mar": "0.136", + "Apr": "0.284", + "May": "0.361", + "Jun": "0.458", + "Jul": "0.459", + "Aug": "0.408", + "Sep": "0.245", + "Oct": "0.086", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.076", + "Apr": "0.144", + "May": "0.239", + "Jun": "0.293", + "Jul": "0.359", + "Aug": "0.325", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.220", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.134", + "Jun": "0.238", + "Jul": "0.249", + "Aug": "0.205", + "Sep": "0.107", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.170", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.297", + "May": "0.319", + "Jun": "0.375", + "Jul": "0.417", + "Aug": "0.402", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.294", + "May": "0.316", + "Jun": "0.375", + "Jul": "0.414", + "Aug": "0.401", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.290", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.398", + "Sep": "0.197", + "Oct": "0.086", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.269", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.387", + "Sep": "0.197", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.038", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.079", + "Apr": "0.260", + "May": "0.316", + "Jun": "0.344", + "Jul": "0.387", + "Aug": "0.376", + "Sep": "0.182", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.022", + "All-year": "0.306", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.210", + "May": "0.195", + "Jun": "0.279", + "Jul": "0.317", + "Aug": "0.296", + "Sep": "0.154", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.270", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.086", + "May": "0.091", + "Jun": "0.225", + "Jul": "0.253", + "Aug": "0.202", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.112", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.137", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.226", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.510", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.585", + "Sep": "0.416", + "Oct": "0.228", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.372", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.224", + "Mar": "0.286", + "Apr": "0.410", + "May": "0.509", + "Jun": "0.590", + "Jul": "0.648", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.226", + "Nov": "0.176", + "Dec": "0.163", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.222", + "Mar": "0.280", + "Apr": "0.406", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.584", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.174", + "Dec": "0.162", + "All-year": "0.368", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.222", + "Mar": "0.273", + "Apr": "0.406", + "May": "0.504", + "Jun": "0.585", + "Jul": "0.640", + "Aug": "0.581", + "Sep": "0.410", + "Oct": "0.218", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.156", + "Feb": "0.211", + "Mar": "0.260", + "Apr": "0.392", + "May": "0.493", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.560", + "Sep": "0.403", + "Oct": "0.196", + "Nov": "0.155", + "Dec": "0.143", + "All-year": "0.349", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.123", + "Feb": "0.167", + "Mar": "0.222", + "Apr": "0.360", + "May": "0.435", + "Jun": "0.533", + "Jul": "0.582", + "Aug": "0.530", + "Sep": "0.351", + "Oct": "0.163", + "Nov": "0.128", + "Dec": "0.116", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.091", + "Mar": "0.147", + "Apr": "0.254", + "May": "0.363", + "Jun": "0.422", + "Jul": "0.462", + "Aug": "0.442", + "Sep": "0.245", + "Oct": "0.099", + "Nov": "0.078", + "Dec": "0.067", + "All-year": "0.240", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.150", + "May": "0.263", + "Jun": "0.326", + "Jul": "0.358", + "Aug": "0.353", + "Sep": "0.206", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.190", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.431", + "Jun": "0.539", + "Jul": "0.529", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.116", + "Mar": "0.203", + "Apr": "0.360", + "May": "0.430", + "Jun": "0.538", + "Jul": "0.528", + "Aug": "0.486", + "Sep": "0.334", + "Oct": "0.144", + "Nov": "0.097", + "Dec": "0.097", + "All-year": "0.340", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.114", + "Mar": "0.203", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.520", + "Aug": "0.484", + "Sep": "0.331", + "Oct": "0.141", + "Nov": "0.097", + "Dec": "0.094", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.114", + "Mar": "0.200", + "Apr": "0.351", + "May": "0.425", + "Jun": "0.532", + "Jul": "0.517", + "Aug": "0.475", + "Sep": "0.316", + "Oct": "0.130", + "Nov": "0.091", + "Dec": "0.094", + "All-year": "0.334", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.110", + "Mar": "0.187", + "Apr": "0.328", + "May": "0.413", + "Jun": "0.516", + "Jul": "0.497", + "Aug": "0.460", + "Sep": "0.301", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.087", + "All-year": "0.324", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.096", + "Mar": "0.136", + "Apr": "0.284", + "May": "0.361", + "Jun": "0.458", + "Jul": "0.459", + "Aug": "0.408", + "Sep": "0.245", + "Oct": "0.086", + "Nov": "0.042", + "Dec": "0.042", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.076", + "Apr": "0.144", + "May": "0.239", + "Jun": "0.293", + "Jul": "0.359", + "Aug": "0.325", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.220", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.134", + "Jun": "0.238", + "Jul": "0.249", + "Aug": "0.205", + "Sep": "0.107", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.170", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.098", + "Apr": "0.297", + "May": "0.319", + "Jun": "0.375", + "Jul": "0.417", + "Aug": "0.402", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.034", + "Mar": "0.095", + "Apr": "0.294", + "May": "0.316", + "Jun": "0.375", + "Jul": "0.414", + "Aug": "0.401", + "Sep": "0.200", + "Oct": "0.087", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.290", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.398", + "Sep": "0.197", + "Oct": "0.086", + "Nov": "0.053", + "Dec": "0.038", + "All-year": "0.323", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.015", + "Feb": "0.034", + "Mar": "0.093", + "Apr": "0.269", + "May": "0.316", + "Jun": "0.364", + "Jul": "0.414", + "Aug": "0.387", + "Sep": "0.197", + "Oct": "0.081", + "Nov": "0.039", + "Dec": "0.038", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.034", + "Mar": "0.079", + "Apr": "0.260", + "May": "0.316", + "Jun": "0.344", + "Jul": "0.387", + "Aug": "0.376", + "Sep": "0.182", + "Oct": "0.065", + "Nov": "0.029", + "Dec": "0.022", + "All-year": "0.306", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.210", + "May": "0.195", + "Jun": "0.279", + "Jul": "0.317", + "Aug": "0.296", + "Sep": "0.154", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.270", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.086", + "May": "0.091", + "Jun": "0.225", + "Jul": "0.253", + "Aug": "0.202", + "Sep": "0.079", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.112", + "Aug": "0.102", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.137", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.008", + "Feb": "0.014", + "Mar": "0.015", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.048", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.009", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.008", + "Feb": "0.013", + "Mar": "0.015", + "Apr": "0.022", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.025", + "Oct": "0.013", + "Nov": "0.010", + "Dec": "0.008", + "All-year": "0.023", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.016", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.031", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.005", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.013", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.020", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.004", + "Mar": "0.009", + "Apr": "0.018", + "May": "0.016", + "Jun": "0.026", + "Jul": "0.020", + "Aug": "0.025", + "Sep": "0.017", + "Oct": "0.002", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.022", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.002", + "Feb": "0.001", + "Mar": "0.009", + "Apr": "0.015", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.001", + "Nov": "0.006", + "Dec": "0.004", + "All-year": "0.020", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.000", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.010", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.017", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.008", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.070", + "Mar": "0.085", + "Apr": "0.131", + "May": "0.149", + "Jun": "0.205", + "Jul": "0.171", + "Aug": "0.159", + "Sep": "0.124", + "Oct": "0.062", + "Nov": "0.064", + "Dec": "0.056", + "All-year": "0.113", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.069", + "Mar": "0.084", + "Apr": "0.130", + "May": "0.145", + "Jun": "0.201", + "Jul": "0.167", + "Aug": "0.156", + "Sep": "0.122", + "Oct": "0.060", + "Nov": "0.063", + "Dec": "0.054", + "All-year": "0.111", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.054", + "Mar": "0.073", + "Apr": "0.115", + "May": "0.130", + "Jun": "0.192", + "Jul": "0.155", + "Aug": "0.142", + "Sep": "0.111", + "Oct": "0.054", + "Nov": "0.057", + "Dec": "0.051", + "All-year": "0.101", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.051", + "Mar": "0.068", + "Apr": "0.106", + "May": "0.120", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.136", + "Sep": "0.103", + "Oct": "0.048", + "Nov": "0.051", + "Dec": "0.044", + "All-year": "0.096", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.019", + "Feb": "0.043", + "Mar": "0.040", + "Apr": "0.080", + "May": "0.073", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.096", + "Sep": "0.077", + "Oct": "0.022", + "Nov": "0.025", + "Dec": "0.022", + "All-year": "0.069", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.039", + "May": "0.016", + "Jun": "0.074", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.037", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.026", + "Feb": "0.028", + "Mar": "0.056", + "Apr": "0.100", + "May": "0.118", + "Jun": "0.133", + "Jul": "0.144", + "Aug": "0.119", + "Sep": "0.092", + "Oct": "0.029", + "Nov": "0.033", + "Dec": "0.028", + "All-year": "0.103", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.026", + "Feb": "0.026", + "Mar": "0.056", + "Apr": "0.100", + "May": "0.116", + "Jun": "0.132", + "Jul": "0.138", + "Aug": "0.116", + "Sep": "0.090", + "Oct": "0.028", + "Nov": "0.033", + "Dec": "0.028", + "All-year": "0.102", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.023", + "Feb": "0.023", + "Mar": "0.048", + "Apr": "0.088", + "May": "0.106", + "Jun": "0.123", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.085", + "Oct": "0.024", + "Nov": "0.031", + "Dec": "0.027", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.020", + "Mar": "0.042", + "Apr": "0.081", + "May": "0.094", + "Jun": "0.115", + "Jul": "0.104", + "Aug": "0.107", + "Sep": "0.076", + "Oct": "0.022", + "Nov": "0.029", + "Dec": "0.023", + "All-year": "0.085", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.019", + "Apr": "0.044", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.048", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.058", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.024", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.012", + "Mar": "0.023", + "Apr": "0.074", + "May": "0.058", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.083", + "Sep": "0.049", + "Oct": "0.015", + "Nov": "0.018", + "Dec": "0.013", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.009", + "Mar": "0.020", + "Apr": "0.074", + "May": "0.058", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.082", + "Sep": "0.049", + "Oct": "0.012", + "Nov": "0.018", + "Dec": "0.013", + "All-year": "0.090", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.074", + "Sep": "0.040", + "Oct": "0.011", + "Nov": "0.010", + "Dec": "0.011", + "All-year": "0.084", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.016", + "Apr": "0.054", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.060", + "Sep": "0.035", + "Oct": "0.000", + "Nov": "0.010", + "Dec": "0.009", + "All-year": "0.078", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.028", + "May": "0.023", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.052", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.123", + "Feb": "0.180", + "Mar": "0.206", + "Apr": "0.313", + "May": "0.362", + "Jun": "0.419", + "Jul": "0.407", + "Aug": "0.367", + "Sep": "0.302", + "Oct": "0.159", + "Nov": "0.140", + "Dec": "0.144", + "All-year": "0.260", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.119", + "Feb": "0.180", + "Mar": "0.204", + "Apr": "0.313", + "May": "0.360", + "Jun": "0.415", + "Jul": "0.404", + "Aug": "0.365", + "Sep": "0.299", + "Oct": "0.157", + "Nov": "0.137", + "Dec": "0.143", + "All-year": "0.256", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.173", + "Mar": "0.197", + "Apr": "0.307", + "May": "0.345", + "Jun": "0.404", + "Jul": "0.384", + "Aug": "0.355", + "Sep": "0.290", + "Oct": "0.152", + "Nov": "0.129", + "Dec": "0.139", + "All-year": "0.245", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.164", + "Mar": "0.190", + "Apr": "0.296", + "May": "0.340", + "Jun": "0.390", + "Jul": "0.382", + "Aug": "0.342", + "Sep": "0.281", + "Oct": "0.142", + "Nov": "0.124", + "Dec": "0.131", + "All-year": "0.239", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.090", + "Feb": "0.121", + "Mar": "0.166", + "Apr": "0.229", + "May": "0.311", + "Jun": "0.350", + "Jul": "0.333", + "Aug": "0.291", + "Sep": "0.240", + "Oct": "0.111", + "Nov": "0.102", + "Dec": "0.099", + "All-year": "0.208", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.058", + "Feb": "0.083", + "Mar": "0.101", + "Apr": "0.159", + "May": "0.221", + "Jun": "0.284", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.133", + "Oct": "0.058", + "Nov": "0.057", + "Dec": "0.049", + "All-year": "0.156", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.074", + "May": "0.102", + "Jun": "0.168", + "Jul": "0.129", + "Aug": "0.089", + "Sep": "0.078", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.077", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.041", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.073", + "Mar": "0.151", + "Apr": "0.259", + "May": "0.296", + "Jun": "0.339", + "Jul": "0.342", + "Aug": "0.306", + "Sep": "0.212", + "Oct": "0.098", + "Nov": "0.094", + "Dec": "0.073", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.089", + "Feb": "0.073", + "Mar": "0.149", + "Apr": "0.256", + "May": "0.294", + "Jun": "0.332", + "Jul": "0.338", + "Aug": "0.304", + "Sep": "0.210", + "Oct": "0.095", + "Nov": "0.094", + "Dec": "0.073", + "All-year": "0.243", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.083", + "Feb": "0.068", + "Mar": "0.139", + "Apr": "0.243", + "May": "0.288", + "Jun": "0.319", + "Jul": "0.314", + "Aug": "0.294", + "Sep": "0.189", + "Oct": "0.092", + "Nov": "0.089", + "Dec": "0.068", + "All-year": "0.233", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.067", + "Mar": "0.130", + "Apr": "0.233", + "May": "0.279", + "Jun": "0.319", + "Jul": "0.303", + "Aug": "0.274", + "Sep": "0.178", + "Oct": "0.075", + "Nov": "0.081", + "Dec": "0.062", + "All-year": "0.226", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.053", + "Mar": "0.099", + "Apr": "0.184", + "May": "0.232", + "Jun": "0.288", + "Jul": "0.265", + "Aug": "0.212", + "Sep": "0.167", + "Oct": "0.058", + "Nov": "0.058", + "Dec": "0.052", + "All-year": "0.195", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.048", + "Apr": "0.107", + "May": "0.157", + "Jun": "0.195", + "Jul": "0.161", + "Aug": "0.149", + "Sep": "0.101", + "Oct": "0.000", + "Nov": "0.034", + "Dec": "0.000", + "All-year": "0.138", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.063", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.045", + "Mar": "0.083", + "Apr": "0.192", + "May": "0.243", + "Jun": "0.290", + "Jul": "0.228", + "Aug": "0.247", + "Sep": "0.160", + "Oct": "0.070", + "Nov": "0.051", + "Dec": "0.039", + "All-year": "0.224", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.019", + "Feb": "0.045", + "Mar": "0.078", + "Apr": "0.192", + "May": "0.238", + "Jun": "0.282", + "Jul": "0.223", + "Aug": "0.242", + "Sep": "0.157", + "Oct": "0.069", + "Nov": "0.050", + "Dec": "0.039", + "All-year": "0.222", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.042", + "Mar": "0.074", + "Apr": "0.183", + "May": "0.223", + "Jun": "0.275", + "Jul": "0.218", + "Aug": "0.237", + "Sep": "0.150", + "Oct": "0.069", + "Nov": "0.047", + "Dec": "0.035", + "All-year": "0.215", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.028", + "Mar": "0.074", + "Apr": "0.168", + "May": "0.223", + "Jun": "0.268", + "Jul": "0.211", + "Aug": "0.223", + "Sep": "0.139", + "Oct": "0.056", + "Nov": "0.039", + "Dec": "0.035", + "All-year": "0.209", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.052", + "Apr": "0.144", + "May": "0.175", + "Jun": "0.236", + "Jul": "0.160", + "Aug": "0.173", + "Sep": "0.111", + "Oct": "0.023", + "Nov": "0.000", + "Dec": "0.017", + "All-year": "0.179", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.125", + "Jul": "0.091", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.118", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.042", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.215", + "Feb": "0.286", + "Mar": "0.348", + "Apr": "0.490", + "May": "0.550", + "Jun": "0.652", + "Jul": "0.659", + "Aug": "0.600", + "Sep": "0.473", + "Oct": "0.281", + "Nov": "0.233", + "Dec": "0.222", + "All-year": "0.421", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.215", + "Feb": "0.286", + "Mar": "0.347", + "Apr": "0.488", + "May": "0.550", + "Jun": "0.649", + "Jul": "0.654", + "Aug": "0.599", + "Sep": "0.472", + "Oct": "0.280", + "Nov": "0.233", + "Dec": "0.222", + "All-year": "0.420", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.277", + "Mar": "0.342", + "Apr": "0.483", + "May": "0.544", + "Jun": "0.636", + "Jul": "0.651", + "Aug": "0.590", + "Sep": "0.467", + "Oct": "0.274", + "Nov": "0.220", + "Dec": "0.216", + "All-year": "0.411", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.204", + "Feb": "0.274", + "Mar": "0.331", + "Apr": "0.483", + "May": "0.541", + "Jun": "0.632", + "Jul": "0.645", + "Aug": "0.581", + "Sep": "0.449", + "Oct": "0.257", + "Nov": "0.212", + "Dec": "0.210", + "All-year": "0.407", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.198", + "Feb": "0.261", + "Mar": "0.312", + "Apr": "0.451", + "May": "0.522", + "Jun": "0.601", + "Jul": "0.632", + "Aug": "0.545", + "Sep": "0.424", + "Oct": "0.235", + "Nov": "0.190", + "Dec": "0.189", + "All-year": "0.376", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.134", + "Feb": "0.193", + "Mar": "0.235", + "Apr": "0.392", + "May": "0.430", + "Jun": "0.533", + "Jul": "0.573", + "Aug": "0.485", + "Sep": "0.351", + "Oct": "0.156", + "Nov": "0.137", + "Dec": "0.132", + "All-year": "0.320", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.075", + "Feb": "0.094", + "Mar": "0.149", + "Apr": "0.265", + "May": "0.331", + "Jun": "0.413", + "Jul": "0.417", + "Aug": "0.357", + "Sep": "0.249", + "Oct": "0.087", + "Nov": "0.085", + "Dec": "0.071", + "All-year": "0.230", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.108", + "Apr": "0.126", + "May": "0.242", + "Jun": "0.319", + "Jul": "0.249", + "Aug": "0.245", + "Sep": "0.135", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.159", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.151", + "Feb": "0.166", + "Mar": "0.253", + "Apr": "0.428", + "May": "0.482", + "Jun": "0.569", + "Jul": "0.573", + "Aug": "0.525", + "Sep": "0.388", + "Oct": "0.205", + "Nov": "0.156", + "Dec": "0.134", + "All-year": "0.391", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.149", + "Feb": "0.163", + "Mar": "0.251", + "Apr": "0.426", + "May": "0.481", + "Jun": "0.567", + "Jul": "0.569", + "Aug": "0.523", + "Sep": "0.387", + "Oct": "0.202", + "Nov": "0.156", + "Dec": "0.132", + "All-year": "0.390", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.143", + "Feb": "0.159", + "Mar": "0.245", + "Apr": "0.422", + "May": "0.474", + "Jun": "0.555", + "Jul": "0.560", + "Aug": "0.513", + "Sep": "0.379", + "Oct": "0.196", + "Nov": "0.154", + "Dec": "0.127", + "All-year": "0.384", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.159", + "Mar": "0.235", + "Apr": "0.415", + "May": "0.464", + "Jun": "0.547", + "Jul": "0.556", + "Aug": "0.503", + "Sep": "0.370", + "Oct": "0.188", + "Nov": "0.151", + "Dec": "0.115", + "All-year": "0.379", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.120", + "Feb": "0.158", + "Mar": "0.224", + "Apr": "0.390", + "May": "0.438", + "Jun": "0.515", + "Jul": "0.505", + "Aug": "0.481", + "Sep": "0.351", + "Oct": "0.157", + "Nov": "0.131", + "Dec": "0.103", + "All-year": "0.358", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.118", + "Mar": "0.155", + "Apr": "0.331", + "May": "0.374", + "Jun": "0.457", + "Jul": "0.456", + "Aug": "0.414", + "Sep": "0.262", + "Oct": "0.096", + "Nov": "0.083", + "Dec": "0.050", + "All-year": "0.306", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.070", + "Apr": "0.189", + "May": "0.228", + "Jun": "0.276", + "Jul": "0.284", + "Aug": "0.251", + "Sep": "0.128", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.216", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.102", + "May": "0.116", + "Jun": "0.142", + "Jul": "0.140", + "Aug": "0.136", + "Sep": "0.102", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.135", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.064", + "Mar": "0.140", + "Apr": "0.356", + "May": "0.444", + "Jun": "0.456", + "Jul": "0.450", + "Aug": "0.441", + "Sep": "0.239", + "Oct": "0.145", + "Nov": "0.097", + "Dec": "0.065", + "All-year": "0.375", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.064", + "Mar": "0.140", + "Apr": "0.356", + "May": "0.441", + "Jun": "0.453", + "Jul": "0.450", + "Aug": "0.441", + "Sep": "0.239", + "Oct": "0.144", + "Nov": "0.096", + "Dec": "0.065", + "All-year": "0.374", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.043", + "Feb": "0.054", + "Mar": "0.134", + "Apr": "0.349", + "May": "0.429", + "Jun": "0.447", + "Jul": "0.433", + "Aug": "0.430", + "Sep": "0.239", + "Oct": "0.136", + "Nov": "0.089", + "Dec": "0.062", + "All-year": "0.372", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.043", + "Feb": "0.054", + "Mar": "0.130", + "Apr": "0.342", + "May": "0.422", + "Jun": "0.447", + "Jul": "0.427", + "Aug": "0.418", + "Sep": "0.226", + "Oct": "0.120", + "Nov": "0.082", + "Dec": "0.062", + "All-year": "0.367", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.039", + "Mar": "0.121", + "Apr": "0.315", + "May": "0.376", + "Jun": "0.436", + "Jul": "0.387", + "Aug": "0.374", + "Sep": "0.221", + "Oct": "0.106", + "Nov": "0.044", + "Dec": "0.048", + "All-year": "0.336", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.037", + "Mar": "0.090", + "Apr": "0.243", + "May": "0.297", + "Jun": "0.342", + "Jul": "0.321", + "Aug": "0.320", + "Sep": "0.164", + "Oct": "0.051", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.267", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.092", + "May": "0.137", + "Jun": "0.200", + "Jul": "0.109", + "Aug": "0.129", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.171", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.105", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.246", + "Feb": "0.333", + "Mar": "0.407", + "Apr": "0.544", + "May": "0.631", + "Jun": "0.715", + "Jul": "0.749", + "Aug": "0.683", + "Sep": "0.528", + "Oct": "0.325", + "Nov": "0.267", + "Dec": "0.249", + "All-year": "0.471", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.333", + "Mar": "0.406", + "Apr": "0.541", + "May": "0.629", + "Jun": "0.715", + "Jul": "0.748", + "Aug": "0.682", + "Sep": "0.526", + "Oct": "0.323", + "Nov": "0.267", + "Dec": "0.249", + "All-year": "0.470", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.234", + "Feb": "0.325", + "Mar": "0.397", + "Apr": "0.534", + "May": "0.626", + "Jun": "0.711", + "Jul": "0.742", + "Aug": "0.680", + "Sep": "0.519", + "Oct": "0.319", + "Nov": "0.257", + "Dec": "0.247", + "All-year": "0.465", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.225", + "Feb": "0.325", + "Mar": "0.395", + "Apr": "0.533", + "May": "0.626", + "Jun": "0.708", + "Jul": "0.742", + "Aug": "0.680", + "Sep": "0.515", + "Oct": "0.313", + "Nov": "0.244", + "Dec": "0.240", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.225", + "Feb": "0.306", + "Mar": "0.369", + "Apr": "0.522", + "May": "0.597", + "Jun": "0.690", + "Jul": "0.713", + "Aug": "0.654", + "Sep": "0.487", + "Oct": "0.283", + "Nov": "0.236", + "Dec": "0.224", + "All-year": "0.441", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.161", + "Feb": "0.259", + "Mar": "0.308", + "Apr": "0.496", + "May": "0.557", + "Jun": "0.661", + "Jul": "0.681", + "Aug": "0.586", + "Sep": "0.440", + "Oct": "0.228", + "Nov": "0.178", + "Dec": "0.163", + "All-year": "0.398", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.092", + "Feb": "0.164", + "Mar": "0.252", + "Apr": "0.369", + "May": "0.439", + "Jun": "0.519", + "Jul": "0.563", + "Aug": "0.524", + "Sep": "0.329", + "Oct": "0.124", + "Nov": "0.098", + "Dec": "0.087", + "All-year": "0.318", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.116", + "Mar": "0.142", + "Apr": "0.225", + "May": "0.342", + "Jun": "0.419", + "Jul": "0.442", + "Aug": "0.399", + "Sep": "0.245", + "Oct": "0.108", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.246", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.202", + "Mar": "0.294", + "Apr": "0.483", + "May": "0.576", + "Jun": "0.649", + "Jul": "0.679", + "Aug": "0.589", + "Sep": "0.447", + "Oct": "0.242", + "Nov": "0.184", + "Dec": "0.163", + "All-year": "0.446", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.202", + "Mar": "0.294", + "Apr": "0.480", + "May": "0.574", + "Jun": "0.644", + "Jul": "0.677", + "Aug": "0.589", + "Sep": "0.446", + "Oct": "0.242", + "Nov": "0.181", + "Dec": "0.161", + "All-year": "0.446", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.199", + "Mar": "0.280", + "Apr": "0.476", + "May": "0.568", + "Jun": "0.642", + "Jul": "0.667", + "Aug": "0.588", + "Sep": "0.440", + "Oct": "0.241", + "Nov": "0.176", + "Dec": "0.157", + "All-year": "0.440", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.161", + "Feb": "0.199", + "Mar": "0.277", + "Apr": "0.467", + "May": "0.560", + "Jun": "0.635", + "Jul": "0.655", + "Aug": "0.579", + "Sep": "0.435", + "Oct": "0.235", + "Nov": "0.166", + "Dec": "0.154", + "All-year": "0.436", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.182", + "Mar": "0.272", + "Apr": "0.441", + "May": "0.526", + "Jun": "0.619", + "Jul": "0.644", + "Aug": "0.565", + "Sep": "0.406", + "Oct": "0.214", + "Nov": "0.151", + "Dec": "0.130", + "All-year": "0.415", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.165", + "Mar": "0.218", + "Apr": "0.399", + "May": "0.468", + "Jun": "0.601", + "Jul": "0.564", + "Aug": "0.511", + "Sep": "0.339", + "Oct": "0.128", + "Nov": "0.115", + "Dec": "0.088", + "All-year": "0.374", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.083", + "Mar": "0.143", + "Apr": "0.264", + "May": "0.360", + "Jun": "0.415", + "Jul": "0.407", + "Aug": "0.365", + "Sep": "0.178", + "Oct": "0.071", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.136", + "May": "0.214", + "Jun": "0.291", + "Jul": "0.292", + "Aug": "0.257", + "Sep": "0.140", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.218", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.073", + "Mar": "0.160", + "Apr": "0.404", + "May": "0.507", + "Jun": "0.515", + "Jul": "0.550", + "Aug": "0.547", + "Sep": "0.279", + "Oct": "0.155", + "Nov": "0.129", + "Dec": "0.066", + "All-year": "0.417", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.073", + "Mar": "0.160", + "Apr": "0.404", + "May": "0.507", + "Jun": "0.513", + "Jul": "0.542", + "Aug": "0.543", + "Sep": "0.276", + "Oct": "0.155", + "Nov": "0.129", + "Dec": "0.066", + "All-year": "0.416", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.066", + "Feb": "0.060", + "Mar": "0.151", + "Apr": "0.399", + "May": "0.500", + "Jun": "0.513", + "Jul": "0.528", + "Aug": "0.535", + "Sep": "0.274", + "Oct": "0.148", + "Nov": "0.129", + "Dec": "0.066", + "All-year": "0.414", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.066", + "Feb": "0.060", + "Mar": "0.149", + "Apr": "0.394", + "May": "0.493", + "Jun": "0.513", + "Jul": "0.513", + "Aug": "0.523", + "Sep": "0.268", + "Oct": "0.142", + "Nov": "0.129", + "Dec": "0.066", + "All-year": "0.410", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.035", + "Feb": "0.060", + "Mar": "0.137", + "Apr": "0.379", + "May": "0.485", + "Jun": "0.503", + "Jul": "0.484", + "Aug": "0.487", + "Sep": "0.244", + "Oct": "0.125", + "Nov": "0.093", + "Dec": "0.051", + "All-year": "0.396", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.113", + "Apr": "0.328", + "May": "0.397", + "Jun": "0.454", + "Jul": "0.411", + "Aug": "0.427", + "Sep": "0.217", + "Oct": "0.081", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.348", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.188", + "May": "0.227", + "Jun": "0.282", + "Jul": "0.254", + "Aug": "0.257", + "Sep": "0.144", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.257", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.108", + "May": "0.136", + "Jun": "0.218", + "Jul": "0.180", + "Aug": "0.142", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.344", + "Mar": "0.430", + "Apr": "0.576", + "May": "0.667", + "Jun": "0.744", + "Jul": "0.790", + "Aug": "0.718", + "Sep": "0.561", + "Oct": "0.355", + "Nov": "0.319", + "Dec": "0.280", + "All-year": "0.494", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.344", + "Mar": "0.430", + "Apr": "0.576", + "May": "0.666", + "Jun": "0.744", + "Jul": "0.790", + "Aug": "0.718", + "Sep": "0.561", + "Oct": "0.354", + "Nov": "0.319", + "Dec": "0.279", + "All-year": "0.494", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.341", + "Mar": "0.427", + "Apr": "0.567", + "May": "0.665", + "Jun": "0.742", + "Jul": "0.788", + "Aug": "0.718", + "Sep": "0.560", + "Oct": "0.349", + "Nov": "0.317", + "Dec": "0.276", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.253", + "Feb": "0.341", + "Mar": "0.424", + "Apr": "0.567", + "May": "0.664", + "Jun": "0.742", + "Jul": "0.784", + "Aug": "0.714", + "Sep": "0.545", + "Oct": "0.343", + "Nov": "0.308", + "Dec": "0.267", + "All-year": "0.489", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.341", + "Mar": "0.408", + "Apr": "0.560", + "May": "0.650", + "Jun": "0.725", + "Jul": "0.769", + "Aug": "0.700", + "Sep": "0.524", + "Oct": "0.319", + "Nov": "0.262", + "Dec": "0.255", + "All-year": "0.479", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.206", + "Feb": "0.301", + "Mar": "0.356", + "Apr": "0.523", + "May": "0.616", + "Jun": "0.700", + "Jul": "0.747", + "Aug": "0.672", + "Sep": "0.494", + "Oct": "0.267", + "Nov": "0.220", + "Dec": "0.206", + "All-year": "0.443", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.112", + "Feb": "0.193", + "Mar": "0.280", + "Apr": "0.438", + "May": "0.517", + "Jun": "0.612", + "Jul": "0.687", + "Aug": "0.600", + "Sep": "0.399", + "Oct": "0.190", + "Nov": "0.126", + "Dec": "0.113", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.129", + "Mar": "0.167", + "Apr": "0.334", + "May": "0.409", + "Jun": "0.506", + "Jul": "0.575", + "Aug": "0.511", + "Sep": "0.306", + "Oct": "0.122", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.295", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.182", + "Feb": "0.225", + "Mar": "0.310", + "Apr": "0.506", + "May": "0.605", + "Jun": "0.688", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.466", + "Oct": "0.265", + "Nov": "0.197", + "Dec": "0.175", + "All-year": "0.473", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.182", + "Feb": "0.225", + "Mar": "0.310", + "Apr": "0.506", + "May": "0.605", + "Jun": "0.685", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.465", + "Oct": "0.265", + "Nov": "0.196", + "Dec": "0.174", + "All-year": "0.472", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.222", + "Mar": "0.303", + "Apr": "0.498", + "May": "0.605", + "Jun": "0.685", + "Jul": "0.721", + "Aug": "0.614", + "Sep": "0.460", + "Oct": "0.261", + "Nov": "0.194", + "Dec": "0.173", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.218", + "Mar": "0.299", + "Apr": "0.491", + "May": "0.601", + "Jun": "0.682", + "Jul": "0.718", + "Aug": "0.610", + "Sep": "0.454", + "Oct": "0.255", + "Nov": "0.190", + "Dec": "0.167", + "All-year": "0.465", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.140", + "Feb": "0.196", + "Mar": "0.292", + "Apr": "0.477", + "May": "0.577", + "Jun": "0.674", + "Jul": "0.708", + "Aug": "0.601", + "Sep": "0.437", + "Oct": "0.235", + "Nov": "0.175", + "Dec": "0.147", + "All-year": "0.449", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.101", + "Feb": "0.185", + "Mar": "0.266", + "Apr": "0.449", + "May": "0.520", + "Jun": "0.628", + "Jul": "0.642", + "Aug": "0.566", + "Sep": "0.400", + "Oct": "0.173", + "Nov": "0.121", + "Dec": "0.108", + "All-year": "0.411", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.092", + "Mar": "0.185", + "Apr": "0.320", + "May": "0.413", + "Jun": "0.510", + "Jul": "0.561", + "Aug": "0.470", + "Sep": "0.269", + "Oct": "0.084", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.339", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.104", + "Apr": "0.217", + "May": "0.287", + "Jun": "0.387", + "Jul": "0.435", + "Aug": "0.375", + "Sep": "0.192", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.281", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.076", + "Mar": "0.171", + "Apr": "0.435", + "May": "0.520", + "Jun": "0.576", + "Jul": "0.591", + "Aug": "0.587", + "Sep": "0.308", + "Oct": "0.172", + "Nov": "0.137", + "Dec": "0.067", + "All-year": "0.447", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.076", + "Mar": "0.171", + "Apr": "0.435", + "May": "0.517", + "Jun": "0.574", + "Jul": "0.591", + "Aug": "0.586", + "Sep": "0.307", + "Oct": "0.171", + "Nov": "0.137", + "Dec": "0.067", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.061", + "Mar": "0.171", + "Apr": "0.435", + "May": "0.517", + "Jun": "0.568", + "Jul": "0.583", + "Aug": "0.578", + "Sep": "0.307", + "Oct": "0.167", + "Nov": "0.137", + "Dec": "0.067", + "All-year": "0.441", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.061", + "Mar": "0.171", + "Apr": "0.421", + "May": "0.517", + "Jun": "0.556", + "Jul": "0.583", + "Aug": "0.573", + "Sep": "0.296", + "Oct": "0.161", + "Nov": "0.137", + "Dec": "0.067", + "All-year": "0.439", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.038", + "Feb": "0.060", + "Mar": "0.153", + "Apr": "0.417", + "May": "0.504", + "Jun": "0.529", + "Jul": "0.563", + "Aug": "0.540", + "Sep": "0.296", + "Oct": "0.142", + "Nov": "0.106", + "Dec": "0.060", + "All-year": "0.426", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.130", + "Apr": "0.375", + "May": "0.466", + "Jun": "0.474", + "Jul": "0.499", + "Aug": "0.481", + "Sep": "0.264", + "Oct": "0.086", + "Nov": "0.051", + "Dec": "0.032", + "All-year": "0.389", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.218", + "May": "0.332", + "Jun": "0.356", + "Jul": "0.356", + "Aug": "0.376", + "Sep": "0.181", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.144", + "May": "0.180", + "Jun": "0.264", + "Jul": "0.191", + "Aug": "0.226", + "Sep": "0.100", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.234", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.437", + "Apr": "0.581", + "May": "0.673", + "Jun": "0.752", + "Jul": "0.804", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.363", + "Nov": "0.326", + "Dec": "0.286", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.437", + "Apr": "0.581", + "May": "0.672", + "Jun": "0.751", + "Jul": "0.804", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.362", + "Nov": "0.326", + "Dec": "0.285", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.342", + "Mar": "0.434", + "Apr": "0.574", + "May": "0.672", + "Jun": "0.747", + "Jul": "0.798", + "Aug": "0.728", + "Sep": "0.575", + "Oct": "0.358", + "Nov": "0.324", + "Dec": "0.281", + "All-year": "0.498", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.258", + "Feb": "0.342", + "Mar": "0.430", + "Apr": "0.574", + "May": "0.668", + "Jun": "0.747", + "Jul": "0.798", + "Aug": "0.724", + "Sep": "0.563", + "Oct": "0.353", + "Nov": "0.315", + "Dec": "0.272", + "All-year": "0.496", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.247", + "Feb": "0.342", + "Mar": "0.413", + "Apr": "0.565", + "May": "0.655", + "Jun": "0.728", + "Jul": "0.780", + "Aug": "0.714", + "Sep": "0.537", + "Oct": "0.327", + "Nov": "0.285", + "Dec": "0.266", + "All-year": "0.487", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.214", + "Feb": "0.302", + "Mar": "0.363", + "Apr": "0.531", + "May": "0.624", + "Jun": "0.702", + "Jul": "0.754", + "Aug": "0.682", + "Sep": "0.502", + "Oct": "0.288", + "Nov": "0.237", + "Dec": "0.215", + "All-year": "0.453", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.202", + "Mar": "0.283", + "Apr": "0.455", + "May": "0.542", + "Jun": "0.630", + "Jul": "0.693", + "Aug": "0.640", + "Sep": "0.403", + "Oct": "0.202", + "Nov": "0.131", + "Dec": "0.113", + "All-year": "0.384", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.129", + "Mar": "0.181", + "Apr": "0.350", + "May": "0.448", + "Jun": "0.531", + "Jul": "0.591", + "Aug": "0.551", + "Sep": "0.330", + "Oct": "0.124", + "Nov": "0.050", + "Dec": "0.000", + "All-year": "0.308", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.317", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.698", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.475", + "Oct": "0.272", + "Nov": "0.199", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.315", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.695", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.475", + "Oct": "0.272", + "Nov": "0.199", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.183", + "Feb": "0.226", + "Mar": "0.310", + "Apr": "0.505", + "May": "0.612", + "Jun": "0.693", + "Jul": "0.728", + "Aug": "0.624", + "Sep": "0.469", + "Oct": "0.268", + "Nov": "0.197", + "Dec": "0.179", + "All-year": "0.474", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.180", + "Feb": "0.222", + "Mar": "0.307", + "Apr": "0.498", + "May": "0.606", + "Jun": "0.690", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.463", + "Oct": "0.259", + "Nov": "0.194", + "Dec": "0.176", + "All-year": "0.471", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.140", + "Feb": "0.214", + "Mar": "0.300", + "Apr": "0.483", + "May": "0.591", + "Jun": "0.678", + "Jul": "0.717", + "Aug": "0.614", + "Sep": "0.444", + "Oct": "0.235", + "Nov": "0.181", + "Dec": "0.160", + "All-year": "0.456", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.191", + "Mar": "0.278", + "Apr": "0.453", + "May": "0.544", + "Jun": "0.639", + "Jul": "0.665", + "Aug": "0.579", + "Sep": "0.407", + "Oct": "0.179", + "Nov": "0.131", + "Dec": "0.128", + "All-year": "0.420", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.092", + "Mar": "0.187", + "Apr": "0.364", + "May": "0.460", + "Jun": "0.519", + "Jul": "0.578", + "Aug": "0.528", + "Sep": "0.289", + "Oct": "0.099", + "Nov": "0.077", + "Dec": "0.000", + "All-year": "0.351", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.104", + "Apr": "0.226", + "May": "0.345", + "Jun": "0.426", + "Jul": "0.463", + "Aug": "0.454", + "Sep": "0.199", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.291", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.530", + "Jun": "0.579", + "Jul": "0.601", + "Aug": "0.591", + "Sep": "0.310", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.454", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.530", + "Jun": "0.579", + "Jul": "0.601", + "Aug": "0.590", + "Sep": "0.308", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.453", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.524", + "Jun": "0.574", + "Jul": "0.601", + "Aug": "0.582", + "Sep": "0.308", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.452", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.425", + "May": "0.524", + "Jun": "0.561", + "Jul": "0.601", + "Aug": "0.577", + "Sep": "0.299", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.038", + "Feb": "0.060", + "Mar": "0.159", + "Apr": "0.419", + "May": "0.511", + "Jun": "0.535", + "Jul": "0.577", + "Aug": "0.544", + "Sep": "0.297", + "Oct": "0.145", + "Nov": "0.110", + "Dec": "0.062", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.133", + "Apr": "0.386", + "May": "0.473", + "Jun": "0.489", + "Jul": "0.503", + "Aug": "0.504", + "Sep": "0.265", + "Oct": "0.086", + "Nov": "0.051", + "Dec": "0.035", + "All-year": "0.399", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.263", + "May": "0.335", + "Jun": "0.413", + "Jul": "0.358", + "Aug": "0.413", + "Sep": "0.182", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.325", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.147", + "May": "0.180", + "Jun": "0.265", + "Jul": "0.198", + "Aug": "0.277", + "Sep": "0.100", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.248", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.674", + "Jun": "0.753", + "Jul": "0.805", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.363", + "Nov": "0.326", + "Dec": "0.286", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.672", + "Jun": "0.751", + "Jul": "0.804", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.362", + "Nov": "0.326", + "Dec": "0.285", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.342", + "Mar": "0.435", + "Apr": "0.574", + "May": "0.672", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.358", + "Nov": "0.324", + "Dec": "0.281", + "All-year": "0.499", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.258", + "Feb": "0.342", + "Mar": "0.431", + "Apr": "0.574", + "May": "0.669", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.724", + "Sep": "0.564", + "Oct": "0.353", + "Nov": "0.316", + "Dec": "0.272", + "All-year": "0.497", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.247", + "Feb": "0.342", + "Mar": "0.414", + "Apr": "0.565", + "May": "0.655", + "Jun": "0.728", + "Jul": "0.780", + "Aug": "0.714", + "Sep": "0.537", + "Oct": "0.327", + "Nov": "0.285", + "Dec": "0.266", + "All-year": "0.488", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.214", + "Feb": "0.302", + "Mar": "0.363", + "Apr": "0.532", + "May": "0.624", + "Jun": "0.702", + "Jul": "0.754", + "Aug": "0.682", + "Sep": "0.503", + "Oct": "0.288", + "Nov": "0.237", + "Dec": "0.215", + "All-year": "0.454", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.203", + "Mar": "0.283", + "Apr": "0.455", + "May": "0.542", + "Jun": "0.631", + "Jul": "0.693", + "Aug": "0.641", + "Sep": "0.407", + "Oct": "0.202", + "Nov": "0.131", + "Dec": "0.113", + "All-year": "0.384", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.130", + "Mar": "0.181", + "Apr": "0.350", + "May": "0.450", + "Jun": "0.531", + "Jul": "0.591", + "Aug": "0.552", + "Sep": "0.336", + "Oct": "0.129", + "Nov": "0.050", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.317", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.698", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.315", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.695", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.183", + "Feb": "0.226", + "Mar": "0.310", + "Apr": "0.505", + "May": "0.612", + "Jun": "0.693", + "Jul": "0.728", + "Aug": "0.624", + "Sep": "0.470", + "Oct": "0.271", + "Nov": "0.198", + "Dec": "0.179", + "All-year": "0.474", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.180", + "Feb": "0.222", + "Mar": "0.307", + "Apr": "0.498", + "May": "0.606", + "Jun": "0.690", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.463", + "Oct": "0.259", + "Nov": "0.194", + "Dec": "0.176", + "All-year": "0.472", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.140", + "Feb": "0.214", + "Mar": "0.300", + "Apr": "0.483", + "May": "0.591", + "Jun": "0.678", + "Jul": "0.717", + "Aug": "0.614", + "Sep": "0.444", + "Oct": "0.235", + "Nov": "0.182", + "Dec": "0.160", + "All-year": "0.456", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.191", + "Mar": "0.278", + "Apr": "0.453", + "May": "0.544", + "Jun": "0.640", + "Jul": "0.665", + "Aug": "0.579", + "Sep": "0.408", + "Oct": "0.179", + "Nov": "0.131", + "Dec": "0.128", + "All-year": "0.420", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.092", + "Mar": "0.187", + "Apr": "0.364", + "May": "0.460", + "Jun": "0.519", + "Jul": "0.579", + "Aug": "0.528", + "Sep": "0.289", + "Oct": "0.110", + "Nov": "0.077", + "Dec": "0.000", + "All-year": "0.354", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.104", + "Apr": "0.226", + "May": "0.345", + "Jun": "0.426", + "Jul": "0.463", + "Aug": "0.454", + "Sep": "0.199", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.591", + "Sep": "0.310", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.455", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.590", + "Sep": "0.308", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.454", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.575", + "Jul": "0.601", + "Aug": "0.582", + "Sep": "0.308", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.452", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.425", + "May": "0.524", + "Jun": "0.563", + "Jul": "0.601", + "Aug": "0.577", + "Sep": "0.300", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.060", + "Mar": "0.159", + "Apr": "0.421", + "May": "0.511", + "Jun": "0.536", + "Jul": "0.577", + "Aug": "0.544", + "Sep": "0.297", + "Oct": "0.145", + "Nov": "0.110", + "Dec": "0.062", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.133", + "Apr": "0.386", + "May": "0.473", + "Jun": "0.489", + "Jul": "0.504", + "Aug": "0.505", + "Sep": "0.265", + "Oct": "0.093", + "Nov": "0.051", + "Dec": "0.035", + "All-year": "0.400", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.263", + "May": "0.335", + "Jun": "0.413", + "Jul": "0.358", + "Aug": "0.413", + "Sep": "0.182", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.326", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.147", + "May": "0.180", + "Jun": "0.265", + "Jul": "0.198", + "Aug": "0.278", + "Sep": "0.100", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.249", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.674", + "Jun": "0.753", + "Jul": "0.805", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.363", + "Nov": "0.326", + "Dec": "0.286", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.672", + "Jun": "0.751", + "Jul": "0.804", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.362", + "Nov": "0.326", + "Dec": "0.285", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.342", + "Mar": "0.435", + "Apr": "0.574", + "May": "0.672", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.358", + "Nov": "0.324", + "Dec": "0.281", + "All-year": "0.499", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.258", + "Feb": "0.342", + "Mar": "0.431", + "Apr": "0.574", + "May": "0.669", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.724", + "Sep": "0.564", + "Oct": "0.353", + "Nov": "0.316", + "Dec": "0.272", + "All-year": "0.497", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.247", + "Feb": "0.342", + "Mar": "0.414", + "Apr": "0.565", + "May": "0.655", + "Jun": "0.728", + "Jul": "0.780", + "Aug": "0.714", + "Sep": "0.537", + "Oct": "0.327", + "Nov": "0.285", + "Dec": "0.266", + "All-year": "0.488", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.214", + "Feb": "0.302", + "Mar": "0.363", + "Apr": "0.532", + "May": "0.624", + "Jun": "0.702", + "Jul": "0.754", + "Aug": "0.682", + "Sep": "0.503", + "Oct": "0.288", + "Nov": "0.237", + "Dec": "0.215", + "All-year": "0.454", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.203", + "Mar": "0.283", + "Apr": "0.455", + "May": "0.542", + "Jun": "0.631", + "Jul": "0.693", + "Aug": "0.641", + "Sep": "0.407", + "Oct": "0.202", + "Nov": "0.131", + "Dec": "0.113", + "All-year": "0.384", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.130", + "Mar": "0.181", + "Apr": "0.350", + "May": "0.450", + "Jun": "0.531", + "Jul": "0.591", + "Aug": "0.552", + "Sep": "0.336", + "Oct": "0.129", + "Nov": "0.050", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.317", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.698", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.315", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.695", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.183", + "Feb": "0.226", + "Mar": "0.310", + "Apr": "0.505", + "May": "0.612", + "Jun": "0.693", + "Jul": "0.728", + "Aug": "0.624", + "Sep": "0.471", + "Oct": "0.271", + "Nov": "0.198", + "Dec": "0.179", + "All-year": "0.474", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.180", + "Feb": "0.222", + "Mar": "0.307", + "Apr": "0.498", + "May": "0.606", + "Jun": "0.690", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.463", + "Oct": "0.259", + "Nov": "0.194", + "Dec": "0.176", + "All-year": "0.472", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.140", + "Feb": "0.214", + "Mar": "0.300", + "Apr": "0.483", + "May": "0.591", + "Jun": "0.678", + "Jul": "0.717", + "Aug": "0.614", + "Sep": "0.445", + "Oct": "0.235", + "Nov": "0.182", + "Dec": "0.160", + "All-year": "0.456", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.191", + "Mar": "0.278", + "Apr": "0.453", + "May": "0.544", + "Jun": "0.640", + "Jul": "0.665", + "Aug": "0.579", + "Sep": "0.408", + "Oct": "0.179", + "Nov": "0.131", + "Dec": "0.128", + "All-year": "0.420", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.092", + "Mar": "0.187", + "Apr": "0.364", + "May": "0.460", + "Jun": "0.519", + "Jul": "0.579", + "Aug": "0.528", + "Sep": "0.289", + "Oct": "0.110", + "Nov": "0.077", + "Dec": "0.000", + "All-year": "0.354", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.104", + "Apr": "0.226", + "May": "0.345", + "Jun": "0.426", + "Jul": "0.463", + "Aug": "0.454", + "Sep": "0.199", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.591", + "Sep": "0.310", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.455", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.590", + "Sep": "0.308", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.454", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.575", + "Jul": "0.601", + "Aug": "0.582", + "Sep": "0.308", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.452", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.425", + "May": "0.524", + "Jun": "0.563", + "Jul": "0.601", + "Aug": "0.577", + "Sep": "0.300", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.060", + "Mar": "0.159", + "Apr": "0.421", + "May": "0.511", + "Jun": "0.536", + "Jul": "0.577", + "Aug": "0.544", + "Sep": "0.297", + "Oct": "0.145", + "Nov": "0.110", + "Dec": "0.062", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.133", + "Apr": "0.386", + "May": "0.473", + "Jun": "0.489", + "Jul": "0.504", + "Aug": "0.505", + "Sep": "0.265", + "Oct": "0.093", + "Nov": "0.051", + "Dec": "0.035", + "All-year": "0.400", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.263", + "May": "0.335", + "Jun": "0.413", + "Jul": "0.358", + "Aug": "0.413", + "Sep": "0.182", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.326", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.147", + "May": "0.180", + "Jun": "0.265", + "Jul": "0.198", + "Aug": "0.278", + "Sep": "0.100", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.249", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.674", + "Jun": "0.753", + "Jul": "0.805", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.363", + "Nov": "0.326", + "Dec": "0.286", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.672", + "Jun": "0.751", + "Jul": "0.804", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.362", + "Nov": "0.326", + "Dec": "0.285", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.342", + "Mar": "0.435", + "Apr": "0.574", + "May": "0.672", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.358", + "Nov": "0.324", + "Dec": "0.281", + "All-year": "0.499", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.258", + "Feb": "0.342", + "Mar": "0.431", + "Apr": "0.574", + "May": "0.669", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.724", + "Sep": "0.564", + "Oct": "0.353", + "Nov": "0.316", + "Dec": "0.272", + "All-year": "0.497", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.247", + "Feb": "0.342", + "Mar": "0.414", + "Apr": "0.565", + "May": "0.655", + "Jun": "0.728", + "Jul": "0.780", + "Aug": "0.714", + "Sep": "0.537", + "Oct": "0.327", + "Nov": "0.285", + "Dec": "0.266", + "All-year": "0.488", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.214", + "Feb": "0.302", + "Mar": "0.363", + "Apr": "0.532", + "May": "0.624", + "Jun": "0.702", + "Jul": "0.754", + "Aug": "0.682", + "Sep": "0.503", + "Oct": "0.288", + "Nov": "0.237", + "Dec": "0.215", + "All-year": "0.454", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.203", + "Mar": "0.283", + "Apr": "0.455", + "May": "0.542", + "Jun": "0.631", + "Jul": "0.693", + "Aug": "0.641", + "Sep": "0.407", + "Oct": "0.202", + "Nov": "0.131", + "Dec": "0.113", + "All-year": "0.384", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.130", + "Mar": "0.181", + "Apr": "0.350", + "May": "0.450", + "Jun": "0.531", + "Jul": "0.591", + "Aug": "0.552", + "Sep": "0.336", + "Oct": "0.129", + "Nov": "0.050", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.317", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.698", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.315", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.695", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.183", + "Feb": "0.226", + "Mar": "0.310", + "Apr": "0.505", + "May": "0.612", + "Jun": "0.693", + "Jul": "0.728", + "Aug": "0.624", + "Sep": "0.471", + "Oct": "0.271", + "Nov": "0.198", + "Dec": "0.179", + "All-year": "0.474", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.180", + "Feb": "0.222", + "Mar": "0.307", + "Apr": "0.498", + "May": "0.606", + "Jun": "0.690", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.463", + "Oct": "0.259", + "Nov": "0.194", + "Dec": "0.176", + "All-year": "0.472", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.140", + "Feb": "0.214", + "Mar": "0.300", + "Apr": "0.483", + "May": "0.591", + "Jun": "0.678", + "Jul": "0.717", + "Aug": "0.614", + "Sep": "0.445", + "Oct": "0.235", + "Nov": "0.182", + "Dec": "0.160", + "All-year": "0.456", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.191", + "Mar": "0.278", + "Apr": "0.453", + "May": "0.544", + "Jun": "0.640", + "Jul": "0.665", + "Aug": "0.579", + "Sep": "0.408", + "Oct": "0.179", + "Nov": "0.131", + "Dec": "0.128", + "All-year": "0.420", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.092", + "Mar": "0.187", + "Apr": "0.364", + "May": "0.460", + "Jun": "0.519", + "Jul": "0.579", + "Aug": "0.528", + "Sep": "0.289", + "Oct": "0.110", + "Nov": "0.077", + "Dec": "0.000", + "All-year": "0.354", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.104", + "Apr": "0.226", + "May": "0.345", + "Jun": "0.426", + "Jul": "0.463", + "Aug": "0.454", + "Sep": "0.199", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.591", + "Sep": "0.310", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.455", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.590", + "Sep": "0.308", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.454", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.575", + "Jul": "0.601", + "Aug": "0.582", + "Sep": "0.308", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.452", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.425", + "May": "0.524", + "Jun": "0.563", + "Jul": "0.601", + "Aug": "0.577", + "Sep": "0.300", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.060", + "Mar": "0.159", + "Apr": "0.421", + "May": "0.511", + "Jun": "0.536", + "Jul": "0.577", + "Aug": "0.544", + "Sep": "0.297", + "Oct": "0.145", + "Nov": "0.110", + "Dec": "0.062", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.133", + "Apr": "0.386", + "May": "0.473", + "Jun": "0.489", + "Jul": "0.504", + "Aug": "0.505", + "Sep": "0.265", + "Oct": "0.093", + "Nov": "0.051", + "Dec": "0.035", + "All-year": "0.400", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.263", + "May": "0.335", + "Jun": "0.413", + "Jul": "0.358", + "Aug": "0.413", + "Sep": "0.182", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.326", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.147", + "May": "0.180", + "Jun": "0.265", + "Jul": "0.198", + "Aug": "0.278", + "Sep": "0.100", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.249", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.674", + "Jun": "0.753", + "Jul": "0.805", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.363", + "Nov": "0.326", + "Dec": "0.286", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.345", + "Mar": "0.438", + "Apr": "0.581", + "May": "0.672", + "Jun": "0.751", + "Jul": "0.804", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.362", + "Nov": "0.326", + "Dec": "0.285", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.342", + "Mar": "0.435", + "Apr": "0.574", + "May": "0.672", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.728", + "Sep": "0.576", + "Oct": "0.358", + "Nov": "0.324", + "Dec": "0.281", + "All-year": "0.499", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.258", + "Feb": "0.342", + "Mar": "0.431", + "Apr": "0.574", + "May": "0.669", + "Jun": "0.747", + "Jul": "0.800", + "Aug": "0.724", + "Sep": "0.564", + "Oct": "0.353", + "Nov": "0.316", + "Dec": "0.272", + "All-year": "0.497", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.247", + "Feb": "0.342", + "Mar": "0.414", + "Apr": "0.565", + "May": "0.655", + "Jun": "0.728", + "Jul": "0.780", + "Aug": "0.714", + "Sep": "0.537", + "Oct": "0.327", + "Nov": "0.285", + "Dec": "0.266", + "All-year": "0.488", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.214", + "Feb": "0.302", + "Mar": "0.363", + "Apr": "0.532", + "May": "0.624", + "Jun": "0.702", + "Jul": "0.754", + "Aug": "0.682", + "Sep": "0.503", + "Oct": "0.288", + "Nov": "0.237", + "Dec": "0.215", + "All-year": "0.454", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.203", + "Mar": "0.283", + "Apr": "0.455", + "May": "0.542", + "Jun": "0.631", + "Jul": "0.693", + "Aug": "0.641", + "Sep": "0.407", + "Oct": "0.202", + "Nov": "0.131", + "Dec": "0.113", + "All-year": "0.384", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.130", + "Mar": "0.181", + "Apr": "0.350", + "May": "0.450", + "Jun": "0.531", + "Jul": "0.591", + "Aug": "0.552", + "Sep": "0.336", + "Oct": "0.129", + "Nov": "0.050", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.317", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.698", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.185", + "Feb": "0.229", + "Mar": "0.315", + "Apr": "0.513", + "May": "0.616", + "Jun": "0.695", + "Jul": "0.728", + "Aug": "0.628", + "Sep": "0.476", + "Oct": "0.273", + "Nov": "0.200", + "Dec": "0.181", + "All-year": "0.478", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.183", + "Feb": "0.226", + "Mar": "0.310", + "Apr": "0.505", + "May": "0.612", + "Jun": "0.693", + "Jul": "0.728", + "Aug": "0.624", + "Sep": "0.471", + "Oct": "0.271", + "Nov": "0.198", + "Dec": "0.179", + "All-year": "0.474", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.180", + "Feb": "0.222", + "Mar": "0.307", + "Apr": "0.498", + "May": "0.606", + "Jun": "0.690", + "Jul": "0.724", + "Aug": "0.619", + "Sep": "0.463", + "Oct": "0.259", + "Nov": "0.194", + "Dec": "0.176", + "All-year": "0.472", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.140", + "Feb": "0.214", + "Mar": "0.300", + "Apr": "0.483", + "May": "0.591", + "Jun": "0.678", + "Jul": "0.717", + "Aug": "0.614", + "Sep": "0.445", + "Oct": "0.235", + "Nov": "0.182", + "Dec": "0.160", + "All-year": "0.456", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.191", + "Mar": "0.278", + "Apr": "0.453", + "May": "0.544", + "Jun": "0.640", + "Jul": "0.665", + "Aug": "0.579", + "Sep": "0.408", + "Oct": "0.179", + "Nov": "0.131", + "Dec": "0.128", + "All-year": "0.420", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.092", + "Mar": "0.187", + "Apr": "0.364", + "May": "0.460", + "Jun": "0.519", + "Jul": "0.579", + "Aug": "0.528", + "Sep": "0.289", + "Oct": "0.110", + "Nov": "0.077", + "Dec": "0.000", + "All-year": "0.354", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.104", + "Apr": "0.226", + "May": "0.345", + "Jun": "0.426", + "Jul": "0.463", + "Aug": "0.454", + "Sep": "0.199", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.293", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.591", + "Sep": "0.310", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.455", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.076", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.581", + "Jul": "0.601", + "Aug": "0.590", + "Sep": "0.308", + "Oct": "0.175", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.454", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.435", + "May": "0.531", + "Jun": "0.575", + "Jul": "0.601", + "Aug": "0.582", + "Sep": "0.308", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.452", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.061", + "Mar": "0.179", + "Apr": "0.425", + "May": "0.524", + "Jun": "0.563", + "Jul": "0.601", + "Aug": "0.577", + "Sep": "0.300", + "Oct": "0.171", + "Nov": "0.142", + "Dec": "0.070", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.040", + "Feb": "0.060", + "Mar": "0.159", + "Apr": "0.421", + "May": "0.511", + "Jun": "0.536", + "Jul": "0.577", + "Aug": "0.544", + "Sep": "0.297", + "Oct": "0.145", + "Nov": "0.110", + "Dec": "0.062", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.060", + "Mar": "0.133", + "Apr": "0.386", + "May": "0.473", + "Jun": "0.489", + "Jul": "0.504", + "Aug": "0.505", + "Sep": "0.265", + "Oct": "0.093", + "Nov": "0.051", + "Dec": "0.035", + "All-year": "0.400", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.263", + "May": "0.335", + "Jun": "0.413", + "Jul": "0.358", + "Aug": "0.413", + "Sep": "0.182", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.326", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.147", + "May": "0.180", + "Jun": "0.265", + "Jul": "0.198", + "Aug": "0.278", + "Sep": "0.100", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.249", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.015", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.014", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.008", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.017", + "Oct": "0.004", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.004", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.003", + "All-year": "0.020", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.071", + "Mar": "0.093", + "Apr": "0.138", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.167", + "Sep": "0.125", + "Oct": "0.067", + "Nov": "0.069", + "Dec": "0.068", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.058", + "Feb": "0.071", + "Mar": "0.092", + "Apr": "0.137", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.163", + "Sep": "0.122", + "Oct": "0.067", + "Nov": "0.067", + "Dec": "0.066", + "All-year": "0.116", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.119", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.062", + "Dec": "0.064", + "All-year": "0.107", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.056", + "Mar": "0.070", + "Apr": "0.114", + "May": "0.122", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.054", + "All-year": "0.099", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.022", + "Nov": "0.038", + "Dec": "0.024", + "All-year": "0.070", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.026", + "Feb": "0.034", + "Mar": "0.064", + "Apr": "0.106", + "May": "0.120", + "Jun": "0.141", + "Jul": "0.144", + "Aug": "0.120", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.040", + "Dec": "0.032", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.026", + "Feb": "0.034", + "Mar": "0.061", + "Apr": "0.103", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.116", + "Sep": "0.094", + "Oct": "0.034", + "Nov": "0.040", + "Dec": "0.032", + "All-year": "0.106", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.029", + "Mar": "0.050", + "Apr": "0.094", + "May": "0.107", + "Jun": "0.127", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.036", + "Dec": "0.030", + "All-year": "0.094", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.027", + "Mar": "0.050", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.120", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.024", + "Nov": "0.029", + "Dec": "0.028", + "All-year": "0.090", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.018", + "Mar": "0.019", + "Apr": "0.044", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.000", + "All-year": "0.061", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.016", + "Mar": "0.026", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.054", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.020", + "All-year": "0.097", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.016", + "Mar": "0.023", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.054", + "Oct": "0.020", + "Nov": "0.022", + "Dec": "0.019", + "All-year": "0.096", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.061", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.050", + "Oct": "0.017", + "Nov": "0.018", + "Dec": "0.015", + "All-year": "0.089", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.037", + "Oct": "0.000", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.083", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.143", + "Feb": "0.189", + "Mar": "0.224", + "Apr": "0.334", + "May": "0.373", + "Jun": "0.429", + "Jul": "0.415", + "Aug": "0.377", + "Sep": "0.317", + "Oct": "0.176", + "Nov": "0.152", + "Dec": "0.162", + "All-year": "0.276", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.140", + "Feb": "0.189", + "Mar": "0.220", + "Apr": "0.334", + "May": "0.370", + "Jun": "0.425", + "Jul": "0.411", + "Aug": "0.376", + "Sep": "0.315", + "Oct": "0.173", + "Nov": "0.151", + "Dec": "0.161", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.136", + "Feb": "0.181", + "Mar": "0.212", + "Apr": "0.326", + "May": "0.362", + "Jun": "0.410", + "Jul": "0.388", + "Aug": "0.359", + "Sep": "0.308", + "Oct": "0.161", + "Nov": "0.149", + "Dec": "0.157", + "All-year": "0.259", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.179", + "Mar": "0.206", + "Apr": "0.323", + "May": "0.351", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.347", + "Sep": "0.290", + "Oct": "0.155", + "Nov": "0.136", + "Dec": "0.147", + "All-year": "0.253", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.101", + "Feb": "0.138", + "Mar": "0.177", + "Apr": "0.263", + "May": "0.319", + "Jun": "0.367", + "Jul": "0.339", + "Aug": "0.297", + "Sep": "0.242", + "Oct": "0.114", + "Nov": "0.112", + "Dec": "0.123", + "All-year": "0.220", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.101", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.138", + "Oct": "0.069", + "Nov": "0.069", + "Dec": "0.068", + "All-year": "0.164", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.075", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.080", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.103", + "Feb": "0.095", + "Mar": "0.172", + "Apr": "0.269", + "May": "0.306", + "Jun": "0.352", + "Jul": "0.342", + "Aug": "0.317", + "Sep": "0.224", + "Oct": "0.114", + "Nov": "0.106", + "Dec": "0.088", + "All-year": "0.259", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.092", + "Mar": "0.171", + "Apr": "0.267", + "May": "0.302", + "Jun": "0.349", + "Jul": "0.338", + "Aug": "0.315", + "Sep": "0.222", + "Oct": "0.110", + "Nov": "0.106", + "Dec": "0.087", + "All-year": "0.257", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.093", + "Feb": "0.085", + "Mar": "0.165", + "Apr": "0.256", + "May": "0.294", + "Jun": "0.336", + "Jul": "0.319", + "Aug": "0.304", + "Sep": "0.207", + "Oct": "0.104", + "Nov": "0.099", + "Dec": "0.084", + "All-year": "0.246", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.086", + "Feb": "0.079", + "Mar": "0.160", + "Apr": "0.251", + "May": "0.284", + "Jun": "0.325", + "Jul": "0.304", + "Aug": "0.280", + "Sep": "0.200", + "Oct": "0.095", + "Nov": "0.092", + "Dec": "0.075", + "All-year": "0.237", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.061", + "Mar": "0.122", + "Apr": "0.199", + "May": "0.247", + "Jun": "0.289", + "Jul": "0.276", + "Aug": "0.212", + "Sep": "0.183", + "Oct": "0.065", + "Nov": "0.068", + "Dec": "0.057", + "All-year": "0.204", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.067", + "Apr": "0.124", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.016", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.146", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.031", + "Feb": "0.057", + "Mar": "0.103", + "Apr": "0.226", + "May": "0.253", + "Jun": "0.310", + "Jul": "0.238", + "Aug": "0.259", + "Sep": "0.172", + "Oct": "0.081", + "Nov": "0.072", + "Dec": "0.047", + "All-year": "0.239", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.031", + "Feb": "0.057", + "Mar": "0.098", + "Apr": "0.224", + "May": "0.250", + "Jun": "0.304", + "Jul": "0.238", + "Aug": "0.254", + "Sep": "0.168", + "Oct": "0.079", + "Nov": "0.071", + "Dec": "0.044", + "All-year": "0.237", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.027", + "Feb": "0.055", + "Mar": "0.094", + "Apr": "0.200", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.161", + "Oct": "0.077", + "Nov": "0.053", + "Dec": "0.044", + "All-year": "0.228", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.027", + "Feb": "0.049", + "Mar": "0.094", + "Apr": "0.192", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.151", + "Oct": "0.069", + "Nov": "0.046", + "Dec": "0.044", + "All-year": "0.220", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.022", + "Mar": "0.063", + "Apr": "0.147", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.111", + "Oct": "0.039", + "Nov": "0.019", + "Dec": "0.027", + "All-year": "0.195", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.125", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.248", + "Feb": "0.341", + "Mar": "0.387", + "Apr": "0.528", + "May": "0.591", + "Jun": "0.676", + "Jul": "0.686", + "Aug": "0.616", + "Sep": "0.498", + "Oct": "0.316", + "Nov": "0.281", + "Dec": "0.265", + "All-year": "0.457", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.247", + "Feb": "0.336", + "Mar": "0.387", + "Apr": "0.525", + "May": "0.591", + "Jun": "0.674", + "Jul": "0.683", + "Aug": "0.615", + "Sep": "0.497", + "Oct": "0.312", + "Nov": "0.276", + "Dec": "0.261", + "All-year": "0.455", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.325", + "Mar": "0.382", + "Apr": "0.520", + "May": "0.589", + "Jun": "0.656", + "Jul": "0.676", + "Aug": "0.606", + "Sep": "0.491", + "Oct": "0.300", + "Nov": "0.264", + "Dec": "0.257", + "All-year": "0.446", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.308", + "Mar": "0.378", + "Apr": "0.520", + "May": "0.581", + "Jun": "0.649", + "Jul": "0.671", + "Aug": "0.594", + "Sep": "0.488", + "Oct": "0.294", + "Nov": "0.258", + "Dec": "0.252", + "All-year": "0.441", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.213", + "Feb": "0.288", + "Mar": "0.358", + "Apr": "0.494", + "May": "0.544", + "Jun": "0.626", + "Jul": "0.646", + "Aug": "0.574", + "Sep": "0.452", + "Oct": "0.263", + "Nov": "0.230", + "Dec": "0.225", + "All-year": "0.407", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.181", + "Feb": "0.214", + "Mar": "0.306", + "Apr": "0.430", + "May": "0.474", + "Jun": "0.563", + "Jul": "0.598", + "Aug": "0.515", + "Sep": "0.390", + "Oct": "0.195", + "Nov": "0.161", + "Dec": "0.165", + "All-year": "0.351", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.083", + "Feb": "0.103", + "Mar": "0.168", + "Apr": "0.286", + "May": "0.343", + "Jun": "0.426", + "Jul": "0.452", + "Aug": "0.399", + "Sep": "0.253", + "Oct": "0.099", + "Nov": "0.085", + "Dec": "0.089", + "All-year": "0.253", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.117", + "Apr": "0.186", + "May": "0.251", + "Jun": "0.319", + "Jul": "0.258", + "Aug": "0.250", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.176", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.196", + "Mar": "0.318", + "Apr": "0.485", + "May": "0.517", + "Jun": "0.622", + "Jul": "0.616", + "Aug": "0.558", + "Sep": "0.425", + "Oct": "0.241", + "Nov": "0.206", + "Dec": "0.196", + "All-year": "0.434", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.177", + "Feb": "0.196", + "Mar": "0.314", + "Apr": "0.483", + "May": "0.511", + "Jun": "0.619", + "Jul": "0.610", + "Aug": "0.555", + "Sep": "0.425", + "Oct": "0.240", + "Nov": "0.203", + "Dec": "0.195", + "All-year": "0.432", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.189", + "Mar": "0.311", + "Apr": "0.474", + "May": "0.507", + "Jun": "0.607", + "Jul": "0.602", + "Aug": "0.546", + "Sep": "0.415", + "Oct": "0.233", + "Nov": "0.199", + "Dec": "0.190", + "All-year": "0.424", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.181", + "Mar": "0.301", + "Apr": "0.463", + "May": "0.504", + "Jun": "0.596", + "Jul": "0.599", + "Aug": "0.530", + "Sep": "0.407", + "Oct": "0.222", + "Nov": "0.190", + "Dec": "0.177", + "All-year": "0.417", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.136", + "Feb": "0.164", + "Mar": "0.264", + "Apr": "0.437", + "May": "0.480", + "Jun": "0.556", + "Jul": "0.563", + "Aug": "0.503", + "Sep": "0.376", + "Oct": "0.202", + "Nov": "0.166", + "Dec": "0.144", + "All-year": "0.388", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.129", + "Mar": "0.201", + "Apr": "0.356", + "May": "0.412", + "Jun": "0.484", + "Jul": "0.472", + "Aug": "0.437", + "Sep": "0.278", + "Oct": "0.132", + "Nov": "0.119", + "Dec": "0.081", + "All-year": "0.335", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.070", + "Apr": "0.196", + "May": "0.260", + "Jun": "0.299", + "Jul": "0.294", + "Aug": "0.281", + "Sep": "0.158", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.235", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.107", + "May": "0.122", + "Jun": "0.210", + "Jul": "0.181", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.148", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.087", + "Feb": "0.111", + "Mar": "0.194", + "Apr": "0.425", + "May": "0.464", + "Jun": "0.511", + "Jul": "0.484", + "Aug": "0.466", + "Sep": "0.315", + "Oct": "0.187", + "Nov": "0.129", + "Dec": "0.095", + "All-year": "0.412", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.087", + "Feb": "0.109", + "Mar": "0.191", + "Apr": "0.422", + "May": "0.464", + "Jun": "0.511", + "Jul": "0.480", + "Aug": "0.466", + "Sep": "0.314", + "Oct": "0.181", + "Nov": "0.128", + "Dec": "0.094", + "All-year": "0.411", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.099", + "Mar": "0.181", + "Apr": "0.407", + "May": "0.444", + "Jun": "0.504", + "Jul": "0.468", + "Aug": "0.450", + "Sep": "0.307", + "Oct": "0.177", + "Nov": "0.121", + "Dec": "0.094", + "All-year": "0.406", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.099", + "Mar": "0.181", + "Apr": "0.407", + "May": "0.437", + "Jun": "0.490", + "Jul": "0.468", + "Aug": "0.433", + "Sep": "0.290", + "Oct": "0.167", + "Nov": "0.119", + "Dec": "0.089", + "All-year": "0.401", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.038", + "Feb": "0.060", + "Mar": "0.141", + "Apr": "0.365", + "May": "0.390", + "Jun": "0.471", + "Jul": "0.421", + "Aug": "0.379", + "Sep": "0.265", + "Oct": "0.132", + "Nov": "0.074", + "Dec": "0.067", + "All-year": "0.364", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.039", + "Mar": "0.099", + "Apr": "0.289", + "May": "0.331", + "Jun": "0.388", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.210", + "Oct": "0.059", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.292", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.131", + "May": "0.165", + "Jun": "0.204", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.074", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.188", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.113", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.405", + "Mar": "0.464", + "Apr": "0.612", + "May": "0.693", + "Jun": "0.779", + "Jul": "0.793", + "Aug": "0.718", + "Sep": "0.583", + "Oct": "0.386", + "Nov": "0.348", + "Dec": "0.326", + "All-year": "0.532", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.298", + "Feb": "0.403", + "Mar": "0.463", + "Apr": "0.607", + "May": "0.693", + "Jun": "0.779", + "Jul": "0.793", + "Aug": "0.716", + "Sep": "0.578", + "Oct": "0.384", + "Nov": "0.347", + "Dec": "0.324", + "All-year": "0.530", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.291", + "Feb": "0.395", + "Mar": "0.461", + "Apr": "0.601", + "May": "0.681", + "Jun": "0.767", + "Jul": "0.784", + "Aug": "0.711", + "Sep": "0.572", + "Oct": "0.374", + "Nov": "0.344", + "Dec": "0.322", + "All-year": "0.523", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.291", + "Feb": "0.391", + "Mar": "0.457", + "Apr": "0.601", + "May": "0.677", + "Jun": "0.764", + "Jul": "0.780", + "Aug": "0.698", + "Sep": "0.568", + "Oct": "0.371", + "Nov": "0.335", + "Dec": "0.312", + "All-year": "0.517", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.370", + "Mar": "0.433", + "Apr": "0.583", + "May": "0.662", + "Jun": "0.749", + "Jul": "0.765", + "Aug": "0.687", + "Sep": "0.535", + "Oct": "0.343", + "Nov": "0.292", + "Dec": "0.287", + "All-year": "0.498", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.232", + "Feb": "0.315", + "Mar": "0.386", + "Apr": "0.551", + "May": "0.612", + "Jun": "0.702", + "Jul": "0.719", + "Aug": "0.625", + "Sep": "0.501", + "Oct": "0.273", + "Nov": "0.229", + "Dec": "0.226", + "All-year": "0.445", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.109", + "Feb": "0.194", + "Mar": "0.287", + "Apr": "0.439", + "May": "0.491", + "Jun": "0.605", + "Jul": "0.609", + "Aug": "0.564", + "Sep": "0.336", + "Oct": "0.147", + "Nov": "0.155", + "Dec": "0.138", + "All-year": "0.360", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.121", + "Mar": "0.175", + "Apr": "0.292", + "May": "0.394", + "Jun": "0.508", + "Jul": "0.487", + "Aug": "0.455", + "Sep": "0.276", + "Oct": "0.115", + "Nov": "0.050", + "Dec": "0.000", + "All-year": "0.280", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.215", + "Feb": "0.266", + "Mar": "0.373", + "Apr": "0.563", + "May": "0.638", + "Jun": "0.726", + "Jul": "0.717", + "Aug": "0.630", + "Sep": "0.503", + "Oct": "0.315", + "Nov": "0.249", + "Dec": "0.217", + "All-year": "0.509", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.214", + "Feb": "0.263", + "Mar": "0.370", + "Apr": "0.561", + "May": "0.630", + "Jun": "0.725", + "Jul": "0.714", + "Aug": "0.629", + "Sep": "0.501", + "Oct": "0.314", + "Nov": "0.247", + "Dec": "0.216", + "All-year": "0.507", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.209", + "Feb": "0.254", + "Mar": "0.358", + "Apr": "0.551", + "May": "0.622", + "Jun": "0.717", + "Jul": "0.704", + "Aug": "0.623", + "Sep": "0.493", + "Oct": "0.303", + "Nov": "0.243", + "Dec": "0.213", + "All-year": "0.503", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.202", + "Feb": "0.251", + "Mar": "0.354", + "Apr": "0.547", + "May": "0.618", + "Jun": "0.713", + "Jul": "0.704", + "Aug": "0.620", + "Sep": "0.482", + "Oct": "0.283", + "Nov": "0.232", + "Dec": "0.207", + "All-year": "0.498", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.225", + "Mar": "0.349", + "Apr": "0.522", + "May": "0.578", + "Jun": "0.690", + "Jul": "0.694", + "Aug": "0.595", + "Sep": "0.445", + "Oct": "0.265", + "Nov": "0.196", + "Dec": "0.196", + "All-year": "0.476", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.103", + "Feb": "0.177", + "Mar": "0.308", + "Apr": "0.467", + "May": "0.522", + "Jun": "0.657", + "Jul": "0.610", + "Aug": "0.552", + "Sep": "0.375", + "Oct": "0.187", + "Nov": "0.168", + "Dec": "0.131", + "All-year": "0.423", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.067", + "Feb": "0.104", + "Mar": "0.179", + "Apr": "0.321", + "May": "0.422", + "Jun": "0.463", + "Jul": "0.475", + "Aug": "0.413", + "Sep": "0.247", + "Oct": "0.112", + "Nov": "0.072", + "Dec": "0.000", + "All-year": "0.335", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.214", + "May": "0.269", + "Jun": "0.358", + "Jul": "0.353", + "Aug": "0.304", + "Sep": "0.146", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.248", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.129", + "Mar": "0.237", + "Apr": "0.515", + "May": "0.552", + "Jun": "0.592", + "Jul": "0.618", + "Aug": "0.606", + "Sep": "0.389", + "Oct": "0.238", + "Nov": "0.174", + "Dec": "0.112", + "All-year": "0.478", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.129", + "Mar": "0.237", + "Apr": "0.515", + "May": "0.552", + "Jun": "0.592", + "Jul": "0.608", + "Aug": "0.601", + "Sep": "0.387", + "Oct": "0.234", + "Nov": "0.174", + "Dec": "0.112", + "All-year": "0.476", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.101", + "Feb": "0.129", + "Mar": "0.230", + "Apr": "0.513", + "May": "0.548", + "Jun": "0.576", + "Jul": "0.605", + "Aug": "0.591", + "Sep": "0.383", + "Oct": "0.227", + "Nov": "0.167", + "Dec": "0.102", + "All-year": "0.471", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.101", + "Feb": "0.121", + "Mar": "0.222", + "Apr": "0.504", + "May": "0.542", + "Jun": "0.576", + "Jul": "0.597", + "Aug": "0.569", + "Sep": "0.378", + "Oct": "0.220", + "Nov": "0.160", + "Dec": "0.102", + "All-year": "0.464", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.078", + "Mar": "0.179", + "Apr": "0.463", + "May": "0.539", + "Jun": "0.563", + "Jul": "0.554", + "Aug": "0.530", + "Sep": "0.333", + "Oct": "0.175", + "Nov": "0.121", + "Dec": "0.094", + "All-year": "0.444", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.038", + "Feb": "0.068", + "Mar": "0.147", + "Apr": "0.394", + "May": "0.440", + "Jun": "0.522", + "Jul": "0.495", + "Aug": "0.444", + "Sep": "0.265", + "Oct": "0.112", + "Nov": "0.054", + "Dec": "0.035", + "All-year": "0.397", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.276", + "May": "0.323", + "Jun": "0.339", + "Jul": "0.297", + "Aug": "0.276", + "Sep": "0.162", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.302", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.142", + "May": "0.141", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.218", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.449", + "Mar": "0.540", + "Apr": "0.685", + "May": "0.758", + "Jun": "0.838", + "Jul": "0.847", + "Aug": "0.774", + "Sep": "0.640", + "Oct": "0.444", + "Nov": "0.402", + "Dec": "0.382", + "All-year": "0.587", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.341", + "Feb": "0.447", + "Mar": "0.540", + "Apr": "0.682", + "May": "0.757", + "Jun": "0.837", + "Jul": "0.845", + "Aug": "0.774", + "Sep": "0.640", + "Oct": "0.442", + "Nov": "0.400", + "Dec": "0.382", + "All-year": "0.586", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.337", + "Feb": "0.443", + "Mar": "0.534", + "Apr": "0.679", + "May": "0.747", + "Jun": "0.834", + "Jul": "0.839", + "Aug": "0.774", + "Sep": "0.640", + "Oct": "0.437", + "Nov": "0.399", + "Dec": "0.381", + "All-year": "0.582", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.330", + "Feb": "0.443", + "Mar": "0.530", + "Apr": "0.676", + "May": "0.745", + "Jun": "0.832", + "Jul": "0.834", + "Aug": "0.769", + "Sep": "0.627", + "Oct": "0.432", + "Nov": "0.395", + "Dec": "0.378", + "All-year": "0.578", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.308", + "Feb": "0.415", + "Mar": "0.519", + "Apr": "0.665", + "May": "0.732", + "Jun": "0.824", + "Jul": "0.821", + "Aug": "0.749", + "Sep": "0.607", + "Oct": "0.410", + "Nov": "0.363", + "Dec": "0.354", + "All-year": "0.560", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.271", + "Feb": "0.373", + "Mar": "0.452", + "Apr": "0.642", + "May": "0.703", + "Jun": "0.796", + "Jul": "0.793", + "Aug": "0.732", + "Sep": "0.581", + "Oct": "0.331", + "Nov": "0.277", + "Dec": "0.303", + "All-year": "0.519", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.225", + "Mar": "0.347", + "Apr": "0.574", + "May": "0.623", + "Jun": "0.728", + "Jul": "0.759", + "Aug": "0.660", + "Sep": "0.471", + "Oct": "0.224", + "Nov": "0.183", + "Dec": "0.186", + "All-year": "0.439", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.137", + "Mar": "0.249", + "Apr": "0.469", + "May": "0.521", + "Jun": "0.608", + "Jul": "0.659", + "Aug": "0.579", + "Sep": "0.406", + "Oct": "0.141", + "Nov": "0.110", + "Dec": "0.109", + "All-year": "0.365", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.288", + "Mar": "0.411", + "Apr": "0.606", + "May": "0.703", + "Jun": "0.778", + "Jul": "0.804", + "Aug": "0.700", + "Sep": "0.560", + "Oct": "0.358", + "Nov": "0.289", + "Dec": "0.267", + "All-year": "0.557", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.242", + "Feb": "0.287", + "Mar": "0.408", + "Apr": "0.604", + "May": "0.702", + "Jun": "0.778", + "Jul": "0.804", + "Aug": "0.700", + "Sep": "0.559", + "Oct": "0.356", + "Nov": "0.289", + "Dec": "0.267", + "All-year": "0.556", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.287", + "Mar": "0.402", + "Apr": "0.599", + "May": "0.693", + "Jun": "0.777", + "Jul": "0.800", + "Aug": "0.696", + "Sep": "0.553", + "Oct": "0.351", + "Nov": "0.285", + "Dec": "0.261", + "All-year": "0.552", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.231", + "Feb": "0.279", + "Mar": "0.399", + "Apr": "0.592", + "May": "0.692", + "Jun": "0.777", + "Jul": "0.797", + "Aug": "0.680", + "Sep": "0.552", + "Oct": "0.349", + "Nov": "0.275", + "Dec": "0.258", + "All-year": "0.549", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.211", + "Feb": "0.272", + "Mar": "0.391", + "Apr": "0.584", + "May": "0.671", + "Jun": "0.754", + "Jul": "0.782", + "Aug": "0.669", + "Sep": "0.525", + "Oct": "0.329", + "Nov": "0.239", + "Dec": "0.231", + "All-year": "0.531", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.218", + "Mar": "0.338", + "Apr": "0.556", + "May": "0.638", + "Jun": "0.722", + "Jul": "0.749", + "Aug": "0.640", + "Sep": "0.472", + "Oct": "0.234", + "Nov": "0.208", + "Dec": "0.178", + "All-year": "0.489", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.076", + "Feb": "0.112", + "Mar": "0.240", + "Apr": "0.448", + "May": "0.526", + "Jun": "0.622", + "Jul": "0.662", + "Aug": "0.541", + "Sep": "0.376", + "Oct": "0.141", + "Nov": "0.107", + "Dec": "0.075", + "All-year": "0.411", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.134", + "Apr": "0.321", + "May": "0.394", + "Jun": "0.531", + "Jul": "0.512", + "Aug": "0.430", + "Sep": "0.220", + "Oct": "0.120", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.336", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.139", + "Mar": "0.282", + "Apr": "0.558", + "May": "0.621", + "Jun": "0.676", + "Jul": "0.696", + "Aug": "0.653", + "Sep": "0.457", + "Oct": "0.273", + "Nov": "0.196", + "Dec": "0.133", + "All-year": "0.539", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.128", + "Feb": "0.139", + "Mar": "0.282", + "Apr": "0.556", + "May": "0.618", + "Jun": "0.675", + "Jul": "0.691", + "Aug": "0.652", + "Sep": "0.454", + "Oct": "0.269", + "Nov": "0.196", + "Dec": "0.133", + "All-year": "0.537", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.139", + "Mar": "0.274", + "Apr": "0.550", + "May": "0.605", + "Jun": "0.667", + "Jul": "0.691", + "Aug": "0.648", + "Sep": "0.437", + "Oct": "0.266", + "Nov": "0.196", + "Dec": "0.124", + "All-year": "0.529", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.139", + "Mar": "0.266", + "Apr": "0.550", + "May": "0.605", + "Jun": "0.660", + "Jul": "0.691", + "Aug": "0.648", + "Sep": "0.437", + "Oct": "0.249", + "Nov": "0.190", + "Dec": "0.124", + "All-year": "0.526", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.086", + "Feb": "0.102", + "Mar": "0.203", + "Apr": "0.547", + "May": "0.571", + "Jun": "0.640", + "Jul": "0.664", + "Aug": "0.629", + "Sep": "0.374", + "Oct": "0.234", + "Nov": "0.151", + "Dec": "0.114", + "All-year": "0.498", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.073", + "Mar": "0.160", + "Apr": "0.435", + "May": "0.504", + "Jun": "0.606", + "Jul": "0.599", + "Aug": "0.563", + "Sep": "0.325", + "Oct": "0.168", + "Nov": "0.092", + "Dec": "0.039", + "All-year": "0.464", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.000", + "Apr": "0.333", + "May": "0.370", + "Jun": "0.492", + "Jul": "0.448", + "Aug": "0.431", + "Sep": "0.204", + "Oct": "0.075", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.381", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.231", + "May": "0.255", + "Jun": "0.440", + "Jul": "0.379", + "Aug": "0.288", + "Sep": "0.121", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.307", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.369", + "Feb": "0.469", + "Mar": "0.563", + "Apr": "0.710", + "May": "0.792", + "Jun": "0.856", + "Jul": "0.878", + "Aug": "0.789", + "Sep": "0.687", + "Oct": "0.483", + "Nov": "0.433", + "Dec": "0.402", + "All-year": "0.614", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.369", + "Feb": "0.468", + "Mar": "0.563", + "Apr": "0.710", + "May": "0.792", + "Jun": "0.856", + "Jul": "0.877", + "Aug": "0.789", + "Sep": "0.687", + "Oct": "0.483", + "Nov": "0.431", + "Dec": "0.401", + "All-year": "0.613", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.365", + "Feb": "0.465", + "Mar": "0.563", + "Apr": "0.706", + "May": "0.792", + "Jun": "0.853", + "Jul": "0.874", + "Aug": "0.789", + "Sep": "0.680", + "Oct": "0.476", + "Nov": "0.428", + "Dec": "0.401", + "All-year": "0.611", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.464", + "Mar": "0.556", + "Apr": "0.706", + "May": "0.792", + "Jun": "0.851", + "Jul": "0.874", + "Aug": "0.789", + "Sep": "0.676", + "Oct": "0.474", + "Nov": "0.424", + "Dec": "0.401", + "All-year": "0.606", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.452", + "Mar": "0.530", + "Apr": "0.691", + "May": "0.774", + "Jun": "0.843", + "Jul": "0.862", + "Aug": "0.782", + "Sep": "0.648", + "Oct": "0.458", + "Nov": "0.402", + "Dec": "0.372", + "All-year": "0.593", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.300", + "Feb": "0.387", + "Mar": "0.492", + "Apr": "0.674", + "May": "0.759", + "Jun": "0.820", + "Jul": "0.837", + "Aug": "0.767", + "Sep": "0.618", + "Oct": "0.403", + "Nov": "0.335", + "Dec": "0.329", + "All-year": "0.559", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.206", + "Feb": "0.298", + "Mar": "0.394", + "Apr": "0.622", + "May": "0.702", + "Jun": "0.765", + "Jul": "0.799", + "Aug": "0.736", + "Sep": "0.538", + "Oct": "0.288", + "Nov": "0.202", + "Dec": "0.221", + "All-year": "0.488", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.143", + "Feb": "0.164", + "Mar": "0.331", + "Apr": "0.561", + "May": "0.593", + "Jun": "0.696", + "Jul": "0.745", + "Aug": "0.666", + "Sep": "0.455", + "Oct": "0.200", + "Nov": "0.134", + "Dec": "0.134", + "All-year": "0.431", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.267", + "Feb": "0.296", + "Mar": "0.428", + "Apr": "0.630", + "May": "0.746", + "Jun": "0.799", + "Jul": "0.833", + "Aug": "0.733", + "Sep": "0.597", + "Oct": "0.386", + "Nov": "0.306", + "Dec": "0.295", + "All-year": "0.582", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.294", + "Mar": "0.427", + "Apr": "0.628", + "May": "0.746", + "Jun": "0.799", + "Jul": "0.833", + "Aug": "0.731", + "Sep": "0.597", + "Oct": "0.384", + "Nov": "0.305", + "Dec": "0.295", + "All-year": "0.581", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.260", + "Feb": "0.292", + "Mar": "0.422", + "Apr": "0.623", + "May": "0.742", + "Jun": "0.796", + "Jul": "0.833", + "Aug": "0.729", + "Sep": "0.584", + "Oct": "0.379", + "Nov": "0.303", + "Dec": "0.295", + "All-year": "0.579", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.253", + "Feb": "0.284", + "Mar": "0.414", + "Apr": "0.622", + "May": "0.735", + "Jun": "0.796", + "Jul": "0.833", + "Aug": "0.728", + "Sep": "0.581", + "Oct": "0.378", + "Nov": "0.296", + "Dec": "0.288", + "All-year": "0.576", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.231", + "Feb": "0.274", + "Mar": "0.405", + "Apr": "0.606", + "May": "0.703", + "Jun": "0.782", + "Jul": "0.809", + "Aug": "0.712", + "Sep": "0.565", + "Oct": "0.365", + "Nov": "0.268", + "Dec": "0.259", + "All-year": "0.560", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.177", + "Feb": "0.229", + "Mar": "0.401", + "Apr": "0.582", + "May": "0.698", + "Jun": "0.758", + "Jul": "0.771", + "Aug": "0.669", + "Sep": "0.516", + "Oct": "0.288", + "Nov": "0.227", + "Dec": "0.213", + "All-year": "0.522", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.090", + "Feb": "0.132", + "Mar": "0.292", + "Apr": "0.481", + "May": "0.619", + "Jun": "0.713", + "Jul": "0.703", + "Aug": "0.621", + "Sep": "0.399", + "Oct": "0.206", + "Nov": "0.126", + "Dec": "0.106", + "All-year": "0.457", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.112", + "Mar": "0.210", + "Apr": "0.379", + "May": "0.473", + "Jun": "0.572", + "Jul": "0.606", + "Aug": "0.532", + "Sep": "0.328", + "Oct": "0.127", + "Nov": "0.103", + "Dec": "0.000", + "All-year": "0.404", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.133", + "Feb": "0.145", + "Mar": "0.297", + "Apr": "0.571", + "May": "0.655", + "Jun": "0.710", + "Jul": "0.737", + "Aug": "0.681", + "Sep": "0.472", + "Oct": "0.298", + "Nov": "0.207", + "Dec": "0.152", + "All-year": "0.563", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.145", + "Mar": "0.297", + "Apr": "0.571", + "May": "0.655", + "Jun": "0.710", + "Jul": "0.737", + "Aug": "0.681", + "Sep": "0.472", + "Oct": "0.298", + "Nov": "0.207", + "Dec": "0.152", + "All-year": "0.562", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.145", + "Mar": "0.294", + "Apr": "0.563", + "May": "0.649", + "Jun": "0.704", + "Jul": "0.735", + "Aug": "0.681", + "Sep": "0.472", + "Oct": "0.298", + "Nov": "0.207", + "Dec": "0.141", + "All-year": "0.557", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.145", + "Mar": "0.286", + "Apr": "0.563", + "May": "0.637", + "Jun": "0.689", + "Jul": "0.731", + "Aug": "0.681", + "Sep": "0.465", + "Oct": "0.284", + "Nov": "0.201", + "Dec": "0.141", + "All-year": "0.555", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.105", + "Mar": "0.242", + "Apr": "0.563", + "May": "0.618", + "Jun": "0.679", + "Jul": "0.720", + "Aug": "0.677", + "Sep": "0.440", + "Oct": "0.257", + "Nov": "0.176", + "Dec": "0.117", + "All-year": "0.542", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.085", + "Mar": "0.171", + "Apr": "0.490", + "May": "0.565", + "Jun": "0.660", + "Jul": "0.698", + "Aug": "0.597", + "Sep": "0.372", + "Oct": "0.214", + "Nov": "0.096", + "Dec": "0.074", + "All-year": "0.504", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.073", + "Mar": "0.074", + "Apr": "0.386", + "May": "0.425", + "Jun": "0.563", + "Jul": "0.587", + "Aug": "0.558", + "Sep": "0.262", + "Oct": "0.129", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.431", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.293", + "May": "0.370", + "Jun": "0.493", + "Jul": "0.507", + "Aug": "0.448", + "Sep": "0.128", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.369", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.475", + "Mar": "0.569", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.485", + "Nov": "0.437", + "Dec": "0.403", + "All-year": "0.618", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.474", + "Mar": "0.569", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.485", + "Nov": "0.437", + "Dec": "0.402", + "All-year": "0.618", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.471", + "Mar": "0.569", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.880", + "Aug": "0.792", + "Sep": "0.688", + "Oct": "0.483", + "Nov": "0.435", + "Dec": "0.402", + "All-year": "0.616", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.364", + "Feb": "0.471", + "Mar": "0.565", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.880", + "Aug": "0.792", + "Sep": "0.685", + "Oct": "0.479", + "Nov": "0.431", + "Dec": "0.402", + "All-year": "0.612", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.346", + "Feb": "0.458", + "Mar": "0.534", + "Apr": "0.698", + "May": "0.780", + "Jun": "0.853", + "Jul": "0.869", + "Aug": "0.784", + "Sep": "0.665", + "Oct": "0.466", + "Nov": "0.409", + "Dec": "0.372", + "All-year": "0.599", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.389", + "Mar": "0.494", + "Apr": "0.676", + "May": "0.761", + "Jun": "0.832", + "Jul": "0.852", + "Aug": "0.772", + "Sep": "0.635", + "Oct": "0.405", + "Nov": "0.337", + "Dec": "0.352", + "All-year": "0.568", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.308", + "Mar": "0.409", + "Apr": "0.626", + "May": "0.708", + "Jun": "0.782", + "Jul": "0.811", + "Aug": "0.739", + "Sep": "0.599", + "Oct": "0.329", + "Nov": "0.203", + "Dec": "0.222", + "All-year": "0.501", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.157", + "Feb": "0.186", + "Mar": "0.337", + "Apr": "0.564", + "May": "0.605", + "Jun": "0.716", + "Jul": "0.770", + "Aug": "0.677", + "Sep": "0.464", + "Oct": "0.236", + "Nov": "0.162", + "Dec": "0.140", + "All-year": "0.441", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.271", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.631", + "May": "0.747", + "Jun": "0.803", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.608", + "Oct": "0.393", + "Nov": "0.308", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.630", + "May": "0.747", + "Jun": "0.801", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.608", + "Oct": "0.392", + "Nov": "0.308", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.296", + "Mar": "0.426", + "Apr": "0.624", + "May": "0.747", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.737", + "Sep": "0.603", + "Oct": "0.386", + "Nov": "0.307", + "Dec": "0.297", + "All-year": "0.583", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.292", + "Mar": "0.418", + "Apr": "0.624", + "May": "0.743", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.731", + "Sep": "0.597", + "Oct": "0.386", + "Nov": "0.300", + "Dec": "0.294", + "All-year": "0.581", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.242", + "Feb": "0.281", + "Mar": "0.409", + "Apr": "0.607", + "May": "0.719", + "Jun": "0.784", + "Jul": "0.811", + "Aug": "0.723", + "Sep": "0.576", + "Oct": "0.368", + "Nov": "0.270", + "Dec": "0.265", + "All-year": "0.564", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.240", + "Mar": "0.401", + "Apr": "0.586", + "May": "0.700", + "Jun": "0.765", + "Jul": "0.782", + "Aug": "0.687", + "Sep": "0.528", + "Oct": "0.300", + "Nov": "0.228", + "Dec": "0.216", + "All-year": "0.530", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.132", + "Mar": "0.296", + "Apr": "0.506", + "May": "0.624", + "Jun": "0.722", + "Jul": "0.718", + "Aug": "0.636", + "Sep": "0.429", + "Oct": "0.208", + "Nov": "0.142", + "Dec": "0.115", + "All-year": "0.471", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.116", + "Mar": "0.228", + "Apr": "0.410", + "May": "0.478", + "Jun": "0.587", + "Jul": "0.634", + "Aug": "0.581", + "Sep": "0.378", + "Oct": "0.132", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.415", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.685", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.211", + "Dec": "0.156", + "All-year": "0.568", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.134", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.685", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.211", + "Dec": "0.156", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.147", + "Mar": "0.297", + "Apr": "0.569", + "May": "0.653", + "Jun": "0.707", + "Jul": "0.741", + "Aug": "0.685", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.211", + "Dec": "0.153", + "All-year": "0.562", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.147", + "Mar": "0.289", + "Apr": "0.569", + "May": "0.641", + "Jun": "0.693", + "Jul": "0.739", + "Aug": "0.685", + "Sep": "0.467", + "Oct": "0.294", + "Nov": "0.206", + "Dec": "0.142", + "All-year": "0.560", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.101", + "Feb": "0.105", + "Mar": "0.243", + "Apr": "0.569", + "May": "0.637", + "Jun": "0.692", + "Jul": "0.722", + "Aug": "0.683", + "Sep": "0.446", + "Oct": "0.261", + "Nov": "0.186", + "Dec": "0.118", + "All-year": "0.547", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.086", + "Mar": "0.176", + "Apr": "0.490", + "May": "0.583", + "Jun": "0.663", + "Jul": "0.716", + "Aug": "0.608", + "Sep": "0.378", + "Oct": "0.215", + "Nov": "0.099", + "Dec": "0.077", + "All-year": "0.510", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.073", + "Mar": "0.129", + "Apr": "0.390", + "May": "0.450", + "Jun": "0.565", + "Jul": "0.629", + "Aug": "0.559", + "Sep": "0.283", + "Oct": "0.138", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.440", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.299", + "May": "0.376", + "Jun": "0.494", + "Jul": "0.511", + "Aug": "0.448", + "Sep": "0.144", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.387", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.475", + "Mar": "0.570", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.403", + "All-year": "0.619", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.474", + "Mar": "0.569", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.402", + "All-year": "0.618", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.471", + "Mar": "0.569", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.689", + "Oct": "0.483", + "Nov": "0.435", + "Dec": "0.402", + "All-year": "0.616", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.365", + "Feb": "0.471", + "Mar": "0.565", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.686", + "Oct": "0.479", + "Nov": "0.432", + "Dec": "0.402", + "All-year": "0.612", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.458", + "Mar": "0.534", + "Apr": "0.698", + "May": "0.781", + "Jun": "0.853", + "Jul": "0.869", + "Aug": "0.784", + "Sep": "0.666", + "Oct": "0.466", + "Nov": "0.410", + "Dec": "0.372", + "All-year": "0.600", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.389", + "Mar": "0.495", + "Apr": "0.676", + "May": "0.761", + "Jun": "0.833", + "Jul": "0.853", + "Aug": "0.773", + "Sep": "0.640", + "Oct": "0.405", + "Nov": "0.353", + "Dec": "0.352", + "All-year": "0.568", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.309", + "Mar": "0.409", + "Apr": "0.626", + "May": "0.708", + "Jun": "0.792", + "Jul": "0.812", + "Aug": "0.739", + "Sep": "0.599", + "Oct": "0.329", + "Nov": "0.203", + "Dec": "0.222", + "All-year": "0.502", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.157", + "Feb": "0.186", + "Mar": "0.337", + "Apr": "0.564", + "May": "0.605", + "Jun": "0.726", + "Jul": "0.770", + "Aug": "0.694", + "Sep": "0.464", + "Oct": "0.236", + "Nov": "0.162", + "Dec": "0.140", + "All-year": "0.442", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.271", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.631", + "May": "0.747", + "Jun": "0.803", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.609", + "Oct": "0.395", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.630", + "May": "0.747", + "Jun": "0.801", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.608", + "Oct": "0.394", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.296", + "Mar": "0.426", + "Apr": "0.624", + "May": "0.747", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.737", + "Sep": "0.604", + "Oct": "0.388", + "Nov": "0.308", + "Dec": "0.297", + "All-year": "0.584", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.292", + "Mar": "0.418", + "Apr": "0.624", + "May": "0.743", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.731", + "Sep": "0.597", + "Oct": "0.388", + "Nov": "0.301", + "Dec": "0.294", + "All-year": "0.581", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.242", + "Feb": "0.281", + "Mar": "0.409", + "Apr": "0.607", + "May": "0.719", + "Jun": "0.784", + "Jul": "0.813", + "Aug": "0.723", + "Sep": "0.576", + "Oct": "0.370", + "Nov": "0.270", + "Dec": "0.266", + "All-year": "0.564", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.241", + "Mar": "0.401", + "Apr": "0.586", + "May": "0.700", + "Jun": "0.765", + "Jul": "0.782", + "Aug": "0.687", + "Sep": "0.528", + "Oct": "0.300", + "Nov": "0.228", + "Dec": "0.216", + "All-year": "0.530", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.132", + "Mar": "0.296", + "Apr": "0.506", + "May": "0.624", + "Jun": "0.722", + "Jul": "0.730", + "Aug": "0.636", + "Sep": "0.430", + "Oct": "0.208", + "Nov": "0.142", + "Dec": "0.115", + "All-year": "0.471", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.116", + "Mar": "0.228", + "Apr": "0.410", + "May": "0.478", + "Jun": "0.587", + "Jul": "0.645", + "Aug": "0.581", + "Sep": "0.378", + "Oct": "0.132", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.416", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.568", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.136", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.297", + "Apr": "0.569", + "May": "0.653", + "Jun": "0.707", + "Jul": "0.741", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.153", + "All-year": "0.562", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.289", + "Apr": "0.569", + "May": "0.641", + "Jun": "0.693", + "Jul": "0.739", + "Aug": "0.687", + "Sep": "0.467", + "Oct": "0.294", + "Nov": "0.207", + "Dec": "0.142", + "All-year": "0.561", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.105", + "Mar": "0.243", + "Apr": "0.569", + "May": "0.637", + "Jun": "0.692", + "Jul": "0.722", + "Aug": "0.683", + "Sep": "0.446", + "Oct": "0.261", + "Nov": "0.186", + "Dec": "0.118", + "All-year": "0.548", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.086", + "Mar": "0.176", + "Apr": "0.490", + "May": "0.583", + "Jun": "0.663", + "Jul": "0.716", + "Aug": "0.608", + "Sep": "0.379", + "Oct": "0.215", + "Nov": "0.099", + "Dec": "0.077", + "All-year": "0.511", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.073", + "Mar": "0.129", + "Apr": "0.390", + "May": "0.450", + "Jun": "0.565", + "Jul": "0.629", + "Aug": "0.559", + "Sep": "0.283", + "Oct": "0.140", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.440", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.299", + "May": "0.376", + "Jun": "0.494", + "Jul": "0.511", + "Aug": "0.448", + "Sep": "0.144", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.387", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.475", + "Mar": "0.570", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.403", + "All-year": "0.619", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.474", + "Mar": "0.569", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.402", + "All-year": "0.618", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.471", + "Mar": "0.569", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.689", + "Oct": "0.483", + "Nov": "0.435", + "Dec": "0.402", + "All-year": "0.616", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.365", + "Feb": "0.471", + "Mar": "0.565", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.686", + "Oct": "0.479", + "Nov": "0.432", + "Dec": "0.402", + "All-year": "0.612", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.458", + "Mar": "0.534", + "Apr": "0.698", + "May": "0.781", + "Jun": "0.853", + "Jul": "0.869", + "Aug": "0.784", + "Sep": "0.666", + "Oct": "0.466", + "Nov": "0.410", + "Dec": "0.372", + "All-year": "0.600", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.389", + "Mar": "0.495", + "Apr": "0.676", + "May": "0.761", + "Jun": "0.833", + "Jul": "0.853", + "Aug": "0.773", + "Sep": "0.640", + "Oct": "0.405", + "Nov": "0.353", + "Dec": "0.352", + "All-year": "0.568", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.309", + "Mar": "0.409", + "Apr": "0.626", + "May": "0.708", + "Jun": "0.792", + "Jul": "0.812", + "Aug": "0.739", + "Sep": "0.599", + "Oct": "0.329", + "Nov": "0.203", + "Dec": "0.222", + "All-year": "0.502", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.157", + "Feb": "0.186", + "Mar": "0.337", + "Apr": "0.564", + "May": "0.605", + "Jun": "0.726", + "Jul": "0.770", + "Aug": "0.694", + "Sep": "0.464", + "Oct": "0.236", + "Nov": "0.162", + "Dec": "0.140", + "All-year": "0.442", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.271", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.631", + "May": "0.747", + "Jun": "0.803", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.609", + "Oct": "0.395", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.630", + "May": "0.747", + "Jun": "0.801", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.608", + "Oct": "0.394", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.296", + "Mar": "0.426", + "Apr": "0.624", + "May": "0.747", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.737", + "Sep": "0.604", + "Oct": "0.388", + "Nov": "0.308", + "Dec": "0.297", + "All-year": "0.584", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.292", + "Mar": "0.418", + "Apr": "0.624", + "May": "0.743", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.731", + "Sep": "0.597", + "Oct": "0.388", + "Nov": "0.301", + "Dec": "0.294", + "All-year": "0.581", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.242", + "Feb": "0.281", + "Mar": "0.409", + "Apr": "0.607", + "May": "0.719", + "Jun": "0.784", + "Jul": "0.813", + "Aug": "0.723", + "Sep": "0.576", + "Oct": "0.370", + "Nov": "0.270", + "Dec": "0.266", + "All-year": "0.564", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.241", + "Mar": "0.401", + "Apr": "0.586", + "May": "0.700", + "Jun": "0.765", + "Jul": "0.782", + "Aug": "0.687", + "Sep": "0.528", + "Oct": "0.300", + "Nov": "0.228", + "Dec": "0.216", + "All-year": "0.530", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.132", + "Mar": "0.296", + "Apr": "0.506", + "May": "0.624", + "Jun": "0.722", + "Jul": "0.730", + "Aug": "0.636", + "Sep": "0.430", + "Oct": "0.208", + "Nov": "0.142", + "Dec": "0.115", + "All-year": "0.471", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.116", + "Mar": "0.228", + "Apr": "0.410", + "May": "0.478", + "Jun": "0.587", + "Jul": "0.645", + "Aug": "0.581", + "Sep": "0.378", + "Oct": "0.132", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.416", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.568", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.136", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.297", + "Apr": "0.569", + "May": "0.653", + "Jun": "0.707", + "Jul": "0.741", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.153", + "All-year": "0.562", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.289", + "Apr": "0.569", + "May": "0.641", + "Jun": "0.693", + "Jul": "0.739", + "Aug": "0.687", + "Sep": "0.467", + "Oct": "0.294", + "Nov": "0.207", + "Dec": "0.142", + "All-year": "0.561", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.105", + "Mar": "0.243", + "Apr": "0.569", + "May": "0.637", + "Jun": "0.692", + "Jul": "0.722", + "Aug": "0.683", + "Sep": "0.446", + "Oct": "0.261", + "Nov": "0.186", + "Dec": "0.118", + "All-year": "0.548", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.086", + "Mar": "0.176", + "Apr": "0.490", + "May": "0.583", + "Jun": "0.663", + "Jul": "0.716", + "Aug": "0.608", + "Sep": "0.379", + "Oct": "0.215", + "Nov": "0.099", + "Dec": "0.077", + "All-year": "0.511", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.073", + "Mar": "0.129", + "Apr": "0.390", + "May": "0.450", + "Jun": "0.565", + "Jul": "0.629", + "Aug": "0.559", + "Sep": "0.283", + "Oct": "0.140", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.440", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.299", + "May": "0.376", + "Jun": "0.494", + "Jul": "0.511", + "Aug": "0.448", + "Sep": "0.144", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.387", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.475", + "Mar": "0.570", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.403", + "All-year": "0.619", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.474", + "Mar": "0.569", + "Apr": "0.712", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.882", + "Aug": "0.792", + "Sep": "0.693", + "Oct": "0.486", + "Nov": "0.437", + "Dec": "0.402", + "All-year": "0.618", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.471", + "Mar": "0.569", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.689", + "Oct": "0.483", + "Nov": "0.435", + "Dec": "0.402", + "All-year": "0.616", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.365", + "Feb": "0.471", + "Mar": "0.565", + "Apr": "0.709", + "May": "0.798", + "Jun": "0.858", + "Jul": "0.881", + "Aug": "0.792", + "Sep": "0.686", + "Oct": "0.479", + "Nov": "0.432", + "Dec": "0.402", + "All-year": "0.612", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.458", + "Mar": "0.534", + "Apr": "0.698", + "May": "0.781", + "Jun": "0.853", + "Jul": "0.869", + "Aug": "0.784", + "Sep": "0.666", + "Oct": "0.466", + "Nov": "0.410", + "Dec": "0.372", + "All-year": "0.600", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.389", + "Mar": "0.495", + "Apr": "0.676", + "May": "0.761", + "Jun": "0.833", + "Jul": "0.853", + "Aug": "0.773", + "Sep": "0.640", + "Oct": "0.405", + "Nov": "0.353", + "Dec": "0.352", + "All-year": "0.568", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.309", + "Mar": "0.409", + "Apr": "0.626", + "May": "0.708", + "Jun": "0.792", + "Jul": "0.812", + "Aug": "0.739", + "Sep": "0.599", + "Oct": "0.329", + "Nov": "0.203", + "Dec": "0.222", + "All-year": "0.502", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.157", + "Feb": "0.186", + "Mar": "0.337", + "Apr": "0.564", + "May": "0.605", + "Jun": "0.726", + "Jul": "0.770", + "Aug": "0.694", + "Sep": "0.464", + "Oct": "0.236", + "Nov": "0.162", + "Dec": "0.140", + "All-year": "0.442", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.271", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.631", + "May": "0.747", + "Jun": "0.803", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.609", + "Oct": "0.395", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.302", + "Mar": "0.429", + "Apr": "0.630", + "May": "0.747", + "Jun": "0.801", + "Jul": "0.836", + "Aug": "0.739", + "Sep": "0.608", + "Oct": "0.394", + "Nov": "0.309", + "Dec": "0.298", + "All-year": "0.586", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.264", + "Feb": "0.296", + "Mar": "0.426", + "Apr": "0.624", + "May": "0.747", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.737", + "Sep": "0.604", + "Oct": "0.388", + "Nov": "0.308", + "Dec": "0.297", + "All-year": "0.584", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.292", + "Mar": "0.418", + "Apr": "0.624", + "May": "0.743", + "Jun": "0.799", + "Jul": "0.836", + "Aug": "0.731", + "Sep": "0.597", + "Oct": "0.388", + "Nov": "0.301", + "Dec": "0.294", + "All-year": "0.581", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.242", + "Feb": "0.281", + "Mar": "0.409", + "Apr": "0.607", + "May": "0.719", + "Jun": "0.784", + "Jul": "0.813", + "Aug": "0.723", + "Sep": "0.576", + "Oct": "0.370", + "Nov": "0.270", + "Dec": "0.266", + "All-year": "0.564", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.241", + "Mar": "0.401", + "Apr": "0.586", + "May": "0.700", + "Jun": "0.765", + "Jul": "0.782", + "Aug": "0.687", + "Sep": "0.528", + "Oct": "0.300", + "Nov": "0.228", + "Dec": "0.216", + "All-year": "0.530", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.132", + "Mar": "0.296", + "Apr": "0.506", + "May": "0.624", + "Jun": "0.722", + "Jul": "0.730", + "Aug": "0.636", + "Sep": "0.430", + "Oct": "0.208", + "Nov": "0.142", + "Dec": "0.115", + "All-year": "0.471", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.116", + "Mar": "0.228", + "Apr": "0.410", + "May": "0.478", + "Jun": "0.587", + "Jul": "0.645", + "Aug": "0.581", + "Sep": "0.378", + "Oct": "0.132", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.416", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.568", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.136", + "Feb": "0.147", + "Mar": "0.300", + "Apr": "0.575", + "May": "0.659", + "Jun": "0.713", + "Jul": "0.745", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.156", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.297", + "Apr": "0.569", + "May": "0.653", + "Jun": "0.707", + "Jul": "0.741", + "Aug": "0.687", + "Sep": "0.474", + "Oct": "0.300", + "Nov": "0.212", + "Dec": "0.153", + "All-year": "0.562", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.147", + "Mar": "0.289", + "Apr": "0.569", + "May": "0.641", + "Jun": "0.693", + "Jul": "0.739", + "Aug": "0.687", + "Sep": "0.467", + "Oct": "0.294", + "Nov": "0.207", + "Dec": "0.142", + "All-year": "0.561", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.102", + "Feb": "0.105", + "Mar": "0.243", + "Apr": "0.569", + "May": "0.637", + "Jun": "0.692", + "Jul": "0.722", + "Aug": "0.683", + "Sep": "0.446", + "Oct": "0.261", + "Nov": "0.186", + "Dec": "0.118", + "All-year": "0.548", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.086", + "Mar": "0.176", + "Apr": "0.490", + "May": "0.583", + "Jun": "0.663", + "Jul": "0.716", + "Aug": "0.608", + "Sep": "0.379", + "Oct": "0.215", + "Nov": "0.099", + "Dec": "0.077", + "All-year": "0.511", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.073", + "Mar": "0.129", + "Apr": "0.390", + "May": "0.450", + "Jun": "0.565", + "Jul": "0.629", + "Aug": "0.559", + "Sep": "0.283", + "Oct": "0.140", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.440", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.299", + "May": "0.376", + "Jun": "0.494", + "Jul": "0.511", + "Aug": "0.448", + "Sep": "0.144", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.387", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 1.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.017", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.006", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.004", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.140", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.069", + "Nov": "0.075", + "Dec": "0.071", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.068", + "Nov": "0.073", + "Dec": "0.068", + "All-year": "0.118", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.119", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.066", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.056", + "All-year": "0.100", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.031", + "Feb": "0.039", + "Mar": "0.069", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.097", + "Oct": "0.040", + "Nov": "0.043", + "Dec": "0.039", + "All-year": "0.109", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.031", + "Feb": "0.039", + "Mar": "0.065", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.094", + "Oct": "0.036", + "Nov": "0.042", + "Dec": "0.038", + "All-year": "0.107", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.054", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.038", + "Dec": "0.035", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.032", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.022", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.016", + "Mar": "0.028", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.022", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.017", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.084", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.200", + "Mar": "0.229", + "Apr": "0.342", + "May": "0.380", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.329", + "Oct": "0.179", + "Nov": "0.163", + "Dec": "0.173", + "All-year": "0.282", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.197", + "Mar": "0.227", + "Apr": "0.342", + "May": "0.377", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.326", + "Oct": "0.177", + "Nov": "0.161", + "Dec": "0.172", + "All-year": "0.278", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.139", + "Feb": "0.191", + "Mar": "0.220", + "Apr": "0.331", + "May": "0.368", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.158", + "Dec": "0.167", + "All-year": "0.266", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.134", + "Feb": "0.183", + "Mar": "0.218", + "Apr": "0.325", + "May": "0.358", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.145", + "Dec": "0.155", + "All-year": "0.260", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.107", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.264", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.243", + "Oct": "0.132", + "Nov": "0.119", + "Dec": "0.126", + "All-year": "0.224", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.128", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.071", + "Dec": "0.077", + "All-year": "0.165", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.100", + "Mar": "0.183", + "Apr": "0.276", + "May": "0.306", + "Jun": "0.360", + "Jul": "0.345", + "Aug": "0.319", + "Sep": "0.228", + "Oct": "0.116", + "Nov": "0.116", + "Dec": "0.094", + "All-year": "0.266", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.098", + "Mar": "0.183", + "Apr": "0.274", + "May": "0.303", + "Jun": "0.358", + "Jul": "0.341", + "Aug": "0.317", + "Sep": "0.225", + "Oct": "0.112", + "Nov": "0.115", + "Dec": "0.092", + "All-year": "0.264", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.096", + "Mar": "0.173", + "Apr": "0.256", + "May": "0.294", + "Jun": "0.338", + "Jul": "0.323", + "Aug": "0.306", + "Sep": "0.212", + "Oct": "0.106", + "Nov": "0.109", + "Dec": "0.088", + "All-year": "0.251", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.091", + "Mar": "0.167", + "Apr": "0.251", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.309", + "Aug": "0.283", + "Sep": "0.203", + "Oct": "0.097", + "Nov": "0.101", + "Dec": "0.079", + "All-year": "0.242", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.068", + "Mar": "0.125", + "Apr": "0.200", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.077", + "Dec": "0.069", + "All-year": "0.209", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.067", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.035", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.149", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.044", + "Feb": "0.068", + "Mar": "0.120", + "Apr": "0.238", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.239", + "Aug": "0.259", + "Sep": "0.176", + "Oct": "0.089", + "Nov": "0.072", + "Dec": "0.062", + "All-year": "0.244", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.068", + "Mar": "0.120", + "Apr": "0.235", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.174", + "Oct": "0.087", + "Nov": "0.071", + "Dec": "0.060", + "All-year": "0.242", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.038", + "Feb": "0.065", + "Mar": "0.105", + "Apr": "0.215", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.085", + "Nov": "0.057", + "Dec": "0.058", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.038", + "Feb": "0.057", + "Mar": "0.105", + "Apr": "0.199", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.157", + "Oct": "0.073", + "Nov": "0.051", + "Dec": "0.051", + "All-year": "0.231", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.027", + "All-year": "0.199", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.371", + "Mar": "0.410", + "Apr": "0.547", + "May": "0.608", + "Jun": "0.688", + "Jul": "0.700", + "Aug": "0.625", + "Sep": "0.512", + "Oct": "0.328", + "Nov": "0.303", + "Dec": "0.296", + "All-year": "0.475", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.368", + "Mar": "0.410", + "Apr": "0.544", + "May": "0.608", + "Jun": "0.682", + "Jul": "0.698", + "Aug": "0.624", + "Sep": "0.508", + "Oct": "0.326", + "Nov": "0.301", + "Dec": "0.295", + "All-year": "0.472", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.361", + "Mar": "0.397", + "Apr": "0.540", + "May": "0.601", + "Jun": "0.665", + "Jul": "0.684", + "Aug": "0.618", + "Sep": "0.501", + "Oct": "0.317", + "Nov": "0.293", + "Dec": "0.286", + "All-year": "0.462", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.249", + "Feb": "0.356", + "Mar": "0.390", + "Apr": "0.537", + "May": "0.597", + "Jun": "0.657", + "Jul": "0.680", + "Aug": "0.606", + "Sep": "0.499", + "Oct": "0.306", + "Nov": "0.282", + "Dec": "0.277", + "All-year": "0.456", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.220", + "Feb": "0.309", + "Mar": "0.376", + "Apr": "0.515", + "May": "0.555", + "Jun": "0.633", + "Jul": "0.650", + "Aug": "0.582", + "Sep": "0.478", + "Oct": "0.280", + "Nov": "0.242", + "Dec": "0.239", + "All-year": "0.424", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.223", + "Mar": "0.323", + "Apr": "0.463", + "May": "0.483", + "Jun": "0.569", + "Jul": "0.612", + "Aug": "0.515", + "Sep": "0.407", + "Oct": "0.220", + "Nov": "0.167", + "Dec": "0.183", + "All-year": "0.363", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.108", + "Mar": "0.183", + "Apr": "0.295", + "May": "0.354", + "Jun": "0.428", + "Jul": "0.471", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.106", + "Nov": "0.088", + "Dec": "0.110", + "All-year": "0.262", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.250", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.190", + "Feb": "0.208", + "Mar": "0.346", + "Apr": "0.511", + "May": "0.525", + "Jun": "0.631", + "Jul": "0.628", + "Aug": "0.566", + "Sep": "0.440", + "Oct": "0.267", + "Nov": "0.228", + "Dec": "0.211", + "All-year": "0.455", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.189", + "Feb": "0.206", + "Mar": "0.341", + "Apr": "0.508", + "May": "0.522", + "Jun": "0.628", + "Jul": "0.624", + "Aug": "0.565", + "Sep": "0.439", + "Oct": "0.264", + "Nov": "0.226", + "Dec": "0.210", + "All-year": "0.452", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.202", + "Mar": "0.333", + "Apr": "0.501", + "May": "0.515", + "Jun": "0.616", + "Jul": "0.614", + "Aug": "0.558", + "Sep": "0.436", + "Oct": "0.259", + "Nov": "0.223", + "Dec": "0.202", + "All-year": "0.444", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.183", + "Feb": "0.189", + "Mar": "0.325", + "Apr": "0.496", + "May": "0.512", + "Jun": "0.609", + "Jul": "0.604", + "Aug": "0.539", + "Sep": "0.426", + "Oct": "0.243", + "Nov": "0.211", + "Dec": "0.199", + "All-year": "0.436", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.165", + "Mar": "0.285", + "Apr": "0.456", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.574", + "Aug": "0.507", + "Sep": "0.381", + "Oct": "0.208", + "Nov": "0.181", + "Dec": "0.162", + "All-year": "0.404", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.129", + "Mar": "0.221", + "Apr": "0.363", + "May": "0.417", + "Jun": "0.506", + "Jul": "0.475", + "Aug": "0.446", + "Sep": "0.307", + "Oct": "0.145", + "Nov": "0.131", + "Dec": "0.097", + "All-year": "0.347", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.036", + "Mar": "0.093", + "Apr": "0.197", + "May": "0.263", + "Jun": "0.312", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.178", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.242", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.109", + "May": "0.124", + "Jun": "0.210", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.156", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.112", + "Feb": "0.142", + "Mar": "0.237", + "Apr": "0.447", + "May": "0.473", + "Jun": "0.544", + "Jul": "0.496", + "Aug": "0.487", + "Sep": "0.328", + "Oct": "0.207", + "Nov": "0.154", + "Dec": "0.117", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.109", + "Feb": "0.139", + "Mar": "0.237", + "Apr": "0.447", + "May": "0.473", + "Jun": "0.542", + "Jul": "0.493", + "Aug": "0.487", + "Sep": "0.324", + "Oct": "0.199", + "Nov": "0.153", + "Dec": "0.116", + "All-year": "0.431", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.093", + "Feb": "0.126", + "Mar": "0.234", + "Apr": "0.436", + "May": "0.457", + "Jun": "0.531", + "Jul": "0.481", + "Aug": "0.470", + "Sep": "0.315", + "Oct": "0.188", + "Nov": "0.140", + "Dec": "0.108", + "All-year": "0.422", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.093", + "Feb": "0.121", + "Mar": "0.228", + "Apr": "0.426", + "May": "0.452", + "Jun": "0.524", + "Jul": "0.481", + "Aug": "0.458", + "Sep": "0.315", + "Oct": "0.181", + "Nov": "0.124", + "Dec": "0.108", + "All-year": "0.414", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.066", + "Feb": "0.098", + "Mar": "0.172", + "Apr": "0.396", + "May": "0.402", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.405", + "Sep": "0.286", + "Oct": "0.142", + "Nov": "0.085", + "Dec": "0.093", + "All-year": "0.378", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.039", + "Mar": "0.108", + "Apr": "0.307", + "May": "0.347", + "Jun": "0.394", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.215", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.313", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.165", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.074", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.192", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.331", + "Feb": "0.430", + "Mar": "0.511", + "Apr": "0.634", + "May": "0.712", + "Jun": "0.794", + "Jul": "0.807", + "Aug": "0.729", + "Sep": "0.608", + "Oct": "0.421", + "Nov": "0.387", + "Dec": "0.358", + "All-year": "0.561", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.331", + "Feb": "0.430", + "Mar": "0.511", + "Apr": "0.633", + "May": "0.710", + "Jun": "0.792", + "Jul": "0.807", + "Aug": "0.728", + "Sep": "0.605", + "Oct": "0.419", + "Nov": "0.385", + "Dec": "0.356", + "All-year": "0.559", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.321", + "Feb": "0.422", + "Mar": "0.507", + "Apr": "0.624", + "May": "0.706", + "Jun": "0.788", + "Jul": "0.800", + "Aug": "0.720", + "Sep": "0.599", + "Oct": "0.409", + "Nov": "0.368", + "Dec": "0.350", + "All-year": "0.553", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.321", + "Feb": "0.418", + "Mar": "0.503", + "Apr": "0.624", + "May": "0.706", + "Jun": "0.783", + "Jul": "0.800", + "Aug": "0.714", + "Sep": "0.591", + "Oct": "0.399", + "Nov": "0.356", + "Dec": "0.341", + "All-year": "0.548", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.284", + "Feb": "0.395", + "Mar": "0.471", + "Apr": "0.607", + "May": "0.682", + "Jun": "0.761", + "Jul": "0.771", + "Aug": "0.697", + "Sep": "0.574", + "Oct": "0.359", + "Nov": "0.322", + "Dec": "0.303", + "All-year": "0.521", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.336", + "Mar": "0.409", + "Apr": "0.568", + "May": "0.632", + "Jun": "0.720", + "Jul": "0.739", + "Aug": "0.636", + "Sep": "0.515", + "Oct": "0.300", + "Nov": "0.249", + "Dec": "0.252", + "All-year": "0.465", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.124", + "Feb": "0.202", + "Mar": "0.322", + "Apr": "0.449", + "May": "0.508", + "Jun": "0.609", + "Jul": "0.636", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.167", + "Nov": "0.157", + "Dec": "0.144", + "All-year": "0.374", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.101", + "Feb": "0.124", + "Mar": "0.202", + "Apr": "0.304", + "May": "0.407", + "Jun": "0.531", + "Jul": "0.526", + "Aug": "0.456", + "Sep": "0.283", + "Oct": "0.123", + "Nov": "0.107", + "Dec": "0.000", + "All-year": "0.303", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.240", + "Feb": "0.303", + "Mar": "0.438", + "Apr": "0.603", + "May": "0.659", + "Jun": "0.735", + "Jul": "0.743", + "Aug": "0.654", + "Sep": "0.533", + "Oct": "0.353", + "Nov": "0.300", + "Dec": "0.269", + "All-year": "0.542", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.300", + "Mar": "0.438", + "Apr": "0.603", + "May": "0.651", + "Jun": "0.735", + "Jul": "0.739", + "Aug": "0.651", + "Sep": "0.529", + "Oct": "0.351", + "Nov": "0.297", + "Dec": "0.268", + "All-year": "0.540", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.234", + "Feb": "0.296", + "Mar": "0.431", + "Apr": "0.588", + "May": "0.642", + "Jun": "0.724", + "Jul": "0.731", + "Aug": "0.643", + "Sep": "0.520", + "Oct": "0.341", + "Nov": "0.292", + "Dec": "0.263", + "All-year": "0.531", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.228", + "Feb": "0.296", + "Mar": "0.424", + "Apr": "0.588", + "May": "0.635", + "Jun": "0.720", + "Jul": "0.730", + "Aug": "0.638", + "Sep": "0.505", + "Oct": "0.323", + "Nov": "0.276", + "Dec": "0.255", + "All-year": "0.527", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.220", + "Feb": "0.257", + "Mar": "0.404", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.710", + "Jul": "0.708", + "Aug": "0.615", + "Sep": "0.467", + "Oct": "0.299", + "Nov": "0.249", + "Dec": "0.214", + "All-year": "0.502", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.224", + "Mar": "0.342", + "Apr": "0.497", + "May": "0.544", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.222", + "Nov": "0.172", + "Dec": "0.156", + "All-year": "0.445", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.068", + "Feb": "0.104", + "Mar": "0.242", + "Apr": "0.342", + "May": "0.446", + "Jun": "0.507", + "Jul": "0.510", + "Aug": "0.417", + "Sep": "0.262", + "Oct": "0.120", + "Nov": "0.072", + "Dec": "0.000", + "All-year": "0.353", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.050", + "Apr": "0.230", + "May": "0.300", + "Jun": "0.376", + "Jul": "0.364", + "Aug": "0.315", + "Sep": "0.187", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.266", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.167", + "Mar": "0.316", + "Apr": "0.560", + "May": "0.569", + "Jun": "0.622", + "Jul": "0.633", + "Aug": "0.610", + "Sep": "0.414", + "Oct": "0.262", + "Nov": "0.200", + "Dec": "0.148", + "All-year": "0.517", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.152", + "Feb": "0.167", + "Mar": "0.310", + "Apr": "0.560", + "May": "0.567", + "Jun": "0.619", + "Jul": "0.628", + "Aug": "0.606", + "Sep": "0.410", + "Oct": "0.261", + "Nov": "0.199", + "Dec": "0.148", + "All-year": "0.516", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.164", + "Mar": "0.300", + "Apr": "0.542", + "May": "0.565", + "Jun": "0.619", + "Jul": "0.618", + "Aug": "0.602", + "Sep": "0.400", + "Oct": "0.257", + "Nov": "0.187", + "Dec": "0.137", + "All-year": "0.510", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.133", + "Feb": "0.159", + "Mar": "0.300", + "Apr": "0.542", + "May": "0.551", + "Jun": "0.619", + "Jul": "0.612", + "Aug": "0.585", + "Sep": "0.393", + "Oct": "0.255", + "Nov": "0.182", + "Dec": "0.130", + "All-year": "0.505", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.090", + "Feb": "0.134", + "Mar": "0.239", + "Apr": "0.517", + "May": "0.547", + "Jun": "0.614", + "Jul": "0.579", + "Aug": "0.535", + "Sep": "0.374", + "Oct": "0.212", + "Nov": "0.161", + "Dec": "0.105", + "All-year": "0.478", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.048", + "Feb": "0.083", + "Mar": "0.161", + "Apr": "0.442", + "May": "0.449", + "Jun": "0.572", + "Jul": "0.527", + "Aug": "0.472", + "Sep": "0.282", + "Oct": "0.122", + "Nov": "0.057", + "Dec": "0.048", + "All-year": "0.430", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.083", + "Apr": "0.285", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.323", + "Aug": "0.276", + "Sep": "0.172", + "Oct": "0.066", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.314", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.144", + "May": "0.148", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.229", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.397", + "Feb": "0.511", + "Mar": "0.593", + "Apr": "0.731", + "May": "0.799", + "Jun": "0.864", + "Jul": "0.872", + "Aug": "0.803", + "Sep": "0.685", + "Oct": "0.499", + "Nov": "0.473", + "Dec": "0.437", + "All-year": "0.634", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.395", + "Feb": "0.508", + "Mar": "0.592", + "Apr": "0.729", + "May": "0.795", + "Jun": "0.863", + "Jul": "0.870", + "Aug": "0.802", + "Sep": "0.685", + "Oct": "0.497", + "Nov": "0.470", + "Dec": "0.437", + "All-year": "0.632", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.388", + "Feb": "0.503", + "Mar": "0.579", + "Apr": "0.722", + "May": "0.788", + "Jun": "0.860", + "Jul": "0.867", + "Aug": "0.802", + "Sep": "0.680", + "Oct": "0.495", + "Nov": "0.460", + "Dec": "0.433", + "All-year": "0.625", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.382", + "Feb": "0.495", + "Mar": "0.573", + "Apr": "0.721", + "May": "0.781", + "Jun": "0.860", + "Jul": "0.861", + "Aug": "0.796", + "Sep": "0.667", + "Oct": "0.477", + "Nov": "0.454", + "Dec": "0.430", + "All-year": "0.622", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.350", + "Feb": "0.472", + "Mar": "0.566", + "Apr": "0.703", + "May": "0.771", + "Jun": "0.850", + "Jul": "0.848", + "Aug": "0.780", + "Sep": "0.651", + "Oct": "0.458", + "Nov": "0.408", + "Dec": "0.381", + "All-year": "0.605", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.310", + "Feb": "0.406", + "Mar": "0.508", + "Apr": "0.674", + "May": "0.726", + "Jun": "0.813", + "Jul": "0.825", + "Aug": "0.752", + "Sep": "0.609", + "Oct": "0.368", + "Nov": "0.330", + "Dec": "0.345", + "All-year": "0.556", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.221", + "Feb": "0.259", + "Mar": "0.372", + "Apr": "0.591", + "May": "0.673", + "Jun": "0.761", + "Jul": "0.776", + "Aug": "0.677", + "Sep": "0.508", + "Oct": "0.284", + "Nov": "0.217", + "Dec": "0.220", + "All-year": "0.469", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.120", + "Feb": "0.151", + "Mar": "0.279", + "Apr": "0.510", + "May": "0.539", + "Jun": "0.681", + "Jul": "0.692", + "Aug": "0.592", + "Sep": "0.449", + "Oct": "0.175", + "Nov": "0.132", + "Dec": "0.128", + "All-year": "0.398", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.298", + "Feb": "0.356", + "Mar": "0.493", + "Apr": "0.674", + "May": "0.759", + "Jun": "0.813", + "Jul": "0.834", + "Aug": "0.751", + "Sep": "0.616", + "Oct": "0.422", + "Nov": "0.374", + "Dec": "0.321", + "All-year": "0.611", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.296", + "Feb": "0.353", + "Mar": "0.493", + "Apr": "0.674", + "May": "0.759", + "Jun": "0.811", + "Jul": "0.834", + "Aug": "0.750", + "Sep": "0.612", + "Oct": "0.420", + "Nov": "0.372", + "Dec": "0.320", + "All-year": "0.609", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.285", + "Feb": "0.350", + "Mar": "0.489", + "Apr": "0.668", + "May": "0.753", + "Jun": "0.806", + "Jul": "0.830", + "Aug": "0.747", + "Sep": "0.608", + "Oct": "0.412", + "Nov": "0.364", + "Dec": "0.314", + "All-year": "0.604", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.285", + "Feb": "0.346", + "Mar": "0.489", + "Apr": "0.666", + "May": "0.748", + "Jun": "0.806", + "Jul": "0.824", + "Aug": "0.741", + "Sep": "0.602", + "Oct": "0.412", + "Nov": "0.358", + "Dec": "0.310", + "All-year": "0.600", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.251", + "Feb": "0.320", + "Mar": "0.447", + "Apr": "0.650", + "May": "0.727", + "Jun": "0.794", + "Jul": "0.810", + "Aug": "0.728", + "Sep": "0.586", + "Oct": "0.375", + "Nov": "0.336", + "Dec": "0.278", + "All-year": "0.575", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.175", + "Feb": "0.264", + "Mar": "0.411", + "Apr": "0.594", + "May": "0.681", + "Jun": "0.767", + "Jul": "0.763", + "Aug": "0.669", + "Sep": "0.516", + "Oct": "0.294", + "Nov": "0.229", + "Dec": "0.208", + "All-year": "0.525", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.090", + "Feb": "0.119", + "Mar": "0.300", + "Apr": "0.493", + "May": "0.580", + "Jun": "0.657", + "Jul": "0.686", + "Aug": "0.561", + "Sep": "0.403", + "Oct": "0.173", + "Nov": "0.123", + "Dec": "0.092", + "All-year": "0.443", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.196", + "Apr": "0.323", + "May": "0.425", + "Jun": "0.570", + "Jul": "0.576", + "Aug": "0.462", + "Sep": "0.265", + "Oct": "0.130", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.362", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.181", + "Feb": "0.197", + "Mar": "0.395", + "Apr": "0.614", + "May": "0.694", + "Jun": "0.749", + "Jul": "0.739", + "Aug": "0.681", + "Sep": "0.510", + "Oct": "0.344", + "Nov": "0.247", + "Dec": "0.183", + "All-year": "0.583", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.176", + "Feb": "0.197", + "Mar": "0.392", + "Apr": "0.614", + "May": "0.694", + "Jun": "0.749", + "Jul": "0.737", + "Aug": "0.680", + "Sep": "0.508", + "Oct": "0.339", + "Nov": "0.247", + "Dec": "0.183", + "All-year": "0.583", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.168", + "Feb": "0.193", + "Mar": "0.384", + "Apr": "0.604", + "May": "0.687", + "Jun": "0.736", + "Jul": "0.727", + "Aug": "0.676", + "Sep": "0.504", + "Oct": "0.336", + "Nov": "0.240", + "Dec": "0.179", + "All-year": "0.576", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.152", + "Feb": "0.188", + "Mar": "0.378", + "Apr": "0.597", + "May": "0.673", + "Jun": "0.729", + "Jul": "0.727", + "Aug": "0.676", + "Sep": "0.492", + "Oct": "0.317", + "Nov": "0.235", + "Dec": "0.169", + "All-year": "0.573", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.129", + "Feb": "0.164", + "Mar": "0.312", + "Apr": "0.582", + "May": "0.651", + "Jun": "0.719", + "Jul": "0.715", + "Aug": "0.644", + "Sep": "0.479", + "Oct": "0.284", + "Nov": "0.190", + "Dec": "0.137", + "All-year": "0.548", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.065", + "Feb": "0.089", + "Mar": "0.228", + "Apr": "0.525", + "May": "0.538", + "Jun": "0.658", + "Jul": "0.644", + "Aug": "0.591", + "Sep": "0.412", + "Oct": "0.203", + "Nov": "0.151", + "Dec": "0.075", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.126", + "Apr": "0.411", + "May": "0.378", + "Jun": "0.507", + "Jul": "0.461", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.085", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.421", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.238", + "May": "0.292", + "Jun": "0.483", + "Jul": "0.380", + "Aug": "0.293", + "Sep": "0.132", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.346", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.447", + "Feb": "0.580", + "Mar": "0.638", + "Apr": "0.785", + "May": "0.860", + "Jun": "0.897", + "Jul": "0.925", + "Aug": "0.851", + "Sep": "0.735", + "Oct": "0.577", + "Nov": "0.513", + "Dec": "0.468", + "All-year": "0.681", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.444", + "Feb": "0.578", + "Mar": "0.638", + "Apr": "0.784", + "May": "0.860", + "Jun": "0.897", + "Jul": "0.924", + "Aug": "0.851", + "Sep": "0.735", + "Oct": "0.577", + "Nov": "0.512", + "Dec": "0.468", + "All-year": "0.680", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.442", + "Feb": "0.575", + "Mar": "0.634", + "Apr": "0.783", + "May": "0.858", + "Jun": "0.897", + "Jul": "0.921", + "Aug": "0.847", + "Sep": "0.733", + "Oct": "0.575", + "Nov": "0.508", + "Dec": "0.463", + "All-year": "0.677", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.439", + "Feb": "0.572", + "Mar": "0.628", + "Apr": "0.780", + "May": "0.858", + "Jun": "0.897", + "Jul": "0.915", + "Aug": "0.841", + "Sep": "0.733", + "Oct": "0.570", + "Nov": "0.498", + "Dec": "0.454", + "All-year": "0.674", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.402", + "Feb": "0.553", + "Mar": "0.616", + "Apr": "0.767", + "May": "0.837", + "Jun": "0.895", + "Jul": "0.903", + "Aug": "0.839", + "Sep": "0.715", + "Oct": "0.537", + "Nov": "0.483", + "Dec": "0.431", + "All-year": "0.658", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.360", + "Feb": "0.512", + "Mar": "0.591", + "Apr": "0.748", + "May": "0.807", + "Jun": "0.879", + "Jul": "0.886", + "Aug": "0.816", + "Sep": "0.685", + "Oct": "0.511", + "Nov": "0.438", + "Dec": "0.405", + "All-year": "0.623", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.278", + "Feb": "0.411", + "Mar": "0.488", + "Apr": "0.677", + "May": "0.754", + "Jun": "0.828", + "Jul": "0.852", + "Aug": "0.771", + "Sep": "0.603", + "Oct": "0.381", + "Nov": "0.283", + "Dec": "0.280", + "All-year": "0.556", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.282", + "Mar": "0.377", + "Apr": "0.606", + "May": "0.680", + "Jun": "0.795", + "Jul": "0.813", + "Aug": "0.765", + "Sep": "0.506", + "Oct": "0.279", + "Nov": "0.229", + "Dec": "0.196", + "All-year": "0.495", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.357", + "Feb": "0.384", + "Mar": "0.535", + "Apr": "0.718", + "May": "0.809", + "Jun": "0.854", + "Jul": "0.868", + "Aug": "0.803", + "Sep": "0.690", + "Oct": "0.483", + "Nov": "0.422", + "Dec": "0.378", + "All-year": "0.658", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.354", + "Feb": "0.384", + "Mar": "0.535", + "Apr": "0.715", + "May": "0.808", + "Jun": "0.854", + "Jul": "0.868", + "Aug": "0.800", + "Sep": "0.687", + "Oct": "0.479", + "Nov": "0.422", + "Dec": "0.378", + "All-year": "0.657", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.339", + "Feb": "0.371", + "Mar": "0.533", + "Apr": "0.709", + "May": "0.804", + "Jun": "0.851", + "Jul": "0.865", + "Aug": "0.800", + "Sep": "0.682", + "Oct": "0.476", + "Nov": "0.417", + "Dec": "0.372", + "All-year": "0.653", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.339", + "Feb": "0.368", + "Mar": "0.533", + "Apr": "0.706", + "May": "0.801", + "Jun": "0.847", + "Jul": "0.865", + "Aug": "0.796", + "Sep": "0.672", + "Oct": "0.465", + "Nov": "0.410", + "Dec": "0.358", + "All-year": "0.651", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.330", + "Feb": "0.338", + "Mar": "0.504", + "Apr": "0.694", + "May": "0.794", + "Jun": "0.842", + "Jul": "0.865", + "Aug": "0.788", + "Sep": "0.651", + "Oct": "0.421", + "Nov": "0.377", + "Dec": "0.345", + "All-year": "0.635", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.284", + "Mar": "0.489", + "Apr": "0.669", + "May": "0.760", + "Jun": "0.814", + "Jul": "0.834", + "Aug": "0.746", + "Sep": "0.571", + "Oct": "0.359", + "Nov": "0.311", + "Dec": "0.267", + "All-year": "0.591", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.128", + "Feb": "0.219", + "Mar": "0.379", + "Apr": "0.581", + "May": "0.700", + "Jun": "0.763", + "Jul": "0.767", + "Aug": "0.675", + "Sep": "0.485", + "Oct": "0.235", + "Nov": "0.189", + "Dec": "0.163", + "All-year": "0.530", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.125", + "Mar": "0.283", + "Apr": "0.460", + "May": "0.583", + "Jun": "0.695", + "Jul": "0.700", + "Aug": "0.587", + "Sep": "0.383", + "Oct": "0.140", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.459", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.222", + "Feb": "0.213", + "Mar": "0.453", + "Apr": "0.642", + "May": "0.776", + "Jun": "0.778", + "Jul": "0.794", + "Aug": "0.755", + "Sep": "0.569", + "Oct": "0.392", + "Nov": "0.289", + "Dec": "0.215", + "All-year": "0.631", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.216", + "Feb": "0.213", + "Mar": "0.450", + "Apr": "0.639", + "May": "0.773", + "Jun": "0.778", + "Jul": "0.794", + "Aug": "0.753", + "Sep": "0.568", + "Oct": "0.391", + "Nov": "0.283", + "Dec": "0.214", + "All-year": "0.630", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.216", + "Feb": "0.208", + "Mar": "0.450", + "Apr": "0.636", + "May": "0.762", + "Jun": "0.778", + "Jul": "0.790", + "Aug": "0.746", + "Sep": "0.564", + "Oct": "0.380", + "Nov": "0.279", + "Dec": "0.207", + "All-year": "0.626", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.210", + "Feb": "0.208", + "Mar": "0.450", + "Apr": "0.636", + "May": "0.762", + "Jun": "0.778", + "Jul": "0.784", + "Aug": "0.746", + "Sep": "0.564", + "Oct": "0.368", + "Nov": "0.268", + "Dec": "0.188", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.172", + "Feb": "0.183", + "Mar": "0.401", + "Apr": "0.607", + "May": "0.738", + "Jun": "0.756", + "Jul": "0.774", + "Aug": "0.714", + "Sep": "0.547", + "Oct": "0.340", + "Nov": "0.222", + "Dec": "0.168", + "All-year": "0.607", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.092", + "Mar": "0.261", + "Apr": "0.590", + "May": "0.711", + "Jun": "0.753", + "Jul": "0.751", + "Aug": "0.680", + "Sep": "0.487", + "Oct": "0.290", + "Nov": "0.167", + "Dec": "0.114", + "All-year": "0.570", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.066", + "Feb": "0.077", + "Mar": "0.212", + "Apr": "0.442", + "May": "0.531", + "Jun": "0.690", + "Jul": "0.669", + "Aug": "0.620", + "Sep": "0.335", + "Oct": "0.177", + "Nov": "0.090", + "Dec": "0.000", + "All-year": "0.493", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.319", + "May": "0.418", + "Jun": "0.581", + "Jul": "0.524", + "Aug": "0.472", + "Sep": "0.189", + "Oct": "0.099", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.418", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.470", + "Feb": "0.602", + "Mar": "0.665", + "Apr": "0.810", + "May": "0.875", + "Jun": "0.904", + "Jul": "0.934", + "Aug": "0.866", + "Sep": "0.757", + "Oct": "0.594", + "Nov": "0.531", + "Dec": "0.490", + "All-year": "0.701", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.468", + "Feb": "0.602", + "Mar": "0.665", + "Apr": "0.810", + "May": "0.875", + "Jun": "0.903", + "Jul": "0.933", + "Aug": "0.866", + "Sep": "0.757", + "Oct": "0.593", + "Nov": "0.531", + "Dec": "0.490", + "All-year": "0.700", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.599", + "Mar": "0.663", + "Apr": "0.810", + "May": "0.874", + "Jun": "0.903", + "Jul": "0.933", + "Aug": "0.862", + "Sep": "0.755", + "Oct": "0.591", + "Nov": "0.531", + "Dec": "0.490", + "All-year": "0.697", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.595", + "Mar": "0.659", + "Apr": "0.810", + "May": "0.872", + "Jun": "0.903", + "Jul": "0.930", + "Aug": "0.862", + "Sep": "0.750", + "Oct": "0.589", + "Nov": "0.520", + "Dec": "0.481", + "All-year": "0.695", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.439", + "Feb": "0.574", + "Mar": "0.641", + "Apr": "0.793", + "May": "0.868", + "Jun": "0.903", + "Jul": "0.929", + "Aug": "0.862", + "Sep": "0.746", + "Oct": "0.572", + "Nov": "0.501", + "Dec": "0.462", + "All-year": "0.685", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.384", + "Feb": "0.547", + "Mar": "0.616", + "Apr": "0.783", + "May": "0.847", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.829", + "Sep": "0.726", + "Oct": "0.536", + "Nov": "0.468", + "Dec": "0.435", + "All-year": "0.655", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.315", + "Feb": "0.460", + "Mar": "0.524", + "Apr": "0.716", + "May": "0.811", + "Jun": "0.871", + "Jul": "0.895", + "Aug": "0.820", + "Sep": "0.677", + "Oct": "0.433", + "Nov": "0.351", + "Dec": "0.296", + "All-year": "0.598", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.231", + "Feb": "0.345", + "Mar": "0.453", + "Apr": "0.656", + "May": "0.741", + "Jun": "0.823", + "Jul": "0.864", + "Aug": "0.783", + "Sep": "0.609", + "Oct": "0.293", + "Nov": "0.278", + "Dec": "0.218", + "All-year": "0.547", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.380", + "Feb": "0.404", + "Mar": "0.576", + "Apr": "0.728", + "May": "0.831", + "Jun": "0.868", + "Jul": "0.875", + "Aug": "0.821", + "Sep": "0.719", + "Oct": "0.518", + "Nov": "0.436", + "Dec": "0.397", + "All-year": "0.678", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.378", + "Feb": "0.404", + "Mar": "0.576", + "Apr": "0.728", + "May": "0.829", + "Jun": "0.867", + "Jul": "0.875", + "Aug": "0.821", + "Sep": "0.719", + "Oct": "0.517", + "Nov": "0.436", + "Dec": "0.397", + "All-year": "0.677", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.370", + "Feb": "0.400", + "Mar": "0.571", + "Apr": "0.726", + "May": "0.825", + "Jun": "0.867", + "Jul": "0.872", + "Aug": "0.821", + "Sep": "0.714", + "Oct": "0.517", + "Nov": "0.433", + "Dec": "0.395", + "All-year": "0.674", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.400", + "Mar": "0.568", + "Apr": "0.726", + "May": "0.825", + "Jun": "0.867", + "Jul": "0.872", + "Aug": "0.819", + "Sep": "0.710", + "Oct": "0.511", + "Nov": "0.430", + "Dec": "0.384", + "All-year": "0.673", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.341", + "Feb": "0.372", + "Mar": "0.562", + "Apr": "0.708", + "May": "0.818", + "Jun": "0.863", + "Jul": "0.872", + "Aug": "0.814", + "Sep": "0.701", + "Oct": "0.479", + "Nov": "0.399", + "Dec": "0.352", + "All-year": "0.657", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.272", + "Feb": "0.321", + "Mar": "0.528", + "Apr": "0.686", + "May": "0.788", + "Jun": "0.842", + "Jul": "0.866", + "Aug": "0.781", + "Sep": "0.653", + "Oct": "0.417", + "Nov": "0.349", + "Dec": "0.290", + "All-year": "0.624", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.232", + "Mar": "0.413", + "Apr": "0.609", + "May": "0.728", + "Jun": "0.780", + "Jul": "0.831", + "Aug": "0.757", + "Sep": "0.583", + "Oct": "0.298", + "Nov": "0.254", + "Dec": "0.185", + "All-year": "0.559", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.140", + "Mar": "0.339", + "Apr": "0.519", + "May": "0.626", + "Jun": "0.760", + "Jul": "0.774", + "Aug": "0.676", + "Sep": "0.471", + "Oct": "0.204", + "Nov": "0.174", + "Dec": "0.114", + "All-year": "0.515", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.227", + "Mar": "0.465", + "Apr": "0.660", + "May": "0.794", + "Jun": "0.796", + "Jul": "0.813", + "Aug": "0.770", + "Sep": "0.585", + "Oct": "0.406", + "Nov": "0.315", + "Dec": "0.234", + "All-year": "0.651", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.231", + "Feb": "0.227", + "Mar": "0.462", + "Apr": "0.657", + "May": "0.794", + "Jun": "0.796", + "Jul": "0.813", + "Aug": "0.770", + "Sep": "0.585", + "Oct": "0.406", + "Nov": "0.314", + "Dec": "0.233", + "All-year": "0.651", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.231", + "Feb": "0.217", + "Mar": "0.457", + "Apr": "0.653", + "May": "0.794", + "Jun": "0.790", + "Jul": "0.813", + "Aug": "0.765", + "Sep": "0.585", + "Oct": "0.395", + "Nov": "0.308", + "Dec": "0.230", + "All-year": "0.648", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.224", + "Feb": "0.217", + "Mar": "0.457", + "Apr": "0.653", + "May": "0.794", + "Jun": "0.790", + "Jul": "0.813", + "Aug": "0.765", + "Sep": "0.585", + "Oct": "0.388", + "Nov": "0.294", + "Dec": "0.223", + "All-year": "0.647", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.190", + "Feb": "0.201", + "Mar": "0.446", + "Apr": "0.639", + "May": "0.767", + "Jun": "0.774", + "Jul": "0.796", + "Aug": "0.765", + "Sep": "0.562", + "Oct": "0.376", + "Nov": "0.251", + "Dec": "0.206", + "All-year": "0.631", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.109", + "Feb": "0.118", + "Mar": "0.325", + "Apr": "0.604", + "May": "0.726", + "Jun": "0.771", + "Jul": "0.796", + "Aug": "0.730", + "Sep": "0.519", + "Oct": "0.337", + "Nov": "0.187", + "Dec": "0.152", + "All-year": "0.595", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.067", + "Feb": "0.079", + "Mar": "0.241", + "Apr": "0.472", + "May": "0.598", + "Jun": "0.738", + "Jul": "0.738", + "Aug": "0.669", + "Sep": "0.374", + "Oct": "0.212", + "Nov": "0.090", + "Dec": "0.000", + "All-year": "0.531", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.098", + "Apr": "0.401", + "May": "0.503", + "Jun": "0.583", + "Jul": "0.655", + "Aug": "0.530", + "Sep": "0.340", + "Oct": "0.124", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.469", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.604", + "Mar": "0.671", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.906", + "Jul": "0.935", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.603", + "Mar": "0.670", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.473", + "Feb": "0.601", + "Mar": "0.667", + "Apr": "0.815", + "May": "0.875", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.865", + "Sep": "0.759", + "Oct": "0.599", + "Nov": "0.532", + "Dec": "0.491", + "All-year": "0.701", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.473", + "Feb": "0.600", + "Mar": "0.663", + "Apr": "0.815", + "May": "0.874", + "Jun": "0.904", + "Jul": "0.931", + "Aug": "0.865", + "Sep": "0.755", + "Oct": "0.597", + "Nov": "0.522", + "Dec": "0.482", + "All-year": "0.699", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.446", + "Feb": "0.578", + "Mar": "0.643", + "Apr": "0.796", + "May": "0.869", + "Jun": "0.903", + "Jul": "0.930", + "Aug": "0.864", + "Sep": "0.750", + "Oct": "0.575", + "Nov": "0.503", + "Dec": "0.464", + "All-year": "0.690", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.389", + "Feb": "0.551", + "Mar": "0.633", + "Apr": "0.785", + "May": "0.848", + "Jun": "0.901", + "Jul": "0.921", + "Aug": "0.840", + "Sep": "0.735", + "Oct": "0.538", + "Nov": "0.475", + "Dec": "0.435", + "All-year": "0.660", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.467", + "Mar": "0.524", + "Apr": "0.717", + "May": "0.813", + "Jun": "0.876", + "Jul": "0.897", + "Aug": "0.821", + "Sep": "0.690", + "Oct": "0.434", + "Nov": "0.373", + "Dec": "0.313", + "All-year": "0.608", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.346", + "Mar": "0.456", + "Apr": "0.656", + "May": "0.758", + "Jun": "0.833", + "Jul": "0.872", + "Aug": "0.784", + "Sep": "0.646", + "Oct": "0.332", + "Nov": "0.283", + "Dec": "0.237", + "All-year": "0.553", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.386", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.834", + "Jun": "0.869", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.525", + "Nov": "0.437", + "Dec": "0.400", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.384", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.833", + "Jun": "0.868", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.524", + "Nov": "0.437", + "Dec": "0.399", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.377", + "Feb": "0.403", + "Mar": "0.573", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.826", + "Sep": "0.723", + "Oct": "0.524", + "Nov": "0.434", + "Dec": "0.398", + "All-year": "0.678", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.372", + "Feb": "0.403", + "Mar": "0.569", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.822", + "Sep": "0.717", + "Oct": "0.522", + "Nov": "0.431", + "Dec": "0.386", + "All-year": "0.677", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.376", + "Mar": "0.563", + "Apr": "0.710", + "May": "0.823", + "Jun": "0.864", + "Jul": "0.874", + "Aug": "0.817", + "Sep": "0.709", + "Oct": "0.487", + "Nov": "0.410", + "Dec": "0.355", + "All-year": "0.661", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.292", + "Feb": "0.328", + "Mar": "0.530", + "Apr": "0.691", + "May": "0.791", + "Jun": "0.847", + "Jul": "0.867", + "Aug": "0.785", + "Sep": "0.658", + "Oct": "0.426", + "Nov": "0.351", + "Dec": "0.290", + "All-year": "0.627", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.176", + "Feb": "0.232", + "Mar": "0.440", + "Apr": "0.610", + "May": "0.730", + "Jun": "0.782", + "Jul": "0.832", + "Aug": "0.763", + "Sep": "0.612", + "Oct": "0.334", + "Nov": "0.265", + "Dec": "0.185", + "All-year": "0.571", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.107", + "Feb": "0.144", + "Mar": "0.340", + "Apr": "0.534", + "May": "0.628", + "Jun": "0.767", + "Jul": "0.802", + "Aug": "0.681", + "Sep": "0.533", + "Oct": "0.205", + "Nov": "0.174", + "Dec": "0.115", + "All-year": "0.526", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.230", + "Mar": "0.468", + "Apr": "0.665", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.318", + "Dec": "0.242", + "All-year": "0.656", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.230", + "Mar": "0.465", + "Apr": "0.663", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.317", + "Dec": "0.242", + "All-year": "0.655", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.398", + "Nov": "0.311", + "Dec": "0.239", + "All-year": "0.652", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.230", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.391", + "Nov": "0.304", + "Dec": "0.233", + "All-year": "0.651", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.199", + "Feb": "0.216", + "Mar": "0.450", + "Apr": "0.644", + "May": "0.773", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.767", + "Sep": "0.565", + "Oct": "0.379", + "Nov": "0.267", + "Dec": "0.215", + "All-year": "0.634", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.117", + "Feb": "0.118", + "Mar": "0.362", + "Apr": "0.611", + "May": "0.727", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.751", + "Sep": "0.525", + "Oct": "0.341", + "Nov": "0.190", + "Dec": "0.163", + "All-year": "0.602", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.067", + "Feb": "0.079", + "Mar": "0.241", + "Apr": "0.472", + "May": "0.621", + "Jun": "0.742", + "Jul": "0.739", + "Aug": "0.671", + "Sep": "0.375", + "Oct": "0.212", + "Nov": "0.090", + "Dec": "0.000", + "All-year": "0.536", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.098", + "Apr": "0.401", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.656", + "Aug": "0.603", + "Sep": "0.350", + "Oct": "0.125", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.476", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.604", + "Mar": "0.671", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.906", + "Jul": "0.935", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.603", + "Mar": "0.670", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.473", + "Feb": "0.601", + "Mar": "0.667", + "Apr": "0.815", + "May": "0.875", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.865", + "Sep": "0.759", + "Oct": "0.599", + "Nov": "0.532", + "Dec": "0.491", + "All-year": "0.701", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.473", + "Feb": "0.600", + "Mar": "0.663", + "Apr": "0.815", + "May": "0.874", + "Jun": "0.904", + "Jul": "0.931", + "Aug": "0.865", + "Sep": "0.755", + "Oct": "0.597", + "Nov": "0.522", + "Dec": "0.482", + "All-year": "0.699", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.446", + "Feb": "0.578", + "Mar": "0.643", + "Apr": "0.796", + "May": "0.869", + "Jun": "0.903", + "Jul": "0.930", + "Aug": "0.864", + "Sep": "0.750", + "Oct": "0.575", + "Nov": "0.503", + "Dec": "0.464", + "All-year": "0.690", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.389", + "Feb": "0.551", + "Mar": "0.633", + "Apr": "0.785", + "May": "0.848", + "Jun": "0.901", + "Jul": "0.921", + "Aug": "0.840", + "Sep": "0.735", + "Oct": "0.538", + "Nov": "0.475", + "Dec": "0.435", + "All-year": "0.660", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.467", + "Mar": "0.524", + "Apr": "0.717", + "May": "0.813", + "Jun": "0.876", + "Jul": "0.897", + "Aug": "0.821", + "Sep": "0.690", + "Oct": "0.434", + "Nov": "0.373", + "Dec": "0.313", + "All-year": "0.608", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.346", + "Mar": "0.456", + "Apr": "0.656", + "May": "0.758", + "Jun": "0.833", + "Jul": "0.872", + "Aug": "0.784", + "Sep": "0.646", + "Oct": "0.332", + "Nov": "0.283", + "Dec": "0.237", + "All-year": "0.553", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.386", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.834", + "Jun": "0.869", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.525", + "Nov": "0.437", + "Dec": "0.400", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.384", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.833", + "Jun": "0.868", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.524", + "Nov": "0.437", + "Dec": "0.399", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.377", + "Feb": "0.403", + "Mar": "0.573", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.826", + "Sep": "0.723", + "Oct": "0.524", + "Nov": "0.434", + "Dec": "0.398", + "All-year": "0.678", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.372", + "Feb": "0.403", + "Mar": "0.569", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.822", + "Sep": "0.717", + "Oct": "0.522", + "Nov": "0.431", + "Dec": "0.386", + "All-year": "0.677", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.376", + "Mar": "0.563", + "Apr": "0.710", + "May": "0.823", + "Jun": "0.864", + "Jul": "0.874", + "Aug": "0.817", + "Sep": "0.709", + "Oct": "0.487", + "Nov": "0.410", + "Dec": "0.355", + "All-year": "0.661", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.292", + "Feb": "0.328", + "Mar": "0.530", + "Apr": "0.691", + "May": "0.791", + "Jun": "0.847", + "Jul": "0.867", + "Aug": "0.785", + "Sep": "0.658", + "Oct": "0.426", + "Nov": "0.351", + "Dec": "0.290", + "All-year": "0.627", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.176", + "Feb": "0.232", + "Mar": "0.440", + "Apr": "0.610", + "May": "0.730", + "Jun": "0.782", + "Jul": "0.832", + "Aug": "0.763", + "Sep": "0.612", + "Oct": "0.334", + "Nov": "0.265", + "Dec": "0.185", + "All-year": "0.571", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.107", + "Feb": "0.144", + "Mar": "0.340", + "Apr": "0.534", + "May": "0.628", + "Jun": "0.767", + "Jul": "0.802", + "Aug": "0.681", + "Sep": "0.533", + "Oct": "0.205", + "Nov": "0.174", + "Dec": "0.115", + "All-year": "0.526", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.230", + "Mar": "0.468", + "Apr": "0.665", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.318", + "Dec": "0.242", + "All-year": "0.656", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.230", + "Mar": "0.465", + "Apr": "0.663", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.317", + "Dec": "0.242", + "All-year": "0.655", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.398", + "Nov": "0.311", + "Dec": "0.239", + "All-year": "0.652", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.230", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.391", + "Nov": "0.304", + "Dec": "0.233", + "All-year": "0.651", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.199", + "Feb": "0.216", + "Mar": "0.450", + "Apr": "0.644", + "May": "0.773", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.767", + "Sep": "0.565", + "Oct": "0.379", + "Nov": "0.267", + "Dec": "0.215", + "All-year": "0.634", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.117", + "Feb": "0.118", + "Mar": "0.362", + "Apr": "0.611", + "May": "0.727", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.751", + "Sep": "0.525", + "Oct": "0.341", + "Nov": "0.190", + "Dec": "0.163", + "All-year": "0.602", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.067", + "Feb": "0.079", + "Mar": "0.241", + "Apr": "0.472", + "May": "0.621", + "Jun": "0.742", + "Jul": "0.739", + "Aug": "0.671", + "Sep": "0.375", + "Oct": "0.212", + "Nov": "0.090", + "Dec": "0.000", + "All-year": "0.536", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.098", + "Apr": "0.401", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.656", + "Aug": "0.603", + "Sep": "0.350", + "Oct": "0.125", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.476", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.604", + "Mar": "0.671", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.906", + "Jul": "0.935", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.603", + "Mar": "0.670", + "Apr": "0.815", + "May": "0.877", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.868", + "Sep": "0.762", + "Oct": "0.599", + "Nov": "0.533", + "Dec": "0.491", + "All-year": "0.704", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.473", + "Feb": "0.601", + "Mar": "0.667", + "Apr": "0.815", + "May": "0.875", + "Jun": "0.904", + "Jul": "0.933", + "Aug": "0.865", + "Sep": "0.759", + "Oct": "0.599", + "Nov": "0.532", + "Dec": "0.491", + "All-year": "0.701", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.473", + "Feb": "0.600", + "Mar": "0.663", + "Apr": "0.815", + "May": "0.874", + "Jun": "0.904", + "Jul": "0.931", + "Aug": "0.865", + "Sep": "0.755", + "Oct": "0.597", + "Nov": "0.522", + "Dec": "0.482", + "All-year": "0.699", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.446", + "Feb": "0.578", + "Mar": "0.643", + "Apr": "0.796", + "May": "0.869", + "Jun": "0.903", + "Jul": "0.930", + "Aug": "0.864", + "Sep": "0.750", + "Oct": "0.575", + "Nov": "0.503", + "Dec": "0.464", + "All-year": "0.690", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.389", + "Feb": "0.551", + "Mar": "0.633", + "Apr": "0.785", + "May": "0.848", + "Jun": "0.901", + "Jul": "0.921", + "Aug": "0.840", + "Sep": "0.735", + "Oct": "0.538", + "Nov": "0.475", + "Dec": "0.435", + "All-year": "0.660", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.467", + "Mar": "0.524", + "Apr": "0.717", + "May": "0.813", + "Jun": "0.876", + "Jul": "0.897", + "Aug": "0.821", + "Sep": "0.690", + "Oct": "0.434", + "Nov": "0.373", + "Dec": "0.313", + "All-year": "0.608", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.346", + "Mar": "0.456", + "Apr": "0.656", + "May": "0.758", + "Jun": "0.833", + "Jul": "0.872", + "Aug": "0.784", + "Sep": "0.646", + "Oct": "0.332", + "Nov": "0.283", + "Dec": "0.237", + "All-year": "0.553", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.386", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.834", + "Jun": "0.869", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.525", + "Nov": "0.437", + "Dec": "0.400", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.384", + "Feb": "0.407", + "Mar": "0.578", + "Apr": "0.733", + "May": "0.833", + "Jun": "0.868", + "Jul": "0.876", + "Aug": "0.826", + "Sep": "0.724", + "Oct": "0.524", + "Nov": "0.437", + "Dec": "0.399", + "All-year": "0.681", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.377", + "Feb": "0.403", + "Mar": "0.573", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.826", + "Sep": "0.723", + "Oct": "0.524", + "Nov": "0.434", + "Dec": "0.398", + "All-year": "0.678", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.372", + "Feb": "0.403", + "Mar": "0.569", + "Apr": "0.730", + "May": "0.830", + "Jun": "0.868", + "Jul": "0.874", + "Aug": "0.822", + "Sep": "0.717", + "Oct": "0.522", + "Nov": "0.431", + "Dec": "0.386", + "All-year": "0.677", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.376", + "Mar": "0.563", + "Apr": "0.710", + "May": "0.823", + "Jun": "0.864", + "Jul": "0.874", + "Aug": "0.817", + "Sep": "0.709", + "Oct": "0.487", + "Nov": "0.410", + "Dec": "0.355", + "All-year": "0.661", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.292", + "Feb": "0.328", + "Mar": "0.530", + "Apr": "0.691", + "May": "0.791", + "Jun": "0.847", + "Jul": "0.867", + "Aug": "0.785", + "Sep": "0.658", + "Oct": "0.426", + "Nov": "0.351", + "Dec": "0.290", + "All-year": "0.627", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.176", + "Feb": "0.232", + "Mar": "0.440", + "Apr": "0.610", + "May": "0.730", + "Jun": "0.782", + "Jul": "0.832", + "Aug": "0.763", + "Sep": "0.612", + "Oct": "0.334", + "Nov": "0.265", + "Dec": "0.185", + "All-year": "0.571", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.107", + "Feb": "0.144", + "Mar": "0.340", + "Apr": "0.534", + "May": "0.628", + "Jun": "0.767", + "Jul": "0.802", + "Aug": "0.681", + "Sep": "0.533", + "Oct": "0.205", + "Nov": "0.174", + "Dec": "0.115", + "All-year": "0.526", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.230", + "Mar": "0.468", + "Apr": "0.665", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.318", + "Dec": "0.242", + "All-year": "0.656", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.230", + "Mar": "0.465", + "Apr": "0.663", + "May": "0.794", + "Jun": "0.800", + "Jul": "0.815", + "Aug": "0.774", + "Sep": "0.586", + "Oct": "0.409", + "Nov": "0.317", + "Dec": "0.242", + "All-year": "0.655", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.398", + "Nov": "0.311", + "Dec": "0.239", + "All-year": "0.652", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.230", + "Feb": "0.220", + "Mar": "0.460", + "Apr": "0.658", + "May": "0.794", + "Jun": "0.794", + "Jul": "0.815", + "Aug": "0.770", + "Sep": "0.586", + "Oct": "0.391", + "Nov": "0.304", + "Dec": "0.233", + "All-year": "0.651", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.199", + "Feb": "0.216", + "Mar": "0.450", + "Apr": "0.644", + "May": "0.773", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.767", + "Sep": "0.565", + "Oct": "0.379", + "Nov": "0.267", + "Dec": "0.215", + "All-year": "0.634", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.117", + "Feb": "0.118", + "Mar": "0.362", + "Apr": "0.611", + "May": "0.727", + "Jun": "0.775", + "Jul": "0.797", + "Aug": "0.751", + "Sep": "0.525", + "Oct": "0.341", + "Nov": "0.190", + "Dec": "0.163", + "All-year": "0.602", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.067", + "Feb": "0.079", + "Mar": "0.241", + "Apr": "0.472", + "May": "0.621", + "Jun": "0.742", + "Jul": "0.739", + "Aug": "0.671", + "Sep": "0.375", + "Oct": "0.212", + "Nov": "0.090", + "Dec": "0.000", + "All-year": "0.536", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.098", + "Apr": "0.401", + "May": "0.507", + "Jun": "0.585", + "Jul": "0.656", + "Aug": "0.603", + "Sep": "0.350", + "Oct": "0.125", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.476", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.017", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.118", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.100", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.031", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.098", + "Oct": "0.040", + "Nov": "0.044", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.031", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.096", + "Oct": "0.036", + "Nov": "0.044", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.038", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.023", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.152", + "Feb": "0.211", + "Mar": "0.233", + "Apr": "0.344", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.179", + "Nov": "0.170", + "Dec": "0.173", + "All-year": "0.285", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.151", + "Feb": "0.211", + "Mar": "0.230", + "Apr": "0.344", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.177", + "Nov": "0.167", + "Dec": "0.173", + "All-year": "0.282", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.199", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.163", + "Dec": "0.168", + "All-year": "0.270", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.190", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.358", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.147", + "Dec": "0.155", + "All-year": "0.262", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.265", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.119", + "Dec": "0.126", + "All-year": "0.227", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.347", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.118", + "Nov": "0.120", + "Dec": "0.099", + "All-year": "0.268", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.344", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.114", + "Nov": "0.119", + "Dec": "0.098", + "All-year": "0.266", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.329", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.110", + "Nov": "0.115", + "Dec": "0.095", + "All-year": "0.253", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.315", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.079", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.069", + "Mar": "0.125", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.210", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.067", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.070", + "Mar": "0.128", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.239", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.072", + "Dec": "0.070", + "All-year": "0.246", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.070", + "Mar": "0.128", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.071", + "Dec": "0.067", + "All-year": "0.244", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.124", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.061", + "Dec": "0.067", + "All-year": "0.235", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.112", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.061", + "Dec": "0.062", + "All-year": "0.232", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.270", + "Feb": "0.387", + "Mar": "0.419", + "Apr": "0.560", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.630", + "Sep": "0.522", + "Oct": "0.339", + "Nov": "0.319", + "Dec": "0.310", + "All-year": "0.480", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.386", + "Mar": "0.419", + "Apr": "0.558", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.698", + "Aug": "0.628", + "Sep": "0.518", + "Oct": "0.338", + "Nov": "0.315", + "Dec": "0.306", + "All-year": "0.477", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.372", + "Mar": "0.403", + "Apr": "0.552", + "May": "0.601", + "Jun": "0.668", + "Jul": "0.685", + "Aug": "0.624", + "Sep": "0.512", + "Oct": "0.321", + "Nov": "0.305", + "Dec": "0.288", + "All-year": "0.467", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.252", + "Feb": "0.365", + "Mar": "0.393", + "Apr": "0.545", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.683", + "Aug": "0.613", + "Sep": "0.505", + "Oct": "0.310", + "Nov": "0.297", + "Dec": "0.283", + "All-year": "0.461", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.222", + "Feb": "0.331", + "Mar": "0.377", + "Apr": "0.522", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.653", + "Aug": "0.585", + "Sep": "0.481", + "Oct": "0.287", + "Nov": "0.255", + "Dec": "0.239", + "All-year": "0.428", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.189", + "Feb": "0.249", + "Mar": "0.336", + "Apr": "0.478", + "May": "0.485", + "Jun": "0.571", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.409", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.370", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.204", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.264", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.195", + "Feb": "0.219", + "Mar": "0.365", + "Apr": "0.524", + "May": "0.533", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.276", + "Nov": "0.236", + "Dec": "0.226", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.194", + "Feb": "0.217", + "Mar": "0.360", + "Apr": "0.524", + "May": "0.531", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.272", + "Nov": "0.234", + "Dec": "0.225", + "All-year": "0.459", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.189", + "Feb": "0.214", + "Mar": "0.344", + "Apr": "0.510", + "May": "0.524", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.560", + "Sep": "0.440", + "Oct": "0.265", + "Nov": "0.229", + "Dec": "0.220", + "All-year": "0.450", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.202", + "Mar": "0.339", + "Apr": "0.506", + "May": "0.520", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.428", + "Oct": "0.247", + "Nov": "0.215", + "Dec": "0.208", + "All-year": "0.445", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.149", + "Feb": "0.170", + "Mar": "0.293", + "Apr": "0.469", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.383", + "Oct": "0.217", + "Nov": "0.191", + "Dec": "0.166", + "All-year": "0.409", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.129", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.311", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.101", + "All-year": "0.354", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.036", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.268", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.109", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.160", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.128", + "Feb": "0.152", + "Mar": "0.251", + "Apr": "0.461", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.497", + "Aug": "0.500", + "Sep": "0.335", + "Oct": "0.226", + "Nov": "0.164", + "Dec": "0.132", + "All-year": "0.442", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.128", + "Feb": "0.147", + "Mar": "0.249", + "Apr": "0.461", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.495", + "Aug": "0.499", + "Sep": "0.331", + "Oct": "0.218", + "Nov": "0.162", + "Dec": "0.130", + "All-year": "0.438", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.103", + "Feb": "0.126", + "Mar": "0.242", + "Apr": "0.456", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.488", + "Aug": "0.483", + "Sep": "0.324", + "Oct": "0.206", + "Nov": "0.154", + "Dec": "0.126", + "All-year": "0.429", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.103", + "Feb": "0.126", + "Mar": "0.242", + "Apr": "0.442", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.470", + "Sep": "0.322", + "Oct": "0.196", + "Nov": "0.132", + "Dec": "0.126", + "All-year": "0.421", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.101", + "Mar": "0.180", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.286", + "Oct": "0.147", + "Nov": "0.104", + "Dec": "0.093", + "All-year": "0.386", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.039", + "Mar": "0.109", + "Apr": "0.314", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.314", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.074", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.192", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.349", + "Feb": "0.460", + "Mar": "0.524", + "Apr": "0.659", + "May": "0.723", + "Jun": "0.798", + "Jul": "0.813", + "Aug": "0.736", + "Sep": "0.619", + "Oct": "0.429", + "Nov": "0.392", + "Dec": "0.388", + "All-year": "0.574", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.460", + "Mar": "0.524", + "Apr": "0.657", + "May": "0.723", + "Jun": "0.796", + "Jul": "0.811", + "Aug": "0.735", + "Sep": "0.615", + "Oct": "0.428", + "Nov": "0.392", + "Dec": "0.384", + "All-year": "0.572", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.333", + "Feb": "0.458", + "Mar": "0.520", + "Apr": "0.651", + "May": "0.720", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.609", + "Oct": "0.421", + "Nov": "0.381", + "Dec": "0.375", + "All-year": "0.565", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.332", + "Feb": "0.455", + "Mar": "0.515", + "Apr": "0.645", + "May": "0.717", + "Jun": "0.788", + "Jul": "0.804", + "Aug": "0.718", + "Sep": "0.604", + "Oct": "0.406", + "Nov": "0.372", + "Dec": "0.363", + "All-year": "0.559", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.304", + "Feb": "0.415", + "Mar": "0.483", + "Apr": "0.618", + "May": "0.694", + "Jun": "0.769", + "Jul": "0.778", + "Aug": "0.699", + "Sep": "0.582", + "Oct": "0.377", + "Nov": "0.334", + "Dec": "0.323", + "All-year": "0.532", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.249", + "Feb": "0.356", + "Mar": "0.421", + "Apr": "0.586", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.739", + "Aug": "0.643", + "Sep": "0.518", + "Oct": "0.316", + "Nov": "0.255", + "Dec": "0.256", + "All-year": "0.476", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.124", + "Feb": "0.219", + "Mar": "0.329", + "Apr": "0.456", + "May": "0.513", + "Jun": "0.610", + "Jul": "0.638", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.167", + "Nov": "0.159", + "Dec": "0.152", + "All-year": "0.379", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.129", + "Mar": "0.206", + "Apr": "0.338", + "May": "0.409", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.107", + "Dec": "0.000", + "All-year": "0.309", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.257", + "Feb": "0.327", + "Mar": "0.450", + "Apr": "0.623", + "May": "0.665", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.660", + "Sep": "0.533", + "Oct": "0.378", + "Nov": "0.322", + "Dec": "0.287", + "All-year": "0.555", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.327", + "Mar": "0.448", + "Apr": "0.621", + "May": "0.661", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.656", + "Sep": "0.529", + "Oct": "0.375", + "Nov": "0.318", + "Dec": "0.286", + "All-year": "0.553", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.246", + "Feb": "0.317", + "Mar": "0.446", + "Apr": "0.611", + "May": "0.653", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.648", + "Sep": "0.520", + "Oct": "0.370", + "Nov": "0.307", + "Dec": "0.279", + "All-year": "0.544", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.315", + "Mar": "0.440", + "Apr": "0.608", + "May": "0.649", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.648", + "Sep": "0.508", + "Oct": "0.348", + "Nov": "0.296", + "Dec": "0.272", + "All-year": "0.540", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.226", + "Feb": "0.270", + "Mar": "0.418", + "Apr": "0.581", + "May": "0.611", + "Jun": "0.713", + "Jul": "0.718", + "Aug": "0.622", + "Sep": "0.478", + "Oct": "0.313", + "Nov": "0.263", + "Dec": "0.240", + "All-year": "0.512", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.124", + "Feb": "0.228", + "Mar": "0.351", + "Apr": "0.523", + "May": "0.558", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.230", + "Nov": "0.174", + "Dec": "0.157", + "All-year": "0.456", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.068", + "Feb": "0.107", + "Mar": "0.249", + "Apr": "0.358", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.122", + "Nov": "0.072", + "Dec": "0.000", + "All-year": "0.359", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.263", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.271", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.193", + "Mar": "0.343", + "Apr": "0.586", + "May": "0.601", + "Jun": "0.653", + "Jul": "0.644", + "Aug": "0.614", + "Sep": "0.425", + "Oct": "0.278", + "Nov": "0.225", + "Dec": "0.169", + "All-year": "0.529", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.173", + "Feb": "0.190", + "Mar": "0.340", + "Apr": "0.586", + "May": "0.598", + "Jun": "0.650", + "Jul": "0.644", + "Aug": "0.608", + "Sep": "0.421", + "Oct": "0.273", + "Nov": "0.224", + "Dec": "0.167", + "All-year": "0.527", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.169", + "Feb": "0.189", + "Mar": "0.332", + "Apr": "0.568", + "May": "0.581", + "Jun": "0.650", + "Jul": "0.626", + "Aug": "0.608", + "Sep": "0.411", + "Oct": "0.267", + "Nov": "0.219", + "Dec": "0.151", + "All-year": "0.522", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.189", + "Mar": "0.332", + "Apr": "0.568", + "May": "0.571", + "Jun": "0.650", + "Jul": "0.620", + "Aug": "0.595", + "Sep": "0.404", + "Oct": "0.262", + "Nov": "0.214", + "Dec": "0.148", + "All-year": "0.517", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.282", + "Apr": "0.557", + "May": "0.551", + "Jun": "0.643", + "Jul": "0.591", + "Aug": "0.539", + "Sep": "0.376", + "Oct": "0.231", + "Nov": "0.165", + "Dec": "0.114", + "All-year": "0.494", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.089", + "Mar": "0.194", + "Apr": "0.453", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.293", + "Oct": "0.122", + "Nov": "0.057", + "Dec": "0.048", + "All-year": "0.437", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.094", + "Apr": "0.286", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.329", + "Aug": "0.276", + "Sep": "0.172", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.320", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.108", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.239", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.420", + "Feb": "0.532", + "Mar": "0.614", + "Apr": "0.748", + "May": "0.818", + "Jun": "0.878", + "Jul": "0.882", + "Aug": "0.819", + "Sep": "0.699", + "Oct": "0.530", + "Nov": "0.486", + "Dec": "0.454", + "All-year": "0.655", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.419", + "Feb": "0.529", + "Mar": "0.614", + "Apr": "0.747", + "May": "0.814", + "Jun": "0.876", + "Jul": "0.881", + "Aug": "0.819", + "Sep": "0.697", + "Oct": "0.527", + "Nov": "0.485", + "Dec": "0.452", + "All-year": "0.654", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.410", + "Feb": "0.527", + "Mar": "0.603", + "Apr": "0.742", + "May": "0.812", + "Jun": "0.871", + "Jul": "0.879", + "Aug": "0.818", + "Sep": "0.695", + "Oct": "0.516", + "Nov": "0.478", + "Dec": "0.448", + "All-year": "0.647", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.406", + "Feb": "0.523", + "Mar": "0.601", + "Apr": "0.740", + "May": "0.808", + "Jun": "0.867", + "Jul": "0.871", + "Aug": "0.809", + "Sep": "0.683", + "Oct": "0.503", + "Nov": "0.474", + "Dec": "0.443", + "All-year": "0.643", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.382", + "Feb": "0.496", + "Mar": "0.585", + "Apr": "0.723", + "May": "0.799", + "Jun": "0.856", + "Jul": "0.858", + "Aug": "0.792", + "Sep": "0.662", + "Oct": "0.476", + "Nov": "0.437", + "Dec": "0.416", + "All-year": "0.625", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.337", + "Feb": "0.453", + "Mar": "0.542", + "Apr": "0.683", + "May": "0.750", + "Jun": "0.838", + "Jul": "0.838", + "Aug": "0.767", + "Sep": "0.630", + "Oct": "0.388", + "Nov": "0.363", + "Dec": "0.364", + "All-year": "0.576", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.222", + "Feb": "0.302", + "Mar": "0.385", + "Apr": "0.604", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.786", + "Aug": "0.697", + "Sep": "0.520", + "Oct": "0.302", + "Nov": "0.229", + "Dec": "0.225", + "All-year": "0.482", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.195", + "Mar": "0.309", + "Apr": "0.522", + "May": "0.543", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.187", + "Nov": "0.146", + "Dec": "0.142", + "All-year": "0.408", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.400", + "Mar": "0.514", + "Apr": "0.713", + "May": "0.769", + "Jun": "0.831", + "Jul": "0.845", + "Aug": "0.765", + "Sep": "0.632", + "Oct": "0.457", + "Nov": "0.421", + "Dec": "0.356", + "All-year": "0.635", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.400", + "Mar": "0.512", + "Apr": "0.713", + "May": "0.769", + "Jun": "0.831", + "Jul": "0.845", + "Aug": "0.763", + "Sep": "0.631", + "Oct": "0.454", + "Nov": "0.416", + "Dec": "0.355", + "All-year": "0.632", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.328", + "Feb": "0.385", + "Mar": "0.512", + "Apr": "0.701", + "May": "0.762", + "Jun": "0.818", + "Jul": "0.838", + "Aug": "0.759", + "Sep": "0.626", + "Oct": "0.444", + "Nov": "0.407", + "Dec": "0.347", + "All-year": "0.623", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.321", + "Feb": "0.371", + "Mar": "0.509", + "Apr": "0.698", + "May": "0.756", + "Jun": "0.818", + "Jul": "0.835", + "Aug": "0.751", + "Sep": "0.619", + "Oct": "0.440", + "Nov": "0.399", + "Dec": "0.338", + "All-year": "0.619", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.284", + "Feb": "0.349", + "Mar": "0.477", + "Apr": "0.688", + "May": "0.739", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.745", + "Sep": "0.597", + "Oct": "0.405", + "Nov": "0.374", + "Dec": "0.310", + "All-year": "0.599", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.293", + "Mar": "0.431", + "Apr": "0.639", + "May": "0.698", + "Jun": "0.777", + "Jul": "0.776", + "Aug": "0.679", + "Sep": "0.544", + "Oct": "0.312", + "Nov": "0.231", + "Dec": "0.225", + "All-year": "0.540", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.093", + "Feb": "0.148", + "Mar": "0.308", + "Apr": "0.535", + "May": "0.589", + "Jun": "0.661", + "Jul": "0.708", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.177", + "Nov": "0.138", + "Dec": "0.121", + "All-year": "0.460", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.108", + "Mar": "0.206", + "Apr": "0.398", + "May": "0.427", + "Jun": "0.580", + "Jul": "0.576", + "Aug": "0.468", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.104", + "Dec": "0.000", + "All-year": "0.375", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.210", + "Feb": "0.251", + "Mar": "0.425", + "Apr": "0.657", + "May": "0.719", + "Jun": "0.788", + "Jul": "0.753", + "Aug": "0.696", + "Sep": "0.531", + "Oct": "0.367", + "Nov": "0.283", + "Dec": "0.222", + "All-year": "0.608", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.210", + "Feb": "0.249", + "Mar": "0.419", + "Apr": "0.657", + "May": "0.714", + "Jun": "0.788", + "Jul": "0.750", + "Aug": "0.695", + "Sep": "0.529", + "Oct": "0.363", + "Nov": "0.282", + "Dec": "0.218", + "All-year": "0.606", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.204", + "Feb": "0.244", + "Mar": "0.406", + "Apr": "0.657", + "May": "0.703", + "Jun": "0.775", + "Jul": "0.741", + "Aug": "0.690", + "Sep": "0.522", + "Oct": "0.358", + "Nov": "0.269", + "Dec": "0.211", + "All-year": "0.600", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.244", + "Mar": "0.399", + "Apr": "0.640", + "May": "0.703", + "Jun": "0.761", + "Jul": "0.741", + "Aug": "0.683", + "Sep": "0.517", + "Oct": "0.352", + "Nov": "0.269", + "Dec": "0.206", + "All-year": "0.594", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.179", + "Feb": "0.192", + "Mar": "0.371", + "Apr": "0.604", + "May": "0.703", + "Jun": "0.751", + "Jul": "0.728", + "Aug": "0.652", + "Sep": "0.487", + "Oct": "0.304", + "Nov": "0.201", + "Dec": "0.156", + "All-year": "0.571", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.140", + "Mar": "0.249", + "Apr": "0.585", + "May": "0.583", + "Jun": "0.703", + "Jul": "0.652", + "Aug": "0.591", + "Sep": "0.439", + "Oct": "0.207", + "Nov": "0.151", + "Dec": "0.087", + "All-year": "0.519", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.126", + "Apr": "0.447", + "May": "0.430", + "Jun": "0.533", + "Jul": "0.468", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.136", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.435", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.279", + "May": "0.300", + "Jun": "0.483", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.137", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.351", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.489", + "Feb": "0.616", + "Mar": "0.692", + "Apr": "0.824", + "May": "0.884", + "Jun": "0.915", + "Jul": "0.938", + "Aug": "0.872", + "Sep": "0.760", + "Oct": "0.620", + "Nov": "0.591", + "Dec": "0.530", + "All-year": "0.720", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.488", + "Feb": "0.613", + "Mar": "0.690", + "Apr": "0.822", + "May": "0.884", + "Jun": "0.915", + "Jul": "0.937", + "Aug": "0.872", + "Sep": "0.759", + "Oct": "0.618", + "Nov": "0.588", + "Dec": "0.528", + "All-year": "0.718", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.485", + "Feb": "0.613", + "Mar": "0.689", + "Apr": "0.819", + "May": "0.881", + "Jun": "0.913", + "Jul": "0.937", + "Aug": "0.868", + "Sep": "0.758", + "Oct": "0.616", + "Nov": "0.578", + "Dec": "0.521", + "All-year": "0.713", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.474", + "Feb": "0.602", + "Mar": "0.685", + "Apr": "0.813", + "May": "0.877", + "Jun": "0.913", + "Jul": "0.930", + "Aug": "0.868", + "Sep": "0.754", + "Oct": "0.612", + "Nov": "0.564", + "Dec": "0.503", + "All-year": "0.710", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.451", + "Feb": "0.595", + "Mar": "0.667", + "Apr": "0.806", + "May": "0.866", + "Jun": "0.905", + "Jul": "0.915", + "Aug": "0.866", + "Sep": "0.740", + "Oct": "0.581", + "Nov": "0.528", + "Dec": "0.482", + "All-year": "0.693", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.417", + "Feb": "0.548", + "Mar": "0.618", + "Apr": "0.773", + "May": "0.842", + "Jun": "0.899", + "Jul": "0.905", + "Aug": "0.829", + "Sep": "0.709", + "Oct": "0.538", + "Nov": "0.460", + "Dec": "0.437", + "All-year": "0.658", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.319", + "Feb": "0.435", + "Mar": "0.511", + "Apr": "0.717", + "May": "0.798", + "Jun": "0.869", + "Jul": "0.882", + "Aug": "0.786", + "Sep": "0.634", + "Oct": "0.413", + "Nov": "0.331", + "Dec": "0.312", + "All-year": "0.588", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.232", + "Feb": "0.330", + "Mar": "0.400", + "Apr": "0.642", + "May": "0.715", + "Jun": "0.808", + "Jul": "0.837", + "Aug": "0.772", + "Sep": "0.535", + "Oct": "0.296", + "Nov": "0.244", + "Dec": "0.245", + "All-year": "0.522", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.426", + "Feb": "0.457", + "Mar": "0.601", + "Apr": "0.769", + "May": "0.837", + "Jun": "0.888", + "Jul": "0.897", + "Aug": "0.823", + "Sep": "0.726", + "Oct": "0.533", + "Nov": "0.474", + "Dec": "0.425", + "All-year": "0.696", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.423", + "Feb": "0.457", + "Mar": "0.599", + "Apr": "0.767", + "May": "0.836", + "Jun": "0.885", + "Jul": "0.896", + "Aug": "0.821", + "Sep": "0.726", + "Oct": "0.530", + "Nov": "0.474", + "Dec": "0.423", + "All-year": "0.695", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.407", + "Feb": "0.442", + "Mar": "0.597", + "Apr": "0.762", + "May": "0.835", + "Jun": "0.883", + "Jul": "0.893", + "Aug": "0.819", + "Sep": "0.719", + "Oct": "0.519", + "Nov": "0.469", + "Dec": "0.418", + "All-year": "0.688", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.400", + "Feb": "0.438", + "Mar": "0.593", + "Apr": "0.758", + "May": "0.834", + "Jun": "0.881", + "Jul": "0.893", + "Aug": "0.816", + "Sep": "0.710", + "Oct": "0.517", + "Nov": "0.459", + "Dec": "0.405", + "All-year": "0.685", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.372", + "Feb": "0.416", + "Mar": "0.564", + "Apr": "0.749", + "May": "0.820", + "Jun": "0.871", + "Jul": "0.891", + "Aug": "0.810", + "Sep": "0.683", + "Oct": "0.481", + "Nov": "0.417", + "Dec": "0.375", + "All-year": "0.668", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.294", + "Feb": "0.334", + "Mar": "0.507", + "Apr": "0.713", + "May": "0.808", + "Jun": "0.854", + "Jul": "0.867", + "Aug": "0.769", + "Sep": "0.612", + "Oct": "0.401", + "Nov": "0.355", + "Dec": "0.291", + "All-year": "0.618", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.162", + "Feb": "0.245", + "Mar": "0.419", + "Apr": "0.637", + "May": "0.735", + "Jun": "0.798", + "Jul": "0.805", + "Aug": "0.701", + "Sep": "0.498", + "Oct": "0.248", + "Nov": "0.245", + "Dec": "0.223", + "All-year": "0.550", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.052", + "Feb": "0.138", + "Mar": "0.344", + "Apr": "0.551", + "May": "0.595", + "Jun": "0.753", + "Jul": "0.708", + "Aug": "0.592", + "Sep": "0.435", + "Oct": "0.160", + "Nov": "0.141", + "Dec": "0.107", + "All-year": "0.486", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.269", + "Mar": "0.507", + "Apr": "0.708", + "May": "0.804", + "Jun": "0.829", + "Jul": "0.825", + "Aug": "0.777", + "Sep": "0.607", + "Oct": "0.441", + "Nov": "0.340", + "Dec": "0.269", + "All-year": "0.671", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.263", + "Mar": "0.505", + "Apr": "0.708", + "May": "0.804", + "Jun": "0.829", + "Jul": "0.820", + "Aug": "0.773", + "Sep": "0.606", + "Oct": "0.438", + "Nov": "0.337", + "Dec": "0.266", + "All-year": "0.669", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.263", + "Mar": "0.495", + "Apr": "0.704", + "May": "0.800", + "Jun": "0.829", + "Jul": "0.820", + "Aug": "0.769", + "Sep": "0.596", + "Oct": "0.429", + "Nov": "0.329", + "Dec": "0.254", + "All-year": "0.662", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.256", + "Mar": "0.488", + "Apr": "0.704", + "May": "0.800", + "Jun": "0.822", + "Jul": "0.813", + "Aug": "0.761", + "Sep": "0.590", + "Oct": "0.422", + "Nov": "0.329", + "Dec": "0.247", + "All-year": "0.659", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.230", + "Feb": "0.216", + "Mar": "0.460", + "Apr": "0.686", + "May": "0.774", + "Jun": "0.810", + "Jul": "0.813", + "Aug": "0.741", + "Sep": "0.576", + "Oct": "0.371", + "Nov": "0.271", + "Dec": "0.214", + "All-year": "0.643", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.143", + "Mar": "0.272", + "Apr": "0.669", + "May": "0.722", + "Jun": "0.792", + "Jul": "0.765", + "Aug": "0.695", + "Sep": "0.507", + "Oct": "0.316", + "Nov": "0.168", + "Dec": "0.156", + "All-year": "0.594", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.096", + "Mar": "0.220", + "Apr": "0.547", + "May": "0.593", + "Jun": "0.751", + "Jul": "0.691", + "Aug": "0.624", + "Sep": "0.365", + "Oct": "0.215", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.527", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.397", + "May": "0.450", + "Jun": "0.604", + "Jul": "0.528", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.099", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.465", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.530", + "Feb": "0.661", + "Mar": "0.740", + "Apr": "0.869", + "May": "0.923", + "Jun": "0.928", + "Jul": "0.960", + "Aug": "0.905", + "Sep": "0.812", + "Oct": "0.661", + "Nov": "0.633", + "Dec": "0.578", + "All-year": "0.761", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.528", + "Feb": "0.661", + "Mar": "0.740", + "Apr": "0.868", + "May": "0.920", + "Jun": "0.928", + "Jul": "0.960", + "Aug": "0.905", + "Sep": "0.810", + "Oct": "0.659", + "Nov": "0.633", + "Dec": "0.578", + "All-year": "0.760", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.523", + "Feb": "0.658", + "Mar": "0.737", + "Apr": "0.866", + "May": "0.919", + "Jun": "0.928", + "Jul": "0.960", + "Aug": "0.904", + "Sep": "0.808", + "Oct": "0.656", + "Nov": "0.633", + "Dec": "0.575", + "All-year": "0.755", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.519", + "Feb": "0.656", + "Mar": "0.735", + "Apr": "0.866", + "May": "0.919", + "Jun": "0.928", + "Jul": "0.960", + "Aug": "0.899", + "Sep": "0.804", + "Oct": "0.647", + "Nov": "0.629", + "Dec": "0.565", + "All-year": "0.752", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.509", + "Feb": "0.633", + "Mar": "0.716", + "Apr": "0.858", + "May": "0.916", + "Jun": "0.926", + "Jul": "0.955", + "Aug": "0.899", + "Sep": "0.784", + "Oct": "0.634", + "Nov": "0.603", + "Dec": "0.555", + "All-year": "0.739", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.468", + "Feb": "0.606", + "Mar": "0.692", + "Apr": "0.835", + "May": "0.901", + "Jun": "0.924", + "Jul": "0.947", + "Aug": "0.870", + "Sep": "0.769", + "Oct": "0.599", + "Nov": "0.547", + "Dec": "0.488", + "All-year": "0.709", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.398", + "Feb": "0.522", + "Mar": "0.611", + "Apr": "0.789", + "May": "0.867", + "Jun": "0.894", + "Jul": "0.938", + "Aug": "0.854", + "Sep": "0.712", + "Oct": "0.519", + "Nov": "0.401", + "Dec": "0.392", + "All-year": "0.658", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.282", + "Feb": "0.464", + "Mar": "0.511", + "Apr": "0.737", + "May": "0.833", + "Jun": "0.873", + "Jul": "0.911", + "Aug": "0.826", + "Sep": "0.645", + "Oct": "0.374", + "Nov": "0.356", + "Dec": "0.290", + "All-year": "0.599", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.472", + "Feb": "0.494", + "Mar": "0.638", + "Apr": "0.804", + "May": "0.886", + "Jun": "0.915", + "Jul": "0.911", + "Aug": "0.859", + "Sep": "0.769", + "Oct": "0.584", + "Nov": "0.511", + "Dec": "0.463", + "All-year": "0.735", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.471", + "Feb": "0.493", + "Mar": "0.638", + "Apr": "0.804", + "May": "0.884", + "Jun": "0.914", + "Jul": "0.911", + "Aug": "0.858", + "Sep": "0.769", + "Oct": "0.583", + "Nov": "0.509", + "Dec": "0.462", + "All-year": "0.734", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.465", + "Feb": "0.482", + "Mar": "0.636", + "Apr": "0.801", + "May": "0.882", + "Jun": "0.913", + "Jul": "0.911", + "Aug": "0.858", + "Sep": "0.767", + "Oct": "0.583", + "Nov": "0.506", + "Dec": "0.456", + "All-year": "0.730", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.458", + "Feb": "0.482", + "Mar": "0.636", + "Apr": "0.798", + "May": "0.877", + "Jun": "0.913", + "Jul": "0.911", + "Aug": "0.853", + "Sep": "0.756", + "Oct": "0.580", + "Nov": "0.494", + "Dec": "0.447", + "All-year": "0.728", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.422", + "Feb": "0.473", + "Mar": "0.629", + "Apr": "0.789", + "May": "0.868", + "Jun": "0.913", + "Jul": "0.905", + "Aug": "0.851", + "Sep": "0.743", + "Oct": "0.544", + "Nov": "0.472", + "Dec": "0.425", + "All-year": "0.719", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.350", + "Feb": "0.421", + "Mar": "0.571", + "Apr": "0.769", + "May": "0.848", + "Jun": "0.899", + "Jul": "0.899", + "Aug": "0.839", + "Sep": "0.711", + "Oct": "0.485", + "Nov": "0.410", + "Dec": "0.376", + "All-year": "0.680", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.209", + "Feb": "0.300", + "Mar": "0.489", + "Apr": "0.718", + "May": "0.798", + "Jun": "0.856", + "Jul": "0.870", + "Aug": "0.775", + "Sep": "0.615", + "Oct": "0.375", + "Nov": "0.284", + "Dec": "0.263", + "All-year": "0.618", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.144", + "Feb": "0.223", + "Mar": "0.405", + "Apr": "0.647", + "May": "0.745", + "Jun": "0.811", + "Jul": "0.823", + "Aug": "0.718", + "Sep": "0.529", + "Oct": "0.283", + "Nov": "0.203", + "Dec": "0.177", + "All-year": "0.567", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.313", + "Feb": "0.287", + "Mar": "0.517", + "Apr": "0.717", + "May": "0.832", + "Jun": "0.872", + "Jul": "0.843", + "Aug": "0.813", + "Sep": "0.653", + "Oct": "0.480", + "Nov": "0.404", + "Dec": "0.325", + "All-year": "0.714", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.310", + "Feb": "0.287", + "Mar": "0.517", + "Apr": "0.717", + "May": "0.832", + "Jun": "0.872", + "Jul": "0.843", + "Aug": "0.813", + "Sep": "0.651", + "Oct": "0.480", + "Nov": "0.403", + "Dec": "0.324", + "All-year": "0.712", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.301", + "Feb": "0.274", + "Mar": "0.508", + "Apr": "0.715", + "May": "0.828", + "Jun": "0.872", + "Jul": "0.843", + "Aug": "0.813", + "Sep": "0.649", + "Oct": "0.477", + "Nov": "0.394", + "Dec": "0.310", + "All-year": "0.708", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.301", + "Feb": "0.274", + "Mar": "0.495", + "Apr": "0.713", + "May": "0.828", + "Jun": "0.872", + "Jul": "0.843", + "Aug": "0.813", + "Sep": "0.649", + "Oct": "0.477", + "Nov": "0.387", + "Dec": "0.310", + "All-year": "0.704", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.258", + "Feb": "0.228", + "Mar": "0.472", + "Apr": "0.713", + "May": "0.820", + "Jun": "0.847", + "Jul": "0.835", + "Aug": "0.790", + "Sep": "0.633", + "Oct": "0.427", + "Nov": "0.358", + "Dec": "0.250", + "All-year": "0.691", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.199", + "Mar": "0.413", + "Apr": "0.708", + "May": "0.796", + "Jun": "0.847", + "Jul": "0.817", + "Aug": "0.772", + "Sep": "0.587", + "Oct": "0.391", + "Nov": "0.278", + "Dec": "0.184", + "All-year": "0.650", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.086", + "Feb": "0.100", + "Mar": "0.323", + "Apr": "0.610", + "May": "0.743", + "Jun": "0.807", + "Jul": "0.777", + "Aug": "0.711", + "Sep": "0.479", + "Oct": "0.227", + "Nov": "0.124", + "Dec": "0.082", + "All-year": "0.583", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.521", + "May": "0.621", + "Jun": "0.628", + "Jul": "0.684", + "Aug": "0.641", + "Sep": "0.397", + "Oct": "0.126", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.538", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.673", + "Nov": "0.653", + "Dec": "0.592", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.672", + "Nov": "0.653", + "Dec": "0.591", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.556", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.912", + "Sep": "0.828", + "Oct": "0.672", + "Nov": "0.651", + "Dec": "0.587", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.555", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.936", + "Jul": "0.964", + "Aug": "0.911", + "Sep": "0.828", + "Oct": "0.668", + "Nov": "0.645", + "Dec": "0.585", + "All-year": "0.770", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.538", + "Feb": "0.673", + "Mar": "0.745", + "Apr": "0.872", + "May": "0.926", + "Jun": "0.933", + "Jul": "0.960", + "Aug": "0.907", + "Sep": "0.806", + "Oct": "0.653", + "Nov": "0.616", + "Dec": "0.578", + "All-year": "0.758", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.496", + "Feb": "0.636", + "Mar": "0.711", + "Apr": "0.843", + "May": "0.908", + "Jun": "0.931", + "Jul": "0.958", + "Aug": "0.899", + "Sep": "0.790", + "Oct": "0.612", + "Nov": "0.567", + "Dec": "0.532", + "All-year": "0.736", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.409", + "Feb": "0.563", + "Mar": "0.637", + "Apr": "0.814", + "May": "0.898", + "Jun": "0.917", + "Jul": "0.956", + "Aug": "0.868", + "Sep": "0.756", + "Oct": "0.548", + "Nov": "0.483", + "Dec": "0.411", + "All-year": "0.692", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.319", + "Feb": "0.530", + "Mar": "0.516", + "Apr": "0.760", + "May": "0.864", + "Jun": "0.895", + "Jul": "0.925", + "Aug": "0.854", + "Sep": "0.690", + "Oct": "0.450", + "Nov": "0.391", + "Dec": "0.332", + "All-year": "0.641", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.486", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.906", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.526", + "Dec": "0.491", + "All-year": "0.747", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.485", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.905", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.525", + "Dec": "0.491", + "All-year": "0.746", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.785", + "Oct": "0.614", + "Nov": "0.521", + "Dec": "0.487", + "All-year": "0.745", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.470", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.782", + "Oct": "0.614", + "Nov": "0.512", + "Dec": "0.476", + "All-year": "0.743", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.441", + "Feb": "0.498", + "Mar": "0.641", + "Apr": "0.812", + "May": "0.893", + "Jun": "0.922", + "Jul": "0.906", + "Aug": "0.864", + "Sep": "0.766", + "Oct": "0.589", + "Nov": "0.497", + "Dec": "0.453", + "All-year": "0.734", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.434", + "Mar": "0.589", + "Apr": "0.784", + "May": "0.876", + "Jun": "0.910", + "Jul": "0.906", + "Aug": "0.845", + "Sep": "0.750", + "Oct": "0.548", + "Nov": "0.442", + "Dec": "0.401", + "All-year": "0.710", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.251", + "Feb": "0.314", + "Mar": "0.503", + "Apr": "0.727", + "May": "0.831", + "Jun": "0.876", + "Jul": "0.884", + "Aug": "0.802", + "Sep": "0.668", + "Oct": "0.419", + "Nov": "0.331", + "Dec": "0.271", + "All-year": "0.653", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.161", + "Feb": "0.244", + "Mar": "0.459", + "Apr": "0.692", + "May": "0.788", + "Jun": "0.826", + "Jul": "0.873", + "Aug": "0.781", + "Sep": "0.607", + "Oct": "0.298", + "Nov": "0.232", + "Dec": "0.234", + "All-year": "0.603", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.667", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.729", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.728", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.327", + "Feb": "0.287", + "Mar": "0.519", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.725", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.320", + "Feb": "0.280", + "Mar": "0.505", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.849", + "Aug": "0.827", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.723", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.293", + "Feb": "0.269", + "Mar": "0.474", + "Apr": "0.714", + "May": "0.847", + "Jun": "0.856", + "Jul": "0.839", + "Aug": "0.817", + "Sep": "0.665", + "Oct": "0.481", + "Nov": "0.406", + "Dec": "0.267", + "All-year": "0.709", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.235", + "Feb": "0.205", + "Mar": "0.445", + "Apr": "0.711", + "May": "0.798", + "Jun": "0.856", + "Jul": "0.837", + "Aug": "0.788", + "Sep": "0.617", + "Oct": "0.456", + "Nov": "0.318", + "Dec": "0.267", + "All-year": "0.677", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.103", + "Mar": "0.332", + "Apr": "0.621", + "May": "0.788", + "Jun": "0.815", + "Jul": "0.790", + "Aug": "0.765", + "Sep": "0.512", + "Oct": "0.294", + "Nov": "0.186", + "Dec": "0.087", + "All-year": "0.616", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.161", + "Apr": "0.536", + "May": "0.711", + "Jun": "0.710", + "Jul": "0.704", + "Aug": "0.671", + "Sep": "0.465", + "Oct": "0.148", + "Nov": "0.119", + "Dec": "0.000", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.673", + "Nov": "0.653", + "Dec": "0.592", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.672", + "Nov": "0.653", + "Dec": "0.591", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.556", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.912", + "Sep": "0.828", + "Oct": "0.672", + "Nov": "0.651", + "Dec": "0.587", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.555", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.936", + "Jul": "0.964", + "Aug": "0.911", + "Sep": "0.828", + "Oct": "0.668", + "Nov": "0.645", + "Dec": "0.585", + "All-year": "0.770", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.538", + "Feb": "0.673", + "Mar": "0.745", + "Apr": "0.872", + "May": "0.926", + "Jun": "0.933", + "Jul": "0.960", + "Aug": "0.907", + "Sep": "0.806", + "Oct": "0.653", + "Nov": "0.616", + "Dec": "0.578", + "All-year": "0.758", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.496", + "Feb": "0.636", + "Mar": "0.711", + "Apr": "0.843", + "May": "0.908", + "Jun": "0.931", + "Jul": "0.958", + "Aug": "0.899", + "Sep": "0.790", + "Oct": "0.612", + "Nov": "0.567", + "Dec": "0.532", + "All-year": "0.736", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.409", + "Feb": "0.563", + "Mar": "0.637", + "Apr": "0.814", + "May": "0.898", + "Jun": "0.917", + "Jul": "0.956", + "Aug": "0.868", + "Sep": "0.756", + "Oct": "0.548", + "Nov": "0.483", + "Dec": "0.411", + "All-year": "0.692", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.319", + "Feb": "0.530", + "Mar": "0.516", + "Apr": "0.760", + "May": "0.868", + "Jun": "0.895", + "Jul": "0.925", + "Aug": "0.854", + "Sep": "0.690", + "Oct": "0.450", + "Nov": "0.391", + "Dec": "0.332", + "All-year": "0.641", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.486", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.906", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.526", + "Dec": "0.491", + "All-year": "0.747", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.485", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.905", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.525", + "Dec": "0.491", + "All-year": "0.746", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.785", + "Oct": "0.614", + "Nov": "0.521", + "Dec": "0.487", + "All-year": "0.745", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.470", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.782", + "Oct": "0.614", + "Nov": "0.512", + "Dec": "0.476", + "All-year": "0.743", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.441", + "Feb": "0.498", + "Mar": "0.641", + "Apr": "0.812", + "May": "0.895", + "Jun": "0.922", + "Jul": "0.906", + "Aug": "0.864", + "Sep": "0.766", + "Oct": "0.589", + "Nov": "0.497", + "Dec": "0.453", + "All-year": "0.734", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.434", + "Mar": "0.589", + "Apr": "0.784", + "May": "0.876", + "Jun": "0.910", + "Jul": "0.906", + "Aug": "0.845", + "Sep": "0.750", + "Oct": "0.548", + "Nov": "0.442", + "Dec": "0.401", + "All-year": "0.710", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.251", + "Feb": "0.314", + "Mar": "0.503", + "Apr": "0.727", + "May": "0.831", + "Jun": "0.876", + "Jul": "0.884", + "Aug": "0.802", + "Sep": "0.668", + "Oct": "0.419", + "Nov": "0.331", + "Dec": "0.271", + "All-year": "0.653", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.161", + "Feb": "0.244", + "Mar": "0.459", + "Apr": "0.692", + "May": "0.788", + "Jun": "0.826", + "Jul": "0.873", + "Aug": "0.781", + "Sep": "0.607", + "Oct": "0.298", + "Nov": "0.232", + "Dec": "0.234", + "All-year": "0.603", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.667", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.729", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.728", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.327", + "Feb": "0.287", + "Mar": "0.519", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.725", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.320", + "Feb": "0.280", + "Mar": "0.505", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.849", + "Aug": "0.827", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.723", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.293", + "Feb": "0.269", + "Mar": "0.474", + "Apr": "0.714", + "May": "0.847", + "Jun": "0.856", + "Jul": "0.839", + "Aug": "0.817", + "Sep": "0.665", + "Oct": "0.481", + "Nov": "0.406", + "Dec": "0.267", + "All-year": "0.709", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.235", + "Feb": "0.205", + "Mar": "0.445", + "Apr": "0.711", + "May": "0.798", + "Jun": "0.856", + "Jul": "0.837", + "Aug": "0.788", + "Sep": "0.617", + "Oct": "0.456", + "Nov": "0.318", + "Dec": "0.267", + "All-year": "0.677", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.103", + "Mar": "0.332", + "Apr": "0.621", + "May": "0.788", + "Jun": "0.815", + "Jul": "0.790", + "Aug": "0.765", + "Sep": "0.512", + "Oct": "0.294", + "Nov": "0.186", + "Dec": "0.087", + "All-year": "0.616", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.161", + "Apr": "0.536", + "May": "0.711", + "Jun": "0.710", + "Jul": "0.704", + "Aug": "0.671", + "Sep": "0.465", + "Oct": "0.148", + "Nov": "0.119", + "Dec": "0.000", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.673", + "Nov": "0.653", + "Dec": "0.592", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.558", + "Feb": "0.690", + "Mar": "0.748", + "Apr": "0.883", + "May": "0.931", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.913", + "Sep": "0.833", + "Oct": "0.672", + "Nov": "0.653", + "Dec": "0.591", + "All-year": "0.775", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.556", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.939", + "Jul": "0.964", + "Aug": "0.912", + "Sep": "0.828", + "Oct": "0.672", + "Nov": "0.651", + "Dec": "0.587", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.555", + "Feb": "0.690", + "Mar": "0.747", + "Apr": "0.883", + "May": "0.929", + "Jun": "0.936", + "Jul": "0.964", + "Aug": "0.911", + "Sep": "0.828", + "Oct": "0.668", + "Nov": "0.645", + "Dec": "0.585", + "All-year": "0.770", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.538", + "Feb": "0.673", + "Mar": "0.745", + "Apr": "0.872", + "May": "0.926", + "Jun": "0.933", + "Jul": "0.960", + "Aug": "0.907", + "Sep": "0.806", + "Oct": "0.653", + "Nov": "0.616", + "Dec": "0.578", + "All-year": "0.758", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.496", + "Feb": "0.636", + "Mar": "0.711", + "Apr": "0.843", + "May": "0.908", + "Jun": "0.931", + "Jul": "0.958", + "Aug": "0.899", + "Sep": "0.790", + "Oct": "0.612", + "Nov": "0.567", + "Dec": "0.532", + "All-year": "0.736", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.409", + "Feb": "0.563", + "Mar": "0.637", + "Apr": "0.814", + "May": "0.898", + "Jun": "0.917", + "Jul": "0.956", + "Aug": "0.868", + "Sep": "0.756", + "Oct": "0.548", + "Nov": "0.483", + "Dec": "0.411", + "All-year": "0.692", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.319", + "Feb": "0.530", + "Mar": "0.516", + "Apr": "0.760", + "May": "0.868", + "Jun": "0.895", + "Jul": "0.925", + "Aug": "0.854", + "Sep": "0.690", + "Oct": "0.450", + "Nov": "0.391", + "Dec": "0.332", + "All-year": "0.641", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.486", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.906", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.526", + "Dec": "0.491", + "All-year": "0.747", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.485", + "Feb": "0.507", + "Mar": "0.651", + "Apr": "0.817", + "May": "0.905", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.787", + "Oct": "0.614", + "Nov": "0.525", + "Dec": "0.491", + "All-year": "0.746", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.785", + "Oct": "0.614", + "Nov": "0.521", + "Dec": "0.487", + "All-year": "0.745", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.470", + "Feb": "0.498", + "Mar": "0.649", + "Apr": "0.815", + "May": "0.903", + "Jun": "0.922", + "Jul": "0.911", + "Aug": "0.864", + "Sep": "0.782", + "Oct": "0.614", + "Nov": "0.512", + "Dec": "0.476", + "All-year": "0.743", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.441", + "Feb": "0.498", + "Mar": "0.641", + "Apr": "0.812", + "May": "0.895", + "Jun": "0.922", + "Jul": "0.906", + "Aug": "0.864", + "Sep": "0.766", + "Oct": "0.589", + "Nov": "0.497", + "Dec": "0.453", + "All-year": "0.734", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.371", + "Feb": "0.434", + "Mar": "0.589", + "Apr": "0.784", + "May": "0.876", + "Jun": "0.910", + "Jul": "0.906", + "Aug": "0.845", + "Sep": "0.750", + "Oct": "0.548", + "Nov": "0.442", + "Dec": "0.401", + "All-year": "0.710", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.251", + "Feb": "0.314", + "Mar": "0.503", + "Apr": "0.727", + "May": "0.831", + "Jun": "0.876", + "Jul": "0.884", + "Aug": "0.802", + "Sep": "0.668", + "Oct": "0.419", + "Nov": "0.331", + "Dec": "0.271", + "All-year": "0.653", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.161", + "Feb": "0.244", + "Mar": "0.459", + "Apr": "0.692", + "May": "0.788", + "Jun": "0.826", + "Jul": "0.873", + "Aug": "0.781", + "Sep": "0.607", + "Oct": "0.298", + "Nov": "0.232", + "Dec": "0.234", + "All-year": "0.603", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.667", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.729", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.332", + "Feb": "0.302", + "Mar": "0.523", + "Apr": "0.719", + "May": "0.851", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.511", + "Nov": "0.429", + "Dec": "0.341", + "All-year": "0.728", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.327", + "Feb": "0.287", + "Mar": "0.519", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.856", + "Aug": "0.828", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.725", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.320", + "Feb": "0.280", + "Mar": "0.505", + "Apr": "0.719", + "May": "0.847", + "Jun": "0.876", + "Jul": "0.849", + "Aug": "0.827", + "Sep": "0.665", + "Oct": "0.508", + "Nov": "0.429", + "Dec": "0.328", + "All-year": "0.723", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.293", + "Feb": "0.269", + "Mar": "0.474", + "Apr": "0.714", + "May": "0.847", + "Jun": "0.856", + "Jul": "0.839", + "Aug": "0.817", + "Sep": "0.665", + "Oct": "0.481", + "Nov": "0.406", + "Dec": "0.267", + "All-year": "0.709", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.235", + "Feb": "0.205", + "Mar": "0.445", + "Apr": "0.711", + "May": "0.798", + "Jun": "0.856", + "Jul": "0.837", + "Aug": "0.788", + "Sep": "0.617", + "Oct": "0.456", + "Nov": "0.318", + "Dec": "0.267", + "All-year": "0.677", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.103", + "Mar": "0.332", + "Apr": "0.621", + "May": "0.788", + "Jun": "0.815", + "Jul": "0.790", + "Aug": "0.765", + "Sep": "0.512", + "Oct": "0.294", + "Nov": "0.186", + "Dec": "0.087", + "All-year": "0.616", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.161", + "Apr": "0.536", + "May": "0.711", + "Jun": "0.710", + "Jul": "0.704", + "Aug": "0.671", + "Sep": "0.465", + "Oct": "0.148", + "Nov": "0.119", + "Dec": "0.000", + "All-year": "0.567", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.25 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.017", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.100", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.023", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.212", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.179", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.286", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.212", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.177", + "Nov": "0.174", + "Dec": "0.173", + "All-year": "0.283", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.201", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.169", + "Dec": "0.168", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.191", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.359", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.152", + "Dec": "0.155", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.227", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.348", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.118", + "Nov": "0.122", + "Dec": "0.104", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.345", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.115", + "Nov": "0.122", + "Dec": "0.104", + "All-year": "0.266", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.330", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.114", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.254", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.316", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.085", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.069", + "Mar": "0.125", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.211", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.067", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.129", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.242", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.129", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.124", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.065", + "Dec": "0.069", + "All-year": "0.235", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.232", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.279", + "Feb": "0.393", + "Mar": "0.420", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.630", + "Sep": "0.529", + "Oct": "0.342", + "Nov": "0.322", + "Dec": "0.315", + "All-year": "0.482", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.276", + "Feb": "0.391", + "Mar": "0.420", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.698", + "Aug": "0.629", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.318", + "Dec": "0.311", + "All-year": "0.479", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.272", + "Feb": "0.381", + "Mar": "0.405", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.669", + "Jul": "0.687", + "Aug": "0.625", + "Sep": "0.519", + "Oct": "0.321", + "Nov": "0.310", + "Dec": "0.291", + "All-year": "0.469", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.373", + "Mar": "0.396", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.685", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.310", + "Nov": "0.304", + "Dec": "0.284", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.224", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.654", + "Aug": "0.586", + "Sep": "0.483", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.250", + "All-year": "0.430", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.192", + "Feb": "0.249", + "Mar": "0.337", + "Apr": "0.480", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.195", + "Feb": "0.228", + "Mar": "0.370", + "Apr": "0.527", + "May": "0.541", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.281", + "Nov": "0.241", + "Dec": "0.232", + "All-year": "0.466", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.194", + "Feb": "0.227", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.539", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.278", + "Nov": "0.238", + "Dec": "0.231", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.189", + "Feb": "0.220", + "Mar": "0.351", + "Apr": "0.513", + "May": "0.529", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.561", + "Sep": "0.440", + "Oct": "0.271", + "Nov": "0.230", + "Dec": "0.224", + "All-year": "0.452", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.208", + "Mar": "0.343", + "Apr": "0.506", + "May": "0.524", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.212", + "All-year": "0.447", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.152", + "Feb": "0.179", + "Mar": "0.295", + "Apr": "0.472", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.166", + "All-year": "0.413", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.314", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.112", + "All-year": "0.355", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.133", + "Feb": "0.159", + "Mar": "0.254", + "Apr": "0.471", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.499", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.227", + "Nov": "0.174", + "Dec": "0.137", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.133", + "Feb": "0.157", + "Mar": "0.254", + "Apr": "0.468", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.496", + "Aug": "0.503", + "Sep": "0.335", + "Oct": "0.219", + "Nov": "0.172", + "Dec": "0.134", + "All-year": "0.441", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.136", + "Mar": "0.243", + "Apr": "0.463", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.487", + "Sep": "0.328", + "Oct": "0.207", + "Nov": "0.164", + "Dec": "0.130", + "All-year": "0.432", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.474", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.137", + "Dec": "0.130", + "All-year": "0.424", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.101", + "Mar": "0.185", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.149", + "Nov": "0.107", + "Dec": "0.106", + "All-year": "0.389", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.109", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.316", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.193", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.468", + "Mar": "0.529", + "Apr": "0.665", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.813", + "Aug": "0.741", + "Sep": "0.630", + "Oct": "0.433", + "Nov": "0.406", + "Dec": "0.394", + "All-year": "0.578", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.356", + "Feb": "0.468", + "Mar": "0.529", + "Apr": "0.663", + "May": "0.724", + "Jun": "0.797", + "Jul": "0.811", + "Aug": "0.740", + "Sep": "0.626", + "Oct": "0.433", + "Nov": "0.406", + "Dec": "0.390", + "All-year": "0.577", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.467", + "Mar": "0.525", + "Apr": "0.658", + "May": "0.720", + "Jun": "0.792", + "Jul": "0.806", + "Aug": "0.731", + "Sep": "0.617", + "Oct": "0.423", + "Nov": "0.392", + "Dec": "0.388", + "All-year": "0.570", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.463", + "Mar": "0.520", + "Apr": "0.653", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.720", + "Sep": "0.610", + "Oct": "0.410", + "Nov": "0.383", + "Dec": "0.375", + "All-year": "0.564", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.315", + "Feb": "0.424", + "Mar": "0.487", + "Apr": "0.624", + "May": "0.695", + "Jun": "0.772", + "Jul": "0.778", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.380", + "Nov": "0.343", + "Dec": "0.327", + "All-year": "0.535", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.362", + "Mar": "0.429", + "Apr": "0.596", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.739", + "Aug": "0.649", + "Sep": "0.524", + "Oct": "0.319", + "Nov": "0.256", + "Dec": "0.257", + "All-year": "0.480", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.225", + "Mar": "0.330", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.153", + "All-year": "0.380", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.360", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.339", + "Mar": "0.457", + "Apr": "0.626", + "May": "0.675", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.663", + "Sep": "0.535", + "Oct": "0.383", + "Nov": "0.333", + "Dec": "0.296", + "All-year": "0.560", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.339", + "Mar": "0.454", + "Apr": "0.626", + "May": "0.672", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.531", + "Oct": "0.380", + "Nov": "0.331", + "Dec": "0.296", + "All-year": "0.558", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.320", + "Mar": "0.452", + "Apr": "0.617", + "May": "0.656", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.653", + "Sep": "0.520", + "Oct": "0.372", + "Nov": "0.319", + "Dec": "0.292", + "All-year": "0.550", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.252", + "Feb": "0.320", + "Mar": "0.449", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.650", + "Sep": "0.510", + "Oct": "0.353", + "Nov": "0.308", + "Dec": "0.286", + "All-year": "0.546", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.231", + "Feb": "0.281", + "Mar": "0.425", + "Apr": "0.583", + "May": "0.617", + "Jun": "0.713", + "Jul": "0.719", + "Aug": "0.625", + "Sep": "0.484", + "Oct": "0.323", + "Nov": "0.281", + "Dec": "0.255", + "All-year": "0.519", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.128", + "Feb": "0.249", + "Mar": "0.366", + "Apr": "0.525", + "May": "0.560", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.183", + "Dec": "0.158", + "All-year": "0.460", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.068", + "Feb": "0.120", + "Mar": "0.249", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.000", + "All-year": "0.360", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.105", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.273", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.181", + "Feb": "0.207", + "Mar": "0.348", + "Apr": "0.590", + "May": "0.601", + "Jun": "0.657", + "Jul": "0.647", + "Aug": "0.618", + "Sep": "0.428", + "Oct": "0.282", + "Nov": "0.243", + "Dec": "0.185", + "All-year": "0.537", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.181", + "Feb": "0.205", + "Mar": "0.345", + "Apr": "0.590", + "May": "0.598", + "Jun": "0.654", + "Jul": "0.647", + "Aug": "0.614", + "Sep": "0.424", + "Oct": "0.278", + "Nov": "0.242", + "Dec": "0.183", + "All-year": "0.533", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.177", + "Feb": "0.201", + "Mar": "0.335", + "Apr": "0.572", + "May": "0.582", + "Jun": "0.650", + "Jul": "0.632", + "Aug": "0.608", + "Sep": "0.412", + "Oct": "0.272", + "Nov": "0.229", + "Dec": "0.172", + "All-year": "0.525", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.163", + "Feb": "0.201", + "Mar": "0.335", + "Apr": "0.572", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.625", + "Aug": "0.602", + "Sep": "0.406", + "Oct": "0.265", + "Nov": "0.215", + "Dec": "0.165", + "All-year": "0.521", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.289", + "Apr": "0.560", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.599", + "Aug": "0.542", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.185", + "Dec": "0.129", + "All-year": "0.500", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.091", + "Mar": "0.196", + "Apr": "0.453", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.122", + "Nov": "0.057", + "Dec": "0.048", + "All-year": "0.443", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.099", + "Apr": "0.286", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.333", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.329", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.240", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.435", + "Feb": "0.549", + "Mar": "0.631", + "Apr": "0.760", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.886", + "Aug": "0.826", + "Sep": "0.707", + "Oct": "0.541", + "Nov": "0.497", + "Dec": "0.472", + "All-year": "0.667", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.433", + "Feb": "0.546", + "Mar": "0.631", + "Apr": "0.758", + "May": "0.820", + "Jun": "0.883", + "Jul": "0.885", + "Aug": "0.824", + "Sep": "0.705", + "Oct": "0.534", + "Nov": "0.495", + "Dec": "0.468", + "All-year": "0.665", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.424", + "Feb": "0.539", + "Mar": "0.618", + "Apr": "0.749", + "May": "0.818", + "Jun": "0.874", + "Jul": "0.882", + "Aug": "0.823", + "Sep": "0.703", + "Oct": "0.517", + "Nov": "0.490", + "Dec": "0.466", + "All-year": "0.656", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.419", + "Feb": "0.535", + "Mar": "0.617", + "Apr": "0.746", + "May": "0.815", + "Jun": "0.869", + "Jul": "0.878", + "Aug": "0.812", + "Sep": "0.692", + "Oct": "0.507", + "Nov": "0.482", + "Dec": "0.452", + "All-year": "0.652", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.392", + "Feb": "0.504", + "Mar": "0.595", + "Apr": "0.728", + "May": "0.803", + "Jun": "0.862", + "Jul": "0.860", + "Aug": "0.804", + "Sep": "0.667", + "Oct": "0.483", + "Nov": "0.448", + "Dec": "0.425", + "All-year": "0.630", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.346", + "Feb": "0.455", + "Mar": "0.552", + "Apr": "0.692", + "May": "0.751", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.774", + "Sep": "0.633", + "Oct": "0.393", + "Nov": "0.383", + "Dec": "0.367", + "All-year": "0.581", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.222", + "Feb": "0.324", + "Mar": "0.400", + "Apr": "0.615", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.796", + "Aug": "0.700", + "Sep": "0.526", + "Oct": "0.302", + "Nov": "0.232", + "Dec": "0.226", + "All-year": "0.488", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.530", + "May": "0.544", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.414", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.363", + "Feb": "0.413", + "Mar": "0.527", + "Apr": "0.726", + "May": "0.777", + "Jun": "0.842", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.639", + "Oct": "0.465", + "Nov": "0.433", + "Dec": "0.372", + "All-year": "0.645", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.413", + "Mar": "0.526", + "Apr": "0.724", + "May": "0.776", + "Jun": "0.842", + "Jul": "0.845", + "Aug": "0.767", + "Sep": "0.638", + "Oct": "0.461", + "Nov": "0.431", + "Dec": "0.368", + "All-year": "0.643", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.398", + "Mar": "0.521", + "Apr": "0.710", + "May": "0.767", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.763", + "Sep": "0.631", + "Oct": "0.455", + "Nov": "0.419", + "Dec": "0.360", + "All-year": "0.634", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.394", + "Mar": "0.517", + "Apr": "0.710", + "May": "0.759", + "Jun": "0.829", + "Jul": "0.837", + "Aug": "0.755", + "Sep": "0.628", + "Oct": "0.447", + "Nov": "0.414", + "Dec": "0.353", + "All-year": "0.629", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.291", + "Feb": "0.364", + "Mar": "0.490", + "Apr": "0.699", + "May": "0.748", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.750", + "Sep": "0.599", + "Oct": "0.413", + "Nov": "0.385", + "Dec": "0.322", + "All-year": "0.609", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.300", + "Mar": "0.439", + "Apr": "0.651", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.782", + "Aug": "0.683", + "Sep": "0.551", + "Oct": "0.325", + "Nov": "0.265", + "Dec": "0.235", + "All-year": "0.548", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.095", + "Feb": "0.170", + "Mar": "0.311", + "Apr": "0.545", + "May": "0.593", + "Jun": "0.683", + "Jul": "0.710", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.178", + "Nov": "0.140", + "Dec": "0.122", + "All-year": "0.467", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.109", + "Mar": "0.206", + "Apr": "0.431", + "May": "0.450", + "Jun": "0.580", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.382", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.275", + "Mar": "0.433", + "Apr": "0.683", + "May": "0.722", + "Jun": "0.794", + "Jul": "0.757", + "Aug": "0.703", + "Sep": "0.550", + "Oct": "0.372", + "Nov": "0.303", + "Dec": "0.246", + "All-year": "0.620", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.275", + "Mar": "0.433", + "Apr": "0.682", + "May": "0.714", + "Jun": "0.794", + "Jul": "0.754", + "Aug": "0.702", + "Sep": "0.549", + "Oct": "0.368", + "Nov": "0.301", + "Dec": "0.243", + "All-year": "0.618", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.228", + "Feb": "0.260", + "Mar": "0.417", + "Apr": "0.678", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.745", + "Aug": "0.699", + "Sep": "0.540", + "Oct": "0.363", + "Nov": "0.282", + "Dec": "0.227", + "All-year": "0.610", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.228", + "Feb": "0.260", + "Mar": "0.410", + "Apr": "0.664", + "May": "0.706", + "Jun": "0.767", + "Jul": "0.745", + "Aug": "0.685", + "Sep": "0.529", + "Oct": "0.358", + "Nov": "0.275", + "Dec": "0.214", + "All-year": "0.604", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.223", + "Mar": "0.382", + "Apr": "0.629", + "May": "0.703", + "Jun": "0.757", + "Jul": "0.733", + "Aug": "0.652", + "Sep": "0.492", + "Oct": "0.305", + "Nov": "0.206", + "Dec": "0.188", + "All-year": "0.579", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.103", + "Feb": "0.167", + "Mar": "0.254", + "Apr": "0.592", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.667", + "Aug": "0.591", + "Sep": "0.446", + "Oct": "0.210", + "Nov": "0.151", + "Dec": "0.112", + "All-year": "0.529", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.144", + "Apr": "0.451", + "May": "0.433", + "Jun": "0.560", + "Jul": "0.472", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.136", + "Nov": "0.067", + "Dec": "0.000", + "All-year": "0.443", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.483", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.524", + "Feb": "0.631", + "Mar": "0.719", + "Apr": "0.843", + "May": "0.892", + "Jun": "0.922", + "Jul": "0.941", + "Aug": "0.888", + "Sep": "0.778", + "Oct": "0.630", + "Nov": "0.618", + "Dec": "0.557", + "All-year": "0.737", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.522", + "Feb": "0.629", + "Mar": "0.716", + "Apr": "0.843", + "May": "0.888", + "Jun": "0.921", + "Jul": "0.940", + "Aug": "0.886", + "Sep": "0.776", + "Oct": "0.628", + "Nov": "0.615", + "Dec": "0.554", + "All-year": "0.734", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.513", + "Feb": "0.626", + "Mar": "0.708", + "Apr": "0.831", + "May": "0.884", + "Jun": "0.917", + "Jul": "0.938", + "Aug": "0.884", + "Sep": "0.771", + "Oct": "0.619", + "Nov": "0.599", + "Dec": "0.543", + "All-year": "0.727", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.503", + "Feb": "0.619", + "Mar": "0.708", + "Apr": "0.831", + "May": "0.882", + "Jun": "0.917", + "Jul": "0.935", + "Aug": "0.884", + "Sep": "0.771", + "Oct": "0.616", + "Nov": "0.592", + "Dec": "0.533", + "All-year": "0.725", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.477", + "Feb": "0.602", + "Mar": "0.683", + "Apr": "0.813", + "May": "0.873", + "Jun": "0.914", + "Jul": "0.927", + "Aug": "0.877", + "Sep": "0.753", + "Oct": "0.590", + "Nov": "0.560", + "Dec": "0.501", + "All-year": "0.707", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.425", + "Feb": "0.566", + "Mar": "0.650", + "Apr": "0.778", + "May": "0.853", + "Jun": "0.909", + "Jul": "0.910", + "Aug": "0.841", + "Sep": "0.715", + "Oct": "0.554", + "Nov": "0.487", + "Dec": "0.445", + "All-year": "0.672", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.324", + "Feb": "0.456", + "Mar": "0.522", + "Apr": "0.726", + "May": "0.805", + "Jun": "0.876", + "Jul": "0.895", + "Aug": "0.791", + "Sep": "0.637", + "Oct": "0.423", + "Nov": "0.346", + "Dec": "0.321", + "All-year": "0.597", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.235", + "Feb": "0.348", + "Mar": "0.413", + "Apr": "0.653", + "May": "0.724", + "Jun": "0.846", + "Jul": "0.839", + "Aug": "0.773", + "Sep": "0.537", + "Oct": "0.308", + "Nov": "0.274", + "Dec": "0.260", + "All-year": "0.533", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.455", + "Feb": "0.500", + "Mar": "0.628", + "Apr": "0.793", + "May": "0.856", + "Jun": "0.899", + "Jul": "0.910", + "Aug": "0.830", + "Sep": "0.742", + "Oct": "0.567", + "Nov": "0.512", + "Dec": "0.452", + "All-year": "0.715", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.454", + "Feb": "0.500", + "Mar": "0.627", + "Apr": "0.793", + "May": "0.854", + "Jun": "0.899", + "Jul": "0.910", + "Aug": "0.827", + "Sep": "0.741", + "Oct": "0.560", + "Nov": "0.508", + "Dec": "0.452", + "All-year": "0.714", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.434", + "Feb": "0.490", + "Mar": "0.621", + "Apr": "0.787", + "May": "0.847", + "Jun": "0.898", + "Jul": "0.907", + "Aug": "0.827", + "Sep": "0.733", + "Oct": "0.542", + "Nov": "0.494", + "Dec": "0.449", + "All-year": "0.707", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.434", + "Feb": "0.474", + "Mar": "0.618", + "Apr": "0.781", + "May": "0.845", + "Jun": "0.894", + "Jul": "0.905", + "Aug": "0.821", + "Sep": "0.720", + "Oct": "0.540", + "Nov": "0.492", + "Dec": "0.427", + "All-year": "0.703", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.405", + "Feb": "0.442", + "Mar": "0.577", + "Apr": "0.771", + "May": "0.831", + "Jun": "0.887", + "Jul": "0.899", + "Aug": "0.816", + "Sep": "0.697", + "Oct": "0.502", + "Nov": "0.450", + "Dec": "0.391", + "All-year": "0.686", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.317", + "Feb": "0.350", + "Mar": "0.522", + "Apr": "0.731", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.871", + "Aug": "0.776", + "Sep": "0.637", + "Oct": "0.427", + "Nov": "0.378", + "Dec": "0.305", + "All-year": "0.636", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.263", + "Mar": "0.444", + "Apr": "0.653", + "May": "0.736", + "Jun": "0.806", + "Jul": "0.819", + "Aug": "0.703", + "Sep": "0.501", + "Oct": "0.274", + "Nov": "0.249", + "Dec": "0.225", + "All-year": "0.560", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.101", + "Feb": "0.140", + "Mar": "0.353", + "Apr": "0.559", + "May": "0.601", + "Jun": "0.763", + "Jul": "0.722", + "Aug": "0.594", + "Sep": "0.437", + "Oct": "0.190", + "Nov": "0.160", + "Dec": "0.117", + "All-year": "0.503", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.319", + "Feb": "0.310", + "Mar": "0.527", + "Apr": "0.738", + "May": "0.813", + "Jun": "0.847", + "Jul": "0.836", + "Aug": "0.786", + "Sep": "0.636", + "Oct": "0.449", + "Nov": "0.381", + "Dec": "0.320", + "All-year": "0.691", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.319", + "Feb": "0.307", + "Mar": "0.527", + "Apr": "0.735", + "May": "0.813", + "Jun": "0.844", + "Jul": "0.833", + "Aug": "0.786", + "Sep": "0.635", + "Oct": "0.445", + "Nov": "0.379", + "Dec": "0.319", + "All-year": "0.688", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.310", + "Feb": "0.289", + "Mar": "0.511", + "Apr": "0.729", + "May": "0.805", + "Jun": "0.840", + "Jul": "0.829", + "Aug": "0.781", + "Sep": "0.631", + "Oct": "0.435", + "Nov": "0.374", + "Dec": "0.319", + "All-year": "0.682", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.304", + "Feb": "0.280", + "Mar": "0.504", + "Apr": "0.729", + "May": "0.805", + "Jun": "0.833", + "Jul": "0.823", + "Aug": "0.780", + "Sep": "0.612", + "Oct": "0.430", + "Nov": "0.362", + "Dec": "0.296", + "All-year": "0.677", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.247", + "Feb": "0.249", + "Mar": "0.474", + "Apr": "0.715", + "May": "0.784", + "Jun": "0.833", + "Jul": "0.823", + "Aug": "0.759", + "Sep": "0.585", + "Oct": "0.394", + "Nov": "0.306", + "Dec": "0.245", + "All-year": "0.659", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.167", + "Feb": "0.181", + "Mar": "0.298", + "Apr": "0.689", + "May": "0.742", + "Jun": "0.801", + "Jul": "0.772", + "Aug": "0.702", + "Sep": "0.543", + "Oct": "0.317", + "Nov": "0.206", + "Dec": "0.183", + "All-year": "0.613", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.074", + "Feb": "0.099", + "Mar": "0.227", + "Apr": "0.550", + "May": "0.609", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.536", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.112", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.099", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.475", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.591", + "Feb": "0.713", + "Mar": "0.777", + "Apr": "0.903", + "May": "0.933", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.920", + "Sep": "0.840", + "Oct": "0.702", + "Nov": "0.692", + "Dec": "0.622", + "All-year": "0.791", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.589", + "Feb": "0.713", + "Mar": "0.777", + "Apr": "0.902", + "May": "0.931", + "Jun": "0.949", + "Jul": "0.970", + "Aug": "0.919", + "Sep": "0.840", + "Oct": "0.698", + "Nov": "0.690", + "Dec": "0.618", + "All-year": "0.789", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.585", + "Feb": "0.700", + "Mar": "0.771", + "Apr": "0.894", + "May": "0.931", + "Jun": "0.944", + "Jul": "0.970", + "Aug": "0.915", + "Sep": "0.837", + "Oct": "0.692", + "Nov": "0.687", + "Dec": "0.612", + "All-year": "0.784", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.581", + "Feb": "0.700", + "Mar": "0.764", + "Apr": "0.894", + "May": "0.931", + "Jun": "0.944", + "Jul": "0.970", + "Aug": "0.915", + "Sep": "0.836", + "Oct": "0.692", + "Nov": "0.676", + "Dec": "0.612", + "All-year": "0.781", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.550", + "Feb": "0.686", + "Mar": "0.747", + "Apr": "0.889", + "May": "0.927", + "Jun": "0.944", + "Jul": "0.968", + "Aug": "0.914", + "Sep": "0.815", + "Oct": "0.661", + "Nov": "0.646", + "Dec": "0.597", + "All-year": "0.766", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.493", + "Feb": "0.645", + "Mar": "0.708", + "Apr": "0.861", + "May": "0.913", + "Jun": "0.934", + "Jul": "0.958", + "Aug": "0.888", + "Sep": "0.787", + "Oct": "0.621", + "Nov": "0.586", + "Dec": "0.538", + "All-year": "0.742", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.429", + "Feb": "0.550", + "Mar": "0.634", + "Apr": "0.813", + "May": "0.886", + "Jun": "0.917", + "Jul": "0.950", + "Aug": "0.864", + "Sep": "0.730", + "Oct": "0.542", + "Nov": "0.483", + "Dec": "0.401", + "All-year": "0.683", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.294", + "Feb": "0.477", + "Mar": "0.587", + "Apr": "0.778", + "May": "0.867", + "Jun": "0.897", + "Jul": "0.931", + "Aug": "0.861", + "Sep": "0.666", + "Oct": "0.388", + "Nov": "0.404", + "Dec": "0.310", + "All-year": "0.627", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.528", + "Feb": "0.564", + "Mar": "0.688", + "Apr": "0.827", + "May": "0.909", + "Jun": "0.928", + "Jul": "0.932", + "Aug": "0.884", + "Sep": "0.794", + "Oct": "0.628", + "Nov": "0.574", + "Dec": "0.497", + "All-year": "0.765", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.528", + "Feb": "0.562", + "Mar": "0.687", + "Apr": "0.827", + "May": "0.907", + "Jun": "0.928", + "Jul": "0.932", + "Aug": "0.884", + "Sep": "0.793", + "Oct": "0.628", + "Nov": "0.573", + "Dec": "0.497", + "All-year": "0.765", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.518", + "Feb": "0.555", + "Mar": "0.687", + "Apr": "0.826", + "May": "0.901", + "Jun": "0.926", + "Jul": "0.931", + "Aug": "0.878", + "Sep": "0.787", + "Oct": "0.621", + "Nov": "0.563", + "Dec": "0.495", + "All-year": "0.761", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.515", + "Feb": "0.551", + "Mar": "0.687", + "Apr": "0.823", + "May": "0.899", + "Jun": "0.926", + "Jul": "0.931", + "Aug": "0.876", + "Sep": "0.786", + "Oct": "0.616", + "Nov": "0.554", + "Dec": "0.486", + "All-year": "0.758", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.540", + "Mar": "0.664", + "Apr": "0.821", + "May": "0.892", + "Jun": "0.922", + "Jul": "0.931", + "Aug": "0.864", + "Sep": "0.776", + "Oct": "0.597", + "Nov": "0.516", + "Dec": "0.464", + "All-year": "0.748", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.372", + "Feb": "0.486", + "Mar": "0.621", + "Apr": "0.801", + "May": "0.874", + "Jun": "0.910", + "Jul": "0.916", + "Aug": "0.852", + "Sep": "0.731", + "Oct": "0.517", + "Nov": "0.444", + "Dec": "0.403", + "All-year": "0.711", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.320", + "Mar": "0.514", + "Apr": "0.745", + "May": "0.819", + "Jun": "0.875", + "Jul": "0.904", + "Aug": "0.785", + "Sep": "0.661", + "Oct": "0.386", + "Nov": "0.341", + "Dec": "0.276", + "All-year": "0.650", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.176", + "Feb": "0.227", + "Mar": "0.417", + "Apr": "0.672", + "May": "0.757", + "Jun": "0.851", + "Jul": "0.845", + "Aug": "0.754", + "Sep": "0.531", + "Oct": "0.296", + "Nov": "0.242", + "Dec": "0.196", + "All-year": "0.595", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.367", + "Feb": "0.366", + "Mar": "0.550", + "Apr": "0.775", + "May": "0.864", + "Jun": "0.896", + "Jul": "0.871", + "Aug": "0.837", + "Sep": "0.690", + "Oct": "0.536", + "Nov": "0.460", + "Dec": "0.384", + "All-year": "0.751", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.360", + "Mar": "0.550", + "Apr": "0.772", + "May": "0.862", + "Jun": "0.896", + "Jul": "0.871", + "Aug": "0.837", + "Sep": "0.690", + "Oct": "0.536", + "Nov": "0.457", + "Dec": "0.379", + "All-year": "0.750", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.338", + "Mar": "0.544", + "Apr": "0.764", + "May": "0.862", + "Jun": "0.896", + "Jul": "0.871", + "Aug": "0.835", + "Sep": "0.683", + "Oct": "0.534", + "Nov": "0.450", + "Dec": "0.372", + "All-year": "0.746", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.351", + "Feb": "0.323", + "Mar": "0.538", + "Apr": "0.764", + "May": "0.862", + "Jun": "0.896", + "Jul": "0.871", + "Aug": "0.835", + "Sep": "0.676", + "Oct": "0.527", + "Nov": "0.443", + "Dec": "0.359", + "All-year": "0.743", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.327", + "Feb": "0.286", + "Mar": "0.499", + "Apr": "0.764", + "May": "0.847", + "Jun": "0.888", + "Jul": "0.851", + "Aug": "0.835", + "Sep": "0.667", + "Oct": "0.476", + "Nov": "0.400", + "Dec": "0.317", + "All-year": "0.726", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.251", + "Feb": "0.216", + "Mar": "0.453", + "Apr": "0.740", + "May": "0.816", + "Jun": "0.865", + "Jul": "0.831", + "Aug": "0.805", + "Sep": "0.622", + "Oct": "0.403", + "Nov": "0.297", + "Dec": "0.239", + "All-year": "0.687", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.109", + "Feb": "0.124", + "Mar": "0.363", + "Apr": "0.664", + "May": "0.747", + "Jun": "0.814", + "Jul": "0.808", + "Aug": "0.726", + "Sep": "0.518", + "Oct": "0.274", + "Nov": "0.128", + "Dec": "0.085", + "All-year": "0.608", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.103", + "Mar": "0.121", + "Apr": "0.542", + "May": "0.638", + "Jun": "0.797", + "Jul": "0.687", + "Aug": "0.651", + "Sep": "0.418", + "Oct": "0.145", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.561", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.965", + "Jul": "0.980", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.965", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.654", + "Feb": "0.757", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.757", + "Nov": "0.741", + "Dec": "0.680", + "All-year": "0.826", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.757", + "Mar": "0.814", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.880", + "Oct": "0.757", + "Nov": "0.735", + "Dec": "0.673", + "All-year": "0.825", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.625", + "Feb": "0.750", + "Mar": "0.802", + "Apr": "0.921", + "May": "0.957", + "Jun": "0.960", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.867", + "Oct": "0.740", + "Nov": "0.709", + "Dec": "0.668", + "All-year": "0.816", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.579", + "Feb": "0.708", + "Mar": "0.767", + "Apr": "0.919", + "May": "0.955", + "Jun": "0.960", + "Jul": "0.976", + "Aug": "0.935", + "Sep": "0.844", + "Oct": "0.720", + "Nov": "0.670", + "Dec": "0.616", + "All-year": "0.798", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.477", + "Feb": "0.654", + "Mar": "0.690", + "Apr": "0.910", + "May": "0.947", + "Jun": "0.952", + "Jul": "0.975", + "Aug": "0.931", + "Sep": "0.796", + "Oct": "0.635", + "Nov": "0.583", + "Dec": "0.485", + "All-year": "0.763", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.421", + "Feb": "0.605", + "Mar": "0.615", + "Apr": "0.860", + "May": "0.939", + "Jun": "0.942", + "Jul": "0.961", + "Aug": "0.891", + "Sep": "0.767", + "Oct": "0.575", + "Nov": "0.507", + "Dec": "0.424", + "All-year": "0.717", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.574", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.607", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.574", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.606", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.570", + "Feb": "0.601", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.945", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.708", + "Nov": "0.600", + "Dec": "0.564", + "All-year": "0.800", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.570", + "Feb": "0.594", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.944", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.705", + "Nov": "0.592", + "Dec": "0.559", + "All-year": "0.798", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.546", + "Feb": "0.593", + "Mar": "0.708", + "Apr": "0.855", + "May": "0.940", + "Jun": "0.940", + "Jul": "0.934", + "Aug": "0.901", + "Sep": "0.825", + "Oct": "0.692", + "Nov": "0.571", + "Dec": "0.532", + "All-year": "0.788", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.495", + "Feb": "0.533", + "Mar": "0.673", + "Apr": "0.833", + "May": "0.923", + "Jun": "0.939", + "Jul": "0.931", + "Aug": "0.890", + "Sep": "0.799", + "Oct": "0.645", + "Nov": "0.510", + "Dec": "0.485", + "All-year": "0.770", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.412", + "Mar": "0.615", + "Apr": "0.778", + "May": "0.912", + "Jun": "0.915", + "Jul": "0.921", + "Aug": "0.849", + "Sep": "0.759", + "Oct": "0.536", + "Nov": "0.419", + "Dec": "0.356", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.281", + "Feb": "0.341", + "Mar": "0.511", + "Apr": "0.766", + "May": "0.886", + "Jun": "0.893", + "Jul": "0.908", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.429", + "Nov": "0.309", + "Dec": "0.292", + "All-year": "0.678", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.786", + "May": "0.882", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.783", + "May": "0.882", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.407", + "Feb": "0.403", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.882", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.401", + "Feb": "0.381", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.882", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.864", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.449", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.378", + "Feb": "0.323", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.866", + "Jun": "0.931", + "Jul": "0.894", + "Aug": "0.852", + "Sep": "0.711", + "Oct": "0.570", + "Nov": "0.492", + "Dec": "0.394", + "All-year": "0.774", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.273", + "Feb": "0.297", + "Mar": "0.497", + "Apr": "0.776", + "May": "0.866", + "Jun": "0.910", + "Jul": "0.876", + "Aug": "0.847", + "Sep": "0.693", + "Oct": "0.507", + "Nov": "0.431", + "Dec": "0.305", + "All-year": "0.739", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.199", + "Feb": "0.197", + "Mar": "0.390", + "Apr": "0.731", + "May": "0.864", + "Jun": "0.885", + "Jul": "0.858", + "Aug": "0.804", + "Sep": "0.543", + "Oct": "0.372", + "Nov": "0.271", + "Dec": "0.172", + "All-year": "0.681", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.115", + "Mar": "0.285", + "Apr": "0.590", + "May": "0.840", + "Jun": "0.867", + "Jul": "0.844", + "Aug": "0.757", + "Sep": "0.543", + "Oct": "0.278", + "Nov": "0.204", + "Dec": "0.000", + "All-year": "0.633", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.959", + "Jun": "0.965", + "Jul": "0.980", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.959", + "Jun": "0.965", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.757", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.757", + "Nov": "0.741", + "Dec": "0.680", + "All-year": "0.826", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.757", + "Mar": "0.814", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.880", + "Oct": "0.757", + "Nov": "0.735", + "Dec": "0.673", + "All-year": "0.825", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.625", + "Feb": "0.750", + "Mar": "0.802", + "Apr": "0.921", + "May": "0.957", + "Jun": "0.960", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.867", + "Oct": "0.740", + "Nov": "0.709", + "Dec": "0.668", + "All-year": "0.816", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.579", + "Feb": "0.708", + "Mar": "0.767", + "Apr": "0.919", + "May": "0.955", + "Jun": "0.960", + "Jul": "0.976", + "Aug": "0.935", + "Sep": "0.844", + "Oct": "0.721", + "Nov": "0.670", + "Dec": "0.616", + "All-year": "0.798", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.477", + "Feb": "0.654", + "Mar": "0.690", + "Apr": "0.910", + "May": "0.947", + "Jun": "0.952", + "Jul": "0.975", + "Aug": "0.931", + "Sep": "0.796", + "Oct": "0.635", + "Nov": "0.583", + "Dec": "0.498", + "All-year": "0.763", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.421", + "Feb": "0.605", + "Mar": "0.615", + "Apr": "0.860", + "May": "0.939", + "Jun": "0.942", + "Jul": "0.961", + "Aug": "0.891", + "Sep": "0.767", + "Oct": "0.575", + "Nov": "0.507", + "Dec": "0.424", + "All-year": "0.720", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.575", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.607", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.575", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.606", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.571", + "Feb": "0.601", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.945", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.708", + "Nov": "0.600", + "Dec": "0.564", + "All-year": "0.801", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.571", + "Feb": "0.595", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.944", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.705", + "Nov": "0.592", + "Dec": "0.559", + "All-year": "0.798", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.594", + "Mar": "0.710", + "Apr": "0.855", + "May": "0.940", + "Jun": "0.940", + "Jul": "0.934", + "Aug": "0.901", + "Sep": "0.825", + "Oct": "0.692", + "Nov": "0.571", + "Dec": "0.532", + "All-year": "0.788", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.495", + "Feb": "0.533", + "Mar": "0.673", + "Apr": "0.833", + "May": "0.923", + "Jun": "0.939", + "Jul": "0.931", + "Aug": "0.890", + "Sep": "0.799", + "Oct": "0.646", + "Nov": "0.510", + "Dec": "0.485", + "All-year": "0.770", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.412", + "Mar": "0.617", + "Apr": "0.778", + "May": "0.912", + "Jun": "0.915", + "Jul": "0.921", + "Aug": "0.849", + "Sep": "0.759", + "Oct": "0.536", + "Nov": "0.419", + "Dec": "0.356", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.281", + "Feb": "0.341", + "Mar": "0.511", + "Apr": "0.766", + "May": "0.886", + "Jun": "0.893", + "Jul": "0.908", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.430", + "Nov": "0.309", + "Dec": "0.292", + "All-year": "0.679", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.786", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.783", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.407", + "Feb": "0.403", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.401", + "Feb": "0.381", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.864", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.449", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.378", + "Feb": "0.323", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.866", + "Jun": "0.931", + "Jul": "0.894", + "Aug": "0.852", + "Sep": "0.711", + "Oct": "0.570", + "Nov": "0.492", + "Dec": "0.394", + "All-year": "0.774", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.273", + "Feb": "0.297", + "Mar": "0.497", + "Apr": "0.776", + "May": "0.866", + "Jun": "0.910", + "Jul": "0.876", + "Aug": "0.847", + "Sep": "0.693", + "Oct": "0.507", + "Nov": "0.431", + "Dec": "0.305", + "All-year": "0.739", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.199", + "Feb": "0.197", + "Mar": "0.390", + "Apr": "0.731", + "May": "0.866", + "Jun": "0.885", + "Jul": "0.858", + "Aug": "0.804", + "Sep": "0.543", + "Oct": "0.372", + "Nov": "0.271", + "Dec": "0.172", + "All-year": "0.681", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.115", + "Mar": "0.285", + "Apr": "0.590", + "May": "0.840", + "Jun": "0.867", + "Jul": "0.844", + "Aug": "0.757", + "Sep": "0.543", + "Oct": "0.278", + "Nov": "0.204", + "Dec": "0.000", + "All-year": "0.633", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.959", + "Jun": "0.965", + "Jul": "0.980", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.759", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.959", + "Jun": "0.965", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.760", + "Nov": "0.742", + "Dec": "0.681", + "All-year": "0.828", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.655", + "Feb": "0.757", + "Mar": "0.815", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.937", + "Sep": "0.883", + "Oct": "0.757", + "Nov": "0.741", + "Dec": "0.680", + "All-year": "0.826", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.757", + "Mar": "0.814", + "Apr": "0.921", + "May": "0.958", + "Jun": "0.963", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.880", + "Oct": "0.757", + "Nov": "0.735", + "Dec": "0.673", + "All-year": "0.825", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.625", + "Feb": "0.750", + "Mar": "0.802", + "Apr": "0.921", + "May": "0.957", + "Jun": "0.960", + "Jul": "0.979", + "Aug": "0.935", + "Sep": "0.867", + "Oct": "0.740", + "Nov": "0.709", + "Dec": "0.668", + "All-year": "0.816", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.579", + "Feb": "0.708", + "Mar": "0.767", + "Apr": "0.919", + "May": "0.955", + "Jun": "0.960", + "Jul": "0.976", + "Aug": "0.935", + "Sep": "0.844", + "Oct": "0.721", + "Nov": "0.670", + "Dec": "0.616", + "All-year": "0.798", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.477", + "Feb": "0.654", + "Mar": "0.690", + "Apr": "0.910", + "May": "0.947", + "Jun": "0.952", + "Jul": "0.975", + "Aug": "0.931", + "Sep": "0.796", + "Oct": "0.635", + "Nov": "0.583", + "Dec": "0.498", + "All-year": "0.763", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.421", + "Feb": "0.605", + "Mar": "0.615", + "Apr": "0.860", + "May": "0.939", + "Jun": "0.942", + "Jul": "0.961", + "Aug": "0.891", + "Sep": "0.767", + "Oct": "0.575", + "Nov": "0.507", + "Dec": "0.424", + "All-year": "0.720", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.575", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.607", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.575", + "Feb": "0.607", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.947", + "Jun": "0.948", + "Jul": "0.934", + "Aug": "0.907", + "Sep": "0.833", + "Oct": "0.710", + "Nov": "0.606", + "Dec": "0.569", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.571", + "Feb": "0.601", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.945", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.708", + "Nov": "0.600", + "Dec": "0.564", + "All-year": "0.801", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.571", + "Feb": "0.595", + "Mar": "0.728", + "Apr": "0.860", + "May": "0.944", + "Jun": "0.946", + "Jul": "0.934", + "Aug": "0.906", + "Sep": "0.828", + "Oct": "0.705", + "Nov": "0.592", + "Dec": "0.559", + "All-year": "0.798", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.594", + "Mar": "0.710", + "Apr": "0.855", + "May": "0.940", + "Jun": "0.940", + "Jul": "0.934", + "Aug": "0.901", + "Sep": "0.825", + "Oct": "0.692", + "Nov": "0.571", + "Dec": "0.532", + "All-year": "0.788", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.495", + "Feb": "0.533", + "Mar": "0.673", + "Apr": "0.833", + "May": "0.923", + "Jun": "0.939", + "Jul": "0.931", + "Aug": "0.890", + "Sep": "0.799", + "Oct": "0.646", + "Nov": "0.510", + "Dec": "0.485", + "All-year": "0.770", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.412", + "Mar": "0.617", + "Apr": "0.778", + "May": "0.912", + "Jun": "0.915", + "Jul": "0.921", + "Aug": "0.849", + "Sep": "0.759", + "Oct": "0.536", + "Nov": "0.419", + "Dec": "0.356", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.281", + "Feb": "0.341", + "Mar": "0.511", + "Apr": "0.766", + "May": "0.886", + "Jun": "0.893", + "Jul": "0.908", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.430", + "Nov": "0.309", + "Dec": "0.292", + "All-year": "0.679", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.786", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.409", + "Mar": "0.606", + "Apr": "0.783", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.595", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.407", + "Feb": "0.403", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.871", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.461", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.401", + "Feb": "0.381", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.883", + "Jun": "0.931", + "Jul": "0.899", + "Aug": "0.864", + "Sep": "0.724", + "Oct": "0.589", + "Nov": "0.521", + "Dec": "0.449", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.378", + "Feb": "0.323", + "Mar": "0.606", + "Apr": "0.778", + "May": "0.866", + "Jun": "0.931", + "Jul": "0.894", + "Aug": "0.852", + "Sep": "0.711", + "Oct": "0.570", + "Nov": "0.492", + "Dec": "0.394", + "All-year": "0.774", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.273", + "Feb": "0.297", + "Mar": "0.497", + "Apr": "0.776", + "May": "0.866", + "Jun": "0.910", + "Jul": "0.876", + "Aug": "0.847", + "Sep": "0.693", + "Oct": "0.507", + "Nov": "0.431", + "Dec": "0.305", + "All-year": "0.739", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.199", + "Feb": "0.197", + "Mar": "0.390", + "Apr": "0.731", + "May": "0.866", + "Jun": "0.885", + "Jul": "0.858", + "Aug": "0.804", + "Sep": "0.543", + "Oct": "0.372", + "Nov": "0.271", + "Dec": "0.172", + "All-year": "0.681", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.114", + "Feb": "0.115", + "Mar": "0.285", + "Apr": "0.590", + "May": "0.840", + "Jun": "0.867", + "Jul": "0.844", + "Aug": "0.757", + "Sep": "0.543", + "Oct": "0.278", + "Nov": "0.204", + "Dec": "0.000", + "All-year": "0.633", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.019", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.100", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.024", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.213", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.181", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.286", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.213", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.179", + "Nov": "0.174", + "Dec": "0.173", + "All-year": "0.283", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.202", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.169", + "Dec": "0.168", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.192", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.360", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.152", + "Dec": "0.155", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.228", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.348", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.119", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.345", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.116", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.267", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.330", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.114", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.254", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.316", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.085", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.069", + "Mar": "0.128", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.211", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.071", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.130", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.245", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.073", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.130", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.128", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.065", + "Dec": "0.070", + "All-year": "0.236", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.284", + "Feb": "0.398", + "Mar": "0.423", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.631", + "Sep": "0.529", + "Oct": "0.343", + "Nov": "0.324", + "Dec": "0.317", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.282", + "Feb": "0.395", + "Mar": "0.422", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.699", + "Aug": "0.630", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.320", + "Dec": "0.312", + "All-year": "0.480", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.275", + "Feb": "0.386", + "Mar": "0.405", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.669", + "Jul": "0.688", + "Aug": "0.625", + "Sep": "0.519", + "Oct": "0.321", + "Nov": "0.311", + "Dec": "0.295", + "All-year": "0.470", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.271", + "Feb": "0.379", + "Mar": "0.397", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.686", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.312", + "Nov": "0.309", + "Dec": "0.285", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.235", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.655", + "Aug": "0.587", + "Sep": "0.483", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.255", + "All-year": "0.432", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.200", + "Feb": "0.249", + "Mar": "0.339", + "Apr": "0.481", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.196", + "Feb": "0.231", + "Mar": "0.370", + "Apr": "0.527", + "May": "0.544", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.282", + "Nov": "0.241", + "Dec": "0.233", + "All-year": "0.467", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.195", + "Feb": "0.230", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.542", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.279", + "Nov": "0.238", + "Dec": "0.232", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.190", + "Feb": "0.225", + "Mar": "0.353", + "Apr": "0.513", + "May": "0.529", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.561", + "Sep": "0.440", + "Oct": "0.271", + "Nov": "0.230", + "Dec": "0.226", + "All-year": "0.454", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.190", + "Feb": "0.213", + "Mar": "0.343", + "Apr": "0.506", + "May": "0.526", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.214", + "All-year": "0.448", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.182", + "Mar": "0.295", + "Apr": "0.472", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.166", + "All-year": "0.414", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.314", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.113", + "All-year": "0.355", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.136", + "Feb": "0.159", + "Mar": "0.255", + "Apr": "0.476", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.499", + "Aug": "0.505", + "Sep": "0.340", + "Oct": "0.227", + "Nov": "0.178", + "Dec": "0.140", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.136", + "Feb": "0.157", + "Mar": "0.255", + "Apr": "0.475", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.496", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.219", + "Nov": "0.176", + "Dec": "0.137", + "All-year": "0.442", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.117", + "Feb": "0.136", + "Mar": "0.243", + "Apr": "0.465", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.488", + "Sep": "0.331", + "Oct": "0.207", + "Nov": "0.167", + "Dec": "0.133", + "All-year": "0.432", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.109", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.476", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.142", + "Dec": "0.133", + "All-year": "0.424", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.101", + "Mar": "0.190", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.151", + "Nov": "0.125", + "Dec": "0.108", + "All-year": "0.390", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.133", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.193", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.470", + "Mar": "0.530", + "Apr": "0.667", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.813", + "Aug": "0.741", + "Sep": "0.633", + "Oct": "0.434", + "Nov": "0.415", + "Dec": "0.402", + "All-year": "0.580", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.359", + "Feb": "0.470", + "Mar": "0.529", + "Apr": "0.664", + "May": "0.724", + "Jun": "0.799", + "Jul": "0.811", + "Aug": "0.740", + "Sep": "0.629", + "Oct": "0.433", + "Nov": "0.415", + "Dec": "0.398", + "All-year": "0.579", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.345", + "Feb": "0.469", + "Mar": "0.525", + "Apr": "0.659", + "May": "0.720", + "Jun": "0.792", + "Jul": "0.806", + "Aug": "0.734", + "Sep": "0.619", + "Oct": "0.423", + "Nov": "0.400", + "Dec": "0.391", + "All-year": "0.571", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.465", + "Mar": "0.521", + "Apr": "0.655", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.611", + "Oct": "0.413", + "Nov": "0.388", + "Dec": "0.379", + "All-year": "0.566", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.322", + "Feb": "0.425", + "Mar": "0.487", + "Apr": "0.626", + "May": "0.695", + "Jun": "0.773", + "Jul": "0.778", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.381", + "Nov": "0.353", + "Dec": "0.327", + "All-year": "0.537", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.362", + "Mar": "0.432", + "Apr": "0.597", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.739", + "Aug": "0.652", + "Sep": "0.526", + "Oct": "0.319", + "Nov": "0.257", + "Dec": "0.259", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.226", + "Mar": "0.330", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.154", + "All-year": "0.382", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.363", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.268", + "Feb": "0.343", + "Mar": "0.471", + "Apr": "0.627", + "May": "0.676", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.663", + "Sep": "0.537", + "Oct": "0.387", + "Nov": "0.345", + "Dec": "0.300", + "All-year": "0.564", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.342", + "Mar": "0.470", + "Apr": "0.627", + "May": "0.675", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.533", + "Oct": "0.384", + "Nov": "0.343", + "Dec": "0.300", + "All-year": "0.561", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.325", + "Mar": "0.460", + "Apr": "0.619", + "May": "0.656", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.653", + "Sep": "0.520", + "Oct": "0.375", + "Nov": "0.334", + "Dec": "0.296", + "All-year": "0.553", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.325", + "Mar": "0.456", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.650", + "Sep": "0.512", + "Oct": "0.360", + "Nov": "0.319", + "Dec": "0.289", + "All-year": "0.549", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.282", + "Mar": "0.432", + "Apr": "0.586", + "May": "0.618", + "Jun": "0.713", + "Jul": "0.720", + "Aug": "0.626", + "Sep": "0.484", + "Oct": "0.326", + "Nov": "0.283", + "Dec": "0.259", + "All-year": "0.522", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.128", + "Feb": "0.250", + "Mar": "0.366", + "Apr": "0.526", + "May": "0.563", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.183", + "Dec": "0.171", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.069", + "Feb": "0.120", + "Mar": "0.257", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.033", + "All-year": "0.360", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.275", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.210", + "Mar": "0.349", + "Apr": "0.593", + "May": "0.601", + "Jun": "0.657", + "Jul": "0.649", + "Aug": "0.620", + "Sep": "0.431", + "Oct": "0.288", + "Nov": "0.249", + "Dec": "0.191", + "All-year": "0.540", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.210", + "Mar": "0.347", + "Apr": "0.593", + "May": "0.598", + "Jun": "0.654", + "Jul": "0.649", + "Aug": "0.618", + "Sep": "0.426", + "Oct": "0.281", + "Nov": "0.249", + "Dec": "0.188", + "All-year": "0.537", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.183", + "Feb": "0.202", + "Mar": "0.341", + "Apr": "0.575", + "May": "0.582", + "Jun": "0.650", + "Jul": "0.634", + "Aug": "0.612", + "Sep": "0.414", + "Oct": "0.276", + "Nov": "0.235", + "Dec": "0.177", + "All-year": "0.528", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.168", + "Feb": "0.202", + "Mar": "0.335", + "Apr": "0.575", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.628", + "Aug": "0.606", + "Sep": "0.408", + "Oct": "0.266", + "Nov": "0.215", + "Dec": "0.177", + "All-year": "0.523", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.296", + "Apr": "0.563", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.602", + "Aug": "0.552", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.189", + "Dec": "0.132", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.092", + "Mar": "0.200", + "Apr": "0.453", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.125", + "Nov": "0.057", + "Dec": "0.071", + "All-year": "0.444", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.286", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.335", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.332", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.241", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.440", + "Feb": "0.558", + "Mar": "0.636", + "Apr": "0.763", + "May": "0.822", + "Jun": "0.885", + "Jul": "0.886", + "Aug": "0.827", + "Sep": "0.708", + "Oct": "0.548", + "Nov": "0.502", + "Dec": "0.485", + "All-year": "0.672", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.436", + "Feb": "0.557", + "Mar": "0.636", + "Apr": "0.760", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.885", + "Aug": "0.826", + "Sep": "0.707", + "Oct": "0.540", + "Nov": "0.499", + "Dec": "0.479", + "All-year": "0.670", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.427", + "Feb": "0.550", + "Mar": "0.621", + "Apr": "0.756", + "May": "0.819", + "Jun": "0.874", + "Jul": "0.882", + "Aug": "0.825", + "Sep": "0.703", + "Oct": "0.519", + "Nov": "0.497", + "Dec": "0.472", + "All-year": "0.661", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.420", + "Feb": "0.542", + "Mar": "0.620", + "Apr": "0.756", + "May": "0.817", + "Jun": "0.870", + "Jul": "0.878", + "Aug": "0.817", + "Sep": "0.694", + "Oct": "0.507", + "Nov": "0.490", + "Dec": "0.458", + "All-year": "0.658", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.397", + "Feb": "0.508", + "Mar": "0.597", + "Apr": "0.729", + "May": "0.804", + "Jun": "0.867", + "Jul": "0.860", + "Aug": "0.814", + "Sep": "0.671", + "Oct": "0.483", + "Nov": "0.449", + "Dec": "0.433", + "All-year": "0.634", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.352", + "Feb": "0.460", + "Mar": "0.556", + "Apr": "0.696", + "May": "0.756", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.781", + "Sep": "0.642", + "Oct": "0.402", + "Nov": "0.385", + "Dec": "0.376", + "All-year": "0.584", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.223", + "Feb": "0.331", + "Mar": "0.403", + "Apr": "0.622", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.796", + "Aug": "0.717", + "Sep": "0.528", + "Oct": "0.302", + "Nov": "0.233", + "Dec": "0.226", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.533", + "May": "0.544", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.416", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.367", + "Feb": "0.425", + "Mar": "0.544", + "Apr": "0.728", + "May": "0.778", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.771", + "Sep": "0.642", + "Oct": "0.472", + "Nov": "0.442", + "Dec": "0.380", + "All-year": "0.650", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.425", + "Mar": "0.544", + "Apr": "0.726", + "May": "0.776", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.640", + "Oct": "0.468", + "Nov": "0.433", + "Dec": "0.376", + "All-year": "0.649", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.411", + "Mar": "0.536", + "Apr": "0.715", + "May": "0.769", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.766", + "Sep": "0.635", + "Oct": "0.460", + "Nov": "0.424", + "Dec": "0.364", + "All-year": "0.639", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.407", + "Mar": "0.530", + "Apr": "0.712", + "May": "0.760", + "Jun": "0.829", + "Jul": "0.837", + "Aug": "0.757", + "Sep": "0.628", + "Oct": "0.451", + "Nov": "0.417", + "Dec": "0.358", + "All-year": "0.635", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.297", + "Feb": "0.379", + "Mar": "0.504", + "Apr": "0.703", + "May": "0.751", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.753", + "Sep": "0.601", + "Oct": "0.419", + "Nov": "0.386", + "Dec": "0.325", + "All-year": "0.613", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.303", + "Mar": "0.444", + "Apr": "0.652", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.783", + "Aug": "0.687", + "Sep": "0.552", + "Oct": "0.333", + "Nov": "0.268", + "Dec": "0.238", + "All-year": "0.553", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.170", + "Mar": "0.312", + "Apr": "0.545", + "May": "0.594", + "Jun": "0.685", + "Jul": "0.710", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.180", + "Nov": "0.144", + "Dec": "0.122", + "All-year": "0.467", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.111", + "Mar": "0.208", + "Apr": "0.431", + "May": "0.450", + "Jun": "0.582", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.385", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.292", + "Mar": "0.441", + "Apr": "0.689", + "May": "0.722", + "Jun": "0.797", + "Jul": "0.761", + "Aug": "0.707", + "Sep": "0.558", + "Oct": "0.378", + "Nov": "0.306", + "Dec": "0.257", + "All-year": "0.624", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.292", + "Mar": "0.438", + "Apr": "0.686", + "May": "0.714", + "Jun": "0.794", + "Jul": "0.758", + "Aug": "0.706", + "Sep": "0.557", + "Oct": "0.374", + "Nov": "0.303", + "Dec": "0.254", + "All-year": "0.622", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.287", + "Mar": "0.430", + "Apr": "0.681", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.749", + "Aug": "0.703", + "Sep": "0.550", + "Oct": "0.364", + "Nov": "0.282", + "Dec": "0.245", + "All-year": "0.617", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.241", + "Feb": "0.271", + "Mar": "0.417", + "Apr": "0.667", + "May": "0.706", + "Jun": "0.772", + "Jul": "0.749", + "Aug": "0.685", + "Sep": "0.533", + "Oct": "0.359", + "Nov": "0.275", + "Dec": "0.234", + "All-year": "0.610", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.203", + "Feb": "0.230", + "Mar": "0.388", + "Apr": "0.640", + "May": "0.703", + "Jun": "0.760", + "Jul": "0.737", + "Aug": "0.652", + "Sep": "0.494", + "Oct": "0.316", + "Nov": "0.206", + "Dec": "0.194", + "All-year": "0.585", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.167", + "Mar": "0.258", + "Apr": "0.594", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.668", + "Aug": "0.591", + "Sep": "0.465", + "Oct": "0.231", + "Nov": "0.151", + "Dec": "0.136", + "All-year": "0.532", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.148", + "Apr": "0.454", + "May": "0.433", + "Jun": "0.564", + "Jul": "0.477", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.136", + "Nov": "0.068", + "Dec": "0.000", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.493", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.538", + "Feb": "0.646", + "Mar": "0.728", + "Apr": "0.853", + "May": "0.895", + "Jun": "0.925", + "Jul": "0.942", + "Aug": "0.892", + "Sep": "0.792", + "Oct": "0.640", + "Nov": "0.622", + "Dec": "0.573", + "All-year": "0.746", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.533", + "Feb": "0.646", + "Mar": "0.721", + "Apr": "0.850", + "May": "0.893", + "Jun": "0.924", + "Jul": "0.940", + "Aug": "0.889", + "Sep": "0.790", + "Oct": "0.639", + "Nov": "0.619", + "Dec": "0.569", + "All-year": "0.744", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.525", + "Feb": "0.642", + "Mar": "0.717", + "Apr": "0.837", + "May": "0.886", + "Jun": "0.919", + "Jul": "0.940", + "Aug": "0.888", + "Sep": "0.785", + "Oct": "0.629", + "Nov": "0.612", + "Dec": "0.556", + "All-year": "0.737", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.519", + "Feb": "0.638", + "Mar": "0.710", + "Apr": "0.837", + "May": "0.886", + "Jun": "0.919", + "Jul": "0.938", + "Aug": "0.887", + "Sep": "0.779", + "Oct": "0.620", + "Nov": "0.601", + "Dec": "0.547", + "All-year": "0.735", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.487", + "Feb": "0.607", + "Mar": "0.698", + "Apr": "0.822", + "May": "0.875", + "Jun": "0.917", + "Jul": "0.927", + "Aug": "0.881", + "Sep": "0.756", + "Oct": "0.596", + "Nov": "0.576", + "Dec": "0.530", + "All-year": "0.718", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.428", + "Feb": "0.579", + "Mar": "0.664", + "Apr": "0.780", + "May": "0.856", + "Jun": "0.911", + "Jul": "0.911", + "Aug": "0.856", + "Sep": "0.717", + "Oct": "0.561", + "Nov": "0.490", + "Dec": "0.448", + "All-year": "0.682", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.458", + "Mar": "0.531", + "Apr": "0.727", + "May": "0.806", + "Jun": "0.878", + "Jul": "0.896", + "Aug": "0.794", + "Sep": "0.637", + "Oct": "0.434", + "Nov": "0.358", + "Dec": "0.333", + "All-year": "0.601", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.353", + "Mar": "0.414", + "Apr": "0.672", + "May": "0.737", + "Jun": "0.857", + "Jul": "0.841", + "Aug": "0.773", + "Sep": "0.544", + "Oct": "0.312", + "Nov": "0.277", + "Dec": "0.261", + "All-year": "0.536", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.521", + "Mar": "0.641", + "Apr": "0.800", + "May": "0.860", + "Jun": "0.900", + "Jul": "0.913", + "Aug": "0.837", + "Sep": "0.747", + "Oct": "0.579", + "Nov": "0.521", + "Dec": "0.464", + "All-year": "0.723", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.462", + "Feb": "0.519", + "Mar": "0.641", + "Apr": "0.800", + "May": "0.856", + "Jun": "0.900", + "Jul": "0.913", + "Aug": "0.834", + "Sep": "0.746", + "Oct": "0.573", + "Nov": "0.517", + "Dec": "0.462", + "All-year": "0.722", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.448", + "Feb": "0.504", + "Mar": "0.631", + "Apr": "0.792", + "May": "0.853", + "Jun": "0.899", + "Jul": "0.910", + "Aug": "0.834", + "Sep": "0.737", + "Oct": "0.565", + "Nov": "0.508", + "Dec": "0.460", + "All-year": "0.716", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.443", + "Feb": "0.498", + "Mar": "0.630", + "Apr": "0.789", + "May": "0.847", + "Jun": "0.895", + "Jul": "0.905", + "Aug": "0.827", + "Sep": "0.724", + "Oct": "0.562", + "Nov": "0.504", + "Dec": "0.444", + "All-year": "0.713", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.414", + "Feb": "0.468", + "Mar": "0.583", + "Apr": "0.781", + "May": "0.834", + "Jun": "0.890", + "Jul": "0.902", + "Aug": "0.820", + "Sep": "0.700", + "Oct": "0.509", + "Nov": "0.464", + "Dec": "0.405", + "All-year": "0.696", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.329", + "Feb": "0.357", + "Mar": "0.542", + "Apr": "0.732", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.872", + "Aug": "0.793", + "Sep": "0.640", + "Oct": "0.433", + "Nov": "0.383", + "Dec": "0.336", + "All-year": "0.644", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.266", + "Mar": "0.449", + "Apr": "0.658", + "May": "0.738", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.725", + "Sep": "0.502", + "Oct": "0.276", + "Nov": "0.253", + "Dec": "0.226", + "All-year": "0.562", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.103", + "Feb": "0.141", + "Mar": "0.353", + "Apr": "0.565", + "May": "0.602", + "Jun": "0.763", + "Jul": "0.724", + "Aug": "0.601", + "Sep": "0.437", + "Oct": "0.190", + "Nov": "0.160", + "Dec": "0.117", + "All-year": "0.506", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.332", + "Mar": "0.543", + "Apr": "0.751", + "May": "0.817", + "Jun": "0.854", + "Jul": "0.841", + "Aug": "0.793", + "Sep": "0.644", + "Oct": "0.461", + "Nov": "0.393", + "Dec": "0.345", + "All-year": "0.699", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.335", + "Feb": "0.332", + "Mar": "0.542", + "Apr": "0.749", + "May": "0.817", + "Jun": "0.851", + "Jul": "0.839", + "Aug": "0.792", + "Sep": "0.644", + "Oct": "0.460", + "Nov": "0.387", + "Dec": "0.344", + "All-year": "0.696", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.323", + "Feb": "0.318", + "Mar": "0.538", + "Apr": "0.744", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.835", + "Aug": "0.789", + "Sep": "0.637", + "Oct": "0.446", + "Nov": "0.379", + "Dec": "0.341", + "All-year": "0.690", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.316", + "Feb": "0.301", + "Mar": "0.524", + "Apr": "0.743", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.828", + "Aug": "0.784", + "Sep": "0.621", + "Oct": "0.434", + "Nov": "0.368", + "Dec": "0.323", + "All-year": "0.685", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.260", + "Mar": "0.495", + "Apr": "0.728", + "May": "0.793", + "Jun": "0.833", + "Jul": "0.828", + "Aug": "0.759", + "Sep": "0.593", + "Oct": "0.403", + "Nov": "0.317", + "Dec": "0.277", + "All-year": "0.669", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.176", + "Feb": "0.182", + "Mar": "0.316", + "Apr": "0.701", + "May": "0.743", + "Jun": "0.804", + "Jul": "0.794", + "Aug": "0.706", + "Sep": "0.544", + "Oct": "0.339", + "Nov": "0.206", + "Dec": "0.183", + "All-year": "0.619", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.116", + "Mar": "0.231", + "Apr": "0.550", + "May": "0.614", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.542", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.141", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.099", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.475", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.614", + "Feb": "0.740", + "Mar": "0.799", + "Apr": "0.911", + "May": "0.941", + "Jun": "0.951", + "Jul": "0.976", + "Aug": "0.927", + "Sep": "0.853", + "Oct": "0.727", + "Nov": "0.713", + "Dec": "0.647", + "All-year": "0.808", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.614", + "Feb": "0.736", + "Mar": "0.796", + "Apr": "0.910", + "May": "0.941", + "Jun": "0.951", + "Jul": "0.974", + "Aug": "0.926", + "Sep": "0.853", + "Oct": "0.722", + "Nov": "0.712", + "Dec": "0.644", + "All-year": "0.806", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.609", + "Feb": "0.730", + "Mar": "0.794", + "Apr": "0.903", + "May": "0.938", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.923", + "Sep": "0.850", + "Oct": "0.716", + "Nov": "0.708", + "Dec": "0.640", + "All-year": "0.801", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.608", + "Feb": "0.730", + "Mar": "0.788", + "Apr": "0.903", + "May": "0.936", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.921", + "Sep": "0.846", + "Oct": "0.710", + "Nov": "0.694", + "Dec": "0.631", + "All-year": "0.798", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.577", + "Feb": "0.710", + "Mar": "0.769", + "Apr": "0.897", + "May": "0.933", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.917", + "Sep": "0.826", + "Oct": "0.685", + "Nov": "0.674", + "Dec": "0.606", + "All-year": "0.781", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.528", + "Feb": "0.656", + "Mar": "0.732", + "Apr": "0.870", + "May": "0.922", + "Jun": "0.941", + "Jul": "0.958", + "Aug": "0.907", + "Sep": "0.808", + "Oct": "0.651", + "Nov": "0.619", + "Dec": "0.550", + "All-year": "0.753", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.450", + "Feb": "0.560", + "Mar": "0.678", + "Apr": "0.828", + "May": "0.887", + "Jun": "0.926", + "Jul": "0.956", + "Aug": "0.869", + "Sep": "0.740", + "Oct": "0.549", + "Nov": "0.498", + "Dec": "0.427", + "All-year": "0.694", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.298", + "Feb": "0.496", + "Mar": "0.593", + "Apr": "0.792", + "May": "0.877", + "Jun": "0.922", + "Jul": "0.933", + "Aug": "0.864", + "Sep": "0.687", + "Oct": "0.408", + "Nov": "0.407", + "Dec": "0.312", + "All-year": "0.639", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.597", + "Mar": "0.709", + "Apr": "0.863", + "May": "0.921", + "Jun": "0.935", + "Jul": "0.935", + "Aug": "0.896", + "Sep": "0.807", + "Oct": "0.661", + "Nov": "0.594", + "Dec": "0.528", + "All-year": "0.784", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.546", + "Feb": "0.596", + "Mar": "0.706", + "Apr": "0.858", + "May": "0.921", + "Jun": "0.933", + "Jul": "0.935", + "Aug": "0.894", + "Sep": "0.806", + "Oct": "0.660", + "Nov": "0.592", + "Dec": "0.526", + "All-year": "0.784", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.536", + "Feb": "0.590", + "Mar": "0.702", + "Apr": "0.853", + "May": "0.916", + "Jun": "0.933", + "Jul": "0.934", + "Aug": "0.888", + "Sep": "0.799", + "Oct": "0.655", + "Nov": "0.584", + "Dec": "0.517", + "All-year": "0.778", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.534", + "Feb": "0.586", + "Mar": "0.702", + "Apr": "0.849", + "May": "0.915", + "Jun": "0.933", + "Jul": "0.934", + "Aug": "0.882", + "Sep": "0.794", + "Oct": "0.644", + "Nov": "0.578", + "Dec": "0.511", + "All-year": "0.775", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.490", + "Feb": "0.571", + "Mar": "0.694", + "Apr": "0.835", + "May": "0.913", + "Jun": "0.933", + "Jul": "0.934", + "Aug": "0.872", + "Sep": "0.785", + "Oct": "0.609", + "Nov": "0.548", + "Dec": "0.474", + "All-year": "0.762", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.405", + "Feb": "0.533", + "Mar": "0.648", + "Apr": "0.817", + "May": "0.887", + "Jun": "0.917", + "Jul": "0.919", + "Aug": "0.858", + "Sep": "0.742", + "Oct": "0.551", + "Nov": "0.471", + "Dec": "0.411", + "All-year": "0.730", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.256", + "Feb": "0.346", + "Mar": "0.526", + "Apr": "0.751", + "May": "0.835", + "Jun": "0.885", + "Jul": "0.910", + "Aug": "0.800", + "Sep": "0.664", + "Oct": "0.396", + "Nov": "0.354", + "Dec": "0.279", + "All-year": "0.663", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.230", + "Mar": "0.435", + "Apr": "0.701", + "May": "0.771", + "Jun": "0.868", + "Jul": "0.849", + "Aug": "0.769", + "Sep": "0.533", + "Oct": "0.304", + "Nov": "0.262", + "Dec": "0.196", + "All-year": "0.611", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.398", + "Feb": "0.397", + "Mar": "0.573", + "Apr": "0.792", + "May": "0.886", + "Jun": "0.914", + "Jul": "0.876", + "Aug": "0.851", + "Sep": "0.724", + "Oct": "0.581", + "Nov": "0.493", + "Dec": "0.397", + "All-year": "0.773", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.387", + "Feb": "0.394", + "Mar": "0.573", + "Apr": "0.792", + "May": "0.883", + "Jun": "0.914", + "Jul": "0.876", + "Aug": "0.851", + "Sep": "0.721", + "Oct": "0.573", + "Nov": "0.490", + "Dec": "0.395", + "All-year": "0.771", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.376", + "Feb": "0.382", + "Mar": "0.573", + "Apr": "0.792", + "May": "0.883", + "Jun": "0.914", + "Jul": "0.876", + "Aug": "0.848", + "Sep": "0.714", + "Oct": "0.547", + "Nov": "0.483", + "Dec": "0.387", + "All-year": "0.764", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.376", + "Feb": "0.374", + "Mar": "0.565", + "Apr": "0.792", + "May": "0.883", + "Jun": "0.910", + "Jul": "0.876", + "Aug": "0.848", + "Sep": "0.701", + "Oct": "0.542", + "Nov": "0.471", + "Dec": "0.376", + "All-year": "0.760", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.318", + "Mar": "0.508", + "Apr": "0.792", + "May": "0.872", + "Jun": "0.901", + "Jul": "0.870", + "Aug": "0.848", + "Sep": "0.692", + "Oct": "0.517", + "Nov": "0.432", + "Dec": "0.335", + "All-year": "0.742", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.250", + "Mar": "0.487", + "Apr": "0.753", + "May": "0.835", + "Jun": "0.881", + "Jul": "0.845", + "Aug": "0.820", + "Sep": "0.662", + "Oct": "0.448", + "Nov": "0.325", + "Dec": "0.265", + "All-year": "0.699", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.116", + "Feb": "0.128", + "Mar": "0.394", + "Apr": "0.697", + "May": "0.749", + "Jun": "0.814", + "Jul": "0.813", + "Aug": "0.726", + "Sep": "0.521", + "Oct": "0.278", + "Nov": "0.131", + "Dec": "0.087", + "All-year": "0.624", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.109", + "Feb": "0.105", + "Mar": "0.144", + "Apr": "0.546", + "May": "0.638", + "Jun": "0.807", + "Jul": "0.694", + "Aug": "0.651", + "Sep": "0.418", + "Oct": "0.145", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.566", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.740", + "Feb": "0.809", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.986", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.919", + "Oct": "0.821", + "Nov": "0.792", + "Dec": "0.736", + "All-year": "0.870", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.740", + "Feb": "0.809", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.986", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.919", + "Oct": "0.821", + "Nov": "0.792", + "Dec": "0.736", + "All-year": "0.870", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.737", + "Feb": "0.804", + "Mar": "0.860", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.986", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.919", + "Oct": "0.818", + "Nov": "0.790", + "Dec": "0.736", + "All-year": "0.868", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.732", + "Feb": "0.800", + "Mar": "0.856", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.916", + "Oct": "0.817", + "Nov": "0.790", + "Dec": "0.733", + "All-year": "0.867", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.703", + "Feb": "0.798", + "Mar": "0.850", + "Apr": "0.944", + "May": "0.980", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.911", + "Oct": "0.810", + "Nov": "0.776", + "Dec": "0.720", + "All-year": "0.859", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.671", + "Feb": "0.775", + "Mar": "0.849", + "Apr": "0.940", + "May": "0.977", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.896", + "Oct": "0.796", + "Nov": "0.744", + "Dec": "0.683", + "All-year": "0.844", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.586", + "Feb": "0.717", + "Mar": "0.808", + "Apr": "0.936", + "May": "0.974", + "Jun": "0.976", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.864", + "Oct": "0.729", + "Nov": "0.662", + "Dec": "0.606", + "All-year": "0.817", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.532", + "Feb": "0.680", + "Mar": "0.714", + "Apr": "0.902", + "May": "0.964", + "Jun": "0.972", + "Jul": "0.987", + "Aug": "0.953", + "Sep": "0.831", + "Oct": "0.673", + "Nov": "0.569", + "Dec": "0.529", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.640", + "Feb": "0.701", + "Mar": "0.790", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.872", + "Oct": "0.776", + "Nov": "0.699", + "Dec": "0.639", + "All-year": "0.848", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.640", + "Feb": "0.701", + "Mar": "0.788", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.872", + "Oct": "0.774", + "Nov": "0.699", + "Dec": "0.639", + "All-year": "0.848", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.637", + "Feb": "0.701", + "Mar": "0.782", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.872", + "Oct": "0.772", + "Nov": "0.699", + "Dec": "0.638", + "All-year": "0.847", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.634", + "Feb": "0.690", + "Mar": "0.779", + "Apr": "0.896", + "May": "0.958", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.871", + "Oct": "0.767", + "Nov": "0.696", + "Dec": "0.632", + "All-year": "0.846", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.620", + "Feb": "0.661", + "Mar": "0.769", + "Apr": "0.892", + "May": "0.958", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.932", + "Sep": "0.860", + "Oct": "0.755", + "Nov": "0.676", + "Dec": "0.598", + "All-year": "0.838", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.569", + "Feb": "0.637", + "Mar": "0.741", + "Apr": "0.876", + "May": "0.950", + "Jun": "0.956", + "Jul": "0.959", + "Aug": "0.925", + "Sep": "0.845", + "Oct": "0.738", + "Nov": "0.617", + "Dec": "0.546", + "All-year": "0.823", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.457", + "Feb": "0.551", + "Mar": "0.671", + "Apr": "0.861", + "May": "0.940", + "Jun": "0.939", + "Jul": "0.954", + "Aug": "0.892", + "Sep": "0.808", + "Oct": "0.640", + "Nov": "0.534", + "Dec": "0.493", + "All-year": "0.777", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.409", + "Feb": "0.453", + "Mar": "0.589", + "Apr": "0.819", + "May": "0.925", + "Jun": "0.927", + "Jul": "0.940", + "Aug": "0.862", + "Sep": "0.764", + "Oct": "0.556", + "Nov": "0.417", + "Dec": "0.374", + "All-year": "0.742", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.488", + "Feb": "0.510", + "Mar": "0.694", + "Apr": "0.847", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.937", + "Aug": "0.906", + "Sep": "0.782", + "Oct": "0.699", + "Nov": "0.614", + "Dec": "0.573", + "All-year": "0.829", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.485", + "Feb": "0.510", + "Mar": "0.694", + "Apr": "0.847", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.906", + "Sep": "0.781", + "Oct": "0.699", + "Nov": "0.614", + "Dec": "0.570", + "All-year": "0.829", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.481", + "Feb": "0.510", + "Mar": "0.683", + "Apr": "0.843", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.781", + "Oct": "0.699", + "Nov": "0.610", + "Dec": "0.566", + "All-year": "0.827", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.474", + "Feb": "0.510", + "Mar": "0.683", + "Apr": "0.843", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.776", + "Oct": "0.696", + "Nov": "0.601", + "Dec": "0.560", + "All-year": "0.826", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.472", + "Feb": "0.461", + "Mar": "0.683", + "Apr": "0.838", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.892", + "Sep": "0.775", + "Oct": "0.685", + "Nov": "0.589", + "Dec": "0.516", + "All-year": "0.817", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.398", + "Feb": "0.394", + "Mar": "0.664", + "Apr": "0.838", + "May": "0.903", + "Jun": "0.933", + "Jul": "0.919", + "Aug": "0.886", + "Sep": "0.761", + "Oct": "0.625", + "Nov": "0.531", + "Dec": "0.413", + "All-year": "0.800", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.308", + "Feb": "0.272", + "Mar": "0.562", + "Apr": "0.747", + "May": "0.901", + "Jun": "0.903", + "Jul": "0.907", + "Aug": "0.852", + "Sep": "0.669", + "Oct": "0.468", + "Nov": "0.381", + "Dec": "0.211", + "All-year": "0.753", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.129", + "Mar": "0.394", + "Apr": "0.706", + "May": "0.871", + "Jun": "0.899", + "Jul": "0.891", + "Aug": "0.798", + "Sep": "0.596", + "Oct": "0.429", + "Nov": "0.269", + "Dec": "0.117", + "All-year": "0.694", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.743", + "Feb": "0.810", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.921", + "Oct": "0.821", + "Nov": "0.794", + "Dec": "0.737", + "All-year": "0.871", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.743", + "Feb": "0.810", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.921", + "Oct": "0.821", + "Nov": "0.794", + "Dec": "0.737", + "All-year": "0.871", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.742", + "Feb": "0.805", + "Mar": "0.860", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.920", + "Oct": "0.818", + "Nov": "0.792", + "Dec": "0.737", + "All-year": "0.869", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.739", + "Feb": "0.801", + "Mar": "0.856", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.917", + "Oct": "0.818", + "Nov": "0.792", + "Dec": "0.735", + "All-year": "0.868", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.704", + "Feb": "0.798", + "Mar": "0.851", + "Apr": "0.944", + "May": "0.980", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.911", + "Oct": "0.810", + "Nov": "0.785", + "Dec": "0.720", + "All-year": "0.859", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.676", + "Feb": "0.775", + "Mar": "0.849", + "Apr": "0.940", + "May": "0.977", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.896", + "Oct": "0.797", + "Nov": "0.744", + "Dec": "0.684", + "All-year": "0.845", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.586", + "Feb": "0.717", + "Mar": "0.808", + "Apr": "0.937", + "May": "0.974", + "Jun": "0.977", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.866", + "Oct": "0.741", + "Nov": "0.662", + "Dec": "0.608", + "All-year": "0.817", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.532", + "Feb": "0.680", + "Mar": "0.714", + "Apr": "0.902", + "May": "0.964", + "Jun": "0.972", + "Jul": "0.987", + "Aug": "0.954", + "Sep": "0.840", + "Oct": "0.673", + "Nov": "0.569", + "Dec": "0.532", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.641", + "Feb": "0.701", + "Mar": "0.791", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.873", + "Oct": "0.776", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.849", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.641", + "Feb": "0.701", + "Mar": "0.790", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.873", + "Oct": "0.775", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.849", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.638", + "Feb": "0.701", + "Mar": "0.784", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.873", + "Oct": "0.773", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.848", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.637", + "Feb": "0.690", + "Mar": "0.781", + "Apr": "0.896", + "May": "0.958", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.871", + "Oct": "0.770", + "Nov": "0.696", + "Dec": "0.634", + "All-year": "0.846", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.621", + "Feb": "0.662", + "Mar": "0.769", + "Apr": "0.892", + "May": "0.958", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.933", + "Sep": "0.860", + "Oct": "0.755", + "Nov": "0.678", + "Dec": "0.606", + "All-year": "0.838", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.570", + "Feb": "0.637", + "Mar": "0.741", + "Apr": "0.876", + "May": "0.950", + "Jun": "0.956", + "Jul": "0.959", + "Aug": "0.926", + "Sep": "0.847", + "Oct": "0.738", + "Nov": "0.617", + "Dec": "0.547", + "All-year": "0.824", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.457", + "Feb": "0.551", + "Mar": "0.673", + "Apr": "0.861", + "May": "0.940", + "Jun": "0.939", + "Jul": "0.954", + "Aug": "0.892", + "Sep": "0.811", + "Oct": "0.641", + "Nov": "0.535", + "Dec": "0.493", + "All-year": "0.778", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.409", + "Feb": "0.454", + "Mar": "0.589", + "Apr": "0.819", + "May": "0.925", + "Jun": "0.927", + "Jul": "0.940", + "Aug": "0.863", + "Sep": "0.764", + "Oct": "0.556", + "Nov": "0.417", + "Dec": "0.376", + "All-year": "0.744", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.489", + "Feb": "0.512", + "Mar": "0.694", + "Apr": "0.849", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.937", + "Aug": "0.906", + "Sep": "0.782", + "Oct": "0.702", + "Nov": "0.614", + "Dec": "0.575", + "All-year": "0.830", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.487", + "Feb": "0.512", + "Mar": "0.694", + "Apr": "0.849", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.906", + "Sep": "0.781", + "Oct": "0.702", + "Nov": "0.614", + "Dec": "0.573", + "All-year": "0.829", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.483", + "Feb": "0.512", + "Mar": "0.683", + "Apr": "0.844", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.781", + "Oct": "0.702", + "Nov": "0.610", + "Dec": "0.569", + "All-year": "0.828", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.512", + "Mar": "0.683", + "Apr": "0.844", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.776", + "Oct": "0.696", + "Nov": "0.601", + "Dec": "0.563", + "All-year": "0.826", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.472", + "Feb": "0.464", + "Mar": "0.683", + "Apr": "0.838", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.892", + "Sep": "0.775", + "Oct": "0.685", + "Nov": "0.589", + "Dec": "0.527", + "All-year": "0.819", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.399", + "Feb": "0.396", + "Mar": "0.664", + "Apr": "0.838", + "May": "0.905", + "Jun": "0.933", + "Jul": "0.919", + "Aug": "0.886", + "Sep": "0.762", + "Oct": "0.626", + "Nov": "0.532", + "Dec": "0.413", + "All-year": "0.801", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.308", + "Feb": "0.272", + "Mar": "0.562", + "Apr": "0.747", + "May": "0.901", + "Jun": "0.903", + "Jul": "0.907", + "Aug": "0.852", + "Sep": "0.669", + "Oct": "0.468", + "Nov": "0.382", + "Dec": "0.211", + "All-year": "0.753", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.129", + "Mar": "0.394", + "Apr": "0.706", + "May": "0.871", + "Jun": "0.899", + "Jul": "0.891", + "Aug": "0.798", + "Sep": "0.596", + "Oct": "0.435", + "Nov": "0.269", + "Dec": "0.117", + "All-year": "0.694", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.743", + "Feb": "0.810", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.921", + "Oct": "0.821", + "Nov": "0.794", + "Dec": "0.737", + "All-year": "0.871", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.743", + "Feb": "0.810", + "Mar": "0.863", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.921", + "Oct": "0.821", + "Nov": "0.794", + "Dec": "0.737", + "All-year": "0.871", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.742", + "Feb": "0.805", + "Mar": "0.860", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.987", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.920", + "Oct": "0.818", + "Nov": "0.792", + "Dec": "0.737", + "All-year": "0.869", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.739", + "Feb": "0.801", + "Mar": "0.856", + "Apr": "0.944", + "May": "0.981", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.965", + "Sep": "0.917", + "Oct": "0.818", + "Nov": "0.792", + "Dec": "0.735", + "All-year": "0.868", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.704", + "Feb": "0.798", + "Mar": "0.851", + "Apr": "0.944", + "May": "0.980", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.911", + "Oct": "0.810", + "Nov": "0.785", + "Dec": "0.720", + "All-year": "0.859", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.676", + "Feb": "0.775", + "Mar": "0.849", + "Apr": "0.940", + "May": "0.977", + "Jun": "0.984", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.896", + "Oct": "0.797", + "Nov": "0.744", + "Dec": "0.684", + "All-year": "0.845", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.586", + "Feb": "0.717", + "Mar": "0.808", + "Apr": "0.937", + "May": "0.974", + "Jun": "0.977", + "Jul": "0.993", + "Aug": "0.962", + "Sep": "0.866", + "Oct": "0.741", + "Nov": "0.662", + "Dec": "0.608", + "All-year": "0.817", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.532", + "Feb": "0.680", + "Mar": "0.714", + "Apr": "0.902", + "May": "0.964", + "Jun": "0.972", + "Jul": "0.987", + "Aug": "0.954", + "Sep": "0.840", + "Oct": "0.673", + "Nov": "0.569", + "Dec": "0.532", + "All-year": "0.772", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.641", + "Feb": "0.701", + "Mar": "0.791", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.873", + "Oct": "0.776", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.849", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.641", + "Feb": "0.701", + "Mar": "0.790", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.937", + "Sep": "0.873", + "Oct": "0.775", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.849", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.638", + "Feb": "0.701", + "Mar": "0.784", + "Apr": "0.899", + "May": "0.959", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.873", + "Oct": "0.773", + "Nov": "0.699", + "Dec": "0.642", + "All-year": "0.848", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.637", + "Feb": "0.690", + "Mar": "0.781", + "Apr": "0.896", + "May": "0.958", + "Jun": "0.962", + "Jul": "0.962", + "Aug": "0.935", + "Sep": "0.871", + "Oct": "0.770", + "Nov": "0.696", + "Dec": "0.634", + "All-year": "0.846", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.621", + "Feb": "0.662", + "Mar": "0.769", + "Apr": "0.892", + "May": "0.958", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.933", + "Sep": "0.860", + "Oct": "0.755", + "Nov": "0.678", + "Dec": "0.606", + "All-year": "0.838", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.570", + "Feb": "0.637", + "Mar": "0.741", + "Apr": "0.876", + "May": "0.950", + "Jun": "0.956", + "Jul": "0.959", + "Aug": "0.926", + "Sep": "0.847", + "Oct": "0.738", + "Nov": "0.617", + "Dec": "0.547", + "All-year": "0.824", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.457", + "Feb": "0.551", + "Mar": "0.673", + "Apr": "0.861", + "May": "0.940", + "Jun": "0.939", + "Jul": "0.954", + "Aug": "0.892", + "Sep": "0.811", + "Oct": "0.641", + "Nov": "0.535", + "Dec": "0.493", + "All-year": "0.778", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.409", + "Feb": "0.454", + "Mar": "0.589", + "Apr": "0.819", + "May": "0.925", + "Jun": "0.927", + "Jul": "0.940", + "Aug": "0.863", + "Sep": "0.764", + "Oct": "0.556", + "Nov": "0.417", + "Dec": "0.376", + "All-year": "0.744", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.489", + "Feb": "0.512", + "Mar": "0.694", + "Apr": "0.849", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.937", + "Aug": "0.906", + "Sep": "0.782", + "Oct": "0.702", + "Nov": "0.614", + "Dec": "0.575", + "All-year": "0.830", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.487", + "Feb": "0.512", + "Mar": "0.694", + "Apr": "0.849", + "May": "0.919", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.906", + "Sep": "0.781", + "Oct": "0.702", + "Nov": "0.614", + "Dec": "0.573", + "All-year": "0.829", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.483", + "Feb": "0.512", + "Mar": "0.683", + "Apr": "0.844", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.781", + "Oct": "0.702", + "Nov": "0.610", + "Dec": "0.569", + "All-year": "0.828", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.512", + "Mar": "0.683", + "Apr": "0.844", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.902", + "Sep": "0.776", + "Oct": "0.696", + "Nov": "0.601", + "Dec": "0.563", + "All-year": "0.826", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.472", + "Feb": "0.464", + "Mar": "0.683", + "Apr": "0.838", + "May": "0.909", + "Jun": "0.938", + "Jul": "0.935", + "Aug": "0.892", + "Sep": "0.775", + "Oct": "0.685", + "Nov": "0.589", + "Dec": "0.527", + "All-year": "0.819", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.399", + "Feb": "0.396", + "Mar": "0.664", + "Apr": "0.838", + "May": "0.905", + "Jun": "0.933", + "Jul": "0.919", + "Aug": "0.886", + "Sep": "0.762", + "Oct": "0.626", + "Nov": "0.532", + "Dec": "0.413", + "All-year": "0.801", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.308", + "Feb": "0.272", + "Mar": "0.562", + "Apr": "0.747", + "May": "0.901", + "Jun": "0.903", + "Jul": "0.907", + "Aug": "0.852", + "Sep": "0.669", + "Oct": "0.468", + "Nov": "0.382", + "Dec": "0.211", + "All-year": "0.753", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.129", + "Mar": "0.394", + "Apr": "0.706", + "May": "0.871", + "Jun": "0.899", + "Jul": "0.891", + "Aug": "0.798", + "Sep": "0.596", + "Oct": "0.435", + "Nov": "0.269", + "Dec": "0.117", + "All-year": "0.694", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 2.75 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.019", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.017", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.009", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.100", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.024", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.217", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.181", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.286", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.217", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.179", + "Nov": "0.174", + "Dec": "0.173", + "All-year": "0.283", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.204", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.169", + "Dec": "0.168", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.194", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.360", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.152", + "Dec": "0.155", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.228", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.348", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.119", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.345", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.116", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.267", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.330", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.114", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.254", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.316", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.085", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.069", + "Mar": "0.128", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.211", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.071", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.130", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.245", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.073", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.130", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.128", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.065", + "Dec": "0.070", + "All-year": "0.236", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.286", + "Feb": "0.400", + "Mar": "0.424", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.631", + "Sep": "0.529", + "Oct": "0.343", + "Nov": "0.324", + "Dec": "0.317", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.284", + "Feb": "0.398", + "Mar": "0.422", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.699", + "Aug": "0.630", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.320", + "Dec": "0.312", + "All-year": "0.480", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.276", + "Feb": "0.387", + "Mar": "0.408", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.669", + "Jul": "0.688", + "Aug": "0.625", + "Sep": "0.519", + "Oct": "0.321", + "Nov": "0.312", + "Dec": "0.295", + "All-year": "0.470", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.272", + "Feb": "0.381", + "Mar": "0.401", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.686", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.312", + "Nov": "0.310", + "Dec": "0.285", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.655", + "Aug": "0.587", + "Sep": "0.483", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.255", + "All-year": "0.432", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.200", + "Feb": "0.249", + "Mar": "0.339", + "Apr": "0.481", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.197", + "Feb": "0.232", + "Mar": "0.370", + "Apr": "0.527", + "May": "0.544", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.282", + "Nov": "0.241", + "Dec": "0.235", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.196", + "Feb": "0.231", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.542", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.279", + "Nov": "0.238", + "Dec": "0.233", + "All-year": "0.464", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.225", + "Mar": "0.354", + "Apr": "0.513", + "May": "0.529", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.561", + "Sep": "0.440", + "Oct": "0.271", + "Nov": "0.230", + "Dec": "0.226", + "All-year": "0.454", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.213", + "Mar": "0.343", + "Apr": "0.506", + "May": "0.526", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.214", + "All-year": "0.449", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.182", + "Mar": "0.295", + "Apr": "0.472", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.172", + "All-year": "0.415", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.314", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.113", + "All-year": "0.356", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.159", + "Mar": "0.255", + "Apr": "0.478", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.501", + "Aug": "0.505", + "Sep": "0.340", + "Oct": "0.227", + "Nov": "0.178", + "Dec": "0.142", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.157", + "Mar": "0.255", + "Apr": "0.475", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.496", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.219", + "Nov": "0.176", + "Dec": "0.141", + "All-year": "0.443", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.136", + "Mar": "0.243", + "Apr": "0.465", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.488", + "Sep": "0.331", + "Oct": "0.207", + "Nov": "0.167", + "Dec": "0.134", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.476", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.142", + "Dec": "0.133", + "All-year": "0.424", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.101", + "Mar": "0.190", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.151", + "Nov": "0.125", + "Dec": "0.108", + "All-year": "0.390", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.133", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.193", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.364", + "Feb": "0.472", + "Mar": "0.533", + "Apr": "0.667", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.813", + "Aug": "0.741", + "Sep": "0.634", + "Oct": "0.435", + "Nov": "0.417", + "Dec": "0.402", + "All-year": "0.581", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.360", + "Feb": "0.472", + "Mar": "0.530", + "Apr": "0.665", + "May": "0.724", + "Jun": "0.799", + "Jul": "0.811", + "Aug": "0.740", + "Sep": "0.630", + "Oct": "0.433", + "Nov": "0.415", + "Dec": "0.398", + "All-year": "0.579", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.345", + "Feb": "0.470", + "Mar": "0.525", + "Apr": "0.660", + "May": "0.720", + "Jun": "0.792", + "Jul": "0.806", + "Aug": "0.734", + "Sep": "0.619", + "Oct": "0.423", + "Nov": "0.404", + "Dec": "0.391", + "All-year": "0.572", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.345", + "Feb": "0.467", + "Mar": "0.521", + "Apr": "0.655", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.611", + "Oct": "0.413", + "Nov": "0.389", + "Dec": "0.379", + "All-year": "0.566", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.322", + "Feb": "0.426", + "Mar": "0.487", + "Apr": "0.626", + "May": "0.695", + "Jun": "0.774", + "Jul": "0.778", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.382", + "Nov": "0.353", + "Dec": "0.327", + "All-year": "0.538", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.362", + "Mar": "0.433", + "Apr": "0.597", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.740", + "Aug": "0.652", + "Sep": "0.526", + "Oct": "0.319", + "Nov": "0.258", + "Dec": "0.259", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.226", + "Mar": "0.338", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.154", + "All-year": "0.382", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.363", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.344", + "Mar": "0.476", + "Apr": "0.627", + "May": "0.676", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.663", + "Sep": "0.537", + "Oct": "0.389", + "Nov": "0.348", + "Dec": "0.302", + "All-year": "0.565", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.342", + "Mar": "0.473", + "Apr": "0.627", + "May": "0.675", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.533", + "Oct": "0.386", + "Nov": "0.345", + "Dec": "0.302", + "All-year": "0.562", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.326", + "Mar": "0.468", + "Apr": "0.619", + "May": "0.656", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.654", + "Sep": "0.522", + "Oct": "0.377", + "Nov": "0.340", + "Dec": "0.297", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.256", + "Feb": "0.326", + "Mar": "0.458", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.654", + "Sep": "0.512", + "Oct": "0.362", + "Nov": "0.323", + "Dec": "0.290", + "All-year": "0.550", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.282", + "Mar": "0.435", + "Apr": "0.586", + "May": "0.618", + "Jun": "0.713", + "Jul": "0.720", + "Aug": "0.626", + "Sep": "0.484", + "Oct": "0.328", + "Nov": "0.285", + "Dec": "0.260", + "All-year": "0.522", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.250", + "Mar": "0.366", + "Apr": "0.526", + "May": "0.563", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.183", + "Dec": "0.171", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.120", + "Mar": "0.257", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.033", + "All-year": "0.360", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.275", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.349", + "Apr": "0.593", + "May": "0.601", + "Jun": "0.657", + "Jul": "0.651", + "Aug": "0.620", + "Sep": "0.431", + "Oct": "0.289", + "Nov": "0.249", + "Dec": "0.196", + "All-year": "0.541", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.347", + "Apr": "0.593", + "May": "0.598", + "Jun": "0.654", + "Jul": "0.651", + "Aug": "0.618", + "Sep": "0.426", + "Oct": "0.282", + "Nov": "0.249", + "Dec": "0.194", + "All-year": "0.538", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.184", + "Feb": "0.203", + "Mar": "0.341", + "Apr": "0.575", + "May": "0.582", + "Jun": "0.650", + "Jul": "0.636", + "Aug": "0.612", + "Sep": "0.414", + "Oct": "0.278", + "Nov": "0.235", + "Dec": "0.183", + "All-year": "0.530", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.169", + "Feb": "0.202", + "Mar": "0.335", + "Apr": "0.575", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.629", + "Aug": "0.606", + "Sep": "0.408", + "Oct": "0.267", + "Nov": "0.215", + "Dec": "0.183", + "All-year": "0.524", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.298", + "Apr": "0.567", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.602", + "Aug": "0.552", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.192", + "Dec": "0.133", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.092", + "Mar": "0.203", + "Apr": "0.460", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.125", + "Nov": "0.057", + "Dec": "0.071", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.289", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.335", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.332", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.241", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.442", + "Feb": "0.566", + "Mar": "0.636", + "Apr": "0.764", + "May": "0.822", + "Jun": "0.885", + "Jul": "0.886", + "Aug": "0.827", + "Sep": "0.709", + "Oct": "0.550", + "Nov": "0.505", + "Dec": "0.487", + "All-year": "0.675", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.438", + "Feb": "0.565", + "Mar": "0.636", + "Apr": "0.761", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.885", + "Aug": "0.826", + "Sep": "0.708", + "Oct": "0.541", + "Nov": "0.502", + "Dec": "0.481", + "All-year": "0.672", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.429", + "Feb": "0.556", + "Mar": "0.622", + "Apr": "0.756", + "May": "0.819", + "Jun": "0.874", + "Jul": "0.882", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.522", + "Nov": "0.499", + "Dec": "0.472", + "All-year": "0.663", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.421", + "Feb": "0.548", + "Mar": "0.620", + "Apr": "0.756", + "May": "0.817", + "Jun": "0.870", + "Jul": "0.878", + "Aug": "0.819", + "Sep": "0.697", + "Oct": "0.509", + "Nov": "0.492", + "Dec": "0.458", + "All-year": "0.660", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.401", + "Feb": "0.510", + "Mar": "0.597", + "Apr": "0.729", + "May": "0.804", + "Jun": "0.867", + "Jul": "0.860", + "Aug": "0.815", + "Sep": "0.673", + "Oct": "0.483", + "Nov": "0.451", + "Dec": "0.433", + "All-year": "0.635", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.353", + "Feb": "0.461", + "Mar": "0.559", + "Apr": "0.697", + "May": "0.756", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.782", + "Sep": "0.644", + "Oct": "0.403", + "Nov": "0.385", + "Dec": "0.376", + "All-year": "0.584", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.223", + "Feb": "0.333", + "Mar": "0.403", + "Apr": "0.622", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.796", + "Aug": "0.722", + "Sep": "0.528", + "Oct": "0.302", + "Nov": "0.233", + "Dec": "0.226", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.533", + "May": "0.544", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.416", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.432", + "Mar": "0.546", + "Apr": "0.729", + "May": "0.778", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.771", + "Sep": "0.642", + "Oct": "0.474", + "Nov": "0.444", + "Dec": "0.386", + "All-year": "0.652", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.432", + "Mar": "0.545", + "Apr": "0.728", + "May": "0.776", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.640", + "Oct": "0.470", + "Nov": "0.437", + "Dec": "0.382", + "All-year": "0.650", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.420", + "Mar": "0.537", + "Apr": "0.717", + "May": "0.769", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.766", + "Sep": "0.635", + "Oct": "0.461", + "Nov": "0.425", + "Dec": "0.370", + "All-year": "0.640", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.412", + "Mar": "0.530", + "Apr": "0.714", + "May": "0.760", + "Jun": "0.829", + "Jul": "0.837", + "Aug": "0.757", + "Sep": "0.628", + "Oct": "0.452", + "Nov": "0.418", + "Dec": "0.361", + "All-year": "0.636", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.297", + "Feb": "0.384", + "Mar": "0.506", + "Apr": "0.703", + "May": "0.751", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.753", + "Sep": "0.603", + "Oct": "0.423", + "Nov": "0.386", + "Dec": "0.327", + "All-year": "0.614", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.305", + "Mar": "0.447", + "Apr": "0.652", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.783", + "Aug": "0.687", + "Sep": "0.552", + "Oct": "0.333", + "Nov": "0.271", + "Dec": "0.241", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.170", + "Mar": "0.312", + "Apr": "0.545", + "May": "0.594", + "Jun": "0.685", + "Jul": "0.710", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.189", + "Nov": "0.145", + "Dec": "0.122", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.111", + "Mar": "0.208", + "Apr": "0.431", + "May": "0.450", + "Jun": "0.582", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.385", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.296", + "Mar": "0.442", + "Apr": "0.692", + "May": "0.722", + "Jun": "0.799", + "Jul": "0.762", + "Aug": "0.708", + "Sep": "0.560", + "Oct": "0.379", + "Nov": "0.307", + "Dec": "0.272", + "All-year": "0.626", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.296", + "Mar": "0.440", + "Apr": "0.686", + "May": "0.714", + "Jun": "0.796", + "Jul": "0.759", + "Aug": "0.707", + "Sep": "0.558", + "Oct": "0.375", + "Nov": "0.303", + "Dec": "0.269", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.254", + "Feb": "0.290", + "Mar": "0.438", + "Apr": "0.682", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.750", + "Aug": "0.704", + "Sep": "0.551", + "Oct": "0.368", + "Nov": "0.282", + "Dec": "0.259", + "All-year": "0.618", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.254", + "Feb": "0.281", + "Mar": "0.425", + "Apr": "0.668", + "May": "0.706", + "Jun": "0.772", + "Jul": "0.750", + "Aug": "0.691", + "Sep": "0.535", + "Oct": "0.360", + "Nov": "0.275", + "Dec": "0.242", + "All-year": "0.611", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.207", + "Feb": "0.231", + "Mar": "0.397", + "Apr": "0.640", + "May": "0.703", + "Jun": "0.760", + "Jul": "0.738", + "Aug": "0.652", + "Sep": "0.496", + "Oct": "0.316", + "Nov": "0.206", + "Dec": "0.198", + "All-year": "0.587", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.167", + "Mar": "0.263", + "Apr": "0.596", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.668", + "Aug": "0.591", + "Sep": "0.465", + "Oct": "0.231", + "Nov": "0.151", + "Dec": "0.136", + "All-year": "0.532", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.153", + "Apr": "0.456", + "May": "0.433", + "Jun": "0.564", + "Jul": "0.477", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.136", + "Nov": "0.068", + "Dec": "0.000", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.493", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.542", + "Feb": "0.657", + "Mar": "0.730", + "Apr": "0.857", + "May": "0.897", + "Jun": "0.925", + "Jul": "0.942", + "Aug": "0.893", + "Sep": "0.793", + "Oct": "0.647", + "Nov": "0.632", + "Dec": "0.579", + "All-year": "0.750", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.537", + "Feb": "0.656", + "Mar": "0.722", + "Apr": "0.854", + "May": "0.896", + "Jun": "0.924", + "Jul": "0.940", + "Aug": "0.892", + "Sep": "0.792", + "Oct": "0.644", + "Nov": "0.628", + "Dec": "0.576", + "All-year": "0.748", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.527", + "Feb": "0.652", + "Mar": "0.718", + "Apr": "0.842", + "May": "0.890", + "Jun": "0.920", + "Jul": "0.940", + "Aug": "0.888", + "Sep": "0.787", + "Oct": "0.634", + "Nov": "0.622", + "Dec": "0.566", + "All-year": "0.740", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.524", + "Feb": "0.646", + "Mar": "0.711", + "Apr": "0.840", + "May": "0.888", + "Jun": "0.920", + "Jul": "0.938", + "Aug": "0.888", + "Sep": "0.781", + "Oct": "0.622", + "Nov": "0.606", + "Dec": "0.550", + "All-year": "0.738", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.490", + "Feb": "0.610", + "Mar": "0.700", + "Apr": "0.828", + "May": "0.876", + "Jun": "0.919", + "Jul": "0.927", + "Aug": "0.884", + "Sep": "0.758", + "Oct": "0.604", + "Nov": "0.580", + "Dec": "0.542", + "All-year": "0.721", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.429", + "Feb": "0.579", + "Mar": "0.667", + "Apr": "0.783", + "May": "0.864", + "Jun": "0.911", + "Jul": "0.911", + "Aug": "0.857", + "Sep": "0.717", + "Oct": "0.563", + "Nov": "0.490", + "Dec": "0.449", + "All-year": "0.683", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.458", + "Mar": "0.549", + "Apr": "0.732", + "May": "0.806", + "Jun": "0.878", + "Jul": "0.896", + "Aug": "0.795", + "Sep": "0.637", + "Oct": "0.435", + "Nov": "0.360", + "Dec": "0.337", + "All-year": "0.602", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.358", + "Mar": "0.414", + "Apr": "0.672", + "May": "0.737", + "Jun": "0.857", + "Jul": "0.844", + "Aug": "0.773", + "Sep": "0.546", + "Oct": "0.312", + "Nov": "0.287", + "Dec": "0.292", + "All-year": "0.541", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.472", + "Feb": "0.535", + "Mar": "0.642", + "Apr": "0.803", + "May": "0.860", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.840", + "Sep": "0.749", + "Oct": "0.585", + "Nov": "0.526", + "Dec": "0.472", + "All-year": "0.727", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.532", + "Mar": "0.642", + "Apr": "0.803", + "May": "0.856", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.839", + "Sep": "0.747", + "Oct": "0.581", + "Nov": "0.522", + "Dec": "0.469", + "All-year": "0.726", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.525", + "Mar": "0.637", + "Apr": "0.795", + "May": "0.853", + "Jun": "0.899", + "Jul": "0.911", + "Aug": "0.838", + "Sep": "0.737", + "Oct": "0.577", + "Nov": "0.512", + "Dec": "0.466", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.449", + "Feb": "0.510", + "Mar": "0.633", + "Apr": "0.793", + "May": "0.847", + "Jun": "0.897", + "Jul": "0.905", + "Aug": "0.831", + "Sep": "0.728", + "Oct": "0.570", + "Nov": "0.508", + "Dec": "0.452", + "All-year": "0.717", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.418", + "Feb": "0.484", + "Mar": "0.604", + "Apr": "0.783", + "May": "0.834", + "Jun": "0.892", + "Jul": "0.902", + "Aug": "0.822", + "Sep": "0.701", + "Oct": "0.515", + "Nov": "0.469", + "Dec": "0.409", + "All-year": "0.703", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.329", + "Feb": "0.374", + "Mar": "0.543", + "Apr": "0.738", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.874", + "Aug": "0.797", + "Sep": "0.652", + "Oct": "0.440", + "Nov": "0.409", + "Dec": "0.339", + "All-year": "0.649", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.266", + "Mar": "0.450", + "Apr": "0.660", + "May": "0.739", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.732", + "Sep": "0.502", + "Oct": "0.306", + "Nov": "0.255", + "Dec": "0.228", + "All-year": "0.566", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.141", + "Mar": "0.353", + "Apr": "0.566", + "May": "0.602", + "Jun": "0.763", + "Jul": "0.724", + "Aug": "0.602", + "Sep": "0.437", + "Oct": "0.200", + "Nov": "0.172", + "Dec": "0.117", + "All-year": "0.508", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.339", + "Mar": "0.552", + "Apr": "0.754", + "May": "0.820", + "Jun": "0.854", + "Jul": "0.843", + "Aug": "0.796", + "Sep": "0.644", + "Oct": "0.465", + "Nov": "0.396", + "Dec": "0.363", + "All-year": "0.704", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.335", + "Feb": "0.339", + "Mar": "0.552", + "Apr": "0.751", + "May": "0.820", + "Jun": "0.851", + "Jul": "0.840", + "Aug": "0.793", + "Sep": "0.644", + "Oct": "0.465", + "Nov": "0.390", + "Dec": "0.363", + "All-year": "0.701", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.323", + "Feb": "0.324", + "Mar": "0.547", + "Apr": "0.747", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.836", + "Aug": "0.790", + "Sep": "0.642", + "Oct": "0.452", + "Nov": "0.382", + "Dec": "0.358", + "All-year": "0.693", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.316", + "Feb": "0.307", + "Mar": "0.540", + "Apr": "0.747", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.829", + "Aug": "0.786", + "Sep": "0.624", + "Oct": "0.452", + "Nov": "0.371", + "Dec": "0.348", + "All-year": "0.689", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.265", + "Mar": "0.501", + "Apr": "0.735", + "May": "0.793", + "Jun": "0.833", + "Jul": "0.828", + "Aug": "0.759", + "Sep": "0.593", + "Oct": "0.403", + "Nov": "0.318", + "Dec": "0.300", + "All-year": "0.672", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.184", + "Feb": "0.182", + "Mar": "0.339", + "Apr": "0.701", + "May": "0.743", + "Jun": "0.804", + "Jul": "0.796", + "Aug": "0.708", + "Sep": "0.553", + "Oct": "0.339", + "Nov": "0.239", + "Dec": "0.183", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.118", + "Mar": "0.235", + "Apr": "0.550", + "May": "0.617", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.543", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.144", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.129", + "Nov": "0.101", + "Dec": "0.000", + "All-year": "0.475", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.625", + "Feb": "0.756", + "Mar": "0.812", + "Apr": "0.918", + "May": "0.941", + "Jun": "0.952", + "Jul": "0.976", + "Aug": "0.933", + "Sep": "0.856", + "Oct": "0.737", + "Nov": "0.722", + "Dec": "0.655", + "All-year": "0.816", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.625", + "Feb": "0.754", + "Mar": "0.810", + "Apr": "0.917", + "May": "0.941", + "Jun": "0.951", + "Jul": "0.974", + "Aug": "0.931", + "Sep": "0.855", + "Oct": "0.732", + "Nov": "0.720", + "Dec": "0.652", + "All-year": "0.815", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.617", + "Feb": "0.749", + "Mar": "0.805", + "Apr": "0.911", + "May": "0.939", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.928", + "Sep": "0.854", + "Oct": "0.722", + "Nov": "0.715", + "Dec": "0.651", + "All-year": "0.808", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.617", + "Feb": "0.742", + "Mar": "0.801", + "Apr": "0.911", + "May": "0.939", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.925", + "Sep": "0.849", + "Oct": "0.719", + "Nov": "0.703", + "Dec": "0.648", + "All-year": "0.805", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.591", + "Feb": "0.723", + "Mar": "0.776", + "Apr": "0.900", + "May": "0.933", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.917", + "Sep": "0.828", + "Oct": "0.688", + "Nov": "0.681", + "Dec": "0.623", + "All-year": "0.789", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.536", + "Feb": "0.660", + "Mar": "0.734", + "Apr": "0.876", + "May": "0.925", + "Jun": "0.942", + "Jul": "0.958", + "Aug": "0.913", + "Sep": "0.812", + "Oct": "0.653", + "Nov": "0.626", + "Dec": "0.574", + "All-year": "0.759", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.452", + "Feb": "0.568", + "Mar": "0.680", + "Apr": "0.834", + "May": "0.887", + "Jun": "0.933", + "Jul": "0.956", + "Aug": "0.871", + "Sep": "0.742", + "Oct": "0.551", + "Nov": "0.511", + "Dec": "0.433", + "All-year": "0.699", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.301", + "Feb": "0.519", + "Mar": "0.608", + "Apr": "0.811", + "May": "0.878", + "Jun": "0.922", + "Jul": "0.934", + "Aug": "0.865", + "Sep": "0.690", + "Oct": "0.408", + "Nov": "0.408", + "Dec": "0.326", + "All-year": "0.642", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.565", + "Feb": "0.618", + "Mar": "0.720", + "Apr": "0.868", + "May": "0.925", + "Jun": "0.936", + "Jul": "0.943", + "Aug": "0.898", + "Sep": "0.816", + "Oct": "0.674", + "Nov": "0.606", + "Dec": "0.543", + "All-year": "0.794", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.559", + "Feb": "0.617", + "Mar": "0.716", + "Apr": "0.865", + "May": "0.923", + "Jun": "0.935", + "Jul": "0.942", + "Aug": "0.897", + "Sep": "0.815", + "Oct": "0.671", + "Nov": "0.606", + "Dec": "0.541", + "All-year": "0.793", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.546", + "Feb": "0.605", + "Mar": "0.712", + "Apr": "0.858", + "May": "0.919", + "Jun": "0.934", + "Jul": "0.939", + "Aug": "0.890", + "Sep": "0.808", + "Oct": "0.668", + "Nov": "0.599", + "Dec": "0.530", + "All-year": "0.787", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.542", + "Feb": "0.605", + "Mar": "0.705", + "Apr": "0.855", + "May": "0.916", + "Jun": "0.934", + "Jul": "0.939", + "Aug": "0.886", + "Sep": "0.802", + "Oct": "0.655", + "Nov": "0.593", + "Dec": "0.523", + "All-year": "0.784", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.499", + "Feb": "0.576", + "Mar": "0.697", + "Apr": "0.840", + "May": "0.915", + "Jun": "0.933", + "Jul": "0.939", + "Aug": "0.876", + "Sep": "0.792", + "Oct": "0.618", + "Nov": "0.574", + "Dec": "0.491", + "All-year": "0.771", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.407", + "Feb": "0.543", + "Mar": "0.656", + "Apr": "0.822", + "May": "0.887", + "Jun": "0.920", + "Jul": "0.934", + "Aug": "0.859", + "Sep": "0.757", + "Oct": "0.555", + "Nov": "0.476", + "Dec": "0.428", + "All-year": "0.737", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.359", + "Mar": "0.567", + "Apr": "0.760", + "May": "0.841", + "Jun": "0.885", + "Jul": "0.918", + "Aug": "0.802", + "Sep": "0.673", + "Oct": "0.415", + "Nov": "0.354", + "Dec": "0.288", + "All-year": "0.666", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.251", + "Mar": "0.447", + "Apr": "0.719", + "May": "0.774", + "Jun": "0.869", + "Jul": "0.851", + "Aug": "0.774", + "Sep": "0.533", + "Oct": "0.304", + "Nov": "0.268", + "Dec": "0.196", + "All-year": "0.616", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.420", + "Mar": "0.601", + "Apr": "0.808", + "May": "0.891", + "Jun": "0.922", + "Jul": "0.884", + "Aug": "0.863", + "Sep": "0.728", + "Oct": "0.583", + "Nov": "0.507", + "Dec": "0.426", + "All-year": "0.779", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.401", + "Feb": "0.420", + "Mar": "0.598", + "Apr": "0.803", + "May": "0.888", + "Jun": "0.919", + "Jul": "0.883", + "Aug": "0.863", + "Sep": "0.728", + "Oct": "0.582", + "Nov": "0.503", + "Dec": "0.426", + "All-year": "0.777", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.395", + "Feb": "0.405", + "Mar": "0.594", + "Apr": "0.799", + "May": "0.888", + "Jun": "0.919", + "Jul": "0.883", + "Aug": "0.860", + "Sep": "0.725", + "Oct": "0.556", + "Nov": "0.494", + "Dec": "0.417", + "All-year": "0.772", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.388", + "Feb": "0.396", + "Mar": "0.594", + "Apr": "0.796", + "May": "0.883", + "Jun": "0.915", + "Jul": "0.883", + "Aug": "0.860", + "Sep": "0.712", + "Oct": "0.546", + "Nov": "0.476", + "Dec": "0.405", + "All-year": "0.767", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.324", + "Mar": "0.531", + "Apr": "0.796", + "May": "0.872", + "Jun": "0.907", + "Jul": "0.875", + "Aug": "0.858", + "Sep": "0.700", + "Oct": "0.520", + "Nov": "0.432", + "Dec": "0.378", + "All-year": "0.750", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.290", + "Feb": "0.256", + "Mar": "0.492", + "Apr": "0.776", + "May": "0.836", + "Jun": "0.882", + "Jul": "0.848", + "Aug": "0.824", + "Sep": "0.665", + "Oct": "0.450", + "Nov": "0.326", + "Dec": "0.277", + "All-year": "0.702", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.131", + "Mar": "0.407", + "Apr": "0.699", + "May": "0.751", + "Jun": "0.814", + "Jul": "0.831", + "Aug": "0.727", + "Sep": "0.521", + "Oct": "0.312", + "Nov": "0.136", + "Dec": "0.091", + "All-year": "0.633", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.106", + "Mar": "0.147", + "Apr": "0.551", + "May": "0.638", + "Jun": "0.807", + "Jul": "0.694", + "Aug": "0.655", + "Sep": "0.418", + "Oct": "0.231", + "Nov": "0.124", + "Dec": "0.000", + "All-year": "0.576", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.801", + "Feb": "0.865", + "Mar": "0.895", + "Apr": "0.960", + "May": "0.992", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.937", + "Oct": "0.860", + "Nov": "0.849", + "Dec": "0.792", + "All-year": "0.900", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.801", + "Feb": "0.865", + "Mar": "0.895", + "Apr": "0.960", + "May": "0.992", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.937", + "Oct": "0.860", + "Nov": "0.849", + "Dec": "0.792", + "All-year": "0.900", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.800", + "Feb": "0.864", + "Mar": "0.895", + "Apr": "0.960", + "May": "0.992", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.937", + "Oct": "0.858", + "Nov": "0.847", + "Dec": "0.788", + "All-year": "0.898", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.796", + "Feb": "0.860", + "Mar": "0.892", + "Apr": "0.960", + "May": "0.992", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.937", + "Oct": "0.855", + "Nov": "0.844", + "Dec": "0.785", + "All-year": "0.895", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.778", + "Feb": "0.848", + "Mar": "0.890", + "Apr": "0.960", + "May": "0.992", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.936", + "Oct": "0.848", + "Nov": "0.835", + "Dec": "0.774", + "All-year": "0.890", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.747", + "Feb": "0.829", + "Mar": "0.874", + "Apr": "0.956", + "May": "0.992", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.981", + "Sep": "0.924", + "Oct": "0.839", + "Nov": "0.805", + "Dec": "0.734", + "All-year": "0.881", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.663", + "Feb": "0.779", + "Mar": "0.851", + "Apr": "0.956", + "May": "0.991", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.981", + "Sep": "0.907", + "Oct": "0.784", + "Nov": "0.755", + "Dec": "0.663", + "All-year": "0.856", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.588", + "Feb": "0.734", + "Mar": "0.803", + "Apr": "0.949", + "May": "0.989", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.973", + "Sep": "0.883", + "Oct": "0.748", + "Nov": "0.678", + "Dec": "0.632", + "All-year": "0.825", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.705", + "Feb": "0.776", + "Mar": "0.833", + "Apr": "0.930", + "May": "0.970", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.951", + "Sep": "0.897", + "Oct": "0.833", + "Nov": "0.749", + "Dec": "0.703", + "All-year": "0.886", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.704", + "Feb": "0.775", + "Mar": "0.833", + "Apr": "0.930", + "May": "0.970", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.951", + "Sep": "0.897", + "Oct": "0.833", + "Nov": "0.749", + "Dec": "0.703", + "All-year": "0.885", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.704", + "Feb": "0.775", + "Mar": "0.829", + "Apr": "0.930", + "May": "0.970", + "Jun": "0.972", + "Jul": "0.974", + "Aug": "0.951", + "Sep": "0.897", + "Oct": "0.830", + "Nov": "0.748", + "Dec": "0.699", + "All-year": "0.883", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.704", + "Feb": "0.775", + "Mar": "0.829", + "Apr": "0.930", + "May": "0.970", + "Jun": "0.972", + "Jul": "0.974", + "Aug": "0.951", + "Sep": "0.897", + "Oct": "0.827", + "Nov": "0.748", + "Dec": "0.687", + "All-year": "0.882", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.687", + "Feb": "0.751", + "Mar": "0.810", + "Apr": "0.930", + "May": "0.970", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.949", + "Sep": "0.891", + "Oct": "0.811", + "Nov": "0.740", + "Dec": "0.674", + "All-year": "0.873", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.608", + "Feb": "0.718", + "Mar": "0.796", + "Apr": "0.914", + "May": "0.961", + "Jun": "0.967", + "Jul": "0.970", + "Aug": "0.946", + "Sep": "0.881", + "Oct": "0.783", + "Nov": "0.703", + "Dec": "0.631", + "All-year": "0.858", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.534", + "Feb": "0.614", + "Mar": "0.748", + "Apr": "0.908", + "May": "0.956", + "Jun": "0.957", + "Jul": "0.970", + "Aug": "0.943", + "Sep": "0.843", + "Oct": "0.727", + "Nov": "0.574", + "Dec": "0.530", + "All-year": "0.826", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.483", + "Feb": "0.561", + "Mar": "0.696", + "Apr": "0.899", + "May": "0.948", + "Jun": "0.953", + "Jul": "0.966", + "Aug": "0.897", + "Sep": "0.841", + "Oct": "0.665", + "Nov": "0.486", + "Dec": "0.442", + "All-year": "0.794", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.543", + "Feb": "0.592", + "Mar": "0.785", + "Apr": "0.882", + "May": "0.960", + "Jun": "0.949", + "Jul": "0.954", + "Aug": "0.940", + "Sep": "0.849", + "Oct": "0.776", + "Nov": "0.675", + "Dec": "0.657", + "All-year": "0.872", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.543", + "Feb": "0.592", + "Mar": "0.785", + "Apr": "0.882", + "May": "0.960", + "Jun": "0.949", + "Jul": "0.954", + "Aug": "0.940", + "Sep": "0.849", + "Oct": "0.776", + "Nov": "0.675", + "Dec": "0.657", + "All-year": "0.871", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.539", + "Feb": "0.586", + "Mar": "0.780", + "Apr": "0.882", + "May": "0.960", + "Jun": "0.949", + "Jul": "0.954", + "Aug": "0.937", + "Sep": "0.849", + "Oct": "0.776", + "Nov": "0.669", + "Dec": "0.655", + "All-year": "0.871", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.539", + "Feb": "0.578", + "Mar": "0.780", + "Apr": "0.882", + "May": "0.960", + "Jun": "0.949", + "Jul": "0.954", + "Aug": "0.935", + "Sep": "0.849", + "Oct": "0.763", + "Nov": "0.669", + "Dec": "0.655", + "All-year": "0.869", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.491", + "Feb": "0.557", + "Mar": "0.765", + "Apr": "0.882", + "May": "0.944", + "Jun": "0.949", + "Jul": "0.954", + "Aug": "0.923", + "Sep": "0.849", + "Oct": "0.734", + "Nov": "0.654", + "Dec": "0.603", + "All-year": "0.860", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.462", + "Feb": "0.491", + "Mar": "0.734", + "Apr": "0.869", + "May": "0.937", + "Jun": "0.946", + "Jul": "0.952", + "Aug": "0.911", + "Sep": "0.800", + "Oct": "0.695", + "Nov": "0.614", + "Dec": "0.543", + "All-year": "0.847", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.398", + "Feb": "0.406", + "Mar": "0.645", + "Apr": "0.804", + "May": "0.917", + "Jun": "0.935", + "Jul": "0.933", + "Aug": "0.868", + "Sep": "0.733", + "Oct": "0.632", + "Nov": "0.535", + "Dec": "0.360", + "All-year": "0.797", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.243", + "Feb": "0.243", + "Mar": "0.519", + "Apr": "0.732", + "May": "0.906", + "Jun": "0.933", + "Jul": "0.918", + "Aug": "0.809", + "Sep": "0.732", + "Oct": "0.583", + "Nov": "0.336", + "Dec": "0.224", + "All-year": "0.769", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.806", + "Feb": "0.868", + "Mar": "0.896", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.862", + "Nov": "0.853", + "Dec": "0.798", + "All-year": "0.903", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.806", + "Feb": "0.868", + "Mar": "0.896", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.862", + "Nov": "0.853", + "Dec": "0.798", + "All-year": "0.902", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.804", + "Feb": "0.868", + "Mar": "0.895", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.861", + "Nov": "0.852", + "Dec": "0.795", + "All-year": "0.901", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.803", + "Feb": "0.862", + "Mar": "0.892", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.858", + "Nov": "0.846", + "Dec": "0.792", + "All-year": "0.899", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.791", + "Feb": "0.851", + "Mar": "0.892", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.853", + "Nov": "0.838", + "Dec": "0.778", + "All-year": "0.892", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.750", + "Feb": "0.833", + "Mar": "0.877", + "Apr": "0.957", + "May": "0.993", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.927", + "Oct": "0.845", + "Nov": "0.814", + "Dec": "0.739", + "All-year": "0.883", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.663", + "Feb": "0.781", + "Mar": "0.851", + "Apr": "0.957", + "May": "0.992", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.917", + "Oct": "0.802", + "Nov": "0.768", + "Dec": "0.686", + "All-year": "0.859", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.612", + "Feb": "0.736", + "Mar": "0.804", + "Apr": "0.952", + "May": "0.990", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.974", + "Sep": "0.890", + "Oct": "0.749", + "Nov": "0.681", + "Dec": "0.644", + "All-year": "0.829", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.709", + "Feb": "0.777", + "Mar": "0.835", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.976", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.836", + "Nov": "0.753", + "Dec": "0.713", + "All-year": "0.888", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.835", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.976", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.836", + "Nov": "0.753", + "Dec": "0.713", + "All-year": "0.888", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.834", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.835", + "Nov": "0.753", + "Dec": "0.707", + "All-year": "0.887", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.831", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.832", + "Nov": "0.753", + "Dec": "0.700", + "All-year": "0.885", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.697", + "Feb": "0.762", + "Mar": "0.812", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.969", + "Jul": "0.975", + "Aug": "0.949", + "Sep": "0.892", + "Oct": "0.817", + "Nov": "0.742", + "Dec": "0.687", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.616", + "Feb": "0.723", + "Mar": "0.797", + "Apr": "0.914", + "May": "0.961", + "Jun": "0.967", + "Jul": "0.970", + "Aug": "0.946", + "Sep": "0.885", + "Oct": "0.787", + "Nov": "0.721", + "Dec": "0.660", + "All-year": "0.863", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.569", + "Feb": "0.615", + "Mar": "0.761", + "Apr": "0.908", + "May": "0.956", + "Jun": "0.957", + "Jul": "0.970", + "Aug": "0.943", + "Sep": "0.851", + "Oct": "0.733", + "Nov": "0.604", + "Dec": "0.544", + "All-year": "0.830", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.487", + "Feb": "0.565", + "Mar": "0.696", + "Apr": "0.901", + "May": "0.950", + "Jun": "0.953", + "Jul": "0.967", + "Aug": "0.899", + "Sep": "0.843", + "Oct": "0.674", + "Nov": "0.490", + "Dec": "0.462", + "All-year": "0.796", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.599", + "Mar": "0.789", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.681", + "Dec": "0.663", + "All-year": "0.874", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.596", + "Mar": "0.789", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.679", + "Dec": "0.663", + "All-year": "0.874", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.543", + "Feb": "0.591", + "Mar": "0.784", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.679", + "Dec": "0.661", + "All-year": "0.873", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.543", + "Feb": "0.582", + "Mar": "0.784", + "Apr": "0.882", + "May": "0.960", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.773", + "Nov": "0.675", + "Dec": "0.661", + "All-year": "0.872", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.505", + "Feb": "0.563", + "Mar": "0.767", + "Apr": "0.882", + "May": "0.945", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.929", + "Sep": "0.849", + "Oct": "0.743", + "Nov": "0.661", + "Dec": "0.610", + "All-year": "0.864", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.474", + "Feb": "0.494", + "Mar": "0.738", + "Apr": "0.872", + "May": "0.937", + "Jun": "0.946", + "Jul": "0.952", + "Aug": "0.914", + "Sep": "0.800", + "Oct": "0.703", + "Nov": "0.622", + "Dec": "0.547", + "All-year": "0.849", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.405", + "Feb": "0.409", + "Mar": "0.649", + "Apr": "0.824", + "May": "0.917", + "Jun": "0.935", + "Jul": "0.933", + "Aug": "0.876", + "Sep": "0.735", + "Oct": "0.672", + "Nov": "0.535", + "Dec": "0.360", + "All-year": "0.807", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.243", + "Mar": "0.577", + "Apr": "0.733", + "May": "0.906", + "Jun": "0.933", + "Jul": "0.918", + "Aug": "0.810", + "Sep": "0.733", + "Oct": "0.594", + "Nov": "0.401", + "Dec": "0.243", + "All-year": "0.771", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.806", + "Feb": "0.868", + "Mar": "0.896", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.862", + "Nov": "0.853", + "Dec": "0.798", + "All-year": "0.903", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.806", + "Feb": "0.868", + "Mar": "0.896", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.862", + "Nov": "0.853", + "Dec": "0.798", + "All-year": "0.902", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.804", + "Feb": "0.868", + "Mar": "0.895", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.861", + "Nov": "0.852", + "Dec": "0.795", + "All-year": "0.901", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.803", + "Feb": "0.862", + "Mar": "0.892", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.990", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.858", + "Nov": "0.846", + "Dec": "0.792", + "All-year": "0.899", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.791", + "Feb": "0.851", + "Mar": "0.892", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.985", + "Sep": "0.939", + "Oct": "0.853", + "Nov": "0.838", + "Dec": "0.778", + "All-year": "0.892", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.750", + "Feb": "0.833", + "Mar": "0.877", + "Apr": "0.957", + "May": "0.993", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.927", + "Oct": "0.845", + "Nov": "0.814", + "Dec": "0.739", + "All-year": "0.883", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.663", + "Feb": "0.781", + "Mar": "0.851", + "Apr": "0.957", + "May": "0.992", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.983", + "Sep": "0.917", + "Oct": "0.802", + "Nov": "0.768", + "Dec": "0.686", + "All-year": "0.859", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.612", + "Feb": "0.736", + "Mar": "0.804", + "Apr": "0.952", + "May": "0.990", + "Jun": "0.988", + "Jul": "1.000", + "Aug": "0.974", + "Sep": "0.890", + "Oct": "0.749", + "Nov": "0.681", + "Dec": "0.644", + "All-year": "0.829", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.709", + "Feb": "0.777", + "Mar": "0.835", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.976", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.836", + "Nov": "0.753", + "Dec": "0.713", + "All-year": "0.888", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.835", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.976", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.836", + "Nov": "0.753", + "Dec": "0.713", + "All-year": "0.888", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.834", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.835", + "Nov": "0.753", + "Dec": "0.707", + "All-year": "0.887", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.775", + "Mar": "0.831", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.972", + "Jul": "0.975", + "Aug": "0.954", + "Sep": "0.900", + "Oct": "0.832", + "Nov": "0.753", + "Dec": "0.700", + "All-year": "0.885", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.697", + "Feb": "0.762", + "Mar": "0.812", + "Apr": "0.931", + "May": "0.971", + "Jun": "0.969", + "Jul": "0.975", + "Aug": "0.949", + "Sep": "0.892", + "Oct": "0.817", + "Nov": "0.742", + "Dec": "0.687", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.616", + "Feb": "0.723", + "Mar": "0.797", + "Apr": "0.914", + "May": "0.961", + "Jun": "0.967", + "Jul": "0.970", + "Aug": "0.946", + "Sep": "0.885", + "Oct": "0.787", + "Nov": "0.721", + "Dec": "0.660", + "All-year": "0.863", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.569", + "Feb": "0.615", + "Mar": "0.761", + "Apr": "0.908", + "May": "0.956", + "Jun": "0.957", + "Jul": "0.970", + "Aug": "0.943", + "Sep": "0.851", + "Oct": "0.733", + "Nov": "0.604", + "Dec": "0.544", + "All-year": "0.830", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.487", + "Feb": "0.565", + "Mar": "0.696", + "Apr": "0.901", + "May": "0.950", + "Jun": "0.953", + "Jul": "0.967", + "Aug": "0.899", + "Sep": "0.843", + "Oct": "0.674", + "Nov": "0.490", + "Dec": "0.462", + "All-year": "0.796", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.599", + "Mar": "0.789", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.681", + "Dec": "0.663", + "All-year": "0.874", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.596", + "Mar": "0.789", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.679", + "Dec": "0.663", + "All-year": "0.874", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.543", + "Feb": "0.591", + "Mar": "0.784", + "Apr": "0.882", + "May": "0.961", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.786", + "Nov": "0.679", + "Dec": "0.661", + "All-year": "0.873", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.543", + "Feb": "0.582", + "Mar": "0.784", + "Apr": "0.882", + "May": "0.960", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.941", + "Sep": "0.849", + "Oct": "0.773", + "Nov": "0.675", + "Dec": "0.661", + "All-year": "0.872", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.505", + "Feb": "0.563", + "Mar": "0.767", + "Apr": "0.882", + "May": "0.945", + "Jun": "0.949", + "Jul": "0.957", + "Aug": "0.929", + "Sep": "0.849", + "Oct": "0.743", + "Nov": "0.661", + "Dec": "0.610", + "All-year": "0.864", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.474", + "Feb": "0.494", + "Mar": "0.738", + "Apr": "0.872", + "May": "0.937", + "Jun": "0.946", + "Jul": "0.952", + "Aug": "0.914", + "Sep": "0.800", + "Oct": "0.703", + "Nov": "0.622", + "Dec": "0.547", + "All-year": "0.849", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.405", + "Feb": "0.409", + "Mar": "0.649", + "Apr": "0.824", + "May": "0.917", + "Jun": "0.935", + "Jul": "0.933", + "Aug": "0.876", + "Sep": "0.735", + "Oct": "0.672", + "Nov": "0.535", + "Dec": "0.360", + "All-year": "0.807", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.243", + "Mar": "0.577", + "Apr": "0.733", + "May": "0.906", + "Jun": "0.933", + "Jul": "0.918", + "Aug": "0.810", + "Sep": "0.733", + "Oct": "0.594", + "Nov": "0.401", + "Dec": "0.243", + "All-year": "0.771", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.019", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.017", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.010", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.101", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.024", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.181", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.286", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.179", + "Nov": "0.174", + "Dec": "0.173", + "All-year": "0.283", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.206", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.169", + "Dec": "0.168", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.194", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.360", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.152", + "Dec": "0.155", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.229", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.348", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.119", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.345", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.116", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.267", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.330", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.114", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.254", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.316", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.085", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.077", + "Mar": "0.128", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.211", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.071", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.130", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.245", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.073", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.130", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.128", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.065", + "Dec": "0.070", + "All-year": "0.236", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.288", + "Feb": "0.400", + "Mar": "0.425", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.631", + "Sep": "0.529", + "Oct": "0.343", + "Nov": "0.324", + "Dec": "0.317", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.285", + "Feb": "0.398", + "Mar": "0.422", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.699", + "Aug": "0.630", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.320", + "Dec": "0.312", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.280", + "Feb": "0.389", + "Mar": "0.408", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.669", + "Jul": "0.688", + "Aug": "0.625", + "Sep": "0.519", + "Oct": "0.321", + "Nov": "0.312", + "Dec": "0.295", + "All-year": "0.470", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.273", + "Feb": "0.384", + "Mar": "0.401", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.686", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.312", + "Nov": "0.310", + "Dec": "0.285", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.655", + "Aug": "0.587", + "Sep": "0.483", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.255", + "All-year": "0.432", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.200", + "Feb": "0.249", + "Mar": "0.339", + "Apr": "0.481", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.197", + "Feb": "0.232", + "Mar": "0.370", + "Apr": "0.527", + "May": "0.544", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.282", + "Nov": "0.241", + "Dec": "0.235", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.196", + "Feb": "0.231", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.542", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.279", + "Nov": "0.238", + "Dec": "0.233", + "All-year": "0.464", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.225", + "Mar": "0.354", + "Apr": "0.513", + "May": "0.529", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.561", + "Sep": "0.440", + "Oct": "0.271", + "Nov": "0.230", + "Dec": "0.226", + "All-year": "0.454", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.213", + "Mar": "0.343", + "Apr": "0.506", + "May": "0.526", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.214", + "All-year": "0.449", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.182", + "Mar": "0.295", + "Apr": "0.472", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.172", + "All-year": "0.415", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.314", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.113", + "All-year": "0.356", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.159", + "Mar": "0.255", + "Apr": "0.478", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.501", + "Aug": "0.505", + "Sep": "0.340", + "Oct": "0.227", + "Nov": "0.178", + "Dec": "0.142", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.157", + "Mar": "0.255", + "Apr": "0.475", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.496", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.219", + "Nov": "0.176", + "Dec": "0.141", + "All-year": "0.443", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.136", + "Mar": "0.243", + "Apr": "0.465", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.488", + "Sep": "0.331", + "Oct": "0.207", + "Nov": "0.167", + "Dec": "0.134", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.476", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.142", + "Dec": "0.133", + "All-year": "0.425", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.101", + "Mar": "0.190", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.151", + "Nov": "0.125", + "Dec": "0.108", + "All-year": "0.390", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.133", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.193", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.366", + "Feb": "0.472", + "Mar": "0.535", + "Apr": "0.667", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.813", + "Aug": "0.743", + "Sep": "0.634", + "Oct": "0.435", + "Nov": "0.417", + "Dec": "0.403", + "All-year": "0.581", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.472", + "Mar": "0.534", + "Apr": "0.665", + "May": "0.724", + "Jun": "0.799", + "Jul": "0.811", + "Aug": "0.741", + "Sep": "0.630", + "Oct": "0.433", + "Nov": "0.415", + "Dec": "0.399", + "All-year": "0.579", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.471", + "Mar": "0.525", + "Apr": "0.660", + "May": "0.720", + "Jun": "0.792", + "Jul": "0.806", + "Aug": "0.734", + "Sep": "0.619", + "Oct": "0.423", + "Nov": "0.405", + "Dec": "0.392", + "All-year": "0.572", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.467", + "Mar": "0.521", + "Apr": "0.655", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.611", + "Oct": "0.413", + "Nov": "0.389", + "Dec": "0.383", + "All-year": "0.566", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.322", + "Feb": "0.426", + "Mar": "0.487", + "Apr": "0.626", + "May": "0.695", + "Jun": "0.774", + "Jul": "0.778", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.382", + "Nov": "0.353", + "Dec": "0.327", + "All-year": "0.538", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.362", + "Mar": "0.434", + "Apr": "0.597", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.740", + "Aug": "0.652", + "Sep": "0.526", + "Oct": "0.319", + "Nov": "0.258", + "Dec": "0.259", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.226", + "Mar": "0.338", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.154", + "All-year": "0.382", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.363", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.344", + "Mar": "0.478", + "Apr": "0.627", + "May": "0.676", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.663", + "Sep": "0.537", + "Oct": "0.390", + "Nov": "0.349", + "Dec": "0.305", + "All-year": "0.565", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.342", + "Mar": "0.476", + "Apr": "0.627", + "May": "0.675", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.533", + "Oct": "0.386", + "Nov": "0.346", + "Dec": "0.304", + "All-year": "0.562", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.326", + "Mar": "0.468", + "Apr": "0.619", + "May": "0.656", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.654", + "Sep": "0.522", + "Oct": "0.377", + "Nov": "0.342", + "Dec": "0.297", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.256", + "Feb": "0.326", + "Mar": "0.461", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.654", + "Sep": "0.512", + "Oct": "0.362", + "Nov": "0.329", + "Dec": "0.290", + "All-year": "0.550", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.282", + "Mar": "0.436", + "Apr": "0.586", + "May": "0.618", + "Jun": "0.713", + "Jul": "0.720", + "Aug": "0.626", + "Sep": "0.484", + "Oct": "0.328", + "Nov": "0.286", + "Dec": "0.260", + "All-year": "0.523", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.250", + "Mar": "0.366", + "Apr": "0.526", + "May": "0.563", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.192", + "Dec": "0.171", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.120", + "Mar": "0.257", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.033", + "All-year": "0.360", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.275", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.349", + "Apr": "0.593", + "May": "0.601", + "Jun": "0.657", + "Jul": "0.651", + "Aug": "0.620", + "Sep": "0.431", + "Oct": "0.289", + "Nov": "0.249", + "Dec": "0.198", + "All-year": "0.542", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.347", + "Apr": "0.593", + "May": "0.598", + "Jun": "0.654", + "Jul": "0.651", + "Aug": "0.618", + "Sep": "0.426", + "Oct": "0.282", + "Nov": "0.249", + "Dec": "0.195", + "All-year": "0.539", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.184", + "Feb": "0.203", + "Mar": "0.341", + "Apr": "0.575", + "May": "0.582", + "Jun": "0.650", + "Jul": "0.636", + "Aug": "0.612", + "Sep": "0.414", + "Oct": "0.278", + "Nov": "0.235", + "Dec": "0.184", + "All-year": "0.530", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.169", + "Feb": "0.202", + "Mar": "0.335", + "Apr": "0.575", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.629", + "Aug": "0.606", + "Sep": "0.408", + "Oct": "0.267", + "Nov": "0.215", + "Dec": "0.184", + "All-year": "0.525", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.298", + "Apr": "0.567", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.602", + "Aug": "0.552", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.192", + "Dec": "0.134", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.092", + "Mar": "0.203", + "Apr": "0.460", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.125", + "Nov": "0.057", + "Dec": "0.071", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.289", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.335", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.332", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.241", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.447", + "Feb": "0.570", + "Mar": "0.636", + "Apr": "0.764", + "May": "0.822", + "Jun": "0.885", + "Jul": "0.886", + "Aug": "0.827", + "Sep": "0.710", + "Oct": "0.551", + "Nov": "0.505", + "Dec": "0.490", + "All-year": "0.676", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.440", + "Feb": "0.567", + "Mar": "0.636", + "Apr": "0.761", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.885", + "Aug": "0.826", + "Sep": "0.708", + "Oct": "0.541", + "Nov": "0.502", + "Dec": "0.484", + "All-year": "0.673", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.434", + "Feb": "0.558", + "Mar": "0.622", + "Apr": "0.756", + "May": "0.819", + "Jun": "0.874", + "Jul": "0.882", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.522", + "Nov": "0.499", + "Dec": "0.477", + "All-year": "0.664", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.423", + "Feb": "0.551", + "Mar": "0.620", + "Apr": "0.756", + "May": "0.817", + "Jun": "0.870", + "Jul": "0.878", + "Aug": "0.819", + "Sep": "0.697", + "Oct": "0.509", + "Nov": "0.492", + "Dec": "0.462", + "All-year": "0.660", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.404", + "Feb": "0.519", + "Mar": "0.597", + "Apr": "0.729", + "May": "0.804", + "Jun": "0.867", + "Jul": "0.860", + "Aug": "0.815", + "Sep": "0.673", + "Oct": "0.483", + "Nov": "0.451", + "Dec": "0.433", + "All-year": "0.635", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.355", + "Feb": "0.461", + "Mar": "0.559", + "Apr": "0.697", + "May": "0.756", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.782", + "Sep": "0.644", + "Oct": "0.404", + "Nov": "0.385", + "Dec": "0.376", + "All-year": "0.585", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.223", + "Feb": "0.333", + "Mar": "0.403", + "Apr": "0.622", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.796", + "Aug": "0.722", + "Sep": "0.528", + "Oct": "0.302", + "Nov": "0.233", + "Dec": "0.226", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.533", + "May": "0.544", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.416", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.437", + "Mar": "0.550", + "Apr": "0.730", + "May": "0.778", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.771", + "Sep": "0.642", + "Oct": "0.474", + "Nov": "0.445", + "Dec": "0.390", + "All-year": "0.652", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.437", + "Mar": "0.548", + "Apr": "0.728", + "May": "0.776", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.640", + "Oct": "0.470", + "Nov": "0.437", + "Dec": "0.386", + "All-year": "0.650", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.425", + "Mar": "0.538", + "Apr": "0.717", + "May": "0.769", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.766", + "Sep": "0.635", + "Oct": "0.461", + "Nov": "0.425", + "Dec": "0.376", + "All-year": "0.641", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.421", + "Mar": "0.530", + "Apr": "0.715", + "May": "0.760", + "Jun": "0.829", + "Jul": "0.837", + "Aug": "0.757", + "Sep": "0.628", + "Oct": "0.452", + "Nov": "0.418", + "Dec": "0.362", + "All-year": "0.637", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.388", + "Mar": "0.506", + "Apr": "0.703", + "May": "0.751", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.753", + "Sep": "0.603", + "Oct": "0.423", + "Nov": "0.386", + "Dec": "0.331", + "All-year": "0.615", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.307", + "Mar": "0.448", + "Apr": "0.652", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.783", + "Aug": "0.687", + "Sep": "0.552", + "Oct": "0.333", + "Nov": "0.272", + "Dec": "0.242", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.170", + "Mar": "0.312", + "Apr": "0.545", + "May": "0.594", + "Jun": "0.686", + "Jul": "0.710", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.192", + "Nov": "0.145", + "Dec": "0.122", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.111", + "Mar": "0.208", + "Apr": "0.431", + "May": "0.450", + "Jun": "0.582", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.386", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.445", + "Apr": "0.692", + "May": "0.722", + "Jun": "0.799", + "Jul": "0.763", + "Aug": "0.708", + "Sep": "0.560", + "Oct": "0.379", + "Nov": "0.307", + "Dec": "0.273", + "All-year": "0.626", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.442", + "Apr": "0.686", + "May": "0.714", + "Jun": "0.796", + "Jul": "0.761", + "Aug": "0.707", + "Sep": "0.558", + "Oct": "0.378", + "Nov": "0.303", + "Dec": "0.270", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.292", + "Mar": "0.438", + "Apr": "0.682", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.751", + "Aug": "0.704", + "Sep": "0.551", + "Oct": "0.372", + "Nov": "0.282", + "Dec": "0.261", + "All-year": "0.619", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.284", + "Mar": "0.425", + "Apr": "0.668", + "May": "0.706", + "Jun": "0.772", + "Jul": "0.751", + "Aug": "0.691", + "Sep": "0.535", + "Oct": "0.360", + "Nov": "0.275", + "Dec": "0.243", + "All-year": "0.612", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.231", + "Mar": "0.397", + "Apr": "0.640", + "May": "0.703", + "Jun": "0.760", + "Jul": "0.739", + "Aug": "0.652", + "Sep": "0.496", + "Oct": "0.316", + "Nov": "0.206", + "Dec": "0.206", + "All-year": "0.587", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.167", + "Mar": "0.263", + "Apr": "0.596", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.668", + "Aug": "0.591", + "Sep": "0.465", + "Oct": "0.231", + "Nov": "0.151", + "Dec": "0.136", + "All-year": "0.533", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.153", + "Apr": "0.456", + "May": "0.433", + "Jun": "0.564", + "Jul": "0.477", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.142", + "Nov": "0.068", + "Dec": "0.000", + "All-year": "0.449", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.493", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.547", + "Feb": "0.662", + "Mar": "0.733", + "Apr": "0.857", + "May": "0.897", + "Jun": "0.925", + "Jul": "0.942", + "Aug": "0.893", + "Sep": "0.794", + "Oct": "0.651", + "Nov": "0.635", + "Dec": "0.585", + "All-year": "0.752", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.544", + "Feb": "0.661", + "Mar": "0.725", + "Apr": "0.854", + "May": "0.896", + "Jun": "0.924", + "Jul": "0.940", + "Aug": "0.892", + "Sep": "0.793", + "Oct": "0.649", + "Nov": "0.633", + "Dec": "0.581", + "All-year": "0.750", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.533", + "Feb": "0.659", + "Mar": "0.718", + "Apr": "0.846", + "May": "0.890", + "Jun": "0.920", + "Jul": "0.940", + "Aug": "0.889", + "Sep": "0.787", + "Oct": "0.638", + "Nov": "0.625", + "Dec": "0.570", + "All-year": "0.743", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.530", + "Feb": "0.652", + "Mar": "0.712", + "Apr": "0.842", + "May": "0.888", + "Jun": "0.920", + "Jul": "0.938", + "Aug": "0.888", + "Sep": "0.784", + "Oct": "0.622", + "Nov": "0.608", + "Dec": "0.558", + "All-year": "0.740", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.497", + "Feb": "0.611", + "Mar": "0.700", + "Apr": "0.828", + "May": "0.876", + "Jun": "0.919", + "Jul": "0.927", + "Aug": "0.884", + "Sep": "0.758", + "Oct": "0.604", + "Nov": "0.584", + "Dec": "0.545", + "All-year": "0.722", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.431", + "Feb": "0.579", + "Mar": "0.667", + "Apr": "0.783", + "May": "0.864", + "Jun": "0.911", + "Jul": "0.911", + "Aug": "0.857", + "Sep": "0.717", + "Oct": "0.564", + "Nov": "0.490", + "Dec": "0.449", + "All-year": "0.684", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.472", + "Mar": "0.551", + "Apr": "0.733", + "May": "0.806", + "Jun": "0.879", + "Jul": "0.896", + "Aug": "0.795", + "Sep": "0.650", + "Oct": "0.435", + "Nov": "0.369", + "Dec": "0.337", + "All-year": "0.605", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.365", + "Mar": "0.427", + "Apr": "0.672", + "May": "0.737", + "Jun": "0.857", + "Jul": "0.844", + "Aug": "0.773", + "Sep": "0.547", + "Oct": "0.312", + "Nov": "0.291", + "Dec": "0.292", + "All-year": "0.545", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.545", + "Mar": "0.642", + "Apr": "0.804", + "May": "0.862", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.840", + "Sep": "0.750", + "Oct": "0.587", + "Nov": "0.530", + "Dec": "0.476", + "All-year": "0.731", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.472", + "Feb": "0.541", + "Mar": "0.642", + "Apr": "0.803", + "May": "0.858", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.839", + "Sep": "0.750", + "Oct": "0.583", + "Nov": "0.526", + "Dec": "0.472", + "All-year": "0.729", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.462", + "Feb": "0.534", + "Mar": "0.638", + "Apr": "0.796", + "May": "0.853", + "Jun": "0.899", + "Jul": "0.911", + "Aug": "0.838", + "Sep": "0.737", + "Oct": "0.577", + "Nov": "0.516", + "Dec": "0.469", + "All-year": "0.722", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.455", + "Feb": "0.523", + "Mar": "0.633", + "Apr": "0.794", + "May": "0.847", + "Jun": "0.897", + "Jul": "0.905", + "Aug": "0.831", + "Sep": "0.728", + "Oct": "0.574", + "Nov": "0.509", + "Dec": "0.457", + "All-year": "0.719", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.419", + "Feb": "0.490", + "Mar": "0.604", + "Apr": "0.783", + "May": "0.834", + "Jun": "0.892", + "Jul": "0.902", + "Aug": "0.822", + "Sep": "0.701", + "Oct": "0.515", + "Nov": "0.470", + "Dec": "0.411", + "All-year": "0.703", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.329", + "Feb": "0.385", + "Mar": "0.543", + "Apr": "0.742", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.874", + "Aug": "0.797", + "Sep": "0.652", + "Oct": "0.440", + "Nov": "0.412", + "Dec": "0.340", + "All-year": "0.649", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.266", + "Mar": "0.450", + "Apr": "0.661", + "May": "0.739", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.732", + "Sep": "0.502", + "Oct": "0.308", + "Nov": "0.255", + "Dec": "0.228", + "All-year": "0.566", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.141", + "Mar": "0.353", + "Apr": "0.566", + "May": "0.602", + "Jun": "0.763", + "Jul": "0.724", + "Aug": "0.602", + "Sep": "0.437", + "Oct": "0.200", + "Nov": "0.172", + "Dec": "0.117", + "All-year": "0.508", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.342", + "Mar": "0.567", + "Apr": "0.756", + "May": "0.820", + "Jun": "0.854", + "Jul": "0.843", + "Aug": "0.797", + "Sep": "0.647", + "Oct": "0.470", + "Nov": "0.397", + "Dec": "0.371", + "All-year": "0.706", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.337", + "Feb": "0.342", + "Mar": "0.567", + "Apr": "0.753", + "May": "0.820", + "Jun": "0.851", + "Jul": "0.840", + "Aug": "0.793", + "Sep": "0.646", + "Oct": "0.470", + "Nov": "0.392", + "Dec": "0.370", + "All-year": "0.704", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.324", + "Feb": "0.327", + "Mar": "0.562", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.836", + "Aug": "0.790", + "Sep": "0.643", + "Oct": "0.457", + "Nov": "0.383", + "Dec": "0.364", + "All-year": "0.697", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.316", + "Feb": "0.310", + "Mar": "0.555", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.829", + "Aug": "0.786", + "Sep": "0.628", + "Oct": "0.454", + "Nov": "0.372", + "Dec": "0.352", + "All-year": "0.692", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.265", + "Mar": "0.512", + "Apr": "0.736", + "May": "0.793", + "Jun": "0.833", + "Jul": "0.828", + "Aug": "0.759", + "Sep": "0.610", + "Oct": "0.419", + "Nov": "0.318", + "Dec": "0.309", + "All-year": "0.672", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.182", + "Mar": "0.344", + "Apr": "0.701", + "May": "0.743", + "Jun": "0.804", + "Jul": "0.797", + "Aug": "0.708", + "Sep": "0.553", + "Oct": "0.339", + "Nov": "0.239", + "Dec": "0.216", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.118", + "Mar": "0.247", + "Apr": "0.550", + "May": "0.617", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.543", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.147", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.129", + "Nov": "0.101", + "Dec": "0.000", + "All-year": "0.475", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.640", + "Feb": "0.763", + "Mar": "0.819", + "Apr": "0.918", + "May": "0.942", + "Jun": "0.952", + "Jul": "0.976", + "Aug": "0.934", + "Sep": "0.858", + "Oct": "0.738", + "Nov": "0.723", + "Dec": "0.664", + "All-year": "0.821", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.638", + "Feb": "0.763", + "Mar": "0.817", + "Apr": "0.917", + "May": "0.942", + "Jun": "0.951", + "Jul": "0.974", + "Aug": "0.933", + "Sep": "0.858", + "Oct": "0.733", + "Nov": "0.722", + "Dec": "0.662", + "All-year": "0.820", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.629", + "Feb": "0.758", + "Mar": "0.810", + "Apr": "0.914", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.929", + "Sep": "0.855", + "Oct": "0.726", + "Nov": "0.717", + "Dec": "0.659", + "All-year": "0.813", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.625", + "Feb": "0.750", + "Mar": "0.805", + "Apr": "0.911", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.926", + "Sep": "0.850", + "Oct": "0.722", + "Nov": "0.708", + "Dec": "0.656", + "All-year": "0.809", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.599", + "Feb": "0.725", + "Mar": "0.784", + "Apr": "0.902", + "May": "0.936", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.918", + "Sep": "0.828", + "Oct": "0.690", + "Nov": "0.688", + "Dec": "0.630", + "All-year": "0.793", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.543", + "Feb": "0.673", + "Mar": "0.735", + "Apr": "0.878", + "May": "0.925", + "Jun": "0.942", + "Jul": "0.958", + "Aug": "0.913", + "Sep": "0.812", + "Oct": "0.655", + "Nov": "0.634", + "Dec": "0.586", + "All-year": "0.764", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.454", + "Feb": "0.595", + "Mar": "0.680", + "Apr": "0.839", + "May": "0.887", + "Jun": "0.935", + "Jul": "0.956", + "Aug": "0.872", + "Sep": "0.744", + "Oct": "0.552", + "Nov": "0.519", + "Dec": "0.435", + "All-year": "0.702", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.309", + "Feb": "0.519", + "Mar": "0.608", + "Apr": "0.811", + "May": "0.880", + "Jun": "0.922", + "Jul": "0.934", + "Aug": "0.868", + "Sep": "0.690", + "Oct": "0.408", + "Nov": "0.413", + "Dec": "0.326", + "All-year": "0.644", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.577", + "Feb": "0.631", + "Mar": "0.726", + "Apr": "0.869", + "May": "0.926", + "Jun": "0.938", + "Jul": "0.944", + "Aug": "0.898", + "Sep": "0.819", + "Oct": "0.678", + "Nov": "0.614", + "Dec": "0.554", + "All-year": "0.801", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.569", + "Feb": "0.629", + "Mar": "0.722", + "Apr": "0.869", + "May": "0.923", + "Jun": "0.937", + "Jul": "0.944", + "Aug": "0.897", + "Sep": "0.817", + "Oct": "0.675", + "Nov": "0.612", + "Dec": "0.551", + "All-year": "0.799", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.557", + "Feb": "0.615", + "Mar": "0.714", + "Apr": "0.863", + "May": "0.919", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.892", + "Sep": "0.813", + "Oct": "0.670", + "Nov": "0.606", + "Dec": "0.539", + "All-year": "0.793", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.556", + "Feb": "0.615", + "Mar": "0.706", + "Apr": "0.863", + "May": "0.916", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.889", + "Sep": "0.804", + "Oct": "0.657", + "Nov": "0.601", + "Dec": "0.534", + "All-year": "0.790", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.507", + "Feb": "0.580", + "Mar": "0.697", + "Apr": "0.845", + "May": "0.915", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.876", + "Sep": "0.794", + "Oct": "0.622", + "Nov": "0.577", + "Dec": "0.503", + "All-year": "0.776", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.411", + "Feb": "0.550", + "Mar": "0.659", + "Apr": "0.834", + "May": "0.887", + "Jun": "0.920", + "Jul": "0.935", + "Aug": "0.860", + "Sep": "0.761", + "Oct": "0.556", + "Nov": "0.495", + "Dec": "0.435", + "All-year": "0.742", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.379", + "Mar": "0.569", + "Apr": "0.781", + "May": "0.843", + "Jun": "0.886", + "Jul": "0.919", + "Aug": "0.804", + "Sep": "0.676", + "Oct": "0.415", + "Nov": "0.354", + "Dec": "0.288", + "All-year": "0.668", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.217", + "Feb": "0.251", + "Mar": "0.447", + "Apr": "0.719", + "May": "0.774", + "Jun": "0.869", + "Jul": "0.853", + "Aug": "0.774", + "Sep": "0.533", + "Oct": "0.304", + "Nov": "0.292", + "Dec": "0.196", + "All-year": "0.617", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.417", + "Feb": "0.440", + "Mar": "0.628", + "Apr": "0.821", + "May": "0.895", + "Jun": "0.924", + "Jul": "0.888", + "Aug": "0.870", + "Sep": "0.739", + "Oct": "0.590", + "Nov": "0.512", + "Dec": "0.452", + "All-year": "0.782", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.406", + "Feb": "0.440", + "Mar": "0.625", + "Apr": "0.821", + "May": "0.892", + "Jun": "0.921", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.739", + "Oct": "0.589", + "Nov": "0.510", + "Dec": "0.450", + "All-year": "0.780", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.397", + "Feb": "0.426", + "Mar": "0.616", + "Apr": "0.818", + "May": "0.891", + "Jun": "0.919", + "Jul": "0.886", + "Aug": "0.860", + "Sep": "0.735", + "Oct": "0.563", + "Nov": "0.506", + "Dec": "0.445", + "All-year": "0.774", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.388", + "Feb": "0.417", + "Mar": "0.616", + "Apr": "0.818", + "May": "0.883", + "Jun": "0.915", + "Jul": "0.886", + "Aug": "0.860", + "Sep": "0.729", + "Oct": "0.556", + "Nov": "0.479", + "Dec": "0.427", + "All-year": "0.769", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.327", + "Mar": "0.550", + "Apr": "0.810", + "May": "0.872", + "Jun": "0.907", + "Jul": "0.878", + "Aug": "0.858", + "Sep": "0.721", + "Oct": "0.522", + "Nov": "0.432", + "Dec": "0.399", + "All-year": "0.754", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.304", + "Feb": "0.259", + "Mar": "0.507", + "Apr": "0.790", + "May": "0.836", + "Jun": "0.882", + "Jul": "0.851", + "Aug": "0.824", + "Sep": "0.669", + "Oct": "0.452", + "Nov": "0.335", + "Dec": "0.285", + "All-year": "0.705", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.132", + "Mar": "0.418", + "Apr": "0.701", + "May": "0.753", + "Jun": "0.814", + "Jul": "0.831", + "Aug": "0.727", + "Sep": "0.528", + "Oct": "0.315", + "Nov": "0.143", + "Dec": "0.091", + "All-year": "0.635", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.108", + "Mar": "0.224", + "Apr": "0.556", + "May": "0.638", + "Jun": "0.807", + "Jul": "0.694", + "Aug": "0.655", + "Sep": "0.418", + "Oct": "0.231", + "Nov": "0.124", + "Dec": "0.000", + "All-year": "0.577", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.870", + "Feb": "0.906", + "Mar": "0.938", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.993", + "Sep": "0.965", + "Oct": "0.915", + "Nov": "0.902", + "Dec": "0.861", + "All-year": "0.934", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.868", + "Feb": "0.906", + "Mar": "0.938", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.993", + "Sep": "0.965", + "Oct": "0.915", + "Nov": "0.901", + "Dec": "0.858", + "All-year": "0.933", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.863", + "Feb": "0.905", + "Mar": "0.938", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.992", + "Sep": "0.965", + "Oct": "0.915", + "Nov": "0.900", + "Dec": "0.857", + "All-year": "0.931", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.863", + "Feb": "0.897", + "Mar": "0.936", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.992", + "Sep": "0.965", + "Oct": "0.911", + "Nov": "0.891", + "Dec": "0.850", + "All-year": "0.929", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.854", + "Feb": "0.894", + "Mar": "0.927", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.992", + "Sep": "0.957", + "Oct": "0.901", + "Nov": "0.881", + "Dec": "0.835", + "All-year": "0.923", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.815", + "Feb": "0.868", + "Mar": "0.907", + "Apr": "0.971", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.992", + "Sep": "0.953", + "Oct": "0.890", + "Nov": "0.860", + "Dec": "0.806", + "All-year": "0.909", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.761", + "Feb": "0.856", + "Mar": "0.895", + "Apr": "0.971", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.990", + "Sep": "0.928", + "Oct": "0.837", + "Nov": "0.797", + "Dec": "0.763", + "All-year": "0.890", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.687", + "Feb": "0.793", + "Mar": "0.854", + "Apr": "0.970", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.989", + "Sep": "0.901", + "Oct": "0.788", + "Nov": "0.716", + "Dec": "0.677", + "All-year": "0.862", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.790", + "Feb": "0.835", + "Mar": "0.879", + "Apr": "0.963", + "May": "0.991", + "Jun": "0.982", + "Jul": "0.987", + "Aug": "0.972", + "Sep": "0.933", + "Oct": "0.888", + "Nov": "0.823", + "Dec": "0.784", + "All-year": "0.921", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.787", + "Feb": "0.833", + "Mar": "0.879", + "Apr": "0.963", + "May": "0.991", + "Jun": "0.982", + "Jul": "0.987", + "Aug": "0.972", + "Sep": "0.933", + "Oct": "0.887", + "Nov": "0.822", + "Dec": "0.779", + "All-year": "0.921", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.778", + "Feb": "0.833", + "Mar": "0.878", + "Apr": "0.963", + "May": "0.991", + "Jun": "0.982", + "Jul": "0.986", + "Aug": "0.972", + "Sep": "0.933", + "Oct": "0.883", + "Nov": "0.820", + "Dec": "0.769", + "All-year": "0.919", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.778", + "Feb": "0.827", + "Mar": "0.878", + "Apr": "0.963", + "May": "0.991", + "Jun": "0.982", + "Jul": "0.986", + "Aug": "0.972", + "Sep": "0.930", + "Oct": "0.877", + "Nov": "0.817", + "Dec": "0.765", + "All-year": "0.918", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.766", + "Feb": "0.817", + "Mar": "0.868", + "Apr": "0.963", + "May": "0.991", + "Jun": "0.982", + "Jul": "0.986", + "Aug": "0.967", + "Sep": "0.924", + "Oct": "0.860", + "Nov": "0.806", + "Dec": "0.746", + "All-year": "0.912", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.714", + "Feb": "0.790", + "Mar": "0.867", + "Apr": "0.953", + "May": "0.988", + "Jun": "0.982", + "Jul": "0.986", + "Aug": "0.966", + "Sep": "0.922", + "Oct": "0.843", + "Nov": "0.777", + "Dec": "0.685", + "All-year": "0.897", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.614", + "Feb": "0.728", + "Mar": "0.815", + "Apr": "0.945", + "May": "0.988", + "Jun": "0.982", + "Jul": "0.985", + "Aug": "0.965", + "Sep": "0.874", + "Oct": "0.784", + "Nov": "0.681", + "Dec": "0.638", + "All-year": "0.866", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.524", + "Feb": "0.617", + "Mar": "0.753", + "Apr": "0.915", + "May": "0.988", + "Jun": "0.982", + "Jul": "0.985", + "Aug": "0.959", + "Sep": "0.867", + "Oct": "0.716", + "Nov": "0.593", + "Dec": "0.513", + "All-year": "0.838", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.673", + "Feb": "0.681", + "Mar": "0.852", + "Apr": "0.914", + "May": "0.976", + "Jun": "0.965", + "Jul": "0.972", + "Aug": "0.962", + "Sep": "0.883", + "Oct": "0.837", + "Nov": "0.765", + "Dec": "0.743", + "All-year": "0.917", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.673", + "Feb": "0.681", + "Mar": "0.852", + "Apr": "0.914", + "May": "0.976", + "Jun": "0.965", + "Jul": "0.972", + "Aug": "0.961", + "Sep": "0.882", + "Oct": "0.835", + "Nov": "0.762", + "Dec": "0.741", + "All-year": "0.916", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.667", + "Feb": "0.678", + "Mar": "0.845", + "Apr": "0.914", + "May": "0.976", + "Jun": "0.965", + "Jul": "0.972", + "Aug": "0.958", + "Sep": "0.882", + "Oct": "0.832", + "Nov": "0.750", + "Dec": "0.739", + "All-year": "0.914", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.663", + "Feb": "0.678", + "Mar": "0.835", + "Apr": "0.914", + "May": "0.976", + "Jun": "0.965", + "Jul": "0.972", + "Aug": "0.958", + "Sep": "0.882", + "Oct": "0.832", + "Nov": "0.744", + "Dec": "0.738", + "All-year": "0.912", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.618", + "Feb": "0.642", + "Mar": "0.833", + "Apr": "0.914", + "May": "0.974", + "Jun": "0.965", + "Jul": "0.972", + "Aug": "0.958", + "Sep": "0.882", + "Oct": "0.812", + "Nov": "0.714", + "Dec": "0.694", + "All-year": "0.904", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.544", + "Feb": "0.593", + "Mar": "0.813", + "Apr": "0.914", + "May": "0.958", + "Jun": "0.965", + "Jul": "0.964", + "Aug": "0.942", + "Sep": "0.862", + "Oct": "0.758", + "Nov": "0.664", + "Dec": "0.599", + "All-year": "0.884", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.452", + "Feb": "0.531", + "Mar": "0.708", + "Apr": "0.903", + "May": "0.927", + "Jun": "0.958", + "Jul": "0.948", + "Aug": "0.897", + "Sep": "0.807", + "Oct": "0.710", + "Nov": "0.560", + "Dec": "0.468", + "All-year": "0.847", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.344", + "Feb": "0.372", + "Mar": "0.613", + "Apr": "0.838", + "May": "0.914", + "Jun": "0.940", + "Jul": "0.948", + "Aug": "0.880", + "Sep": "0.761", + "Oct": "0.649", + "Nov": "0.447", + "Dec": "0.343", + "All-year": "0.813", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.899", + "Feb": "0.927", + "Mar": "0.952", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.897", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.894", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.894", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.983", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.934", + "Nov": "0.935", + "Dec": "0.890", + "All-year": "0.949", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.885", + "Feb": "0.924", + "Mar": "0.944", + "Apr": "0.983", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.929", + "Nov": "0.926", + "Dec": "0.879", + "All-year": "0.944", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.870", + "Feb": "0.907", + "Mar": "0.942", + "Apr": "0.979", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.971", + "Oct": "0.923", + "Nov": "0.910", + "Dec": "0.872", + "All-year": "0.934", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.820", + "Feb": "0.897", + "Mar": "0.921", + "Apr": "0.975", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.961", + "Oct": "0.907", + "Nov": "0.880", + "Dec": "0.833", + "All-year": "0.917", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.786", + "Feb": "0.841", + "Mar": "0.903", + "Apr": "0.973", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.954", + "Oct": "0.856", + "Nov": "0.830", + "Dec": "0.758", + "All-year": "0.900", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.839", + "Feb": "0.864", + "Mar": "0.894", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.953", + "Oct": "0.918", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.940", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.838", + "Feb": "0.864", + "Mar": "0.892", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.953", + "Oct": "0.918", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.940", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.838", + "Feb": "0.864", + "Mar": "0.892", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.916", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.835", + "Feb": "0.864", + "Mar": "0.891", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.916", + "Nov": "0.862", + "Dec": "0.842", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.807", + "Feb": "0.859", + "Mar": "0.881", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.905", + "Nov": "0.849", + "Dec": "0.817", + "All-year": "0.934", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.769", + "Feb": "0.819", + "Mar": "0.875", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.980", + "Sep": "0.952", + "Oct": "0.890", + "Nov": "0.821", + "Dec": "0.782", + "All-year": "0.925", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.710", + "Feb": "0.804", + "Mar": "0.840", + "Apr": "0.956", + "May": "0.992", + "Jun": "0.982", + "Jul": "0.991", + "Aug": "0.978", + "Sep": "0.907", + "Oct": "0.843", + "Nov": "0.792", + "Dec": "0.701", + "All-year": "0.908", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.610", + "Feb": "0.728", + "Mar": "0.826", + "Apr": "0.949", + "May": "0.992", + "Jun": "0.982", + "Jul": "0.991", + "Aug": "0.972", + "Sep": "0.887", + "Oct": "0.812", + "Nov": "0.701", + "Dec": "0.640", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.723", + "Feb": "0.739", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.971", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.911", + "Oct": "0.872", + "Nov": "0.818", + "Dec": "0.792", + "All-year": "0.933", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.723", + "Feb": "0.739", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.971", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.911", + "Oct": "0.872", + "Nov": "0.817", + "Dec": "0.792", + "All-year": "0.932", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.723", + "Feb": "0.725", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.906", + "Oct": "0.871", + "Nov": "0.812", + "Dec": "0.792", + "All-year": "0.932", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.719", + "Feb": "0.716", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.906", + "Oct": "0.871", + "Nov": "0.812", + "Dec": "0.792", + "All-year": "0.930", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.671", + "Feb": "0.701", + "Mar": "0.845", + "Apr": "0.922", + "May": "0.981", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.969", + "Sep": "0.904", + "Oct": "0.851", + "Nov": "0.794", + "Dec": "0.781", + "All-year": "0.922", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.620", + "Feb": "0.655", + "Mar": "0.823", + "Apr": "0.917", + "May": "0.976", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.966", + "Sep": "0.899", + "Oct": "0.831", + "Nov": "0.762", + "Dec": "0.702", + "All-year": "0.910", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.544", + "Feb": "0.646", + "Mar": "0.778", + "Apr": "0.917", + "May": "0.965", + "Jun": "0.960", + "Jul": "0.972", + "Aug": "0.945", + "Sep": "0.860", + "Oct": "0.796", + "Nov": "0.664", + "Dec": "0.531", + "All-year": "0.881", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.491", + "Mar": "0.704", + "Apr": "0.885", + "May": "0.914", + "Jun": "0.940", + "Jul": "0.972", + "Aug": "0.915", + "Sep": "0.790", + "Oct": "0.741", + "Nov": "0.567", + "Dec": "0.391", + "All-year": "0.860", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.899", + "Feb": "0.927", + "Mar": "0.952", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.897", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.894", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.938", + "Nov": "0.935", + "Dec": "0.897", + "All-year": "0.950", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.894", + "Feb": "0.927", + "Mar": "0.951", + "Apr": "0.983", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.934", + "Nov": "0.935", + "Dec": "0.890", + "All-year": "0.949", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.885", + "Feb": "0.924", + "Mar": "0.944", + "Apr": "0.983", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.976", + "Oct": "0.929", + "Nov": "0.926", + "Dec": "0.879", + "All-year": "0.944", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.870", + "Feb": "0.907", + "Mar": "0.942", + "Apr": "0.979", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.971", + "Oct": "0.923", + "Nov": "0.910", + "Dec": "0.872", + "All-year": "0.934", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.820", + "Feb": "0.897", + "Mar": "0.921", + "Apr": "0.975", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.961", + "Oct": "0.907", + "Nov": "0.880", + "Dec": "0.833", + "All-year": "0.917", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.786", + "Feb": "0.841", + "Mar": "0.903", + "Apr": "0.973", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.954", + "Oct": "0.856", + "Nov": "0.830", + "Dec": "0.758", + "All-year": "0.900", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.839", + "Feb": "0.864", + "Mar": "0.894", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.953", + "Oct": "0.918", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.940", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.838", + "Feb": "0.864", + "Mar": "0.892", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.953", + "Oct": "0.918", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.940", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.838", + "Feb": "0.864", + "Mar": "0.892", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.916", + "Nov": "0.862", + "Dec": "0.845", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.835", + "Feb": "0.864", + "Mar": "0.891", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.916", + "Nov": "0.862", + "Dec": "0.842", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.807", + "Feb": "0.859", + "Mar": "0.881", + "Apr": "0.967", + "May": "0.995", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.983", + "Sep": "0.952", + "Oct": "0.905", + "Nov": "0.849", + "Dec": "0.817", + "All-year": "0.934", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.769", + "Feb": "0.819", + "Mar": "0.875", + "Apr": "0.960", + "May": "0.993", + "Jun": "0.982", + "Jul": "0.994", + "Aug": "0.980", + "Sep": "0.952", + "Oct": "0.890", + "Nov": "0.821", + "Dec": "0.782", + "All-year": "0.925", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.710", + "Feb": "0.804", + "Mar": "0.840", + "Apr": "0.956", + "May": "0.992", + "Jun": "0.982", + "Jul": "0.991", + "Aug": "0.978", + "Sep": "0.907", + "Oct": "0.843", + "Nov": "0.792", + "Dec": "0.701", + "All-year": "0.908", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.610", + "Feb": "0.728", + "Mar": "0.826", + "Apr": "0.949", + "May": "0.992", + "Jun": "0.982", + "Jul": "0.991", + "Aug": "0.972", + "Sep": "0.887", + "Oct": "0.812", + "Nov": "0.701", + "Dec": "0.640", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.723", + "Feb": "0.739", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.971", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.911", + "Oct": "0.872", + "Nov": "0.818", + "Dec": "0.792", + "All-year": "0.933", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.723", + "Feb": "0.739", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.971", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.911", + "Oct": "0.872", + "Nov": "0.817", + "Dec": "0.792", + "All-year": "0.932", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.723", + "Feb": "0.725", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.906", + "Oct": "0.871", + "Nov": "0.812", + "Dec": "0.792", + "All-year": "0.932", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.719", + "Feb": "0.716", + "Mar": "0.867", + "Apr": "0.922", + "May": "0.984", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.973", + "Sep": "0.906", + "Oct": "0.871", + "Nov": "0.812", + "Dec": "0.792", + "All-year": "0.930", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.671", + "Feb": "0.701", + "Mar": "0.845", + "Apr": "0.922", + "May": "0.981", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.969", + "Sep": "0.904", + "Oct": "0.851", + "Nov": "0.794", + "Dec": "0.781", + "All-year": "0.922", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.620", + "Feb": "0.655", + "Mar": "0.823", + "Apr": "0.917", + "May": "0.976", + "Jun": "0.969", + "Jul": "0.974", + "Aug": "0.966", + "Sep": "0.899", + "Oct": "0.831", + "Nov": "0.762", + "Dec": "0.702", + "All-year": "0.910", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.544", + "Feb": "0.646", + "Mar": "0.778", + "Apr": "0.917", + "May": "0.965", + "Jun": "0.960", + "Jul": "0.972", + "Aug": "0.945", + "Sep": "0.860", + "Oct": "0.796", + "Nov": "0.664", + "Dec": "0.531", + "All-year": "0.881", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.491", + "Mar": "0.704", + "Apr": "0.885", + "May": "0.914", + "Jun": "0.940", + "Jul": "0.972", + "Aug": "0.915", + "Sep": "0.790", + "Oct": "0.741", + "Nov": "0.567", + "Dec": "0.391", + "All-year": "0.860", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 3.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.019", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.017", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.010", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.101", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.024", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.181", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.286", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.179", + "Nov": "0.174", + "Dec": "0.173", + "All-year": "0.283", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.206", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.169", + "Dec": "0.168", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.194", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.360", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.152", + "Dec": "0.155", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.229", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.348", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.119", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.345", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.116", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.267", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.330", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.114", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.254", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.316", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.085", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.077", + "Mar": "0.128", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.211", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.071", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.130", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.245", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.073", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.130", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.128", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.065", + "Dec": "0.070", + "All-year": "0.236", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.288", + "Feb": "0.400", + "Mar": "0.425", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.631", + "Sep": "0.529", + "Oct": "0.343", + "Nov": "0.324", + "Dec": "0.317", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.286", + "Feb": "0.398", + "Mar": "0.422", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.699", + "Aug": "0.630", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.320", + "Dec": "0.312", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.280", + "Feb": "0.389", + "Mar": "0.408", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.669", + "Jul": "0.688", + "Aug": "0.625", + "Sep": "0.519", + "Oct": "0.321", + "Nov": "0.312", + "Dec": "0.295", + "All-year": "0.470", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.277", + "Feb": "0.384", + "Mar": "0.401", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.686", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.312", + "Nov": "0.310", + "Dec": "0.285", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.655", + "Aug": "0.587", + "Sep": "0.483", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.255", + "All-year": "0.432", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.200", + "Feb": "0.249", + "Mar": "0.339", + "Apr": "0.481", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.197", + "Feb": "0.232", + "Mar": "0.370", + "Apr": "0.527", + "May": "0.544", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.282", + "Nov": "0.241", + "Dec": "0.235", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.196", + "Feb": "0.231", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.542", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.279", + "Nov": "0.238", + "Dec": "0.235", + "All-year": "0.464", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.225", + "Mar": "0.354", + "Apr": "0.513", + "May": "0.529", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.561", + "Sep": "0.440", + "Oct": "0.271", + "Nov": "0.230", + "Dec": "0.226", + "All-year": "0.454", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.213", + "Mar": "0.343", + "Apr": "0.506", + "May": "0.526", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.214", + "All-year": "0.449", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.182", + "Mar": "0.295", + "Apr": "0.472", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.172", + "All-year": "0.415", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.314", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.113", + "All-year": "0.356", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.159", + "Mar": "0.255", + "Apr": "0.478", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.501", + "Aug": "0.505", + "Sep": "0.340", + "Oct": "0.227", + "Nov": "0.178", + "Dec": "0.142", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.157", + "Mar": "0.255", + "Apr": "0.475", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.496", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.219", + "Nov": "0.176", + "Dec": "0.141", + "All-year": "0.443", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.136", + "Mar": "0.243", + "Apr": "0.465", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.488", + "Sep": "0.331", + "Oct": "0.207", + "Nov": "0.167", + "Dec": "0.134", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.476", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.142", + "Dec": "0.133", + "All-year": "0.425", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.101", + "Mar": "0.190", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.151", + "Nov": "0.125", + "Dec": "0.108", + "All-year": "0.390", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.133", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.193", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.366", + "Feb": "0.472", + "Mar": "0.535", + "Apr": "0.667", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.813", + "Aug": "0.743", + "Sep": "0.634", + "Oct": "0.435", + "Nov": "0.417", + "Dec": "0.403", + "All-year": "0.581", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.472", + "Mar": "0.534", + "Apr": "0.665", + "May": "0.724", + "Jun": "0.799", + "Jul": "0.811", + "Aug": "0.741", + "Sep": "0.630", + "Oct": "0.433", + "Nov": "0.415", + "Dec": "0.399", + "All-year": "0.579", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.471", + "Mar": "0.525", + "Apr": "0.660", + "May": "0.720", + "Jun": "0.792", + "Jul": "0.806", + "Aug": "0.734", + "Sep": "0.619", + "Oct": "0.423", + "Nov": "0.405", + "Dec": "0.392", + "All-year": "0.572", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.467", + "Mar": "0.521", + "Apr": "0.655", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.611", + "Oct": "0.413", + "Nov": "0.389", + "Dec": "0.383", + "All-year": "0.566", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.322", + "Feb": "0.426", + "Mar": "0.487", + "Apr": "0.626", + "May": "0.695", + "Jun": "0.774", + "Jul": "0.778", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.382", + "Nov": "0.353", + "Dec": "0.327", + "All-year": "0.538", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.362", + "Mar": "0.434", + "Apr": "0.597", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.740", + "Aug": "0.652", + "Sep": "0.526", + "Oct": "0.319", + "Nov": "0.258", + "Dec": "0.259", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.226", + "Mar": "0.338", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.154", + "All-year": "0.382", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.363", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.344", + "Mar": "0.478", + "Apr": "0.627", + "May": "0.676", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.663", + "Sep": "0.537", + "Oct": "0.390", + "Nov": "0.349", + "Dec": "0.305", + "All-year": "0.565", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.342", + "Mar": "0.476", + "Apr": "0.627", + "May": "0.675", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.533", + "Oct": "0.386", + "Nov": "0.346", + "Dec": "0.304", + "All-year": "0.562", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.326", + "Mar": "0.468", + "Apr": "0.619", + "May": "0.656", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.654", + "Sep": "0.522", + "Oct": "0.377", + "Nov": "0.342", + "Dec": "0.297", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.256", + "Feb": "0.326", + "Mar": "0.461", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.654", + "Sep": "0.512", + "Oct": "0.362", + "Nov": "0.329", + "Dec": "0.290", + "All-year": "0.550", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.282", + "Mar": "0.436", + "Apr": "0.586", + "May": "0.618", + "Jun": "0.713", + "Jul": "0.720", + "Aug": "0.626", + "Sep": "0.484", + "Oct": "0.328", + "Nov": "0.286", + "Dec": "0.260", + "All-year": "0.523", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.250", + "Mar": "0.366", + "Apr": "0.526", + "May": "0.563", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.192", + "Dec": "0.171", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.120", + "Mar": "0.257", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.033", + "All-year": "0.360", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.275", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.349", + "Apr": "0.593", + "May": "0.601", + "Jun": "0.657", + "Jul": "0.651", + "Aug": "0.620", + "Sep": "0.431", + "Oct": "0.289", + "Nov": "0.249", + "Dec": "0.198", + "All-year": "0.542", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.347", + "Apr": "0.593", + "May": "0.598", + "Jun": "0.654", + "Jul": "0.651", + "Aug": "0.618", + "Sep": "0.426", + "Oct": "0.282", + "Nov": "0.249", + "Dec": "0.195", + "All-year": "0.539", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.184", + "Feb": "0.203", + "Mar": "0.341", + "Apr": "0.575", + "May": "0.582", + "Jun": "0.650", + "Jul": "0.636", + "Aug": "0.612", + "Sep": "0.414", + "Oct": "0.278", + "Nov": "0.235", + "Dec": "0.184", + "All-year": "0.530", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.169", + "Feb": "0.202", + "Mar": "0.335", + "Apr": "0.575", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.629", + "Aug": "0.606", + "Sep": "0.408", + "Oct": "0.267", + "Nov": "0.215", + "Dec": "0.184", + "All-year": "0.525", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.298", + "Apr": "0.567", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.602", + "Aug": "0.552", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.192", + "Dec": "0.134", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.092", + "Mar": "0.203", + "Apr": "0.460", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.125", + "Nov": "0.057", + "Dec": "0.071", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.289", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.335", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.332", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.241", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.447", + "Feb": "0.570", + "Mar": "0.636", + "Apr": "0.764", + "May": "0.822", + "Jun": "0.885", + "Jul": "0.886", + "Aug": "0.827", + "Sep": "0.710", + "Oct": "0.551", + "Nov": "0.505", + "Dec": "0.491", + "All-year": "0.676", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.440", + "Feb": "0.567", + "Mar": "0.636", + "Apr": "0.761", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.885", + "Aug": "0.826", + "Sep": "0.708", + "Oct": "0.541", + "Nov": "0.502", + "Dec": "0.485", + "All-year": "0.673", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.434", + "Feb": "0.558", + "Mar": "0.622", + "Apr": "0.756", + "May": "0.819", + "Jun": "0.874", + "Jul": "0.882", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.522", + "Nov": "0.499", + "Dec": "0.478", + "All-year": "0.664", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.423", + "Feb": "0.551", + "Mar": "0.620", + "Apr": "0.756", + "May": "0.817", + "Jun": "0.870", + "Jul": "0.878", + "Aug": "0.819", + "Sep": "0.697", + "Oct": "0.509", + "Nov": "0.492", + "Dec": "0.463", + "All-year": "0.661", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.404", + "Feb": "0.519", + "Mar": "0.597", + "Apr": "0.729", + "May": "0.804", + "Jun": "0.867", + "Jul": "0.860", + "Aug": "0.815", + "Sep": "0.673", + "Oct": "0.483", + "Nov": "0.451", + "Dec": "0.433", + "All-year": "0.635", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.355", + "Feb": "0.461", + "Mar": "0.559", + "Apr": "0.697", + "May": "0.756", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.782", + "Sep": "0.644", + "Oct": "0.404", + "Nov": "0.385", + "Dec": "0.376", + "All-year": "0.585", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.223", + "Feb": "0.333", + "Mar": "0.403", + "Apr": "0.622", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.796", + "Aug": "0.722", + "Sep": "0.528", + "Oct": "0.302", + "Nov": "0.233", + "Dec": "0.226", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.533", + "May": "0.544", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.416", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.438", + "Mar": "0.550", + "Apr": "0.730", + "May": "0.778", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.771", + "Sep": "0.642", + "Oct": "0.474", + "Nov": "0.445", + "Dec": "0.390", + "All-year": "0.652", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.438", + "Mar": "0.548", + "Apr": "0.728", + "May": "0.776", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.640", + "Oct": "0.470", + "Nov": "0.437", + "Dec": "0.386", + "All-year": "0.650", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.426", + "Mar": "0.538", + "Apr": "0.717", + "May": "0.769", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.766", + "Sep": "0.635", + "Oct": "0.461", + "Nov": "0.425", + "Dec": "0.376", + "All-year": "0.641", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.422", + "Mar": "0.530", + "Apr": "0.715", + "May": "0.760", + "Jun": "0.829", + "Jul": "0.837", + "Aug": "0.757", + "Sep": "0.628", + "Oct": "0.452", + "Nov": "0.418", + "Dec": "0.362", + "All-year": "0.637", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.388", + "Mar": "0.506", + "Apr": "0.703", + "May": "0.751", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.753", + "Sep": "0.603", + "Oct": "0.423", + "Nov": "0.386", + "Dec": "0.331", + "All-year": "0.615", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.324", + "Mar": "0.448", + "Apr": "0.652", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.783", + "Aug": "0.687", + "Sep": "0.552", + "Oct": "0.333", + "Nov": "0.272", + "Dec": "0.242", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.170", + "Mar": "0.312", + "Apr": "0.545", + "May": "0.594", + "Jun": "0.686", + "Jul": "0.710", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.193", + "Nov": "0.145", + "Dec": "0.122", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.111", + "Mar": "0.208", + "Apr": "0.431", + "May": "0.450", + "Jun": "0.582", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.386", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.445", + "Apr": "0.692", + "May": "0.722", + "Jun": "0.799", + "Jul": "0.763", + "Aug": "0.708", + "Sep": "0.560", + "Oct": "0.379", + "Nov": "0.307", + "Dec": "0.273", + "All-year": "0.626", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.442", + "Apr": "0.686", + "May": "0.714", + "Jun": "0.796", + "Jul": "0.761", + "Aug": "0.707", + "Sep": "0.558", + "Oct": "0.378", + "Nov": "0.303", + "Dec": "0.270", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.292", + "Mar": "0.438", + "Apr": "0.682", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.751", + "Aug": "0.704", + "Sep": "0.551", + "Oct": "0.372", + "Nov": "0.282", + "Dec": "0.261", + "All-year": "0.619", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.284", + "Mar": "0.425", + "Apr": "0.668", + "May": "0.706", + "Jun": "0.772", + "Jul": "0.751", + "Aug": "0.691", + "Sep": "0.535", + "Oct": "0.360", + "Nov": "0.275", + "Dec": "0.243", + "All-year": "0.612", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.231", + "Mar": "0.397", + "Apr": "0.640", + "May": "0.703", + "Jun": "0.760", + "Jul": "0.739", + "Aug": "0.652", + "Sep": "0.496", + "Oct": "0.316", + "Nov": "0.206", + "Dec": "0.206", + "All-year": "0.587", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.167", + "Mar": "0.263", + "Apr": "0.596", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.668", + "Aug": "0.591", + "Sep": "0.465", + "Oct": "0.231", + "Nov": "0.151", + "Dec": "0.136", + "All-year": "0.533", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.153", + "Apr": "0.456", + "May": "0.433", + "Jun": "0.564", + "Jul": "0.477", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.142", + "Nov": "0.068", + "Dec": "0.000", + "All-year": "0.449", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.493", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.550", + "Feb": "0.662", + "Mar": "0.733", + "Apr": "0.857", + "May": "0.897", + "Jun": "0.925", + "Jul": "0.942", + "Aug": "0.893", + "Sep": "0.794", + "Oct": "0.651", + "Nov": "0.635", + "Dec": "0.586", + "All-year": "0.752", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.661", + "Mar": "0.725", + "Apr": "0.854", + "May": "0.896", + "Jun": "0.924", + "Jul": "0.940", + "Aug": "0.892", + "Sep": "0.793", + "Oct": "0.649", + "Nov": "0.633", + "Dec": "0.583", + "All-year": "0.750", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.535", + "Feb": "0.659", + "Mar": "0.718", + "Apr": "0.846", + "May": "0.890", + "Jun": "0.920", + "Jul": "0.940", + "Aug": "0.890", + "Sep": "0.787", + "Oct": "0.639", + "Nov": "0.625", + "Dec": "0.570", + "All-year": "0.743", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.535", + "Feb": "0.652", + "Mar": "0.712", + "Apr": "0.842", + "May": "0.888", + "Jun": "0.920", + "Jul": "0.938", + "Aug": "0.890", + "Sep": "0.784", + "Oct": "0.622", + "Nov": "0.608", + "Dec": "0.558", + "All-year": "0.741", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.500", + "Feb": "0.611", + "Mar": "0.700", + "Apr": "0.828", + "May": "0.876", + "Jun": "0.919", + "Jul": "0.927", + "Aug": "0.884", + "Sep": "0.758", + "Oct": "0.604", + "Nov": "0.585", + "Dec": "0.545", + "All-year": "0.722", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.431", + "Feb": "0.579", + "Mar": "0.667", + "Apr": "0.783", + "May": "0.864", + "Jun": "0.911", + "Jul": "0.911", + "Aug": "0.857", + "Sep": "0.717", + "Oct": "0.564", + "Nov": "0.490", + "Dec": "0.449", + "All-year": "0.684", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.473", + "Mar": "0.551", + "Apr": "0.733", + "May": "0.806", + "Jun": "0.879", + "Jul": "0.896", + "Aug": "0.795", + "Sep": "0.650", + "Oct": "0.435", + "Nov": "0.369", + "Dec": "0.337", + "All-year": "0.605", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.366", + "Mar": "0.427", + "Apr": "0.672", + "May": "0.737", + "Jun": "0.857", + "Jul": "0.844", + "Aug": "0.773", + "Sep": "0.547", + "Oct": "0.312", + "Nov": "0.291", + "Dec": "0.292", + "All-year": "0.545", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.547", + "Mar": "0.642", + "Apr": "0.804", + "May": "0.862", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.840", + "Sep": "0.750", + "Oct": "0.587", + "Nov": "0.530", + "Dec": "0.476", + "All-year": "0.731", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.474", + "Feb": "0.544", + "Mar": "0.642", + "Apr": "0.803", + "May": "0.858", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.839", + "Sep": "0.750", + "Oct": "0.583", + "Nov": "0.526", + "Dec": "0.473", + "All-year": "0.730", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.463", + "Feb": "0.535", + "Mar": "0.638", + "Apr": "0.796", + "May": "0.853", + "Jun": "0.899", + "Jul": "0.911", + "Aug": "0.838", + "Sep": "0.737", + "Oct": "0.577", + "Nov": "0.516", + "Dec": "0.470", + "All-year": "0.722", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.524", + "Mar": "0.633", + "Apr": "0.794", + "May": "0.847", + "Jun": "0.897", + "Jul": "0.905", + "Aug": "0.831", + "Sep": "0.728", + "Oct": "0.574", + "Nov": "0.509", + "Dec": "0.457", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.419", + "Feb": "0.490", + "Mar": "0.604", + "Apr": "0.783", + "May": "0.834", + "Jun": "0.892", + "Jul": "0.902", + "Aug": "0.822", + "Sep": "0.701", + "Oct": "0.515", + "Nov": "0.473", + "Dec": "0.411", + "All-year": "0.703", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.329", + "Feb": "0.387", + "Mar": "0.543", + "Apr": "0.742", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.874", + "Aug": "0.797", + "Sep": "0.652", + "Oct": "0.440", + "Nov": "0.412", + "Dec": "0.340", + "All-year": "0.649", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.266", + "Mar": "0.450", + "Apr": "0.661", + "May": "0.739", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.732", + "Sep": "0.502", + "Oct": "0.308", + "Nov": "0.255", + "Dec": "0.229", + "All-year": "0.566", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.141", + "Mar": "0.353", + "Apr": "0.566", + "May": "0.602", + "Jun": "0.763", + "Jul": "0.724", + "Aug": "0.602", + "Sep": "0.437", + "Oct": "0.200", + "Nov": "0.172", + "Dec": "0.117", + "All-year": "0.508", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.342", + "Mar": "0.569", + "Apr": "0.756", + "May": "0.820", + "Jun": "0.854", + "Jul": "0.843", + "Aug": "0.798", + "Sep": "0.647", + "Oct": "0.470", + "Nov": "0.397", + "Dec": "0.372", + "All-year": "0.706", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.337", + "Feb": "0.342", + "Mar": "0.569", + "Apr": "0.754", + "May": "0.820", + "Jun": "0.851", + "Jul": "0.840", + "Aug": "0.796", + "Sep": "0.646", + "Oct": "0.470", + "Nov": "0.392", + "Dec": "0.370", + "All-year": "0.704", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.325", + "Feb": "0.327", + "Mar": "0.563", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.836", + "Aug": "0.790", + "Sep": "0.643", + "Oct": "0.457", + "Nov": "0.383", + "Dec": "0.364", + "All-year": "0.697", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.316", + "Feb": "0.310", + "Mar": "0.556", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.829", + "Aug": "0.786", + "Sep": "0.628", + "Oct": "0.454", + "Nov": "0.372", + "Dec": "0.352", + "All-year": "0.692", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.265", + "Mar": "0.512", + "Apr": "0.736", + "May": "0.793", + "Jun": "0.833", + "Jul": "0.828", + "Aug": "0.759", + "Sep": "0.610", + "Oct": "0.419", + "Nov": "0.318", + "Dec": "0.309", + "All-year": "0.672", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.182", + "Mar": "0.344", + "Apr": "0.701", + "May": "0.743", + "Jun": "0.804", + "Jul": "0.797", + "Aug": "0.708", + "Sep": "0.553", + "Oct": "0.339", + "Nov": "0.239", + "Dec": "0.216", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.118", + "Mar": "0.247", + "Apr": "0.550", + "May": "0.617", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.543", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.147", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.129", + "Nov": "0.101", + "Dec": "0.000", + "All-year": "0.475", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.647", + "Feb": "0.765", + "Mar": "0.820", + "Apr": "0.918", + "May": "0.942", + "Jun": "0.953", + "Jul": "0.976", + "Aug": "0.934", + "Sep": "0.858", + "Oct": "0.738", + "Nov": "0.725", + "Dec": "0.664", + "All-year": "0.821", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.644", + "Feb": "0.765", + "Mar": "0.817", + "Apr": "0.917", + "May": "0.942", + "Jun": "0.953", + "Jul": "0.974", + "Aug": "0.933", + "Sep": "0.858", + "Oct": "0.734", + "Nov": "0.724", + "Dec": "0.662", + "All-year": "0.820", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.634", + "Feb": "0.758", + "Mar": "0.811", + "Apr": "0.914", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.929", + "Sep": "0.855", + "Oct": "0.726", + "Nov": "0.719", + "Dec": "0.659", + "All-year": "0.813", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.631", + "Feb": "0.750", + "Mar": "0.806", + "Apr": "0.911", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.926", + "Sep": "0.850", + "Oct": "0.724", + "Nov": "0.708", + "Dec": "0.656", + "All-year": "0.810", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.599", + "Feb": "0.726", + "Mar": "0.784", + "Apr": "0.902", + "May": "0.936", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.918", + "Sep": "0.828", + "Oct": "0.690", + "Nov": "0.693", + "Dec": "0.630", + "All-year": "0.793", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.675", + "Mar": "0.735", + "Apr": "0.878", + "May": "0.925", + "Jun": "0.942", + "Jul": "0.958", + "Aug": "0.913", + "Sep": "0.812", + "Oct": "0.655", + "Nov": "0.636", + "Dec": "0.586", + "All-year": "0.764", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.595", + "Mar": "0.682", + "Apr": "0.839", + "May": "0.887", + "Jun": "0.935", + "Jul": "0.956", + "Aug": "0.872", + "Sep": "0.744", + "Oct": "0.552", + "Nov": "0.519", + "Dec": "0.435", + "All-year": "0.703", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.312", + "Feb": "0.519", + "Mar": "0.608", + "Apr": "0.811", + "May": "0.880", + "Jun": "0.922", + "Jul": "0.934", + "Aug": "0.868", + "Sep": "0.690", + "Oct": "0.408", + "Nov": "0.413", + "Dec": "0.326", + "All-year": "0.648", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.577", + "Feb": "0.636", + "Mar": "0.726", + "Apr": "0.872", + "May": "0.926", + "Jun": "0.938", + "Jul": "0.944", + "Aug": "0.898", + "Sep": "0.822", + "Oct": "0.680", + "Nov": "0.615", + "Dec": "0.556", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.571", + "Feb": "0.634", + "Mar": "0.722", + "Apr": "0.872", + "May": "0.923", + "Jun": "0.937", + "Jul": "0.944", + "Aug": "0.897", + "Sep": "0.820", + "Oct": "0.677", + "Nov": "0.613", + "Dec": "0.554", + "All-year": "0.802", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.557", + "Feb": "0.623", + "Mar": "0.714", + "Apr": "0.865", + "May": "0.919", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.892", + "Sep": "0.813", + "Oct": "0.670", + "Nov": "0.607", + "Dec": "0.542", + "All-year": "0.795", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.556", + "Feb": "0.619", + "Mar": "0.706", + "Apr": "0.865", + "May": "0.916", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.889", + "Sep": "0.804", + "Oct": "0.657", + "Nov": "0.606", + "Dec": "0.536", + "All-year": "0.792", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.507", + "Feb": "0.589", + "Mar": "0.697", + "Apr": "0.853", + "May": "0.915", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.876", + "Sep": "0.794", + "Oct": "0.622", + "Nov": "0.577", + "Dec": "0.505", + "All-year": "0.777", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.413", + "Feb": "0.552", + "Mar": "0.668", + "Apr": "0.835", + "May": "0.887", + "Jun": "0.920", + "Jul": "0.935", + "Aug": "0.860", + "Sep": "0.761", + "Oct": "0.556", + "Nov": "0.495", + "Dec": "0.440", + "All-year": "0.744", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.390", + "Mar": "0.570", + "Apr": "0.781", + "May": "0.843", + "Jun": "0.886", + "Jul": "0.919", + "Aug": "0.804", + "Sep": "0.676", + "Oct": "0.415", + "Nov": "0.354", + "Dec": "0.288", + "All-year": "0.671", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.218", + "Feb": "0.251", + "Mar": "0.448", + "Apr": "0.720", + "May": "0.774", + "Jun": "0.869", + "Jul": "0.853", + "Aug": "0.774", + "Sep": "0.533", + "Oct": "0.304", + "Nov": "0.292", + "Dec": "0.196", + "All-year": "0.617", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.417", + "Feb": "0.449", + "Mar": "0.632", + "Apr": "0.821", + "May": "0.899", + "Jun": "0.924", + "Jul": "0.888", + "Aug": "0.870", + "Sep": "0.739", + "Oct": "0.593", + "Nov": "0.512", + "Dec": "0.457", + "All-year": "0.783", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.406", + "Feb": "0.449", + "Mar": "0.629", + "Apr": "0.821", + "May": "0.894", + "Jun": "0.921", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.739", + "Oct": "0.591", + "Nov": "0.510", + "Dec": "0.456", + "All-year": "0.781", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.397", + "Feb": "0.435", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.891", + "Jun": "0.919", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.735", + "Oct": "0.565", + "Nov": "0.506", + "Dec": "0.450", + "All-year": "0.776", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.388", + "Feb": "0.426", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.883", + "Jun": "0.915", + "Jul": "0.886", + "Aug": "0.860", + "Sep": "0.729", + "Oct": "0.558", + "Nov": "0.479", + "Dec": "0.433", + "All-year": "0.771", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.335", + "Mar": "0.552", + "Apr": "0.810", + "May": "0.872", + "Jun": "0.907", + "Jul": "0.878", + "Aug": "0.858", + "Sep": "0.721", + "Oct": "0.522", + "Nov": "0.432", + "Dec": "0.399", + "All-year": "0.755", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.320", + "Feb": "0.259", + "Mar": "0.508", + "Apr": "0.790", + "May": "0.836", + "Jun": "0.882", + "Jul": "0.851", + "Aug": "0.824", + "Sep": "0.669", + "Oct": "0.452", + "Nov": "0.335", + "Dec": "0.285", + "All-year": "0.705", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.132", + "Mar": "0.421", + "Apr": "0.703", + "May": "0.753", + "Jun": "0.814", + "Jul": "0.831", + "Aug": "0.727", + "Sep": "0.528", + "Oct": "0.315", + "Nov": "0.147", + "Dec": "0.091", + "All-year": "0.636", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.108", + "Mar": "0.227", + "Apr": "0.558", + "May": "0.638", + "Jun": "0.807", + "Jul": "0.694", + "Aug": "0.655", + "Sep": "0.418", + "Oct": "0.231", + "Nov": "0.124", + "Dec": "0.000", + "All-year": "0.577", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.884", + "Feb": "0.915", + "Mar": "0.946", + "Apr": "0.991", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.923", + "Nov": "0.908", + "Dec": "0.880", + "All-year": "0.942", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.882", + "Feb": "0.915", + "Mar": "0.946", + "Apr": "0.990", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.923", + "Nov": "0.907", + "Dec": "0.878", + "All-year": "0.942", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.878", + "Feb": "0.915", + "Mar": "0.943", + "Apr": "0.989", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.972", + "Oct": "0.922", + "Nov": "0.903", + "Dec": "0.875", + "All-year": "0.940", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.878", + "Feb": "0.915", + "Mar": "0.943", + "Apr": "0.988", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.972", + "Oct": "0.915", + "Nov": "0.900", + "Dec": "0.874", + "All-year": "0.940", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.869", + "Feb": "0.912", + "Mar": "0.935", + "Apr": "0.986", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.963", + "Oct": "0.905", + "Nov": "0.887", + "Dec": "0.852", + "All-year": "0.932", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.836", + "Feb": "0.905", + "Mar": "0.918", + "Apr": "0.986", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.994", + "Sep": "0.956", + "Oct": "0.898", + "Nov": "0.862", + "Dec": "0.816", + "All-year": "0.919", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.761", + "Feb": "0.860", + "Mar": "0.903", + "Apr": "0.986", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.993", + "Sep": "0.934", + "Oct": "0.862", + "Nov": "0.801", + "Dec": "0.764", + "All-year": "0.899", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.700", + "Feb": "0.826", + "Mar": "0.885", + "Apr": "0.986", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.992", + "Sep": "0.911", + "Oct": "0.820", + "Nov": "0.720", + "Dec": "0.685", + "All-year": "0.875", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.825", + "Feb": "0.858", + "Mar": "0.915", + "Apr": "0.969", + "May": "0.996", + "Jun": "0.991", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.943", + "Oct": "0.906", + "Nov": "0.860", + "Dec": "0.817", + "All-year": "0.933", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.824", + "Feb": "0.858", + "Mar": "0.915", + "Apr": "0.969", + "May": "0.996", + "Jun": "0.991", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.943", + "Oct": "0.905", + "Nov": "0.859", + "Dec": "0.815", + "All-year": "0.932", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.808", + "Feb": "0.854", + "Mar": "0.911", + "Apr": "0.969", + "May": "0.996", + "Jun": "0.991", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.942", + "Oct": "0.899", + "Nov": "0.858", + "Dec": "0.808", + "All-year": "0.930", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.804", + "Feb": "0.851", + "Mar": "0.907", + "Apr": "0.967", + "May": "0.996", + "Jun": "0.991", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.940", + "Oct": "0.890", + "Nov": "0.854", + "Dec": "0.796", + "All-year": "0.928", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.789", + "Feb": "0.838", + "Mar": "0.899", + "Apr": "0.965", + "May": "0.996", + "Jun": "0.991", + "Jul": "0.990", + "Aug": "0.977", + "Sep": "0.933", + "Oct": "0.882", + "Nov": "0.832", + "Dec": "0.769", + "All-year": "0.922", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.721", + "Feb": "0.816", + "Mar": "0.880", + "Apr": "0.965", + "May": "0.993", + "Jun": "0.991", + "Jul": "0.990", + "Aug": "0.967", + "Sep": "0.929", + "Oct": "0.848", + "Nov": "0.799", + "Dec": "0.737", + "All-year": "0.906", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.619", + "Feb": "0.735", + "Mar": "0.832", + "Apr": "0.958", + "May": "0.993", + "Jun": "0.991", + "Jul": "0.987", + "Aug": "0.966", + "Sep": "0.882", + "Oct": "0.794", + "Nov": "0.698", + "Dec": "0.657", + "All-year": "0.874", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.533", + "Feb": "0.626", + "Mar": "0.813", + "Apr": "0.937", + "May": "0.993", + "Jun": "0.990", + "Jul": "0.987", + "Aug": "0.963", + "Sep": "0.874", + "Oct": "0.726", + "Nov": "0.599", + "Dec": "0.545", + "All-year": "0.855", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.707", + "Feb": "0.705", + "Mar": "0.872", + "Apr": "0.939", + "May": "0.983", + "Jun": "0.969", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.899", + "Oct": "0.853", + "Nov": "0.781", + "Dec": "0.762", + "All-year": "0.926", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.707", + "Feb": "0.705", + "Mar": "0.870", + "Apr": "0.939", + "May": "0.983", + "Jun": "0.969", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.897", + "Oct": "0.848", + "Nov": "0.781", + "Dec": "0.759", + "All-year": "0.924", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.700", + "Feb": "0.703", + "Mar": "0.866", + "Apr": "0.939", + "May": "0.983", + "Jun": "0.969", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.897", + "Oct": "0.845", + "Nov": "0.778", + "Dec": "0.755", + "All-year": "0.923", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.700", + "Feb": "0.703", + "Mar": "0.859", + "Apr": "0.939", + "May": "0.983", + "Jun": "0.969", + "Jul": "0.972", + "Aug": "0.961", + "Sep": "0.892", + "Oct": "0.845", + "Nov": "0.778", + "Dec": "0.750", + "All-year": "0.921", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.675", + "Feb": "0.682", + "Mar": "0.848", + "Apr": "0.939", + "May": "0.983", + "Jun": "0.969", + "Jul": "0.972", + "Aug": "0.958", + "Sep": "0.892", + "Oct": "0.825", + "Nov": "0.762", + "Dec": "0.712", + "All-year": "0.913", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.565", + "Feb": "0.629", + "Mar": "0.827", + "Apr": "0.933", + "May": "0.966", + "Jun": "0.969", + "Jul": "0.970", + "Aug": "0.950", + "Sep": "0.872", + "Oct": "0.770", + "Nov": "0.675", + "Dec": "0.629", + "All-year": "0.891", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.460", + "Feb": "0.545", + "Mar": "0.766", + "Apr": "0.914", + "May": "0.953", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.899", + "Sep": "0.844", + "Oct": "0.722", + "Nov": "0.561", + "Dec": "0.556", + "All-year": "0.856", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.436", + "Mar": "0.618", + "Apr": "0.844", + "May": "0.922", + "Jun": "0.958", + "Jul": "0.960", + "Aug": "0.880", + "Sep": "0.772", + "Oct": "0.652", + "Nov": "0.451", + "Dec": "0.387", + "All-year": "0.822", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.971", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.971", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.970", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.970", + "Dec": "0.956", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.954", + "Feb": "0.957", + "Mar": "0.979", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.967", + "Dec": "0.952", + "All-year": "0.974", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.949", + "Feb": "0.957", + "Mar": "0.976", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.959", + "Dec": "0.939", + "All-year": "0.970", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.897", + "Feb": "0.951", + "Mar": "0.974", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.964", + "Nov": "0.942", + "Dec": "0.926", + "All-year": "0.962", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.876", + "Feb": "0.944", + "Mar": "0.974", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.960", + "Nov": "0.916", + "Dec": "0.894", + "All-year": "0.953", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.900", + "Feb": "0.923", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.938", + "Dec": "0.924", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.899", + "Feb": "0.923", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.938", + "Dec": "0.923", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.895", + "Feb": "0.920", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.937", + "Dec": "0.921", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.895", + "Feb": "0.917", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.951", + "Nov": "0.937", + "Dec": "0.921", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.891", + "Feb": "0.911", + "Mar": "0.957", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.949", + "Nov": "0.935", + "Dec": "0.915", + "All-year": "0.968", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.864", + "Feb": "0.911", + "Mar": "0.948", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.942", + "Nov": "0.915", + "Dec": "0.909", + "All-year": "0.963", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.798", + "Feb": "0.875", + "Mar": "0.923", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.927", + "Nov": "0.880", + "Dec": "0.861", + "All-year": "0.950", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.751", + "Feb": "0.843", + "Mar": "0.905", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.960", + "Oct": "0.873", + "Nov": "0.873", + "Dec": "0.788", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.841", + "Mar": "0.925", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.878", + "All-year": "0.963", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.841", + "Mar": "0.925", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.878", + "All-year": "0.963", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.835", + "Mar": "0.919", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.874", + "All-year": "0.962", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.835", + "Mar": "0.915", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.942", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.874", + "All-year": "0.961", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.826", + "Mar": "0.911", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.942", + "Oct": "0.917", + "Nov": "0.879", + "Dec": "0.874", + "All-year": "0.960", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.792", + "Feb": "0.790", + "Mar": "0.901", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.988", + "Sep": "0.931", + "Oct": "0.909", + "Nov": "0.854", + "Dec": "0.831", + "All-year": "0.954", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.683", + "Feb": "0.772", + "Mar": "0.876", + "Apr": "0.954", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.976", + "Sep": "0.914", + "Oct": "0.852", + "Nov": "0.812", + "Dec": "0.774", + "All-year": "0.934", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.618", + "Feb": "0.734", + "Mar": "0.841", + "Apr": "0.922", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.970", + "Sep": "0.886", + "Oct": "0.841", + "Nov": "0.726", + "Dec": "0.636", + "All-year": "0.922", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.972", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.972", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.970", + "Dec": "0.958", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.956", + "Feb": "0.962", + "Mar": "0.981", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.970", + "Dec": "0.956", + "All-year": "0.975", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.954", + "Feb": "0.957", + "Mar": "0.979", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.967", + "Dec": "0.952", + "All-year": "0.974", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.949", + "Feb": "0.957", + "Mar": "0.976", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.970", + "Nov": "0.959", + "Dec": "0.939", + "All-year": "0.970", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.897", + "Feb": "0.951", + "Mar": "0.974", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.964", + "Nov": "0.942", + "Dec": "0.926", + "All-year": "0.962", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.876", + "Feb": "0.944", + "Mar": "0.974", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.992", + "Oct": "0.960", + "Nov": "0.916", + "Dec": "0.894", + "All-year": "0.953", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.900", + "Feb": "0.923", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.938", + "Dec": "0.924", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.899", + "Feb": "0.923", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.938", + "Dec": "0.923", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.895", + "Feb": "0.920", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.954", + "Nov": "0.937", + "Dec": "0.921", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.895", + "Feb": "0.917", + "Mar": "0.964", + "Apr": "0.985", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.951", + "Nov": "0.937", + "Dec": "0.921", + "All-year": "0.971", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.891", + "Feb": "0.911", + "Mar": "0.957", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.949", + "Nov": "0.935", + "Dec": "0.915", + "All-year": "0.968", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.864", + "Feb": "0.911", + "Mar": "0.948", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.942", + "Nov": "0.915", + "Dec": "0.909", + "All-year": "0.963", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.798", + "Feb": "0.875", + "Mar": "0.923", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.969", + "Oct": "0.927", + "Nov": "0.880", + "Dec": "0.861", + "All-year": "0.950", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.751", + "Feb": "0.843", + "Mar": "0.905", + "Apr": "0.982", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.960", + "Oct": "0.873", + "Nov": "0.873", + "Dec": "0.788", + "All-year": "0.939", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.842", + "Mar": "0.925", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.878", + "All-year": "0.963", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.842", + "Mar": "0.925", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.878", + "All-year": "0.963", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.835", + "Mar": "0.919", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.946", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.874", + "All-year": "0.962", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.835", + "Mar": "0.915", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.942", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.874", + "All-year": "0.961", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.826", + "Mar": "0.911", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.991", + "Sep": "0.942", + "Oct": "0.917", + "Nov": "0.879", + "Dec": "0.874", + "All-year": "0.960", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.792", + "Feb": "0.790", + "Mar": "0.901", + "Apr": "0.958", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.988", + "Sep": "0.931", + "Oct": "0.909", + "Nov": "0.854", + "Dec": "0.831", + "All-year": "0.954", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.683", + "Feb": "0.772", + "Mar": "0.876", + "Apr": "0.954", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.976", + "Sep": "0.914", + "Oct": "0.852", + "Nov": "0.812", + "Dec": "0.774", + "All-year": "0.934", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.618", + "Feb": "0.734", + "Mar": "0.841", + "Apr": "0.922", + "May": "0.999", + "Jun": "0.983", + "Jul": "0.989", + "Aug": "0.970", + "Sep": "0.886", + "Oct": "0.841", + "Nov": "0.726", + "Dec": "0.636", + "All-year": "0.922", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.019", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.017", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.010", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.101", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.024", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.181", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.286", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.179", + "Nov": "0.174", + "Dec": "0.173", + "All-year": "0.283", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.206", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.169", + "Dec": "0.168", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.194", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.360", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.152", + "Dec": "0.155", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.229", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.348", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.119", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.345", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.116", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.267", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.330", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.114", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.254", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.316", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.085", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.077", + "Mar": "0.128", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.211", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.071", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.130", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.245", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.073", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.130", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.128", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.065", + "Dec": "0.070", + "All-year": "0.236", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.288", + "Feb": "0.400", + "Mar": "0.425", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.631", + "Sep": "0.529", + "Oct": "0.343", + "Nov": "0.324", + "Dec": "0.317", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.286", + "Feb": "0.398", + "Mar": "0.422", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.699", + "Aug": "0.630", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.320", + "Dec": "0.312", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.280", + "Feb": "0.389", + "Mar": "0.408", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.669", + "Jul": "0.688", + "Aug": "0.625", + "Sep": "0.519", + "Oct": "0.321", + "Nov": "0.312", + "Dec": "0.295", + "All-year": "0.470", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.277", + "Feb": "0.384", + "Mar": "0.401", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.686", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.312", + "Nov": "0.310", + "Dec": "0.285", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.655", + "Aug": "0.587", + "Sep": "0.483", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.255", + "All-year": "0.432", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.200", + "Feb": "0.249", + "Mar": "0.339", + "Apr": "0.481", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.197", + "Feb": "0.232", + "Mar": "0.370", + "Apr": "0.527", + "May": "0.544", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.282", + "Nov": "0.241", + "Dec": "0.235", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.196", + "Feb": "0.231", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.542", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.279", + "Nov": "0.238", + "Dec": "0.235", + "All-year": "0.464", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.225", + "Mar": "0.354", + "Apr": "0.513", + "May": "0.529", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.561", + "Sep": "0.440", + "Oct": "0.271", + "Nov": "0.230", + "Dec": "0.226", + "All-year": "0.454", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.213", + "Mar": "0.343", + "Apr": "0.506", + "May": "0.526", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.214", + "All-year": "0.449", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.182", + "Mar": "0.295", + "Apr": "0.472", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.172", + "All-year": "0.415", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.314", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.113", + "All-year": "0.356", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.159", + "Mar": "0.255", + "Apr": "0.478", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.501", + "Aug": "0.505", + "Sep": "0.340", + "Oct": "0.227", + "Nov": "0.178", + "Dec": "0.142", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.157", + "Mar": "0.255", + "Apr": "0.475", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.496", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.219", + "Nov": "0.176", + "Dec": "0.141", + "All-year": "0.443", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.136", + "Mar": "0.243", + "Apr": "0.465", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.488", + "Sep": "0.331", + "Oct": "0.207", + "Nov": "0.167", + "Dec": "0.134", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.476", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.142", + "Dec": "0.133", + "All-year": "0.425", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.101", + "Mar": "0.190", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.151", + "Nov": "0.125", + "Dec": "0.108", + "All-year": "0.390", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.133", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.193", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.366", + "Feb": "0.472", + "Mar": "0.535", + "Apr": "0.667", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.813", + "Aug": "0.743", + "Sep": "0.634", + "Oct": "0.435", + "Nov": "0.417", + "Dec": "0.403", + "All-year": "0.581", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.472", + "Mar": "0.534", + "Apr": "0.665", + "May": "0.724", + "Jun": "0.799", + "Jul": "0.811", + "Aug": "0.741", + "Sep": "0.630", + "Oct": "0.433", + "Nov": "0.415", + "Dec": "0.399", + "All-year": "0.579", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.471", + "Mar": "0.525", + "Apr": "0.660", + "May": "0.720", + "Jun": "0.792", + "Jul": "0.806", + "Aug": "0.734", + "Sep": "0.619", + "Oct": "0.423", + "Nov": "0.405", + "Dec": "0.392", + "All-year": "0.572", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.467", + "Mar": "0.521", + "Apr": "0.655", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.611", + "Oct": "0.413", + "Nov": "0.389", + "Dec": "0.383", + "All-year": "0.566", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.322", + "Feb": "0.426", + "Mar": "0.487", + "Apr": "0.626", + "May": "0.695", + "Jun": "0.774", + "Jul": "0.778", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.382", + "Nov": "0.353", + "Dec": "0.327", + "All-year": "0.538", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.362", + "Mar": "0.434", + "Apr": "0.597", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.740", + "Aug": "0.652", + "Sep": "0.526", + "Oct": "0.319", + "Nov": "0.258", + "Dec": "0.259", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.226", + "Mar": "0.338", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.154", + "All-year": "0.382", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.363", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.344", + "Mar": "0.478", + "Apr": "0.627", + "May": "0.676", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.663", + "Sep": "0.537", + "Oct": "0.390", + "Nov": "0.349", + "Dec": "0.305", + "All-year": "0.565", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.342", + "Mar": "0.476", + "Apr": "0.627", + "May": "0.675", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.533", + "Oct": "0.386", + "Nov": "0.346", + "Dec": "0.304", + "All-year": "0.562", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.326", + "Mar": "0.468", + "Apr": "0.619", + "May": "0.656", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.654", + "Sep": "0.522", + "Oct": "0.377", + "Nov": "0.342", + "Dec": "0.297", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.256", + "Feb": "0.326", + "Mar": "0.461", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.654", + "Sep": "0.512", + "Oct": "0.362", + "Nov": "0.329", + "Dec": "0.290", + "All-year": "0.550", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.282", + "Mar": "0.436", + "Apr": "0.586", + "May": "0.618", + "Jun": "0.713", + "Jul": "0.720", + "Aug": "0.626", + "Sep": "0.484", + "Oct": "0.328", + "Nov": "0.286", + "Dec": "0.260", + "All-year": "0.523", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.250", + "Mar": "0.366", + "Apr": "0.526", + "May": "0.563", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.192", + "Dec": "0.171", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.120", + "Mar": "0.257", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.033", + "All-year": "0.360", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.275", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.349", + "Apr": "0.593", + "May": "0.601", + "Jun": "0.657", + "Jul": "0.651", + "Aug": "0.620", + "Sep": "0.431", + "Oct": "0.289", + "Nov": "0.249", + "Dec": "0.198", + "All-year": "0.542", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.347", + "Apr": "0.593", + "May": "0.598", + "Jun": "0.654", + "Jul": "0.651", + "Aug": "0.618", + "Sep": "0.426", + "Oct": "0.282", + "Nov": "0.249", + "Dec": "0.195", + "All-year": "0.539", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.184", + "Feb": "0.203", + "Mar": "0.341", + "Apr": "0.575", + "May": "0.582", + "Jun": "0.650", + "Jul": "0.636", + "Aug": "0.612", + "Sep": "0.414", + "Oct": "0.278", + "Nov": "0.235", + "Dec": "0.184", + "All-year": "0.530", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.169", + "Feb": "0.202", + "Mar": "0.335", + "Apr": "0.575", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.629", + "Aug": "0.606", + "Sep": "0.408", + "Oct": "0.267", + "Nov": "0.215", + "Dec": "0.184", + "All-year": "0.525", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.298", + "Apr": "0.567", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.602", + "Aug": "0.552", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.192", + "Dec": "0.134", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.092", + "Mar": "0.203", + "Apr": "0.460", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.125", + "Nov": "0.057", + "Dec": "0.071", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.289", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.335", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.332", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.241", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.447", + "Feb": "0.570", + "Mar": "0.636", + "Apr": "0.764", + "May": "0.822", + "Jun": "0.885", + "Jul": "0.886", + "Aug": "0.827", + "Sep": "0.710", + "Oct": "0.551", + "Nov": "0.505", + "Dec": "0.491", + "All-year": "0.676", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.440", + "Feb": "0.567", + "Mar": "0.636", + "Apr": "0.761", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.885", + "Aug": "0.826", + "Sep": "0.708", + "Oct": "0.541", + "Nov": "0.502", + "Dec": "0.485", + "All-year": "0.673", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.434", + "Feb": "0.558", + "Mar": "0.622", + "Apr": "0.756", + "May": "0.819", + "Jun": "0.874", + "Jul": "0.882", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.522", + "Nov": "0.499", + "Dec": "0.478", + "All-year": "0.664", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.423", + "Feb": "0.551", + "Mar": "0.620", + "Apr": "0.756", + "May": "0.817", + "Jun": "0.870", + "Jul": "0.878", + "Aug": "0.819", + "Sep": "0.697", + "Oct": "0.509", + "Nov": "0.492", + "Dec": "0.463", + "All-year": "0.661", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.404", + "Feb": "0.519", + "Mar": "0.597", + "Apr": "0.729", + "May": "0.804", + "Jun": "0.867", + "Jul": "0.860", + "Aug": "0.815", + "Sep": "0.673", + "Oct": "0.483", + "Nov": "0.451", + "Dec": "0.433", + "All-year": "0.635", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.355", + "Feb": "0.461", + "Mar": "0.559", + "Apr": "0.697", + "May": "0.756", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.782", + "Sep": "0.644", + "Oct": "0.404", + "Nov": "0.385", + "Dec": "0.376", + "All-year": "0.585", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.223", + "Feb": "0.333", + "Mar": "0.403", + "Apr": "0.622", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.796", + "Aug": "0.722", + "Sep": "0.528", + "Oct": "0.302", + "Nov": "0.233", + "Dec": "0.226", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.533", + "May": "0.544", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.416", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.438", + "Mar": "0.550", + "Apr": "0.730", + "May": "0.778", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.771", + "Sep": "0.642", + "Oct": "0.474", + "Nov": "0.445", + "Dec": "0.390", + "All-year": "0.652", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.438", + "Mar": "0.548", + "Apr": "0.728", + "May": "0.776", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.640", + "Oct": "0.470", + "Nov": "0.437", + "Dec": "0.386", + "All-year": "0.650", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.426", + "Mar": "0.538", + "Apr": "0.717", + "May": "0.769", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.766", + "Sep": "0.635", + "Oct": "0.461", + "Nov": "0.425", + "Dec": "0.376", + "All-year": "0.641", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.422", + "Mar": "0.530", + "Apr": "0.715", + "May": "0.760", + "Jun": "0.829", + "Jul": "0.837", + "Aug": "0.757", + "Sep": "0.628", + "Oct": "0.452", + "Nov": "0.418", + "Dec": "0.362", + "All-year": "0.637", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.388", + "Mar": "0.506", + "Apr": "0.703", + "May": "0.751", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.753", + "Sep": "0.603", + "Oct": "0.423", + "Nov": "0.386", + "Dec": "0.331", + "All-year": "0.615", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.324", + "Mar": "0.448", + "Apr": "0.652", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.783", + "Aug": "0.687", + "Sep": "0.552", + "Oct": "0.333", + "Nov": "0.272", + "Dec": "0.242", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.170", + "Mar": "0.312", + "Apr": "0.545", + "May": "0.594", + "Jun": "0.686", + "Jul": "0.710", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.193", + "Nov": "0.145", + "Dec": "0.122", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.111", + "Mar": "0.208", + "Apr": "0.431", + "May": "0.450", + "Jun": "0.582", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.386", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.445", + "Apr": "0.692", + "May": "0.722", + "Jun": "0.799", + "Jul": "0.763", + "Aug": "0.708", + "Sep": "0.560", + "Oct": "0.379", + "Nov": "0.307", + "Dec": "0.273", + "All-year": "0.626", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.442", + "Apr": "0.686", + "May": "0.714", + "Jun": "0.796", + "Jul": "0.761", + "Aug": "0.707", + "Sep": "0.558", + "Oct": "0.378", + "Nov": "0.303", + "Dec": "0.270", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.292", + "Mar": "0.438", + "Apr": "0.682", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.751", + "Aug": "0.704", + "Sep": "0.551", + "Oct": "0.372", + "Nov": "0.282", + "Dec": "0.261", + "All-year": "0.619", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.284", + "Mar": "0.425", + "Apr": "0.668", + "May": "0.706", + "Jun": "0.772", + "Jul": "0.751", + "Aug": "0.691", + "Sep": "0.535", + "Oct": "0.360", + "Nov": "0.275", + "Dec": "0.243", + "All-year": "0.612", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.231", + "Mar": "0.397", + "Apr": "0.640", + "May": "0.703", + "Jun": "0.760", + "Jul": "0.739", + "Aug": "0.652", + "Sep": "0.496", + "Oct": "0.316", + "Nov": "0.206", + "Dec": "0.206", + "All-year": "0.587", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.167", + "Mar": "0.263", + "Apr": "0.596", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.668", + "Aug": "0.591", + "Sep": "0.465", + "Oct": "0.231", + "Nov": "0.151", + "Dec": "0.136", + "All-year": "0.533", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.153", + "Apr": "0.456", + "May": "0.433", + "Jun": "0.564", + "Jul": "0.477", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.142", + "Nov": "0.068", + "Dec": "0.000", + "All-year": "0.449", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.493", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.550", + "Feb": "0.662", + "Mar": "0.733", + "Apr": "0.857", + "May": "0.897", + "Jun": "0.925", + "Jul": "0.942", + "Aug": "0.893", + "Sep": "0.794", + "Oct": "0.651", + "Nov": "0.635", + "Dec": "0.586", + "All-year": "0.752", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.661", + "Mar": "0.725", + "Apr": "0.854", + "May": "0.896", + "Jun": "0.924", + "Jul": "0.940", + "Aug": "0.892", + "Sep": "0.793", + "Oct": "0.649", + "Nov": "0.633", + "Dec": "0.583", + "All-year": "0.750", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.535", + "Feb": "0.659", + "Mar": "0.718", + "Apr": "0.846", + "May": "0.890", + "Jun": "0.920", + "Jul": "0.940", + "Aug": "0.890", + "Sep": "0.787", + "Oct": "0.639", + "Nov": "0.625", + "Dec": "0.570", + "All-year": "0.743", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.535", + "Feb": "0.652", + "Mar": "0.712", + "Apr": "0.842", + "May": "0.888", + "Jun": "0.920", + "Jul": "0.938", + "Aug": "0.890", + "Sep": "0.784", + "Oct": "0.622", + "Nov": "0.608", + "Dec": "0.558", + "All-year": "0.741", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.500", + "Feb": "0.611", + "Mar": "0.700", + "Apr": "0.828", + "May": "0.876", + "Jun": "0.919", + "Jul": "0.927", + "Aug": "0.884", + "Sep": "0.758", + "Oct": "0.604", + "Nov": "0.585", + "Dec": "0.545", + "All-year": "0.722", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.431", + "Feb": "0.579", + "Mar": "0.667", + "Apr": "0.783", + "May": "0.864", + "Jun": "0.911", + "Jul": "0.911", + "Aug": "0.857", + "Sep": "0.717", + "Oct": "0.564", + "Nov": "0.490", + "Dec": "0.449", + "All-year": "0.684", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.473", + "Mar": "0.551", + "Apr": "0.733", + "May": "0.806", + "Jun": "0.879", + "Jul": "0.896", + "Aug": "0.795", + "Sep": "0.650", + "Oct": "0.435", + "Nov": "0.369", + "Dec": "0.337", + "All-year": "0.605", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.366", + "Mar": "0.427", + "Apr": "0.672", + "May": "0.737", + "Jun": "0.857", + "Jul": "0.844", + "Aug": "0.773", + "Sep": "0.547", + "Oct": "0.312", + "Nov": "0.291", + "Dec": "0.292", + "All-year": "0.545", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.547", + "Mar": "0.642", + "Apr": "0.804", + "May": "0.862", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.840", + "Sep": "0.750", + "Oct": "0.587", + "Nov": "0.530", + "Dec": "0.476", + "All-year": "0.731", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.474", + "Feb": "0.544", + "Mar": "0.642", + "Apr": "0.803", + "May": "0.858", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.839", + "Sep": "0.750", + "Oct": "0.583", + "Nov": "0.526", + "Dec": "0.473", + "All-year": "0.730", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.463", + "Feb": "0.535", + "Mar": "0.638", + "Apr": "0.796", + "May": "0.853", + "Jun": "0.899", + "Jul": "0.911", + "Aug": "0.838", + "Sep": "0.737", + "Oct": "0.577", + "Nov": "0.516", + "Dec": "0.470", + "All-year": "0.722", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.524", + "Mar": "0.633", + "Apr": "0.794", + "May": "0.847", + "Jun": "0.897", + "Jul": "0.905", + "Aug": "0.831", + "Sep": "0.728", + "Oct": "0.574", + "Nov": "0.509", + "Dec": "0.457", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.419", + "Feb": "0.490", + "Mar": "0.604", + "Apr": "0.783", + "May": "0.834", + "Jun": "0.892", + "Jul": "0.902", + "Aug": "0.822", + "Sep": "0.701", + "Oct": "0.515", + "Nov": "0.473", + "Dec": "0.411", + "All-year": "0.703", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.329", + "Feb": "0.387", + "Mar": "0.543", + "Apr": "0.742", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.874", + "Aug": "0.797", + "Sep": "0.652", + "Oct": "0.440", + "Nov": "0.412", + "Dec": "0.340", + "All-year": "0.649", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.266", + "Mar": "0.450", + "Apr": "0.661", + "May": "0.739", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.732", + "Sep": "0.502", + "Oct": "0.308", + "Nov": "0.255", + "Dec": "0.229", + "All-year": "0.566", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.141", + "Mar": "0.353", + "Apr": "0.566", + "May": "0.602", + "Jun": "0.763", + "Jul": "0.724", + "Aug": "0.602", + "Sep": "0.437", + "Oct": "0.200", + "Nov": "0.172", + "Dec": "0.117", + "All-year": "0.508", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.342", + "Mar": "0.569", + "Apr": "0.756", + "May": "0.820", + "Jun": "0.854", + "Jul": "0.843", + "Aug": "0.798", + "Sep": "0.647", + "Oct": "0.470", + "Nov": "0.397", + "Dec": "0.372", + "All-year": "0.706", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.337", + "Feb": "0.342", + "Mar": "0.569", + "Apr": "0.754", + "May": "0.820", + "Jun": "0.851", + "Jul": "0.840", + "Aug": "0.796", + "Sep": "0.646", + "Oct": "0.470", + "Nov": "0.392", + "Dec": "0.370", + "All-year": "0.704", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.325", + "Feb": "0.327", + "Mar": "0.563", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.836", + "Aug": "0.790", + "Sep": "0.643", + "Oct": "0.457", + "Nov": "0.383", + "Dec": "0.364", + "All-year": "0.697", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.316", + "Feb": "0.310", + "Mar": "0.556", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.829", + "Aug": "0.786", + "Sep": "0.628", + "Oct": "0.454", + "Nov": "0.372", + "Dec": "0.352", + "All-year": "0.692", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.265", + "Mar": "0.512", + "Apr": "0.736", + "May": "0.793", + "Jun": "0.833", + "Jul": "0.828", + "Aug": "0.759", + "Sep": "0.610", + "Oct": "0.419", + "Nov": "0.318", + "Dec": "0.309", + "All-year": "0.672", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.182", + "Mar": "0.344", + "Apr": "0.701", + "May": "0.743", + "Jun": "0.804", + "Jul": "0.797", + "Aug": "0.708", + "Sep": "0.553", + "Oct": "0.339", + "Nov": "0.239", + "Dec": "0.216", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.118", + "Mar": "0.247", + "Apr": "0.550", + "May": "0.617", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.543", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.147", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.129", + "Nov": "0.101", + "Dec": "0.000", + "All-year": "0.475", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.765", + "Mar": "0.820", + "Apr": "0.918", + "May": "0.942", + "Jun": "0.953", + "Jul": "0.976", + "Aug": "0.934", + "Sep": "0.858", + "Oct": "0.738", + "Nov": "0.725", + "Dec": "0.664", + "All-year": "0.821", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.765", + "Mar": "0.817", + "Apr": "0.917", + "May": "0.942", + "Jun": "0.953", + "Jul": "0.974", + "Aug": "0.933", + "Sep": "0.858", + "Oct": "0.734", + "Nov": "0.724", + "Dec": "0.662", + "All-year": "0.820", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.637", + "Feb": "0.758", + "Mar": "0.811", + "Apr": "0.914", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.929", + "Sep": "0.855", + "Oct": "0.726", + "Nov": "0.719", + "Dec": "0.659", + "All-year": "0.813", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.634", + "Feb": "0.750", + "Mar": "0.806", + "Apr": "0.911", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.926", + "Sep": "0.850", + "Oct": "0.724", + "Nov": "0.708", + "Dec": "0.656", + "All-year": "0.810", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.599", + "Feb": "0.726", + "Mar": "0.784", + "Apr": "0.902", + "May": "0.936", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.918", + "Sep": "0.828", + "Oct": "0.690", + "Nov": "0.693", + "Dec": "0.630", + "All-year": "0.793", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.675", + "Mar": "0.735", + "Apr": "0.878", + "May": "0.925", + "Jun": "0.942", + "Jul": "0.958", + "Aug": "0.913", + "Sep": "0.812", + "Oct": "0.655", + "Nov": "0.636", + "Dec": "0.586", + "All-year": "0.764", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.595", + "Mar": "0.682", + "Apr": "0.839", + "May": "0.887", + "Jun": "0.935", + "Jul": "0.956", + "Aug": "0.872", + "Sep": "0.744", + "Oct": "0.552", + "Nov": "0.519", + "Dec": "0.435", + "All-year": "0.703", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.312", + "Feb": "0.519", + "Mar": "0.608", + "Apr": "0.811", + "May": "0.880", + "Jun": "0.922", + "Jul": "0.934", + "Aug": "0.868", + "Sep": "0.690", + "Oct": "0.408", + "Nov": "0.413", + "Dec": "0.326", + "All-year": "0.648", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.577", + "Feb": "0.637", + "Mar": "0.726", + "Apr": "0.873", + "May": "0.926", + "Jun": "0.938", + "Jul": "0.944", + "Aug": "0.898", + "Sep": "0.822", + "Oct": "0.680", + "Nov": "0.615", + "Dec": "0.556", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.572", + "Feb": "0.635", + "Mar": "0.722", + "Apr": "0.873", + "May": "0.923", + "Jun": "0.937", + "Jul": "0.944", + "Aug": "0.897", + "Sep": "0.820", + "Oct": "0.677", + "Nov": "0.613", + "Dec": "0.554", + "All-year": "0.802", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.557", + "Feb": "0.624", + "Mar": "0.714", + "Apr": "0.865", + "May": "0.919", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.892", + "Sep": "0.813", + "Oct": "0.670", + "Nov": "0.607", + "Dec": "0.543", + "All-year": "0.795", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.556", + "Feb": "0.620", + "Mar": "0.706", + "Apr": "0.865", + "May": "0.916", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.889", + "Sep": "0.804", + "Oct": "0.657", + "Nov": "0.607", + "Dec": "0.536", + "All-year": "0.792", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.507", + "Feb": "0.589", + "Mar": "0.697", + "Apr": "0.853", + "May": "0.915", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.876", + "Sep": "0.794", + "Oct": "0.622", + "Nov": "0.577", + "Dec": "0.505", + "All-year": "0.777", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.414", + "Feb": "0.552", + "Mar": "0.668", + "Apr": "0.835", + "May": "0.887", + "Jun": "0.920", + "Jul": "0.935", + "Aug": "0.860", + "Sep": "0.761", + "Oct": "0.556", + "Nov": "0.495", + "Dec": "0.442", + "All-year": "0.744", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.390", + "Mar": "0.570", + "Apr": "0.781", + "May": "0.843", + "Jun": "0.886", + "Jul": "0.919", + "Aug": "0.804", + "Sep": "0.676", + "Oct": "0.415", + "Nov": "0.354", + "Dec": "0.288", + "All-year": "0.671", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.251", + "Mar": "0.448", + "Apr": "0.721", + "May": "0.774", + "Jun": "0.869", + "Jul": "0.853", + "Aug": "0.774", + "Sep": "0.533", + "Oct": "0.304", + "Nov": "0.292", + "Dec": "0.196", + "All-year": "0.617", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.417", + "Feb": "0.449", + "Mar": "0.632", + "Apr": "0.821", + "May": "0.899", + "Jun": "0.924", + "Jul": "0.888", + "Aug": "0.870", + "Sep": "0.739", + "Oct": "0.593", + "Nov": "0.512", + "Dec": "0.457", + "All-year": "0.783", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.406", + "Feb": "0.449", + "Mar": "0.629", + "Apr": "0.821", + "May": "0.894", + "Jun": "0.921", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.739", + "Oct": "0.591", + "Nov": "0.510", + "Dec": "0.456", + "All-year": "0.781", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.397", + "Feb": "0.435", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.891", + "Jun": "0.919", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.735", + "Oct": "0.565", + "Nov": "0.506", + "Dec": "0.450", + "All-year": "0.776", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.388", + "Feb": "0.426", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.883", + "Jun": "0.915", + "Jul": "0.886", + "Aug": "0.860", + "Sep": "0.729", + "Oct": "0.558", + "Nov": "0.479", + "Dec": "0.433", + "All-year": "0.771", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.335", + "Mar": "0.552", + "Apr": "0.810", + "May": "0.872", + "Jun": "0.907", + "Jul": "0.878", + "Aug": "0.858", + "Sep": "0.721", + "Oct": "0.522", + "Nov": "0.432", + "Dec": "0.399", + "All-year": "0.755", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.320", + "Feb": "0.259", + "Mar": "0.508", + "Apr": "0.790", + "May": "0.836", + "Jun": "0.882", + "Jul": "0.851", + "Aug": "0.824", + "Sep": "0.669", + "Oct": "0.452", + "Nov": "0.335", + "Dec": "0.285", + "All-year": "0.705", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.132", + "Mar": "0.421", + "Apr": "0.703", + "May": "0.753", + "Jun": "0.814", + "Jul": "0.831", + "Aug": "0.727", + "Sep": "0.528", + "Oct": "0.315", + "Nov": "0.147", + "Dec": "0.091", + "All-year": "0.636", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.108", + "Mar": "0.227", + "Apr": "0.558", + "May": "0.638", + "Jun": "0.807", + "Jul": "0.694", + "Aug": "0.655", + "Sep": "0.418", + "Oct": "0.231", + "Nov": "0.124", + "Dec": "0.000", + "All-year": "0.577", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.887", + "Feb": "0.919", + "Mar": "0.947", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.927", + "Nov": "0.909", + "Dec": "0.890", + "All-year": "0.944", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.887", + "Feb": "0.917", + "Mar": "0.947", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.925", + "Nov": "0.908", + "Dec": "0.887", + "All-year": "0.943", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.886", + "Feb": "0.917", + "Mar": "0.943", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.924", + "Nov": "0.904", + "Dec": "0.886", + "All-year": "0.941", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.884", + "Feb": "0.917", + "Mar": "0.943", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.973", + "Oct": "0.917", + "Nov": "0.901", + "Dec": "0.882", + "All-year": "0.940", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.870", + "Feb": "0.914", + "Mar": "0.938", + "Apr": "0.990", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.967", + "Oct": "0.907", + "Nov": "0.888", + "Dec": "0.866", + "All-year": "0.932", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.842", + "Feb": "0.906", + "Mar": "0.925", + "Apr": "0.990", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.958", + "Oct": "0.900", + "Nov": "0.876", + "Dec": "0.821", + "All-year": "0.920", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.761", + "Feb": "0.867", + "Mar": "0.905", + "Apr": "0.988", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.994", + "Sep": "0.937", + "Oct": "0.864", + "Nov": "0.806", + "Dec": "0.764", + "All-year": "0.899", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.707", + "Feb": "0.828", + "Mar": "0.897", + "Apr": "0.988", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.993", + "Sep": "0.912", + "Oct": "0.820", + "Nov": "0.735", + "Dec": "0.688", + "All-year": "0.878", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.832", + "Feb": "0.869", + "Mar": "0.919", + "Apr": "0.975", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.945", + "Oct": "0.906", + "Nov": "0.864", + "Dec": "0.821", + "All-year": "0.937", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.829", + "Feb": "0.869", + "Mar": "0.919", + "Apr": "0.974", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.944", + "Oct": "0.905", + "Nov": "0.863", + "Dec": "0.819", + "All-year": "0.936", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.826", + "Feb": "0.861", + "Mar": "0.917", + "Apr": "0.972", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.943", + "Oct": "0.899", + "Nov": "0.862", + "Dec": "0.811", + "All-year": "0.934", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.816", + "Feb": "0.861", + "Mar": "0.917", + "Apr": "0.968", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.943", + "Oct": "0.892", + "Nov": "0.859", + "Dec": "0.800", + "All-year": "0.932", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.801", + "Feb": "0.843", + "Mar": "0.901", + "Apr": "0.967", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.977", + "Sep": "0.934", + "Oct": "0.882", + "Nov": "0.836", + "Dec": "0.776", + "All-year": "0.925", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.745", + "Feb": "0.819", + "Mar": "0.887", + "Apr": "0.966", + "May": "0.993", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.967", + "Sep": "0.931", + "Oct": "0.849", + "Nov": "0.800", + "Dec": "0.742", + "All-year": "0.910", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.620", + "Feb": "0.761", + "Mar": "0.832", + "Apr": "0.958", + "May": "0.993", + "Jun": "0.992", + "Jul": "0.988", + "Aug": "0.966", + "Sep": "0.882", + "Oct": "0.795", + "Nov": "0.708", + "Dec": "0.668", + "All-year": "0.876", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.533", + "Feb": "0.670", + "Mar": "0.814", + "Apr": "0.941", + "May": "0.993", + "Jun": "0.991", + "Jul": "0.988", + "Aug": "0.963", + "Sep": "0.875", + "Oct": "0.726", + "Nov": "0.613", + "Dec": "0.546", + "All-year": "0.858", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.718", + "Feb": "0.713", + "Mar": "0.872", + "Apr": "0.943", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.914", + "Oct": "0.858", + "Nov": "0.803", + "Dec": "0.763", + "All-year": "0.928", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.718", + "Feb": "0.713", + "Mar": "0.870", + "Apr": "0.943", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.911", + "Oct": "0.853", + "Nov": "0.803", + "Dec": "0.761", + "All-year": "0.927", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.707", + "Feb": "0.710", + "Mar": "0.866", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.908", + "Oct": "0.851", + "Nov": "0.800", + "Dec": "0.758", + "All-year": "0.926", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.707", + "Feb": "0.710", + "Mar": "0.859", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.961", + "Sep": "0.908", + "Oct": "0.847", + "Nov": "0.800", + "Dec": "0.753", + "All-year": "0.923", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.681", + "Feb": "0.690", + "Mar": "0.848", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.958", + "Sep": "0.893", + "Oct": "0.827", + "Nov": "0.765", + "Dec": "0.712", + "All-year": "0.915", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.574", + "Feb": "0.635", + "Mar": "0.827", + "Apr": "0.939", + "May": "0.966", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.950", + "Sep": "0.874", + "Oct": "0.784", + "Nov": "0.728", + "Dec": "0.629", + "All-year": "0.893", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.545", + "Mar": "0.766", + "Apr": "0.917", + "May": "0.953", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.899", + "Sep": "0.844", + "Oct": "0.728", + "Nov": "0.561", + "Dec": "0.556", + "All-year": "0.858", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.348", + "Feb": "0.436", + "Mar": "0.632", + "Apr": "0.844", + "May": "0.922", + "Jun": "0.958", + "Jul": "0.960", + "Aug": "0.880", + "Sep": "0.772", + "Oct": "0.652", + "Nov": "0.460", + "Dec": "0.388", + "All-year": "0.824", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.984", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.988", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.984", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.988", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.984", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.988", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.984", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.988", + "All-year": "0.988", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.981", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.988", + "All-year": "0.988", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.981", + "Feb": "0.984", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.986", + "Dec": "0.988", + "All-year": "0.987", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.977", + "Feb": "0.984", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.985", + "Dec": "0.987", + "All-year": "0.984", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.961", + "Feb": "0.979", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.983", + "Dec": "0.985", + "All-year": "0.980", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.941", + "Feb": "0.953", + "Mar": "0.989", + "Apr": "0.998", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.968", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.941", + "Feb": "0.953", + "Mar": "0.989", + "Apr": "0.998", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.968", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.940", + "Feb": "0.953", + "Mar": "0.987", + "Apr": "0.998", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.964", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.938", + "Feb": "0.953", + "Mar": "0.987", + "Apr": "0.998", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.962", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.936", + "Feb": "0.950", + "Mar": "0.987", + "Apr": "0.997", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.970", + "Nov": "0.975", + "Dec": "0.958", + "All-year": "0.984", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.918", + "Feb": "0.947", + "Mar": "0.984", + "Apr": "0.997", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.966", + "Nov": "0.974", + "Dec": "0.952", + "All-year": "0.983", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.909", + "Feb": "0.931", + "Mar": "0.982", + "Apr": "0.997", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.965", + "Nov": "0.959", + "Dec": "0.937", + "All-year": "0.976", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.878", + "Feb": "0.925", + "Mar": "0.977", + "Apr": "0.997", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.986", + "Oct": "0.944", + "Nov": "0.944", + "Dec": "0.911", + "All-year": "0.973", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.913", + "Feb": "0.891", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.950", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.913", + "Feb": "0.891", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.950", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.913", + "Feb": "0.891", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.946", + "Dec": "0.930", + "All-year": "0.980", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.906", + "Feb": "0.891", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.953", + "Nov": "0.946", + "Dec": "0.925", + "All-year": "0.980", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.906", + "Feb": "0.874", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.950", + "Nov": "0.943", + "Dec": "0.925", + "All-year": "0.979", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.878", + "Feb": "0.874", + "Mar": "0.961", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.930", + "Nov": "0.943", + "Dec": "0.914", + "All-year": "0.974", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.797", + "Feb": "0.864", + "Mar": "0.931", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.940", + "Oct": "0.902", + "Nov": "0.911", + "Dec": "0.872", + "All-year": "0.965", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.766", + "Feb": "0.821", + "Mar": "0.918", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.993", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.914", + "Oct": "0.859", + "Nov": "0.893", + "Dec": "0.844", + "All-year": "0.959", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.989", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.985", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.988", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.982", + "Feb": "0.988", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.987", + "Dec": "0.989", + "All-year": "0.988", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.982", + "Feb": "0.984", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.986", + "Dec": "0.989", + "All-year": "0.987", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.978", + "Feb": "0.984", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.985", + "Dec": "0.987", + "All-year": "0.984", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.962", + "Feb": "0.979", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.996", + "Nov": "0.983", + "Dec": "0.985", + "All-year": "0.981", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.942", + "Feb": "0.954", + "Mar": "0.989", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.968", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.942", + "Feb": "0.954", + "Mar": "0.989", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.968", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.940", + "Feb": "0.954", + "Mar": "0.987", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.965", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.939", + "Feb": "0.954", + "Mar": "0.987", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.976", + "Nov": "0.976", + "Dec": "0.962", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.937", + "Feb": "0.952", + "Mar": "0.987", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.970", + "Nov": "0.975", + "Dec": "0.958", + "All-year": "0.984", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.919", + "Feb": "0.949", + "Mar": "0.984", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.966", + "Nov": "0.974", + "Dec": "0.953", + "All-year": "0.983", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.909", + "Feb": "0.947", + "Mar": "0.982", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.965", + "Nov": "0.959", + "Dec": "0.937", + "All-year": "0.976", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.879", + "Feb": "0.925", + "Mar": "0.977", + "Apr": "0.999", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.988", + "Oct": "0.944", + "Nov": "0.944", + "Dec": "0.911", + "All-year": "0.974", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.913", + "Feb": "0.894", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.950", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.913", + "Feb": "0.894", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.950", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.913", + "Feb": "0.894", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.960", + "Nov": "0.946", + "Dec": "0.930", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.906", + "Feb": "0.891", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.953", + "Nov": "0.946", + "Dec": "0.925", + "All-year": "0.981", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.906", + "Feb": "0.874", + "Mar": "0.964", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.950", + "Nov": "0.943", + "Dec": "0.925", + "All-year": "0.979", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.878", + "Feb": "0.874", + "Mar": "0.961", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.971", + "Oct": "0.930", + "Nov": "0.943", + "Dec": "0.914", + "All-year": "0.974", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.797", + "Feb": "0.864", + "Mar": "0.931", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.994", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.940", + "Oct": "0.902", + "Nov": "0.911", + "Dec": "0.872", + "All-year": "0.965", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.766", + "Feb": "0.842", + "Mar": "0.918", + "Apr": "0.971", + "May": "1.000", + "Jun": "0.993", + "Jul": "1.000", + "Aug": "0.996", + "Sep": "0.914", + "Oct": "0.859", + "Nov": "0.893", + "Dec": "0.844", + "All-year": "0.960", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 4.50 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.011", + "Feb": "0.019", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.026", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.040", + "Sep": "0.028", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.017", + "Mar": "0.015", + "Apr": "0.023", + "May": "0.024", + "Jun": "0.046", + "Jul": "0.036", + "Aug": "0.038", + "Sep": "0.026", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.024", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.003", + "Feb": "0.010", + "Mar": "0.010", + "Apr": "0.017", + "May": "0.011", + "Jun": "0.031", + "Jul": "0.028", + "Aug": "0.033", + "Sep": "0.019", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.017", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.022", + "Jul": "0.017", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.013", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.009", + "Mar": "0.011", + "Apr": "0.019", + "May": "0.016", + "Jun": "0.028", + "Jul": "0.020", + "Aug": "0.026", + "Sep": "0.019", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.007", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.016", + "May": "0.016", + "Jun": "0.024", + "Jul": "0.017", + "Aug": "0.023", + "Sep": "0.017", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.005", + "All-year": "0.021", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.007", + "Jun": "0.015", + "Jul": "0.009", + "Aug": "0.015", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.016", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.004", + "May": "0.008", + "Jun": "0.010", + "Jul": "0.008", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.018", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.006", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.079", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.151", + "Jun": "0.208", + "Jul": "0.171", + "Aug": "0.168", + "Sep": "0.125", + "Oct": "0.071", + "Nov": "0.076", + "Dec": "0.073", + "All-year": "0.121", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.061", + "Feb": "0.076", + "Mar": "0.094", + "Apr": "0.138", + "May": "0.145", + "Jun": "0.203", + "Jul": "0.167", + "Aug": "0.165", + "Sep": "0.122", + "Oct": "0.069", + "Nov": "0.074", + "Dec": "0.070", + "All-year": "0.119", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.060", + "Mar": "0.079", + "Apr": "0.120", + "May": "0.135", + "Jun": "0.195", + "Jul": "0.155", + "Aug": "0.147", + "Sep": "0.113", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.070", + "All-year": "0.109", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.056", + "Mar": "0.072", + "Apr": "0.115", + "May": "0.123", + "Jun": "0.185", + "Jul": "0.148", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.101", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.082", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.040", + "Dec": "0.024", + "All-year": "0.071", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.041", + "Aug": "0.058", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.070", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.142", + "Jul": "0.144", + "Aug": "0.122", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.068", + "Apr": "0.105", + "May": "0.118", + "Jun": "0.140", + "Jul": "0.138", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.108", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.031", + "Mar": "0.056", + "Apr": "0.095", + "May": "0.107", + "Jun": "0.130", + "Jul": "0.117", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.032", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.096", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.051", + "Apr": "0.083", + "May": "0.095", + "Jun": "0.123", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.033", + "Dec": "0.033", + "All-year": "0.091", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.051", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.026", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.074", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.024", + "All-year": "0.098", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.063", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.083", + "Sep": "0.053", + "Oct": "0.022", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.085", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.008", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.019", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.418", + "Aug": "0.382", + "Sep": "0.331", + "Oct": "0.181", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.286", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.426", + "Jul": "0.414", + "Aug": "0.379", + "Sep": "0.327", + "Oct": "0.179", + "Nov": "0.174", + "Dec": "0.173", + "All-year": "0.283", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.148", + "Feb": "0.206", + "Mar": "0.221", + "Apr": "0.332", + "May": "0.370", + "Jun": "0.410", + "Jul": "0.392", + "Aug": "0.360", + "Sep": "0.313", + "Oct": "0.167", + "Nov": "0.169", + "Dec": "0.168", + "All-year": "0.271", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.194", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.360", + "Jun": "0.399", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.298", + "Oct": "0.161", + "Nov": "0.152", + "Dec": "0.155", + "All-year": "0.263", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.141", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.368", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.229", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.078", + "Dec": "0.077", + "All-year": "0.167", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.286", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.348", + "Aug": "0.319", + "Sep": "0.230", + "Oct": "0.119", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.108", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.303", + "Jun": "0.359", + "Jul": "0.345", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.116", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.267", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.098", + "Feb": "0.107", + "Mar": "0.177", + "Apr": "0.265", + "May": "0.294", + "Jun": "0.342", + "Jul": "0.330", + "Aug": "0.306", + "Sep": "0.215", + "Oct": "0.114", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.254", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.098", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.326", + "Jul": "0.316", + "Aug": "0.283", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.085", + "All-year": "0.245", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.059", + "Feb": "0.077", + "Mar": "0.128", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.211", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.071", + "Apr": "0.130", + "May": "0.158", + "Jun": "0.197", + "Jul": "0.168", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.065", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.064", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.130", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.310", + "Jul": "0.245", + "Aug": "0.259", + "Sep": "0.186", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.073", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.130", + "Apr": "0.238", + "May": "0.251", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.182", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.128", + "Apr": "0.222", + "May": "0.239", + "Jun": "0.290", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.089", + "Nov": "0.065", + "Dec": "0.070", + "All-year": "0.236", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.200", + "May": "0.224", + "Jun": "0.268", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.066", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.202", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.138", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.128", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.288", + "Feb": "0.400", + "Mar": "0.425", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.701", + "Aug": "0.631", + "Sep": "0.529", + "Oct": "0.343", + "Nov": "0.324", + "Dec": "0.317", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.286", + "Feb": "0.398", + "Mar": "0.422", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.685", + "Jul": "0.699", + "Aug": "0.630", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.320", + "Dec": "0.312", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.280", + "Feb": "0.389", + "Mar": "0.408", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.669", + "Jul": "0.688", + "Aug": "0.625", + "Sep": "0.519", + "Oct": "0.321", + "Nov": "0.312", + "Dec": "0.295", + "All-year": "0.470", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.277", + "Feb": "0.384", + "Mar": "0.401", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.658", + "Jul": "0.686", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.312", + "Nov": "0.310", + "Dec": "0.285", + "All-year": "0.463", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.558", + "Jun": "0.635", + "Jul": "0.655", + "Aug": "0.587", + "Sep": "0.483", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.255", + "All-year": "0.432", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.200", + "Feb": "0.249", + "Mar": "0.339", + "Apr": "0.481", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.176", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.267", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.183", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.197", + "Feb": "0.232", + "Mar": "0.370", + "Apr": "0.527", + "May": "0.544", + "Jun": "0.632", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.282", + "Nov": "0.241", + "Dec": "0.235", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.196", + "Feb": "0.231", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.542", + "Jun": "0.629", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.279", + "Nov": "0.238", + "Dec": "0.235", + "All-year": "0.464", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.225", + "Mar": "0.354", + "Apr": "0.513", + "May": "0.529", + "Jun": "0.619", + "Jul": "0.615", + "Aug": "0.561", + "Sep": "0.440", + "Oct": "0.271", + "Nov": "0.230", + "Dec": "0.226", + "All-year": "0.454", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.213", + "Mar": "0.343", + "Apr": "0.506", + "May": "0.526", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.214", + "All-year": "0.449", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.182", + "Mar": "0.295", + "Apr": "0.472", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.508", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.172", + "All-year": "0.415", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.363", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.450", + "Sep": "0.314", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.113", + "All-year": "0.356", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.095", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.295", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.244", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.159", + "Mar": "0.255", + "Apr": "0.478", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.501", + "Aug": "0.505", + "Sep": "0.340", + "Oct": "0.227", + "Nov": "0.178", + "Dec": "0.142", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.157", + "Mar": "0.255", + "Apr": "0.475", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.496", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.219", + "Nov": "0.176", + "Dec": "0.141", + "All-year": "0.443", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.136", + "Mar": "0.243", + "Apr": "0.465", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.488", + "Sep": "0.331", + "Oct": "0.207", + "Nov": "0.167", + "Dec": "0.134", + "All-year": "0.433", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.476", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.142", + "Dec": "0.133", + "All-year": "0.425", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.101", + "Mar": "0.190", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.151", + "Nov": "0.125", + "Dec": "0.108", + "All-year": "0.390", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.133", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.037", + "Dec": "0.000", + "All-year": "0.317", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.193", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.366", + "Feb": "0.472", + "Mar": "0.535", + "Apr": "0.667", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.813", + "Aug": "0.743", + "Sep": "0.634", + "Oct": "0.435", + "Nov": "0.417", + "Dec": "0.403", + "All-year": "0.581", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.472", + "Mar": "0.534", + "Apr": "0.665", + "May": "0.724", + "Jun": "0.799", + "Jul": "0.811", + "Aug": "0.741", + "Sep": "0.630", + "Oct": "0.433", + "Nov": "0.415", + "Dec": "0.399", + "All-year": "0.579", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.471", + "Mar": "0.525", + "Apr": "0.660", + "May": "0.720", + "Jun": "0.792", + "Jul": "0.806", + "Aug": "0.734", + "Sep": "0.619", + "Oct": "0.423", + "Nov": "0.405", + "Dec": "0.392", + "All-year": "0.572", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.467", + "Mar": "0.521", + "Apr": "0.655", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.611", + "Oct": "0.413", + "Nov": "0.389", + "Dec": "0.383", + "All-year": "0.566", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.322", + "Feb": "0.426", + "Mar": "0.487", + "Apr": "0.626", + "May": "0.695", + "Jun": "0.774", + "Jul": "0.778", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.382", + "Nov": "0.353", + "Dec": "0.327", + "All-year": "0.538", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.362", + "Mar": "0.434", + "Apr": "0.597", + "May": "0.639", + "Jun": "0.722", + "Jul": "0.740", + "Aug": "0.652", + "Sep": "0.526", + "Oct": "0.319", + "Nov": "0.258", + "Dec": "0.259", + "All-year": "0.481", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.226", + "Mar": "0.338", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.154", + "All-year": "0.382", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.363", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.310", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.344", + "Mar": "0.478", + "Apr": "0.627", + "May": "0.676", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.663", + "Sep": "0.537", + "Oct": "0.390", + "Nov": "0.349", + "Dec": "0.305", + "All-year": "0.565", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.342", + "Mar": "0.476", + "Apr": "0.627", + "May": "0.675", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.533", + "Oct": "0.386", + "Nov": "0.346", + "Dec": "0.304", + "All-year": "0.562", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.326", + "Mar": "0.468", + "Apr": "0.619", + "May": "0.656", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.654", + "Sep": "0.522", + "Oct": "0.377", + "Nov": "0.342", + "Dec": "0.297", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.256", + "Feb": "0.326", + "Mar": "0.461", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.654", + "Sep": "0.512", + "Oct": "0.362", + "Nov": "0.329", + "Dec": "0.290", + "All-year": "0.550", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.282", + "Mar": "0.436", + "Apr": "0.586", + "May": "0.618", + "Jun": "0.713", + "Jul": "0.720", + "Aug": "0.626", + "Sep": "0.484", + "Oct": "0.328", + "Nov": "0.286", + "Dec": "0.260", + "All-year": "0.523", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.250", + "Mar": "0.366", + "Apr": "0.526", + "May": "0.563", + "Jun": "0.678", + "Jul": "0.631", + "Aug": "0.573", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.192", + "Dec": "0.171", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.120", + "Mar": "0.257", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.033", + "All-year": "0.360", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.275", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.349", + "Apr": "0.593", + "May": "0.601", + "Jun": "0.657", + "Jul": "0.651", + "Aug": "0.620", + "Sep": "0.431", + "Oct": "0.289", + "Nov": "0.249", + "Dec": "0.198", + "All-year": "0.542", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.347", + "Apr": "0.593", + "May": "0.598", + "Jun": "0.654", + "Jul": "0.651", + "Aug": "0.618", + "Sep": "0.426", + "Oct": "0.282", + "Nov": "0.249", + "Dec": "0.195", + "All-year": "0.539", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.184", + "Feb": "0.203", + "Mar": "0.341", + "Apr": "0.575", + "May": "0.582", + "Jun": "0.650", + "Jul": "0.636", + "Aug": "0.612", + "Sep": "0.414", + "Oct": "0.278", + "Nov": "0.235", + "Dec": "0.184", + "All-year": "0.530", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.169", + "Feb": "0.202", + "Mar": "0.335", + "Apr": "0.575", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.629", + "Aug": "0.606", + "Sep": "0.408", + "Oct": "0.267", + "Nov": "0.215", + "Dec": "0.184", + "All-year": "0.525", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.151", + "Mar": "0.298", + "Apr": "0.567", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.602", + "Aug": "0.552", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.192", + "Dec": "0.134", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.092", + "Mar": "0.203", + "Apr": "0.460", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.528", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.125", + "Nov": "0.057", + "Dec": "0.071", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.289", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.335", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.332", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.267", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.241", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.447", + "Feb": "0.570", + "Mar": "0.636", + "Apr": "0.764", + "May": "0.822", + "Jun": "0.885", + "Jul": "0.886", + "Aug": "0.827", + "Sep": "0.710", + "Oct": "0.551", + "Nov": "0.505", + "Dec": "0.491", + "All-year": "0.676", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.440", + "Feb": "0.567", + "Mar": "0.636", + "Apr": "0.761", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.885", + "Aug": "0.826", + "Sep": "0.708", + "Oct": "0.541", + "Nov": "0.502", + "Dec": "0.485", + "All-year": "0.673", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.434", + "Feb": "0.558", + "Mar": "0.622", + "Apr": "0.756", + "May": "0.819", + "Jun": "0.874", + "Jul": "0.882", + "Aug": "0.825", + "Sep": "0.705", + "Oct": "0.522", + "Nov": "0.499", + "Dec": "0.478", + "All-year": "0.664", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.423", + "Feb": "0.551", + "Mar": "0.620", + "Apr": "0.756", + "May": "0.817", + "Jun": "0.870", + "Jul": "0.878", + "Aug": "0.819", + "Sep": "0.697", + "Oct": "0.509", + "Nov": "0.492", + "Dec": "0.463", + "All-year": "0.661", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.404", + "Feb": "0.519", + "Mar": "0.597", + "Apr": "0.729", + "May": "0.804", + "Jun": "0.867", + "Jul": "0.860", + "Aug": "0.815", + "Sep": "0.673", + "Oct": "0.483", + "Nov": "0.451", + "Dec": "0.433", + "All-year": "0.635", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.355", + "Feb": "0.461", + "Mar": "0.559", + "Apr": "0.697", + "May": "0.756", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.782", + "Sep": "0.644", + "Oct": "0.404", + "Nov": "0.385", + "Dec": "0.376", + "All-year": "0.585", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.223", + "Feb": "0.333", + "Mar": "0.403", + "Apr": "0.622", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.796", + "Aug": "0.722", + "Sep": "0.528", + "Oct": "0.302", + "Nov": "0.233", + "Dec": "0.226", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.533", + "May": "0.544", + "Jun": "0.691", + "Jul": "0.722", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.416", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.368", + "Feb": "0.438", + "Mar": "0.550", + "Apr": "0.730", + "May": "0.778", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.771", + "Sep": "0.642", + "Oct": "0.474", + "Nov": "0.445", + "Dec": "0.390", + "All-year": "0.652", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.362", + "Feb": "0.438", + "Mar": "0.548", + "Apr": "0.728", + "May": "0.776", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.640", + "Oct": "0.470", + "Nov": "0.437", + "Dec": "0.386", + "All-year": "0.650", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.426", + "Mar": "0.538", + "Apr": "0.717", + "May": "0.769", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.766", + "Sep": "0.635", + "Oct": "0.461", + "Nov": "0.425", + "Dec": "0.376", + "All-year": "0.641", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.336", + "Feb": "0.422", + "Mar": "0.530", + "Apr": "0.715", + "May": "0.760", + "Jun": "0.829", + "Jul": "0.837", + "Aug": "0.757", + "Sep": "0.628", + "Oct": "0.452", + "Nov": "0.418", + "Dec": "0.362", + "All-year": "0.637", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.388", + "Mar": "0.506", + "Apr": "0.703", + "May": "0.751", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.753", + "Sep": "0.603", + "Oct": "0.423", + "Nov": "0.386", + "Dec": "0.331", + "All-year": "0.615", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.324", + "Mar": "0.448", + "Apr": "0.652", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.783", + "Aug": "0.687", + "Sep": "0.552", + "Oct": "0.333", + "Nov": "0.272", + "Dec": "0.242", + "All-year": "0.554", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.170", + "Mar": "0.312", + "Apr": "0.545", + "May": "0.594", + "Jun": "0.686", + "Jul": "0.710", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.193", + "Nov": "0.145", + "Dec": "0.122", + "All-year": "0.468", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.111", + "Mar": "0.208", + "Apr": "0.431", + "May": "0.450", + "Jun": "0.582", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.386", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.445", + "Apr": "0.692", + "May": "0.722", + "Jun": "0.799", + "Jul": "0.763", + "Aug": "0.708", + "Sep": "0.560", + "Oct": "0.379", + "Nov": "0.307", + "Dec": "0.273", + "All-year": "0.626", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.442", + "Apr": "0.686", + "May": "0.714", + "Jun": "0.796", + "Jul": "0.761", + "Aug": "0.707", + "Sep": "0.558", + "Oct": "0.378", + "Nov": "0.303", + "Dec": "0.270", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.292", + "Mar": "0.438", + "Apr": "0.682", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.751", + "Aug": "0.704", + "Sep": "0.551", + "Oct": "0.372", + "Nov": "0.282", + "Dec": "0.261", + "All-year": "0.619", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.284", + "Mar": "0.425", + "Apr": "0.668", + "May": "0.706", + "Jun": "0.772", + "Jul": "0.751", + "Aug": "0.691", + "Sep": "0.535", + "Oct": "0.360", + "Nov": "0.275", + "Dec": "0.243", + "All-year": "0.612", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.231", + "Mar": "0.397", + "Apr": "0.640", + "May": "0.703", + "Jun": "0.760", + "Jul": "0.739", + "Aug": "0.652", + "Sep": "0.496", + "Oct": "0.316", + "Nov": "0.206", + "Dec": "0.206", + "All-year": "0.587", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.167", + "Mar": "0.263", + "Apr": "0.596", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.668", + "Aug": "0.591", + "Sep": "0.465", + "Oct": "0.231", + "Nov": "0.151", + "Dec": "0.136", + "All-year": "0.533", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.153", + "Apr": "0.456", + "May": "0.433", + "Jun": "0.564", + "Jul": "0.477", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.142", + "Nov": "0.068", + "Dec": "0.000", + "All-year": "0.449", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.493", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.550", + "Feb": "0.662", + "Mar": "0.733", + "Apr": "0.857", + "May": "0.897", + "Jun": "0.925", + "Jul": "0.942", + "Aug": "0.893", + "Sep": "0.794", + "Oct": "0.651", + "Nov": "0.635", + "Dec": "0.586", + "All-year": "0.752", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.661", + "Mar": "0.725", + "Apr": "0.854", + "May": "0.896", + "Jun": "0.924", + "Jul": "0.940", + "Aug": "0.892", + "Sep": "0.793", + "Oct": "0.649", + "Nov": "0.633", + "Dec": "0.583", + "All-year": "0.750", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.535", + "Feb": "0.659", + "Mar": "0.718", + "Apr": "0.846", + "May": "0.890", + "Jun": "0.920", + "Jul": "0.940", + "Aug": "0.890", + "Sep": "0.787", + "Oct": "0.639", + "Nov": "0.625", + "Dec": "0.570", + "All-year": "0.743", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.535", + "Feb": "0.652", + "Mar": "0.712", + "Apr": "0.842", + "May": "0.888", + "Jun": "0.920", + "Jul": "0.938", + "Aug": "0.890", + "Sep": "0.784", + "Oct": "0.622", + "Nov": "0.608", + "Dec": "0.558", + "All-year": "0.741", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.500", + "Feb": "0.611", + "Mar": "0.700", + "Apr": "0.828", + "May": "0.876", + "Jun": "0.919", + "Jul": "0.927", + "Aug": "0.884", + "Sep": "0.758", + "Oct": "0.604", + "Nov": "0.585", + "Dec": "0.545", + "All-year": "0.722", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.431", + "Feb": "0.579", + "Mar": "0.667", + "Apr": "0.783", + "May": "0.864", + "Jun": "0.911", + "Jul": "0.911", + "Aug": "0.857", + "Sep": "0.717", + "Oct": "0.564", + "Nov": "0.490", + "Dec": "0.449", + "All-year": "0.684", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.473", + "Mar": "0.551", + "Apr": "0.733", + "May": "0.806", + "Jun": "0.879", + "Jul": "0.896", + "Aug": "0.795", + "Sep": "0.650", + "Oct": "0.435", + "Nov": "0.369", + "Dec": "0.337", + "All-year": "0.605", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.366", + "Mar": "0.427", + "Apr": "0.672", + "May": "0.737", + "Jun": "0.857", + "Jul": "0.844", + "Aug": "0.773", + "Sep": "0.547", + "Oct": "0.312", + "Nov": "0.291", + "Dec": "0.292", + "All-year": "0.545", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.547", + "Mar": "0.642", + "Apr": "0.804", + "May": "0.862", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.840", + "Sep": "0.750", + "Oct": "0.587", + "Nov": "0.530", + "Dec": "0.476", + "All-year": "0.731", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.474", + "Feb": "0.544", + "Mar": "0.642", + "Apr": "0.803", + "May": "0.858", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.839", + "Sep": "0.750", + "Oct": "0.583", + "Nov": "0.526", + "Dec": "0.473", + "All-year": "0.730", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.463", + "Feb": "0.535", + "Mar": "0.638", + "Apr": "0.796", + "May": "0.853", + "Jun": "0.899", + "Jul": "0.911", + "Aug": "0.838", + "Sep": "0.737", + "Oct": "0.577", + "Nov": "0.516", + "Dec": "0.470", + "All-year": "0.722", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.524", + "Mar": "0.633", + "Apr": "0.794", + "May": "0.847", + "Jun": "0.897", + "Jul": "0.905", + "Aug": "0.831", + "Sep": "0.728", + "Oct": "0.574", + "Nov": "0.509", + "Dec": "0.457", + "All-year": "0.720", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.419", + "Feb": "0.490", + "Mar": "0.604", + "Apr": "0.783", + "May": "0.834", + "Jun": "0.892", + "Jul": "0.902", + "Aug": "0.822", + "Sep": "0.701", + "Oct": "0.515", + "Nov": "0.473", + "Dec": "0.411", + "All-year": "0.703", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.329", + "Feb": "0.387", + "Mar": "0.543", + "Apr": "0.742", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.874", + "Aug": "0.797", + "Sep": "0.652", + "Oct": "0.440", + "Nov": "0.412", + "Dec": "0.340", + "All-year": "0.649", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.266", + "Mar": "0.450", + "Apr": "0.661", + "May": "0.739", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.732", + "Sep": "0.502", + "Oct": "0.308", + "Nov": "0.255", + "Dec": "0.229", + "All-year": "0.566", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.141", + "Mar": "0.353", + "Apr": "0.566", + "May": "0.602", + "Jun": "0.763", + "Jul": "0.724", + "Aug": "0.602", + "Sep": "0.437", + "Oct": "0.200", + "Nov": "0.172", + "Dec": "0.117", + "All-year": "0.508", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.342", + "Mar": "0.569", + "Apr": "0.756", + "May": "0.820", + "Jun": "0.854", + "Jul": "0.843", + "Aug": "0.798", + "Sep": "0.647", + "Oct": "0.470", + "Nov": "0.397", + "Dec": "0.372", + "All-year": "0.706", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.337", + "Feb": "0.342", + "Mar": "0.569", + "Apr": "0.754", + "May": "0.820", + "Jun": "0.851", + "Jul": "0.840", + "Aug": "0.796", + "Sep": "0.646", + "Oct": "0.470", + "Nov": "0.392", + "Dec": "0.370", + "All-year": "0.704", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.325", + "Feb": "0.327", + "Mar": "0.563", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.836", + "Aug": "0.790", + "Sep": "0.643", + "Oct": "0.457", + "Nov": "0.383", + "Dec": "0.364", + "All-year": "0.697", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.316", + "Feb": "0.310", + "Mar": "0.556", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.829", + "Aug": "0.786", + "Sep": "0.628", + "Oct": "0.454", + "Nov": "0.372", + "Dec": "0.352", + "All-year": "0.692", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.262", + "Feb": "0.265", + "Mar": "0.512", + "Apr": "0.736", + "May": "0.793", + "Jun": "0.833", + "Jul": "0.828", + "Aug": "0.759", + "Sep": "0.610", + "Oct": "0.419", + "Nov": "0.318", + "Dec": "0.309", + "All-year": "0.672", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.182", + "Mar": "0.344", + "Apr": "0.701", + "May": "0.743", + "Jun": "0.804", + "Jul": "0.797", + "Aug": "0.708", + "Sep": "0.553", + "Oct": "0.339", + "Nov": "0.239", + "Dec": "0.216", + "All-year": "0.623", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.118", + "Mar": "0.247", + "Apr": "0.550", + "May": "0.617", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.543", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.147", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.129", + "Nov": "0.101", + "Dec": "0.000", + "All-year": "0.475", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.765", + "Mar": "0.820", + "Apr": "0.918", + "May": "0.942", + "Jun": "0.953", + "Jul": "0.976", + "Aug": "0.934", + "Sep": "0.858", + "Oct": "0.738", + "Nov": "0.725", + "Dec": "0.664", + "All-year": "0.821", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.765", + "Mar": "0.817", + "Apr": "0.917", + "May": "0.942", + "Jun": "0.953", + "Jul": "0.974", + "Aug": "0.933", + "Sep": "0.858", + "Oct": "0.734", + "Nov": "0.724", + "Dec": "0.662", + "All-year": "0.820", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.637", + "Feb": "0.758", + "Mar": "0.811", + "Apr": "0.914", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.929", + "Sep": "0.855", + "Oct": "0.726", + "Nov": "0.719", + "Dec": "0.659", + "All-year": "0.813", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.634", + "Feb": "0.750", + "Mar": "0.806", + "Apr": "0.911", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.926", + "Sep": "0.850", + "Oct": "0.724", + "Nov": "0.708", + "Dec": "0.656", + "All-year": "0.810", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.599", + "Feb": "0.726", + "Mar": "0.784", + "Apr": "0.902", + "May": "0.936", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.918", + "Sep": "0.828", + "Oct": "0.690", + "Nov": "0.693", + "Dec": "0.630", + "All-year": "0.793", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.675", + "Mar": "0.735", + "Apr": "0.878", + "May": "0.925", + "Jun": "0.942", + "Jul": "0.958", + "Aug": "0.913", + "Sep": "0.812", + "Oct": "0.655", + "Nov": "0.636", + "Dec": "0.586", + "All-year": "0.764", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.595", + "Mar": "0.682", + "Apr": "0.839", + "May": "0.887", + "Jun": "0.935", + "Jul": "0.956", + "Aug": "0.872", + "Sep": "0.744", + "Oct": "0.552", + "Nov": "0.519", + "Dec": "0.435", + "All-year": "0.703", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.312", + "Feb": "0.519", + "Mar": "0.608", + "Apr": "0.811", + "May": "0.880", + "Jun": "0.922", + "Jul": "0.934", + "Aug": "0.868", + "Sep": "0.690", + "Oct": "0.408", + "Nov": "0.413", + "Dec": "0.326", + "All-year": "0.648", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.577", + "Feb": "0.637", + "Mar": "0.726", + "Apr": "0.873", + "May": "0.926", + "Jun": "0.938", + "Jul": "0.944", + "Aug": "0.898", + "Sep": "0.822", + "Oct": "0.680", + "Nov": "0.615", + "Dec": "0.556", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.572", + "Feb": "0.635", + "Mar": "0.722", + "Apr": "0.873", + "May": "0.923", + "Jun": "0.937", + "Jul": "0.944", + "Aug": "0.897", + "Sep": "0.820", + "Oct": "0.677", + "Nov": "0.613", + "Dec": "0.554", + "All-year": "0.802", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.557", + "Feb": "0.624", + "Mar": "0.714", + "Apr": "0.865", + "May": "0.919", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.892", + "Sep": "0.813", + "Oct": "0.670", + "Nov": "0.607", + "Dec": "0.543", + "All-year": "0.795", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.556", + "Feb": "0.620", + "Mar": "0.706", + "Apr": "0.865", + "May": "0.916", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.889", + "Sep": "0.804", + "Oct": "0.657", + "Nov": "0.607", + "Dec": "0.536", + "All-year": "0.792", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.507", + "Feb": "0.589", + "Mar": "0.697", + "Apr": "0.853", + "May": "0.915", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.876", + "Sep": "0.794", + "Oct": "0.622", + "Nov": "0.577", + "Dec": "0.505", + "All-year": "0.777", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.414", + "Feb": "0.552", + "Mar": "0.668", + "Apr": "0.835", + "May": "0.887", + "Jun": "0.920", + "Jul": "0.935", + "Aug": "0.860", + "Sep": "0.761", + "Oct": "0.556", + "Nov": "0.495", + "Dec": "0.442", + "All-year": "0.744", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.390", + "Mar": "0.570", + "Apr": "0.781", + "May": "0.843", + "Jun": "0.886", + "Jul": "0.919", + "Aug": "0.804", + "Sep": "0.676", + "Oct": "0.415", + "Nov": "0.354", + "Dec": "0.288", + "All-year": "0.671", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.251", + "Mar": "0.448", + "Apr": "0.721", + "May": "0.774", + "Jun": "0.869", + "Jul": "0.853", + "Aug": "0.774", + "Sep": "0.533", + "Oct": "0.304", + "Nov": "0.292", + "Dec": "0.196", + "All-year": "0.617", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.417", + "Feb": "0.449", + "Mar": "0.632", + "Apr": "0.821", + "May": "0.899", + "Jun": "0.924", + "Jul": "0.888", + "Aug": "0.870", + "Sep": "0.739", + "Oct": "0.593", + "Nov": "0.512", + "Dec": "0.457", + "All-year": "0.783", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.406", + "Feb": "0.449", + "Mar": "0.629", + "Apr": "0.821", + "May": "0.894", + "Jun": "0.921", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.739", + "Oct": "0.591", + "Nov": "0.510", + "Dec": "0.456", + "All-year": "0.781", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.397", + "Feb": "0.435", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.891", + "Jun": "0.919", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.735", + "Oct": "0.565", + "Nov": "0.506", + "Dec": "0.450", + "All-year": "0.776", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.388", + "Feb": "0.426", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.883", + "Jun": "0.915", + "Jul": "0.886", + "Aug": "0.860", + "Sep": "0.729", + "Oct": "0.558", + "Nov": "0.479", + "Dec": "0.433", + "All-year": "0.771", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.335", + "Mar": "0.552", + "Apr": "0.810", + "May": "0.872", + "Jun": "0.907", + "Jul": "0.878", + "Aug": "0.858", + "Sep": "0.721", + "Oct": "0.522", + "Nov": "0.432", + "Dec": "0.399", + "All-year": "0.755", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.320", + "Feb": "0.259", + "Mar": "0.508", + "Apr": "0.790", + "May": "0.836", + "Jun": "0.882", + "Jul": "0.851", + "Aug": "0.824", + "Sep": "0.669", + "Oct": "0.452", + "Nov": "0.335", + "Dec": "0.285", + "All-year": "0.705", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.132", + "Mar": "0.421", + "Apr": "0.703", + "May": "0.753", + "Jun": "0.814", + "Jul": "0.831", + "Aug": "0.727", + "Sep": "0.528", + "Oct": "0.315", + "Nov": "0.147", + "Dec": "0.091", + "All-year": "0.636", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.108", + "Mar": "0.227", + "Apr": "0.558", + "May": "0.638", + "Jun": "0.807", + "Jul": "0.694", + "Aug": "0.655", + "Sep": "0.418", + "Oct": "0.231", + "Nov": "0.124", + "Dec": "0.000", + "All-year": "0.577", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.890", + "Feb": "0.919", + "Mar": "0.947", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.927", + "Nov": "0.910", + "Dec": "0.893", + "All-year": "0.944", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.890", + "Feb": "0.917", + "Mar": "0.947", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.927", + "Nov": "0.908", + "Dec": "0.892", + "All-year": "0.943", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.887", + "Feb": "0.917", + "Mar": "0.943", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.924", + "Nov": "0.905", + "Dec": "0.890", + "All-year": "0.941", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.886", + "Feb": "0.917", + "Mar": "0.943", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.973", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.890", + "All-year": "0.941", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.872", + "Feb": "0.914", + "Mar": "0.938", + "Apr": "0.990", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.967", + "Oct": "0.907", + "Nov": "0.888", + "Dec": "0.873", + "All-year": "0.933", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.842", + "Feb": "0.908", + "Mar": "0.925", + "Apr": "0.990", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.958", + "Oct": "0.900", + "Nov": "0.877", + "Dec": "0.822", + "All-year": "0.922", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.761", + "Feb": "0.867", + "Mar": "0.905", + "Apr": "0.988", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.994", + "Sep": "0.937", + "Oct": "0.864", + "Nov": "0.806", + "Dec": "0.764", + "All-year": "0.899", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.710", + "Feb": "0.831", + "Mar": "0.897", + "Apr": "0.988", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.993", + "Sep": "0.912", + "Oct": "0.820", + "Nov": "0.735", + "Dec": "0.692", + "All-year": "0.878", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.833", + "Feb": "0.869", + "Mar": "0.919", + "Apr": "0.975", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.945", + "Oct": "0.906", + "Nov": "0.865", + "Dec": "0.822", + "All-year": "0.937", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.830", + "Feb": "0.869", + "Mar": "0.919", + "Apr": "0.974", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.945", + "Oct": "0.905", + "Nov": "0.865", + "Dec": "0.820", + "All-year": "0.937", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.827", + "Feb": "0.861", + "Mar": "0.917", + "Apr": "0.972", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.943", + "Oct": "0.899", + "Nov": "0.863", + "Dec": "0.812", + "All-year": "0.935", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.817", + "Feb": "0.861", + "Mar": "0.917", + "Apr": "0.969", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.943", + "Oct": "0.895", + "Nov": "0.860", + "Dec": "0.801", + "All-year": "0.933", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.801", + "Feb": "0.843", + "Mar": "0.901", + "Apr": "0.968", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.977", + "Sep": "0.934", + "Oct": "0.882", + "Nov": "0.840", + "Dec": "0.777", + "All-year": "0.925", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.745", + "Feb": "0.820", + "Mar": "0.887", + "Apr": "0.967", + "May": "0.993", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.967", + "Sep": "0.931", + "Oct": "0.849", + "Nov": "0.802", + "Dec": "0.745", + "All-year": "0.910", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.620", + "Feb": "0.762", + "Mar": "0.832", + "Apr": "0.958", + "May": "0.993", + "Jun": "0.992", + "Jul": "0.988", + "Aug": "0.966", + "Sep": "0.882", + "Oct": "0.797", + "Nov": "0.711", + "Dec": "0.668", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.533", + "Feb": "0.670", + "Mar": "0.814", + "Apr": "0.941", + "May": "0.993", + "Jun": "0.991", + "Jul": "0.988", + "Aug": "0.963", + "Sep": "0.875", + "Oct": "0.726", + "Nov": "0.613", + "Dec": "0.546", + "All-year": "0.858", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.719", + "Feb": "0.714", + "Mar": "0.872", + "Apr": "0.943", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.915", + "Oct": "0.858", + "Nov": "0.807", + "Dec": "0.763", + "All-year": "0.929", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.719", + "Feb": "0.714", + "Mar": "0.870", + "Apr": "0.943", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.911", + "Oct": "0.853", + "Nov": "0.807", + "Dec": "0.761", + "All-year": "0.927", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.711", + "Mar": "0.866", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.908", + "Oct": "0.851", + "Nov": "0.804", + "Dec": "0.759", + "All-year": "0.926", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.711", + "Mar": "0.859", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.961", + "Sep": "0.908", + "Oct": "0.847", + "Nov": "0.804", + "Dec": "0.754", + "All-year": "0.923", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.683", + "Feb": "0.691", + "Mar": "0.848", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.958", + "Sep": "0.893", + "Oct": "0.827", + "Nov": "0.765", + "Dec": "0.712", + "All-year": "0.915", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.575", + "Feb": "0.635", + "Mar": "0.827", + "Apr": "0.939", + "May": "0.966", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.950", + "Sep": "0.874", + "Oct": "0.784", + "Nov": "0.728", + "Dec": "0.629", + "All-year": "0.895", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.545", + "Mar": "0.766", + "Apr": "0.917", + "May": "0.953", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.899", + "Sep": "0.844", + "Oct": "0.734", + "Nov": "0.561", + "Dec": "0.556", + "All-year": "0.859", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.349", + "Feb": "0.436", + "Mar": "0.632", + "Apr": "0.844", + "May": "0.922", + "Jun": "0.958", + "Jul": "0.960", + "Aug": "0.880", + "Sep": "0.772", + "Oct": "0.652", + "Nov": "0.460", + "Dec": "0.388", + "All-year": "0.824", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "0.998", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "0.998", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "0.998", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "0.998", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "0.997", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.994", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "0.997", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.994", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "0.997", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.993", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.989", + "Feb": "0.997", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "0.999", + "Dec": "0.995", + "All-year": "0.992", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.967", + "Feb": "0.969", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.990", + "Dec": "0.986", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.967", + "Feb": "0.969", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.990", + "Dec": "0.986", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.967", + "Feb": "0.969", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.990", + "Dec": "0.986", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.967", + "Feb": "0.969", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.990", + "Dec": "0.986", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.965", + "Feb": "0.969", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.988", + "Dec": "0.986", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.964", + "Feb": "0.969", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.988", + "Dec": "0.986", + "All-year": "0.991", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.961", + "Feb": "0.957", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.983", + "Dec": "0.985", + "All-year": "0.989", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.922", + "Feb": "0.947", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.985", + "Nov": "0.983", + "Dec": "0.982", + "All-year": "0.985", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.945", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.967", + "Dec": "0.961", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.942", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.967", + "Dec": "0.961", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.942", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.984", + "Nov": "0.967", + "Dec": "0.961", + "All-year": "0.988", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.941", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.984", + "Nov": "0.967", + "Dec": "0.956", + "All-year": "0.988", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.937", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.980", + "Nov": "0.965", + "Dec": "0.956", + "All-year": "0.988", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.905", + "Feb": "0.939", + "Mar": "0.980", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.973", + "Nov": "0.965", + "Dec": "0.937", + "All-year": "0.983", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.851", + "Feb": "0.917", + "Mar": "0.970", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.978", + "Oct": "0.946", + "Nov": "0.956", + "Dec": "0.937", + "All-year": "0.976", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.835", + "Feb": "0.876", + "Mar": "0.952", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.978", + "Oct": "0.919", + "Nov": "0.956", + "Dec": "0.894", + "All-year": "0.974", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.995", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.994", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.995", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.993", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.993", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.999", + "All-year": "0.993", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.969", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.991", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.967", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.988", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.966", + "Feb": "0.972", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.964", + "Feb": "0.970", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.992", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.933", + "Feb": "0.957", + "Mar": "0.997", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.985", + "Nov": "0.990", + "Dec": "0.987", + "All-year": "0.986", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.952", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.990", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.952", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.990", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.949", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.942", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.984", + "Nov": "0.968", + "Dec": "0.966", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.942", + "Feb": "0.940", + "Mar": "0.992", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.983", + "Nov": "0.967", + "Dec": "0.961", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.927", + "Feb": "0.939", + "Mar": "0.980", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.989", + "Oct": "0.980", + "Nov": "0.967", + "Dec": "0.938", + "All-year": "0.987", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.906", + "Feb": "0.924", + "Mar": "0.977", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.970", + "Nov": "0.967", + "Dec": "0.938", + "All-year": "0.982", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + }, + { + "Jan": "0.835", + "Feb": "0.882", + "Mar": "0.956", + "Apr": "0.981", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "0.987", + "Oct": "0.919", + "Nov": "0.967", + "Dec": "0.914", + "All-year": "0.977", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "Hs": "< 5.00 m", "U10": "< 25.0 m/s" } + } +] diff --git a/public/static/data/PersistencyU10.json b/public/static/data/PersistencyU10.json new file mode 100644 index 0000000..477ebc7 --- /dev/null +++ b/public/static/data/PersistencyU10.json @@ -0,0 +1,4754 @@ +[ + { + "Jan": "0.011", + "Feb": "0.019", + "Mar": "0.017", + "Apr": "0.024", + "May": "0.029", + "Jun": "0.050", + "Jul": "0.040", + "Aug": "0.039", + "Sep": "0.026", + "Oct": "0.016", + "Nov": "0.013", + "Dec": "0.012", + "All-year": "0.028", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.019", + "Mar": "0.016", + "Apr": "0.024", + "May": "0.024", + "Jun": "0.049", + "Jul": "0.038", + "Aug": "0.035", + "Sep": "0.025", + "Oct": "0.015", + "Nov": "0.012", + "Dec": "0.012", + "All-year": "0.026", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.006", + "Feb": "0.012", + "Mar": "0.011", + "Apr": "0.017", + "May": "0.014", + "Jun": "0.034", + "Jul": "0.030", + "Aug": "0.028", + "Sep": "0.018", + "Oct": "0.011", + "Nov": "0.007", + "Dec": "0.007", + "All-year": "0.019", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.009", + "Mar": "0.009", + "Apr": "0.014", + "May": "0.011", + "Jun": "0.024", + "Jul": "0.019", + "Aug": "0.021", + "Sep": "0.012", + "Oct": "0.008", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.005", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.005", + "Feb": "0.009", + "Mar": "0.012", + "Apr": "0.019", + "May": "0.017", + "Jun": "0.030", + "Jul": "0.021", + "Aug": "0.026", + "Sep": "0.018", + "Oct": "0.005", + "Nov": "0.006", + "Dec": "0.006", + "All-year": "0.024", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.004", + "Feb": "0.007", + "Mar": "0.009", + "Apr": "0.018", + "May": "0.016", + "Jun": "0.026", + "Jul": "0.018", + "Aug": "0.022", + "Sep": "0.016", + "Oct": "0.005", + "Nov": "0.005", + "Dec": "0.005", + "All-year": "0.023", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.003", + "Mar": "0.005", + "Apr": "0.010", + "May": "0.009", + "Jun": "0.019", + "Jul": "0.012", + "Aug": "0.013", + "Sep": "0.012", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.016", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.008", + "May": "0.004", + "Jun": "0.010", + "Jul": "0.004", + "Aug": "0.009", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.003", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.003", + "Apr": "0.011", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.011", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.003", + "Dec": "0.003", + "All-year": "0.022", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.006", + "May": "0.009", + "Jun": "0.010", + "Jul": "0.005", + "Aug": "0.015", + "Sep": "0.007", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.003", + "All-year": "0.020", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.006", + "Jul": "0.000", + "Aug": "0.005", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.014", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.009", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.002", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 2.0 m/s" } + }, + { + "Jan": "0.063", + "Feb": "0.082", + "Mar": "0.096", + "Apr": "0.141", + "May": "0.155", + "Jun": "0.213", + "Jul": "0.171", + "Aug": "0.167", + "Sep": "0.123", + "Oct": "0.070", + "Nov": "0.075", + "Dec": "0.073", + "All-year": "0.122", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.062", + "Feb": "0.077", + "Mar": "0.095", + "Apr": "0.138", + "May": "0.151", + "Jun": "0.205", + "Jul": "0.169", + "Aug": "0.164", + "Sep": "0.119", + "Oct": "0.069", + "Nov": "0.073", + "Dec": "0.070", + "All-year": "0.120", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.054", + "Feb": "0.061", + "Mar": "0.087", + "Apr": "0.129", + "May": "0.137", + "Jun": "0.197", + "Jul": "0.157", + "Aug": "0.144", + "Sep": "0.111", + "Oct": "0.061", + "Nov": "0.064", + "Dec": "0.068", + "All-year": "0.112", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.050", + "Feb": "0.058", + "Mar": "0.075", + "Apr": "0.115", + "May": "0.126", + "Jun": "0.190", + "Jul": "0.151", + "Aug": "0.142", + "Sep": "0.105", + "Oct": "0.057", + "Nov": "0.056", + "Dec": "0.060", + "All-year": "0.103", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.022", + "Feb": "0.043", + "Mar": "0.044", + "Apr": "0.085", + "May": "0.079", + "Jun": "0.132", + "Jul": "0.101", + "Aug": "0.103", + "Sep": "0.081", + "Oct": "0.023", + "Nov": "0.035", + "Dec": "0.024", + "All-year": "0.072", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.040", + "May": "0.016", + "Jun": "0.078", + "Jul": "0.043", + "Aug": "0.050", + "Sep": "0.038", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.034", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.006", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.071", + "Apr": "0.109", + "May": "0.122", + "Jun": "0.144", + "Jul": "0.145", + "Aug": "0.119", + "Sep": "0.099", + "Oct": "0.040", + "Nov": "0.047", + "Dec": "0.042", + "All-year": "0.112", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.041", + "Mar": "0.069", + "Apr": "0.108", + "May": "0.120", + "Jun": "0.141", + "Jul": "0.142", + "Aug": "0.119", + "Sep": "0.097", + "Oct": "0.037", + "Nov": "0.045", + "Dec": "0.041", + "All-year": "0.110", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.025", + "Feb": "0.034", + "Mar": "0.060", + "Apr": "0.100", + "May": "0.110", + "Jun": "0.131", + "Jul": "0.118", + "Aug": "0.111", + "Sep": "0.088", + "Oct": "0.030", + "Nov": "0.041", + "Dec": "0.036", + "All-year": "0.101", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.024", + "Feb": "0.031", + "Mar": "0.052", + "Apr": "0.085", + "May": "0.097", + "Jun": "0.125", + "Jul": "0.107", + "Aug": "0.107", + "Sep": "0.081", + "Oct": "0.025", + "Nov": "0.032", + "Dec": "0.033", + "All-year": "0.092", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.019", + "Mar": "0.019", + "Apr": "0.047", + "May": "0.047", + "Jun": "0.083", + "Jul": "0.060", + "Aug": "0.073", + "Sep": "0.050", + "Oct": "0.000", + "Nov": "0.008", + "Dec": "0.008", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.036", + "Jul": "0.000", + "Aug": "0.017", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.034", + "Apr": "0.079", + "May": "0.066", + "Jun": "0.108", + "Jul": "0.071", + "Aug": "0.087", + "Sep": "0.058", + "Oct": "0.023", + "Nov": "0.022", + "Dec": "0.024", + "All-year": "0.100", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.009", + "Feb": "0.016", + "Mar": "0.031", + "Apr": "0.079", + "May": "0.062", + "Jun": "0.104", + "Jul": "0.069", + "Aug": "0.086", + "Sep": "0.056", + "Oct": "0.022", + "Nov": "0.022", + "Dec": "0.023", + "All-year": "0.099", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.007", + "Feb": "0.010", + "Mar": "0.023", + "Apr": "0.068", + "May": "0.051", + "Jun": "0.092", + "Jul": "0.065", + "Aug": "0.082", + "Sep": "0.053", + "Oct": "0.017", + "Nov": "0.018", + "Dec": "0.019", + "All-year": "0.091", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.010", + "Mar": "0.017", + "Apr": "0.057", + "May": "0.048", + "Jun": "0.092", + "Jul": "0.058", + "Aug": "0.066", + "Sep": "0.040", + "Oct": "0.000", + "Nov": "0.011", + "Dec": "0.012", + "All-year": "0.085", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.031", + "May": "0.026", + "Jun": "0.039", + "Jul": "0.024", + "Aug": "0.039", + "Sep": "0.019", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.053", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.021", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 4.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.233", + "Apr": "0.346", + "May": "0.381", + "Jun": "0.431", + "Jul": "0.419", + "Aug": "0.381", + "Sep": "0.330", + "Oct": "0.180", + "Nov": "0.176", + "Dec": "0.173", + "All-year": "0.288", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.153", + "Feb": "0.219", + "Mar": "0.230", + "Apr": "0.345", + "May": "0.378", + "Jun": "0.427", + "Jul": "0.417", + "Aug": "0.376", + "Sep": "0.324", + "Oct": "0.177", + "Nov": "0.172", + "Dec": "0.171", + "All-year": "0.285", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.151", + "Feb": "0.209", + "Mar": "0.224", + "Apr": "0.334", + "May": "0.370", + "Jun": "0.419", + "Jul": "0.398", + "Aug": "0.360", + "Sep": "0.310", + "Oct": "0.167", + "Nov": "0.167", + "Dec": "0.165", + "All-year": "0.272", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.138", + "Feb": "0.199", + "Mar": "0.221", + "Apr": "0.325", + "May": "0.360", + "Jun": "0.407", + "Jul": "0.388", + "Aug": "0.353", + "Sep": "0.294", + "Oct": "0.161", + "Nov": "0.148", + "Dec": "0.155", + "All-year": "0.264", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.115", + "Feb": "0.158", + "Mar": "0.181", + "Apr": "0.269", + "May": "0.324", + "Jun": "0.376", + "Jul": "0.339", + "Aug": "0.298", + "Sep": "0.245", + "Oct": "0.132", + "Nov": "0.125", + "Dec": "0.126", + "All-year": "0.230", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.060", + "Feb": "0.086", + "Mar": "0.129", + "Apr": "0.177", + "May": "0.226", + "Jun": "0.286", + "Jul": "0.262", + "Aug": "0.228", + "Sep": "0.152", + "Oct": "0.074", + "Nov": "0.071", + "Dec": "0.077", + "All-year": "0.168", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.077", + "May": "0.103", + "Jun": "0.168", + "Jul": "0.135", + "Aug": "0.089", + "Sep": "0.080", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.081", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.053", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.187", + "Apr": "0.287", + "May": "0.306", + "Jun": "0.362", + "Jul": "0.350", + "Aug": "0.317", + "Sep": "0.228", + "Oct": "0.118", + "Nov": "0.122", + "Dec": "0.106", + "All-year": "0.272", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.110", + "Feb": "0.107", + "Mar": "0.185", + "Apr": "0.283", + "May": "0.306", + "Jun": "0.359", + "Jul": "0.343", + "Aug": "0.314", + "Sep": "0.225", + "Oct": "0.116", + "Nov": "0.120", + "Dec": "0.106", + "All-year": "0.270", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.100", + "Feb": "0.107", + "Mar": "0.179", + "Apr": "0.265", + "May": "0.296", + "Jun": "0.342", + "Jul": "0.333", + "Aug": "0.300", + "Sep": "0.215", + "Oct": "0.112", + "Nov": "0.115", + "Dec": "0.103", + "All-year": "0.259", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.091", + "Feb": "0.102", + "Mar": "0.168", + "Apr": "0.254", + "May": "0.284", + "Jun": "0.331", + "Jul": "0.320", + "Aug": "0.280", + "Sep": "0.204", + "Oct": "0.099", + "Nov": "0.103", + "Dec": "0.081", + "All-year": "0.247", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.067", + "Feb": "0.077", + "Mar": "0.131", + "Apr": "0.210", + "May": "0.249", + "Jun": "0.289", + "Jul": "0.279", + "Aug": "0.228", + "Sep": "0.186", + "Oct": "0.065", + "Nov": "0.078", + "Dec": "0.069", + "All-year": "0.213", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.017", + "Mar": "0.071", + "Apr": "0.130", + "May": "0.159", + "Jun": "0.197", + "Jul": "0.173", + "Aug": "0.149", + "Sep": "0.103", + "Oct": "0.036", + "Nov": "0.036", + "Dec": "0.016", + "All-year": "0.150", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.032", + "Jun": "0.035", + "Jul": "0.036", + "Aug": "0.033", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.062", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.025", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.076", + "Mar": "0.130", + "Apr": "0.242", + "May": "0.259", + "Jun": "0.310", + "Jul": "0.245", + "Aug": "0.259", + "Sep": "0.182", + "Oct": "0.090", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.247", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.046", + "Feb": "0.073", + "Mar": "0.130", + "Apr": "0.240", + "May": "0.254", + "Jun": "0.304", + "Jul": "0.239", + "Aug": "0.254", + "Sep": "0.176", + "Oct": "0.089", + "Nov": "0.074", + "Dec": "0.071", + "All-year": "0.245", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.065", + "Mar": "0.128", + "Apr": "0.225", + "May": "0.239", + "Jun": "0.300", + "Jul": "0.230", + "Aug": "0.245", + "Sep": "0.169", + "Oct": "0.083", + "Nov": "0.065", + "Dec": "0.067", + "All-year": "0.236", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.042", + "Feb": "0.057", + "Mar": "0.117", + "Apr": "0.213", + "May": "0.233", + "Jun": "0.276", + "Jul": "0.223", + "Aug": "0.226", + "Sep": "0.165", + "Oct": "0.073", + "Nov": "0.065", + "Dec": "0.066", + "All-year": "0.233", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.017", + "Feb": "0.025", + "Mar": "0.082", + "Apr": "0.157", + "May": "0.179", + "Jun": "0.258", + "Jul": "0.161", + "Aug": "0.173", + "Sep": "0.119", + "Oct": "0.040", + "Nov": "0.021", + "Dec": "0.038", + "All-year": "0.200", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.081", + "May": "0.085", + "Jun": "0.149", + "Jul": "0.106", + "Aug": "0.087", + "Sep": "0.057", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.131", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.043", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.000", + "Jun": "0.000", + "Jul": "0.000", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.011", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 6.0 m/s" } + }, + { + "Jan": "0.291", + "Feb": "0.402", + "Mar": "0.425", + "Apr": "0.565", + "May": "0.610", + "Jun": "0.694", + "Jul": "0.701", + "Aug": "0.630", + "Sep": "0.528", + "Oct": "0.339", + "Nov": "0.324", + "Dec": "0.314", + "All-year": "0.485", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.288", + "Feb": "0.398", + "Mar": "0.422", + "Apr": "0.563", + "May": "0.610", + "Jun": "0.692", + "Jul": "0.699", + "Aug": "0.630", + "Sep": "0.525", + "Oct": "0.334", + "Nov": "0.320", + "Dec": "0.312", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.283", + "Feb": "0.392", + "Mar": "0.409", + "Apr": "0.555", + "May": "0.601", + "Jun": "0.675", + "Jul": "0.692", + "Aug": "0.625", + "Sep": "0.511", + "Oct": "0.321", + "Nov": "0.312", + "Dec": "0.295", + "All-year": "0.474", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.277", + "Feb": "0.385", + "Mar": "0.401", + "Apr": "0.547", + "May": "0.597", + "Jun": "0.662", + "Jul": "0.686", + "Aug": "0.614", + "Sep": "0.508", + "Oct": "0.313", + "Nov": "0.306", + "Dec": "0.285", + "All-year": "0.465", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.237", + "Feb": "0.331", + "Mar": "0.385", + "Apr": "0.526", + "May": "0.566", + "Jun": "0.635", + "Jul": "0.656", + "Aug": "0.585", + "Sep": "0.481", + "Oct": "0.287", + "Nov": "0.260", + "Dec": "0.255", + "All-year": "0.432", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.200", + "Feb": "0.249", + "Mar": "0.339", + "Apr": "0.492", + "May": "0.485", + "Jun": "0.572", + "Jul": "0.612", + "Aug": "0.517", + "Sep": "0.410", + "Oct": "0.222", + "Nov": "0.169", + "Dec": "0.186", + "All-year": "0.371", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.084", + "Feb": "0.109", + "Mar": "0.205", + "Apr": "0.301", + "May": "0.356", + "Jun": "0.441", + "Jul": "0.472", + "Aug": "0.399", + "Sep": "0.260", + "Oct": "0.110", + "Nov": "0.093", + "Dec": "0.111", + "All-year": "0.265", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.118", + "Apr": "0.208", + "May": "0.259", + "Jun": "0.319", + "Jul": "0.260", + "Aug": "0.252", + "Sep": "0.141", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.186", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.197", + "Feb": "0.232", + "Mar": "0.370", + "Apr": "0.528", + "May": "0.544", + "Jun": "0.633", + "Jul": "0.632", + "Aug": "0.567", + "Sep": "0.447", + "Oct": "0.282", + "Nov": "0.240", + "Dec": "0.235", + "All-year": "0.469", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.196", + "Feb": "0.231", + "Mar": "0.365", + "Apr": "0.527", + "May": "0.542", + "Jun": "0.632", + "Jul": "0.628", + "Aug": "0.565", + "Sep": "0.447", + "Oct": "0.279", + "Nov": "0.238", + "Dec": "0.232", + "All-year": "0.467", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.192", + "Feb": "0.225", + "Mar": "0.355", + "Apr": "0.519", + "May": "0.534", + "Jun": "0.622", + "Jul": "0.615", + "Aug": "0.560", + "Sep": "0.436", + "Oct": "0.265", + "Nov": "0.229", + "Dec": "0.224", + "All-year": "0.459", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.191", + "Feb": "0.217", + "Mar": "0.347", + "Apr": "0.506", + "May": "0.526", + "Jun": "0.610", + "Jul": "0.604", + "Aug": "0.540", + "Sep": "0.430", + "Oct": "0.255", + "Nov": "0.218", + "Dec": "0.214", + "All-year": "0.451", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.182", + "Mar": "0.298", + "Apr": "0.482", + "May": "0.486", + "Jun": "0.577", + "Jul": "0.575", + "Aug": "0.505", + "Sep": "0.384", + "Oct": "0.221", + "Nov": "0.193", + "Dec": "0.166", + "All-year": "0.419", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.085", + "Feb": "0.137", + "Mar": "0.224", + "Apr": "0.370", + "May": "0.418", + "Jun": "0.506", + "Jul": "0.476", + "Aug": "0.444", + "Sep": "0.308", + "Oct": "0.145", + "Nov": "0.134", + "Dec": "0.113", + "All-year": "0.357", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.072", + "Mar": "0.105", + "Apr": "0.197", + "May": "0.269", + "Jun": "0.315", + "Jul": "0.308", + "Aug": "0.297", + "Sep": "0.180", + "Oct": "0.033", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.246", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.110", + "May": "0.124", + "Jun": "0.215", + "Jul": "0.185", + "Aug": "0.142", + "Sep": "0.104", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.161", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.159", + "Mar": "0.255", + "Apr": "0.478", + "May": "0.480", + "Jun": "0.544", + "Jul": "0.504", + "Aug": "0.505", + "Sep": "0.340", + "Oct": "0.227", + "Nov": "0.176", + "Dec": "0.141", + "All-year": "0.448", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.137", + "Feb": "0.157", + "Mar": "0.255", + "Apr": "0.475", + "May": "0.476", + "Jun": "0.542", + "Jul": "0.501", + "Aug": "0.504", + "Sep": "0.337", + "Oct": "0.219", + "Nov": "0.174", + "Dec": "0.141", + "All-year": "0.446", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.154", + "Mar": "0.243", + "Apr": "0.465", + "May": "0.469", + "Jun": "0.531", + "Jul": "0.489", + "Aug": "0.488", + "Sep": "0.331", + "Oct": "0.207", + "Nov": "0.151", + "Dec": "0.134", + "All-year": "0.436", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.126", + "Mar": "0.243", + "Apr": "0.444", + "May": "0.460", + "Jun": "0.524", + "Jul": "0.483", + "Aug": "0.476", + "Sep": "0.322", + "Oct": "0.202", + "Nov": "0.142", + "Dec": "0.133", + "All-year": "0.428", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.079", + "Feb": "0.101", + "Mar": "0.190", + "Apr": "0.399", + "May": "0.406", + "Jun": "0.493", + "Jul": "0.440", + "Aug": "0.409", + "Sep": "0.289", + "Oct": "0.151", + "Nov": "0.125", + "Dec": "0.093", + "All-year": "0.391", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.032", + "Feb": "0.039", + "Mar": "0.133", + "Apr": "0.321", + "May": "0.355", + "Jun": "0.410", + "Jul": "0.345", + "Aug": "0.363", + "Sep": "0.219", + "Oct": "0.093", + "Nov": "0.038", + "Dec": "0.000", + "All-year": "0.318", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.160", + "May": "0.179", + "Jun": "0.228", + "Jul": "0.120", + "Aug": "0.160", + "Sep": "0.087", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.198", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.000", + "May": "0.098", + "Jun": "0.115", + "Jul": "0.097", + "Aug": "0.000", + "Sep": "0.000", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.113", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 8.0 m/s" } + }, + { + "Jan": "0.366", + "Feb": "0.474", + "Mar": "0.535", + "Apr": "0.667", + "May": "0.724", + "Jun": "0.802", + "Jul": "0.815", + "Aug": "0.742", + "Sep": "0.630", + "Oct": "0.434", + "Nov": "0.416", + "Dec": "0.403", + "All-year": "0.584", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.364", + "Feb": "0.472", + "Mar": "0.534", + "Apr": "0.665", + "May": "0.724", + "Jun": "0.801", + "Jul": "0.812", + "Aug": "0.740", + "Sep": "0.627", + "Oct": "0.431", + "Nov": "0.415", + "Dec": "0.399", + "All-year": "0.581", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.348", + "Feb": "0.471", + "Mar": "0.525", + "Apr": "0.660", + "May": "0.720", + "Jun": "0.793", + "Jul": "0.808", + "Aug": "0.733", + "Sep": "0.619", + "Oct": "0.423", + "Nov": "0.397", + "Dec": "0.392", + "All-year": "0.574", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.347", + "Feb": "0.467", + "Mar": "0.521", + "Apr": "0.655", + "May": "0.717", + "Jun": "0.790", + "Jul": "0.804", + "Aug": "0.726", + "Sep": "0.611", + "Oct": "0.413", + "Nov": "0.389", + "Dec": "0.383", + "All-year": "0.567", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.322", + "Feb": "0.426", + "Mar": "0.487", + "Apr": "0.626", + "May": "0.695", + "Jun": "0.774", + "Jul": "0.781", + "Aug": "0.702", + "Sep": "0.585", + "Oct": "0.382", + "Nov": "0.353", + "Dec": "0.327", + "All-year": "0.540", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.263", + "Feb": "0.362", + "Mar": "0.435", + "Apr": "0.597", + "May": "0.639", + "Jun": "0.726", + "Jul": "0.740", + "Aug": "0.652", + "Sep": "0.526", + "Oct": "0.319", + "Nov": "0.258", + "Dec": "0.259", + "All-year": "0.483", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.125", + "Feb": "0.226", + "Mar": "0.338", + "Apr": "0.456", + "May": "0.514", + "Jun": "0.610", + "Jul": "0.640", + "Aug": "0.569", + "Sep": "0.360", + "Oct": "0.178", + "Nov": "0.159", + "Dec": "0.154", + "All-year": "0.383", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.104", + "Feb": "0.130", + "Mar": "0.206", + "Apr": "0.362", + "May": "0.410", + "Jun": "0.531", + "Jul": "0.531", + "Aug": "0.456", + "Sep": "0.285", + "Oct": "0.128", + "Nov": "0.110", + "Dec": "0.000", + "All-year": "0.307", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.269", + "Feb": "0.346", + "Mar": "0.478", + "Apr": "0.629", + "May": "0.677", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.661", + "Sep": "0.537", + "Oct": "0.390", + "Nov": "0.347", + "Dec": "0.304", + "All-year": "0.566", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.266", + "Feb": "0.342", + "Mar": "0.477", + "Apr": "0.627", + "May": "0.676", + "Jun": "0.735", + "Jul": "0.753", + "Aug": "0.659", + "Sep": "0.533", + "Oct": "0.386", + "Nov": "0.346", + "Dec": "0.302", + "All-year": "0.564", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.259", + "Feb": "0.326", + "Mar": "0.473", + "Apr": "0.619", + "May": "0.661", + "Jun": "0.724", + "Jul": "0.749", + "Aug": "0.654", + "Sep": "0.519", + "Oct": "0.377", + "Nov": "0.342", + "Dec": "0.297", + "All-year": "0.557", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.256", + "Feb": "0.326", + "Mar": "0.461", + "Apr": "0.612", + "May": "0.653", + "Jun": "0.720", + "Jul": "0.746", + "Aug": "0.654", + "Sep": "0.512", + "Oct": "0.362", + "Nov": "0.329", + "Dec": "0.290", + "All-year": "0.551", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.239", + "Feb": "0.282", + "Mar": "0.440", + "Apr": "0.588", + "May": "0.618", + "Jun": "0.712", + "Jul": "0.720", + "Aug": "0.626", + "Sep": "0.484", + "Oct": "0.328", + "Nov": "0.286", + "Dec": "0.260", + "All-year": "0.523", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.145", + "Feb": "0.250", + "Mar": "0.366", + "Apr": "0.526", + "May": "0.563", + "Jun": "0.678", + "Jul": "0.617", + "Aug": "0.568", + "Sep": "0.415", + "Oct": "0.242", + "Nov": "0.192", + "Dec": "0.171", + "All-year": "0.463", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.071", + "Feb": "0.120", + "Mar": "0.257", + "Apr": "0.364", + "May": "0.458", + "Jun": "0.513", + "Jul": "0.511", + "Aug": "0.425", + "Sep": "0.265", + "Oct": "0.128", + "Nov": "0.072", + "Dec": "0.033", + "All-year": "0.361", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.106", + "Apr": "0.267", + "May": "0.337", + "Jun": "0.384", + "Jul": "0.366", + "Aug": "0.316", + "Sep": "0.187", + "Oct": "0.050", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.275", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.211", + "Mar": "0.349", + "Apr": "0.593", + "May": "0.602", + "Jun": "0.657", + "Jul": "0.651", + "Aug": "0.618", + "Sep": "0.431", + "Oct": "0.289", + "Nov": "0.249", + "Dec": "0.195", + "All-year": "0.543", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.188", + "Feb": "0.210", + "Mar": "0.347", + "Apr": "0.593", + "May": "0.601", + "Jun": "0.654", + "Jul": "0.648", + "Aug": "0.618", + "Sep": "0.426", + "Oct": "0.282", + "Nov": "0.246", + "Dec": "0.192", + "All-year": "0.541", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.184", + "Feb": "0.204", + "Mar": "0.341", + "Apr": "0.575", + "May": "0.591", + "Jun": "0.650", + "Jul": "0.636", + "Aug": "0.612", + "Sep": "0.414", + "Oct": "0.273", + "Nov": "0.233", + "Dec": "0.184", + "All-year": "0.532", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.169", + "Feb": "0.203", + "Mar": "0.335", + "Apr": "0.575", + "May": "0.575", + "Jun": "0.650", + "Jul": "0.629", + "Aug": "0.606", + "Sep": "0.408", + "Oct": "0.267", + "Nov": "0.215", + "Dec": "0.184", + "All-year": "0.527", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.144", + "Feb": "0.151", + "Mar": "0.298", + "Apr": "0.567", + "May": "0.555", + "Jun": "0.643", + "Jul": "0.602", + "Aug": "0.552", + "Sep": "0.376", + "Oct": "0.239", + "Nov": "0.192", + "Dec": "0.134", + "All-year": "0.502", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.051", + "Feb": "0.092", + "Mar": "0.203", + "Apr": "0.460", + "May": "0.456", + "Jun": "0.576", + "Jul": "0.534", + "Aug": "0.472", + "Sep": "0.306", + "Oct": "0.125", + "Nov": "0.057", + "Dec": "0.071", + "All-year": "0.445", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.103", + "Apr": "0.289", + "May": "0.345", + "Jun": "0.415", + "Jul": "0.337", + "Aug": "0.276", + "Sep": "0.185", + "Oct": "0.067", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.332", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.000", + "Apr": "0.149", + "May": "0.198", + "Jun": "0.235", + "Jul": "0.180", + "Aug": "0.187", + "Sep": "0.117", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.241", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 9.0 m/s" } + }, + { + "Jan": "0.450", + "Feb": "0.571", + "Mar": "0.637", + "Apr": "0.765", + "May": "0.822", + "Jun": "0.887", + "Jul": "0.886", + "Aug": "0.827", + "Sep": "0.710", + "Oct": "0.551", + "Nov": "0.502", + "Dec": "0.487", + "All-year": "0.677", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.447", + "Feb": "0.569", + "Mar": "0.636", + "Apr": "0.764", + "May": "0.821", + "Jun": "0.885", + "Jul": "0.885", + "Aug": "0.826", + "Sep": "0.707", + "Oct": "0.541", + "Nov": "0.501", + "Dec": "0.485", + "All-year": "0.675", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.437", + "Feb": "0.558", + "Mar": "0.622", + "Apr": "0.757", + "May": "0.819", + "Jun": "0.877", + "Jul": "0.882", + "Aug": "0.823", + "Sep": "0.702", + "Oct": "0.522", + "Nov": "0.499", + "Dec": "0.472", + "All-year": "0.668", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.431", + "Feb": "0.551", + "Mar": "0.620", + "Apr": "0.756", + "May": "0.819", + "Jun": "0.870", + "Jul": "0.882", + "Aug": "0.819", + "Sep": "0.697", + "Oct": "0.509", + "Nov": "0.492", + "Dec": "0.459", + "All-year": "0.661", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.404", + "Feb": "0.519", + "Mar": "0.597", + "Apr": "0.729", + "May": "0.804", + "Jun": "0.867", + "Jul": "0.860", + "Aug": "0.809", + "Sep": "0.673", + "Oct": "0.483", + "Nov": "0.447", + "Dec": "0.433", + "All-year": "0.637", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.355", + "Feb": "0.461", + "Mar": "0.560", + "Apr": "0.701", + "May": "0.756", + "Jun": "0.840", + "Jul": "0.838", + "Aug": "0.782", + "Sep": "0.644", + "Oct": "0.404", + "Nov": "0.385", + "Dec": "0.376", + "All-year": "0.586", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.223", + "Feb": "0.333", + "Mar": "0.403", + "Apr": "0.622", + "May": "0.698", + "Jun": "0.769", + "Jul": "0.788", + "Aug": "0.722", + "Sep": "0.528", + "Oct": "0.302", + "Nov": "0.233", + "Dec": "0.226", + "All-year": "0.491", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.130", + "Feb": "0.202", + "Mar": "0.309", + "Apr": "0.533", + "May": "0.544", + "Jun": "0.694", + "Jul": "0.727", + "Aug": "0.592", + "Sep": "0.451", + "Oct": "0.190", + "Nov": "0.155", + "Dec": "0.144", + "All-year": "0.416", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.372", + "Feb": "0.440", + "Mar": "0.552", + "Apr": "0.732", + "May": "0.778", + "Jun": "0.845", + "Jul": "0.848", + "Aug": "0.771", + "Sep": "0.640", + "Oct": "0.474", + "Nov": "0.445", + "Dec": "0.386", + "All-year": "0.653", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.367", + "Feb": "0.437", + "Mar": "0.550", + "Apr": "0.730", + "May": "0.776", + "Jun": "0.844", + "Jul": "0.845", + "Aug": "0.769", + "Sep": "0.639", + "Oct": "0.470", + "Nov": "0.437", + "Dec": "0.384", + "All-year": "0.651", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.437", + "Mar": "0.546", + "Apr": "0.720", + "May": "0.769", + "Jun": "0.837", + "Jul": "0.841", + "Aug": "0.766", + "Sep": "0.632", + "Oct": "0.461", + "Nov": "0.425", + "Dec": "0.368", + "All-year": "0.643", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.340", + "Feb": "0.422", + "Mar": "0.530", + "Apr": "0.715", + "May": "0.762", + "Jun": "0.829", + "Jul": "0.841", + "Aug": "0.757", + "Sep": "0.627", + "Oct": "0.452", + "Nov": "0.418", + "Dec": "0.358", + "All-year": "0.637", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.302", + "Feb": "0.397", + "Mar": "0.506", + "Apr": "0.703", + "May": "0.751", + "Jun": "0.822", + "Jul": "0.821", + "Aug": "0.753", + "Sep": "0.601", + "Oct": "0.423", + "Nov": "0.381", + "Dec": "0.331", + "All-year": "0.615", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.212", + "Feb": "0.324", + "Mar": "0.448", + "Apr": "0.652", + "May": "0.706", + "Jun": "0.779", + "Jul": "0.783", + "Aug": "0.687", + "Sep": "0.552", + "Oct": "0.333", + "Nov": "0.263", + "Dec": "0.242", + "All-year": "0.555", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.097", + "Feb": "0.170", + "Mar": "0.312", + "Apr": "0.545", + "May": "0.594", + "Jun": "0.686", + "Jul": "0.732", + "Aug": "0.567", + "Sep": "0.407", + "Oct": "0.193", + "Nov": "0.145", + "Dec": "0.122", + "All-year": "0.467", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.111", + "Mar": "0.208", + "Apr": "0.444", + "May": "0.466", + "Jun": "0.582", + "Jul": "0.576", + "Aug": "0.469", + "Sep": "0.265", + "Oct": "0.131", + "Nov": "0.105", + "Dec": "0.000", + "All-year": "0.388", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.273", + "Feb": "0.296", + "Mar": "0.445", + "Apr": "0.693", + "May": "0.722", + "Jun": "0.799", + "Jul": "0.763", + "Aug": "0.708", + "Sep": "0.560", + "Oct": "0.379", + "Nov": "0.307", + "Dec": "0.270", + "All-year": "0.628", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.296", + "Mar": "0.442", + "Apr": "0.692", + "May": "0.719", + "Jun": "0.796", + "Jul": "0.761", + "Aug": "0.707", + "Sep": "0.558", + "Oct": "0.375", + "Nov": "0.303", + "Dec": "0.265", + "All-year": "0.626", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.261", + "Feb": "0.292", + "Mar": "0.438", + "Apr": "0.682", + "May": "0.708", + "Jun": "0.779", + "Jul": "0.751", + "Aug": "0.704", + "Sep": "0.551", + "Oct": "0.367", + "Nov": "0.282", + "Dec": "0.250", + "All-year": "0.620", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.255", + "Feb": "0.284", + "Mar": "0.425", + "Apr": "0.668", + "May": "0.706", + "Jun": "0.772", + "Jul": "0.751", + "Aug": "0.691", + "Sep": "0.535", + "Oct": "0.360", + "Nov": "0.275", + "Dec": "0.243", + "All-year": "0.616", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.208", + "Feb": "0.231", + "Mar": "0.397", + "Apr": "0.650", + "May": "0.703", + "Jun": "0.760", + "Jul": "0.734", + "Aug": "0.652", + "Sep": "0.496", + "Oct": "0.316", + "Nov": "0.206", + "Dec": "0.206", + "All-year": "0.587", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.118", + "Feb": "0.167", + "Mar": "0.263", + "Apr": "0.596", + "May": "0.599", + "Jun": "0.703", + "Jul": "0.668", + "Aug": "0.591", + "Sep": "0.465", + "Oct": "0.231", + "Nov": "0.151", + "Dec": "0.136", + "All-year": "0.533", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.075", + "Mar": "0.153", + "Apr": "0.456", + "May": "0.433", + "Jun": "0.564", + "Jul": "0.477", + "Aug": "0.431", + "Sep": "0.249", + "Oct": "0.142", + "Nov": "0.068", + "Dec": "0.000", + "All-year": "0.449", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.109", + "Apr": "0.289", + "May": "0.310", + "Jun": "0.493", + "Jul": "0.380", + "Aug": "0.294", + "Sep": "0.153", + "Oct": "0.000", + "Nov": "0.000", + "Dec": "0.000", + "All-year": "0.357", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 10.0 m/s" } + }, + { + "Jan": "0.554", + "Feb": "0.662", + "Mar": "0.733", + "Apr": "0.858", + "May": "0.897", + "Jun": "0.925", + "Jul": "0.942", + "Aug": "0.893", + "Sep": "0.793", + "Oct": "0.650", + "Nov": "0.634", + "Dec": "0.585", + "All-year": "0.753", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.550", + "Feb": "0.661", + "Mar": "0.725", + "Apr": "0.857", + "May": "0.897", + "Jun": "0.924", + "Jul": "0.941", + "Aug": "0.892", + "Sep": "0.790", + "Oct": "0.649", + "Nov": "0.631", + "Dec": "0.583", + "All-year": "0.751", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.539", + "Feb": "0.659", + "Mar": "0.718", + "Apr": "0.848", + "May": "0.890", + "Jun": "0.921", + "Jul": "0.940", + "Aug": "0.890", + "Sep": "0.788", + "Oct": "0.639", + "Nov": "0.622", + "Dec": "0.570", + "All-year": "0.745", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.535", + "Feb": "0.652", + "Mar": "0.712", + "Apr": "0.842", + "May": "0.888", + "Jun": "0.920", + "Jul": "0.937", + "Aug": "0.890", + "Sep": "0.784", + "Oct": "0.622", + "Nov": "0.608", + "Dec": "0.558", + "All-year": "0.741", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.500", + "Feb": "0.611", + "Mar": "0.700", + "Apr": "0.828", + "May": "0.876", + "Jun": "0.919", + "Jul": "0.927", + "Aug": "0.884", + "Sep": "0.758", + "Oct": "0.604", + "Nov": "0.585", + "Dec": "0.545", + "All-year": "0.723", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.431", + "Feb": "0.579", + "Mar": "0.667", + "Apr": "0.783", + "May": "0.864", + "Jun": "0.911", + "Jul": "0.911", + "Aug": "0.857", + "Sep": "0.717", + "Oct": "0.558", + "Nov": "0.490", + "Dec": "0.449", + "All-year": "0.684", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.326", + "Feb": "0.487", + "Mar": "0.551", + "Apr": "0.733", + "May": "0.806", + "Jun": "0.879", + "Jul": "0.896", + "Aug": "0.795", + "Sep": "0.637", + "Oct": "0.435", + "Nov": "0.369", + "Dec": "0.337", + "All-year": "0.605", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.245", + "Feb": "0.366", + "Mar": "0.441", + "Apr": "0.672", + "May": "0.737", + "Jun": "0.857", + "Jul": "0.844", + "Aug": "0.773", + "Sep": "0.547", + "Oct": "0.312", + "Nov": "0.287", + "Dec": "0.292", + "All-year": "0.545", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.478", + "Feb": "0.550", + "Mar": "0.643", + "Apr": "0.806", + "May": "0.863", + "Jun": "0.901", + "Jul": "0.914", + "Aug": "0.839", + "Sep": "0.750", + "Oct": "0.586", + "Nov": "0.528", + "Dec": "0.473", + "All-year": "0.731", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.476", + "Feb": "0.547", + "Mar": "0.642", + "Apr": "0.804", + "May": "0.860", + "Jun": "0.901", + "Jul": "0.913", + "Aug": "0.839", + "Sep": "0.748", + "Oct": "0.583", + "Nov": "0.525", + "Dec": "0.472", + "All-year": "0.729", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.463", + "Feb": "0.535", + "Mar": "0.642", + "Apr": "0.797", + "May": "0.853", + "Jun": "0.899", + "Jul": "0.911", + "Aug": "0.834", + "Sep": "0.731", + "Oct": "0.577", + "Nov": "0.516", + "Dec": "0.467", + "All-year": "0.722", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.456", + "Feb": "0.524", + "Mar": "0.633", + "Apr": "0.794", + "May": "0.847", + "Jun": "0.897", + "Jul": "0.909", + "Aug": "0.831", + "Sep": "0.724", + "Oct": "0.574", + "Nov": "0.509", + "Dec": "0.455", + "All-year": "0.719", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.419", + "Feb": "0.490", + "Mar": "0.608", + "Apr": "0.783", + "May": "0.834", + "Jun": "0.892", + "Jul": "0.902", + "Aug": "0.822", + "Sep": "0.701", + "Oct": "0.515", + "Nov": "0.473", + "Dec": "0.411", + "All-year": "0.704", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.329", + "Feb": "0.387", + "Mar": "0.543", + "Apr": "0.742", + "May": "0.815", + "Jun": "0.865", + "Jul": "0.874", + "Aug": "0.797", + "Sep": "0.652", + "Oct": "0.440", + "Nov": "0.412", + "Dec": "0.340", + "All-year": "0.649", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.174", + "Feb": "0.266", + "Mar": "0.450", + "Apr": "0.661", + "May": "0.739", + "Jun": "0.807", + "Jul": "0.819", + "Aug": "0.732", + "Sep": "0.502", + "Oct": "0.308", + "Nov": "0.255", + "Dec": "0.229", + "All-year": "0.569", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.106", + "Feb": "0.141", + "Mar": "0.353", + "Apr": "0.566", + "May": "0.602", + "Jun": "0.763", + "Jul": "0.724", + "Aug": "0.602", + "Sep": "0.437", + "Oct": "0.200", + "Nov": "0.172", + "Dec": "0.117", + "All-year": "0.508", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.351", + "Feb": "0.344", + "Mar": "0.570", + "Apr": "0.756", + "May": "0.820", + "Jun": "0.854", + "Jul": "0.843", + "Aug": "0.796", + "Sep": "0.647", + "Oct": "0.470", + "Nov": "0.394", + "Dec": "0.370", + "All-year": "0.706", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.343", + "Feb": "0.342", + "Mar": "0.569", + "Apr": "0.754", + "May": "0.820", + "Jun": "0.851", + "Jul": "0.840", + "Aug": "0.794", + "Sep": "0.646", + "Oct": "0.468", + "Nov": "0.387", + "Dec": "0.364", + "All-year": "0.704", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.328", + "Feb": "0.333", + "Mar": "0.566", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.836", + "Aug": "0.790", + "Sep": "0.643", + "Oct": "0.457", + "Nov": "0.375", + "Dec": "0.359", + "All-year": "0.697", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.316", + "Feb": "0.327", + "Mar": "0.556", + "Apr": "0.749", + "May": "0.805", + "Jun": "0.847", + "Jul": "0.829", + "Aug": "0.786", + "Sep": "0.628", + "Oct": "0.454", + "Nov": "0.372", + "Dec": "0.352", + "All-year": "0.692", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.276", + "Feb": "0.265", + "Mar": "0.512", + "Apr": "0.736", + "May": "0.793", + "Jun": "0.833", + "Jul": "0.828", + "Aug": "0.754", + "Sep": "0.610", + "Oct": "0.419", + "Nov": "0.318", + "Dec": "0.309", + "All-year": "0.672", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.187", + "Feb": "0.182", + "Mar": "0.344", + "Apr": "0.701", + "May": "0.743", + "Jun": "0.804", + "Jul": "0.797", + "Aug": "0.708", + "Sep": "0.553", + "Oct": "0.339", + "Nov": "0.239", + "Dec": "0.216", + "All-year": "0.628", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.077", + "Feb": "0.118", + "Mar": "0.247", + "Apr": "0.550", + "May": "0.617", + "Jun": "0.754", + "Jul": "0.694", + "Aug": "0.625", + "Sep": "0.369", + "Oct": "0.216", + "Nov": "0.121", + "Dec": "0.000", + "All-year": "0.543", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.000", + "Feb": "0.000", + "Mar": "0.147", + "Apr": "0.401", + "May": "0.474", + "Jun": "0.607", + "Jul": "0.531", + "Aug": "0.520", + "Sep": "0.275", + "Oct": "0.129", + "Nov": "0.101", + "Dec": "0.000", + "All-year": "0.476", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 11.0 m/s" } + }, + { + "Jan": "0.651", + "Feb": "0.766", + "Mar": "0.821", + "Apr": "0.918", + "May": "0.942", + "Jun": "0.954", + "Jul": "0.976", + "Aug": "0.934", + "Sep": "0.858", + "Oct": "0.734", + "Nov": "0.725", + "Dec": "0.663", + "All-year": "0.821", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.649", + "Feb": "0.765", + "Mar": "0.820", + "Apr": "0.918", + "May": "0.942", + "Jun": "0.953", + "Jul": "0.976", + "Aug": "0.932", + "Sep": "0.856", + "Oct": "0.733", + "Nov": "0.724", + "Dec": "0.662", + "All-year": "0.821", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.638", + "Feb": "0.758", + "Mar": "0.811", + "Apr": "0.914", + "May": "0.940", + "Jun": "0.951", + "Jul": "0.974", + "Aug": "0.929", + "Sep": "0.852", + "Oct": "0.726", + "Nov": "0.719", + "Dec": "0.656", + "All-year": "0.815", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.634", + "Feb": "0.754", + "Mar": "0.806", + "Apr": "0.911", + "May": "0.940", + "Jun": "0.949", + "Jul": "0.974", + "Aug": "0.926", + "Sep": "0.850", + "Oct": "0.724", + "Nov": "0.708", + "Dec": "0.656", + "All-year": "0.811", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.599", + "Feb": "0.735", + "Mar": "0.784", + "Apr": "0.902", + "May": "0.936", + "Jun": "0.949", + "Jul": "0.972", + "Aug": "0.918", + "Sep": "0.828", + "Oct": "0.690", + "Nov": "0.693", + "Dec": "0.630", + "All-year": "0.795", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.675", + "Mar": "0.735", + "Apr": "0.878", + "May": "0.925", + "Jun": "0.942", + "Jul": "0.959", + "Aug": "0.913", + "Sep": "0.812", + "Oct": "0.655", + "Nov": "0.633", + "Dec": "0.586", + "All-year": "0.764", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.467", + "Feb": "0.595", + "Mar": "0.682", + "Apr": "0.839", + "May": "0.887", + "Jun": "0.935", + "Jul": "0.956", + "Aug": "0.872", + "Sep": "0.744", + "Oct": "0.552", + "Nov": "0.502", + "Dec": "0.435", + "All-year": "0.703", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.312", + "Feb": "0.519", + "Mar": "0.608", + "Apr": "0.811", + "May": "0.880", + "Jun": "0.922", + "Jul": "0.934", + "Aug": "0.864", + "Sep": "0.690", + "Oct": "0.408", + "Nov": "0.413", + "Dec": "0.326", + "All-year": "0.648", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.579", + "Feb": "0.638", + "Mar": "0.726", + "Apr": "0.874", + "May": "0.927", + "Jun": "0.939", + "Jul": "0.946", + "Aug": "0.897", + "Sep": "0.821", + "Oct": "0.680", + "Nov": "0.615", + "Dec": "0.556", + "All-year": "0.803", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.573", + "Feb": "0.637", + "Mar": "0.724", + "Apr": "0.873", + "May": "0.925", + "Jun": "0.937", + "Jul": "0.944", + "Aug": "0.894", + "Sep": "0.817", + "Oct": "0.676", + "Nov": "0.610", + "Dec": "0.552", + "All-year": "0.802", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.557", + "Feb": "0.626", + "Mar": "0.717", + "Apr": "0.867", + "May": "0.921", + "Jun": "0.935", + "Jul": "0.942", + "Aug": "0.892", + "Sep": "0.811", + "Oct": "0.665", + "Nov": "0.607", + "Dec": "0.540", + "All-year": "0.795", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.557", + "Feb": "0.620", + "Mar": "0.714", + "Apr": "0.865", + "May": "0.916", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.889", + "Sep": "0.803", + "Oct": "0.657", + "Nov": "0.607", + "Dec": "0.536", + "All-year": "0.793", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.507", + "Feb": "0.589", + "Mar": "0.697", + "Apr": "0.853", + "May": "0.915", + "Jun": "0.935", + "Jul": "0.941", + "Aug": "0.876", + "Sep": "0.794", + "Oct": "0.622", + "Nov": "0.569", + "Dec": "0.505", + "All-year": "0.777", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.414", + "Feb": "0.552", + "Mar": "0.668", + "Apr": "0.835", + "May": "0.887", + "Jun": "0.920", + "Jul": "0.935", + "Aug": "0.860", + "Sep": "0.751", + "Oct": "0.556", + "Nov": "0.495", + "Dec": "0.442", + "All-year": "0.744", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.265", + "Feb": "0.390", + "Mar": "0.570", + "Apr": "0.781", + "May": "0.843", + "Jun": "0.886", + "Jul": "0.919", + "Aug": "0.804", + "Sep": "0.665", + "Oct": "0.415", + "Nov": "0.354", + "Dec": "0.288", + "All-year": "0.666", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.219", + "Feb": "0.251", + "Mar": "0.448", + "Apr": "0.721", + "May": "0.774", + "Jun": "0.869", + "Jul": "0.853", + "Aug": "0.774", + "Sep": "0.533", + "Oct": "0.304", + "Nov": "0.292", + "Dec": "0.196", + "All-year": "0.617", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.417", + "Feb": "0.451", + "Mar": "0.632", + "Apr": "0.821", + "May": "0.899", + "Jun": "0.924", + "Jul": "0.890", + "Aug": "0.867", + "Sep": "0.739", + "Oct": "0.591", + "Nov": "0.510", + "Dec": "0.456", + "All-year": "0.785", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.406", + "Feb": "0.449", + "Mar": "0.629", + "Apr": "0.821", + "May": "0.894", + "Jun": "0.924", + "Jul": "0.886", + "Aug": "0.867", + "Sep": "0.739", + "Oct": "0.591", + "Nov": "0.510", + "Dec": "0.453", + "All-year": "0.783", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.397", + "Feb": "0.446", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.894", + "Jun": "0.919", + "Jul": "0.886", + "Aug": "0.862", + "Sep": "0.735", + "Oct": "0.565", + "Nov": "0.489", + "Dec": "0.440", + "All-year": "0.778", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.388", + "Feb": "0.435", + "Mar": "0.618", + "Apr": "0.818", + "May": "0.891", + "Jun": "0.915", + "Jul": "0.886", + "Aug": "0.860", + "Sep": "0.729", + "Oct": "0.558", + "Nov": "0.479", + "Dec": "0.433", + "All-year": "0.772", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.358", + "Feb": "0.353", + "Mar": "0.552", + "Apr": "0.810", + "May": "0.872", + "Jun": "0.907", + "Jul": "0.878", + "Aug": "0.858", + "Sep": "0.721", + "Oct": "0.522", + "Nov": "0.432", + "Dec": "0.399", + "All-year": "0.757", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.320", + "Feb": "0.259", + "Mar": "0.508", + "Apr": "0.790", + "May": "0.836", + "Jun": "0.882", + "Jul": "0.860", + "Aug": "0.824", + "Sep": "0.669", + "Oct": "0.434", + "Nov": "0.335", + "Dec": "0.285", + "All-year": "0.708", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.155", + "Feb": "0.132", + "Mar": "0.421", + "Apr": "0.703", + "May": "0.753", + "Jun": "0.814", + "Jul": "0.831", + "Aug": "0.727", + "Sep": "0.528", + "Oct": "0.315", + "Nov": "0.147", + "Dec": "0.091", + "All-year": "0.636", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.113", + "Feb": "0.108", + "Mar": "0.227", + "Apr": "0.558", + "May": "0.638", + "Jun": "0.807", + "Jul": "0.694", + "Aug": "0.655", + "Sep": "0.418", + "Oct": "0.231", + "Nov": "0.124", + "Dec": "0.000", + "All-year": "0.577", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 12.0 m/s" } + }, + { + "Jan": "0.890", + "Feb": "0.920", + "Mar": "0.947", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.927", + "Nov": "0.910", + "Dec": "0.892", + "All-year": "0.945", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.890", + "Feb": "0.917", + "Mar": "0.947", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.927", + "Nov": "0.908", + "Dec": "0.890", + "All-year": "0.944", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.887", + "Feb": "0.917", + "Mar": "0.946", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.974", + "Oct": "0.923", + "Nov": "0.905", + "Dec": "0.890", + "All-year": "0.941", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.886", + "Feb": "0.917", + "Mar": "0.943", + "Apr": "0.992", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.973", + "Oct": "0.919", + "Nov": "0.901", + "Dec": "0.890", + "All-year": "0.940", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.872", + "Feb": "0.914", + "Mar": "0.938", + "Apr": "0.990", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.965", + "Oct": "0.907", + "Nov": "0.888", + "Dec": "0.873", + "All-year": "0.933", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.842", + "Feb": "0.908", + "Mar": "0.925", + "Apr": "0.990", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.995", + "Sep": "0.958", + "Oct": "0.900", + "Nov": "0.877", + "Dec": "0.822", + "All-year": "0.922", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.761", + "Feb": "0.867", + "Mar": "0.905", + "Apr": "0.987", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.994", + "Sep": "0.937", + "Oct": "0.864", + "Nov": "0.806", + "Dec": "0.764", + "All-year": "0.899", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.710", + "Feb": "0.831", + "Mar": "0.897", + "Apr": "0.987", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "0.993", + "Sep": "0.912", + "Oct": "0.820", + "Nov": "0.735", + "Dec": "0.692", + "All-year": "0.878", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.836", + "Feb": "0.869", + "Mar": "0.919", + "Apr": "0.976", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.945", + "Oct": "0.906", + "Nov": "0.865", + "Dec": "0.820", + "All-year": "0.938", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.833", + "Feb": "0.869", + "Mar": "0.919", + "Apr": "0.975", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.992", + "Aug": "0.982", + "Sep": "0.945", + "Oct": "0.903", + "Nov": "0.864", + "Dec": "0.817", + "All-year": "0.937", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.827", + "Feb": "0.861", + "Mar": "0.917", + "Apr": "0.972", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.943", + "Oct": "0.897", + "Nov": "0.864", + "Dec": "0.808", + "All-year": "0.935", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.820", + "Feb": "0.861", + "Mar": "0.917", + "Apr": "0.969", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.982", + "Sep": "0.942", + "Oct": "0.895", + "Nov": "0.862", + "Dec": "0.801", + "All-year": "0.933", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.805", + "Feb": "0.843", + "Mar": "0.901", + "Apr": "0.968", + "May": "0.996", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.977", + "Sep": "0.934", + "Oct": "0.880", + "Nov": "0.841", + "Dec": "0.777", + "All-year": "0.926", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.753", + "Feb": "0.820", + "Mar": "0.887", + "Apr": "0.967", + "May": "0.993", + "Jun": "0.992", + "Jul": "0.990", + "Aug": "0.967", + "Sep": "0.926", + "Oct": "0.849", + "Nov": "0.802", + "Dec": "0.746", + "All-year": "0.911", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.620", + "Feb": "0.762", + "Mar": "0.832", + "Apr": "0.958", + "May": "0.993", + "Jun": "0.992", + "Jul": "0.988", + "Aug": "0.966", + "Sep": "0.882", + "Oct": "0.798", + "Nov": "0.711", + "Dec": "0.668", + "All-year": "0.877", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.548", + "Feb": "0.670", + "Mar": "0.814", + "Apr": "0.941", + "May": "0.993", + "Jun": "0.991", + "Jul": "0.988", + "Aug": "0.963", + "Sep": "0.875", + "Oct": "0.726", + "Nov": "0.613", + "Dec": "0.546", + "All-year": "0.858", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.722", + "Feb": "0.714", + "Mar": "0.872", + "Apr": "0.943", + "May": "0.983", + "Jun": "0.975", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.915", + "Oct": "0.853", + "Nov": "0.807", + "Dec": "0.761", + "All-year": "0.929", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.719", + "Feb": "0.714", + "Mar": "0.870", + "Apr": "0.943", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.911", + "Oct": "0.851", + "Nov": "0.804", + "Dec": "0.761", + "All-year": "0.928", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.711", + "Mar": "0.866", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.978", + "Aug": "0.965", + "Sep": "0.908", + "Oct": "0.849", + "Nov": "0.804", + "Dec": "0.761", + "All-year": "0.926", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.708", + "Feb": "0.711", + "Mar": "0.859", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.961", + "Sep": "0.908", + "Oct": "0.847", + "Nov": "0.804", + "Dec": "0.755", + "All-year": "0.923", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.683", + "Feb": "0.691", + "Mar": "0.848", + "Apr": "0.942", + "May": "0.983", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.958", + "Sep": "0.893", + "Oct": "0.827", + "Nov": "0.765", + "Dec": "0.712", + "All-year": "0.915", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.575", + "Feb": "0.635", + "Mar": "0.827", + "Apr": "0.939", + "May": "0.966", + "Jun": "0.974", + "Jul": "0.972", + "Aug": "0.945", + "Sep": "0.874", + "Oct": "0.784", + "Nov": "0.728", + "Dec": "0.629", + "All-year": "0.895", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.466", + "Feb": "0.545", + "Mar": "0.766", + "Apr": "0.917", + "May": "0.953", + "Jun": "0.961", + "Jul": "0.960", + "Aug": "0.899", + "Sep": "0.844", + "Oct": "0.722", + "Nov": "0.561", + "Dec": "0.556", + "All-year": "0.859", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "0.351", + "Feb": "0.436", + "Mar": "0.632", + "Apr": "0.844", + "May": "0.922", + "Jun": "0.958", + "Jul": "0.960", + "Aug": "0.880", + "Sep": "0.772", + "Oct": "0.652", + "Nov": "0.460", + "Dec": "0.388", + "All-year": "0.824", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 15.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.998", + "All-year": "0.998", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.998", + "All-year": "0.998", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.998", + "All-year": "0.998", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.997", + "All-year": "0.998", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.997", + "All-year": "0.998", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.997", + "All-year": "0.998", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.997", + "All-year": "0.997", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "0.997", + "All-year": "0.997", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.992", + "Feb": "0.995", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.995", + "All-year": "0.997", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.991", + "Feb": "0.995", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.995", + "All-year": "0.997", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.989", + "Feb": "0.995", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.995", + "All-year": "0.997", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.989", + "Feb": "0.995", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.995", + "All-year": "0.997", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.985", + "Feb": "0.993", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.993", + "All-year": "0.997", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.978", + "Feb": "0.993", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.993", + "All-year": "0.996", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.977", + "Feb": "0.993", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.992", + "All-year": "0.993", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.974", + "Feb": "0.990", + "Mar": "0.999", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.997", + "Nov": "0.997", + "Dec": "0.992", + "All-year": "0.989", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.978", + "Feb": "0.972", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.990", + "Dec": "0.978", + "All-year": "0.994", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.978", + "Feb": "0.972", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.990", + "Dec": "0.978", + "All-year": "0.994", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.977", + "Feb": "0.967", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.990", + "Dec": "0.978", + "All-year": "0.994", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.972", + "Feb": "0.967", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.987", + "Dec": "0.978", + "All-year": "0.994", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.966", + "Feb": "0.957", + "Mar": "0.995", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.986", + "Dec": "0.978", + "All-year": "0.992", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.923", + "Feb": "0.957", + "Mar": "0.993", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.989", + "Nov": "0.986", + "Dec": "0.978", + "All-year": "0.989", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.887", + "Feb": "0.936", + "Mar": "0.976", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.972", + "Dec": "0.950", + "All-year": "0.984", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "0.839", + "Feb": "0.881", + "Mar": "0.976", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "0.987", + "Nov": "0.972", + "Dec": "0.919", + "All-year": "0.984", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 20.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 1h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 2h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 4h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 6h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 12h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 24h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 48h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P50", + "duration": "t = 72h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 1h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 2h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 4h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 6h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 12h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 24h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 48h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "1.000", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P75", + "duration": "t = 72h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 1h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 2h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 4h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 6h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 12h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 24h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 48h", + "threshold": { "U10": "< 25.0 m/s" } + }, + { + "Jan": "1.000", + "Feb": "0.999", + "Mar": "1.000", + "Apr": "1.000", + "May": "1.000", + "Jun": "1.000", + "Jul": "1.000", + "Aug": "1.000", + "Sep": "1.000", + "Oct": "1.000", + "Nov": "1.000", + "Dec": "1.000", + "All-year": "1.000", + "exceedance": "P90", + "duration": "t = 72h", + "threshold": { "U10": "< 25.0 m/s" } + } +] diff --git a/public/static/data/Timeseries.json b/public/static/data/Timeseries.json new file mode 100644 index 0000000..4ffab47 --- /dev/null +++ b/public/static/data/Timeseries.json @@ -0,0 +1,78532 @@ +[ + { + "Date+Time": "1979-01-01T00:00:00Z", + "Hs (total) (m)": 2.4499, + "Tp (total) (s)": 15.0723 + }, + { + "Date+Time": "1979-01-02T00:00:00Z", + "Hs (total) (m)": 2.4316, + "Tp (total) (s)": 15.0334 + }, + { + "Date+Time": "1979-01-03T00:00:00Z", + "Hs (total) (m)": 2.3911, + "Tp (total) (s)": 14.201 + }, + { + "Date+Time": "1979-01-04T00:00:00Z", + "Hs (total) (m)": 2.1393, + "Tp (total) (s)": 12.8613 + }, + { + "Date+Time": "1979-01-05T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 10.1444 + }, + { + "Date+Time": "1979-01-06T00:00:00Z", + "Hs (total) (m)": 1.0819, + "Tp (total) (s)": 9.1464 + }, + { + "Date+Time": "1979-01-07T00:00:00Z", + "Hs (total) (m)": 1.0765, + "Tp (total) (s)": 9.8132 + }, + { + "Date+Time": "1979-01-08T00:00:00Z", + "Hs (total) (m)": 1.2764, + "Tp (total) (s)": 10.1245 + }, + { + "Date+Time": "1979-01-09T00:00:00Z", + "Hs (total) (m)": 1.6381, + "Tp (total) (s)": 13.5281 + }, + { + "Date+Time": "1979-01-10T00:00:00Z", + "Hs (total) (m)": 2.2225, + "Tp (total) (s)": 13.5311 + }, + { + "Date+Time": "1979-01-11T00:00:00Z", + "Hs (total) (m)": 2.9763, + "Tp (total) (s)": 13.8447 + }, + { + "Date+Time": "1979-01-12T00:00:00Z", + "Hs (total) (m)": 2.8848, + "Tp (total) (s)": 13.5907 + }, + { + "Date+Time": "1979-01-13T00:00:00Z", + "Hs (total) (m)": 2.5742, + "Tp (total) (s)": 11.4132 + }, + { + "Date+Time": "1979-01-14T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 11.1064 + }, + { + "Date+Time": "1979-01-15T00:00:00Z", + "Hs (total) (m)": 2.2584, + "Tp (total) (s)": 11.2583 + }, + { + "Date+Time": "1979-01-16T00:00:00Z", + "Hs (total) (m)": 2.2805, + "Tp (total) (s)": 10.7028 + }, + { + "Date+Time": "1979-01-17T00:00:00Z", + "Hs (total) (m)": 1.9356, + "Tp (total) (s)": 10.8577 + }, + { + "Date+Time": "1979-01-18T00:00:00Z", + "Hs (total) (m)": 1.7891, + "Tp (total) (s)": 11.3361 + }, + { + "Date+Time": "1979-01-19T00:00:00Z", + "Hs (total) (m)": 1.8258, + "Tp (total) (s)": 11.5818 + }, + { + "Date+Time": "1979-01-20T00:00:00Z", + "Hs (total) (m)": 1.0956, + "Tp (total) (s)": 11.2575 + }, + { + "Date+Time": "1979-01-21T00:00:00Z", + "Hs (total) (m)": 0.7988, + "Tp (total) (s)": 12.5233 + }, + { + "Date+Time": "1979-01-22T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 11.5917 + }, + { + "Date+Time": "1979-01-23T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 11.2941 + }, + { + "Date+Time": "1979-01-24T00:00:00Z", + "Hs (total) (m)": 0.7279, + "Tp (total) (s)": 13.9279 + }, + { + "Date+Time": "1979-01-25T00:00:00Z", + "Hs (total) (m)": 1.0994, + "Tp (total) (s)": 13.8836 + }, + { + "Date+Time": "1979-01-26T00:00:00Z", + "Hs (total) (m)": 1.3459, + "Tp (total) (s)": 13.5945 + }, + { + "Date+Time": "1979-01-27T00:00:00Z", + "Hs (total) (m)": 1.2604, + "Tp (total) (s)": 12.7895 + }, + { + "Date+Time": "1979-01-28T00:00:00Z", + "Hs (total) (m)": 1.5007, + "Tp (total) (s)": 10.7433 + }, + { + "Date+Time": "1979-01-29T00:00:00Z", + "Hs (total) (m)": 1.8021, + "Tp (total) (s)": 7.5022 + }, + { + "Date+Time": "1979-01-30T00:00:00Z", + "Hs (total) (m)": 2.3408, + "Tp (total) (s)": 11.8603 + }, + { + "Date+Time": "1979-01-31T00:00:00Z", + "Hs (total) (m)": 1.7991, + "Tp (total) (s)": 12.0777 + }, + { + "Date+Time": "1979-02-01T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 11.5398 + }, + { + "Date+Time": "1979-02-02T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 9.5378 + }, + { + "Date+Time": "1979-02-03T00:00:00Z", + "Hs (total) (m)": 0.7241, + "Tp (total) (s)": 10.5235 + }, + { + "Date+Time": "1979-02-04T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 15.4103 + }, + { + "Date+Time": "1979-02-05T00:00:00Z", + "Hs (total) (m)": 2.0539, + "Tp (total) (s)": 15.1898 + }, + { + "Date+Time": "1979-02-06T00:00:00Z", + "Hs (total) (m)": 2.3232, + "Tp (total) (s)": 14.9228 + }, + { + "Date+Time": "1979-02-07T00:00:00Z", + "Hs (total) (m)": 2.4888, + "Tp (total) (s)": 15.3821 + }, + { + "Date+Time": "1979-02-08T00:00:00Z", + "Hs (total) (m)": 2.5765, + "Tp (total) (s)": 15.0685 + }, + { + "Date+Time": "1979-02-09T00:00:00Z", + "Hs (total) (m)": 3.1487, + "Tp (total) (s)": 13.8646 + }, + { + "Date+Time": "1979-02-10T00:00:00Z", + "Hs (total) (m)": 1.9395, + "Tp (total) (s)": 12.7941 + }, + { + "Date+Time": "1979-02-11T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 15.6346 + }, + { + "Date+Time": "1979-02-12T00:00:00Z", + "Hs (total) (m)": 1.854, + "Tp (total) (s)": 14.024 + }, + { + "Date+Time": "1979-02-13T00:00:00Z", + "Hs (total) (m)": 1.8639, + "Tp (total) (s)": 14.9251 + }, + { + "Date+Time": "1979-02-14T00:00:00Z", + "Hs (total) (m)": 2.9626, + "Tp (total) (s)": 20.278 + }, + { + "Date+Time": "1979-02-15T00:00:00Z", + "Hs (total) (m)": 3.6119, + "Tp (total) (s)": 18.289 + }, + { + "Date+Time": "1979-02-16T00:00:00Z", + "Hs (total) (m)": 2.7245, + "Tp (total) (s)": 14.066 + }, + { + "Date+Time": "1979-02-17T00:00:00Z", + "Hs (total) (m)": 2.4728, + "Tp (total) (s)": 13.0551 + }, + { + "Date+Time": "1979-02-18T00:00:00Z", + "Hs (total) (m)": 2.7589, + "Tp (total) (s)": 12.9742 + }, + { + "Date+Time": "1979-02-19T00:00:00Z", + "Hs (total) (m)": 2.3705, + "Tp (total) (s)": 12.3623 + }, + { + "Date+Time": "1979-02-20T00:00:00Z", + "Hs (total) (m)": 2.2927, + "Tp (total) (s)": 11.6985 + }, + { + "Date+Time": "1979-02-21T00:00:00Z", + "Hs (total) (m)": 2.7093, + "Tp (total) (s)": 11.6268 + }, + { + "Date+Time": "1979-02-22T00:00:00Z", + "Hs (total) (m)": 2.8741, + "Tp (total) (s)": 12.4104 + }, + { + "Date+Time": "1979-02-23T00:00:00Z", + "Hs (total) (m)": 2.6124, + "Tp (total) (s)": 12.7514 + }, + { + "Date+Time": "1979-02-24T00:00:00Z", + "Hs (total) (m)": 2.2164, + "Tp (total) (s)": 12.6835 + }, + { + "Date+Time": "1979-02-25T00:00:00Z", + "Hs (total) (m)": 2.1752, + "Tp (total) (s)": 11.919 + }, + { + "Date+Time": "1979-02-26T00:00:00Z", + "Hs (total) (m)": 2.4468, + "Tp (total) (s)": 13.0009 + }, + { + "Date+Time": "1979-02-27T00:00:00Z", + "Hs (total) (m)": 2.3728, + "Tp (total) (s)": 11.9892 + }, + { + "Date+Time": "1979-02-28T00:00:00Z", + "Hs (total) (m)": 2.2629, + "Tp (total) (s)": 8.1973 + }, + { + "Date+Time": "1979-03-01T00:00:00Z", + "Hs (total) (m)": 1.9677, + "Tp (total) (s)": 8.6474 + }, + { + "Date+Time": "1979-03-02T00:00:00Z", + "Hs (total) (m)": 2.5849, + "Tp (total) (s)": 14.4032 + }, + { + "Date+Time": "1979-03-03T00:00:00Z", + "Hs (total) (m)": 3.6279, + "Tp (total) (s)": 14.6054 + }, + { + "Date+Time": "1979-03-04T00:00:00Z", + "Hs (total) (m)": 3.8713, + "Tp (total) (s)": 12.7262 + }, + { + "Date+Time": "1979-03-05T00:00:00Z", + "Hs (total) (m)": 3.3769, + "Tp (total) (s)": 12.4874 + }, + { + "Date+Time": "1979-03-06T00:00:00Z", + "Hs (total) (m)": 3.7217, + "Tp (total) (s)": 16.1786 + }, + { + "Date+Time": "1979-03-07T00:00:00Z", + "Hs (total) (m)": 4.4145, + "Tp (total) (s)": 16.1634 + }, + { + "Date+Time": "1979-03-08T00:00:00Z", + "Hs (total) (m)": 3.9834, + "Tp (total) (s)": 15.144 + }, + { + "Date+Time": "1979-03-09T00:00:00Z", + "Hs (total) (m)": 3.2899, + "Tp (total) (s)": 12.9688 + }, + { + "Date+Time": "1979-03-10T00:00:00Z", + "Hs (total) (m)": 3.1793, + "Tp (total) (s)": 12.3966 + }, + { + "Date+Time": "1979-03-11T00:00:00Z", + "Hs (total) (m)": 3.1487, + "Tp (total) (s)": 13.2321 + }, + { + "Date+Time": "1979-03-12T00:00:00Z", + "Hs (total) (m)": 3.6424, + "Tp (total) (s)": 13.86 + }, + { + "Date+Time": "1979-03-13T00:00:00Z", + "Hs (total) (m)": 3.0358, + "Tp (total) (s)": 11.8366 + }, + { + "Date+Time": "1979-03-14T00:00:00Z", + "Hs (total) (m)": 3.074, + "Tp (total) (s)": 13.4869 + }, + { + "Date+Time": "1979-03-15T00:00:00Z", + "Hs (total) (m)": 1.9105, + "Tp (total) (s)": 12.8811 + }, + { + "Date+Time": "1979-03-16T00:00:00Z", + "Hs (total) (m)": 1.2177, + "Tp (total) (s)": 11.2064 + }, + { + "Date+Time": "1979-03-17T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 9.7812 + }, + { + "Date+Time": "1979-03-18T00:00:00Z", + "Hs (total) (m)": 0.9613, + "Tp (total) (s)": 3.18 + }, + { + "Date+Time": "1979-03-19T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 13.5723 + }, + { + "Date+Time": "1979-03-20T00:00:00Z", + "Hs (total) (m)": 0.705, + "Tp (total) (s)": 12.698 + }, + { + "Date+Time": "1979-03-21T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 3.6599 + }, + { + "Date+Time": "1979-03-22T00:00:00Z", + "Hs (total) (m)": 0.795, + "Tp (total) (s)": 4.1643 + }, + { + "Date+Time": "1979-03-23T00:00:00Z", + "Hs (total) (m)": 0.7881, + "Tp (total) (s)": 4.3916 + }, + { + "Date+Time": "1979-03-24T00:00:00Z", + "Hs (total) (m)": 1.1536, + "Tp (total) (s)": 5.7077 + }, + { + "Date+Time": "1979-03-25T00:00:00Z", + "Hs (total) (m)": 1.3848, + "Tp (total) (s)": 10.921 + }, + { + "Date+Time": "1979-03-26T00:00:00Z", + "Hs (total) (m)": 1.2391, + "Tp (total) (s)": 8.0538 + }, + { + "Date+Time": "1979-03-27T00:00:00Z", + "Hs (total) (m)": 1.5015, + "Tp (total) (s)": 8.0927 + }, + { + "Date+Time": "1979-03-28T00:00:00Z", + "Hs (total) (m)": 2.2515, + "Tp (total) (s)": 10.5945 + }, + { + "Date+Time": "1979-03-29T00:00:00Z", + "Hs (total) (m)": 2.7879, + "Tp (total) (s)": 11.9007 + }, + { + "Date+Time": "1979-03-30T00:00:00Z", + "Hs (total) (m)": 2.0737, + "Tp (total) (s)": 12.4065 + }, + { + "Date+Time": "1979-03-31T00:00:00Z", + "Hs (total) (m)": 1.2108, + "Tp (total) (s)": 10.9249 + }, + { + "Date+Time": "1979-04-01T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 9.9429 + }, + { + "Date+Time": "1979-04-02T00:00:00Z", + "Hs (total) (m)": 1.1437, + "Tp (total) (s)": 9.2303 + }, + { + "Date+Time": "1979-04-03T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 11.8007 + }, + { + "Date+Time": "1979-04-04T00:00:00Z", + "Hs (total) (m)": 1.912, + "Tp (total) (s)": 12.4157 + }, + { + "Date+Time": "1979-04-05T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 12.3577 + }, + { + "Date+Time": "1979-04-06T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 11.4612 + }, + { + "Date+Time": "1979-04-07T00:00:00Z", + "Hs (total) (m)": 1.1696, + "Tp (total) (s)": 10.6983 + }, + { + "Date+Time": "1979-04-08T00:00:00Z", + "Hs (total) (m)": 1.2825, + "Tp (total) (s)": 8.591 + }, + { + "Date+Time": "1979-04-09T00:00:00Z", + "Hs (total) (m)": 1.0376, + "Tp (total) (s)": 9.096 + }, + { + "Date+Time": "1979-04-10T00:00:00Z", + "Hs (total) (m)": 0.4837, + "Tp (total) (s)": 2.3232 + }, + { + "Date+Time": "1979-04-11T00:00:00Z", + "Hs (total) (m)": 0.4845, + "Tp (total) (s)": 2.6528 + }, + { + "Date+Time": "1979-04-12T00:00:00Z", + "Hs (total) (m)": 0.3693, + "Tp (total) (s)": 2.4186 + }, + { + "Date+Time": "1979-04-13T00:00:00Z", + "Hs (total) (m)": 0.4837, + "Tp (total) (s)": 2.2691 + }, + { + "Date+Time": "1979-04-14T00:00:00Z", + "Hs (total) (m)": 0.7477, + "Tp (total) (s)": 10.3053 + }, + { + "Date+Time": "1979-04-15T00:00:00Z", + "Hs (total) (m)": 0.8454, + "Tp (total) (s)": 12.627 + }, + { + "Date+Time": "1979-04-16T00:00:00Z", + "Hs (total) (m)": 0.8095, + "Tp (total) (s)": 13.2199 + }, + { + "Date+Time": "1979-04-17T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 12.3226 + }, + { + "Date+Time": "1979-04-18T00:00:00Z", + "Hs (total) (m)": 1.6282, + "Tp (total) (s)": 13.6402 + }, + { + "Date+Time": "1979-04-19T00:00:00Z", + "Hs (total) (m)": 1.8464, + "Tp (total) (s)": 13.11 + }, + { + "Date+Time": "1979-04-20T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 13.0528 + }, + { + "Date+Time": "1979-04-21T00:00:00Z", + "Hs (total) (m)": 2.0081, + "Tp (total) (s)": 12.6667 + }, + { + "Date+Time": "1979-04-22T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 12.3043 + }, + { + "Date+Time": "1979-04-23T00:00:00Z", + "Hs (total) (m)": 1.896, + "Tp (total) (s)": 11.594 + }, + { + "Date+Time": "1979-04-24T00:00:00Z", + "Hs (total) (m)": 1.9272, + "Tp (total) (s)": 9.5149 + }, + { + "Date+Time": "1979-04-25T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 9.7255 + }, + { + "Date+Time": "1979-04-26T00:00:00Z", + "Hs (total) (m)": 1.9585, + "Tp (total) (s)": 10.667 + }, + { + "Date+Time": "1979-04-27T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 10.6548 + }, + { + "Date+Time": "1979-04-28T00:00:00Z", + "Hs (total) (m)": 1.0147, + "Tp (total) (s)": 7.7944 + }, + { + "Date+Time": "1979-04-29T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 12.698 + }, + { + "Date+Time": "1979-04-30T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 12.0151 + }, + { + "Date+Time": "1979-05-01T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 11.2682 + }, + { + "Date+Time": "1979-05-02T00:00:00Z", + "Hs (total) (m)": 1.5374, + "Tp (total) (s)": 7.4496 + }, + { + "Date+Time": "1979-05-03T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 9.5065 + }, + { + "Date+Time": "1979-05-04T00:00:00Z", + "Hs (total) (m)": 1.2879, + "Tp (total) (s)": 10.268 + }, + { + "Date+Time": "1979-05-05T00:00:00Z", + "Hs (total) (m)": 1.1414, + "Tp (total) (s)": 12.418 + }, + { + "Date+Time": "1979-05-06T00:00:00Z", + "Hs (total) (m)": 1.1193, + "Tp (total) (s)": 12.4248 + }, + { + "Date+Time": "1979-05-07T00:00:00Z", + "Hs (total) (m)": 1.1757, + "Tp (total) (s)": 12.476 + }, + { + "Date+Time": "1979-05-08T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 12.4882 + }, + { + "Date+Time": "1979-05-09T00:00:00Z", + "Hs (total) (m)": 1.1605, + "Tp (total) (s)": 11.8068 + }, + { + "Date+Time": "1979-05-10T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 6.4508 + }, + { + "Date+Time": "1979-05-11T00:00:00Z", + "Hs (total) (m)": 1.3413, + "Tp (total) (s)": 11.2201 + }, + { + "Date+Time": "1979-05-12T00:00:00Z", + "Hs (total) (m)": 1.5412, + "Tp (total) (s)": 11.2819 + }, + { + "Date+Time": "1979-05-13T00:00:00Z", + "Hs (total) (m)": 1.5816, + "Tp (total) (s)": 9.476 + }, + { + "Date+Time": "1979-05-14T00:00:00Z", + "Hs (total) (m)": 1.912, + "Tp (total) (s)": 10.1138 + }, + { + "Date+Time": "1979-05-15T00:00:00Z", + "Hs (total) (m)": 1.9784, + "Tp (total) (s)": 10.4373 + }, + { + "Date+Time": "1979-05-16T00:00:00Z", + "Hs (total) (m)": 1.986, + "Tp (total) (s)": 13.1344 + }, + { + "Date+Time": "1979-05-17T00:00:00Z", + "Hs (total) (m)": 1.9318, + "Tp (total) (s)": 12.495 + }, + { + "Date+Time": "1979-05-18T00:00:00Z", + "Hs (total) (m)": 2.0165, + "Tp (total) (s)": 10.8768 + }, + { + "Date+Time": "1979-05-19T00:00:00Z", + "Hs (total) (m)": 1.7777, + "Tp (total) (s)": 12.1624 + }, + { + "Date+Time": "1979-05-20T00:00:00Z", + "Hs (total) (m)": 1.6587, + "Tp (total) (s)": 9.6507 + }, + { + "Date+Time": "1979-05-21T00:00:00Z", + "Hs (total) (m)": 1.7647, + "Tp (total) (s)": 8.7878 + }, + { + "Date+Time": "1979-05-22T00:00:00Z", + "Hs (total) (m)": 1.6289, + "Tp (total) (s)": 8.7848 + }, + { + "Date+Time": "1979-05-23T00:00:00Z", + "Hs (total) (m)": 1.6533, + "Tp (total) (s)": 8.7016 + }, + { + "Date+Time": "1979-05-24T00:00:00Z", + "Hs (total) (m)": 1.4611, + "Tp (total) (s)": 10.2588 + }, + { + "Date+Time": "1979-05-25T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 8.8137 + }, + { + "Date+Time": "1979-05-26T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 8.7794 + }, + { + "Date+Time": "1979-05-27T00:00:00Z", + "Hs (total) (m)": 1.0636, + "Tp (total) (s)": 10.0383 + }, + { + "Date+Time": "1979-05-28T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 7.9546 + }, + { + "Date+Time": "1979-05-29T00:00:00Z", + "Hs (total) (m)": 1.4573, + "Tp (total) (s)": 7.8555 + }, + { + "Date+Time": "1979-05-30T00:00:00Z", + "Hs (total) (m)": 1.8357, + "Tp (total) (s)": 9.5088 + }, + { + "Date+Time": "1979-05-31T00:00:00Z", + "Hs (total) (m)": 1.5191, + "Tp (total) (s)": 9.4272 + }, + { + "Date+Time": "1979-06-01T00:00:00Z", + "Hs (total) (m)": 1.2391, + "Tp (total) (s)": 9.0732 + }, + { + "Date+Time": "1979-06-02T00:00:00Z", + "Hs (total) (m)": 1.1353, + "Tp (total) (s)": 8.4254 + }, + { + "Date+Time": "1979-06-03T00:00:00Z", + "Hs (total) (m)": 1.1383, + "Tp (total) (s)": 7.9615 + }, + { + "Date+Time": "1979-06-04T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 9.537 + }, + { + "Date+Time": "1979-06-05T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 9.727 + }, + { + "Date+Time": "1979-06-06T00:00:00Z", + "Hs (total) (m)": 1.1093, + "Tp (total) (s)": 9.5683 + }, + { + "Date+Time": "1979-06-07T00:00:00Z", + "Hs (total) (m)": 1.1444, + "Tp (total) (s)": 9.3333 + }, + { + "Date+Time": "1979-06-08T00:00:00Z", + "Hs (total) (m)": 0.9064, + "Tp (total) (s)": 8.4727 + }, + { + "Date+Time": "1979-06-09T00:00:00Z", + "Hs (total) (m)": 1.0254, + "Tp (total) (s)": 7.8402 + }, + { + "Date+Time": "1979-06-10T00:00:00Z", + "Hs (total) (m)": 0.8362, + "Tp (total) (s)": 6.3089 + }, + { + "Date+Time": "1979-06-11T00:00:00Z", + "Hs (total) (m)": 0.4479, + "Tp (total) (s)": 6.2395 + }, + { + "Date+Time": "1979-06-12T00:00:00Z", + "Hs (total) (m)": 0.3357, + "Tp (total) (s)": 7.8677 + }, + { + "Date+Time": "1979-06-13T00:00:00Z", + "Hs (total) (m)": 0.3899, + "Tp (total) (s)": 7.828 + }, + { + "Date+Time": "1979-06-14T00:00:00Z", + "Hs (total) (m)": 0.7019, + "Tp (total) (s)": 7.8539 + }, + { + "Date+Time": "1979-06-15T00:00:00Z", + "Hs (total) (m)": 1.1254, + "Tp (total) (s)": 3.3029 + }, + { + "Date+Time": "1979-06-16T00:00:00Z", + "Hs (total) (m)": 1.3497, + "Tp (total) (s)": 7.6342 + }, + { + "Date+Time": "1979-06-17T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 7.5426 + }, + { + "Date+Time": "1979-06-18T00:00:00Z", + "Hs (total) (m)": 1.2505, + "Tp (total) (s)": 9.7133 + }, + { + "Date+Time": "1979-06-19T00:00:00Z", + "Hs (total) (m)": 0.8728, + "Tp (total) (s)": 8.7275 + }, + { + "Date+Time": "1979-06-20T00:00:00Z", + "Hs (total) (m)": 0.8576, + "Tp (total) (s)": 8.4193 + }, + { + "Date+Time": "1979-06-21T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 8.5559 + }, + { + "Date+Time": "1979-06-22T00:00:00Z", + "Hs (total) (m)": 1.5381, + "Tp (total) (s)": 8.0279 + }, + { + "Date+Time": "1979-06-23T00:00:00Z", + "Hs (total) (m)": 1.8365, + "Tp (total) (s)": 8.4811 + }, + { + "Date+Time": "1979-06-24T00:00:00Z", + "Hs (total) (m)": 2.3125, + "Tp (total) (s)": 10.0406 + }, + { + "Date+Time": "1979-06-25T00:00:00Z", + "Hs (total) (m)": 1.9372, + "Tp (total) (s)": 10.2496 + }, + { + "Date+Time": "1979-06-26T00:00:00Z", + "Hs (total) (m)": 1.4374, + "Tp (total) (s)": 10.4869 + }, + { + "Date+Time": "1979-06-27T00:00:00Z", + "Hs (total) (m)": 1.149, + "Tp (total) (s)": 9.3631 + }, + { + "Date+Time": "1979-06-28T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 8.3262 + }, + { + "Date+Time": "1979-06-29T00:00:00Z", + "Hs (total) (m)": 1.1238, + "Tp (total) (s)": 7.7113 + }, + { + "Date+Time": "1979-06-30T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 7.8166 + }, + { + "Date+Time": "1979-07-01T00:00:00Z", + "Hs (total) (m)": 1.1017, + "Tp (total) (s)": 8.919 + }, + { + "Date+Time": "1979-07-02T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 8.3506 + }, + { + "Date+Time": "1979-07-03T00:00:00Z", + "Hs (total) (m)": 0.631, + "Tp (total) (s)": 7.2649 + }, + { + "Date+Time": "1979-07-04T00:00:00Z", + "Hs (total) (m)": 0.6111, + "Tp (total) (s)": 7.1566 + }, + { + "Date+Time": "1979-07-05T00:00:00Z", + "Hs (total) (m)": 0.808, + "Tp (total) (s)": 8.6695 + }, + { + "Date+Time": "1979-07-06T00:00:00Z", + "Hs (total) (m)": 1.0865, + "Tp (total) (s)": 8.3666 + }, + { + "Date+Time": "1979-07-07T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 7.1413 + }, + { + "Date+Time": "1979-07-08T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 7.6449 + }, + { + "Date+Time": "1979-07-09T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 8.1286 + }, + { + "Date+Time": "1979-07-10T00:00:00Z", + "Hs (total) (m)": 1.381, + "Tp (total) (s)": 10.8562 + }, + { + "Date+Time": "1979-07-11T00:00:00Z", + "Hs (total) (m)": 1.2192, + "Tp (total) (s)": 10.3877 + }, + { + "Date+Time": "1979-07-12T00:00:00Z", + "Hs (total) (m)": 1.0125, + "Tp (total) (s)": 9.3341 + }, + { + "Date+Time": "1979-07-13T00:00:00Z", + "Hs (total) (m)": 1.4092, + "Tp (total) (s)": 9.5683 + }, + { + "Date+Time": "1979-07-14T00:00:00Z", + "Hs (total) (m)": 1.2665, + "Tp (total) (s)": 10.8226 + }, + { + "Date+Time": "1979-07-15T00:00:00Z", + "Hs (total) (m)": 0.8812, + "Tp (total) (s)": 8.8755 + }, + { + "Date+Time": "1979-07-16T00:00:00Z", + "Hs (total) (m)": 1.0414, + "Tp (total) (s)": 8.0966 + }, + { + "Date+Time": "1979-07-17T00:00:00Z", + "Hs (total) (m)": 1.4336, + "Tp (total) (s)": 10.3374 + }, + { + "Date+Time": "1979-07-18T00:00:00Z", + "Hs (total) (m)": 1.8319, + "Tp (total) (s)": 10.4717 + }, + { + "Date+Time": "1979-07-19T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 9.4607 + }, + { + "Date+Time": "1979-07-20T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 7.9463 + }, + { + "Date+Time": "1979-07-21T00:00:00Z", + "Hs (total) (m)": 1.6045, + "Tp (total) (s)": 8.71 + }, + { + "Date+Time": "1979-07-22T00:00:00Z", + "Hs (total) (m)": 0.9926, + "Tp (total) (s)": 8.446 + }, + { + "Date+Time": "1979-07-23T00:00:00Z", + "Hs (total) (m)": 1.0186, + "Tp (total) (s)": 7.5266 + }, + { + "Date+Time": "1979-07-24T00:00:00Z", + "Hs (total) (m)": 0.7401, + "Tp (total) (s)": 6.769 + }, + { + "Date+Time": "1979-07-25T00:00:00Z", + "Hs (total) (m)": 1.0651, + "Tp (total) (s)": 5.932 + }, + { + "Date+Time": "1979-07-26T00:00:00Z", + "Hs (total) (m)": 0.9156, + "Tp (total) (s)": 6.0839 + }, + { + "Date+Time": "1979-07-27T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 7.4282 + }, + { + "Date+Time": "1979-07-28T00:00:00Z", + "Hs (total) (m)": 1.017, + "Tp (total) (s)": 7.5175 + }, + { + "Date+Time": "1979-07-29T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 7.5411 + }, + { + "Date+Time": "1979-07-30T00:00:00Z", + "Hs (total) (m)": 0.9529, + "Tp (total) (s)": 7.178 + }, + { + "Date+Time": "1979-07-31T00:00:00Z", + "Hs (total) (m)": 1.8212, + "Tp (total) (s)": 7.2993 + }, + { + "Date+Time": "1979-08-01T00:00:00Z", + "Hs (total) (m)": 1.9852, + "Tp (total) (s)": 9.3867 + }, + { + "Date+Time": "1979-08-02T00:00:00Z", + "Hs (total) (m)": 1.3672, + "Tp (total) (s)": 8.0264 + }, + { + "Date+Time": "1979-08-03T00:00:00Z", + "Hs (total) (m)": 0.9018, + "Tp (total) (s)": 8.4033 + }, + { + "Date+Time": "1979-08-04T00:00:00Z", + "Hs (total) (m)": 0.6424, + "Tp (total) (s)": 8.076 + }, + { + "Date+Time": "1979-08-05T00:00:00Z", + "Hs (total) (m)": 1.4496, + "Tp (total) (s)": 6.5424 + }, + { + "Date+Time": "1979-08-06T00:00:00Z", + "Hs (total) (m)": 2.5178, + "Tp (total) (s)": 8.4933 + }, + { + "Date+Time": "1979-08-07T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 9.1182 + }, + { + "Date+Time": "1979-08-08T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 9.2181 + }, + { + "Date+Time": "1979-08-09T00:00:00Z", + "Hs (total) (m)": 1.165, + "Tp (total) (s)": 6.5188 + }, + { + "Date+Time": "1979-08-10T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 6.9849 + }, + { + "Date+Time": "1979-08-11T00:00:00Z", + "Hs (total) (m)": 1.1719, + "Tp (total) (s)": 7.8318 + }, + { + "Date+Time": "1979-08-12T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 8.7146 + }, + { + "Date+Time": "1979-08-13T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 8.5376 + }, + { + "Date+Time": "1979-08-14T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 9.4203 + }, + { + "Date+Time": "1979-08-15T00:00:00Z", + "Hs (total) (m)": 1.6602, + "Tp (total) (s)": 8.7397 + }, + { + "Date+Time": "1979-08-16T00:00:00Z", + "Hs (total) (m)": 2.0623, + "Tp (total) (s)": 10.3778 + }, + { + "Date+Time": "1979-08-17T00:00:00Z", + "Hs (total) (m)": 1.8883, + "Tp (total) (s)": 9.4264 + }, + { + "Date+Time": "1979-08-18T00:00:00Z", + "Hs (total) (m)": 1.8067, + "Tp (total) (s)": 10.7677 + }, + { + "Date+Time": "1979-08-19T00:00:00Z", + "Hs (total) (m)": 1.5839, + "Tp (total) (s)": 10.622 + }, + { + "Date+Time": "1979-08-20T00:00:00Z", + "Hs (total) (m)": 1.0056, + "Tp (total) (s)": 9.0564 + }, + { + "Date+Time": "1979-08-21T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 8.2133 + }, + { + "Date+Time": "1979-08-22T00:00:00Z", + "Hs (total) (m)": 1.5191, + "Tp (total) (s)": 7.9104 + }, + { + "Date+Time": "1979-08-23T00:00:00Z", + "Hs (total) (m)": 1.6701, + "Tp (total) (s)": 8.5444 + }, + { + "Date+Time": "1979-08-24T00:00:00Z", + "Hs (total) (m)": 1.2421, + "Tp (total) (s)": 8.8618 + }, + { + "Date+Time": "1979-08-25T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 6.9712 + }, + { + "Date+Time": "1979-08-26T00:00:00Z", + "Hs (total) (m)": 1.2978, + "Tp (total) (s)": 8.6451 + }, + { + "Date+Time": "1979-08-27T00:00:00Z", + "Hs (total) (m)": 0.7744, + "Tp (total) (s)": 8.5154 + }, + { + "Date+Time": "1979-08-28T00:00:00Z", + "Hs (total) (m)": 0.6386, + "Tp (total) (s)": 8.0287 + }, + { + "Date+Time": "1979-08-29T00:00:00Z", + "Hs (total) (m)": 1.0254, + "Tp (total) (s)": 7.3763 + }, + { + "Date+Time": "1979-08-30T00:00:00Z", + "Hs (total) (m)": 0.7462, + "Tp (total) (s)": 7.6655 + }, + { + "Date+Time": "1979-08-31T00:00:00Z", + "Hs (total) (m)": 0.7569, + "Tp (total) (s)": 7.4046 + }, + { + "Date+Time": "1979-09-01T00:00:00Z", + "Hs (total) (m)": 1.1093, + "Tp (total) (s)": 7.0162 + }, + { + "Date+Time": "1979-09-02T00:00:00Z", + "Hs (total) (m)": 1.8616, + "Tp (total) (s)": 6.3562 + }, + { + "Date+Time": "1979-09-03T00:00:00Z", + "Hs (total) (m)": 2.6276, + "Tp (total) (s)": 9.0045 + }, + { + "Date+Time": "1979-09-04T00:00:00Z", + "Hs (total) (m)": 1.0392, + "Tp (total) (s)": 7.7433 + }, + { + "Date+Time": "1979-09-05T00:00:00Z", + "Hs (total) (m)": 1.9234, + "Tp (total) (s)": 8.3216 + }, + { + "Date+Time": "1979-09-06T00:00:00Z", + "Hs (total) (m)": 2.1584, + "Tp (total) (s)": 9.0236 + }, + { + "Date+Time": "1979-09-07T00:00:00Z", + "Hs (total) (m)": 1.7228, + "Tp (total) (s)": 10.0421 + }, + { + "Date+Time": "1979-09-08T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 8.6619 + }, + { + "Date+Time": "1979-09-09T00:00:00Z", + "Hs (total) (m)": 0.8065, + "Tp (total) (s)": 10.1962 + }, + { + "Date+Time": "1979-09-10T00:00:00Z", + "Hs (total) (m)": 1.0231, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "1979-09-11T00:00:00Z", + "Hs (total) (m)": 2.0219, + "Tp (total) (s)": 11.3666 + }, + { + "Date+Time": "1979-09-12T00:00:00Z", + "Hs (total) (m)": 1.6755, + "Tp (total) (s)": 11.2629 + }, + { + "Date+Time": "1979-09-13T00:00:00Z", + "Hs (total) (m)": 2.4102, + "Tp (total) (s)": 11.1301 + }, + { + "Date+Time": "1979-09-14T00:00:00Z", + "Hs (total) (m)": 1.3237, + "Tp (total) (s)": 9.167 + }, + { + "Date+Time": "1979-09-15T00:00:00Z", + "Hs (total) (m)": 0.9003, + "Tp (total) (s)": 8.6726 + }, + { + "Date+Time": "1979-09-16T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 6.679 + }, + { + "Date+Time": "1979-09-17T00:00:00Z", + "Hs (total) (m)": 2.5422, + "Tp (total) (s)": 9.1212 + }, + { + "Date+Time": "1979-09-18T00:00:00Z", + "Hs (total) (m)": 2.797, + "Tp (total) (s)": 9.5607 + }, + { + "Date+Time": "1979-09-19T00:00:00Z", + "Hs (total) (m)": 1.812, + "Tp (total) (s)": 11.2072 + }, + { + "Date+Time": "1979-09-20T00:00:00Z", + "Hs (total) (m)": 3.9369, + "Tp (total) (s)": 11.4605 + }, + { + "Date+Time": "1979-09-21T00:00:00Z", + "Hs (total) (m)": 1.722, + "Tp (total) (s)": 10.3542 + }, + { + "Date+Time": "1979-09-22T00:00:00Z", + "Hs (total) (m)": 0.9621, + "Tp (total) (s)": 8.5055 + }, + { + "Date+Time": "1979-09-23T00:00:00Z", + "Hs (total) (m)": 1.7045, + "Tp (total) (s)": 7.9386 + }, + { + "Date+Time": "1979-09-24T00:00:00Z", + "Hs (total) (m)": 1.1475, + "Tp (total) (s)": 10.0208 + }, + { + "Date+Time": "1979-09-25T00:00:00Z", + "Hs (total) (m)": 2.5178, + "Tp (total) (s)": 9.7247 + }, + { + "Date+Time": "1979-09-26T00:00:00Z", + "Hs (total) (m)": 2.4026, + "Tp (total) (s)": 11.2476 + }, + { + "Date+Time": "1979-09-27T00:00:00Z", + "Hs (total) (m)": 2.1363, + "Tp (total) (s)": 9.3875 + }, + { + "Date+Time": "1979-09-28T00:00:00Z", + "Hs (total) (m)": 1.5847, + "Tp (total) (s)": 10.4595 + }, + { + "Date+Time": "1979-09-29T00:00:00Z", + "Hs (total) (m)": 1.2566, + "Tp (total) (s)": 10.39 + }, + { + "Date+Time": "1979-09-30T00:00:00Z", + "Hs (total) (m)": 1.3581, + "Tp (total) (s)": 12.772 + }, + { + "Date+Time": "1979-10-01T00:00:00Z", + "Hs (total) (m)": 2.1989, + "Tp (total) (s)": 13.8623 + }, + { + "Date+Time": "1979-10-02T00:00:00Z", + "Hs (total) (m)": 2.195, + "Tp (total) (s)": 11.0836 + }, + { + "Date+Time": "1979-10-03T00:00:00Z", + "Hs (total) (m)": 2.1294, + "Tp (total) (s)": 10.2191 + }, + { + "Date+Time": "1979-10-04T00:00:00Z", + "Hs (total) (m)": 1.2093, + "Tp (total) (s)": 10.3816 + }, + { + "Date+Time": "1979-10-05T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 9.6973 + }, + { + "Date+Time": "1979-10-06T00:00:00Z", + "Hs (total) (m)": 1.3215, + "Tp (total) (s)": 5.7466 + }, + { + "Date+Time": "1979-10-07T00:00:00Z", + "Hs (total) (m)": 2.1859, + "Tp (total) (s)": 12.2723 + }, + { + "Date+Time": "1979-10-08T00:00:00Z", + "Hs (total) (m)": 2.53, + "Tp (total) (s)": 10.4549 + }, + { + "Date+Time": "1979-10-09T00:00:00Z", + "Hs (total) (m)": 1.9288, + "Tp (total) (s)": 9.682 + }, + { + "Date+Time": "1979-10-10T00:00:00Z", + "Hs (total) (m)": 1.8845, + "Tp (total) (s)": 9.1418 + }, + { + "Date+Time": "1979-10-11T00:00:00Z", + "Hs (total) (m)": 2.3255, + "Tp (total) (s)": 7.9974 + }, + { + "Date+Time": "1979-10-12T00:00:00Z", + "Hs (total) (m)": 1.8326, + "Tp (total) (s)": 8.6474 + }, + { + "Date+Time": "1979-10-13T00:00:00Z", + "Hs (total) (m)": 2.5124, + "Tp (total) (s)": 13.0825 + }, + { + "Date+Time": "1979-10-14T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 11.6199 + }, + { + "Date+Time": "1979-10-15T00:00:00Z", + "Hs (total) (m)": 0.7294, + "Tp (total) (s)": 10.062 + }, + { + "Date+Time": "1979-10-16T00:00:00Z", + "Hs (total) (m)": 1.7785, + "Tp (total) (s)": 12.7926 + }, + { + "Date+Time": "1979-10-17T00:00:00Z", + "Hs (total) (m)": 1.0224, + "Tp (total) (s)": 10.4976 + }, + { + "Date+Time": "1979-10-18T00:00:00Z", + "Hs (total) (m)": 1.7846, + "Tp (total) (s)": 12.6179 + }, + { + "Date+Time": "1979-10-19T00:00:00Z", + "Hs (total) (m)": 3.0641, + "Tp (total) (s)": 8.2217 + }, + { + "Date+Time": "1979-10-20T00:00:00Z", + "Hs (total) (m)": 2.4529, + "Tp (total) (s)": 13.5212 + }, + { + "Date+Time": "1979-10-21T00:00:00Z", + "Hs (total) (m)": 1.3932, + "Tp (total) (s)": 10.9149 + }, + { + "Date+Time": "1979-10-22T00:00:00Z", + "Hs (total) (m)": 1.1536, + "Tp (total) (s)": 9.9223 + }, + { + "Date+Time": "1979-10-23T00:00:00Z", + "Hs (total) (m)": 1.8311, + "Tp (total) (s)": 11.6459 + }, + { + "Date+Time": "1979-10-24T00:00:00Z", + "Hs (total) (m)": 1.9654, + "Tp (total) (s)": 9.6812 + }, + { + "Date+Time": "1979-10-25T00:00:00Z", + "Hs (total) (m)": 2.6528, + "Tp (total) (s)": 13.8363 + }, + { + "Date+Time": "1979-10-26T00:00:00Z", + "Hs (total) (m)": 2.5941, + "Tp (total) (s)": 15.3249 + }, + { + "Date+Time": "1979-10-27T00:00:00Z", + "Hs (total) (m)": 1.5748, + "Tp (total) (s)": 12.8979 + }, + { + "Date+Time": "1979-10-28T00:00:00Z", + "Hs (total) (m)": 1.7144, + "Tp (total) (s)": 11.1362 + }, + { + "Date+Time": "1979-10-29T00:00:00Z", + "Hs (total) (m)": 1.8044, + "Tp (total) (s)": 12.6698 + }, + { + "Date+Time": "1979-10-30T00:00:00Z", + "Hs (total) (m)": 2.356, + "Tp (total) (s)": 12.7766 + }, + { + "Date+Time": "1979-10-31T00:00:00Z", + "Hs (total) (m)": 3.6035, + "Tp (total) (s)": 11.4139 + }, + { + "Date+Time": "1979-11-01T00:00:00Z", + "Hs (total) (m)": 4.1131, + "Tp (total) (s)": 12.775 + }, + { + "Date+Time": "1979-11-02T00:00:00Z", + "Hs (total) (m)": 2.3484, + "Tp (total) (s)": 12.6865 + }, + { + "Date+Time": "1979-11-03T00:00:00Z", + "Hs (total) (m)": 3.5302, + "Tp (total) (s)": 9.9559 + }, + { + "Date+Time": "1979-11-04T00:00:00Z", + "Hs (total) (m)": 3.328, + "Tp (total) (s)": 11.7931 + }, + { + "Date+Time": "1979-11-05T00:00:00Z", + "Hs (total) (m)": 3.5577, + "Tp (total) (s)": 11.6222 + }, + { + "Date+Time": "1979-11-06T00:00:00Z", + "Hs (total) (m)": 3.5989, + "Tp (total) (s)": 10.8119 + }, + { + "Date+Time": "1979-11-07T00:00:00Z", + "Hs (total) (m)": 2.1081, + "Tp (total) (s)": 11.5169 + }, + { + "Date+Time": "1979-11-08T00:00:00Z", + "Hs (total) (m)": 2.0356, + "Tp (total) (s)": 9.5439 + }, + { + "Date+Time": "1979-11-09T00:00:00Z", + "Hs (total) (m)": 2.7169, + "Tp (total) (s)": 9.6904 + }, + { + "Date+Time": "1979-11-10T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 11.3781 + }, + { + "Date+Time": "1979-11-11T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 9.5874 + }, + { + "Date+Time": "1979-11-12T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 8.6215 + }, + { + "Date+Time": "1979-11-13T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 8.4956 + }, + { + "Date+Time": "1979-11-14T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 9.5431 + }, + { + "Date+Time": "1979-11-15T00:00:00Z", + "Hs (total) (m)": 2.7207, + "Tp (total) (s)": 14.7382 + }, + { + "Date+Time": "1979-11-16T00:00:00Z", + "Hs (total) (m)": 2.8893, + "Tp (total) (s)": 13.9317 + }, + { + "Date+Time": "1979-11-17T00:00:00Z", + "Hs (total) (m)": 1.3489, + "Tp (total) (s)": 11.3735 + }, + { + "Date+Time": "1979-11-18T00:00:00Z", + "Hs (total) (m)": 4.3992, + "Tp (total) (s)": 14.8862 + }, + { + "Date+Time": "1979-11-19T00:00:00Z", + "Hs (total) (m)": 2.3072, + "Tp (total) (s)": 13.5586 + }, + { + "Date+Time": "1979-11-20T00:00:00Z", + "Hs (total) (m)": 1.5549, + "Tp (total) (s)": 10.9081 + }, + { + "Date+Time": "1979-11-21T00:00:00Z", + "Hs (total) (m)": 2.0684, + "Tp (total) (s)": 12.1403 + }, + { + "Date+Time": "1979-11-22T00:00:00Z", + "Hs (total) (m)": 2.6093, + "Tp (total) (s)": 12.4546 + }, + { + "Date+Time": "1979-11-23T00:00:00Z", + "Hs (total) (m)": 1.9799, + "Tp (total) (s)": 11.7237 + }, + { + "Date+Time": "1979-11-24T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 10.2138 + }, + { + "Date+Time": "1979-11-25T00:00:00Z", + "Hs (total) (m)": 2.2378, + "Tp (total) (s)": 10.2664 + }, + { + "Date+Time": "1979-11-26T00:00:00Z", + "Hs (total) (m)": 4.2039, + "Tp (total) (s)": 10.1451 + }, + { + "Date+Time": "1979-11-27T00:00:00Z", + "Hs (total) (m)": 2.3705, + "Tp (total) (s)": 11.2049 + }, + { + "Date+Time": "1979-11-28T00:00:00Z", + "Hs (total) (m)": 3.666, + "Tp (total) (s)": 11.6031 + }, + { + "Date+Time": "1979-11-29T00:00:00Z", + "Hs (total) (m)": 3.0427, + "Tp (total) (s)": 11.6848 + }, + { + "Date+Time": "1979-11-30T00:00:00Z", + "Hs (total) (m)": 2.8153, + "Tp (total) (s)": 10.2855 + }, + { + "Date+Time": "1979-12-01T00:00:00Z", + "Hs (total) (m)": 2.7841, + "Tp (total) (s)": 11.4391 + }, + { + "Date+Time": "1979-12-02T00:00:00Z", + "Hs (total) (m)": 4.1185, + "Tp (total) (s)": 10.7685 + }, + { + "Date+Time": "1979-12-03T00:00:00Z", + "Hs (total) (m)": 3.0931, + "Tp (total) (s)": 13.5891 + }, + { + "Date+Time": "1979-12-04T00:00:00Z", + "Hs (total) (m)": 3.0152, + "Tp (total) (s)": 12.6522 + }, + { + "Date+Time": "1979-12-05T00:00:00Z", + "Hs (total) (m)": 3.8575, + "Tp (total) (s)": 12.4477 + }, + { + "Date+Time": "1979-12-06T00:00:00Z", + "Hs (total) (m)": 2.2622, + "Tp (total) (s)": 11.2964 + }, + { + "Date+Time": "1979-12-07T00:00:00Z", + "Hs (total) (m)": 1.9105, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "1979-12-08T00:00:00Z", + "Hs (total) (m)": 2.6711, + "Tp (total) (s)": 10.5731 + }, + { + "Date+Time": "1979-12-09T00:00:00Z", + "Hs (total) (m)": 2.4186, + "Tp (total) (s)": 10.0536 + }, + { + "Date+Time": "1979-12-10T00:00:00Z", + "Hs (total) (m)": 6.0625, + "Tp (total) (s)": 14.3073 + }, + { + "Date+Time": "1979-12-11T00:00:00Z", + "Hs (total) (m)": 2.8657, + "Tp (total) (s)": 11.7229 + }, + { + "Date+Time": "1979-12-12T00:00:00Z", + "Hs (total) (m)": 3.2579, + "Tp (total) (s)": 14.0896 + }, + { + "Date+Time": "1979-12-13T00:00:00Z", + "Hs (total) (m)": 7.4073, + "Tp (total) (s)": 15.5289 + }, + { + "Date+Time": "1979-12-14T00:00:00Z", + "Hs (total) (m)": 4.2993, + "Tp (total) (s)": 15.2623 + }, + { + "Date+Time": "1979-12-15T00:00:00Z", + "Hs (total) (m)": 2.884, + "Tp (total) (s)": 12.8353 + }, + { + "Date+Time": "1979-12-16T00:00:00Z", + "Hs (total) (m)": 3.3502, + "Tp (total) (s)": 13.1703 + }, + { + "Date+Time": "1979-12-17T00:00:00Z", + "Hs (total) (m)": 6.7718, + "Tp (total) (s)": 15.1199 + }, + { + "Date+Time": "1979-12-18T00:00:00Z", + "Hs (total) (m)": 3.8644, + "Tp (total) (s)": 12.8765 + }, + { + "Date+Time": "1979-12-19T00:00:00Z", + "Hs (total) (m)": 2.8443, + "Tp (total) (s)": 12.8483 + }, + { + "Date+Time": "1979-12-20T00:00:00Z", + "Hs (total) (m)": 1.3657, + "Tp (total) (s)": 11.8931 + }, + { + "Date+Time": "1979-12-21T00:00:00Z", + "Hs (total) (m)": 0.8972, + "Tp (total) (s)": 10.5937 + }, + { + "Date+Time": "1979-12-22T00:00:00Z", + "Hs (total) (m)": 1.1116, + "Tp (total) (s)": 13.1085 + }, + { + "Date+Time": "1979-12-23T00:00:00Z", + "Hs (total) (m)": 2.4857, + "Tp (total) (s)": 11.4528 + }, + { + "Date+Time": "1979-12-24T00:00:00Z", + "Hs (total) (m)": 2.0997, + "Tp (total) (s)": 12.2394 + }, + { + "Date+Time": "1979-12-25T00:00:00Z", + "Hs (total) (m)": 2.6826, + "Tp (total) (s)": 12.5889 + }, + { + "Date+Time": "1979-12-26T00:00:00Z", + "Hs (total) (m)": 3.0007, + "Tp (total) (s)": 9.7385 + }, + { + "Date+Time": "1979-12-27T00:00:00Z", + "Hs (total) (m)": 1.8693, + "Tp (total) (s)": 9.8056 + }, + { + "Date+Time": "1979-12-28T00:00:00Z", + "Hs (total) (m)": 2.2515, + "Tp (total) (s)": 11.1476 + }, + { + "Date+Time": "1979-12-29T00:00:00Z", + "Hs (total) (m)": 2.7902, + "Tp (total) (s)": 10.0009 + }, + { + "Date+Time": "1979-12-30T00:00:00Z", + "Hs (total) (m)": 1.9471, + "Tp (total) (s)": 10.2695 + }, + { + "Date+Time": "1979-12-31T00:00:00Z", + "Hs (total) (m)": 1.0125, + "Tp (total) (s)": 9.5416 + }, + { + "Date+Time": "1980-01-01T00:00:00Z", + "Hs (total) (m)": 1.5137, + "Tp (total) (s)": 14.0973 + }, + { + "Date+Time": "1980-01-02T00:00:00Z", + "Hs (total) (m)": 1.9417, + "Tp (total) (s)": 13.1687 + }, + { + "Date+Time": "1980-01-03T00:00:00Z", + "Hs (total) (m)": 2.4422, + "Tp (total) (s)": 12.711 + }, + { + "Date+Time": "1980-01-04T00:00:00Z", + "Hs (total) (m)": 3.0725, + "Tp (total) (s)": 12.405 + }, + { + "Date+Time": "1980-01-05T00:00:00Z", + "Hs (total) (m)": 3.3914, + "Tp (total) (s)": 11.3361 + }, + { + "Date+Time": "1980-01-06T00:00:00Z", + "Hs (total) (m)": 2.131, + "Tp (total) (s)": 11.436 + }, + { + "Date+Time": "1980-01-07T00:00:00Z", + "Hs (total) (m)": 1.1917, + "Tp (total) (s)": 9.7293 + }, + { + "Date+Time": "1980-01-08T00:00:00Z", + "Hs (total) (m)": 2.7512, + "Tp (total) (s)": 15.7018 + }, + { + "Date+Time": "1980-01-09T00:00:00Z", + "Hs (total) (m)": 2.5933, + "Tp (total) (s)": 14.8412 + }, + { + "Date+Time": "1980-01-10T00:00:00Z", + "Hs (total) (m)": 2.6757, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "1980-01-11T00:00:00Z", + "Hs (total) (m)": 2.2515, + "Tp (total) (s)": 13.3015 + }, + { + "Date+Time": "1980-01-12T00:00:00Z", + "Hs (total) (m)": 2.2553, + "Tp (total) (s)": 12.9391 + }, + { + "Date+Time": "1980-01-13T00:00:00Z", + "Hs (total) (m)": 1.6259, + "Tp (total) (s)": 12.0556 + }, + { + "Date+Time": "1980-01-14T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 12.1487 + }, + { + "Date+Time": "1980-01-15T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 12.141 + }, + { + "Date+Time": "1980-01-16T00:00:00Z", + "Hs (total) (m)": 0.7157, + "Tp (total) (s)": 10.7227 + }, + { + "Date+Time": "1980-01-17T00:00:00Z", + "Hs (total) (m)": 0.5211, + "Tp (total) (s)": 12.4493 + }, + { + "Date+Time": "1980-01-18T00:00:00Z", + "Hs (total) (m)": 1.075, + "Tp (total) (s)": 11.7061 + }, + { + "Date+Time": "1980-01-19T00:00:00Z", + "Hs (total) (m)": 2.5666, + "Tp (total) (s)": 9.2189 + }, + { + "Date+Time": "1980-01-20T00:00:00Z", + "Hs (total) (m)": 1.8433, + "Tp (total) (s)": 13.5739 + }, + { + "Date+Time": "1980-01-21T00:00:00Z", + "Hs (total) (m)": 2.327, + "Tp (total) (s)": 12.8552 + }, + { + "Date+Time": "1980-01-22T00:00:00Z", + "Hs (total) (m)": 1.9173, + "Tp (total) (s)": 8.2514 + }, + { + "Date+Time": "1980-01-23T00:00:00Z", + "Hs (total) (m)": 2.044, + "Tp (total) (s)": 9.5515 + }, + { + "Date+Time": "1980-01-24T00:00:00Z", + "Hs (total) (m)": 1.1002, + "Tp (total) (s)": 12.64 + }, + { + "Date+Time": "1980-01-25T00:00:00Z", + "Hs (total) (m)": 1.0056, + "Tp (total) (s)": 12.3516 + }, + { + "Date+Time": "1980-01-26T00:00:00Z", + "Hs (total) (m)": 0.7164, + "Tp (total) (s)": 10.6578 + }, + { + "Date+Time": "1980-01-27T00:00:00Z", + "Hs (total) (m)": 1.0582, + "Tp (total) (s)": 9.238 + }, + { + "Date+Time": "1980-01-28T00:00:00Z", + "Hs (total) (m)": 1.7777, + "Tp (total) (s)": 6.0442 + }, + { + "Date+Time": "1980-01-29T00:00:00Z", + "Hs (total) (m)": 1.7785, + "Tp (total) (s)": 11.6268 + }, + { + "Date+Time": "1980-01-30T00:00:00Z", + "Hs (total) (m)": 2.5353, + "Tp (total) (s)": 13.9477 + }, + { + "Date+Time": "1980-01-31T00:00:00Z", + "Hs (total) (m)": 3.6302, + "Tp (total) (s)": 12.0273 + }, + { + "Date+Time": "1980-02-01T00:00:00Z", + "Hs (total) (m)": 1.78, + "Tp (total) (s)": 11.787 + }, + { + "Date+Time": "1980-02-02T00:00:00Z", + "Hs (total) (m)": 2.2492, + "Tp (total) (s)": 11.6771 + }, + { + "Date+Time": "1980-02-03T00:00:00Z", + "Hs (total) (m)": 3.4623, + "Tp (total) (s)": 15.1852 + }, + { + "Date+Time": "1980-02-04T00:00:00Z", + "Hs (total) (m)": 2.8779, + "Tp (total) (s)": 14.0698 + }, + { + "Date+Time": "1980-02-05T00:00:00Z", + "Hs (total) (m)": 3.148, + "Tp (total) (s)": 12.5156 + }, + { + "Date+Time": "1980-02-06T00:00:00Z", + "Hs (total) (m)": 4.6434, + "Tp (total) (s)": 16.5632 + }, + { + "Date+Time": "1980-02-07T00:00:00Z", + "Hs (total) (m)": 2.105, + "Tp (total) (s)": 13.8012 + }, + { + "Date+Time": "1980-02-08T00:00:00Z", + "Hs (total) (m)": 2.6994, + "Tp (total) (s)": 12.6789 + }, + { + "Date+Time": "1980-02-09T00:00:00Z", + "Hs (total) (m)": 4.2016, + "Tp (total) (s)": 15.2516 + }, + { + "Date+Time": "1980-02-10T00:00:00Z", + "Hs (total) (m)": 3.2998, + "Tp (total) (s)": 13.9767 + }, + { + "Date+Time": "1980-02-11T00:00:00Z", + "Hs (total) (m)": 2.4354, + "Tp (total) (s)": 12.2112 + }, + { + "Date+Time": "1980-02-12T00:00:00Z", + "Hs (total) (m)": 2.2019, + "Tp (total) (s)": 11.6932 + }, + { + "Date+Time": "1980-02-13T00:00:00Z", + "Hs (total) (m)": 3.0602, + "Tp (total) (s)": 12.4714 + }, + { + "Date+Time": "1980-02-14T00:00:00Z", + "Hs (total) (m)": 2.2423, + "Tp (total) (s)": 12.9513 + }, + { + "Date+Time": "1980-02-15T00:00:00Z", + "Hs (total) (m)": 3.5089, + "Tp (total) (s)": 17.2292 + }, + { + "Date+Time": "1980-02-16T00:00:00Z", + "Hs (total) (m)": 2.266, + "Tp (total) (s)": 14.2483 + }, + { + "Date+Time": "1980-02-17T00:00:00Z", + "Hs (total) (m)": 2.5224, + "Tp (total) (s)": 13.0955 + }, + { + "Date+Time": "1980-02-18T00:00:00Z", + "Hs (total) (m)": 3.4219, + "Tp (total) (s)": 12.3249 + }, + { + "Date+Time": "1980-02-19T00:00:00Z", + "Hs (total) (m)": 2.192, + "Tp (total) (s)": 12.3386 + }, + { + "Date+Time": "1980-02-20T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 11.2644 + }, + { + "Date+Time": "1980-02-21T00:00:00Z", + "Hs (total) (m)": 1.4023, + "Tp (total) (s)": 10.2718 + }, + { + "Date+Time": "1980-02-22T00:00:00Z", + "Hs (total) (m)": 2.1661, + "Tp (total) (s)": 11.7718 + }, + { + "Date+Time": "1980-02-23T00:00:00Z", + "Hs (total) (m)": 2.7841, + "Tp (total) (s)": 12.7407 + }, + { + "Date+Time": "1980-02-24T00:00:00Z", + "Hs (total) (m)": 2.0058, + "Tp (total) (s)": 13.2191 + }, + { + "Date+Time": "1980-02-25T00:00:00Z", + "Hs (total) (m)": 2.4789, + "Tp (total) (s)": 14.0934 + }, + { + "Date+Time": "1980-02-26T00:00:00Z", + "Hs (total) (m)": 2.7093, + "Tp (total) (s)": 14.7214 + }, + { + "Date+Time": "1980-02-27T00:00:00Z", + "Hs (total) (m)": 1.7663, + "Tp (total) (s)": 13.2481 + }, + { + "Date+Time": "1980-02-28T00:00:00Z", + "Hs (total) (m)": 1.6762, + "Tp (total) (s)": 13.2694 + }, + { + "Date+Time": "1980-02-29T00:00:00Z", + "Hs (total) (m)": 1.6083, + "Tp (total) (s)": 12.505 + }, + { + "Date+Time": "1980-03-01T00:00:00Z", + "Hs (total) (m)": 1.4313, + "Tp (total) (s)": 16.9164 + }, + { + "Date+Time": "1980-03-02T00:00:00Z", + "Hs (total) (m)": 1.8822, + "Tp (total) (s)": 14.6825 + }, + { + "Date+Time": "1980-03-03T00:00:00Z", + "Hs (total) (m)": 1.3802, + "Tp (total) (s)": 12.6766 + }, + { + "Date+Time": "1980-03-04T00:00:00Z", + "Hs (total) (m)": 0.9239, + "Tp (total) (s)": 11.5665 + }, + { + "Date+Time": "1980-03-05T00:00:00Z", + "Hs (total) (m)": 1.9761, + "Tp (total) (s)": 12.9391 + }, + { + "Date+Time": "1980-03-06T00:00:00Z", + "Hs (total) (m)": 3.5676, + "Tp (total) (s)": 12.3951 + }, + { + "Date+Time": "1980-03-07T00:00:00Z", + "Hs (total) (m)": 3.3753, + "Tp (total) (s)": 11.195 + }, + { + "Date+Time": "1980-03-08T00:00:00Z", + "Hs (total) (m)": 5.4068, + "Tp (total) (s)": 16.0398 + }, + { + "Date+Time": "1980-03-09T00:00:00Z", + "Hs (total) (m)": 2.3507, + "Tp (total) (s)": 12.5866 + }, + { + "Date+Time": "1980-03-10T00:00:00Z", + "Hs (total) (m)": 2.6795, + "Tp (total) (s)": 14.3666 + }, + { + "Date+Time": "1980-03-11T00:00:00Z", + "Hs (total) (m)": 2.3865, + "Tp (total) (s)": 14.1919 + }, + { + "Date+Time": "1980-03-12T00:00:00Z", + "Hs (total) (m)": 2.916, + "Tp (total) (s)": 12.6225 + }, + { + "Date+Time": "1980-03-13T00:00:00Z", + "Hs (total) (m)": 2.9473, + "Tp (total) (s)": 12.7064 + }, + { + "Date+Time": "1980-03-14T00:00:00Z", + "Hs (total) (m)": 2.8657, + "Tp (total) (s)": 14.7046 + }, + { + "Date+Time": "1980-03-15T00:00:00Z", + "Hs (total) (m)": 1.2856, + "Tp (total) (s)": 11.8435 + }, + { + "Date+Time": "1980-03-16T00:00:00Z", + "Hs (total) (m)": 1.7602, + "Tp (total) (s)": 10.2481 + }, + { + "Date+Time": "1980-03-17T00:00:00Z", + "Hs (total) (m)": 2.414, + "Tp (total) (s)": 15.0632 + }, + { + "Date+Time": "1980-03-18T00:00:00Z", + "Hs (total) (m)": 1.6327, + "Tp (total) (s)": 10.5564 + }, + { + "Date+Time": "1980-03-19T00:00:00Z", + "Hs (total) (m)": 0.9796, + "Tp (total) (s)": 3.6218 + }, + { + "Date+Time": "1980-03-20T00:00:00Z", + "Hs (total) (m)": 1.0269, + "Tp (total) (s)": 3.8095 + }, + { + "Date+Time": "1980-03-21T00:00:00Z", + "Hs (total) (m)": 0.7561, + "Tp (total) (s)": 14.7046 + }, + { + "Date+Time": "1980-03-22T00:00:00Z", + "Hs (total) (m)": 0.8354, + "Tp (total) (s)": 12.4065 + }, + { + "Date+Time": "1980-03-23T00:00:00Z", + "Hs (total) (m)": 0.6394, + "Tp (total) (s)": 12.7842 + }, + { + "Date+Time": "1980-03-24T00:00:00Z", + "Hs (total) (m)": 0.9148, + "Tp (total) (s)": 4.5602 + }, + { + "Date+Time": "1980-03-25T00:00:00Z", + "Hs (total) (m)": 1.7014, + "Tp (total) (s)": 5.5986 + }, + { + "Date+Time": "1980-03-26T00:00:00Z", + "Hs (total) (m)": 1.7037, + "Tp (total) (s)": 6.6706 + }, + { + "Date+Time": "1980-03-27T00:00:00Z", + "Hs (total) (m)": 1.7396, + "Tp (total) (s)": 7.7914 + }, + { + "Date+Time": "1980-03-28T00:00:00Z", + "Hs (total) (m)": 0.9842, + "Tp (total) (s)": 10.9027 + }, + { + "Date+Time": "1980-03-29T00:00:00Z", + "Hs (total) (m)": 2.1805, + "Tp (total) (s)": 11.5337 + }, + { + "Date+Time": "1980-03-30T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 11.4536 + }, + { + "Date+Time": "1980-03-31T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 9.5317 + }, + { + "Date+Time": "1980-04-01T00:00:00Z", + "Hs (total) (m)": 2.6727, + "Tp (total) (s)": 8.2469 + }, + { + "Date+Time": "1980-04-02T00:00:00Z", + "Hs (total) (m)": 1.7937, + "Tp (total) (s)": 9.3158 + }, + { + "Date+Time": "1980-04-03T00:00:00Z", + "Hs (total) (m)": 1.3474, + "Tp (total) (s)": 8.7336 + }, + { + "Date+Time": "1980-04-04T00:00:00Z", + "Hs (total) (m)": 0.9301, + "Tp (total) (s)": 11.0904 + }, + { + "Date+Time": "1980-04-05T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 11.2384 + }, + { + "Date+Time": "1980-04-06T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 12.2112 + }, + { + "Date+Time": "1980-04-07T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 10.5472 + }, + { + "Date+Time": "1980-04-08T00:00:00Z", + "Hs (total) (m)": 1.3276, + "Tp (total) (s)": 10.3092 + }, + { + "Date+Time": "1980-04-09T00:00:00Z", + "Hs (total) (m)": 1.0842, + "Tp (total) (s)": 8.8969 + }, + { + "Date+Time": "1980-04-10T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 7.9287 + }, + { + "Date+Time": "1980-04-11T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 12.5652 + }, + { + "Date+Time": "1980-04-12T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 11.3292 + }, + { + "Date+Time": "1980-04-13T00:00:00Z", + "Hs (total) (m)": 1.5534, + "Tp (total) (s)": 10.5831 + }, + { + "Date+Time": "1980-04-14T00:00:00Z", + "Hs (total) (m)": 1.8876, + "Tp (total) (s)": 12.6034 + }, + { + "Date+Time": "1980-04-15T00:00:00Z", + "Hs (total) (m)": 1.1429, + "Tp (total) (s)": 11.1827 + }, + { + "Date+Time": "1980-04-16T00:00:00Z", + "Hs (total) (m)": 0.7904, + "Tp (total) (s)": 9.415 + }, + { + "Date+Time": "1980-04-17T00:00:00Z", + "Hs (total) (m)": 1.3405, + "Tp (total) (s)": 10.0703 + }, + { + "Date+Time": "1980-04-18T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 9.6782 + }, + { + "Date+Time": "1980-04-19T00:00:00Z", + "Hs (total) (m)": 1.4222, + "Tp (total) (s)": 10.4793 + }, + { + "Date+Time": "1980-04-20T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 9.6156 + }, + { + "Date+Time": "1980-04-21T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 13.9264 + }, + { + "Date+Time": "1980-04-22T00:00:00Z", + "Hs (total) (m)": 0.7172, + "Tp (total) (s)": 11.71 + }, + { + "Date+Time": "1980-04-23T00:00:00Z", + "Hs (total) (m)": 0.7073, + "Tp (total) (s)": 10.361 + }, + { + "Date+Time": "1980-04-24T00:00:00Z", + "Hs (total) (m)": 0.5432, + "Tp (total) (s)": 9.6042 + }, + { + "Date+Time": "1980-04-25T00:00:00Z", + "Hs (total) (m)": 0.6073, + "Tp (total) (s)": 9.2082 + }, + { + "Date+Time": "1980-04-26T00:00:00Z", + "Hs (total) (m)": 0.557, + "Tp (total) (s)": 8.1362 + }, + { + "Date+Time": "1980-04-27T00:00:00Z", + "Hs (total) (m)": 1.0186, + "Tp (total) (s)": 12.4905 + }, + { + "Date+Time": "1980-04-28T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 11.4475 + }, + { + "Date+Time": "1980-04-29T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 10.4312 + }, + { + "Date+Time": "1980-04-30T00:00:00Z", + "Hs (total) (m)": 0.7736, + "Tp (total) (s)": 9.5233 + }, + { + "Date+Time": "1980-05-01T00:00:00Z", + "Hs (total) (m)": 0.6165, + "Tp (total) (s)": 9.0426 + }, + { + "Date+Time": "1980-05-02T00:00:00Z", + "Hs (total) (m)": 0.5013, + "Tp (total) (s)": 2.752 + }, + { + "Date+Time": "1980-05-03T00:00:00Z", + "Hs (total) (m)": 0.5165, + "Tp (total) (s)": 2.7482 + }, + { + "Date+Time": "1980-05-04T00:00:00Z", + "Hs (total) (m)": 0.5631, + "Tp (total) (s)": 3.2373 + }, + { + "Date+Time": "1980-05-05T00:00:00Z", + "Hs (total) (m)": 0.4746, + "Tp (total) (s)": 3.1892 + }, + { + "Date+Time": "1980-05-06T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 12.0151 + }, + { + "Date+Time": "1980-05-07T00:00:00Z", + "Hs (total) (m)": 0.6142, + "Tp (total) (s)": 10.4503 + }, + { + "Date+Time": "1980-05-08T00:00:00Z", + "Hs (total) (m)": 0.66, + "Tp (total) (s)": 8.7619 + }, + { + "Date+Time": "1980-05-09T00:00:00Z", + "Hs (total) (m)": 0.5829, + "Tp (total) (s)": 8.758 + }, + { + "Date+Time": "1980-05-10T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 6.2243 + }, + { + "Date+Time": "1980-05-11T00:00:00Z", + "Hs (total) (m)": 2.2431, + "Tp (total) (s)": 9.4142 + }, + { + "Date+Time": "1980-05-12T00:00:00Z", + "Hs (total) (m)": 1.8471, + "Tp (total) (s)": 9.7461 + }, + { + "Date+Time": "1980-05-13T00:00:00Z", + "Hs (total) (m)": 1.3688, + "Tp (total) (s)": 8.7863 + }, + { + "Date+Time": "1980-05-14T00:00:00Z", + "Hs (total) (m)": 0.8553, + "Tp (total) (s)": 9.18 + }, + { + "Date+Time": "1980-05-15T00:00:00Z", + "Hs (total) (m)": 1.2185, + "Tp (total) (s)": 9.4577 + }, + { + "Date+Time": "1980-05-16T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 9.1189 + }, + { + "Date+Time": "1980-05-17T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 8.5841 + }, + { + "Date+Time": "1980-05-18T00:00:00Z", + "Hs (total) (m)": 0.9583, + "Tp (total) (s)": 8.0668 + }, + { + "Date+Time": "1980-05-19T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 7.7616 + }, + { + "Date+Time": "1980-05-20T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 10.8417 + }, + { + "Date+Time": "1980-05-21T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 6.6431 + }, + { + "Date+Time": "1980-05-22T00:00:00Z", + "Hs (total) (m)": 0.6226, + "Tp (total) (s)": 7.0673 + }, + { + "Date+Time": "1980-05-23T00:00:00Z", + "Hs (total) (m)": 0.56, + "Tp (total) (s)": 7.3176 + }, + { + "Date+Time": "1980-05-24T00:00:00Z", + "Hs (total) (m)": 0.8354, + "Tp (total) (s)": 9.4897 + }, + { + "Date+Time": "1980-05-25T00:00:00Z", + "Hs (total) (m)": 0.7065, + "Tp (total) (s)": 8.5559 + }, + { + "Date+Time": "1980-05-26T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 5.8397 + }, + { + "Date+Time": "1980-05-27T00:00:00Z", + "Hs (total) (m)": 0.6485, + "Tp (total) (s)": 6.3387 + }, + { + "Date+Time": "1980-05-28T00:00:00Z", + "Hs (total) (m)": 0.795, + "Tp (total) (s)": 7.5098 + }, + { + "Date+Time": "1980-05-29T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 12.0556 + }, + { + "Date+Time": "1980-05-30T00:00:00Z", + "Hs (total) (m)": 0.6066, + "Tp (total) (s)": 11.4872 + }, + { + "Date+Time": "1980-05-31T00:00:00Z", + "Hs (total) (m)": 1.912, + "Tp (total) (s)": 10.2123 + }, + { + "Date+Time": "1980-06-01T00:00:00Z", + "Hs (total) (m)": 1.7937, + "Tp (total) (s)": 8.9343 + }, + { + "Date+Time": "1980-06-02T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 9.2555 + }, + { + "Date+Time": "1980-06-03T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 8.7123 + }, + { + "Date+Time": "1980-06-04T00:00:00Z", + "Hs (total) (m)": 1.8128, + "Tp (total) (s)": 8.4231 + }, + { + "Date+Time": "1980-06-05T00:00:00Z", + "Hs (total) (m)": 1.3848, + "Tp (total) (s)": 8.1675 + }, + { + "Date+Time": "1980-06-06T00:00:00Z", + "Hs (total) (m)": 1.5641, + "Tp (total) (s)": 7.2451 + }, + { + "Date+Time": "1980-06-07T00:00:00Z", + "Hs (total) (m)": 1.7434, + "Tp (total) (s)": 8.0309 + }, + { + "Date+Time": "1980-06-08T00:00:00Z", + "Hs (total) (m)": 0.766, + "Tp (total) (s)": 6.3753 + }, + { + "Date+Time": "1980-06-09T00:00:00Z", + "Hs (total) (m)": 0.6531, + "Tp (total) (s)": 9.1754 + }, + { + "Date+Time": "1980-06-10T00:00:00Z", + "Hs (total) (m)": 0.8019, + "Tp (total) (s)": 8.9724 + }, + { + "Date+Time": "1980-06-11T00:00:00Z", + "Hs (total) (m)": 0.5257, + "Tp (total) (s)": 8.4597 + }, + { + "Date+Time": "1980-06-12T00:00:00Z", + "Hs (total) (m)": 0.5234, + "Tp (total) (s)": 5.8245 + }, + { + "Date+Time": "1980-06-13T00:00:00Z", + "Hs (total) (m)": 0.4318, + "Tp (total) (s)": 2.266 + }, + { + "Date+Time": "1980-06-14T00:00:00Z", + "Hs (total) (m)": 0.8545, + "Tp (total) (s)": 3.4867 + }, + { + "Date+Time": "1980-06-15T00:00:00Z", + "Hs (total) (m)": 1.0537, + "Tp (total) (s)": 10.8249 + }, + { + "Date+Time": "1980-06-16T00:00:00Z", + "Hs (total) (m)": 1.2093, + "Tp (total) (s)": 9.7224 + }, + { + "Date+Time": "1980-06-17T00:00:00Z", + "Hs (total) (m)": 1.8685, + "Tp (total) (s)": 11.6596 + }, + { + "Date+Time": "1980-06-18T00:00:00Z", + "Hs (total) (m)": 1.6472, + "Tp (total) (s)": 8.8939 + }, + { + "Date+Time": "1980-06-19T00:00:00Z", + "Hs (total) (m)": 2.0409, + "Tp (total) (s)": 8.0142 + }, + { + "Date+Time": "1980-06-20T00:00:00Z", + "Hs (total) (m)": 3.8949, + "Tp (total) (s)": 12.6896 + }, + { + "Date+Time": "1980-06-21T00:00:00Z", + "Hs (total) (m)": 3.1167, + "Tp (total) (s)": 12.2745 + }, + { + "Date+Time": "1980-06-22T00:00:00Z", + "Hs (total) (m)": 2.0043, + "Tp (total) (s)": 10.2161 + }, + { + "Date+Time": "1980-06-23T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 9.1754 + }, + { + "Date+Time": "1980-06-24T00:00:00Z", + "Hs (total) (m)": 1.5938, + "Tp (total) (s)": 9.6767 + }, + { + "Date+Time": "1980-06-25T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 8.269 + }, + { + "Date+Time": "1980-06-26T00:00:00Z", + "Hs (total) (m)": 0.866, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "1980-06-27T00:00:00Z", + "Hs (total) (m)": 0.9033, + "Tp (total) (s)": 8.002 + }, + { + "Date+Time": "1980-06-28T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 6.3631 + }, + { + "Date+Time": "1980-06-29T00:00:00Z", + "Hs (total) (m)": 1.3161, + "Tp (total) (s)": 7.8166 + }, + { + "Date+Time": "1980-06-30T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 8.1149 + }, + { + "Date+Time": "1980-07-01T00:00:00Z", + "Hs (total) (m)": 0.9224, + "Tp (total) (s)": 6.505 + }, + { + "Date+Time": "1980-07-02T00:00:00Z", + "Hs (total) (m)": 0.5531, + "Tp (total) (s)": 7.0139 + }, + { + "Date+Time": "1980-07-03T00:00:00Z", + "Hs (total) (m)": 0.6836, + "Tp (total) (s)": 7.2504 + }, + { + "Date+Time": "1980-07-04T00:00:00Z", + "Hs (total) (m)": 1.4382, + "Tp (total) (s)": 9.6065 + }, + { + "Date+Time": "1980-07-05T00:00:00Z", + "Hs (total) (m)": 2.1508, + "Tp (total) (s)": 7.9798 + }, + { + "Date+Time": "1980-07-06T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 8.7397 + }, + { + "Date+Time": "1980-07-07T00:00:00Z", + "Hs (total) (m)": 0.8255, + "Tp (total) (s)": 8.0889 + }, + { + "Date+Time": "1980-07-08T00:00:00Z", + "Hs (total) (m)": 0.8667, + "Tp (total) (s)": 7.9371 + }, + { + "Date+Time": "1980-07-09T00:00:00Z", + "Hs (total) (m)": 0.969, + "Tp (total) (s)": 9.0442 + }, + { + "Date+Time": "1980-07-10T00:00:00Z", + "Hs (total) (m)": 0.8805, + "Tp (total) (s)": 5.8878 + }, + { + "Date+Time": "1980-07-11T00:00:00Z", + "Hs (total) (m)": 0.5898, + "Tp (total) (s)": 6.3097 + }, + { + "Date+Time": "1980-07-12T00:00:00Z", + "Hs (total) (m)": 1.3413, + "Tp (total) (s)": 10.3214 + }, + { + "Date+Time": "1980-07-13T00:00:00Z", + "Hs (total) (m)": 1.4611, + "Tp (total) (s)": 9.3951 + }, + { + "Date+Time": "1980-07-14T00:00:00Z", + "Hs (total) (m)": 0.7759, + "Tp (total) (s)": 8.3224 + }, + { + "Date+Time": "1980-07-15T00:00:00Z", + "Hs (total) (m)": 1.091, + "Tp (total) (s)": 7.9287 + }, + { + "Date+Time": "1980-07-16T00:00:00Z", + "Hs (total) (m)": 0.4685, + "Tp (total) (s)": 5.9282 + }, + { + "Date+Time": "1980-07-17T00:00:00Z", + "Hs (total) (m)": 0.8965, + "Tp (total) (s)": 9.4829 + }, + { + "Date+Time": "1980-07-18T00:00:00Z", + "Hs (total) (m)": 2.1264, + "Tp (total) (s)": 6.4325 + }, + { + "Date+Time": "1980-07-19T00:00:00Z", + "Hs (total) (m)": 2.0386, + "Tp (total) (s)": 8.652 + }, + { + "Date+Time": "1980-07-20T00:00:00Z", + "Hs (total) (m)": 1.7418, + "Tp (total) (s)": 8.3422 + }, + { + "Date+Time": "1980-07-21T00:00:00Z", + "Hs (total) (m)": 0.8255, + "Tp (total) (s)": 8.356 + }, + { + "Date+Time": "1980-07-22T00:00:00Z", + "Hs (total) (m)": 1.2375, + "Tp (total) (s)": 3.7309 + }, + { + "Date+Time": "1980-07-23T00:00:00Z", + "Hs (total) (m)": 1.9105, + "Tp (total) (s)": 6.3059 + }, + { + "Date+Time": "1980-07-24T00:00:00Z", + "Hs (total) (m)": 2.018, + "Tp (total) (s)": 8.6177 + }, + { + "Date+Time": "1980-07-25T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 8.7786 + }, + { + "Date+Time": "1980-07-26T00:00:00Z", + "Hs (total) (m)": 1.6449, + "Tp (total) (s)": 8.0607 + }, + { + "Date+Time": "1980-07-27T00:00:00Z", + "Hs (total) (m)": 0.795, + "Tp (total) (s)": 6.1563 + }, + { + "Date+Time": "1980-07-28T00:00:00Z", + "Hs (total) (m)": 0.444, + "Tp (total) (s)": 7.0231 + }, + { + "Date+Time": "1980-07-29T00:00:00Z", + "Hs (total) (m)": 0.7569, + "Tp (total) (s)": 7.8745 + }, + { + "Date+Time": "1980-07-30T00:00:00Z", + "Hs (total) (m)": 0.4845, + "Tp (total) (s)": 3.4349 + }, + { + "Date+Time": "1980-07-31T00:00:00Z", + "Hs (total) (m)": 1.1696, + "Tp (total) (s)": 10.4144 + }, + { + "Date+Time": "1980-08-01T00:00:00Z", + "Hs (total) (m)": 2.4667, + "Tp (total) (s)": 9.5477 + }, + { + "Date+Time": "1980-08-02T00:00:00Z", + "Hs (total) (m)": 1.6495, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "1980-08-03T00:00:00Z", + "Hs (total) (m)": 1.5381, + "Tp (total) (s)": 7.9592 + }, + { + "Date+Time": "1980-08-04T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 7.6464 + }, + { + "Date+Time": "1980-08-05T00:00:00Z", + "Hs (total) (m)": 1.3039, + "Tp (total) (s)": 7.2008 + }, + { + "Date+Time": "1980-08-06T00:00:00Z", + "Hs (total) (m)": 2.282, + "Tp (total) (s)": 9.17 + }, + { + "Date+Time": "1980-08-07T00:00:00Z", + "Hs (total) (m)": 1.1666, + "Tp (total) (s)": 8.4384 + }, + { + "Date+Time": "1980-08-08T00:00:00Z", + "Hs (total) (m)": 0.5837, + "Tp (total) (s)": 5.4041 + }, + { + "Date+Time": "1980-08-09T00:00:00Z", + "Hs (total) (m)": 0.325, + "Tp (total) (s)": 5.9053 + }, + { + "Date+Time": "1980-08-10T00:00:00Z", + "Hs (total) (m)": 0.7149, + "Tp (total) (s)": 8.314 + }, + { + "Date+Time": "1980-08-11T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 7.6685 + }, + { + "Date+Time": "1980-08-12T00:00:00Z", + "Hs (total) (m)": 2.0707, + "Tp (total) (s)": 10.6784 + }, + { + "Date+Time": "1980-08-13T00:00:00Z", + "Hs (total) (m)": 1.5343, + "Tp (total) (s)": 8.0248 + }, + { + "Date+Time": "1980-08-14T00:00:00Z", + "Hs (total) (m)": 1.5481, + "Tp (total) (s)": 7.7654 + }, + { + "Date+Time": "1980-08-15T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 8.5284 + }, + { + "Date+Time": "1980-08-16T00:00:00Z", + "Hs (total) (m)": 1.6152, + "Tp (total) (s)": 11.6749 + }, + { + "Date+Time": "1980-08-17T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 8.4056 + }, + { + "Date+Time": "1980-08-18T00:00:00Z", + "Hs (total) (m)": 2.8459, + "Tp (total) (s)": 8.8916 + }, + { + "Date+Time": "1980-08-19T00:00:00Z", + "Hs (total) (m)": 1.9723, + "Tp (total) (s)": 9.3272 + }, + { + "Date+Time": "1980-08-20T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 8.7527 + }, + { + "Date+Time": "1980-08-21T00:00:00Z", + "Hs (total) (m)": 2.0013, + "Tp (total) (s)": 7.0559 + }, + { + "Date+Time": "1980-08-22T00:00:00Z", + "Hs (total) (m)": 2.1302, + "Tp (total) (s)": 12.6041 + }, + { + "Date+Time": "1980-08-23T00:00:00Z", + "Hs (total) (m)": 1.2436, + "Tp (total) (s)": 9.9292 + }, + { + "Date+Time": "1980-08-24T00:00:00Z", + "Hs (total) (m)": 0.8446, + "Tp (total) (s)": 9.373 + }, + { + "Date+Time": "1980-08-25T00:00:00Z", + "Hs (total) (m)": 0.4517, + "Tp (total) (s)": 9.2601 + }, + { + "Date+Time": "1980-08-26T00:00:00Z", + "Hs (total) (m)": 0.4639, + "Tp (total) (s)": 8.7184 + }, + { + "Date+Time": "1980-08-27T00:00:00Z", + "Hs (total) (m)": 0.4463, + "Tp (total) (s)": 7.9318 + }, + { + "Date+Time": "1980-08-28T00:00:00Z", + "Hs (total) (m)": 0.8225, + "Tp (total) (s)": 4.0506 + }, + { + "Date+Time": "1980-08-29T00:00:00Z", + "Hs (total) (m)": 1.1635, + "Tp (total) (s)": 7.2932 + }, + { + "Date+Time": "1980-08-30T00:00:00Z", + "Hs (total) (m)": 1.4801, + "Tp (total) (s)": 10.4099 + }, + { + "Date+Time": "1980-08-31T00:00:00Z", + "Hs (total) (m)": 1.6045, + "Tp (total) (s)": 10.5129 + }, + { + "Date+Time": "1980-09-01T00:00:00Z", + "Hs (total) (m)": 1.3672, + "Tp (total) (s)": 9.4005 + }, + { + "Date+Time": "1980-09-02T00:00:00Z", + "Hs (total) (m)": 1.516, + "Tp (total) (s)": 9.257 + }, + { + "Date+Time": "1980-09-03T00:00:00Z", + "Hs (total) (m)": 2.0402, + "Tp (total) (s)": 11.4208 + }, + { + "Date+Time": "1980-09-04T00:00:00Z", + "Hs (total) (m)": 1.5481, + "Tp (total) (s)": 9.357 + }, + { + "Date+Time": "1980-09-05T00:00:00Z", + "Hs (total) (m)": 1.8754, + "Tp (total) (s)": 6.7095 + }, + { + "Date+Time": "1980-09-06T00:00:00Z", + "Hs (total) (m)": 1.8029, + "Tp (total) (s)": 9.032 + }, + { + "Date+Time": "1980-09-07T00:00:00Z", + "Hs (total) (m)": 2.3103, + "Tp (total) (s)": 8.8969 + }, + { + "Date+Time": "1980-09-08T00:00:00Z", + "Hs (total) (m)": 2.6986, + "Tp (total) (s)": 9.7942 + }, + { + "Date+Time": "1980-09-09T00:00:00Z", + "Hs (total) (m)": 2.1638, + "Tp (total) (s)": 11.3254 + }, + { + "Date+Time": "1980-09-10T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 8.5803 + }, + { + "Date+Time": "1980-09-11T00:00:00Z", + "Hs (total) (m)": 2.8169, + "Tp (total) (s)": 8.5208 + }, + { + "Date+Time": "1980-09-12T00:00:00Z", + "Hs (total) (m)": 2.9778, + "Tp (total) (s)": 12.7956 + }, + { + "Date+Time": "1980-09-13T00:00:00Z", + "Hs (total) (m)": 3.5936, + "Tp (total) (s)": 11.2751 + }, + { + "Date+Time": "1980-09-14T00:00:00Z", + "Hs (total) (m)": 2.5002, + "Tp (total) (s)": 9.8758 + }, + { + "Date+Time": "1980-09-15T00:00:00Z", + "Hs (total) (m)": 2.3789, + "Tp (total) (s)": 9.3341 + }, + { + "Date+Time": "1980-09-16T00:00:00Z", + "Hs (total) (m)": 1.9883, + "Tp (total) (s)": 8.6375 + }, + { + "Date+Time": "1980-09-17T00:00:00Z", + "Hs (total) (m)": 2.3347, + "Tp (total) (s)": 8.449 + }, + { + "Date+Time": "1980-09-18T00:00:00Z", + "Hs (total) (m)": 2.4209, + "Tp (total) (s)": 8.9198 + }, + { + "Date+Time": "1980-09-19T00:00:00Z", + "Hs (total) (m)": 2.6391, + "Tp (total) (s)": 11.594 + }, + { + "Date+Time": "1980-09-20T00:00:00Z", + "Hs (total) (m)": 3.8026, + "Tp (total) (s)": 14.3353 + }, + { + "Date+Time": "1980-09-21T00:00:00Z", + "Hs (total) (m)": 1.3985, + "Tp (total) (s)": 11.2537 + }, + { + "Date+Time": "1980-09-22T00:00:00Z", + "Hs (total) (m)": 0.8995, + "Tp (total) (s)": 7.7708 + }, + { + "Date+Time": "1980-09-23T00:00:00Z", + "Hs (total) (m)": 1.5534, + "Tp (total) (s)": 12.6881 + }, + { + "Date+Time": "1980-09-24T00:00:00Z", + "Hs (total) (m)": 2.1653, + "Tp (total) (s)": 14.1987 + }, + { + "Date+Time": "1980-09-25T00:00:00Z", + "Hs (total) (m)": 1.7724, + "Tp (total) (s)": 12.7216 + }, + { + "Date+Time": "1980-09-26T00:00:00Z", + "Hs (total) (m)": 2.0737, + "Tp (total) (s)": 12.4378 + }, + { + "Date+Time": "1980-09-27T00:00:00Z", + "Hs (total) (m)": 2.1195, + "Tp (total) (s)": 9.0533 + }, + { + "Date+Time": "1980-09-28T00:00:00Z", + "Hs (total) (m)": 1.8883, + "Tp (total) (s)": 11.6558 + }, + { + "Date+Time": "1980-09-29T00:00:00Z", + "Hs (total) (m)": 2.0875, + "Tp (total) (s)": 12.8712 + }, + { + "Date+Time": "1980-09-30T00:00:00Z", + "Hs (total) (m)": 2.5254, + "Tp (total) (s)": 12.2181 + }, + { + "Date+Time": "1980-10-01T00:00:00Z", + "Hs (total) (m)": 1.8448, + "Tp (total) (s)": 11.3697 + }, + { + "Date+Time": "1980-10-02T00:00:00Z", + "Hs (total) (m)": 2.2126, + "Tp (total) (s)": 10.5068 + }, + { + "Date+Time": "1980-10-03T00:00:00Z", + "Hs (total) (m)": 2.3492, + "Tp (total) (s)": 14.7481 + }, + { + "Date+Time": "1980-10-04T00:00:00Z", + "Hs (total) (m)": 2.4377, + "Tp (total) (s)": 11.9434 + }, + { + "Date+Time": "1980-10-05T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 11.4818 + }, + { + "Date+Time": "1980-10-06T00:00:00Z", + "Hs (total) (m)": 2.4262, + "Tp (total) (s)": 12.0533 + }, + { + "Date+Time": "1980-10-07T00:00:00Z", + "Hs (total) (m)": 3.0335, + "Tp (total) (s)": 11.0355 + }, + { + "Date+Time": "1980-10-08T00:00:00Z", + "Hs (total) (m)": 3.8347, + "Tp (total) (s)": 11.8648 + }, + { + "Date+Time": "1980-10-09T00:00:00Z", + "Hs (total) (m)": 2.768, + "Tp (total) (s)": 12.9124 + }, + { + "Date+Time": "1980-10-10T00:00:00Z", + "Hs (total) (m)": 1.5336, + "Tp (total) (s)": 11.0157 + }, + { + "Date+Time": "1980-10-11T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 12.8468 + }, + { + "Date+Time": "1980-10-12T00:00:00Z", + "Hs (total) (m)": 1.1834, + "Tp (total) (s)": 9.283 + }, + { + "Date+Time": "1980-10-13T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 9.5126 + }, + { + "Date+Time": "1980-10-14T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 8.8488 + }, + { + "Date+Time": "1980-10-15T00:00:00Z", + "Hs (total) (m)": 2.3408, + "Tp (total) (s)": 11.6237 + }, + { + "Date+Time": "1980-10-16T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 3.4051 + }, + { + "Date+Time": "1980-10-17T00:00:00Z", + "Hs (total) (m)": 1.1177, + "Tp (total) (s)": 3.9659 + }, + { + "Date+Time": "1980-10-18T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 8.3369 + }, + { + "Date+Time": "1980-10-19T00:00:00Z", + "Hs (total) (m)": 0.7752, + "Tp (total) (s)": 3.4227 + }, + { + "Date+Time": "1980-10-20T00:00:00Z", + "Hs (total) (m)": 1.2108, + "Tp (total) (s)": 5.8565 + }, + { + "Date+Time": "1980-10-21T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 7.6701 + }, + { + "Date+Time": "1980-10-22T00:00:00Z", + "Hs (total) (m)": 2.5063, + "Tp (total) (s)": 11.0668 + }, + { + "Date+Time": "1980-10-23T00:00:00Z", + "Hs (total) (m)": 1.9082, + "Tp (total) (s)": 10.2351 + }, + { + "Date+Time": "1980-10-24T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 9.0747 + }, + { + "Date+Time": "1980-10-25T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 8.8618 + }, + { + "Date+Time": "1980-10-26T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 10.0383 + }, + { + "Date+Time": "1980-10-27T00:00:00Z", + "Hs (total) (m)": 1.7472, + "Tp (total) (s)": 9.8003 + }, + { + "Date+Time": "1980-10-28T00:00:00Z", + "Hs (total) (m)": 2.7253, + "Tp (total) (s)": 13.6853 + }, + { + "Date+Time": "1980-10-29T00:00:00Z", + "Hs (total) (m)": 3.4021, + "Tp (total) (s)": 11.652 + }, + { + "Date+Time": "1980-10-30T00:00:00Z", + "Hs (total) (m)": 1.9822, + "Tp (total) (s)": 9.4378 + }, + { + "Date+Time": "1980-10-31T00:00:00Z", + "Hs (total) (m)": 1.0704, + "Tp (total) (s)": 9.415 + }, + { + "Date+Time": "1980-11-01T00:00:00Z", + "Hs (total) (m)": 1.867, + "Tp (total) (s)": 6.6103 + }, + { + "Date+Time": "1980-11-02T00:00:00Z", + "Hs (total) (m)": 3.2205, + "Tp (total) (s)": 12.2478 + }, + { + "Date+Time": "1980-11-03T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 12.2036 + }, + { + "Date+Time": "1980-11-04T00:00:00Z", + "Hs (total) (m)": 1.381, + "Tp (total) (s)": 12.7476 + }, + { + "Date+Time": "1980-11-05T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 10.4213 + }, + { + "Date+Time": "1980-11-06T00:00:00Z", + "Hs (total) (m)": 0.7248, + "Tp (total) (s)": 3.0488 + }, + { + "Date+Time": "1980-11-07T00:00:00Z", + "Hs (total) (m)": 0.7576, + "Tp (total) (s)": 3.3158 + }, + { + "Date+Time": "1980-11-08T00:00:00Z", + "Hs (total) (m)": 0.8065, + "Tp (total) (s)": 3.0923 + }, + { + "Date+Time": "1980-11-09T00:00:00Z", + "Hs (total) (m)": 0.6951, + "Tp (total) (s)": 3.1671 + }, + { + "Date+Time": "1980-11-10T00:00:00Z", + "Hs (total) (m)": 0.5074, + "Tp (total) (s)": 2.7734 + }, + { + "Date+Time": "1980-11-11T00:00:00Z", + "Hs (total) (m)": 0.4089, + "Tp (total) (s)": 12.5477 + }, + { + "Date+Time": "1980-11-12T00:00:00Z", + "Hs (total) (m)": 0.6241, + "Tp (total) (s)": 8.5437 + }, + { + "Date+Time": "1980-11-13T00:00:00Z", + "Hs (total) (m)": 0.8156, + "Tp (total) (s)": 3.6248 + }, + { + "Date+Time": "1980-11-14T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 9.2021 + }, + { + "Date+Time": "1980-11-15T00:00:00Z", + "Hs (total) (m)": 3.1419, + "Tp (total) (s)": 8.3285 + }, + { + "Date+Time": "1980-11-16T00:00:00Z", + "Hs (total) (m)": 3.019, + "Tp (total) (s)": 11.4658 + }, + { + "Date+Time": "1980-11-17T00:00:00Z", + "Hs (total) (m)": 3.0023, + "Tp (total) (s)": 12.2066 + }, + { + "Date+Time": "1980-11-18T00:00:00Z", + "Hs (total) (m)": 3.4486, + "Tp (total) (s)": 11.0401 + }, + { + "Date+Time": "1980-11-19T00:00:00Z", + "Hs (total) (m)": 2.5903, + "Tp (total) (s)": 11.7222 + }, + { + "Date+Time": "1980-11-20T00:00:00Z", + "Hs (total) (m)": 3.2983, + "Tp (total) (s)": 12.6881 + }, + { + "Date+Time": "1980-11-21T00:00:00Z", + "Hs (total) (m)": 3.338, + "Tp (total) (s)": 11.6749 + }, + { + "Date+Time": "1980-11-22T00:00:00Z", + "Hs (total) (m)": 3.7309, + "Tp (total) (s)": 12.9849 + }, + { + "Date+Time": "1980-11-23T00:00:00Z", + "Hs (total) (m)": 3.5844, + "Tp (total) (s)": 11.3163 + }, + { + "Date+Time": "1980-11-24T00:00:00Z", + "Hs (total) (m)": 3.769, + "Tp (total) (s)": 15.144 + }, + { + "Date+Time": "1980-11-25T00:00:00Z", + "Hs (total) (m)": 2.6246, + "Tp (total) (s)": 12.1845 + }, + { + "Date+Time": "1980-11-26T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 10.152 + }, + { + "Date+Time": "1980-11-27T00:00:00Z", + "Hs (total) (m)": 1.3855, + "Tp (total) (s)": 7.7303 + }, + { + "Date+Time": "1980-11-28T00:00:00Z", + "Hs (total) (m)": 2.1737, + "Tp (total) (s)": 9.7995 + }, + { + "Date+Time": "1980-11-29T00:00:00Z", + "Hs (total) (m)": 1.1681, + "Tp (total) (s)": 10.2336 + }, + { + "Date+Time": "1980-11-30T00:00:00Z", + "Hs (total) (m)": 0.9957, + "Tp (total) (s)": 10.3229 + }, + { + "Date+Time": "1980-12-01T00:00:00Z", + "Hs (total) (m)": 1.3749, + "Tp (total) (s)": 10.6357 + }, + { + "Date+Time": "1980-12-02T00:00:00Z", + "Hs (total) (m)": 2.2019, + "Tp (total) (s)": 10.4984 + }, + { + "Date+Time": "1980-12-03T00:00:00Z", + "Hs (total) (m)": 2.2584, + "Tp (total) (s)": 13.6715 + }, + { + "Date+Time": "1980-12-04T00:00:00Z", + "Hs (total) (m)": 0.7927, + "Tp (total) (s)": 10.8745 + }, + { + "Date+Time": "1980-12-05T00:00:00Z", + "Hs (total) (m)": 0.8637, + "Tp (total) (s)": 7.8043 + }, + { + "Date+Time": "1980-12-06T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 7.8646 + }, + { + "Date+Time": "1980-12-07T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 11.3826 + }, + { + "Date+Time": "1980-12-08T00:00:00Z", + "Hs (total) (m)": 0.4997, + "Tp (total) (s)": 9.9528 + }, + { + "Date+Time": "1980-12-09T00:00:00Z", + "Hs (total) (m)": 1.6282, + "Tp (total) (s)": 10.4091 + }, + { + "Date+Time": "1980-12-10T00:00:00Z", + "Hs (total) (m)": 2.8275, + "Tp (total) (s)": 8.5215 + }, + { + "Date+Time": "1980-12-11T00:00:00Z", + "Hs (total) (m)": 4.0864, + "Tp (total) (s)": 11.9663 + }, + { + "Date+Time": "1980-12-12T00:00:00Z", + "Hs (total) (m)": 2.546, + "Tp (total) (s)": 11.2972 + }, + { + "Date+Time": "1980-12-13T00:00:00Z", + "Hs (total) (m)": 2.7894, + "Tp (total) (s)": 10.3832 + }, + { + "Date+Time": "1980-12-14T00:00:00Z", + "Hs (total) (m)": 2.8123, + "Tp (total) (s)": 10.7318 + }, + { + "Date+Time": "1980-12-15T00:00:00Z", + "Hs (total) (m)": 3.6981, + "Tp (total) (s)": 11.2033 + }, + { + "Date+Time": "1980-12-16T00:00:00Z", + "Hs (total) (m)": 3.5623, + "Tp (total) (s)": 13.1123 + }, + { + "Date+Time": "1980-12-17T00:00:00Z", + "Hs (total) (m)": 2.7001, + "Tp (total) (s)": 13.4266 + }, + { + "Date+Time": "1980-12-18T00:00:00Z", + "Hs (total) (m)": 3.3883, + "Tp (total) (s)": 11.3956 + }, + { + "Date+Time": "1980-12-19T00:00:00Z", + "Hs (total) (m)": 4.8212, + "Tp (total) (s)": 15.112 + }, + { + "Date+Time": "1980-12-20T00:00:00Z", + "Hs (total) (m)": 3.7645, + "Tp (total) (s)": 13.9615 + }, + { + "Date+Time": "1980-12-21T00:00:00Z", + "Hs (total) (m)": 4.6915, + "Tp (total) (s)": 15.2944 + }, + { + "Date+Time": "1980-12-22T00:00:00Z", + "Hs (total) (m)": 2.3774, + "Tp (total) (s)": 11.8053 + }, + { + "Date+Time": "1980-12-23T00:00:00Z", + "Hs (total) (m)": 2.5262, + "Tp (total) (s)": 11.3124 + }, + { + "Date+Time": "1980-12-24T00:00:00Z", + "Hs (total) (m)": 3.0656, + "Tp (total) (s)": 14.1224 + }, + { + "Date+Time": "1980-12-25T00:00:00Z", + "Hs (total) (m)": 3.1816, + "Tp (total) (s)": 11.3659 + }, + { + "Date+Time": "1980-12-26T00:00:00Z", + "Hs (total) (m)": 3.2311, + "Tp (total) (s)": 11.813 + }, + { + "Date+Time": "1980-12-27T00:00:00Z", + "Hs (total) (m)": 2.8886, + "Tp (total) (s)": 12.0037 + }, + { + "Date+Time": "1980-12-28T00:00:00Z", + "Hs (total) (m)": 2.327, + "Tp (total) (s)": 11.671 + }, + { + "Date+Time": "1980-12-29T00:00:00Z", + "Hs (total) (m)": 2.3804, + "Tp (total) (s)": 12.5103 + }, + { + "Date+Time": "1980-12-30T00:00:00Z", + "Hs (total) (m)": 3.193, + "Tp (total) (s)": 17.0042 + }, + { + "Date+Time": "1980-12-31T00:00:00Z", + "Hs (total) (m)": 3.3494, + "Tp (total) (s)": 13.7921 + }, + { + "Date+Time": "1981-01-01T00:00:00Z", + "Hs (total) (m)": 3.7767, + "Tp (total) (s)": 14.6527 + }, + { + "Date+Time": "1981-01-02T00:00:00Z", + "Hs (total) (m)": 3.367, + "Tp (total) (s)": 14.0629 + }, + { + "Date+Time": "1981-01-03T00:00:00Z", + "Hs (total) (m)": 3.7584, + "Tp (total) (s)": 11.8938 + }, + { + "Date+Time": "1981-01-04T00:00:00Z", + "Hs (total) (m)": 2.1874, + "Tp (total) (s)": 11.7534 + }, + { + "Date+Time": "1981-01-05T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 10.7784 + }, + { + "Date+Time": "1981-01-06T00:00:00Z", + "Hs (total) (m)": 1.6396, + "Tp (total) (s)": 9.8857 + }, + { + "Date+Time": "1981-01-07T00:00:00Z", + "Hs (total) (m)": 1.7304, + "Tp (total) (s)": 13.1062 + }, + { + "Date+Time": "1981-01-08T00:00:00Z", + "Hs (total) (m)": 1.4199, + "Tp (total) (s)": 12.2883 + }, + { + "Date+Time": "1981-01-09T00:00:00Z", + "Hs (total) (m)": 2.8108, + "Tp (total) (s)": 12.8262 + }, + { + "Date+Time": "1981-01-10T00:00:00Z", + "Hs (total) (m)": 1.8464, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "1981-01-11T00:00:00Z", + "Hs (total) (m)": 1.1643, + "Tp (total) (s)": 10.8028 + }, + { + "Date+Time": "1981-01-12T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 8.6795 + }, + { + "Date+Time": "1981-01-13T00:00:00Z", + "Hs (total) (m)": 2.2736, + "Tp (total) (s)": 13.6547 + }, + { + "Date+Time": "1981-01-14T00:00:00Z", + "Hs (total) (m)": 2.6322, + "Tp (total) (s)": 11.1469 + }, + { + "Date+Time": "1981-01-15T00:00:00Z", + "Hs (total) (m)": 3.1571, + "Tp (total) (s)": 12.299 + }, + { + "Date+Time": "1981-01-16T00:00:00Z", + "Hs (total) (m)": 2.2156, + "Tp (total) (s)": 12.154 + }, + { + "Date+Time": "1981-01-17T00:00:00Z", + "Hs (total) (m)": 5.2608, + "Tp (total) (s)": 13.4635 + }, + { + "Date+Time": "1981-01-18T00:00:00Z", + "Hs (total) (m)": 2.7161, + "Tp (total) (s)": 12.6194 + }, + { + "Date+Time": "1981-01-19T00:00:00Z", + "Hs (total) (m)": 3.3738, + "Tp (total) (s)": 12.3264 + }, + { + "Date+Time": "1981-01-20T00:00:00Z", + "Hs (total) (m)": 1.9814, + "Tp (total) (s)": 11.5574 + }, + { + "Date+Time": "1981-01-21T00:00:00Z", + "Hs (total) (m)": 2.3515, + "Tp (total) (s)": 11.0454 + }, + { + "Date+Time": "1981-01-22T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 13.5838 + }, + { + "Date+Time": "1981-01-23T00:00:00Z", + "Hs (total) (m)": 1.9829, + "Tp (total) (s)": 12.3516 + }, + { + "Date+Time": "1981-01-24T00:00:00Z", + "Hs (total) (m)": 2.8069, + "Tp (total) (s)": 11.4795 + }, + { + "Date+Time": "1981-01-25T00:00:00Z", + "Hs (total) (m)": 1.8517, + "Tp (total) (s)": 10.5861 + }, + { + "Date+Time": "1981-01-26T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 10.7173 + }, + { + "Date+Time": "1981-01-27T00:00:00Z", + "Hs (total) (m)": 1.2909, + "Tp (total) (s)": 10.1428 + }, + { + "Date+Time": "1981-01-28T00:00:00Z", + "Hs (total) (m)": 1.8731, + "Tp (total) (s)": 8.89 + }, + { + "Date+Time": "1981-01-29T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 11.6565 + }, + { + "Date+Time": "1981-01-30T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 10.2397 + }, + { + "Date+Time": "1981-01-31T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 9.5134 + }, + { + "Date+Time": "1981-02-01T00:00:00Z", + "Hs (total) (m)": 1.4039, + "Tp (total) (s)": 8.7168 + }, + { + "Date+Time": "1981-02-02T00:00:00Z", + "Hs (total) (m)": 3.1449, + "Tp (total) (s)": 11.951 + }, + { + "Date+Time": "1981-02-03T00:00:00Z", + "Hs (total) (m)": 3.8217, + "Tp (total) (s)": 11.4917 + }, + { + "Date+Time": "1981-02-04T00:00:00Z", + "Hs (total) (m)": 3.0389, + "Tp (total) (s)": 11.7618 + }, + { + "Date+Time": "1981-02-05T00:00:00Z", + "Hs (total) (m)": 2.3629, + "Tp (total) (s)": 11.6398 + }, + { + "Date+Time": "1981-02-06T00:00:00Z", + "Hs (total) (m)": 2.3606, + "Tp (total) (s)": 11.1042 + }, + { + "Date+Time": "1981-02-07T00:00:00Z", + "Hs (total) (m)": 2.8352, + "Tp (total) (s)": 13.1809 + }, + { + "Date+Time": "1981-02-08T00:00:00Z", + "Hs (total) (m)": 3.0709, + "Tp (total) (s)": 12.8742 + }, + { + "Date+Time": "1981-02-09T00:00:00Z", + "Hs (total) (m)": 2.0066, + "Tp (total) (s)": 11.7855 + }, + { + "Date+Time": "1981-02-10T00:00:00Z", + "Hs (total) (m)": 1.4107, + "Tp (total) (s)": 10.3717 + }, + { + "Date+Time": "1981-02-11T00:00:00Z", + "Hs (total) (m)": 1.2375, + "Tp (total) (s)": 10.5579 + }, + { + "Date+Time": "1981-02-12T00:00:00Z", + "Hs (total) (m)": 2.8733, + "Tp (total) (s)": 10.4968 + }, + { + "Date+Time": "1981-02-13T00:00:00Z", + "Hs (total) (m)": 3.1686, + "Tp (total) (s)": 16.6959 + }, + { + "Date+Time": "1981-02-14T00:00:00Z", + "Hs (total) (m)": 2.5025, + "Tp (total) (s)": 15.3569 + }, + { + "Date+Time": "1981-02-15T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 11.7672 + }, + { + "Date+Time": "1981-02-16T00:00:00Z", + "Hs (total) (m)": 2.2584, + "Tp (total) (s)": 15.92 + }, + { + "Date+Time": "1981-02-17T00:00:00Z", + "Hs (total) (m)": 2.3118, + "Tp (total) (s)": 13.8455 + }, + { + "Date+Time": "1981-02-18T00:00:00Z", + "Hs (total) (m)": 2.839, + "Tp (total) (s)": 12.1151 + }, + { + "Date+Time": "1981-02-19T00:00:00Z", + "Hs (total) (m)": 2.0463, + "Tp (total) (s)": 11.7481 + }, + { + "Date+Time": "1981-02-20T00:00:00Z", + "Hs (total) (m)": 1.6572, + "Tp (total) (s)": 11.2217 + }, + { + "Date+Time": "1981-02-21T00:00:00Z", + "Hs (total) (m)": 2.1348, + "Tp (total) (s)": 9.772 + }, + { + "Date+Time": "1981-02-22T00:00:00Z", + "Hs (total) (m)": 2.0516, + "Tp (total) (s)": 10.342 + }, + { + "Date+Time": "1981-02-23T00:00:00Z", + "Hs (total) (m)": 1.5114, + "Tp (total) (s)": 11.5131 + }, + { + "Date+Time": "1981-02-24T00:00:00Z", + "Hs (total) (m)": 0.9346, + "Tp (total) (s)": 9.8308 + }, + { + "Date+Time": "1981-02-25T00:00:00Z", + "Hs (total) (m)": 2.1668, + "Tp (total) (s)": 8.0416 + }, + { + "Date+Time": "1981-02-26T00:00:00Z", + "Hs (total) (m)": 2.443, + "Tp (total) (s)": 10.2237 + }, + { + "Date+Time": "1981-02-27T00:00:00Z", + "Hs (total) (m)": 2.6093, + "Tp (total) (s)": 11.1644 + }, + { + "Date+Time": "1981-02-28T00:00:00Z", + "Hs (total) (m)": 2.105, + "Tp (total) (s)": 6.3105 + }, + { + "Date+Time": "1981-03-01T00:00:00Z", + "Hs (total) (m)": 2.4606, + "Tp (total) (s)": 13.1436 + }, + { + "Date+Time": "1981-03-02T00:00:00Z", + "Hs (total) (m)": 1.1719, + "Tp (total) (s)": 10.6708 + }, + { + "Date+Time": "1981-03-03T00:00:00Z", + "Hs (total) (m)": 0.8805, + "Tp (total) (s)": 3.4234 + }, + { + "Date+Time": "1981-03-04T00:00:00Z", + "Hs (total) (m)": 0.766, + "Tp (total) (s)": 12.8529 + }, + { + "Date+Time": "1981-03-05T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 11.2026 + }, + { + "Date+Time": "1981-03-06T00:00:00Z", + "Hs (total) (m)": 1.6221, + "Tp (total) (s)": 9.9345 + }, + { + "Date+Time": "1981-03-07T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 9.621 + }, + { + "Date+Time": "1981-03-08T00:00:00Z", + "Hs (total) (m)": 3.6042, + "Tp (total) (s)": 10.2649 + }, + { + "Date+Time": "1981-03-09T00:00:00Z", + "Hs (total) (m)": 2.2713, + "Tp (total) (s)": 11.774 + }, + { + "Date+Time": "1981-03-10T00:00:00Z", + "Hs (total) (m)": 2.3873, + "Tp (total) (s)": 11.0935 + }, + { + "Date+Time": "1981-03-11T00:00:00Z", + "Hs (total) (m)": 2.5842, + "Tp (total) (s)": 11.3582 + }, + { + "Date+Time": "1981-03-12T00:00:00Z", + "Hs (total) (m)": 2.4506, + "Tp (total) (s)": 12.4622 + }, + { + "Date+Time": "1981-03-13T00:00:00Z", + "Hs (total) (m)": 3.1816, + "Tp (total) (s)": 14.0469 + }, + { + "Date+Time": "1981-03-14T00:00:00Z", + "Hs (total) (m)": 2.8771, + "Tp (total) (s)": 11.3765 + }, + { + "Date+Time": "1981-03-15T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 10.4244 + }, + { + "Date+Time": "1981-03-16T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 9.3951 + }, + { + "Date+Time": "1981-03-17T00:00:00Z", + "Hs (total) (m)": 2.2584, + "Tp (total) (s)": 16.393 + }, + { + "Date+Time": "1981-03-18T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 12.9337 + }, + { + "Date+Time": "1981-03-19T00:00:00Z", + "Hs (total) (m)": 2.8832, + "Tp (total) (s)": 8.3003 + }, + { + "Date+Time": "1981-03-20T00:00:00Z", + "Hs (total) (m)": 2.0295, + "Tp (total) (s)": 13.9798 + }, + { + "Date+Time": "1981-03-21T00:00:00Z", + "Hs (total) (m)": 1.4359, + "Tp (total) (s)": 11.4582 + }, + { + "Date+Time": "1981-03-22T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 11.8542 + }, + { + "Date+Time": "1981-03-23T00:00:00Z", + "Hs (total) (m)": 2.5231, + "Tp (total) (s)": 12.7407 + }, + { + "Date+Time": "1981-03-24T00:00:00Z", + "Hs (total) (m)": 3.7439, + "Tp (total) (s)": 11.4513 + }, + { + "Date+Time": "1981-03-25T00:00:00Z", + "Hs (total) (m)": 2.6658, + "Tp (total) (s)": 11.1858 + }, + { + "Date+Time": "1981-03-26T00:00:00Z", + "Hs (total) (m)": 3.106, + "Tp (total) (s)": 12.6881 + }, + { + "Date+Time": "1981-03-27T00:00:00Z", + "Hs (total) (m)": 3.3998, + "Tp (total) (s)": 13.7143 + }, + { + "Date+Time": "1981-03-28T00:00:00Z", + "Hs (total) (m)": 3.3311, + "Tp (total) (s)": 12.4516 + }, + { + "Date+Time": "1981-03-29T00:00:00Z", + "Hs (total) (m)": 2.4392, + "Tp (total) (s)": 11.1202 + }, + { + "Date+Time": "1981-03-30T00:00:00Z", + "Hs (total) (m)": 1.9234, + "Tp (total) (s)": 11.8503 + }, + { + "Date+Time": "1981-03-31T00:00:00Z", + "Hs (total) (m)": 2.0318, + "Tp (total) (s)": 12.4165 + }, + { + "Date+Time": "1981-04-01T00:00:00Z", + "Hs (total) (m)": 2.765, + "Tp (total) (s)": 12.6141 + }, + { + "Date+Time": "1981-04-02T00:00:00Z", + "Hs (total) (m)": 1.8525, + "Tp (total) (s)": 11.4864 + }, + { + "Date+Time": "1981-04-03T00:00:00Z", + "Hs (total) (m)": 1.4924, + "Tp (total) (s)": 11.5131 + }, + { + "Date+Time": "1981-04-04T00:00:00Z", + "Hs (total) (m)": 1.9616, + "Tp (total) (s)": 14.4093 + }, + { + "Date+Time": "1981-04-05T00:00:00Z", + "Hs (total) (m)": 1.4969, + "Tp (total) (s)": 12.6209 + }, + { + "Date+Time": "1981-04-06T00:00:00Z", + "Hs (total) (m)": 1.0109, + "Tp (total) (s)": 10.9188 + }, + { + "Date+Time": "1981-04-07T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 10.4373 + }, + { + "Date+Time": "1981-04-08T00:00:00Z", + "Hs (total) (m)": 0.8866, + "Tp (total) (s)": 10.4114 + }, + { + "Date+Time": "1981-04-09T00:00:00Z", + "Hs (total) (m)": 0.9743, + "Tp (total) (s)": 12.3249 + }, + { + "Date+Time": "1981-04-10T00:00:00Z", + "Hs (total) (m)": 1.0796, + "Tp (total) (s)": 10.3893 + }, + { + "Date+Time": "1981-04-11T00:00:00Z", + "Hs (total) (m)": 1.0033, + "Tp (total) (s)": 11.6543 + }, + { + "Date+Time": "1981-04-12T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 9.5561 + }, + { + "Date+Time": "1981-04-13T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 9.4745 + }, + { + "Date+Time": "1981-04-14T00:00:00Z", + "Hs (total) (m)": 0.8614, + "Tp (total) (s)": 3.1243 + }, + { + "Date+Time": "1981-04-15T00:00:00Z", + "Hs (total) (m)": 0.8927, + "Tp (total) (s)": 11.2743 + }, + { + "Date+Time": "1981-04-16T00:00:00Z", + "Hs (total) (m)": 1.059, + "Tp (total) (s)": 11.5398 + }, + { + "Date+Time": "1981-04-17T00:00:00Z", + "Hs (total) (m)": 0.9873, + "Tp (total) (s)": 10.683 + }, + { + "Date+Time": "1981-04-18T00:00:00Z", + "Hs (total) (m)": 0.9186, + "Tp (total) (s)": 9.9658 + }, + { + "Date+Time": "1981-04-19T00:00:00Z", + "Hs (total) (m)": 0.7668, + "Tp (total) (s)": 8.8641 + }, + { + "Date+Time": "1981-04-20T00:00:00Z", + "Hs (total) (m)": 0.4906, + "Tp (total) (s)": 11.6192 + }, + { + "Date+Time": "1981-04-21T00:00:00Z", + "Hs (total) (m)": 0.5203, + "Tp (total) (s)": 10.4305 + }, + { + "Date+Time": "1981-04-22T00:00:00Z", + "Hs (total) (m)": 0.5539, + "Tp (total) (s)": 3.0862 + }, + { + "Date+Time": "1981-04-23T00:00:00Z", + "Hs (total) (m)": 1.0193, + "Tp (total) (s)": 11.6649 + }, + { + "Date+Time": "1981-04-24T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 10.9432 + }, + { + "Date+Time": "1981-04-25T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 6.6111 + }, + { + "Date+Time": "1981-04-26T00:00:00Z", + "Hs (total) (m)": 1.0094, + "Tp (total) (s)": 3.8064 + }, + { + "Date+Time": "1981-04-27T00:00:00Z", + "Hs (total) (m)": 0.8415, + "Tp (total) (s)": 3.0702 + }, + { + "Date+Time": "1981-04-28T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 11.639 + }, + { + "Date+Time": "1981-04-29T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 6.6027 + }, + { + "Date+Time": "1981-04-30T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 11.6482 + }, + { + "Date+Time": "1981-05-01T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 8.2957 + }, + { + "Date+Time": "1981-05-02T00:00:00Z", + "Hs (total) (m)": 0.6859, + "Tp (total) (s)": 10.1451 + }, + { + "Date+Time": "1981-05-03T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 9.3303 + }, + { + "Date+Time": "1981-05-04T00:00:00Z", + "Hs (total) (m)": 3.0175, + "Tp (total) (s)": 11.6504 + }, + { + "Date+Time": "1981-05-05T00:00:00Z", + "Hs (total) (m)": 1.6106, + "Tp (total) (s)": 11.5497 + }, + { + "Date+Time": "1981-05-06T00:00:00Z", + "Hs (total) (m)": 1.989, + "Tp (total) (s)": 9.1067 + }, + { + "Date+Time": "1981-05-07T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 8.861 + }, + { + "Date+Time": "1981-05-08T00:00:00Z", + "Hs (total) (m)": 0.8438, + "Tp (total) (s)": 8.768 + }, + { + "Date+Time": "1981-05-09T00:00:00Z", + "Hs (total) (m)": 0.94, + "Tp (total) (s)": 10.5922 + }, + { + "Date+Time": "1981-05-10T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 11.1316 + }, + { + "Date+Time": "1981-05-11T00:00:00Z", + "Hs (total) (m)": 0.9003, + "Tp (total) (s)": 3.1434 + }, + { + "Date+Time": "1981-05-12T00:00:00Z", + "Hs (total) (m)": 0.5135, + "Tp (total) (s)": 9.3631 + }, + { + "Date+Time": "1981-05-13T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 9.3844 + }, + { + "Date+Time": "1981-05-14T00:00:00Z", + "Hs (total) (m)": 1.2589, + "Tp (total) (s)": 12.9398 + }, + { + "Date+Time": "1981-05-15T00:00:00Z", + "Hs (total) (m)": 2.5216, + "Tp (total) (s)": 11.784 + }, + { + "Date+Time": "1981-05-16T00:00:00Z", + "Hs (total) (m)": 2.0066, + "Tp (total) (s)": 9.7133 + }, + { + "Date+Time": "1981-05-17T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 9.7468 + }, + { + "Date+Time": "1981-05-18T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 7.8516 + }, + { + "Date+Time": "1981-05-19T00:00:00Z", + "Hs (total) (m)": 1.0903, + "Tp (total) (s)": 7.075 + }, + { + "Date+Time": "1981-05-20T00:00:00Z", + "Hs (total) (m)": 1.1353, + "Tp (total) (s)": 8.3773 + }, + { + "Date+Time": "1981-05-21T00:00:00Z", + "Hs (total) (m)": 0.9186, + "Tp (total) (s)": 7.5922 + }, + { + "Date+Time": "1981-05-22T00:00:00Z", + "Hs (total) (m)": 0.7622, + "Tp (total) (s)": 7.1207 + }, + { + "Date+Time": "1981-05-23T00:00:00Z", + "Hs (total) (m)": 1.4412, + "Tp (total) (s)": 5.8321 + }, + { + "Date+Time": "1981-05-24T00:00:00Z", + "Hs (total) (m)": 3.9254, + "Tp (total) (s)": 11.2201 + }, + { + "Date+Time": "1981-05-25T00:00:00Z", + "Hs (total) (m)": 1.8685, + "Tp (total) (s)": 10.0085 + }, + { + "Date+Time": "1981-05-26T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 10.2229 + }, + { + "Date+Time": "1981-05-27T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 8.8603 + }, + { + "Date+Time": "1981-05-28T00:00:00Z", + "Hs (total) (m)": 0.988, + "Tp (total) (s)": 7.7166 + }, + { + "Date+Time": "1981-05-29T00:00:00Z", + "Hs (total) (m)": 1.0208, + "Tp (total) (s)": 11.6779 + }, + { + "Date+Time": "1981-05-30T00:00:00Z", + "Hs (total) (m)": 1.5191, + "Tp (total) (s)": 11.5169 + }, + { + "Date+Time": "1981-05-31T00:00:00Z", + "Hs (total) (m)": 1.5549, + "Tp (total) (s)": 10.435 + }, + { + "Date+Time": "1981-06-01T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 6.3837 + }, + { + "Date+Time": "1981-06-02T00:00:00Z", + "Hs (total) (m)": 0.7012, + "Tp (total) (s)": 6.3982 + }, + { + "Date+Time": "1981-06-03T00:00:00Z", + "Hs (total) (m)": 2.076, + "Tp (total) (s)": 6.7087 + }, + { + "Date+Time": "1981-06-04T00:00:00Z", + "Hs (total) (m)": 2.6475, + "Tp (total) (s)": 8.9129 + }, + { + "Date+Time": "1981-06-05T00:00:00Z", + "Hs (total) (m)": 2.3766, + "Tp (total) (s)": 8.2713 + }, + { + "Date+Time": "1981-06-06T00:00:00Z", + "Hs (total) (m)": 2.3194, + "Tp (total) (s)": 11.3124 + }, + { + "Date+Time": "1981-06-07T00:00:00Z", + "Hs (total) (m)": 2.0959, + "Tp (total) (s)": 10.7044 + }, + { + "Date+Time": "1981-06-08T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 9.1975 + }, + { + "Date+Time": "1981-06-09T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 10.2351 + }, + { + "Date+Time": "1981-06-10T00:00:00Z", + "Hs (total) (m)": 1.635, + "Tp (total) (s)": 9.714 + }, + { + "Date+Time": "1981-06-11T00:00:00Z", + "Hs (total) (m)": 0.6661, + "Tp (total) (s)": 9.0121 + }, + { + "Date+Time": "1981-06-12T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 8.3148 + }, + { + "Date+Time": "1981-06-13T00:00:00Z", + "Hs (total) (m)": 2.3247, + "Tp (total) (s)": 6.9765 + }, + { + "Date+Time": "1981-06-14T00:00:00Z", + "Hs (total) (m)": 2.4064, + "Tp (total) (s)": 10.0803 + }, + { + "Date+Time": "1981-06-15T00:00:00Z", + "Hs (total) (m)": 2.0089, + "Tp (total) (s)": 10.6311 + }, + { + "Date+Time": "1981-06-16T00:00:00Z", + "Hs (total) (m)": 2.0737, + "Tp (total) (s)": 11.021 + }, + { + "Date+Time": "1981-06-17T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 10.4137 + }, + { + "Date+Time": "1981-06-18T00:00:00Z", + "Hs (total) (m)": 0.9896, + "Tp (total) (s)": 9.7331 + }, + { + "Date+Time": "1981-06-19T00:00:00Z", + "Hs (total) (m)": 0.9903, + "Tp (total) (s)": 7.7731 + }, + { + "Date+Time": "1981-06-20T00:00:00Z", + "Hs (total) (m)": 0.6966, + "Tp (total) (s)": 5.7672 + }, + { + "Date+Time": "1981-06-21T00:00:00Z", + "Hs (total) (m)": 0.5371, + "Tp (total) (s)": 5.517 + }, + { + "Date+Time": "1981-06-22T00:00:00Z", + "Hs (total) (m)": 0.38, + "Tp (total) (s)": 5.3308 + }, + { + "Date+Time": "1981-06-23T00:00:00Z", + "Hs (total) (m)": 0.4585, + "Tp (total) (s)": 7.8928 + }, + { + "Date+Time": "1981-06-24T00:00:00Z", + "Hs (total) (m)": 0.7584, + "Tp (total) (s)": 8.1225 + }, + { + "Date+Time": "1981-06-25T00:00:00Z", + "Hs (total) (m)": 0.692, + "Tp (total) (s)": 5.2057 + }, + { + "Date+Time": "1981-06-26T00:00:00Z", + "Hs (total) (m)": 0.6172, + "Tp (total) (s)": 5.5971 + }, + { + "Date+Time": "1981-06-27T00:00:00Z", + "Hs (total) (m)": 0.5303, + "Tp (total) (s)": 6.035 + }, + { + "Date+Time": "1981-06-28T00:00:00Z", + "Hs (total) (m)": 0.5272, + "Tp (total) (s)": 5.7901 + }, + { + "Date+Time": "1981-06-29T00:00:00Z", + "Hs (total) (m)": 0.4715, + "Tp (total) (s)": 6.8064 + }, + { + "Date+Time": "1981-06-30T00:00:00Z", + "Hs (total) (m)": 1.0048, + "Tp (total) (s)": 5.6337 + }, + { + "Date+Time": "1981-07-01T00:00:00Z", + "Hs (total) (m)": 1.3184, + "Tp (total) (s)": 8.7207 + }, + { + "Date+Time": "1981-07-02T00:00:00Z", + "Hs (total) (m)": 1.6419, + "Tp (total) (s)": 8.6703 + }, + { + "Date+Time": "1981-07-03T00:00:00Z", + "Hs (total) (m)": 1.8212, + "Tp (total) (s)": 10.6349 + }, + { + "Date+Time": "1981-07-04T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 9.8178 + }, + { + "Date+Time": "1981-07-05T00:00:00Z", + "Hs (total) (m)": 1.3932, + "Tp (total) (s)": 7.9791 + }, + { + "Date+Time": "1981-07-06T00:00:00Z", + "Hs (total) (m)": 2.5117, + "Tp (total) (s)": 9.0365 + }, + { + "Date+Time": "1981-07-07T00:00:00Z", + "Hs (total) (m)": 2.6658, + "Tp (total) (s)": 9.2967 + }, + { + "Date+Time": "1981-07-08T00:00:00Z", + "Hs (total) (m)": 2.1462, + "Tp (total) (s)": 9.1922 + }, + { + "Date+Time": "1981-07-09T00:00:00Z", + "Hs (total) (m)": 1.9593, + "Tp (total) (s)": 8.433 + }, + { + "Date+Time": "1981-07-10T00:00:00Z", + "Hs (total) (m)": 1.3024, + "Tp (total) (s)": 9.2921 + }, + { + "Date+Time": "1981-07-11T00:00:00Z", + "Hs (total) (m)": 1.3993, + "Tp (total) (s)": 7.9562 + }, + { + "Date+Time": "1981-07-12T00:00:00Z", + "Hs (total) (m)": 1.5465, + "Tp (total) (s)": 6.9002 + }, + { + "Date+Time": "1981-07-13T00:00:00Z", + "Hs (total) (m)": 1.0636, + "Tp (total) (s)": 8.4536 + }, + { + "Date+Time": "1981-07-14T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 12.7522 + }, + { + "Date+Time": "1981-07-15T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 11.1812 + }, + { + "Date+Time": "1981-07-16T00:00:00Z", + "Hs (total) (m)": 1.2665, + "Tp (total) (s)": 9.5805 + }, + { + "Date+Time": "1981-07-17T00:00:00Z", + "Hs (total) (m)": 1.4504, + "Tp (total) (s)": 8.7794 + }, + { + "Date+Time": "1981-07-18T00:00:00Z", + "Hs (total) (m)": 1.4489, + "Tp (total) (s)": 7.7616 + }, + { + "Date+Time": "1981-07-19T00:00:00Z", + "Hs (total) (m)": 1.0674, + "Tp (total) (s)": 7.9958 + }, + { + "Date+Time": "1981-07-20T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 7.2657 + }, + { + "Date+Time": "1981-07-21T00:00:00Z", + "Hs (total) (m)": 1.7418, + "Tp (total) (s)": 9.0381 + }, + { + "Date+Time": "1981-07-22T00:00:00Z", + "Hs (total) (m)": 1.7212, + "Tp (total) (s)": 8.6665 + }, + { + "Date+Time": "1981-07-23T00:00:00Z", + "Hs (total) (m)": 1.7655, + "Tp (total) (s)": 7.7952 + }, + { + "Date+Time": "1981-07-24T00:00:00Z", + "Hs (total) (m)": 1.2352, + "Tp (total) (s)": 8.5398 + }, + { + "Date+Time": "1981-07-25T00:00:00Z", + "Hs (total) (m)": 0.6218, + "Tp (total) (s)": 7.7845 + }, + { + "Date+Time": "1981-07-26T00:00:00Z", + "Hs (total) (m)": 0.7225, + "Tp (total) (s)": 7.2459 + }, + { + "Date+Time": "1981-07-27T00:00:00Z", + "Hs (total) (m)": 0.8522, + "Tp (total) (s)": 7.0544 + }, + { + "Date+Time": "1981-07-28T00:00:00Z", + "Hs (total) (m)": 0.9278, + "Tp (total) (s)": 7.7204 + }, + { + "Date+Time": "1981-07-29T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 10.5213 + }, + { + "Date+Time": "1981-07-30T00:00:00Z", + "Hs (total) (m)": 1.3131, + "Tp (total) (s)": 10.184 + }, + { + "Date+Time": "1981-07-31T00:00:00Z", + "Hs (total) (m)": 0.8339, + "Tp (total) (s)": 8.3941 + }, + { + "Date+Time": "1981-08-01T00:00:00Z", + "Hs (total) (m)": 0.6851, + "Tp (total) (s)": 7.7418 + }, + { + "Date+Time": "1981-08-02T00:00:00Z", + "Hs (total) (m)": 0.4051, + "Tp (total) (s)": 7.815 + }, + { + "Date+Time": "1981-08-03T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 8.0348 + }, + { + "Date+Time": "1981-08-04T00:00:00Z", + "Hs (total) (m)": 1.7022, + "Tp (total) (s)": 7.0551 + }, + { + "Date+Time": "1981-08-05T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 9.9017 + }, + { + "Date+Time": "1981-08-06T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 10.5586 + }, + { + "Date+Time": "1981-08-07T00:00:00Z", + "Hs (total) (m)": 1.1299, + "Tp (total) (s)": 9.3677 + }, + { + "Date+Time": "1981-08-08T00:00:00Z", + "Hs (total) (m)": 0.7973, + "Tp (total) (s)": 8.4147 + }, + { + "Date+Time": "1981-08-09T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 7.6205 + }, + { + "Date+Time": "1981-08-10T00:00:00Z", + "Hs (total) (m)": 1.0224, + "Tp (total) (s)": 7.6975 + }, + { + "Date+Time": "1981-08-11T00:00:00Z", + "Hs (total) (m)": 1.368, + "Tp (total) (s)": 10.6861 + }, + { + "Date+Time": "1981-08-12T00:00:00Z", + "Hs (total) (m)": 1.7632, + "Tp (total) (s)": 9.7301 + }, + { + "Date+Time": "1981-08-13T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 8.5467 + }, + { + "Date+Time": "1981-08-14T00:00:00Z", + "Hs (total) (m)": 1.574, + "Tp (total) (s)": 8.0676 + }, + { + "Date+Time": "1981-08-15T00:00:00Z", + "Hs (total) (m)": 0.9606, + "Tp (total) (s)": 8.4971 + }, + { + "Date+Time": "1981-08-16T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 8.578 + }, + { + "Date+Time": "1981-08-17T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 7.9936 + }, + { + "Date+Time": "1981-08-18T00:00:00Z", + "Hs (total) (m)": 0.9033, + "Tp (total) (s)": 7.8631 + }, + { + "Date+Time": "1981-08-19T00:00:00Z", + "Hs (total) (m)": 1.0727, + "Tp (total) (s)": 8.2659 + }, + { + "Date+Time": "1981-08-20T00:00:00Z", + "Hs (total) (m)": 1.6861, + "Tp (total) (s)": 7.9386 + }, + { + "Date+Time": "1981-08-21T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 9.2486 + }, + { + "Date+Time": "1981-08-22T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 9.2898 + }, + { + "Date+Time": "1981-08-23T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 8.4513 + }, + { + "Date+Time": "1981-08-24T00:00:00Z", + "Hs (total) (m)": 0.9423, + "Tp (total) (s)": 8.4033 + }, + { + "Date+Time": "1981-08-25T00:00:00Z", + "Hs (total) (m)": 0.9117, + "Tp (total) (s)": 7.9226 + }, + { + "Date+Time": "1981-08-26T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 10.3389 + }, + { + "Date+Time": "1981-08-27T00:00:00Z", + "Hs (total) (m)": 1.0628, + "Tp (total) (s)": 9.3722 + }, + { + "Date+Time": "1981-08-28T00:00:00Z", + "Hs (total) (m)": 0.8515, + "Tp (total) (s)": 9.727 + }, + { + "Date+Time": "1981-08-29T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 10.4297 + }, + { + "Date+Time": "1981-08-30T00:00:00Z", + "Hs (total) (m)": 1.249, + "Tp (total) (s)": 11.5352 + }, + { + "Date+Time": "1981-08-31T00:00:00Z", + "Hs (total) (m)": 0.9926, + "Tp (total) (s)": 9.2723 + }, + { + "Date+Time": "1981-09-01T00:00:00Z", + "Hs (total) (m)": 0.5799, + "Tp (total) (s)": 8.3277 + }, + { + "Date+Time": "1981-09-02T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 9.341 + }, + { + "Date+Time": "1981-09-03T00:00:00Z", + "Hs (total) (m)": 0.8217, + "Tp (total) (s)": 4.3985 + }, + { + "Date+Time": "1981-09-04T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 7.9134 + }, + { + "Date+Time": "1981-09-05T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 7.0559 + }, + { + "Date+Time": "1981-09-06T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 7.1078 + }, + { + "Date+Time": "1981-09-07T00:00:00Z", + "Hs (total) (m)": 1.0254, + "Tp (total) (s)": 7.1535 + }, + { + "Date+Time": "1981-09-08T00:00:00Z", + "Hs (total) (m)": 0.7134, + "Tp (total) (s)": 9.2608 + }, + { + "Date+Time": "1981-09-09T00:00:00Z", + "Hs (total) (m)": 0.7454, + "Tp (total) (s)": 9.8834 + }, + { + "Date+Time": "1981-09-10T00:00:00Z", + "Hs (total) (m)": 1.7594, + "Tp (total) (s)": 11.5047 + }, + { + "Date+Time": "1981-09-11T00:00:00Z", + "Hs (total) (m)": 2.8871, + "Tp (total) (s)": 8.8656 + }, + { + "Date+Time": "1981-09-12T00:00:00Z", + "Hs (total) (m)": 2.8397, + "Tp (total) (s)": 10.6037 + }, + { + "Date+Time": "1981-09-13T00:00:00Z", + "Hs (total) (m)": 1.8822, + "Tp (total) (s)": 12.3264 + }, + { + "Date+Time": "1981-09-14T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 10.2412 + }, + { + "Date+Time": "1981-09-15T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 9.5752 + }, + { + "Date+Time": "1981-09-16T00:00:00Z", + "Hs (total) (m)": 1.8105, + "Tp (total) (s)": 9.3104 + }, + { + "Date+Time": "1981-09-17T00:00:00Z", + "Hs (total) (m)": 1.6152, + "Tp (total) (s)": 9.5576 + }, + { + "Date+Time": "1981-09-18T00:00:00Z", + "Hs (total) (m)": 1.6228, + "Tp (total) (s)": 8.3697 + }, + { + "Date+Time": "1981-09-19T00:00:00Z", + "Hs (total) (m)": 2.0234, + "Tp (total) (s)": 10.2016 + }, + { + "Date+Time": "1981-09-20T00:00:00Z", + "Hs (total) (m)": 2.7314, + "Tp (total) (s)": 10.8242 + }, + { + "Date+Time": "1981-09-21T00:00:00Z", + "Hs (total) (m)": 2.0005, + "Tp (total) (s)": 10.638 + }, + { + "Date+Time": "1981-09-22T00:00:00Z", + "Hs (total) (m)": 2.1752, + "Tp (total) (s)": 9.8933 + }, + { + "Date+Time": "1981-09-23T00:00:00Z", + "Hs (total) (m)": 1.7304, + "Tp (total) (s)": 10.3114 + }, + { + "Date+Time": "1981-09-24T00:00:00Z", + "Hs (total) (m)": 1.7884, + "Tp (total) (s)": 10.2062 + }, + { + "Date+Time": "1981-09-25T00:00:00Z", + "Hs (total) (m)": 2.5391, + "Tp (total) (s)": 8.5437 + }, + { + "Date+Time": "1981-09-26T00:00:00Z", + "Hs (total) (m)": 2.5811, + "Tp (total) (s)": 11.6672 + }, + { + "Date+Time": "1981-09-27T00:00:00Z", + "Hs (total) (m)": 2.0722, + "Tp (total) (s)": 11.4917 + }, + { + "Date+Time": "1981-09-28T00:00:00Z", + "Hs (total) (m)": 1.8303, + "Tp (total) (s)": 8.6009 + }, + { + "Date+Time": "1981-09-29T00:00:00Z", + "Hs (total) (m)": 1.2322, + "Tp (total) (s)": 10.2824 + }, + { + "Date+Time": "1981-09-30T00:00:00Z", + "Hs (total) (m)": 1.7479, + "Tp (total) (s)": 10.4808 + }, + { + "Date+Time": "1981-10-01T00:00:00Z", + "Hs (total) (m)": 1.9623, + "Tp (total) (s)": 7.7311 + }, + { + "Date+Time": "1981-10-02T00:00:00Z", + "Hs (total) (m)": 1.7434, + "Tp (total) (s)": 10.3832 + }, + { + "Date+Time": "1981-10-03T00:00:00Z", + "Hs (total) (m)": 1.6808, + "Tp (total) (s)": 4.693 + }, + { + "Date+Time": "1981-10-04T00:00:00Z", + "Hs (total) (m)": 2.1065, + "Tp (total) (s)": 12.4363 + }, + { + "Date+Time": "1981-10-05T00:00:00Z", + "Hs (total) (m)": 1.4199, + "Tp (total) (s)": 13.5647 + }, + { + "Date+Time": "1981-10-06T00:00:00Z", + "Hs (total) (m)": 0.7897, + "Tp (total) (s)": 11.4483 + }, + { + "Date+Time": "1981-10-07T00:00:00Z", + "Hs (total) (m)": 2.2912, + "Tp (total) (s)": 8.6024 + }, + { + "Date+Time": "1981-10-08T00:00:00Z", + "Hs (total) (m)": 2.1172, + "Tp (total) (s)": 7.1085 + }, + { + "Date+Time": "1981-10-09T00:00:00Z", + "Hs (total) (m)": 2.7116, + "Tp (total) (s)": 8.0157 + }, + { + "Date+Time": "1981-10-10T00:00:00Z", + "Hs (total) (m)": 3.4326, + "Tp (total) (s)": 10.1489 + }, + { + "Date+Time": "1981-10-11T00:00:00Z", + "Hs (total) (m)": 1.6823, + "Tp (total) (s)": 9.846 + }, + { + "Date+Time": "1981-10-12T00:00:00Z", + "Hs (total) (m)": 1.2696, + "Tp (total) (s)": 10.11 + }, + { + "Date+Time": "1981-10-13T00:00:00Z", + "Hs (total) (m)": 1.133, + "Tp (total) (s)": 11.7809 + }, + { + "Date+Time": "1981-10-14T00:00:00Z", + "Hs (total) (m)": 1.0598, + "Tp (total) (s)": 8.9763 + }, + { + "Date+Time": "1981-10-15T00:00:00Z", + "Hs (total) (m)": 0.8538, + "Tp (total) (s)": 10.3534 + }, + { + "Date+Time": "1981-10-16T00:00:00Z", + "Hs (total) (m)": 0.5058, + "Tp (total) (s)": 10.641 + }, + { + "Date+Time": "1981-10-17T00:00:00Z", + "Hs (total) (m)": 0.6996, + "Tp (total) (s)": 9.0014 + }, + { + "Date+Time": "1981-10-18T00:00:00Z", + "Hs (total) (m)": 0.7561, + "Tp (total) (s)": 8.3956 + }, + { + "Date+Time": "1981-10-19T00:00:00Z", + "Hs (total) (m)": 2.0096, + "Tp (total) (s)": 5.7154 + }, + { + "Date+Time": "1981-10-20T00:00:00Z", + "Hs (total) (m)": 2.913, + "Tp (total) (s)": 9.5584 + }, + { + "Date+Time": "1981-10-21T00:00:00Z", + "Hs (total) (m)": 2.3804, + "Tp (total) (s)": 10.0436 + }, + { + "Date+Time": "1981-10-22T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 10.9577 + }, + { + "Date+Time": "1981-10-23T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 11.0317 + }, + { + "Date+Time": "1981-10-24T00:00:00Z", + "Hs (total) (m)": 0.8797, + "Tp (total) (s)": 10.2527 + }, + { + "Date+Time": "1981-10-25T00:00:00Z", + "Hs (total) (m)": 1.4267, + "Tp (total) (s)": 11.2552 + }, + { + "Date+Time": "1981-10-26T00:00:00Z", + "Hs (total) (m)": 2.2111, + "Tp (total) (s)": 12.5553 + }, + { + "Date+Time": "1981-10-27T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 12.1082 + }, + { + "Date+Time": "1981-10-28T00:00:00Z", + "Hs (total) (m)": 3.872, + "Tp (total) (s)": 16.3129 + }, + { + "Date+Time": "1981-10-29T00:00:00Z", + "Hs (total) (m)": 3.209, + "Tp (total) (s)": 15.2669 + }, + { + "Date+Time": "1981-10-30T00:00:00Z", + "Hs (total) (m)": 2.5056, + "Tp (total) (s)": 10.8921 + }, + { + "Date+Time": "1981-10-31T00:00:00Z", + "Hs (total) (m)": 1.9883, + "Tp (total) (s)": 10.3069 + }, + { + "Date+Time": "1981-11-01T00:00:00Z", + "Hs (total) (m)": 2.4186, + "Tp (total) (s)": 8.9366 + }, + { + "Date+Time": "1981-11-02T00:00:00Z", + "Hs (total) (m)": 2.6208, + "Tp (total) (s)": 12.299 + }, + { + "Date+Time": "1981-11-03T00:00:00Z", + "Hs (total) (m)": 2.6902, + "Tp (total) (s)": 12.2311 + }, + { + "Date+Time": "1981-11-04T00:00:00Z", + "Hs (total) (m)": 2.9962, + "Tp (total) (s)": 11.5871 + }, + { + "Date+Time": "1981-11-05T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 11.5406 + }, + { + "Date+Time": "1981-11-06T00:00:00Z", + "Hs (total) (m)": 0.7973, + "Tp (total) (s)": 3.3303 + }, + { + "Date+Time": "1981-11-07T00:00:00Z", + "Hs (total) (m)": 1.0552, + "Tp (total) (s)": 4.8326 + }, + { + "Date+Time": "1981-11-08T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 11.5886 + }, + { + "Date+Time": "1981-11-09T00:00:00Z", + "Hs (total) (m)": 1.5435, + "Tp (total) (s)": 10.0635 + }, + { + "Date+Time": "1981-11-10T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 10.1436 + }, + { + "Date+Time": "1981-11-11T00:00:00Z", + "Hs (total) (m)": 2.1401, + "Tp (total) (s)": 10.5411 + }, + { + "Date+Time": "1981-11-12T00:00:00Z", + "Hs (total) (m)": 2.4964, + "Tp (total) (s)": 10.4297 + }, + { + "Date+Time": "1981-11-13T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 11.549 + }, + { + "Date+Time": "1981-11-14T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 10.7425 + }, + { + "Date+Time": "1981-11-15T00:00:00Z", + "Hs (total) (m)": 1.7685, + "Tp (total) (s)": 10.7418 + }, + { + "Date+Time": "1981-11-16T00:00:00Z", + "Hs (total) (m)": 2.8428, + "Tp (total) (s)": 8.7062 + }, + { + "Date+Time": "1981-11-17T00:00:00Z", + "Hs (total) (m)": 2.2736, + "Tp (total) (s)": 11.3765 + }, + { + "Date+Time": "1981-11-18T00:00:00Z", + "Hs (total) (m)": 2.9084, + "Tp (total) (s)": 11.4864 + }, + { + "Date+Time": "1981-11-19T00:00:00Z", + "Hs (total) (m)": 2.427, + "Tp (total) (s)": 10.9195 + }, + { + "Date+Time": "1981-11-20T00:00:00Z", + "Hs (total) (m)": 2.1889, + "Tp (total) (s)": 10.4381 + }, + { + "Date+Time": "1981-11-21T00:00:00Z", + "Hs (total) (m)": 3.0541, + "Tp (total) (s)": 8.3483 + }, + { + "Date+Time": "1981-11-22T00:00:00Z", + "Hs (total) (m)": 2.2019, + "Tp (total) (s)": 11.1927 + }, + { + "Date+Time": "1981-11-23T00:00:00Z", + "Hs (total) (m)": 2.5552, + "Tp (total) (s)": 9.6492 + }, + { + "Date+Time": "1981-11-24T00:00:00Z", + "Hs (total) (m)": 2.3003, + "Tp (total) (s)": 8.6245 + }, + { + "Date+Time": "1981-11-25T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 10.6731 + }, + { + "Date+Time": "1981-11-26T00:00:00Z", + "Hs (total) (m)": 1.223, + "Tp (total) (s)": 12.1487 + }, + { + "Date+Time": "1981-11-27T00:00:00Z", + "Hs (total) (m)": 1.8944, + "Tp (total) (s)": 7.9653 + }, + { + "Date+Time": "1981-11-28T00:00:00Z", + "Hs (total) (m)": 2.5872, + "Tp (total) (s)": 8.0973 + }, + { + "Date+Time": "1981-11-29T00:00:00Z", + "Hs (total) (m)": 2.6879, + "Tp (total) (s)": 11.5902 + }, + { + "Date+Time": "1981-11-30T00:00:00Z", + "Hs (total) (m)": 1.4489, + "Tp (total) (s)": 11.7481 + }, + { + "Date+Time": "1981-12-01T00:00:00Z", + "Hs (total) (m)": 1.8853, + "Tp (total) (s)": 6.9758 + }, + { + "Date+Time": "1981-12-02T00:00:00Z", + "Hs (total) (m)": 2.0608, + "Tp (total) (s)": 12.9177 + }, + { + "Date+Time": "1981-12-03T00:00:00Z", + "Hs (total) (m)": 1.4603, + "Tp (total) (s)": 11.6825 + }, + { + "Date+Time": "1981-12-04T00:00:00Z", + "Hs (total) (m)": 1.4924, + "Tp (total) (s)": 11.6268 + }, + { + "Date+Time": "1981-12-05T00:00:00Z", + "Hs (total) (m)": 1.8792, + "Tp (total) (s)": 11.6756 + }, + { + "Date+Time": "1981-12-06T00:00:00Z", + "Hs (total) (m)": 1.5671, + "Tp (total) (s)": 8.6489 + }, + { + "Date+Time": "1981-12-07T00:00:00Z", + "Hs (total) (m)": 1.5969, + "Tp (total) (s)": 8.3995 + }, + { + "Date+Time": "1981-12-08T00:00:00Z", + "Hs (total) (m)": 1.7739, + "Tp (total) (s)": 8.9991 + }, + { + "Date+Time": "1981-12-09T00:00:00Z", + "Hs (total) (m)": 1.8761, + "Tp (total) (s)": 9.8437 + }, + { + "Date+Time": "1981-12-10T00:00:00Z", + "Hs (total) (m)": 1.3375, + "Tp (total) (s)": 11.6413 + }, + { + "Date+Time": "1981-12-11T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 11.314 + }, + { + "Date+Time": "1981-12-12T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 12.8567 + }, + { + "Date+Time": "1981-12-13T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 11.5635 + }, + { + "Date+Time": "1981-12-14T00:00:00Z", + "Hs (total) (m)": 2.3904, + "Tp (total) (s)": 10.8905 + }, + { + "Date+Time": "1981-12-15T00:00:00Z", + "Hs (total) (m)": 4.8433, + "Tp (total) (s)": 11.8404 + }, + { + "Date+Time": "1981-12-16T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 11.269 + }, + { + "Date+Time": "1981-12-17T00:00:00Z", + "Hs (total) (m)": 1.7342, + "Tp (total) (s)": 10.5602 + }, + { + "Date+Time": "1981-12-18T00:00:00Z", + "Hs (total) (m)": 2.2423, + "Tp (total) (s)": 11.9053 + }, + { + "Date+Time": "1981-12-19T00:00:00Z", + "Hs (total) (m)": 1.2337, + "Tp (total) (s)": 10.2092 + }, + { + "Date+Time": "1981-12-20T00:00:00Z", + "Hs (total) (m)": 3.2937, + "Tp (total) (s)": 9.109 + }, + { + "Date+Time": "1981-12-21T00:00:00Z", + "Hs (total) (m)": 2.5452, + "Tp (total) (s)": 10.9401 + }, + { + "Date+Time": "1981-12-22T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 12.8742 + }, + { + "Date+Time": "1981-12-23T00:00:00Z", + "Hs (total) (m)": 1.9433, + "Tp (total) (s)": 12.7842 + }, + { + "Date+Time": "1981-12-24T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 10.6937 + }, + { + "Date+Time": "1981-12-25T00:00:00Z", + "Hs (total) (m)": 1.7953, + "Tp (total) (s)": 11.4124 + }, + { + "Date+Time": "1981-12-26T00:00:00Z", + "Hs (total) (m)": 1.9395, + "Tp (total) (s)": 11.2903 + }, + { + "Date+Time": "1981-12-27T00:00:00Z", + "Hs (total) (m)": 3.4906, + "Tp (total) (s)": 11.9503 + }, + { + "Date+Time": "1981-12-28T00:00:00Z", + "Hs (total) (m)": 2.5185, + "Tp (total) (s)": 12.3714 + }, + { + "Date+Time": "1981-12-29T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 3.843 + }, + { + "Date+Time": "1981-12-30T00:00:00Z", + "Hs (total) (m)": 2.1455, + "Tp (total) (s)": 14.6435 + }, + { + "Date+Time": "1981-12-31T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 14.5795 + }, + { + "Date+Time": "1982-01-01T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 12.9452 + }, + { + "Date+Time": "1982-01-02T00:00:00Z", + "Hs (total) (m)": 1.8685, + "Tp (total) (s)": 12.9536 + }, + { + "Date+Time": "1982-01-03T00:00:00Z", + "Hs (total) (m)": 1.9822, + "Tp (total) (s)": 9.4028 + }, + { + "Date+Time": "1982-01-04T00:00:00Z", + "Hs (total) (m)": 2.1462, + "Tp (total) (s)": 10.6792 + }, + { + "Date+Time": "1982-01-05T00:00:00Z", + "Hs (total) (m)": 2.2408, + "Tp (total) (s)": 11.3536 + }, + { + "Date+Time": "1982-01-06T00:00:00Z", + "Hs (total) (m)": 2.3927, + "Tp (total) (s)": 11.6489 + }, + { + "Date+Time": "1982-01-07T00:00:00Z", + "Hs (total) (m)": 1.5694, + "Tp (total) (s)": 10.5701 + }, + { + "Date+Time": "1982-01-08T00:00:00Z", + "Hs (total) (m)": 1.3802, + "Tp (total) (s)": 5.1035 + }, + { + "Date+Time": "1982-01-09T00:00:00Z", + "Hs (total) (m)": 1.516, + "Tp (total) (s)": 5.6665 + }, + { + "Date+Time": "1982-01-10T00:00:00Z", + "Hs (total) (m)": 1.3993, + "Tp (total) (s)": 5.5101 + }, + { + "Date+Time": "1982-01-11T00:00:00Z", + "Hs (total) (m)": 1.149, + "Tp (total) (s)": 5.1126 + }, + { + "Date+Time": "1982-01-12T00:00:00Z", + "Hs (total) (m)": 1.4031, + "Tp (total) (s)": 15.495 + }, + { + "Date+Time": "1982-01-13T00:00:00Z", + "Hs (total) (m)": 2.1516, + "Tp (total) (s)": 15.5713 + }, + { + "Date+Time": "1982-01-14T00:00:00Z", + "Hs (total) (m)": 2.5414, + "Tp (total) (s)": 15.1654 + }, + { + "Date+Time": "1982-01-15T00:00:00Z", + "Hs (total) (m)": 2.6154, + "Tp (total) (s)": 14.7626 + }, + { + "Date+Time": "1982-01-16T00:00:00Z", + "Hs (total) (m)": 2.7467, + "Tp (total) (s)": 13.7852 + }, + { + "Date+Time": "1982-01-17T00:00:00Z", + "Hs (total) (m)": 2.7902, + "Tp (total) (s)": 12.7606 + }, + { + "Date+Time": "1982-01-18T00:00:00Z", + "Hs (total) (m)": 2.7215, + "Tp (total) (s)": 13.921 + }, + { + "Date+Time": "1982-01-19T00:00:00Z", + "Hs (total) (m)": 2.884, + "Tp (total) (s)": 13.6227 + }, + { + "Date+Time": "1982-01-20T00:00:00Z", + "Hs (total) (m)": 2.8794, + "Tp (total) (s)": 13.6029 + }, + { + "Date+Time": "1982-01-21T00:00:00Z", + "Hs (total) (m)": 3.5615, + "Tp (total) (s)": 15.775 + }, + { + "Date+Time": "1982-01-22T00:00:00Z", + "Hs (total) (m)": 3.7873, + "Tp (total) (s)": 12.4561 + }, + { + "Date+Time": "1982-01-23T00:00:00Z", + "Hs (total) (m)": 3.2334, + "Tp (total) (s)": 12.7125 + }, + { + "Date+Time": "1982-01-24T00:00:00Z", + "Hs (total) (m)": 2.7757, + "Tp (total) (s)": 13.4426 + }, + { + "Date+Time": "1982-01-25T00:00:00Z", + "Hs (total) (m)": 3.0198, + "Tp (total) (s)": 19.2465 + }, + { + "Date+Time": "1982-01-26T00:00:00Z", + "Hs (total) (m)": 3.1556, + "Tp (total) (s)": 18.0906 + }, + { + "Date+Time": "1982-01-27T00:00:00Z", + "Hs (total) (m)": 2.958, + "Tp (total) (s)": 14.5199 + }, + { + "Date+Time": "1982-01-28T00:00:00Z", + "Hs (total) (m)": 2.7322, + "Tp (total) (s)": 12.6888 + }, + { + "Date+Time": "1982-01-29T00:00:00Z", + "Hs (total) (m)": 1.9524, + "Tp (total) (s)": 12.3051 + }, + { + "Date+Time": "1982-01-30T00:00:00Z", + "Hs (total) (m)": 1.7884, + "Tp (total) (s)": 10.4686 + }, + { + "Date+Time": "1982-01-31T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 9.9689 + }, + { + "Date+Time": "1982-02-01T00:00:00Z", + "Hs (total) (m)": 2.2301, + "Tp (total) (s)": 10.7349 + }, + { + "Date+Time": "1982-02-02T00:00:00Z", + "Hs (total) (m)": 2.4026, + "Tp (total) (s)": 10.5632 + }, + { + "Date+Time": "1982-02-03T00:00:00Z", + "Hs (total) (m)": 2.5353, + "Tp (total) (s)": 10.3175 + }, + { + "Date+Time": "1982-02-04T00:00:00Z", + "Hs (total) (m)": 2.942, + "Tp (total) (s)": 13.5418 + }, + { + "Date+Time": "1982-02-05T00:00:00Z", + "Hs (total) (m)": 3.3616, + "Tp (total) (s)": 13.8455 + }, + { + "Date+Time": "1982-02-06T00:00:00Z", + "Hs (total) (m)": 3.0236, + "Tp (total) (s)": 16.541 + }, + { + "Date+Time": "1982-02-07T00:00:00Z", + "Hs (total) (m)": 3.3174, + "Tp (total) (s)": 15.4836 + }, + { + "Date+Time": "1982-02-08T00:00:00Z", + "Hs (total) (m)": 3.0763, + "Tp (total) (s)": 12.5942 + }, + { + "Date+Time": "1982-02-09T00:00:00Z", + "Hs (total) (m)": 3.6699, + "Tp (total) (s)": 13.1581 + }, + { + "Date+Time": "1982-02-10T00:00:00Z", + "Hs (total) (m)": 3.7408, + "Tp (total) (s)": 13.9103 + }, + { + "Date+Time": "1982-02-11T00:00:00Z", + "Hs (total) (m)": 3.8125, + "Tp (total) (s)": 15.4881 + }, + { + "Date+Time": "1982-02-12T00:00:00Z", + "Hs (total) (m)": 3.7828, + "Tp (total) (s)": 14.079 + }, + { + "Date+Time": "1982-02-13T00:00:00Z", + "Hs (total) (m)": 4.5099, + "Tp (total) (s)": 13.5205 + }, + { + "Date+Time": "1982-02-14T00:00:00Z", + "Hs (total) (m)": 5.5643, + "Tp (total) (s)": 14.4475 + }, + { + "Date+Time": "1982-02-15T00:00:00Z", + "Hs (total) (m)": 4.7769, + "Tp (total) (s)": 15.2173 + }, + { + "Date+Time": "1982-02-16T00:00:00Z", + "Hs (total) (m)": 3.7767, + "Tp (total) (s)": 15.1646 + }, + { + "Date+Time": "1982-02-17T00:00:00Z", + "Hs (total) (m)": 2.8909, + "Tp (total) (s)": 13.0154 + }, + { + "Date+Time": "1982-02-18T00:00:00Z", + "Hs (total) (m)": 2.517, + "Tp (total) (s)": 12.6263 + }, + { + "Date+Time": "1982-02-19T00:00:00Z", + "Hs (total) (m)": 2.4148, + "Tp (total) (s)": 17.0843 + }, + { + "Date+Time": "1982-02-20T00:00:00Z", + "Hs (total) (m)": 2.8794, + "Tp (total) (s)": 16.7341 + }, + { + "Date+Time": "1982-02-21T00:00:00Z", + "Hs (total) (m)": 3.2579, + "Tp (total) (s)": 13.3488 + }, + { + "Date+Time": "1982-02-22T00:00:00Z", + "Hs (total) (m)": 2.6551, + "Tp (total) (s)": 12.875 + }, + { + "Date+Time": "1982-02-23T00:00:00Z", + "Hs (total) (m)": 2.0119, + "Tp (total) (s)": 12.6911 + }, + { + "Date+Time": "1982-02-24T00:00:00Z", + "Hs (total) (m)": 1.7006, + "Tp (total) (s)": 12.006 + }, + { + "Date+Time": "1982-02-25T00:00:00Z", + "Hs (total) (m)": 2.1668, + "Tp (total) (s)": 10.8081 + }, + { + "Date+Time": "1982-02-26T00:00:00Z", + "Hs (total) (m)": 2.044, + "Tp (total) (s)": 10.2893 + }, + { + "Date+Time": "1982-02-27T00:00:00Z", + "Hs (total) (m)": 2.4468, + "Tp (total) (s)": 12.4668 + }, + { + "Date+Time": "1982-02-28T00:00:00Z", + "Hs (total) (m)": 2.723, + "Tp (total) (s)": 12.4195 + }, + { + "Date+Time": "1982-03-01T00:00:00Z", + "Hs (total) (m)": 3.1343, + "Tp (total) (s)": 13.4739 + }, + { + "Date+Time": "1982-03-02T00:00:00Z", + "Hs (total) (m)": 3.8095, + "Tp (total) (s)": 13.9653 + }, + { + "Date+Time": "1982-03-03T00:00:00Z", + "Hs (total) (m)": 4.3733, + "Tp (total) (s)": 14.2048 + }, + { + "Date+Time": "1982-03-04T00:00:00Z", + "Hs (total) (m)": 5.4445, + "Tp (total) (s)": 14.4624 + }, + { + "Date+Time": "1982-03-05T00:00:00Z", + "Hs (total) (m)": 4.9027, + "Tp (total) (s)": 14.2233 + }, + { + "Date+Time": "1982-03-06T00:00:00Z", + "Hs (total) (m)": 3.3235, + "Tp (total) (s)": 12.804 + }, + { + "Date+Time": "1982-03-07T00:00:00Z", + "Hs (total) (m)": 2.7276, + "Tp (total) (s)": 11.4406 + }, + { + "Date+Time": "1982-03-08T00:00:00Z", + "Hs (total) (m)": 2.3873, + "Tp (total) (s)": 14.0942 + }, + { + "Date+Time": "1982-03-09T00:00:00Z", + "Hs (total) (m)": 2.8184, + "Tp (total) (s)": 13.9203 + }, + { + "Date+Time": "1982-03-10T00:00:00Z", + "Hs (total) (m)": 3.3555, + "Tp (total) (s)": 14.4162 + }, + { + "Date+Time": "1982-03-11T00:00:00Z", + "Hs (total) (m)": 3.946, + "Tp (total) (s)": 16.4998 + }, + { + "Date+Time": "1982-03-12T00:00:00Z", + "Hs (total) (m)": 3.7942, + "Tp (total) (s)": 12.949 + }, + { + "Date+Time": "1982-03-13T00:00:00Z", + "Hs (total) (m)": 4.265, + "Tp (total) (s)": 15.022 + }, + { + "Date+Time": "1982-03-14T00:00:00Z", + "Hs (total) (m)": 4.4008, + "Tp (total) (s)": 16.4457 + }, + { + "Date+Time": "1982-03-15T00:00:00Z", + "Hs (total) (m)": 4.2871, + "Tp (total) (s)": 15.2928 + }, + { + "Date+Time": "1982-03-16T00:00:00Z", + "Hs (total) (m)": 3.8186, + "Tp (total) (s)": 13.9813 + }, + { + "Date+Time": "1982-03-17T00:00:00Z", + "Hs (total) (m)": 3.8209, + "Tp (total) (s)": 13.7471 + }, + { + "Date+Time": "1982-03-18T00:00:00Z", + "Hs (total) (m)": 3.3898, + "Tp (total) (s)": 13.7928 + }, + { + "Date+Time": "1982-03-19T00:00:00Z", + "Hs (total) (m)": 2.2942, + "Tp (total) (s)": 13.6891 + }, + { + "Date+Time": "1982-03-20T00:00:00Z", + "Hs (total) (m)": 1.6526, + "Tp (total) (s)": 11.3948 + }, + { + "Date+Time": "1982-03-21T00:00:00Z", + "Hs (total) (m)": 1.7266, + "Tp (total) (s)": 8.092 + }, + { + "Date+Time": "1982-03-22T00:00:00Z", + "Hs (total) (m)": 2.1416, + "Tp (total) (s)": 9.4729 + }, + { + "Date+Time": "1982-03-23T00:00:00Z", + "Hs (total) (m)": 2.2462, + "Tp (total) (s)": 11.3636 + }, + { + "Date+Time": "1982-03-24T00:00:00Z", + "Hs (total) (m)": 1.9463, + "Tp (total) (s)": 11.9495 + }, + { + "Date+Time": "1982-03-25T00:00:00Z", + "Hs (total) (m)": 2.3301, + "Tp (total) (s)": 12.9933 + }, + { + "Date+Time": "1982-03-26T00:00:00Z", + "Hs (total) (m)": 2.3453, + "Tp (total) (s)": 12.2372 + }, + { + "Date+Time": "1982-03-27T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 11.5215 + }, + { + "Date+Time": "1982-03-28T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 12.682 + }, + { + "Date+Time": "1982-03-29T00:00:00Z", + "Hs (total) (m)": 1.5709, + "Tp (total) (s)": 12.6576 + }, + { + "Date+Time": "1982-03-30T00:00:00Z", + "Hs (total) (m)": 1.3466, + "Tp (total) (s)": 11.6794 + }, + { + "Date+Time": "1982-03-31T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 10.5358 + }, + { + "Date+Time": "1982-04-01T00:00:00Z", + "Hs (total) (m)": 1.0277, + "Tp (total) (s)": 7.2192 + }, + { + "Date+Time": "1982-04-02T00:00:00Z", + "Hs (total) (m)": 0.9255, + "Tp (total) (s)": 9.4623 + }, + { + "Date+Time": "1982-04-03T00:00:00Z", + "Hs (total) (m)": 0.9499, + "Tp (total) (s)": 9.4684 + }, + { + "Date+Time": "1982-04-04T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 11.1324 + }, + { + "Date+Time": "1982-04-05T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 10.5571 + }, + { + "Date+Time": "1982-04-06T00:00:00Z", + "Hs (total) (m)": 1.4054, + "Tp (total) (s)": 10.3023 + }, + { + "Date+Time": "1982-04-07T00:00:00Z", + "Hs (total) (m)": 1.3817, + "Tp (total) (s)": 9.4356 + }, + { + "Date+Time": "1982-04-08T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 12.1494 + }, + { + "Date+Time": "1982-04-09T00:00:00Z", + "Hs (total) (m)": 1.3855, + "Tp (total) (s)": 10.5159 + }, + { + "Date+Time": "1982-04-10T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 9.8674 + }, + { + "Date+Time": "1982-04-11T00:00:00Z", + "Hs (total) (m)": 0.8873, + "Tp (total) (s)": 9.621 + }, + { + "Date+Time": "1982-04-12T00:00:00Z", + "Hs (total) (m)": 0.8614, + "Tp (total) (s)": 9.5614 + }, + { + "Date+Time": "1982-04-13T00:00:00Z", + "Hs (total) (m)": 0.9507, + "Tp (total) (s)": 9.2685 + }, + { + "Date+Time": "1982-04-14T00:00:00Z", + "Hs (total) (m)": 1.0422, + "Tp (total) (s)": 14.8473 + }, + { + "Date+Time": "1982-04-15T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 14.9304 + }, + { + "Date+Time": "1982-04-16T00:00:00Z", + "Hs (total) (m)": 1.3855, + "Tp (total) (s)": 14.0843 + }, + { + "Date+Time": "1982-04-17T00:00:00Z", + "Hs (total) (m)": 1.5145, + "Tp (total) (s)": 13.7043 + }, + { + "Date+Time": "1982-04-18T00:00:00Z", + "Hs (total) (m)": 1.5625, + "Tp (total) (s)": 14.1964 + }, + { + "Date+Time": "1982-04-19T00:00:00Z", + "Hs (total) (m)": 1.5229, + "Tp (total) (s)": 13.2542 + }, + { + "Date+Time": "1982-04-20T00:00:00Z", + "Hs (total) (m)": 1.3329, + "Tp (total) (s)": 13.5571 + }, + { + "Date+Time": "1982-04-21T00:00:00Z", + "Hs (total) (m)": 1.117, + "Tp (total) (s)": 10.9325 + }, + { + "Date+Time": "1982-04-22T00:00:00Z", + "Hs (total) (m)": 0.9842, + "Tp (total) (s)": 9.595 + }, + { + "Date+Time": "1982-04-23T00:00:00Z", + "Hs (total) (m)": 1.194, + "Tp (total) (s)": 11.6115 + }, + { + "Date+Time": "1982-04-24T00:00:00Z", + "Hs (total) (m)": 1.3939, + "Tp (total) (s)": 11.4002 + }, + { + "Date+Time": "1982-04-25T00:00:00Z", + "Hs (total) (m)": 1.7243, + "Tp (total) (s)": 12.9017 + }, + { + "Date+Time": "1982-04-26T00:00:00Z", + "Hs (total) (m)": 1.5442, + "Tp (total) (s)": 12.9536 + }, + { + "Date+Time": "1982-04-27T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 12.5462 + }, + { + "Date+Time": "1982-04-28T00:00:00Z", + "Hs (total) (m)": 1.1383, + "Tp (total) (s)": 11.9869 + }, + { + "Date+Time": "1982-04-29T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 10.96 + }, + { + "Date+Time": "1982-04-30T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 11.0576 + }, + { + "Date+Time": "1982-05-01T00:00:00Z", + "Hs (total) (m)": 1.2177, + "Tp (total) (s)": 11.0622 + }, + { + "Date+Time": "1982-05-02T00:00:00Z", + "Hs (total) (m)": 1.2741, + "Tp (total) (s)": 10.1352 + }, + { + "Date+Time": "1982-05-03T00:00:00Z", + "Hs (total) (m)": 2.0684, + "Tp (total) (s)": 10.3053 + }, + { + "Date+Time": "1982-05-04T00:00:00Z", + "Hs (total) (m)": 2.5163, + "Tp (total) (s)": 10.2962 + }, + { + "Date+Time": "1982-05-05T00:00:00Z", + "Hs (total) (m)": 2.2996, + "Tp (total) (s)": 10.4183 + }, + { + "Date+Time": "1982-05-06T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 11.4307 + }, + { + "Date+Time": "1982-05-07T00:00:00Z", + "Hs (total) (m)": 1.1322, + "Tp (total) (s)": 11.8931 + }, + { + "Date+Time": "1982-05-08T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 10.3626 + }, + { + "Date+Time": "1982-05-09T00:00:00Z", + "Hs (total) (m)": 0.9354, + "Tp (total) (s)": 8.8061 + }, + { + "Date+Time": "1982-05-10T00:00:00Z", + "Hs (total) (m)": 1.3703, + "Tp (total) (s)": 8.536 + }, + { + "Date+Time": "1982-05-11T00:00:00Z", + "Hs (total) (m)": 1.635, + "Tp (total) (s)": 9.4256 + }, + { + "Date+Time": "1982-05-12T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 9.9002 + }, + { + "Date+Time": "1982-05-13T00:00:00Z", + "Hs (total) (m)": 0.8423, + "Tp (total) (s)": 3.589 + }, + { + "Date+Time": "1982-05-14T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 10.1711 + }, + { + "Date+Time": "1982-05-15T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 9.5202 + }, + { + "Date+Time": "1982-05-16T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "1982-05-17T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 8.8595 + }, + { + "Date+Time": "1982-05-18T00:00:00Z", + "Hs (total) (m)": 1.1666, + "Tp (total) (s)": 8.6947 + }, + { + "Date+Time": "1982-05-19T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 8.3422 + }, + { + "Date+Time": "1982-05-20T00:00:00Z", + "Hs (total) (m)": 1.1383, + "Tp (total) (s)": 8.002 + }, + { + "Date+Time": "1982-05-21T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 7.8402 + }, + { + "Date+Time": "1982-05-22T00:00:00Z", + "Hs (total) (m)": 1.2467, + "Tp (total) (s)": 7.7937 + }, + { + "Date+Time": "1982-05-23T00:00:00Z", + "Hs (total) (m)": 1.5641, + "Tp (total) (s)": 7.7433 + }, + { + "Date+Time": "1982-05-24T00:00:00Z", + "Hs (total) (m)": 1.9929, + "Tp (total) (s)": 10.9928 + }, + { + "Date+Time": "1982-05-25T00:00:00Z", + "Hs (total) (m)": 2.3003, + "Tp (total) (s)": 10.8798 + }, + { + "Date+Time": "1982-05-26T00:00:00Z", + "Hs (total) (m)": 2.2065, + "Tp (total) (s)": 8.7207 + }, + { + "Date+Time": "1982-05-27T00:00:00Z", + "Hs (total) (m)": 2.1203, + "Tp (total) (s)": 9.2669 + }, + { + "Date+Time": "1982-05-28T00:00:00Z", + "Hs (total) (m)": 2.0837, + "Tp (total) (s)": 10.5136 + }, + { + "Date+Time": "1982-05-29T00:00:00Z", + "Hs (total) (m)": 2.0867, + "Tp (total) (s)": 10.5403 + }, + { + "Date+Time": "1982-05-30T00:00:00Z", + "Hs (total) (m)": 2.131, + "Tp (total) (s)": 8.9534 + }, + { + "Date+Time": "1982-05-31T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 9.1708 + }, + { + "Date+Time": "1982-06-01T00:00:00Z", + "Hs (total) (m)": 1.8807, + "Tp (total) (s)": 9.2853 + }, + { + "Date+Time": "1982-06-02T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 12.5423 + }, + { + "Date+Time": "1982-06-03T00:00:00Z", + "Hs (total) (m)": 1.7678, + "Tp (total) (s)": 12.4081 + }, + { + "Date+Time": "1982-06-04T00:00:00Z", + "Hs (total) (m)": 1.4359, + "Tp (total) (s)": 9.8491 + }, + { + "Date+Time": "1982-06-05T00:00:00Z", + "Hs (total) (m)": 1.3276, + "Tp (total) (s)": 9.6248 + }, + { + "Date+Time": "1982-06-06T00:00:00Z", + "Hs (total) (m)": 1.5076, + "Tp (total) (s)": 10.1131 + }, + { + "Date+Time": "1982-06-07T00:00:00Z", + "Hs (total) (m)": 1.5358, + "Tp (total) (s)": 10.0818 + }, + { + "Date+Time": "1982-06-08T00:00:00Z", + "Hs (total) (m)": 1.4084, + "Tp (total) (s)": 9.3066 + }, + { + "Date+Time": "1982-06-09T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 8.4689 + }, + { + "Date+Time": "1982-06-10T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 8.1568 + }, + { + "Date+Time": "1982-06-11T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 7.8784 + }, + { + "Date+Time": "1982-06-12T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 8.2789 + }, + { + "Date+Time": "1982-06-13T00:00:00Z", + "Hs (total) (m)": 1.0605, + "Tp (total) (s)": 9.0281 + }, + { + "Date+Time": "1982-06-14T00:00:00Z", + "Hs (total) (m)": 1.0636, + "Tp (total) (s)": 9.0007 + }, + { + "Date+Time": "1982-06-15T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 8.8374 + }, + { + "Date+Time": "1982-06-16T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 8.2965 + }, + { + "Date+Time": "1982-06-17T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 7.0444 + }, + { + "Date+Time": "1982-06-18T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 7.12 + }, + { + "Date+Time": "1982-06-19T00:00:00Z", + "Hs (total) (m)": 1.1193, + "Tp (total) (s)": 7.2565 + }, + { + "Date+Time": "1982-06-20T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 10.2687 + }, + { + "Date+Time": "1982-06-21T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 9.5851 + }, + { + "Date+Time": "1982-06-22T00:00:00Z", + "Hs (total) (m)": 1.458, + "Tp (total) (s)": 8.478 + }, + { + "Date+Time": "1982-06-23T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 7.9951 + }, + { + "Date+Time": "1982-06-24T00:00:00Z", + "Hs (total) (m)": 0.5684, + "Tp (total) (s)": 2.7398 + }, + { + "Date+Time": "1982-06-25T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 14.127 + }, + { + "Date+Time": "1982-06-26T00:00:00Z", + "Hs (total) (m)": 1.0277, + "Tp (total) (s)": 13.4289 + }, + { + "Date+Time": "1982-06-27T00:00:00Z", + "Hs (total) (m)": 1.3199, + "Tp (total) (s)": 12.4882 + }, + { + "Date+Time": "1982-06-28T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 11.2896 + }, + { + "Date+Time": "1982-06-29T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 6.4852 + }, + { + "Date+Time": "1982-06-30T00:00:00Z", + "Hs (total) (m)": 1.4718, + "Tp (total) (s)": 8.3354 + }, + { + "Date+Time": "1982-07-01T00:00:00Z", + "Hs (total) (m)": 2.5857, + "Tp (total) (s)": 8.4056 + }, + { + "Date+Time": "1982-07-02T00:00:00Z", + "Hs (total) (m)": 2.0142, + "Tp (total) (s)": 10.0925 + }, + { + "Date+Time": "1982-07-03T00:00:00Z", + "Hs (total) (m)": 1.2078, + "Tp (total) (s)": 7.7128 + }, + { + "Date+Time": "1982-07-04T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 7.1268 + }, + { + "Date+Time": "1982-07-05T00:00:00Z", + "Hs (total) (m)": 1.3489, + "Tp (total) (s)": 8.2911 + }, + { + "Date+Time": "1982-07-06T00:00:00Z", + "Hs (total) (m)": 1.3512, + "Tp (total) (s)": 8.7794 + }, + { + "Date+Time": "1982-07-07T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 8.6695 + }, + { + "Date+Time": "1982-07-08T00:00:00Z", + "Hs (total) (m)": 1.281, + "Tp (total) (s)": 9.8018 + }, + { + "Date+Time": "1982-07-09T00:00:00Z", + "Hs (total) (m)": 1.1155, + "Tp (total) (s)": 9.2776 + }, + { + "Date+Time": "1982-07-10T00:00:00Z", + "Hs (total) (m)": 0.9705, + "Tp (total) (s)": 7.7952 + }, + { + "Date+Time": "1982-07-11T00:00:00Z", + "Hs (total) (m)": 0.6256, + "Tp (total) (s)": 8.7214 + }, + { + "Date+Time": "1982-07-12T00:00:00Z", + "Hs (total) (m)": 0.6447, + "Tp (total) (s)": 7.9997 + }, + { + "Date+Time": "1982-07-13T00:00:00Z", + "Hs (total) (m)": 0.502, + "Tp (total) (s)": 7.1528 + }, + { + "Date+Time": "1982-07-14T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 6.9628 + }, + { + "Date+Time": "1982-07-15T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 8.8328 + }, + { + "Date+Time": "1982-07-16T00:00:00Z", + "Hs (total) (m)": 0.8873, + "Tp (total) (s)": 7.6418 + }, + { + "Date+Time": "1982-07-17T00:00:00Z", + "Hs (total) (m)": 1.223, + "Tp (total) (s)": 5.5216 + }, + { + "Date+Time": "1982-07-18T00:00:00Z", + "Hs (total) (m)": 0.9018, + "Tp (total) (s)": 11.491 + }, + { + "Date+Time": "1982-07-19T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 10.9577 + }, + { + "Date+Time": "1982-07-20T00:00:00Z", + "Hs (total) (m)": 0.7714, + "Tp (total) (s)": 9.6728 + }, + { + "Date+Time": "1982-07-21T00:00:00Z", + "Hs (total) (m)": 0.6317, + "Tp (total) (s)": 9.4813 + }, + { + "Date+Time": "1982-07-22T00:00:00Z", + "Hs (total) (m)": 0.5356, + "Tp (total) (s)": 8.5566 + }, + { + "Date+Time": "1982-07-23T00:00:00Z", + "Hs (total) (m)": 0.3914, + "Tp (total) (s)": 4.5557 + }, + { + "Date+Time": "1982-07-24T00:00:00Z", + "Hs (total) (m)": 0.5753, + "Tp (total) (s)": 14.7481 + }, + { + "Date+Time": "1982-07-25T00:00:00Z", + "Hs (total) (m)": 0.5692, + "Tp (total) (s)": 7.8249 + }, + { + "Date+Time": "1982-07-26T00:00:00Z", + "Hs (total) (m)": 0.7645, + "Tp (total) (s)": 7.8639 + }, + { + "Date+Time": "1982-07-27T00:00:00Z", + "Hs (total) (m)": 0.7279, + "Tp (total) (s)": 7.7227 + }, + { + "Date+Time": "1982-07-28T00:00:00Z", + "Hs (total) (m)": 0.5188, + "Tp (total) (s)": 7.1696 + }, + { + "Date+Time": "1982-07-29T00:00:00Z", + "Hs (total) (m)": 0.4936, + "Tp (total) (s)": 8.6299 + }, + { + "Date+Time": "1982-07-30T00:00:00Z", + "Hs (total) (m)": 0.5844, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "1982-07-31T00:00:00Z", + "Hs (total) (m)": 0.7477, + "Tp (total) (s)": 7.6319 + }, + { + "Date+Time": "1982-08-01T00:00:00Z", + "Hs (total) (m)": 0.6691, + "Tp (total) (s)": 7.9806 + }, + { + "Date+Time": "1982-08-02T00:00:00Z", + "Hs (total) (m)": 0.6279, + "Tp (total) (s)": 8.0691 + }, + { + "Date+Time": "1982-08-03T00:00:00Z", + "Hs (total) (m)": 0.5593, + "Tp (total) (s)": 7.6319 + }, + { + "Date+Time": "1982-08-04T00:00:00Z", + "Hs (total) (m)": 0.7668, + "Tp (total) (s)": 6.0648 + }, + { + "Date+Time": "1982-08-05T00:00:00Z", + "Hs (total) (m)": 1.4664, + "Tp (total) (s)": 8.4078 + }, + { + "Date+Time": "1982-08-06T00:00:00Z", + "Hs (total) (m)": 0.8362, + "Tp (total) (s)": 6.2761 + }, + { + "Date+Time": "1982-08-07T00:00:00Z", + "Hs (total) (m)": 0.7317, + "Tp (total) (s)": 8.6329 + }, + { + "Date+Time": "1982-08-08T00:00:00Z", + "Hs (total) (m)": 1.223, + "Tp (total) (s)": 7.9554 + }, + { + "Date+Time": "1982-08-09T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 8.993 + }, + { + "Date+Time": "1982-08-10T00:00:00Z", + "Hs (total) (m)": 1.4466, + "Tp (total) (s)": 9.2944 + }, + { + "Date+Time": "1982-08-11T00:00:00Z", + "Hs (total) (m)": 1.0453, + "Tp (total) (s)": 9.1624 + }, + { + "Date+Time": "1982-08-12T00:00:00Z", + "Hs (total) (m)": 3.5058, + "Tp (total) (s)": 10.8791 + }, + { + "Date+Time": "1982-08-13T00:00:00Z", + "Hs (total) (m)": 1.7891, + "Tp (total) (s)": 9.1113 + }, + { + "Date+Time": "1982-08-14T00:00:00Z", + "Hs (total) (m)": 1.2436, + "Tp (total) (s)": 8.5726 + }, + { + "Date+Time": "1982-08-15T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 8.0538 + }, + { + "Date+Time": "1982-08-16T00:00:00Z", + "Hs (total) (m)": 2.7627, + "Tp (total) (s)": 8.1797 + }, + { + "Date+Time": "1982-08-17T00:00:00Z", + "Hs (total) (m)": 3.1022, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "1982-08-18T00:00:00Z", + "Hs (total) (m)": 2.8161, + "Tp (total) (s)": 9.3471 + }, + { + "Date+Time": "1982-08-19T00:00:00Z", + "Hs (total) (m)": 2.0562, + "Tp (total) (s)": 9.5248 + }, + { + "Date+Time": "1982-08-20T00:00:00Z", + "Hs (total) (m)": 1.9021, + "Tp (total) (s)": 9.5714 + }, + { + "Date+Time": "1982-08-21T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 8.5803 + }, + { + "Date+Time": "1982-08-22T00:00:00Z", + "Hs (total) (m)": 1.9593, + "Tp (total) (s)": 7.886 + }, + { + "Date+Time": "1982-08-23T00:00:00Z", + "Hs (total) (m)": 1.999, + "Tp (total) (s)": 10.4045 + }, + { + "Date+Time": "1982-08-24T00:00:00Z", + "Hs (total) (m)": 1.5114, + "Tp (total) (s)": 8.6436 + }, + { + "Date+Time": "1982-08-25T00:00:00Z", + "Hs (total) (m)": 2.1241, + "Tp (total) (s)": 9.4417 + }, + { + "Date+Time": "1982-08-26T00:00:00Z", + "Hs (total) (m)": 2.3698, + "Tp (total) (s)": 9.637 + }, + { + "Date+Time": "1982-08-27T00:00:00Z", + "Hs (total) (m)": 1.8555, + "Tp (total) (s)": 10.6815 + }, + { + "Date+Time": "1982-08-28T00:00:00Z", + "Hs (total) (m)": 0.9339, + "Tp (total) (s)": 9.4195 + }, + { + "Date+Time": "1982-08-29T00:00:00Z", + "Hs (total) (m)": 2.3431, + "Tp (total) (s)": 6.9864 + }, + { + "Date+Time": "1982-08-30T00:00:00Z", + "Hs (total) (m)": 3.2754, + "Tp (total) (s)": 12.7316 + }, + { + "Date+Time": "1982-08-31T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 11.053 + }, + { + "Date+Time": "1982-09-01T00:00:00Z", + "Hs (total) (m)": 1.4161, + "Tp (total) (s)": 9.5065 + }, + { + "Date+Time": "1982-09-02T00:00:00Z", + "Hs (total) (m)": 1.1093, + "Tp (total) (s)": 9.2502 + }, + { + "Date+Time": "1982-09-03T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 12.3737 + }, + { + "Date+Time": "1982-09-04T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 9.5714 + }, + { + "Date+Time": "1982-09-05T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 8.5131 + }, + { + "Date+Time": "1982-09-06T00:00:00Z", + "Hs (total) (m)": 0.7668, + "Tp (total) (s)": 7.5045 + }, + { + "Date+Time": "1982-09-07T00:00:00Z", + "Hs (total) (m)": 1.9807, + "Tp (total) (s)": 8.6886 + }, + { + "Date+Time": "1982-09-08T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 9.36 + }, + { + "Date+Time": "1982-09-09T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 9.2547 + }, + { + "Date+Time": "1982-09-10T00:00:00Z", + "Hs (total) (m)": 2.5758, + "Tp (total) (s)": 8.6215 + }, + { + "Date+Time": "1982-09-11T00:00:00Z", + "Hs (total) (m)": 1.7937, + "Tp (total) (s)": 11.1789 + }, + { + "Date+Time": "1982-09-12T00:00:00Z", + "Hs (total) (m)": 2.3064, + "Tp (total) (s)": 12.0937 + }, + { + "Date+Time": "1982-09-13T00:00:00Z", + "Hs (total) (m)": 2.1256, + "Tp (total) (s)": 10.8921 + }, + { + "Date+Time": "1982-09-14T00:00:00Z", + "Hs (total) (m)": 1.7823, + "Tp (total) (s)": 8.4895 + }, + { + "Date+Time": "1982-09-15T00:00:00Z", + "Hs (total) (m)": 1.8097, + "Tp (total) (s)": 9.5172 + }, + { + "Date+Time": "1982-09-16T00:00:00Z", + "Hs (total) (m)": 1.1368, + "Tp (total) (s)": 8.9602 + }, + { + "Date+Time": "1982-09-17T00:00:00Z", + "Hs (total) (m)": 0.8095, + "Tp (total) (s)": 7.9356 + }, + { + "Date+Time": "1982-09-18T00:00:00Z", + "Hs (total) (m)": 1.0063, + "Tp (total) (s)": 13.0726 + }, + { + "Date+Time": "1982-09-19T00:00:00Z", + "Hs (total) (m)": 1.1185, + "Tp (total) (s)": 12.4027 + }, + { + "Date+Time": "1982-09-20T00:00:00Z", + "Hs (total) (m)": 0.9224, + "Tp (total) (s)": 10.7738 + }, + { + "Date+Time": "1982-09-21T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 9.3371 + }, + { + "Date+Time": "1982-09-22T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 10.6311 + }, + { + "Date+Time": "1982-09-23T00:00:00Z", + "Hs (total) (m)": 1.9723, + "Tp (total) (s)": 11.5856 + }, + { + "Date+Time": "1982-09-24T00:00:00Z", + "Hs (total) (m)": 2.2034, + "Tp (total) (s)": 10.4251 + }, + { + "Date+Time": "1982-09-25T00:00:00Z", + "Hs (total) (m)": 2.5506, + "Tp (total) (s)": 12.4218 + }, + { + "Date+Time": "1982-09-26T00:00:00Z", + "Hs (total) (m)": 2.2103, + "Tp (total) (s)": 12.579 + }, + { + "Date+Time": "1982-09-27T00:00:00Z", + "Hs (total) (m)": 1.9326, + "Tp (total) (s)": 8.7031 + }, + { + "Date+Time": "1982-09-28T00:00:00Z", + "Hs (total) (m)": 2.9443, + "Tp (total) (s)": 12.3539 + }, + { + "Date+Time": "1982-09-29T00:00:00Z", + "Hs (total) (m)": 3.193, + "Tp (total) (s)": 11.3048 + }, + { + "Date+Time": "1982-09-30T00:00:00Z", + "Hs (total) (m)": 2.0913, + "Tp (total) (s)": 11.2575 + }, + { + "Date+Time": "1982-10-01T00:00:00Z", + "Hs (total) (m)": 3.0358, + "Tp (total) (s)": 11.0477 + }, + { + "Date+Time": "1982-10-02T00:00:00Z", + "Hs (total) (m)": 3.5516, + "Tp (total) (s)": 13.4404 + }, + { + "Date+Time": "1982-10-03T00:00:00Z", + "Hs (total) (m)": 2.9015, + "Tp (total) (s)": 13.9988 + }, + { + "Date+Time": "1982-10-04T00:00:00Z", + "Hs (total) (m)": 2.7856, + "Tp (total) (s)": 11.2728 + }, + { + "Date+Time": "1982-10-05T00:00:00Z", + "Hs (total) (m)": 1.7594, + "Tp (total) (s)": 8.4056 + }, + { + "Date+Time": "1982-10-06T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 10.1955 + }, + { + "Date+Time": "1982-10-07T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 8.4002 + }, + { + "Date+Time": "1982-10-08T00:00:00Z", + "Hs (total) (m)": 0.9178, + "Tp (total) (s)": 8.723 + }, + { + "Date+Time": "1982-10-09T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 12.5256 + }, + { + "Date+Time": "1982-10-10T00:00:00Z", + "Hs (total) (m)": 0.9537, + "Tp (total) (s)": 11.4452 + }, + { + "Date+Time": "1982-10-11T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 11.5276 + }, + { + "Date+Time": "1982-10-12T00:00:00Z", + "Hs (total) (m)": 1.4801, + "Tp (total) (s)": 10.7433 + }, + { + "Date+Time": "1982-10-13T00:00:00Z", + "Hs (total) (m)": 4.4893, + "Tp (total) (s)": 12.5439 + }, + { + "Date+Time": "1982-10-14T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 12.4493 + }, + { + "Date+Time": "1982-10-15T00:00:00Z", + "Hs (total) (m)": 1.0186, + "Tp (total) (s)": 8.2194 + }, + { + "Date+Time": "1982-10-16T00:00:00Z", + "Hs (total) (m)": 1.6617, + "Tp (total) (s)": 6.2296 + }, + { + "Date+Time": "1982-10-17T00:00:00Z", + "Hs (total) (m)": 4.6381, + "Tp (total) (s)": 13.0612 + }, + { + "Date+Time": "1982-10-18T00:00:00Z", + "Hs (total) (m)": 3.5257, + "Tp (total) (s)": 13.3351 + }, + { + "Date+Time": "1982-10-19T00:00:00Z", + "Hs (total) (m)": 2.0562, + "Tp (total) (s)": 10.9127 + }, + { + "Date+Time": "1982-10-20T00:00:00Z", + "Hs (total) (m)": 2.3919, + "Tp (total) (s)": 11.4895 + }, + { + "Date+Time": "1982-10-21T00:00:00Z", + "Hs (total) (m)": 2.4186, + "Tp (total) (s)": 12.7438 + }, + { + "Date+Time": "1982-10-22T00:00:00Z", + "Hs (total) (m)": 2.0638, + "Tp (total) (s)": 12.4897 + }, + { + "Date+Time": "1982-10-23T00:00:00Z", + "Hs (total) (m)": 2.0104, + "Tp (total) (s)": 13.0131 + }, + { + "Date+Time": "1982-10-24T00:00:00Z", + "Hs (total) (m)": 2.3858, + "Tp (total) (s)": 11.5688 + }, + { + "Date+Time": "1982-10-25T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 11.536 + }, + { + "Date+Time": "1982-10-26T00:00:00Z", + "Hs (total) (m)": 2.5163, + "Tp (total) (s)": 13.5441 + }, + { + "Date+Time": "1982-10-27T00:00:00Z", + "Hs (total) (m)": 5.5376, + "Tp (total) (s)": 13.7745 + }, + { + "Date+Time": "1982-10-28T00:00:00Z", + "Hs (total) (m)": 3.6714, + "Tp (total) (s)": 11.8259 + }, + { + "Date+Time": "1982-10-29T00:00:00Z", + "Hs (total) (m)": 3.1686, + "Tp (total) (s)": 12.4531 + }, + { + "Date+Time": "1982-10-30T00:00:00Z", + "Hs (total) (m)": 2.8565, + "Tp (total) (s)": 12.2303 + }, + { + "Date+Time": "1982-10-31T00:00:00Z", + "Hs (total) (m)": 2.3621, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "1982-11-01T00:00:00Z", + "Hs (total) (m)": 1.3421, + "Tp (total) (s)": 9.4378 + }, + { + "Date+Time": "1982-11-02T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 9.238 + }, + { + "Date+Time": "1982-11-03T00:00:00Z", + "Hs (total) (m)": 1.2459, + "Tp (total) (s)": 10.2718 + }, + { + "Date+Time": "1982-11-04T00:00:00Z", + "Hs (total) (m)": 1.0285, + "Tp (total) (s)": 9.6408 + }, + { + "Date+Time": "1982-11-05T00:00:00Z", + "Hs (total) (m)": 2.1294, + "Tp (total) (s)": 10.1543 + }, + { + "Date+Time": "1982-11-06T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 9.6255 + }, + { + "Date+Time": "1982-11-07T00:00:00Z", + "Hs (total) (m)": 0.6432, + "Tp (total) (s)": 2.5979 + }, + { + "Date+Time": "1982-11-08T00:00:00Z", + "Hs (total) (m)": 1.5908, + "Tp (total) (s)": 13.7143 + }, + { + "Date+Time": "1982-11-09T00:00:00Z", + "Hs (total) (m)": 1.8609, + "Tp (total) (s)": 7.2031 + }, + { + "Date+Time": "1982-11-10T00:00:00Z", + "Hs (total) (m)": 3.7408, + "Tp (total) (s)": 8.7481 + }, + { + "Date+Time": "1982-11-11T00:00:00Z", + "Hs (total) (m)": 4.2383, + "Tp (total) (s)": 12.6759 + }, + { + "Date+Time": "1982-11-12T00:00:00Z", + "Hs (total) (m)": 4.532, + "Tp (total) (s)": 10.5281 + }, + { + "Date+Time": "1982-11-13T00:00:00Z", + "Hs (total) (m)": 2.1928, + "Tp (total) (s)": 11.2033 + }, + { + "Date+Time": "1982-11-14T00:00:00Z", + "Hs (total) (m)": 3.3753, + "Tp (total) (s)": 11.2308 + }, + { + "Date+Time": "1982-11-15T00:00:00Z", + "Hs (total) (m)": 2.1493, + "Tp (total) (s)": 11.6298 + }, + { + "Date+Time": "1982-11-16T00:00:00Z", + "Hs (total) (m)": 2.6322, + "Tp (total) (s)": 9.3547 + }, + { + "Date+Time": "1982-11-17T00:00:00Z", + "Hs (total) (m)": 3.9171, + "Tp (total) (s)": 15.6987 + }, + { + "Date+Time": "1982-11-18T00:00:00Z", + "Hs (total) (m)": 3.6699, + "Tp (total) (s)": 15.2364 + }, + { + "Date+Time": "1982-11-19T00:00:00Z", + "Hs (total) (m)": 5.9675, + "Tp (total) (s)": 15.723 + }, + { + "Date+Time": "1982-11-20T00:00:00Z", + "Hs (total) (m)": 4.0933, + "Tp (total) (s)": 15.1425 + }, + { + "Date+Time": "1982-11-21T00:00:00Z", + "Hs (total) (m)": 2.4117, + "Tp (total) (s)": 12.0327 + }, + { + "Date+Time": "1982-11-22T00:00:00Z", + "Hs (total) (m)": 4.3809, + "Tp (total) (s)": 10.4595 + }, + { + "Date+Time": "1982-11-23T00:00:00Z", + "Hs (total) (m)": 3.4738, + "Tp (total) (s)": 12.4119 + }, + { + "Date+Time": "1982-11-24T00:00:00Z", + "Hs (total) (m)": 1.8326, + "Tp (total) (s)": 11.6726 + }, + { + "Date+Time": "1982-11-25T00:00:00Z", + "Hs (total) (m)": 2.662, + "Tp (total) (s)": 10.4091 + }, + { + "Date+Time": "1982-11-26T00:00:00Z", + "Hs (total) (m)": 2.7841, + "Tp (total) (s)": 12.6019 + }, + { + "Date+Time": "1982-11-27T00:00:00Z", + "Hs (total) (m)": 1.1315, + "Tp (total) (s)": 11.5009 + }, + { + "Date+Time": "1982-11-28T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 11.9587 + }, + { + "Date+Time": "1982-11-29T00:00:00Z", + "Hs (total) (m)": 1.9997, + "Tp (total) (s)": 12.5179 + }, + { + "Date+Time": "1982-11-30T00:00:00Z", + "Hs (total) (m)": 3.2807, + "Tp (total) (s)": 13.4907 + }, + { + "Date+Time": "1982-12-01T00:00:00Z", + "Hs (total) (m)": 2.7009, + "Tp (total) (s)": 12.0945 + }, + { + "Date+Time": "1982-12-02T00:00:00Z", + "Hs (total) (m)": 1.796, + "Tp (total) (s)": 10.6944 + }, + { + "Date+Time": "1982-12-03T00:00:00Z", + "Hs (total) (m)": 1.9387, + "Tp (total) (s)": 12.8323 + }, + { + "Date+Time": "1982-12-04T00:00:00Z", + "Hs (total) (m)": 2.4728, + "Tp (total) (s)": 11.5352 + }, + { + "Date+Time": "1982-12-05T00:00:00Z", + "Hs (total) (m)": 2.1546, + "Tp (total) (s)": 10.3122 + }, + { + "Date+Time": "1982-12-06T00:00:00Z", + "Hs (total) (m)": 1.4901, + "Tp (total) (s)": 10.6258 + }, + { + "Date+Time": "1982-12-07T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 10.4923 + }, + { + "Date+Time": "1982-12-08T00:00:00Z", + "Hs (total) (m)": 3.1075, + "Tp (total) (s)": 10.2237 + }, + { + "Date+Time": "1982-12-09T00:00:00Z", + "Hs (total) (m)": 2.9695, + "Tp (total) (s)": 13.0787 + }, + { + "Date+Time": "1982-12-10T00:00:00Z", + "Hs (total) (m)": 2.6322, + "Tp (total) (s)": 11.4032 + }, + { + "Date+Time": "1982-12-11T00:00:00Z", + "Hs (total) (m)": 5.3969, + "Tp (total) (s)": 16.7923 + }, + { + "Date+Time": "1982-12-12T00:00:00Z", + "Hs (total) (m)": 3.4036, + "Tp (total) (s)": 15.2837 + }, + { + "Date+Time": "1982-12-13T00:00:00Z", + "Hs (total) (m)": 5.0244, + "Tp (total) (s)": 17.6928 + }, + { + "Date+Time": "1982-12-14T00:00:00Z", + "Hs (total) (m)": 2.1859, + "Tp (total) (s)": 13.5083 + }, + { + "Date+Time": "1982-12-15T00:00:00Z", + "Hs (total) (m)": 3.4761, + "Tp (total) (s)": 10.9333 + }, + { + "Date+Time": "1982-12-16T00:00:00Z", + "Hs (total) (m)": 4.2817, + "Tp (total) (s)": 12.8704 + }, + { + "Date+Time": "1982-12-17T00:00:00Z", + "Hs (total) (m)": 3.1739, + "Tp (total) (s)": 12.6606 + }, + { + "Date+Time": "1982-12-18T00:00:00Z", + "Hs (total) (m)": 2.9466, + "Tp (total) (s)": 12.8124 + }, + { + "Date+Time": "1982-12-19T00:00:00Z", + "Hs (total) (m)": 3.6531, + "Tp (total) (s)": 9.5614 + }, + { + "Date+Time": "1982-12-20T00:00:00Z", + "Hs (total) (m)": 7.6465, + "Tp (total) (s)": 17.1861 + }, + { + "Date+Time": "1982-12-21T00:00:00Z", + "Hs (total) (m)": 4.0635, + "Tp (total) (s)": 14.9548 + }, + { + "Date+Time": "1982-12-22T00:00:00Z", + "Hs (total) (m)": 2.1332, + "Tp (total) (s)": 13.5746 + }, + { + "Date+Time": "1982-12-23T00:00:00Z", + "Hs (total) (m)": 1.5015, + "Tp (total) (s)": 10.4854 + }, + { + "Date+Time": "1982-12-24T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 9.154 + }, + { + "Date+Time": "1982-12-25T00:00:00Z", + "Hs (total) (m)": 2.047, + "Tp (total) (s)": 10.4114 + }, + { + "Date+Time": "1982-12-26T00:00:00Z", + "Hs (total) (m)": 3.1388, + "Tp (total) (s)": 12.5149 + }, + { + "Date+Time": "1982-12-27T00:00:00Z", + "Hs (total) (m)": 3.5661, + "Tp (total) (s)": 15.2135 + }, + { + "Date+Time": "1982-12-28T00:00:00Z", + "Hs (total) (m)": 2.5025, + "Tp (total) (s)": 13.0001 + }, + { + "Date+Time": "1982-12-29T00:00:00Z", + "Hs (total) (m)": 2.1332, + "Tp (total) (s)": 12.7216 + }, + { + "Date+Time": "1982-12-30T00:00:00Z", + "Hs (total) (m)": 3.061, + "Tp (total) (s)": 12.6232 + }, + { + "Date+Time": "1982-12-31T00:00:00Z", + "Hs (total) (m)": 2.1172, + "Tp (total) (s)": 14.4734 + }, + { + "Date+Time": "1983-01-01T00:00:00Z", + "Hs (total) (m)": 3.8423, + "Tp (total) (s)": 11.2682 + }, + { + "Date+Time": "1983-01-02T00:00:00Z", + "Hs (total) (m)": 3.2823, + "Tp (total) (s)": 11.7504 + }, + { + "Date+Time": "1983-01-03T00:00:00Z", + "Hs (total) (m)": 5.2801, + "Tp (total) (s)": 15.7247 + }, + { + "Date+Time": "1983-01-04T00:00:00Z", + "Hs (total) (m)": 3.9445, + "Tp (total) (s)": 13.2763 + }, + { + "Date+Time": "1983-01-05T00:00:00Z", + "Hs (total) (m)": 3.7095, + "Tp (total) (s)": 12.4989 + }, + { + "Date+Time": "1983-01-06T00:00:00Z", + "Hs (total) (m)": 4.9458, + "Tp (total) (s)": 12.6316 + }, + { + "Date+Time": "1983-01-07T00:00:00Z", + "Hs (total) (m)": 4.7311, + "Tp (total) (s)": 14.1186 + }, + { + "Date+Time": "1983-01-08T00:00:00Z", + "Hs (total) (m)": 4.3306, + "Tp (total) (s)": 14.9243 + }, + { + "Date+Time": "1983-01-09T00:00:00Z", + "Hs (total) (m)": 4.2856, + "Tp (total) (s)": 13.2527 + }, + { + "Date+Time": "1983-01-10T00:00:00Z", + "Hs (total) (m)": 4.1192, + "Tp (total) (s)": 15.7895 + }, + { + "Date+Time": "1983-01-11T00:00:00Z", + "Hs (total) (m)": 4.5297, + "Tp (total) (s)": 13.4991 + }, + { + "Date+Time": "1983-01-12T00:00:00Z", + "Hs (total) (m)": 3.5775, + "Tp (total) (s)": 12.4615 + }, + { + "Date+Time": "1983-01-13T00:00:00Z", + "Hs (total) (m)": 2.5117, + "Tp (total) (s)": 11.9259 + }, + { + "Date+Time": "1983-01-14T00:00:00Z", + "Hs (total) (m)": 2.6009, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "1983-01-15T00:00:00Z", + "Hs (total) (m)": 2.8771, + "Tp (total) (s)": 11.5871 + }, + { + "Date+Time": "1983-01-16T00:00:00Z", + "Hs (total) (m)": 3.0396, + "Tp (total) (s)": 12.5835 + }, + { + "Date+Time": "1983-01-17T00:00:00Z", + "Hs (total) (m)": 2.8047, + "Tp (total) (s)": 12.7194 + }, + { + "Date+Time": "1983-01-18T00:00:00Z", + "Hs (total) (m)": 3.0007, + "Tp (total) (s)": 11.6901 + }, + { + "Date+Time": "1983-01-19T00:00:00Z", + "Hs (total) (m)": 2.749, + "Tp (total) (s)": 12.3173 + }, + { + "Date+Time": "1983-01-20T00:00:00Z", + "Hs (total) (m)": 2.0753, + "Tp (total) (s)": 12.5286 + }, + { + "Date+Time": "1983-01-21T00:00:00Z", + "Hs (total) (m)": 1.8494, + "Tp (total) (s)": 12.1174 + }, + { + "Date+Time": "1983-01-22T00:00:00Z", + "Hs (total) (m)": 1.8693, + "Tp (total) (s)": 7.3252 + }, + { + "Date+Time": "1983-01-23T00:00:00Z", + "Hs (total) (m)": 2.282, + "Tp (total) (s)": 9.6072 + }, + { + "Date+Time": "1983-01-24T00:00:00Z", + "Hs (total) (m)": 3.7866, + "Tp (total) (s)": 12.4172 + }, + { + "Date+Time": "1983-01-25T00:00:00Z", + "Hs (total) (m)": 2.7978, + "Tp (total) (s)": 11.5246 + }, + { + "Date+Time": "1983-01-26T00:00:00Z", + "Hs (total) (m)": 2.8314, + "Tp (total) (s)": 13.5052 + }, + { + "Date+Time": "1983-01-27T00:00:00Z", + "Hs (total) (m)": 3.7988, + "Tp (total) (s)": 15.4241 + }, + { + "Date+Time": "1983-01-28T00:00:00Z", + "Hs (total) (m)": 3.1899, + "Tp (total) (s)": 13.7097 + }, + { + "Date+Time": "1983-01-29T00:00:00Z", + "Hs (total) (m)": 3.4188, + "Tp (total) (s)": 10.9668 + }, + { + "Date+Time": "1983-01-30T00:00:00Z", + "Hs (total) (m)": 3.7255, + "Tp (total) (s)": 12.5111 + }, + { + "Date+Time": "1983-01-31T00:00:00Z", + "Hs (total) (m)": 4.5701, + "Tp (total) (s)": 14.0454 + }, + { + "Date+Time": "1983-02-01T00:00:00Z", + "Hs (total) (m)": 5.0183, + "Tp (total) (s)": 12.7854 + }, + { + "Date+Time": "1983-02-02T00:00:00Z", + "Hs (total) (m)": 3.9682, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "1983-02-03T00:00:00Z", + "Hs (total) (m)": 2.71, + "Tp (total) (s)": 12.6507 + }, + { + "Date+Time": "1983-02-04T00:00:00Z", + "Hs (total) (m)": 1.6381, + "Tp (total) (s)": 11.3346 + }, + { + "Date+Time": "1983-02-05T00:00:00Z", + "Hs (total) (m)": 1.8395, + "Tp (total) (s)": 7.6769 + }, + { + "Date+Time": "1983-02-06T00:00:00Z", + "Hs (total) (m)": 2.8703, + "Tp (total) (s)": 14.6825 + }, + { + "Date+Time": "1983-02-07T00:00:00Z", + "Hs (total) (m)": 3.0251, + "Tp (total) (s)": 15.1028 + }, + { + "Date+Time": "1983-02-08T00:00:00Z", + "Hs (total) (m)": 1.9761, + "Tp (total) (s)": 14.2277 + }, + { + "Date+Time": "1983-02-09T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 12.225 + }, + { + "Date+Time": "1983-02-10T00:00:00Z", + "Hs (total) (m)": 0.7035, + "Tp (total) (s)": 9.6248 + }, + { + "Date+Time": "1983-02-11T00:00:00Z", + "Hs (total) (m)": 0.8812, + "Tp (total) (s)": 3.0435 + }, + { + "Date+Time": "1983-02-12T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 3.8034 + }, + { + "Date+Time": "1983-02-13T00:00:00Z", + "Hs (total) (m)": 0.8011, + "Tp (total) (s)": 10.3137 + }, + { + "Date+Time": "1983-02-14T00:00:00Z", + "Hs (total) (m)": 0.6096, + "Tp (total) (s)": 10.3534 + }, + { + "Date+Time": "1983-02-15T00:00:00Z", + "Hs (total) (m)": 0.7141, + "Tp (total) (s)": 11.5955 + }, + { + "Date+Time": "1983-02-16T00:00:00Z", + "Hs (total) (m)": 1.0216, + "Tp (total) (s)": 3.3532 + }, + { + "Date+Time": "1983-02-17T00:00:00Z", + "Hs (total) (m)": 1.1681, + "Tp (total) (s)": 15.5934 + }, + { + "Date+Time": "1983-02-18T00:00:00Z", + "Hs (total) (m)": 1.1551, + "Tp (total) (s)": 13.9271 + }, + { + "Date+Time": "1983-02-19T00:00:00Z", + "Hs (total) (m)": 0.9072, + "Tp (total) (s)": 10.3298 + }, + { + "Date+Time": "1983-02-20T00:00:00Z", + "Hs (total) (m)": 1.2803, + "Tp (total) (s)": 15.701 + }, + { + "Date+Time": "1983-02-21T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 3.8812 + }, + { + "Date+Time": "1983-02-22T00:00:00Z", + "Hs (total) (m)": 1.4779, + "Tp (total) (s)": 5.3049 + }, + { + "Date+Time": "1983-02-23T00:00:00Z", + "Hs (total) (m)": 1.1551, + "Tp (total) (s)": 5.1752 + }, + { + "Date+Time": "1983-02-24T00:00:00Z", + "Hs (total) (m)": 0.9865, + "Tp (total) (s)": 15.4584 + }, + { + "Date+Time": "1983-02-25T00:00:00Z", + "Hs (total) (m)": 1.3321, + "Tp (total) (s)": 15.0769 + }, + { + "Date+Time": "1983-02-26T00:00:00Z", + "Hs (total) (m)": 1.8654, + "Tp (total) (s)": 12.8124 + }, + { + "Date+Time": "1983-02-27T00:00:00Z", + "Hs (total) (m)": 2.8726, + "Tp (total) (s)": 15.1639 + }, + { + "Date+Time": "1983-02-28T00:00:00Z", + "Hs (total) (m)": 3.4822, + "Tp (total) (s)": 12.978 + }, + { + "Date+Time": "1983-03-01T00:00:00Z", + "Hs (total) (m)": 2.7757, + "Tp (total) (s)": 13.8745 + }, + { + "Date+Time": "1983-03-02T00:00:00Z", + "Hs (total) (m)": 3.0129, + "Tp (total) (s)": 12.595 + }, + { + "Date+Time": "1983-03-03T00:00:00Z", + "Hs (total) (m)": 2.5872, + "Tp (total) (s)": 13.4228 + }, + { + "Date+Time": "1983-03-04T00:00:00Z", + "Hs (total) (m)": 2.6543, + "Tp (total) (s)": 16.6723 + }, + { + "Date+Time": "1983-03-05T00:00:00Z", + "Hs (total) (m)": 2.8954, + "Tp (total) (s)": 16.86 + }, + { + "Date+Time": "1983-03-06T00:00:00Z", + "Hs (total) (m)": 2.5712, + "Tp (total) (s)": 15.659 + }, + { + "Date+Time": "1983-03-07T00:00:00Z", + "Hs (total) (m)": 2.2637, + "Tp (total) (s)": 13.3755 + }, + { + "Date+Time": "1983-03-08T00:00:00Z", + "Hs (total) (m)": 2.073, + "Tp (total) (s)": 12.9872 + }, + { + "Date+Time": "1983-03-09T00:00:00Z", + "Hs (total) (m)": 1.9196, + "Tp (total) (s)": 12.8773 + }, + { + "Date+Time": "1983-03-10T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 12.6316 + }, + { + "Date+Time": "1983-03-11T00:00:00Z", + "Hs (total) (m)": 1.397, + "Tp (total) (s)": 12.534 + }, + { + "Date+Time": "1983-03-12T00:00:00Z", + "Hs (total) (m)": 2.0989, + "Tp (total) (s)": 11.7283 + }, + { + "Date+Time": "1983-03-13T00:00:00Z", + "Hs (total) (m)": 2.0043, + "Tp (total) (s)": 10.5884 + }, + { + "Date+Time": "1983-03-14T00:00:00Z", + "Hs (total) (m)": 1.5999, + "Tp (total) (s)": 9.7552 + }, + { + "Date+Time": "1983-03-15T00:00:00Z", + "Hs (total) (m)": 1.8471, + "Tp (total) (s)": 11.4208 + }, + { + "Date+Time": "1983-03-16T00:00:00Z", + "Hs (total) (m)": 1.9852, + "Tp (total) (s)": 11.0813 + }, + { + "Date+Time": "1983-03-17T00:00:00Z", + "Hs (total) (m)": 1.9395, + "Tp (total) (s)": 8.9961 + }, + { + "Date+Time": "1983-03-18T00:00:00Z", + "Hs (total) (m)": 2.1622, + "Tp (total) (s)": 10.1306 + }, + { + "Date+Time": "1983-03-19T00:00:00Z", + "Hs (total) (m)": 2.1813, + "Tp (total) (s)": 10.0879 + }, + { + "Date+Time": "1983-03-20T00:00:00Z", + "Hs (total) (m)": 2.3522, + "Tp (total) (s)": 9.8949 + }, + { + "Date+Time": "1983-03-21T00:00:00Z", + "Hs (total) (m)": 2.9534, + "Tp (total) (s)": 12.7552 + }, + { + "Date+Time": "1983-03-22T00:00:00Z", + "Hs (total) (m)": 4.3786, + "Tp (total) (s)": 15.0525 + }, + { + "Date+Time": "1983-03-23T00:00:00Z", + "Hs (total) (m)": 3.9102, + "Tp (total) (s)": 15.2387 + }, + { + "Date+Time": "1983-03-24T00:00:00Z", + "Hs (total) (m)": 2.9427, + "Tp (total) (s)": 14.8122 + }, + { + "Date+Time": "1983-03-25T00:00:00Z", + "Hs (total) (m)": 1.9738, + "Tp (total) (s)": 11.4994 + }, + { + "Date+Time": "1983-03-26T00:00:00Z", + "Hs (total) (m)": 2.0631, + "Tp (total) (s)": 10.7364 + }, + { + "Date+Time": "1983-03-27T00:00:00Z", + "Hs (total) (m)": 1.8357, + "Tp (total) (s)": 10.4289 + }, + { + "Date+Time": "1983-03-28T00:00:00Z", + "Hs (total) (m)": 1.9608, + "Tp (total) (s)": 11.726 + }, + { + "Date+Time": "1983-03-29T00:00:00Z", + "Hs (total) (m)": 1.6724, + "Tp (total) (s)": 11.6703 + }, + { + "Date+Time": "1983-03-30T00:00:00Z", + "Hs (total) (m)": 2.0478, + "Tp (total) (s)": 10.2184 + }, + { + "Date+Time": "1983-03-31T00:00:00Z", + "Hs (total) (m)": 3.225, + "Tp (total) (s)": 13.4533 + }, + { + "Date+Time": "1983-04-01T00:00:00Z", + "Hs (total) (m)": 2.7573, + "Tp (total) (s)": 13.0696 + }, + { + "Date+Time": "1983-04-02T00:00:00Z", + "Hs (total) (m)": 1.693, + "Tp (total) (s)": 12.476 + }, + { + "Date+Time": "1983-04-03T00:00:00Z", + "Hs (total) (m)": 1.0826, + "Tp (total) (s)": 11.2705 + }, + { + "Date+Time": "1983-04-04T00:00:00Z", + "Hs (total) (m)": 1.1612, + "Tp (total) (s)": 7.5884 + }, + { + "Date+Time": "1983-04-05T00:00:00Z", + "Hs (total) (m)": 2.2271, + "Tp (total) (s)": 12.2211 + }, + { + "Date+Time": "1983-04-06T00:00:00Z", + "Hs (total) (m)": 2.2317, + "Tp (total) (s)": 11.8137 + }, + { + "Date+Time": "1983-04-07T00:00:00Z", + "Hs (total) (m)": 2.0173, + "Tp (total) (s)": 11.5207 + }, + { + "Date+Time": "1983-04-08T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 10.4213 + }, + { + "Date+Time": "1983-04-09T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 9.83 + }, + { + "Date+Time": "1983-04-10T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 10.0558 + }, + { + "Date+Time": "1983-04-11T00:00:00Z", + "Hs (total) (m)": 1.1078, + "Tp (total) (s)": 11.037 + }, + { + "Date+Time": "1983-04-12T00:00:00Z", + "Hs (total) (m)": 0.8827, + "Tp (total) (s)": 3.7042 + }, + { + "Date+Time": "1983-04-13T00:00:00Z", + "Hs (total) (m)": 1.3497, + "Tp (total) (s)": 15.5286 + }, + { + "Date+Time": "1983-04-14T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 15.4134 + }, + { + "Date+Time": "1983-04-15T00:00:00Z", + "Hs (total) (m)": 1.6762, + "Tp (total) (s)": 14.8144 + }, + { + "Date+Time": "1983-04-16T00:00:00Z", + "Hs (total) (m)": 1.6602, + "Tp (total) (s)": 12.1906 + }, + { + "Date+Time": "1983-04-17T00:00:00Z", + "Hs (total) (m)": 1.822, + "Tp (total) (s)": 13.892 + }, + { + "Date+Time": "1983-04-18T00:00:00Z", + "Hs (total) (m)": 2.1661, + "Tp (total) (s)": 13.947 + }, + { + "Date+Time": "1983-04-19T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 13.5502 + }, + { + "Date+Time": "1983-04-20T00:00:00Z", + "Hs (total) (m)": 1.1437, + "Tp (total) (s)": 12.1075 + }, + { + "Date+Time": "1983-04-21T00:00:00Z", + "Hs (total) (m)": 0.8179, + "Tp (total) (s)": 11.4681 + }, + { + "Date+Time": "1983-04-22T00:00:00Z", + "Hs (total) (m)": 0.7263, + "Tp (total) (s)": 11.655 + }, + { + "Date+Time": "1983-04-23T00:00:00Z", + "Hs (total) (m)": 0.8637, + "Tp (total) (s)": 3.0587 + }, + { + "Date+Time": "1983-04-24T00:00:00Z", + "Hs (total) (m)": 0.5966, + "Tp (total) (s)": 10.4472 + }, + { + "Date+Time": "1983-04-25T00:00:00Z", + "Hs (total) (m)": 0.7843, + "Tp (total) (s)": 9.8285 + }, + { + "Date+Time": "1983-04-26T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 10.754 + }, + { + "Date+Time": "1983-04-27T00:00:00Z", + "Hs (total) (m)": 0.8339, + "Tp (total) (s)": 3.3929 + }, + { + "Date+Time": "1983-04-28T00:00:00Z", + "Hs (total) (m)": 0.441, + "Tp (total) (s)": 9.5622 + }, + { + "Date+Time": "1983-04-29T00:00:00Z", + "Hs (total) (m)": 0.3479, + "Tp (total) (s)": 9.547 + }, + { + "Date+Time": "1983-04-30T00:00:00Z", + "Hs (total) (m)": 0.3601, + "Tp (total) (s)": 7.828 + }, + { + "Date+Time": "1983-05-01T00:00:00Z", + "Hs (total) (m)": 0.4074, + "Tp (total) (s)": 2.2828 + }, + { + "Date+Time": "1983-05-02T00:00:00Z", + "Hs (total) (m)": 0.5165, + "Tp (total) (s)": 12.1761 + }, + { + "Date+Time": "1983-05-03T00:00:00Z", + "Hs (total) (m)": 0.5799, + "Tp (total) (s)": 7.062 + }, + { + "Date+Time": "1983-05-04T00:00:00Z", + "Hs (total) (m)": 0.4982, + "Tp (total) (s)": 6.8735 + }, + { + "Date+Time": "1983-05-05T00:00:00Z", + "Hs (total) (m)": 1.0765, + "Tp (total) (s)": 4.8151 + }, + { + "Date+Time": "1983-05-06T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 8.7588 + }, + { + "Date+Time": "1983-05-07T00:00:00Z", + "Hs (total) (m)": 0.8286, + "Tp (total) (s)": 9.0838 + }, + { + "Date+Time": "1983-05-08T00:00:00Z", + "Hs (total) (m)": 0.8911, + "Tp (total) (s)": 8.7687 + }, + { + "Date+Time": "1983-05-09T00:00:00Z", + "Hs (total) (m)": 1.4191, + "Tp (total) (s)": 5.9557 + }, + { + "Date+Time": "1983-05-10T00:00:00Z", + "Hs (total) (m)": 3.7118, + "Tp (total) (s)": 12.4073 + }, + { + "Date+Time": "1983-05-11T00:00:00Z", + "Hs (total) (m)": 4.0132, + "Tp (total) (s)": 14.1415 + }, + { + "Date+Time": "1983-05-12T00:00:00Z", + "Hs (total) (m)": 2.8985, + "Tp (total) (s)": 13.4037 + }, + { + "Date+Time": "1983-05-13T00:00:00Z", + "Hs (total) (m)": 1.6297, + "Tp (total) (s)": 11.0065 + }, + { + "Date+Time": "1983-05-14T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 8.0164 + }, + { + "Date+Time": "1983-05-15T00:00:00Z", + "Hs (total) (m)": 0.9873, + "Tp (total) (s)": 7.9165 + }, + { + "Date+Time": "1983-05-16T00:00:00Z", + "Hs (total) (m)": 1.3787, + "Tp (total) (s)": 11.259 + }, + { + "Date+Time": "1983-05-17T00:00:00Z", + "Hs (total) (m)": 1.4122, + "Tp (total) (s)": 12.6164 + }, + { + "Date+Time": "1983-05-18T00:00:00Z", + "Hs (total) (m)": 1.1376, + "Tp (total) (s)": 12.5698 + }, + { + "Date+Time": "1983-05-19T00:00:00Z", + "Hs (total) (m)": 0.9499, + "Tp (total) (s)": 12.2143 + }, + { + "Date+Time": "1983-05-20T00:00:00Z", + "Hs (total) (m)": 0.8889, + "Tp (total) (s)": 11.4116 + }, + { + "Date+Time": "1983-05-21T00:00:00Z", + "Hs (total) (m)": 0.8156, + "Tp (total) (s)": 3.3807 + }, + { + "Date+Time": "1983-05-22T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 7.6678 + }, + { + "Date+Time": "1983-05-23T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 6.4859 + }, + { + "Date+Time": "1983-05-24T00:00:00Z", + "Hs (total) (m)": 1.0094, + "Tp (total) (s)": 8.6772 + }, + { + "Date+Time": "1983-05-25T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 8.549 + }, + { + "Date+Time": "1983-05-26T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 8.5971 + }, + { + "Date+Time": "1983-05-27T00:00:00Z", + "Hs (total) (m)": 1.1017, + "Tp (total) (s)": 10.3717 + }, + { + "Date+Time": "1983-05-28T00:00:00Z", + "Hs (total) (m)": 1.0735, + "Tp (total) (s)": 10.3458 + }, + { + "Date+Time": "1983-05-29T00:00:00Z", + "Hs (total) (m)": 0.9178, + "Tp (total) (s)": 9.9063 + }, + { + "Date+Time": "1983-05-30T00:00:00Z", + "Hs (total) (m)": 0.6966, + "Tp (total) (s)": 9.4455 + }, + { + "Date+Time": "1983-05-31T00:00:00Z", + "Hs (total) (m)": 0.7813, + "Tp (total) (s)": 8.5345 + }, + { + "Date+Time": "1983-06-01T00:00:00Z", + "Hs (total) (m)": 0.8553, + "Tp (total) (s)": 8.858 + }, + { + "Date+Time": "1983-06-02T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 7.6685 + }, + { + "Date+Time": "1983-06-03T00:00:00Z", + "Hs (total) (m)": 0.5821, + "Tp (total) (s)": 7.5594 + }, + { + "Date+Time": "1983-06-04T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 8.9099 + }, + { + "Date+Time": "1983-06-05T00:00:00Z", + "Hs (total) (m)": 0.8881, + "Tp (total) (s)": 8.7291 + }, + { + "Date+Time": "1983-06-06T00:00:00Z", + "Hs (total) (m)": 0.6447, + "Tp (total) (s)": 8.166 + }, + { + "Date+Time": "1983-06-07T00:00:00Z", + "Hs (total) (m)": 0.7141, + "Tp (total) (s)": 11.9884 + }, + { + "Date+Time": "1983-06-08T00:00:00Z", + "Hs (total) (m)": 0.7927, + "Tp (total) (s)": 11.1278 + }, + { + "Date+Time": "1983-06-09T00:00:00Z", + "Hs (total) (m)": 0.8095, + "Tp (total) (s)": 9.7423 + }, + { + "Date+Time": "1983-06-10T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 8.5566 + }, + { + "Date+Time": "1983-06-11T00:00:00Z", + "Hs (total) (m)": 2.5826, + "Tp (total) (s)": 8.5582 + }, + { + "Date+Time": "1983-06-12T00:00:00Z", + "Hs (total) (m)": 2.3507, + "Tp (total) (s)": 10.8417 + }, + { + "Date+Time": "1983-06-13T00:00:00Z", + "Hs (total) (m)": 2.591, + "Tp (total) (s)": 12.9826 + }, + { + "Date+Time": "1983-06-14T00:00:00Z", + "Hs (total) (m)": 2.5277, + "Tp (total) (s)": 10.6708 + }, + { + "Date+Time": "1983-06-15T00:00:00Z", + "Hs (total) (m)": 2.1424, + "Tp (total) (s)": 10.0864 + }, + { + "Date+Time": "1983-06-16T00:00:00Z", + "Hs (total) (m)": 1.5229, + "Tp (total) (s)": 9.489 + }, + { + "Date+Time": "1983-06-17T00:00:00Z", + "Hs (total) (m)": 1.1376, + "Tp (total) (s)": 8.3987 + }, + { + "Date+Time": "1983-06-18T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 7.8578 + }, + { + "Date+Time": "1983-06-19T00:00:00Z", + "Hs (total) (m)": 0.866, + "Tp (total) (s)": 10.5861 + }, + { + "Date+Time": "1983-06-20T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 10.6204 + }, + { + "Date+Time": "1983-06-21T00:00:00Z", + "Hs (total) (m)": 0.9247, + "Tp (total) (s)": 10.3679 + }, + { + "Date+Time": "1983-06-22T00:00:00Z", + "Hs (total) (m)": 0.8415, + "Tp (total) (s)": 9.5523 + }, + { + "Date+Time": "1983-06-23T00:00:00Z", + "Hs (total) (m)": 0.7805, + "Tp (total) (s)": 8.7405 + }, + { + "Date+Time": "1983-06-24T00:00:00Z", + "Hs (total) (m)": 0.7187, + "Tp (total) (s)": 8.4437 + }, + { + "Date+Time": "1983-06-25T00:00:00Z", + "Hs (total) (m)": 0.5684, + "Tp (total) (s)": 4.8334 + }, + { + "Date+Time": "1983-06-26T00:00:00Z", + "Hs (total) (m)": 0.7019, + "Tp (total) (s)": 6.7881 + }, + { + "Date+Time": "1983-06-27T00:00:00Z", + "Hs (total) (m)": 1.0384, + "Tp (total) (s)": 11.5635 + }, + { + "Date+Time": "1983-06-28T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 10.5129 + }, + { + "Date+Time": "1983-06-29T00:00:00Z", + "Hs (total) (m)": 1.2238, + "Tp (total) (s)": 8.6222 + }, + { + "Date+Time": "1983-06-30T00:00:00Z", + "Hs (total) (m)": 1.1216, + "Tp (total) (s)": 8.4071 + }, + { + "Date+Time": "1983-07-01T00:00:00Z", + "Hs (total) (m)": 0.7874, + "Tp (total) (s)": 7.0383 + }, + { + "Date+Time": "1983-07-02T00:00:00Z", + "Hs (total) (m)": 1.7548, + "Tp (total) (s)": 7.4969 + }, + { + "Date+Time": "1983-07-03T00:00:00Z", + "Hs (total) (m)": 1.3352, + "Tp (total) (s)": 7.3122 + }, + { + "Date+Time": "1983-07-04T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 8.9381 + }, + { + "Date+Time": "1983-07-05T00:00:00Z", + "Hs (total) (m)": 1.4618, + "Tp (total) (s)": 12.6446 + }, + { + "Date+Time": "1983-07-06T00:00:00Z", + "Hs (total) (m)": 1.4565, + "Tp (total) (s)": 12.3882 + }, + { + "Date+Time": "1983-07-07T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 10.5342 + }, + { + "Date+Time": "1983-07-08T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 7.9463 + }, + { + "Date+Time": "1983-07-09T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 8.1141 + }, + { + "Date+Time": "1983-07-10T00:00:00Z", + "Hs (total) (m)": 0.6149, + "Tp (total) (s)": 7.2916 + }, + { + "Date+Time": "1983-07-11T00:00:00Z", + "Hs (total) (m)": 0.5615, + "Tp (total) (s)": 9.4317 + }, + { + "Date+Time": "1983-07-12T00:00:00Z", + "Hs (total) (m)": 0.8309, + "Tp (total) (s)": 8.7237 + }, + { + "Date+Time": "1983-07-13T00:00:00Z", + "Hs (total) (m)": 0.6294, + "Tp (total) (s)": 7.8059 + }, + { + "Date+Time": "1983-07-14T00:00:00Z", + "Hs (total) (m)": 0.5722, + "Tp (total) (s)": 6.9315 + }, + { + "Date+Time": "1983-07-15T00:00:00Z", + "Hs (total) (m)": 0.502, + "Tp (total) (s)": 9.7736 + }, + { + "Date+Time": "1983-07-16T00:00:00Z", + "Hs (total) (m)": 0.6325, + "Tp (total) (s)": 7.9142 + }, + { + "Date+Time": "1983-07-17T00:00:00Z", + "Hs (total) (m)": 0.6256, + "Tp (total) (s)": 7.7006 + }, + { + "Date+Time": "1983-07-18T00:00:00Z", + "Hs (total) (m)": 0.6623, + "Tp (total) (s)": 7.3283 + }, + { + "Date+Time": "1983-07-19T00:00:00Z", + "Hs (total) (m)": 0.8377, + "Tp (total) (s)": 8.7725 + }, + { + "Date+Time": "1983-07-20T00:00:00Z", + "Hs (total) (m)": 0.6455, + "Tp (total) (s)": 11.2148 + }, + { + "Date+Time": "1983-07-21T00:00:00Z", + "Hs (total) (m)": 0.5097, + "Tp (total) (s)": 9.7072 + }, + { + "Date+Time": "1983-07-22T00:00:00Z", + "Hs (total) (m)": 0.7973, + "Tp (total) (s)": 9.5378 + }, + { + "Date+Time": "1983-07-23T00:00:00Z", + "Hs (total) (m)": 0.9079, + "Tp (total) (s)": 9.4081 + }, + { + "Date+Time": "1983-07-24T00:00:00Z", + "Hs (total) (m)": 0.8301, + "Tp (total) (s)": 8.8054 + }, + { + "Date+Time": "1983-07-25T00:00:00Z", + "Hs (total) (m)": 1.0895, + "Tp (total) (s)": 8.8214 + }, + { + "Date+Time": "1983-07-26T00:00:00Z", + "Hs (total) (m)": 0.7591, + "Tp (total) (s)": 8.0912 + }, + { + "Date+Time": "1983-07-27T00:00:00Z", + "Hs (total) (m)": 1.1063, + "Tp (total) (s)": 11.9625 + }, + { + "Date+Time": "1983-07-28T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 10.7501 + }, + { + "Date+Time": "1983-07-29T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 9.608 + }, + { + "Date+Time": "1983-07-30T00:00:00Z", + "Hs (total) (m)": 1.3283, + "Tp (total) (s)": 11.6802 + }, + { + "Date+Time": "1983-07-31T00:00:00Z", + "Hs (total) (m)": 1.339, + "Tp (total) (s)": 11.024 + }, + { + "Date+Time": "1983-08-01T00:00:00Z", + "Hs (total) (m)": 1.3161, + "Tp (total) (s)": 10.1291 + }, + { + "Date+Time": "1983-08-02T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 8.4864 + }, + { + "Date+Time": "1983-08-03T00:00:00Z", + "Hs (total) (m)": 0.8461, + "Tp (total) (s)": 8.3895 + }, + { + "Date+Time": "1983-08-04T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 7.036 + }, + { + "Date+Time": "1983-08-05T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 9.7621 + }, + { + "Date+Time": "1983-08-06T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 8.7596 + }, + { + "Date+Time": "1983-08-07T00:00:00Z", + "Hs (total) (m)": 0.6966, + "Tp (total) (s)": 8.7634 + }, + { + "Date+Time": "1983-08-08T00:00:00Z", + "Hs (total) (m)": 0.6867, + "Tp (total) (s)": 8.3979 + }, + { + "Date+Time": "1983-08-09T00:00:00Z", + "Hs (total) (m)": 0.6592, + "Tp (total) (s)": 10.474 + }, + { + "Date+Time": "1983-08-10T00:00:00Z", + "Hs (total) (m)": 0.7813, + "Tp (total) (s)": 10.4495 + }, + { + "Date+Time": "1983-08-11T00:00:00Z", + "Hs (total) (m)": 0.721, + "Tp (total) (s)": 9.4485 + }, + { + "Date+Time": "1983-08-12T00:00:00Z", + "Hs (total) (m)": 0.7904, + "Tp (total) (s)": 9.6118 + }, + { + "Date+Time": "1983-08-13T00:00:00Z", + "Hs (total) (m)": 0.7614, + "Tp (total) (s)": 8.8672 + }, + { + "Date+Time": "1983-08-14T00:00:00Z", + "Hs (total) (m)": 0.6066, + "Tp (total) (s)": 8.1805 + }, + { + "Date+Time": "1983-08-15T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 5.8664 + }, + { + "Date+Time": "1983-08-16T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 8.6459 + }, + { + "Date+Time": "1983-08-17T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 8.6497 + }, + { + "Date+Time": "1983-08-18T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 8.7931 + }, + { + "Date+Time": "1983-08-19T00:00:00Z", + "Hs (total) (m)": 1.1567, + "Tp (total) (s)": 8.2087 + }, + { + "Date+Time": "1983-08-20T00:00:00Z", + "Hs (total) (m)": 0.9888, + "Tp (total) (s)": 8.375 + }, + { + "Date+Time": "1983-08-21T00:00:00Z", + "Hs (total) (m)": 0.7096, + "Tp (total) (s)": 7.9814 + }, + { + "Date+Time": "1983-08-22T00:00:00Z", + "Hs (total) (m)": 0.8553, + "Tp (total) (s)": 6.1266 + }, + { + "Date+Time": "1983-08-23T00:00:00Z", + "Hs (total) (m)": 1.1788, + "Tp (total) (s)": 9.537 + }, + { + "Date+Time": "1983-08-24T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 8.6138 + }, + { + "Date+Time": "1983-08-25T00:00:00Z", + "Hs (total) (m)": 1.0292, + "Tp (total) (s)": 9.566 + }, + { + "Date+Time": "1983-08-26T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 9.8064 + }, + { + "Date+Time": "1983-08-27T00:00:00Z", + "Hs (total) (m)": 1.1078, + "Tp (total) (s)": 9.5233 + }, + { + "Date+Time": "1983-08-28T00:00:00Z", + "Hs (total) (m)": 0.9293, + "Tp (total) (s)": 9.2112 + }, + { + "Date+Time": "1983-08-29T00:00:00Z", + "Hs (total) (m)": 0.7462, + "Tp (total) (s)": 8.4407 + }, + { + "Date+Time": "1983-08-30T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 9.798 + }, + { + "Date+Time": "1983-08-31T00:00:00Z", + "Hs (total) (m)": 1.6037, + "Tp (total) (s)": 9.3692 + }, + { + "Date+Time": "1983-09-01T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 7.8661 + }, + { + "Date+Time": "1983-09-02T00:00:00Z", + "Hs (total) (m)": 1.9761, + "Tp (total) (s)": 10.3 + }, + { + "Date+Time": "1983-09-03T00:00:00Z", + "Hs (total) (m)": 5.7191, + "Tp (total) (s)": 13.8012 + }, + { + "Date+Time": "1983-09-04T00:00:00Z", + "Hs (total) (m)": 1.796, + "Tp (total) (s)": 10.1558 + }, + { + "Date+Time": "1983-09-05T00:00:00Z", + "Hs (total) (m)": 3.7805, + "Tp (total) (s)": 12.1891 + }, + { + "Date+Time": "1983-09-06T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 9.7522 + }, + { + "Date+Time": "1983-09-07T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 9.1586 + }, + { + "Date+Time": "1983-09-08T00:00:00Z", + "Hs (total) (m)": 1.5816, + "Tp (total) (s)": 8.8366 + }, + { + "Date+Time": "1983-09-09T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 7.9745 + }, + { + "Date+Time": "1983-09-10T00:00:00Z", + "Hs (total) (m)": 1.4946, + "Tp (total) (s)": 12.183 + }, + { + "Date+Time": "1983-09-11T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 8.694 + }, + { + "Date+Time": "1983-09-12T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 8.62 + }, + { + "Date+Time": "1983-09-13T00:00:00Z", + "Hs (total) (m)": 0.9095, + "Tp (total) (s)": 8.1782 + }, + { + "Date+Time": "1983-09-14T00:00:00Z", + "Hs (total) (m)": 1.2177, + "Tp (total) (s)": 7.7792 + }, + { + "Date+Time": "1983-09-15T00:00:00Z", + "Hs (total) (m)": 2.2866, + "Tp (total) (s)": 8.7367 + }, + { + "Date+Time": "1983-09-16T00:00:00Z", + "Hs (total) (m)": 2.8489, + "Tp (total) (s)": 10.3832 + }, + { + "Date+Time": "1983-09-17T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 10.1978 + }, + { + "Date+Time": "1983-09-18T00:00:00Z", + "Hs (total) (m)": 3.2212, + "Tp (total) (s)": 9.2822 + }, + { + "Date+Time": "1983-09-19T00:00:00Z", + "Hs (total) (m)": 4.7464, + "Tp (total) (s)": 13.4213 + }, + { + "Date+Time": "1983-09-20T00:00:00Z", + "Hs (total) (m)": 2.5956, + "Tp (total) (s)": 10.9714 + }, + { + "Date+Time": "1983-09-21T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 9.5401 + }, + { + "Date+Time": "1983-09-22T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 9.6957 + }, + { + "Date+Time": "1983-09-23T00:00:00Z", + "Hs (total) (m)": 1.6961, + "Tp (total) (s)": 5.8611 + }, + { + "Date+Time": "1983-09-24T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 9.3966 + }, + { + "Date+Time": "1983-09-25T00:00:00Z", + "Hs (total) (m)": 0.7385, + "Tp (total) (s)": 8.6413 + }, + { + "Date+Time": "1983-09-26T00:00:00Z", + "Hs (total) (m)": 1.0506, + "Tp (total) (s)": 9.5225 + }, + { + "Date+Time": "1983-09-27T00:00:00Z", + "Hs (total) (m)": 1.4359, + "Tp (total) (s)": 9.5691 + }, + { + "Date+Time": "1983-09-28T00:00:00Z", + "Hs (total) (m)": 1.1025, + "Tp (total) (s)": 9.1456 + }, + { + "Date+Time": "1983-09-29T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 8.7275 + }, + { + "Date+Time": "1983-09-30T00:00:00Z", + "Hs (total) (m)": 1.3237, + "Tp (total) (s)": 10.7219 + }, + { + "Date+Time": "1983-10-01T00:00:00Z", + "Hs (total) (m)": 1.9082, + "Tp (total) (s)": 6.3746 + }, + { + "Date+Time": "1983-10-02T00:00:00Z", + "Hs (total) (m)": 3.5463, + "Tp (total) (s)": 13.8661 + }, + { + "Date+Time": "1983-10-03T00:00:00Z", + "Hs (total) (m)": 3.3921, + "Tp (total) (s)": 12.4386 + }, + { + "Date+Time": "1983-10-04T00:00:00Z", + "Hs (total) (m)": 2.2332, + "Tp (total) (s)": 11.6115 + }, + { + "Date+Time": "1983-10-05T00:00:00Z", + "Hs (total) (m)": 2.3904, + "Tp (total) (s)": 8.2942 + }, + { + "Date+Time": "1983-10-06T00:00:00Z", + "Hs (total) (m)": 1.7762, + "Tp (total) (s)": 8.9824 + }, + { + "Date+Time": "1983-10-07T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 8.5902 + }, + { + "Date+Time": "1983-10-08T00:00:00Z", + "Hs (total) (m)": 3.0496, + "Tp (total) (s)": 13.4022 + }, + { + "Date+Time": "1983-10-09T00:00:00Z", + "Hs (total) (m)": 2.9801, + "Tp (total) (s)": 11.9953 + }, + { + "Date+Time": "1983-10-10T00:00:00Z", + "Hs (total) (m)": 2.2843, + "Tp (total) (s)": 10.3572 + }, + { + "Date+Time": "1983-10-11T00:00:00Z", + "Hs (total) (m)": 3.1411, + "Tp (total) (s)": 11.3033 + }, + { + "Date+Time": "1983-10-12T00:00:00Z", + "Hs (total) (m)": 2.7749, + "Tp (total) (s)": 10.7837 + }, + { + "Date+Time": "1983-10-13T00:00:00Z", + "Hs (total) (m)": 4.9337, + "Tp (total) (s)": 11.2771 + }, + { + "Date+Time": "1983-10-14T00:00:00Z", + "Hs (total) (m)": 4.1177, + "Tp (total) (s)": 13.5601 + }, + { + "Date+Time": "1983-10-15T00:00:00Z", + "Hs (total) (m)": 3.4127, + "Tp (total) (s)": 8.7123 + }, + { + "Date+Time": "1983-10-16T00:00:00Z", + "Hs (total) (m)": 6.6546, + "Tp (total) (s)": 14.4801 + }, + { + "Date+Time": "1983-10-17T00:00:00Z", + "Hs (total) (m)": 3.1693, + "Tp (total) (s)": 12.8414 + }, + { + "Date+Time": "1983-10-18T00:00:00Z", + "Hs (total) (m)": 2.9023, + "Tp (total) (s)": 9.3303 + }, + { + "Date+Time": "1983-10-19T00:00:00Z", + "Hs (total) (m)": 3.3593, + "Tp (total) (s)": 11.6161 + }, + { + "Date+Time": "1983-10-20T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 11.3399 + }, + { + "Date+Time": "1983-10-21T00:00:00Z", + "Hs (total) (m)": 0.792, + "Tp (total) (s)": 2.8718 + }, + { + "Date+Time": "1983-10-22T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 9.4287 + }, + { + "Date+Time": "1983-10-23T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 5.7009 + }, + { + "Date+Time": "1983-10-24T00:00:00Z", + "Hs (total) (m)": 1.0826, + "Tp (total) (s)": 9.6309 + }, + { + "Date+Time": "1983-10-25T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 10.4915 + }, + { + "Date+Time": "1983-10-26T00:00:00Z", + "Hs (total) (m)": 2.2752, + "Tp (total) (s)": 11.5604 + }, + { + "Date+Time": "1983-10-27T00:00:00Z", + "Hs (total) (m)": 1.8777, + "Tp (total) (s)": 11.1873 + }, + { + "Date+Time": "1983-10-28T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 12.2913 + }, + { + "Date+Time": "1983-10-29T00:00:00Z", + "Hs (total) (m)": 0.8805, + "Tp (total) (s)": 9.9078 + }, + { + "Date+Time": "1983-10-30T00:00:00Z", + "Hs (total) (m)": 2.4773, + "Tp (total) (s)": 7.1551 + }, + { + "Date+Time": "1983-10-31T00:00:00Z", + "Hs (total) (m)": 2.443, + "Tp (total) (s)": 13.6883 + }, + { + "Date+Time": "1983-11-01T00:00:00Z", + "Hs (total) (m)": 1.8471, + "Tp (total) (s)": 11.3697 + }, + { + "Date+Time": "1983-11-02T00:00:00Z", + "Hs (total) (m)": 1.8899, + "Tp (total) (s)": 14.0828 + }, + { + "Date+Time": "1983-11-03T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 12.4844 + }, + { + "Date+Time": "1983-11-04T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 10.6418 + }, + { + "Date+Time": "1983-11-05T00:00:00Z", + "Hs (total) (m)": 1.2505, + "Tp (total) (s)": 10.3145 + }, + { + "Date+Time": "1983-11-06T00:00:00Z", + "Hs (total) (m)": 1.973, + "Tp (total) (s)": 10.2695 + }, + { + "Date+Time": "1983-11-07T00:00:00Z", + "Hs (total) (m)": 2.8459, + "Tp (total) (s)": 12.7735 + }, + { + "Date+Time": "1983-11-08T00:00:00Z", + "Hs (total) (m)": 2.5582, + "Tp (total) (s)": 12.772 + }, + { + "Date+Time": "1983-11-09T00:00:00Z", + "Hs (total) (m)": 2.2103, + "Tp (total) (s)": 10.8875 + }, + { + "Date+Time": "1983-11-10T00:00:00Z", + "Hs (total) (m)": 0.7324, + "Tp (total) (s)": 3.0465 + }, + { + "Date+Time": "1983-11-11T00:00:00Z", + "Hs (total) (m)": 0.6096, + "Tp (total) (s)": 3.0221 + }, + { + "Date+Time": "1983-11-12T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 12.1517 + }, + { + "Date+Time": "1983-11-13T00:00:00Z", + "Hs (total) (m)": 1.1132, + "Tp (total) (s)": 11.211 + }, + { + "Date+Time": "1983-11-14T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "1983-11-15T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 3.2975 + }, + { + "Date+Time": "1983-11-16T00:00:00Z", + "Hs (total) (m)": 0.7241, + "Tp (total) (s)": 4.7609 + }, + { + "Date+Time": "1983-11-17T00:00:00Z", + "Hs (total) (m)": 0.4158, + "Tp (total) (s)": 11.0691 + }, + { + "Date+Time": "1983-11-18T00:00:00Z", + "Hs (total) (m)": 0.4852, + "Tp (total) (s)": 10.8211 + }, + { + "Date+Time": "1983-11-19T00:00:00Z", + "Hs (total) (m)": 0.5539, + "Tp (total) (s)": 10.1703 + }, + { + "Date+Time": "1983-11-20T00:00:00Z", + "Hs (total) (m)": 0.7813, + "Tp (total) (s)": 12.4432 + }, + { + "Date+Time": "1983-11-21T00:00:00Z", + "Hs (total) (m)": 0.8026, + "Tp (total) (s)": 10.7738 + }, + { + "Date+Time": "1983-11-22T00:00:00Z", + "Hs (total) (m)": 0.6165, + "Tp (total) (s)": 2.7802 + }, + { + "Date+Time": "1983-11-23T00:00:00Z", + "Hs (total) (m)": 0.5135, + "Tp (total) (s)": 2.7139 + }, + { + "Date+Time": "1983-11-24T00:00:00Z", + "Hs (total) (m)": 0.9827, + "Tp (total) (s)": 4.8341 + }, + { + "Date+Time": "1983-11-25T00:00:00Z", + "Hs (total) (m)": 2.6521, + "Tp (total) (s)": 12.5042 + }, + { + "Date+Time": "1983-11-26T00:00:00Z", + "Hs (total) (m)": 2.6254, + "Tp (total) (s)": 10.8242 + }, + { + "Date+Time": "1983-11-27T00:00:00Z", + "Hs (total) (m)": 2.4766, + "Tp (total) (s)": 10.6792 + }, + { + "Date+Time": "1983-11-28T00:00:00Z", + "Hs (total) (m)": 3.621, + "Tp (total) (s)": 13.8386 + }, + { + "Date+Time": "1983-11-29T00:00:00Z", + "Hs (total) (m)": 1.8586, + "Tp (total) (s)": 11.0546 + }, + { + "Date+Time": "1983-11-30T00:00:00Z", + "Hs (total) (m)": 1.4733, + "Tp (total) (s)": 9.4249 + }, + { + "Date+Time": "1983-12-01T00:00:00Z", + "Hs (total) (m)": 2.3705, + "Tp (total) (s)": 11.4521 + }, + { + "Date+Time": "1983-12-02T00:00:00Z", + "Hs (total) (m)": 2.955, + "Tp (total) (s)": 12.0136 + }, + { + "Date+Time": "1983-12-03T00:00:00Z", + "Hs (total) (m)": 2.2904, + "Tp (total) (s)": 11.1995 + }, + { + "Date+Time": "1983-12-04T00:00:00Z", + "Hs (total) (m)": 2.5346, + "Tp (total) (s)": 12.5034 + }, + { + "Date+Time": "1983-12-05T00:00:00Z", + "Hs (total) (m)": 2.0844, + "Tp (total) (s)": 12.0663 + }, + { + "Date+Time": "1983-12-06T00:00:00Z", + "Hs (total) (m)": 1.2368, + "Tp (total) (s)": 10.1497 + }, + { + "Date+Time": "1983-12-07T00:00:00Z", + "Hs (total) (m)": 1.0979, + "Tp (total) (s)": 9.1395 + }, + { + "Date+Time": "1983-12-08T00:00:00Z", + "Hs (total) (m)": 2.8146, + "Tp (total) (s)": 13.0421 + }, + { + "Date+Time": "1983-12-09T00:00:00Z", + "Hs (total) (m)": 2.4026, + "Tp (total) (s)": 9.7285 + }, + { + "Date+Time": "1983-12-10T00:00:00Z", + "Hs (total) (m)": 1.2307, + "Tp (total) (s)": 9.9826 + }, + { + "Date+Time": "1983-12-11T00:00:00Z", + "Hs (total) (m)": 0.9209, + "Tp (total) (s)": 9.273 + }, + { + "Date+Time": "1983-12-12T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 10.3481 + }, + { + "Date+Time": "1983-12-13T00:00:00Z", + "Hs (total) (m)": 2.9687, + "Tp (total) (s)": 12.3058 + }, + { + "Date+Time": "1983-12-14T00:00:00Z", + "Hs (total) (m)": 4.194, + "Tp (total) (s)": 16.055 + }, + { + "Date+Time": "1983-12-15T00:00:00Z", + "Hs (total) (m)": 3.0725, + "Tp (total) (s)": 14.9373 + }, + { + "Date+Time": "1983-12-16T00:00:00Z", + "Hs (total) (m)": 2.1226, + "Tp (total) (s)": 12.6576 + }, + { + "Date+Time": "1983-12-17T00:00:00Z", + "Hs (total) (m)": 2.1569, + "Tp (total) (s)": 12.0518 + }, + { + "Date+Time": "1983-12-18T00:00:00Z", + "Hs (total) (m)": 1.9356, + "Tp (total) (s)": 6.4875 + }, + { + "Date+Time": "1983-12-19T00:00:00Z", + "Hs (total) (m)": 1.2185, + "Tp (total) (s)": 9.4783 + }, + { + "Date+Time": "1983-12-20T00:00:00Z", + "Hs (total) (m)": 1.9044, + "Tp (total) (s)": 13.1802 + }, + { + "Date+Time": "1983-12-21T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 11.3132 + }, + { + "Date+Time": "1983-12-22T00:00:00Z", + "Hs (total) (m)": 2.4209, + "Tp (total) (s)": 14.5466 + }, + { + "Date+Time": "1983-12-23T00:00:00Z", + "Hs (total) (m)": 3.0976, + "Tp (total) (s)": 12.5217 + }, + { + "Date+Time": "1983-12-24T00:00:00Z", + "Hs (total) (m)": 2.2591, + "Tp (total) (s)": 12.4462 + }, + { + "Date+Time": "1983-12-25T00:00:00Z", + "Hs (total) (m)": 4.7952, + "Tp (total) (s)": 11.6886 + }, + { + "Date+Time": "1983-12-26T00:00:00Z", + "Hs (total) (m)": 3.444, + "Tp (total) (s)": 9.3219 + }, + { + "Date+Time": "1983-12-27T00:00:00Z", + "Hs (total) (m)": 2.81, + "Tp (total) (s)": 10.6304 + }, + { + "Date+Time": "1983-12-28T00:00:00Z", + "Hs (total) (m)": 4.1765, + "Tp (total) (s)": 15.4523 + }, + { + "Date+Time": "1983-12-29T00:00:00Z", + "Hs (total) (m)": 2.8748, + "Tp (total) (s)": 13.976 + }, + { + "Date+Time": "1983-12-30T00:00:00Z", + "Hs (total) (m)": 2.4155, + "Tp (total) (s)": 12.7064 + }, + { + "Date+Time": "1983-12-31T00:00:00Z", + "Hs (total) (m)": 2.781, + "Tp (total) (s)": 12.6232 + }, + { + "Date+Time": "1984-01-01T00:00:00Z", + "Hs (total) (m)": 5.0322, + "Tp (total) (s)": 13.7887 + }, + { + "Date+Time": "1984-01-02T00:00:00Z", + "Hs (total) (m)": 3.9308, + "Tp (total) (s)": 14.6008 + }, + { + "Date+Time": "1984-01-03T00:00:00Z", + "Hs (total) (m)": 5.5845, + "Tp (total) (s)": 13.0621 + }, + { + "Date+Time": "1984-01-04T00:00:00Z", + "Hs (total) (m)": 4.5877, + "Tp (total) (s)": 15.4324 + }, + { + "Date+Time": "1984-01-05T00:00:00Z", + "Hs (total) (m)": 2.4934, + "Tp (total) (s)": 13.1016 + }, + { + "Date+Time": "1984-01-06T00:00:00Z", + "Hs (total) (m)": 3.3631, + "Tp (total) (s)": 18.614 + }, + { + "Date+Time": "1984-01-07T00:00:00Z", + "Hs (total) (m)": 2.44, + "Tp (total) (s)": 14.7671 + }, + { + "Date+Time": "1984-01-08T00:00:00Z", + "Hs (total) (m)": 2.6238, + "Tp (total) (s)": 12.8185 + }, + { + "Date+Time": "1984-01-09T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 11.3575 + }, + { + "Date+Time": "1984-01-10T00:00:00Z", + "Hs (total) (m)": 2.1172, + "Tp (total) (s)": 9.6904 + }, + { + "Date+Time": "1984-01-11T00:00:00Z", + "Hs (total) (m)": 2.8344, + "Tp (total) (s)": 9.7125 + }, + { + "Date+Time": "1984-01-12T00:00:00Z", + "Hs (total) (m)": 5.242, + "Tp (total) (s)": 13.4639 + }, + { + "Date+Time": "1984-01-13T00:00:00Z", + "Hs (total) (m)": 5.9146, + "Tp (total) (s)": 14.7602 + }, + { + "Date+Time": "1984-01-14T00:00:00Z", + "Hs (total) (m)": 4.7662, + "Tp (total) (s)": 14.8732 + }, + { + "Date+Time": "1984-01-15T00:00:00Z", + "Hs (total) (m)": 4.6319, + "Tp (total) (s)": 13.6898 + }, + { + "Date+Time": "1984-01-16T00:00:00Z", + "Hs (total) (m)": 4.8418, + "Tp (total) (s)": 16.3396 + }, + { + "Date+Time": "1984-01-17T00:00:00Z", + "Hs (total) (m)": 4.5991, + "Tp (total) (s)": 11.8061 + }, + { + "Date+Time": "1984-01-18T00:00:00Z", + "Hs (total) (m)": 3.0175, + "Tp (total) (s)": 12.2646 + }, + { + "Date+Time": "1984-01-19T00:00:00Z", + "Hs (total) (m)": 1.4298, + "Tp (total) (s)": 10.9569 + }, + { + "Date+Time": "1984-01-20T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 9.8773 + }, + { + "Date+Time": "1984-01-21T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 9.7461 + }, + { + "Date+Time": "1984-01-22T00:00:00Z", + "Hs (total) (m)": 4.1581, + "Tp (total) (s)": 9.7598 + }, + { + "Date+Time": "1984-01-23T00:00:00Z", + "Hs (total) (m)": 3.0229, + "Tp (total) (s)": 12.4119 + }, + { + "Date+Time": "1984-01-24T00:00:00Z", + "Hs (total) (m)": 3.4516, + "Tp (total) (s)": 12.0373 + }, + { + "Date+Time": "1984-01-25T00:00:00Z", + "Hs (total) (m)": 3.1022, + "Tp (total) (s)": 14.7885 + }, + { + "Date+Time": "1984-01-26T00:00:00Z", + "Hs (total) (m)": 1.1528, + "Tp (total) (s)": 3.3059 + }, + { + "Date+Time": "1984-01-27T00:00:00Z", + "Hs (total) (m)": 1.664, + "Tp (total) (s)": 12.6598 + }, + { + "Date+Time": "1984-01-28T00:00:00Z", + "Hs (total) (m)": 1.2894, + "Tp (total) (s)": 11.5787 + }, + { + "Date+Time": "1984-01-29T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 12.7377 + }, + { + "Date+Time": "1984-01-30T00:00:00Z", + "Hs (total) (m)": 4.5213, + "Tp (total) (s)": 15.4859 + }, + { + "Date+Time": "1984-01-31T00:00:00Z", + "Hs (total) (m)": 3.3807, + "Tp (total) (s)": 12.5217 + }, + { + "Date+Time": "1984-02-01T00:00:00Z", + "Hs (total) (m)": 3.3586, + "Tp (total) (s)": 15.4958 + }, + { + "Date+Time": "1984-02-02T00:00:00Z", + "Hs (total) (m)": 4.339, + "Tp (total) (s)": 13.1046 + }, + { + "Date+Time": "1984-02-03T00:00:00Z", + "Hs (total) (m)": 3.003, + "Tp (total) (s)": 13.4762 + }, + { + "Date+Time": "1984-02-04T00:00:00Z", + "Hs (total) (m)": 2.6948, + "Tp (total) (s)": 12.656 + }, + { + "Date+Time": "1984-02-05T00:00:00Z", + "Hs (total) (m)": 3.6203, + "Tp (total) (s)": 12.1769 + }, + { + "Date+Time": "1984-02-06T00:00:00Z", + "Hs (total) (m)": 4.7952, + "Tp (total) (s)": 14.1522 + }, + { + "Date+Time": "1984-02-07T00:00:00Z", + "Hs (total) (m)": 5.5336, + "Tp (total) (s)": 15.3835 + }, + { + "Date+Time": "1984-02-08T00:00:00Z", + "Hs (total) (m)": 4.2245, + "Tp (total) (s)": 13.9218 + }, + { + "Date+Time": "1984-02-09T00:00:00Z", + "Hs (total) (m)": 2.514, + "Tp (total) (s)": 12.6934 + }, + { + "Date+Time": "1984-02-10T00:00:00Z", + "Hs (total) (m)": 1.6816, + "Tp (total) (s)": 11.7573 + }, + { + "Date+Time": "1984-02-11T00:00:00Z", + "Hs (total) (m)": 1.6327, + "Tp (total) (s)": 12.6156 + }, + { + "Date+Time": "1984-02-12T00:00:00Z", + "Hs (total) (m)": 1.867, + "Tp (total) (s)": 13.6822 + }, + { + "Date+Time": "1984-02-13T00:00:00Z", + "Hs (total) (m)": 2.0402, + "Tp (total) (s)": 12.1387 + }, + { + "Date+Time": "1984-02-14T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 11.6237 + }, + { + "Date+Time": "1984-02-15T00:00:00Z", + "Hs (total) (m)": 1.8151, + "Tp (total) (s)": 13.1184 + }, + { + "Date+Time": "1984-02-16T00:00:00Z", + "Hs (total) (m)": 1.7945, + "Tp (total) (s)": 11.8267 + }, + { + "Date+Time": "1984-02-17T00:00:00Z", + "Hs (total) (m)": 1.7235, + "Tp (total) (s)": 13.4976 + }, + { + "Date+Time": "1984-02-18T00:00:00Z", + "Hs (total) (m)": 1.8105, + "Tp (total) (s)": 11.9633 + }, + { + "Date+Time": "1984-02-19T00:00:00Z", + "Hs (total) (m)": 2.4834, + "Tp (total) (s)": 10.3824 + }, + { + "Date+Time": "1984-02-20T00:00:00Z", + "Hs (total) (m)": 2.2065, + "Tp (total) (s)": 11.3193 + }, + { + "Date+Time": "1984-02-21T00:00:00Z", + "Hs (total) (m)": 3.2235, + "Tp (total) (s)": 11.2278 + }, + { + "Date+Time": "1984-02-22T00:00:00Z", + "Hs (total) (m)": 3.6508, + "Tp (total) (s)": 12.7705 + }, + { + "Date+Time": "1984-02-23T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 10.2016 + }, + { + "Date+Time": "1984-02-24T00:00:00Z", + "Hs (total) (m)": 1.194, + "Tp (total) (s)": 9.4775 + }, + { + "Date+Time": "1984-02-25T00:00:00Z", + "Hs (total) (m)": 1.323, + "Tp (total) (s)": 10.5518 + }, + { + "Date+Time": "1984-02-26T00:00:00Z", + "Hs (total) (m)": 1.6549, + "Tp (total) (s)": 13.0924 + }, + { + "Date+Time": "1984-02-27T00:00:00Z", + "Hs (total) (m)": 1.5213, + "Tp (total) (s)": 11.6955 + }, + { + "Date+Time": "1984-02-28T00:00:00Z", + "Hs (total) (m)": 1.2223, + "Tp (total) (s)": 11.2583 + }, + { + "Date+Time": "1984-02-29T00:00:00Z", + "Hs (total) (m)": 0.9087, + "Tp (total) (s)": 10.3671 + }, + { + "Date+Time": "1984-03-01T00:00:00Z", + "Hs (total) (m)": 0.9072, + "Tp (total) (s)": 10.712 + }, + { + "Date+Time": "1984-03-02T00:00:00Z", + "Hs (total) (m)": 2.4026, + "Tp (total) (s)": 8.1431 + }, + { + "Date+Time": "1984-03-03T00:00:00Z", + "Hs (total) (m)": 1.3215, + "Tp (total) (s)": 11.6611 + }, + { + "Date+Time": "1984-03-04T00:00:00Z", + "Hs (total) (m)": 1.3337, + "Tp (total) (s)": 10.2176 + }, + { + "Date+Time": "1984-03-05T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 9.6286 + }, + { + "Date+Time": "1984-03-06T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 11.6115 + }, + { + "Date+Time": "1984-03-07T00:00:00Z", + "Hs (total) (m)": 1.0071, + "Tp (total) (s)": 11.4704 + }, + { + "Date+Time": "1984-03-08T00:00:00Z", + "Hs (total) (m)": 0.8103, + "Tp (total) (s)": 10.4343 + }, + { + "Date+Time": "1984-03-09T00:00:00Z", + "Hs (total) (m)": 0.499, + "Tp (total) (s)": 10.3008 + }, + { + "Date+Time": "1984-03-10T00:00:00Z", + "Hs (total) (m)": 0.4723, + "Tp (total) (s)": 11.3132 + }, + { + "Date+Time": "1984-03-11T00:00:00Z", + "Hs (total) (m)": 0.544, + "Tp (total) (s)": 9.9925 + }, + { + "Date+Time": "1984-03-12T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 8.7809 + }, + { + "Date+Time": "1984-03-13T00:00:00Z", + "Hs (total) (m)": 1.1063, + "Tp (total) (s)": 10.2496 + }, + { + "Date+Time": "1984-03-14T00:00:00Z", + "Hs (total) (m)": 0.7462, + "Tp (total) (s)": 3.0358 + }, + { + "Date+Time": "1984-03-15T00:00:00Z", + "Hs (total) (m)": 0.7981, + "Tp (total) (s)": 12.6705 + }, + { + "Date+Time": "1984-03-16T00:00:00Z", + "Hs (total) (m)": 0.7103, + "Tp (total) (s)": 10.5235 + }, + { + "Date+Time": "1984-03-17T00:00:00Z", + "Hs (total) (m)": 0.6569, + "Tp (total) (s)": 10.3 + }, + { + "Date+Time": "1984-03-18T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 11.8236 + }, + { + "Date+Time": "1984-03-19T00:00:00Z", + "Hs (total) (m)": 0.6127, + "Tp (total) (s)": 9.9612 + }, + { + "Date+Time": "1984-03-20T00:00:00Z", + "Hs (total) (m)": 0.631, + "Tp (total) (s)": 12.331 + }, + { + "Date+Time": "1984-03-21T00:00:00Z", + "Hs (total) (m)": 1.4878, + "Tp (total) (s)": 12.4889 + }, + { + "Date+Time": "1984-03-22T00:00:00Z", + "Hs (total) (m)": 2.0516, + "Tp (total) (s)": 14.2972 + }, + { + "Date+Time": "1984-03-23T00:00:00Z", + "Hs (total) (m)": 2.7535, + "Tp (total) (s)": 15.3111 + }, + { + "Date+Time": "1984-03-24T00:00:00Z", + "Hs (total) (m)": 2.7551, + "Tp (total) (s)": 13.686 + }, + { + "Date+Time": "1984-03-25T00:00:00Z", + "Hs (total) (m)": 2.3331, + "Tp (total) (s)": 13.6273 + }, + { + "Date+Time": "1984-03-26T00:00:00Z", + "Hs (total) (m)": 1.8563, + "Tp (total) (s)": 11.5604 + }, + { + "Date+Time": "1984-03-27T00:00:00Z", + "Hs (total) (m)": 1.1109, + "Tp (total) (s)": 9.0793 + }, + { + "Date+Time": "1984-03-28T00:00:00Z", + "Hs (total) (m)": 0.8248, + "Tp (total) (s)": 8.3819 + }, + { + "Date+Time": "1984-03-29T00:00:00Z", + "Hs (total) (m)": 0.9445, + "Tp (total) (s)": 8.5231 + }, + { + "Date+Time": "1984-03-30T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 10.477 + }, + { + "Date+Time": "1984-03-31T00:00:00Z", + "Hs (total) (m)": 0.5837, + "Tp (total) (s)": 2.4361 + }, + { + "Date+Time": "1984-04-01T00:00:00Z", + "Hs (total) (m)": 0.9621, + "Tp (total) (s)": 3.6576 + }, + { + "Date+Time": "1984-04-02T00:00:00Z", + "Hs (total) (m)": 1.6243, + "Tp (total) (s)": 12.1632 + }, + { + "Date+Time": "1984-04-03T00:00:00Z", + "Hs (total) (m)": 1.8395, + "Tp (total) (s)": 9.9178 + }, + { + "Date+Time": "1984-04-04T00:00:00Z", + "Hs (total) (m)": 2.604, + "Tp (total) (s)": 14.2621 + }, + { + "Date+Time": "1984-04-05T00:00:00Z", + "Hs (total) (m)": 2.0287, + "Tp (total) (s)": 13.0474 + }, + { + "Date+Time": "1984-04-06T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 11.3025 + }, + { + "Date+Time": "1984-04-07T00:00:00Z", + "Hs (total) (m)": 0.8293, + "Tp (total) (s)": 9.0602 + }, + { + "Date+Time": "1984-04-08T00:00:00Z", + "Hs (total) (m)": 0.5058, + "Tp (total) (s)": 7.9516 + }, + { + "Date+Time": "1984-04-09T00:00:00Z", + "Hs (total) (m)": 0.7714, + "Tp (total) (s)": 10.6784 + }, + { + "Date+Time": "1984-04-10T00:00:00Z", + "Hs (total) (m)": 0.8934, + "Tp (total) (s)": 11.935 + }, + { + "Date+Time": "1984-04-11T00:00:00Z", + "Hs (total) (m)": 1.6076, + "Tp (total) (s)": 12.7514 + }, + { + "Date+Time": "1984-04-12T00:00:00Z", + "Hs (total) (m)": 1.8807, + "Tp (total) (s)": 13.4846 + }, + { + "Date+Time": "1984-04-13T00:00:00Z", + "Hs (total) (m)": 1.7975, + "Tp (total) (s)": 11.3865 + }, + { + "Date+Time": "1984-04-14T00:00:00Z", + "Hs (total) (m)": 1.9326, + "Tp (total) (s)": 12.5462 + }, + { + "Date+Time": "1984-04-15T00:00:00Z", + "Hs (total) (m)": 1.6358, + "Tp (total) (s)": 10.963 + }, + { + "Date+Time": "1984-04-16T00:00:00Z", + "Hs (total) (m)": 1.3894, + "Tp (total) (s)": 8.2308 + }, + { + "Date+Time": "1984-04-17T00:00:00Z", + "Hs (total) (m)": 0.6584, + "Tp (total) (s)": 9.6332 + }, + { + "Date+Time": "1984-04-18T00:00:00Z", + "Hs (total) (m)": 2.4934, + "Tp (total) (s)": 8.6543 + }, + { + "Date+Time": "1984-04-19T00:00:00Z", + "Hs (total) (m)": 2.2851, + "Tp (total) (s)": 7.8669 + }, + { + "Date+Time": "1984-04-20T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 9.447 + }, + { + "Date+Time": "1984-04-21T00:00:00Z", + "Hs (total) (m)": 2.2515, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "1984-04-22T00:00:00Z", + "Hs (total) (m)": 1.9791, + "Tp (total) (s)": 11.2003 + }, + { + "Date+Time": "1984-04-23T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 8.5093 + }, + { + "Date+Time": "1984-04-24T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 8.713 + }, + { + "Date+Time": "1984-04-25T00:00:00Z", + "Hs (total) (m)": 0.7721, + "Tp (total) (s)": 8.6688 + }, + { + "Date+Time": "1984-04-26T00:00:00Z", + "Hs (total) (m)": 0.998, + "Tp (total) (s)": 11.8145 + }, + { + "Date+Time": "1984-04-27T00:00:00Z", + "Hs (total) (m)": 1.7342, + "Tp (total) (s)": 13.197 + }, + { + "Date+Time": "1984-04-28T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 12.2356 + }, + { + "Date+Time": "1984-04-29T00:00:00Z", + "Hs (total) (m)": 0.853, + "Tp (total) (s)": 9.9467 + }, + { + "Date+Time": "1984-04-30T00:00:00Z", + "Hs (total) (m)": 0.7591, + "Tp (total) (s)": 9.0701 + }, + { + "Date+Time": "1984-05-01T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 11.1187 + }, + { + "Date+Time": "1984-05-02T00:00:00Z", + "Hs (total) (m)": 0.9354, + "Tp (total) (s)": 10.4053 + }, + { + "Date+Time": "1984-05-03T00:00:00Z", + "Hs (total) (m)": 0.6226, + "Tp (total) (s)": 9.3081 + }, + { + "Date+Time": "1984-05-04T00:00:00Z", + "Hs (total) (m)": 0.9239, + "Tp (total) (s)": 6.1129 + }, + { + "Date+Time": "1984-05-05T00:00:00Z", + "Hs (total) (m)": 0.7645, + "Tp (total) (s)": 8.6406 + }, + { + "Date+Time": "1984-05-06T00:00:00Z", + "Hs (total) (m)": 0.5066, + "Tp (total) (s)": 4.7655 + }, + { + "Date+Time": "1984-05-07T00:00:00Z", + "Hs (total) (m)": 0.4036, + "Tp (total) (s)": 7.551 + }, + { + "Date+Time": "1984-05-08T00:00:00Z", + "Hs (total) (m)": 0.4402, + "Tp (total) (s)": 10.6311 + }, + { + "Date+Time": "1984-05-09T00:00:00Z", + "Hs (total) (m)": 0.6325, + "Tp (total) (s)": 9.4752 + }, + { + "Date+Time": "1984-05-10T00:00:00Z", + "Hs (total) (m)": 0.6607, + "Tp (total) (s)": 8.7588 + }, + { + "Date+Time": "1984-05-11T00:00:00Z", + "Hs (total) (m)": 1.0468, + "Tp (total) (s)": 11.6375 + }, + { + "Date+Time": "1984-05-12T00:00:00Z", + "Hs (total) (m)": 1.0872, + "Tp (total) (s)": 10.5052 + }, + { + "Date+Time": "1984-05-13T00:00:00Z", + "Hs (total) (m)": 0.988, + "Tp (total) (s)": 9.3799 + }, + { + "Date+Time": "1984-05-14T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 7.9676 + }, + { + "Date+Time": "1984-05-15T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 7.7723 + }, + { + "Date+Time": "1984-05-16T00:00:00Z", + "Hs (total) (m)": 1.1376, + "Tp (total) (s)": 10.4305 + }, + { + "Date+Time": "1984-05-17T00:00:00Z", + "Hs (total) (m)": 0.927, + "Tp (total) (s)": 8.6726 + }, + { + "Date+Time": "1984-05-18T00:00:00Z", + "Hs (total) (m)": 1.0353, + "Tp (total) (s)": 9.3684 + }, + { + "Date+Time": "1984-05-19T00:00:00Z", + "Hs (total) (m)": 0.6233, + "Tp (total) (s)": 7.9089 + }, + { + "Date+Time": "1984-05-20T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 10.757 + }, + { + "Date+Time": "1984-05-21T00:00:00Z", + "Hs (total) (m)": 1.352, + "Tp (total) (s)": 10.4373 + }, + { + "Date+Time": "1984-05-22T00:00:00Z", + "Hs (total) (m)": 1.1124, + "Tp (total) (s)": 10.11 + }, + { + "Date+Time": "1984-05-23T00:00:00Z", + "Hs (total) (m)": 1.3161, + "Tp (total) (s)": 6.4524 + }, + { + "Date+Time": "1984-05-24T00:00:00Z", + "Hs (total) (m)": 0.7729, + "Tp (total) (s)": 6.315 + }, + { + "Date+Time": "1984-05-25T00:00:00Z", + "Hs (total) (m)": 0.9796, + "Tp (total) (s)": 10.8371 + }, + { + "Date+Time": "1984-05-26T00:00:00Z", + "Hs (total) (m)": 1.0323, + "Tp (total) (s)": 6.3402 + }, + { + "Date+Time": "1984-05-27T00:00:00Z", + "Hs (total) (m)": 0.8431, + "Tp (total) (s)": 6.1296 + }, + { + "Date+Time": "1984-05-28T00:00:00Z", + "Hs (total) (m)": 0.6371, + "Tp (total) (s)": 8.4445 + }, + { + "Date+Time": "1984-05-29T00:00:00Z", + "Hs (total) (m)": 0.6424, + "Tp (total) (s)": 8.3277 + }, + { + "Date+Time": "1984-05-30T00:00:00Z", + "Hs (total) (m)": 0.8591, + "Tp (total) (s)": 7.9737 + }, + { + "Date+Time": "1984-05-31T00:00:00Z", + "Hs (total) (m)": 2.0837, + "Tp (total) (s)": 12.6102 + }, + { + "Date+Time": "1984-06-01T00:00:00Z", + "Hs (total) (m)": 2.636, + "Tp (total) (s)": 10.4884 + }, + { + "Date+Time": "1984-06-02T00:00:00Z", + "Hs (total) (m)": 2.092, + "Tp (total) (s)": 11.9495 + }, + { + "Date+Time": "1984-06-03T00:00:00Z", + "Hs (total) (m)": 1.3855, + "Tp (total) (s)": 11.4467 + }, + { + "Date+Time": "1984-06-04T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 9.5653 + }, + { + "Date+Time": "1984-06-05T00:00:00Z", + "Hs (total) (m)": 1.7769, + "Tp (total) (s)": 9.3348 + }, + { + "Date+Time": "1984-06-06T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 6.4013 + }, + { + "Date+Time": "1984-06-07T00:00:00Z", + "Hs (total) (m)": 0.7286, + "Tp (total) (s)": 13.6334 + }, + { + "Date+Time": "1984-06-08T00:00:00Z", + "Hs (total) (m)": 1.429, + "Tp (total) (s)": 12.7659 + }, + { + "Date+Time": "1984-06-09T00:00:00Z", + "Hs (total) (m)": 1.3176, + "Tp (total) (s)": 11.9053 + }, + { + "Date+Time": "1984-06-10T00:00:00Z", + "Hs (total) (m)": 0.9018, + "Tp (total) (s)": 10.2321 + }, + { + "Date+Time": "1984-06-11T00:00:00Z", + "Hs (total) (m)": 0.6462, + "Tp (total) (s)": 8.6818 + }, + { + "Date+Time": "1984-06-12T00:00:00Z", + "Hs (total) (m)": 1.2925, + "Tp (total) (s)": 6.2868 + }, + { + "Date+Time": "1984-06-13T00:00:00Z", + "Hs (total) (m)": 2.2027, + "Tp (total) (s)": 8.7237 + }, + { + "Date+Time": "1984-06-14T00:00:00Z", + "Hs (total) (m)": 1.8586, + "Tp (total) (s)": 8.0172 + }, + { + "Date+Time": "1984-06-15T00:00:00Z", + "Hs (total) (m)": 1.1414, + "Tp (total) (s)": 9.286 + }, + { + "Date+Time": "1984-06-16T00:00:00Z", + "Hs (total) (m)": 0.8789, + "Tp (total) (s)": 8.9984 + }, + { + "Date+Time": "1984-06-17T00:00:00Z", + "Hs (total) (m)": 0.7569, + "Tp (total) (s)": 8.4544 + }, + { + "Date+Time": "1984-06-18T00:00:00Z", + "Hs (total) (m)": 0.8477, + "Tp (total) (s)": 7.6983 + }, + { + "Date+Time": "1984-06-19T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 7.1757 + }, + { + "Date+Time": "1984-06-20T00:00:00Z", + "Hs (total) (m)": 0.7714, + "Tp (total) (s)": 7.7555 + }, + { + "Date+Time": "1984-06-21T00:00:00Z", + "Hs (total) (m)": 1.1834, + "Tp (total) (s)": 8.1996 + }, + { + "Date+Time": "1984-06-22T00:00:00Z", + "Hs (total) (m)": 2.3431, + "Tp (total) (s)": 9.2807 + }, + { + "Date+Time": "1984-06-23T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "1984-06-24T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 8.4613 + }, + { + "Date+Time": "1984-06-25T00:00:00Z", + "Hs (total) (m)": 1.2574, + "Tp (total) (s)": 8.7512 + }, + { + "Date+Time": "1984-06-26T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 9.547 + }, + { + "Date+Time": "1984-06-27T00:00:00Z", + "Hs (total) (m)": 1.0636, + "Tp (total) (s)": 10.3977 + }, + { + "Date+Time": "1984-06-28T00:00:00Z", + "Hs (total) (m)": 1.0552, + "Tp (total) (s)": 9.5096 + }, + { + "Date+Time": "1984-06-29T00:00:00Z", + "Hs (total) (m)": 0.7958, + "Tp (total) (s)": 8.2865 + }, + { + "Date+Time": "1984-06-30T00:00:00Z", + "Hs (total) (m)": 0.7401, + "Tp (total) (s)": 6.8659 + }, + { + "Date+Time": "1984-07-01T00:00:00Z", + "Hs (total) (m)": 0.5242, + "Tp (total) (s)": 6.8728 + }, + { + "Date+Time": "1984-07-02T00:00:00Z", + "Hs (total) (m)": 0.5455, + "Tp (total) (s)": 6.4432 + }, + { + "Date+Time": "1984-07-03T00:00:00Z", + "Hs (total) (m)": 0.5936, + "Tp (total) (s)": 9.2418 + }, + { + "Date+Time": "1984-07-04T00:00:00Z", + "Hs (total) (m)": 0.5768, + "Tp (total) (s)": 8.5887 + }, + { + "Date+Time": "1984-07-05T00:00:00Z", + "Hs (total) (m)": 0.6706, + "Tp (total) (s)": 7.9745 + }, + { + "Date+Time": "1984-07-06T00:00:00Z", + "Hs (total) (m)": 1.2268, + "Tp (total) (s)": 9.5401 + }, + { + "Date+Time": "1984-07-07T00:00:00Z", + "Hs (total) (m)": 1.4863, + "Tp (total) (s)": 8.9526 + }, + { + "Date+Time": "1984-07-08T00:00:00Z", + "Hs (total) (m)": 1.4039, + "Tp (total) (s)": 10.2222 + }, + { + "Date+Time": "1984-07-09T00:00:00Z", + "Hs (total) (m)": 1.133, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "1984-07-10T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 7.9051 + }, + { + "Date+Time": "1984-07-11T00:00:00Z", + "Hs (total) (m)": 1.9501, + "Tp (total) (s)": 8.8618 + }, + { + "Date+Time": "1984-07-12T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 6.3562 + }, + { + "Date+Time": "1984-07-13T00:00:00Z", + "Hs (total) (m)": 1.1818, + "Tp (total) (s)": 8.3041 + }, + { + "Date+Time": "1984-07-14T00:00:00Z", + "Hs (total) (m)": 1.2505, + "Tp (total) (s)": 8.4559 + }, + { + "Date+Time": "1984-07-15T00:00:00Z", + "Hs (total) (m)": 1.4901, + "Tp (total) (s)": 8.5765 + }, + { + "Date+Time": "1984-07-16T00:00:00Z", + "Hs (total) (m)": 1.0224, + "Tp (total) (s)": 8.6848 + }, + { + "Date+Time": "1984-07-17T00:00:00Z", + "Hs (total) (m)": 0.8217, + "Tp (total) (s)": 8.1065 + }, + { + "Date+Time": "1984-07-18T00:00:00Z", + "Hs (total) (m)": 0.808, + "Tp (total) (s)": 8.1828 + }, + { + "Date+Time": "1984-07-19T00:00:00Z", + "Hs (total) (m)": 0.9255, + "Tp (total) (s)": 9.1029 + }, + { + "Date+Time": "1984-07-20T00:00:00Z", + "Hs (total) (m)": 0.7401, + "Tp (total) (s)": 8.6413 + }, + { + "Date+Time": "1984-07-21T00:00:00Z", + "Hs (total) (m)": 0.676, + "Tp (total) (s)": 8.3567 + }, + { + "Date+Time": "1984-07-22T00:00:00Z", + "Hs (total) (m)": 0.3632, + "Tp (total) (s)": 2.4789 + }, + { + "Date+Time": "1984-07-23T00:00:00Z", + "Hs (total) (m)": 0.441, + "Tp (total) (s)": 15.0632 + }, + { + "Date+Time": "1984-07-24T00:00:00Z", + "Hs (total) (m)": 0.4265, + "Tp (total) (s)": 2.485 + }, + { + "Date+Time": "1984-07-25T00:00:00Z", + "Hs (total) (m)": 0.351, + "Tp (total) (s)": 2.34 + }, + { + "Date+Time": "1984-07-26T00:00:00Z", + "Hs (total) (m)": 0.4219, + "Tp (total) (s)": 2.5101 + }, + { + "Date+Time": "1984-07-27T00:00:00Z", + "Hs (total) (m)": 0.486, + "Tp (total) (s)": 12.5454 + }, + { + "Date+Time": "1984-07-28T00:00:00Z", + "Hs (total) (m)": 1.072, + "Tp (total) (s)": 5.6955 + }, + { + "Date+Time": "1984-07-29T00:00:00Z", + "Hs (total) (m)": 1.458, + "Tp (total) (s)": 7.1505 + }, + { + "Date+Time": "1984-07-30T00:00:00Z", + "Hs (total) (m)": 1.1078, + "Tp (total) (s)": 9.0503 + }, + { + "Date+Time": "1984-07-31T00:00:00Z", + "Hs (total) (m)": 0.8591, + "Tp (total) (s)": 9.1418 + }, + { + "Date+Time": "1984-08-01T00:00:00Z", + "Hs (total) (m)": 0.8057, + "Tp (total) (s)": 8.533 + }, + { + "Date+Time": "1984-08-02T00:00:00Z", + "Hs (total) (m)": 0.6607, + "Tp (total) (s)": 3.9178 + }, + { + "Date+Time": "1984-08-03T00:00:00Z", + "Hs (total) (m)": 0.9468, + "Tp (total) (s)": 7.1062 + }, + { + "Date+Time": "1984-08-04T00:00:00Z", + "Hs (total) (m)": 0.8583, + "Tp (total) (s)": 7.0109 + }, + { + "Date+Time": "1984-08-05T00:00:00Z", + "Hs (total) (m)": 0.4791, + "Tp (total) (s)": 6.254 + }, + { + "Date+Time": "1984-08-06T00:00:00Z", + "Hs (total) (m)": 0.7836, + "Tp (total) (s)": 9.4516 + }, + { + "Date+Time": "1984-08-07T00:00:00Z", + "Hs (total) (m)": 1.1589, + "Tp (total) (s)": 8.3773 + }, + { + "Date+Time": "1984-08-08T00:00:00Z", + "Hs (total) (m)": 0.8271, + "Tp (total) (s)": 7.7586 + }, + { + "Date+Time": "1984-08-09T00:00:00Z", + "Hs (total) (m)": 0.8728, + "Tp (total) (s)": 7.7387 + }, + { + "Date+Time": "1984-08-10T00:00:00Z", + "Hs (total) (m)": 0.9888, + "Tp (total) (s)": 10.3023 + }, + { + "Date+Time": "1984-08-11T00:00:00Z", + "Hs (total) (m)": 0.7744, + "Tp (total) (s)": 9.328 + }, + { + "Date+Time": "1984-08-12T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 8.2987 + }, + { + "Date+Time": "1984-08-13T00:00:00Z", + "Hs (total) (m)": 0.9583, + "Tp (total) (s)": 10.7364 + }, + { + "Date+Time": "1984-08-14T00:00:00Z", + "Hs (total) (m)": 0.9957, + "Tp (total) (s)": 14.0469 + }, + { + "Date+Time": "1984-08-15T00:00:00Z", + "Hs (total) (m)": 1.2963, + "Tp (total) (s)": 12.9711 + }, + { + "Date+Time": "1984-08-16T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 11.285 + }, + { + "Date+Time": "1984-08-17T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 9.373 + }, + { + "Date+Time": "1984-08-18T00:00:00Z", + "Hs (total) (m)": 1.0651, + "Tp (total) (s)": 5.9053 + }, + { + "Date+Time": "1984-08-19T00:00:00Z", + "Hs (total) (m)": 1.5702, + "Tp (total) (s)": 7.7601 + }, + { + "Date+Time": "1984-08-20T00:00:00Z", + "Hs (total) (m)": 1.3672, + "Tp (total) (s)": 7.9905 + }, + { + "Date+Time": "1984-08-21T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 8.0996 + }, + { + "Date+Time": "1984-08-22T00:00:00Z", + "Hs (total) (m)": 0.7698, + "Tp (total) (s)": 14.4772 + }, + { + "Date+Time": "1984-08-23T00:00:00Z", + "Hs (total) (m)": 0.782, + "Tp (total) (s)": 13.9302 + }, + { + "Date+Time": "1984-08-24T00:00:00Z", + "Hs (total) (m)": 0.5875, + "Tp (total) (s)": 7.6716 + }, + { + "Date+Time": "1984-08-25T00:00:00Z", + "Hs (total) (m)": 0.6561, + "Tp (total) (s)": 7.1329 + }, + { + "Date+Time": "1984-08-26T00:00:00Z", + "Hs (total) (m)": 0.7706, + "Tp (total) (s)": 8.4468 + }, + { + "Date+Time": "1984-08-27T00:00:00Z", + "Hs (total) (m)": 1.0842, + "Tp (total) (s)": 8.8565 + }, + { + "Date+Time": "1984-08-28T00:00:00Z", + "Hs (total) (m)": 1.2406, + "Tp (total) (s)": 9.6049 + }, + { + "Date+Time": "1984-08-29T00:00:00Z", + "Hs (total) (m)": 2.0981, + "Tp (total) (s)": 10.9928 + }, + { + "Date+Time": "1984-08-30T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 9.5027 + }, + { + "Date+Time": "1984-08-31T00:00:00Z", + "Hs (total) (m)": 2.002, + "Tp (total) (s)": 9.2189 + }, + { + "Date+Time": "1984-09-01T00:00:00Z", + "Hs (total) (m)": 1.5778, + "Tp (total) (s)": 8.3789 + }, + { + "Date+Time": "1984-09-02T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 7.7738 + }, + { + "Date+Time": "1984-09-03T00:00:00Z", + "Hs (total) (m)": 1.5793, + "Tp (total) (s)": 8.1194 + }, + { + "Date+Time": "1984-09-04T00:00:00Z", + "Hs (total) (m)": 1.4748, + "Tp (total) (s)": 6.9872 + }, + { + "Date+Time": "1984-09-05T00:00:00Z", + "Hs (total) (m)": 0.5982, + "Tp (total) (s)": 7.2336 + }, + { + "Date+Time": "1984-09-06T00:00:00Z", + "Hs (total) (m)": 0.441, + "Tp (total) (s)": 9.4386 + }, + { + "Date+Time": "1984-09-07T00:00:00Z", + "Hs (total) (m)": 0.6432, + "Tp (total) (s)": 8.7352 + }, + { + "Date+Time": "1984-09-08T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 8.8084 + }, + { + "Date+Time": "1984-09-09T00:00:00Z", + "Hs (total) (m)": 2.0196, + "Tp (total) (s)": 9.4401 + }, + { + "Date+Time": "1984-09-10T00:00:00Z", + "Hs (total) (m)": 2.3682, + "Tp (total) (s)": 9.5035 + }, + { + "Date+Time": "1984-09-11T00:00:00Z", + "Hs (total) (m)": 1.4351, + "Tp (total) (s)": 9.2486 + }, + { + "Date+Time": "1984-09-12T00:00:00Z", + "Hs (total) (m)": 1.3405, + "Tp (total) (s)": 7.8677 + }, + { + "Date+Time": "1984-09-13T00:00:00Z", + "Hs (total) (m)": 1.4336, + "Tp (total) (s)": 8.1362 + }, + { + "Date+Time": "1984-09-14T00:00:00Z", + "Hs (total) (m)": 1.9036, + "Tp (total) (s)": 9.5508 + }, + { + "Date+Time": "1984-09-15T00:00:00Z", + "Hs (total) (m)": 1.297, + "Tp (total) (s)": 8.5192 + }, + { + "Date+Time": "1984-09-16T00:00:00Z", + "Hs (total) (m)": 1.0384, + "Tp (total) (s)": 8.3018 + }, + { + "Date+Time": "1984-09-17T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 11.5566 + }, + { + "Date+Time": "1984-09-18T00:00:00Z", + "Hs (total) (m)": 1.9326, + "Tp (total) (s)": 10.3458 + }, + { + "Date+Time": "1984-09-19T00:00:00Z", + "Hs (total) (m)": 1.886, + "Tp (total) (s)": 10.1444 + }, + { + "Date+Time": "1984-09-20T00:00:00Z", + "Hs (total) (m)": 2.3362, + "Tp (total) (s)": 12.6217 + }, + { + "Date+Time": "1984-09-21T00:00:00Z", + "Hs (total) (m)": 2.6437, + "Tp (total) (s)": 10.342 + }, + { + "Date+Time": "1984-09-22T00:00:00Z", + "Hs (total) (m)": 2.8306, + "Tp (total) (s)": 12.3463 + }, + { + "Date+Time": "1984-09-23T00:00:00Z", + "Hs (total) (m)": 1.7937, + "Tp (total) (s)": 9.4531 + }, + { + "Date+Time": "1984-09-24T00:00:00Z", + "Hs (total) (m)": 1.4824, + "Tp (total) (s)": 9.6995 + }, + { + "Date+Time": "1984-09-25T00:00:00Z", + "Hs (total) (m)": 0.7111, + "Tp (total) (s)": 10.303 + }, + { + "Date+Time": "1984-09-26T00:00:00Z", + "Hs (total) (m)": 0.956, + "Tp (total) (s)": 10.2847 + }, + { + "Date+Time": "1984-09-27T00:00:00Z", + "Hs (total) (m)": 1.4351, + "Tp (total) (s)": 9.3181 + }, + { + "Date+Time": "1984-09-28T00:00:00Z", + "Hs (total) (m)": 1.796, + "Tp (total) (s)": 10.3511 + }, + { + "Date+Time": "1984-09-29T00:00:00Z", + "Hs (total) (m)": 1.896, + "Tp (total) (s)": 12.434 + }, + { + "Date+Time": "1984-09-30T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 10.4274 + }, + { + "Date+Time": "1984-10-01T00:00:00Z", + "Hs (total) (m)": 1.429, + "Tp (total) (s)": 8.6901 + }, + { + "Date+Time": "1984-10-02T00:00:00Z", + "Hs (total) (m)": 1.3901, + "Tp (total) (s)": 10.1672 + }, + { + "Date+Time": "1984-10-03T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 10.844 + }, + { + "Date+Time": "1984-10-04T00:00:00Z", + "Hs (total) (m)": 2.163, + "Tp (total) (s)": 12.022 + }, + { + "Date+Time": "1984-10-05T00:00:00Z", + "Hs (total) (m)": 1.413, + "Tp (total) (s)": 11.195 + }, + { + "Date+Time": "1984-10-06T00:00:00Z", + "Hs (total) (m)": 1.2024, + "Tp (total) (s)": 8.2408 + }, + { + "Date+Time": "1984-10-07T00:00:00Z", + "Hs (total) (m)": 1.574, + "Tp (total) (s)": 9.5988 + }, + { + "Date+Time": "1984-10-08T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 7.6891 + }, + { + "Date+Time": "1984-10-09T00:00:00Z", + "Hs (total) (m)": 2.4033, + "Tp (total) (s)": 9.3188 + }, + { + "Date+Time": "1984-10-10T00:00:00Z", + "Hs (total) (m)": 2.0051, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "1984-10-11T00:00:00Z", + "Hs (total) (m)": 2.2103, + "Tp (total) (s)": 10.6517 + }, + { + "Date+Time": "1984-10-12T00:00:00Z", + "Hs (total) (m)": 1.8525, + "Tp (total) (s)": 10.6395 + }, + { + "Date+Time": "1984-10-13T00:00:00Z", + "Hs (total) (m)": 2.2935, + "Tp (total) (s)": 9.257 + }, + { + "Date+Time": "1984-10-14T00:00:00Z", + "Hs (total) (m)": 3.4249, + "Tp (total) (s)": 11.6482 + }, + { + "Date+Time": "1984-10-15T00:00:00Z", + "Hs (total) (m)": 2.2408, + "Tp (total) (s)": 11.6398 + }, + { + "Date+Time": "1984-10-16T00:00:00Z", + "Hs (total) (m)": 1.796, + "Tp (total) (s)": 10.6037 + }, + { + "Date+Time": "1984-10-17T00:00:00Z", + "Hs (total) (m)": 1.9585, + "Tp (total) (s)": 11.6382 + }, + { + "Date+Time": "1984-10-18T00:00:00Z", + "Hs (total) (m)": 2.1638, + "Tp (total) (s)": 10.1276 + }, + { + "Date+Time": "1984-10-19T00:00:00Z", + "Hs (total) (m)": 2.9733, + "Tp (total) (s)": 9.1876 + }, + { + "Date+Time": "1984-10-20T00:00:00Z", + "Hs (total) (m)": 3.6042, + "Tp (total) (s)": 10.5358 + }, + { + "Date+Time": "1984-10-21T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 11.2293 + }, + { + "Date+Time": "1984-10-22T00:00:00Z", + "Hs (total) (m)": 2.2881, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "1984-10-23T00:00:00Z", + "Hs (total) (m)": 2.1722, + "Tp (total) (s)": 9.2715 + }, + { + "Date+Time": "1984-10-24T00:00:00Z", + "Hs (total) (m)": 1.738, + "Tp (total) (s)": 9.5843 + }, + { + "Date+Time": "1984-10-25T00:00:00Z", + "Hs (total) (m)": 1.5954, + "Tp (total) (s)": 10.0177 + }, + { + "Date+Time": "1984-10-26T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 8.4841 + }, + { + "Date+Time": "1984-10-27T00:00:00Z", + "Hs (total) (m)": 1.4489, + "Tp (total) (s)": 12.5523 + }, + { + "Date+Time": "1984-10-28T00:00:00Z", + "Hs (total) (m)": 2.2141, + "Tp (total) (s)": 10.4572 + }, + { + "Date+Time": "1984-10-29T00:00:00Z", + "Hs (total) (m)": 2.3453, + "Tp (total) (s)": 9.6828 + }, + { + "Date+Time": "1984-10-30T00:00:00Z", + "Hs (total) (m)": 3.6744, + "Tp (total) (s)": 13.8752 + }, + { + "Date+Time": "1984-10-31T00:00:00Z", + "Hs (total) (m)": 3.2037, + "Tp (total) (s)": 13.0505 + }, + { + "Date+Time": "1984-11-01T00:00:00Z", + "Hs (total) (m)": 3.4433, + "Tp (total) (s)": 11.2842 + }, + { + "Date+Time": "1984-11-02T00:00:00Z", + "Hs (total) (m)": 3.193, + "Tp (total) (s)": 10.5701 + }, + { + "Date+Time": "1984-11-03T00:00:00Z", + "Hs (total) (m)": 1.7785, + "Tp (total) (s)": 10.4381 + }, + { + "Date+Time": "1984-11-04T00:00:00Z", + "Hs (total) (m)": 1.0208, + "Tp (total) (s)": 10.0452 + }, + { + "Date+Time": "1984-11-05T00:00:00Z", + "Hs (total) (m)": 1.6755, + "Tp (total) (s)": 13.7646 + }, + { + "Date+Time": "1984-11-06T00:00:00Z", + "Hs (total) (m)": 0.9072, + "Tp (total) (s)": 10.4785 + }, + { + "Date+Time": "1984-11-07T00:00:00Z", + "Hs (total) (m)": 1.2772, + "Tp (total) (s)": 14.0355 + }, + { + "Date+Time": "1984-11-08T00:00:00Z", + "Hs (total) (m)": 1.1002, + "Tp (total) (s)": 13.1069 + }, + { + "Date+Time": "1984-11-09T00:00:00Z", + "Hs (total) (m)": 0.5821, + "Tp (total) (s)": 10.4289 + }, + { + "Date+Time": "1984-11-10T00:00:00Z", + "Hs (total) (m)": 0.618, + "Tp (total) (s)": 8.3636 + }, + { + "Date+Time": "1984-11-11T00:00:00Z", + "Hs (total) (m)": 1.2032, + "Tp (total) (s)": 15.5263 + }, + { + "Date+Time": "1984-11-12T00:00:00Z", + "Hs (total) (m)": 3.6309, + "Tp (total) (s)": 9.415 + }, + { + "Date+Time": "1984-11-13T00:00:00Z", + "Hs (total) (m)": 2.5216, + "Tp (total) (s)": 12.6408 + }, + { + "Date+Time": "1984-11-14T00:00:00Z", + "Hs (total) (m)": 2.4087, + "Tp (total) (s)": 11.0828 + }, + { + "Date+Time": "1984-11-15T00:00:00Z", + "Hs (total) (m)": 2.5643, + "Tp (total) (s)": 12.8811 + }, + { + "Date+Time": "1984-11-16T00:00:00Z", + "Hs (total) (m)": 2.4209, + "Tp (total) (s)": 14.0034 + }, + { + "Date+Time": "1984-11-17T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 12.0312 + }, + { + "Date+Time": "1984-11-18T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 11.6436 + }, + { + "Date+Time": "1984-11-19T00:00:00Z", + "Hs (total) (m)": 1.8212, + "Tp (total) (s)": 15.4477 + }, + { + "Date+Time": "1984-11-20T00:00:00Z", + "Hs (total) (m)": 2.4873, + "Tp (total) (s)": 14.0645 + }, + { + "Date+Time": "1984-11-21T00:00:00Z", + "Hs (total) (m)": 2.5719, + "Tp (total) (s)": 10.86 + }, + { + "Date+Time": "1984-11-22T00:00:00Z", + "Hs (total) (m)": 2.9679, + "Tp (total) (s)": 10.0558 + }, + { + "Date+Time": "1984-11-23T00:00:00Z", + "Hs (total) (m)": 4.5709, + "Tp (total) (s)": 13.0795 + }, + { + "Date+Time": "1984-11-24T00:00:00Z", + "Hs (total) (m)": 5.0319, + "Tp (total) (s)": 14.6176 + }, + { + "Date+Time": "1984-11-25T00:00:00Z", + "Hs (total) (m)": 3.3578, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "1984-11-26T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 10.4839 + }, + { + "Date+Time": "1984-11-27T00:00:00Z", + "Hs (total) (m)": 2.6063, + "Tp (total) (s)": 9.2647 + }, + { + "Date+Time": "1984-11-28T00:00:00Z", + "Hs (total) (m)": 6.024, + "Tp (total) (s)": 13.7727 + }, + { + "Date+Time": "1984-11-29T00:00:00Z", + "Hs (total) (m)": 4.7128, + "Tp (total) (s)": 13.5144 + }, + { + "Date+Time": "1984-11-30T00:00:00Z", + "Hs (total) (m)": 3.7912, + "Tp (total) (s)": 12.3241 + }, + { + "Date+Time": "1984-12-01T00:00:00Z", + "Hs (total) (m)": 3.1022, + "Tp (total) (s)": 13.6967 + }, + { + "Date+Time": "1984-12-02T00:00:00Z", + "Hs (total) (m)": 2.5803, + "Tp (total) (s)": 15.4424 + }, + { + "Date+Time": "1984-12-03T00:00:00Z", + "Hs (total) (m)": 1.7304, + "Tp (total) (s)": 11.4895 + }, + { + "Date+Time": "1984-12-04T00:00:00Z", + "Hs (total) (m)": 2.0447, + "Tp (total) (s)": 9.3265 + }, + { + "Date+Time": "1984-12-05T00:00:00Z", + "Hs (total) (m)": 2.8153, + "Tp (total) (s)": 12.8643 + }, + { + "Date+Time": "1984-12-06T00:00:00Z", + "Hs (total) (m)": 2.2095, + "Tp (total) (s)": 13.5601 + }, + { + "Date+Time": "1984-12-07T00:00:00Z", + "Hs (total) (m)": 3.1274, + "Tp (total) (s)": 13.2374 + }, + { + "Date+Time": "1984-12-08T00:00:00Z", + "Hs (total) (m)": 4.4778, + "Tp (total) (s)": 11.4544 + }, + { + "Date+Time": "1984-12-09T00:00:00Z", + "Hs (total) (m)": 2.3141, + "Tp (total) (s)": 11.5596 + }, + { + "Date+Time": "1984-12-10T00:00:00Z", + "Hs (total) (m)": 1.8799, + "Tp (total) (s)": 10.638 + }, + { + "Date+Time": "1984-12-11T00:00:00Z", + "Hs (total) (m)": 1.8014, + "Tp (total) (s)": 13.667 + }, + { + "Date+Time": "1984-12-12T00:00:00Z", + "Hs (total) (m)": 1.8502, + "Tp (total) (s)": 13.1909 + }, + { + "Date+Time": "1984-12-13T00:00:00Z", + "Hs (total) (m)": 2.0722, + "Tp (total) (s)": 11.7847 + }, + { + "Date+Time": "1984-12-14T00:00:00Z", + "Hs (total) (m)": 2.4682, + "Tp (total) (s)": 10.9828 + }, + { + "Date+Time": "1984-12-15T00:00:00Z", + "Hs (total) (m)": 1.886, + "Tp (total) (s)": 11.4513 + }, + { + "Date+Time": "1984-12-16T00:00:00Z", + "Hs (total) (m)": 1.1414, + "Tp (total) (s)": 9.6187 + }, + { + "Date+Time": "1984-12-17T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 11.4948 + }, + { + "Date+Time": "1984-12-18T00:00:00Z", + "Hs (total) (m)": 2.9092, + "Tp (total) (s)": 11.3659 + }, + { + "Date+Time": "1984-12-19T00:00:00Z", + "Hs (total) (m)": 3.3609, + "Tp (total) (s)": 14.742 + }, + { + "Date+Time": "1984-12-20T00:00:00Z", + "Hs (total) (m)": 3.1976, + "Tp (total) (s)": 12.0739 + }, + { + "Date+Time": "1984-12-21T00:00:00Z", + "Hs (total) (m)": 3.3105, + "Tp (total) (s)": 16.451 + }, + { + "Date+Time": "1984-12-22T00:00:00Z", + "Hs (total) (m)": 2.6063, + "Tp (total) (s)": 14.4856 + }, + { + "Date+Time": "1984-12-23T00:00:00Z", + "Hs (total) (m)": 2.398, + "Tp (total) (s)": 13.3549 + }, + { + "Date+Time": "1984-12-24T00:00:00Z", + "Hs (total) (m)": 3.37, + "Tp (total) (s)": 9.6805 + }, + { + "Date+Time": "1984-12-25T00:00:00Z", + "Hs (total) (m)": 2.7238, + "Tp (total) (s)": 12.9276 + }, + { + "Date+Time": "1984-12-26T00:00:00Z", + "Hs (total) (m)": 3.5203, + "Tp (total) (s)": 12.1845 + }, + { + "Date+Time": "1984-12-27T00:00:00Z", + "Hs (total) (m)": 5.1782, + "Tp (total) (s)": 18.1757 + }, + { + "Date+Time": "1984-12-28T00:00:00Z", + "Hs (total) (m)": 2.3179, + "Tp (total) (s)": 15.0838 + }, + { + "Date+Time": "1984-12-29T00:00:00Z", + "Hs (total) (m)": 2.6124, + "Tp (total) (s)": 12.8826 + }, + { + "Date+Time": "1984-12-30T00:00:00Z", + "Hs (total) (m)": 2.9206, + "Tp (total) (s)": 15.5408 + }, + { + "Date+Time": "1984-12-31T00:00:00Z", + "Hs (total) (m)": 2.3377, + "Tp (total) (s)": 13.8997 + }, + { + "Date+Time": "1985-01-01T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 10.744 + }, + { + "Date+Time": "1985-01-02T00:00:00Z", + "Hs (total) (m)": 1.352, + "Tp (total) (s)": 10.7303 + }, + { + "Date+Time": "1985-01-03T00:00:00Z", + "Hs (total) (m)": 1.2986, + "Tp (total) (s)": 10.4671 + }, + { + "Date+Time": "1985-01-04T00:00:00Z", + "Hs (total) (m)": 1.5831, + "Tp (total) (s)": 12.1754 + }, + { + "Date+Time": "1985-01-05T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 11.3468 + }, + { + "Date+Time": "1985-01-06T00:00:00Z", + "Hs (total) (m)": 0.5882, + "Tp (total) (s)": 3.0671 + }, + { + "Date+Time": "1985-01-07T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 15.8551 + }, + { + "Date+Time": "1985-01-08T00:00:00Z", + "Hs (total) (m)": 1.1986, + "Tp (total) (s)": 14.1194 + }, + { + "Date+Time": "1985-01-09T00:00:00Z", + "Hs (total) (m)": 0.8972, + "Tp (total) (s)": 12.1227 + }, + { + "Date+Time": "1985-01-10T00:00:00Z", + "Hs (total) (m)": 0.8797, + "Tp (total) (s)": 15.3058 + }, + { + "Date+Time": "1985-01-11T00:00:00Z", + "Hs (total) (m)": 1.9356, + "Tp (total) (s)": 14.4688 + }, + { + "Date+Time": "1985-01-12T00:00:00Z", + "Hs (total) (m)": 1.8578, + "Tp (total) (s)": 13.657 + }, + { + "Date+Time": "1985-01-13T00:00:00Z", + "Hs (total) (m)": 1.9486, + "Tp (total) (s)": 12.2311 + }, + { + "Date+Time": "1985-01-14T00:00:00Z", + "Hs (total) (m)": 1.9951, + "Tp (total) (s)": 11.4803 + }, + { + "Date+Time": "1985-01-15T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 11.6008 + }, + { + "Date+Time": "1985-01-16T00:00:00Z", + "Hs (total) (m)": 1.5496, + "Tp (total) (s)": 11.8465 + }, + { + "Date+Time": "1985-01-17T00:00:00Z", + "Hs (total) (m)": 1.3894, + "Tp (total) (s)": 12.5149 + }, + { + "Date+Time": "1985-01-18T00:00:00Z", + "Hs (total) (m)": 1.8044, + "Tp (total) (s)": 12.4439 + }, + { + "Date+Time": "1985-01-19T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 11.3872 + }, + { + "Date+Time": "1985-01-20T00:00:00Z", + "Hs (total) (m)": 1.5496, + "Tp (total) (s)": 9.9521 + }, + { + "Date+Time": "1985-01-21T00:00:00Z", + "Hs (total) (m)": 2.0402, + "Tp (total) (s)": 13.5998 + }, + { + "Date+Time": "1985-01-22T00:00:00Z", + "Hs (total) (m)": 2.2469, + "Tp (total) (s)": 11.7878 + }, + { + "Date+Time": "1985-01-23T00:00:00Z", + "Hs (total) (m)": 1.6243, + "Tp (total) (s)": 11.3392 + }, + { + "Date+Time": "1985-01-24T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 11.5444 + }, + { + "Date+Time": "1985-01-25T00:00:00Z", + "Hs (total) (m)": 2.4972, + "Tp (total) (s)": 7.4763 + }, + { + "Date+Time": "1985-01-26T00:00:00Z", + "Hs (total) (m)": 2.1867, + "Tp (total) (s)": 10.612 + }, + { + "Date+Time": "1985-01-27T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 11.3857 + }, + { + "Date+Time": "1985-01-28T00:00:00Z", + "Hs (total) (m)": 2.2164, + "Tp (total) (s)": 11.2674 + }, + { + "Date+Time": "1985-01-29T00:00:00Z", + "Hs (total) (m)": 2.1599, + "Tp (total) (s)": 10.6723 + }, + { + "Date+Time": "1985-01-30T00:00:00Z", + "Hs (total) (m)": 2.1966, + "Tp (total) (s)": 10.8188 + }, + { + "Date+Time": "1985-01-31T00:00:00Z", + "Hs (total) (m)": 2.4804, + "Tp (total) (s)": 12.6301 + }, + { + "Date+Time": "1985-02-01T00:00:00Z", + "Hs (total) (m)": 3.9079, + "Tp (total) (s)": 14.198 + }, + { + "Date+Time": "1985-02-02T00:00:00Z", + "Hs (total) (m)": 3.6065, + "Tp (total) (s)": 14.3689 + }, + { + "Date+Time": "1985-02-03T00:00:00Z", + "Hs (total) (m)": 3.6897, + "Tp (total) (s)": 15.2997 + }, + { + "Date+Time": "1985-02-04T00:00:00Z", + "Hs (total) (m)": 2.1653, + "Tp (total) (s)": 12.067 + }, + { + "Date+Time": "1985-02-05T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 11.7161 + }, + { + "Date+Time": "1985-02-06T00:00:00Z", + "Hs (total) (m)": 1.1185, + "Tp (total) (s)": 10.0047 + }, + { + "Date+Time": "1985-02-07T00:00:00Z", + "Hs (total) (m)": 1.5496, + "Tp (total) (s)": 11.1942 + }, + { + "Date+Time": "1985-02-08T00:00:00Z", + "Hs (total) (m)": 2.3423, + "Tp (total) (s)": 16.4251 + }, + { + "Date+Time": "1985-02-09T00:00:00Z", + "Hs (total) (m)": 2.5323, + "Tp (total) (s)": 13.5708 + }, + { + "Date+Time": "1985-02-10T00:00:00Z", + "Hs (total) (m)": 3.3242, + "Tp (total) (s)": 13.7471 + }, + { + "Date+Time": "1985-02-11T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 7.2375 + }, + { + "Date+Time": "1985-02-12T00:00:00Z", + "Hs (total) (m)": 3.0442, + "Tp (total) (s)": 13.8066 + }, + { + "Date+Time": "1985-02-13T00:00:00Z", + "Hs (total) (m)": 2.4186, + "Tp (total) (s)": 12.6308 + }, + { + "Date+Time": "1985-02-14T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 13.9859 + }, + { + "Date+Time": "1985-02-15T00:00:00Z", + "Hs (total) (m)": 1.9974, + "Tp (total) (s)": 12.611 + }, + { + "Date+Time": "1985-02-16T00:00:00Z", + "Hs (total) (m)": 1.5748, + "Tp (total) (s)": 5.8039 + }, + { + "Date+Time": "1985-02-17T00:00:00Z", + "Hs (total) (m)": 1.2368, + "Tp (total) (s)": 5.884 + }, + { + "Date+Time": "1985-02-18T00:00:00Z", + "Hs (total) (m)": 1.3886, + "Tp (total) (s)": 12.0205 + }, + { + "Date+Time": "1985-02-19T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 11.4231 + }, + { + "Date+Time": "1985-02-20T00:00:00Z", + "Hs (total) (m)": 2.4682, + "Tp (total) (s)": 8.5307 + }, + { + "Date+Time": "1985-02-21T00:00:00Z", + "Hs (total) (m)": 1.5694, + "Tp (total) (s)": 12.4531 + }, + { + "Date+Time": "1985-02-22T00:00:00Z", + "Hs (total) (m)": 2.0333, + "Tp (total) (s)": 11.8305 + }, + { + "Date+Time": "1985-02-23T00:00:00Z", + "Hs (total) (m)": 2.1943, + "Tp (total) (s)": 11.2369 + }, + { + "Date+Time": "1985-02-24T00:00:00Z", + "Hs (total) (m)": 3.4371, + "Tp (total) (s)": 11.9228 + }, + { + "Date+Time": "1985-02-25T00:00:00Z", + "Hs (total) (m)": 2.7116, + "Tp (total) (s)": 12.4325 + }, + { + "Date+Time": "1985-02-26T00:00:00Z", + "Hs (total) (m)": 2.1676, + "Tp (total) (s)": 11.5482 + }, + { + "Date+Time": "1985-02-27T00:00:00Z", + "Hs (total) (m)": 2.118, + "Tp (total) (s)": 10.2939 + }, + { + "Date+Time": "1985-02-28T00:00:00Z", + "Hs (total) (m)": 1.7388, + "Tp (total) (s)": 9.2318 + }, + { + "Date+Time": "1985-03-01T00:00:00Z", + "Hs (total) (m)": 2.5246, + "Tp (total) (s)": 12.7331 + }, + { + "Date+Time": "1985-03-02T00:00:00Z", + "Hs (total) (m)": 3.264, + "Tp (total) (s)": 15.5759 + }, + { + "Date+Time": "1985-03-03T00:00:00Z", + "Hs (total) (m)": 2.3919, + "Tp (total) (s)": 14.1583 + }, + { + "Date+Time": "1985-03-04T00:00:00Z", + "Hs (total) (m)": 2.6177, + "Tp (total) (s)": 13.8768 + }, + { + "Date+Time": "1985-03-05T00:00:00Z", + "Hs (total) (m)": 2.4575, + "Tp (total) (s)": 14.1736 + }, + { + "Date+Time": "1985-03-06T00:00:00Z", + "Hs (total) (m)": 1.8868, + "Tp (total) (s)": 12.0754 + }, + { + "Date+Time": "1985-03-07T00:00:00Z", + "Hs (total) (m)": 2.7871, + "Tp (total) (s)": 10.8974 + }, + { + "Date+Time": "1985-03-08T00:00:00Z", + "Hs (total) (m)": 2.5208, + "Tp (total) (s)": 13.1649 + }, + { + "Date+Time": "1985-03-09T00:00:00Z", + "Hs (total) (m)": 3.0663, + "Tp (total) (s)": 13.0543 + }, + { + "Date+Time": "1985-03-10T00:00:00Z", + "Hs (total) (m)": 3.0503, + "Tp (total) (s)": 12.2761 + }, + { + "Date+Time": "1985-03-11T00:00:00Z", + "Hs (total) (m)": 1.9662, + "Tp (total) (s)": 11.4986 + }, + { + "Date+Time": "1985-03-12T00:00:00Z", + "Hs (total) (m)": 1.4275, + "Tp (total) (s)": 13.039 + }, + { + "Date+Time": "1985-03-13T00:00:00Z", + "Hs (total) (m)": 1.632, + "Tp (total) (s)": 13.8623 + }, + { + "Date+Time": "1985-03-14T00:00:00Z", + "Hs (total) (m)": 1.7464, + "Tp (total) (s)": 11.8274 + }, + { + "Date+Time": "1985-03-15T00:00:00Z", + "Hs (total) (m)": 1.6648, + "Tp (total) (s)": 10.6365 + }, + { + "Date+Time": "1985-03-16T00:00:00Z", + "Hs (total) (m)": 1.7014, + "Tp (total) (s)": 9.2364 + }, + { + "Date+Time": "1985-03-17T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 9.3883 + }, + { + "Date+Time": "1985-03-18T00:00:00Z", + "Hs (total) (m)": 1.0765, + "Tp (total) (s)": 9.624 + }, + { + "Date+Time": "1985-03-19T00:00:00Z", + "Hs (total) (m)": 1.4985, + "Tp (total) (s)": 5.8107 + }, + { + "Date+Time": "1985-03-20T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 11.2316 + }, + { + "Date+Time": "1985-03-21T00:00:00Z", + "Hs (total) (m)": 2.5353, + "Tp (total) (s)": 11.7244 + }, + { + "Date+Time": "1985-03-22T00:00:00Z", + "Hs (total) (m)": 4.0864, + "Tp (total) (s)": 15.1402 + }, + { + "Date+Time": "1985-03-23T00:00:00Z", + "Hs (total) (m)": 1.8494, + "Tp (total) (s)": 12.4798 + }, + { + "Date+Time": "1985-03-24T00:00:00Z", + "Hs (total) (m)": 1.6099, + "Tp (total) (s)": 11.916 + }, + { + "Date+Time": "1985-03-25T00:00:00Z", + "Hs (total) (m)": 1.4367, + "Tp (total) (s)": 12.3081 + }, + { + "Date+Time": "1985-03-26T00:00:00Z", + "Hs (total) (m)": 0.9995, + "Tp (total) (s)": 8.5398 + }, + { + "Date+Time": "1985-03-27T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 10.4297 + }, + { + "Date+Time": "1985-03-28T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 10.374 + }, + { + "Date+Time": "1985-03-29T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 9.5828 + }, + { + "Date+Time": "1985-03-30T00:00:00Z", + "Hs (total) (m)": 2.3209, + "Tp (total) (s)": 7.8822 + }, + { + "Date+Time": "1985-03-31T00:00:00Z", + "Hs (total) (m)": 2.8832, + "Tp (total) (s)": 10.551 + }, + { + "Date+Time": "1985-04-01T00:00:00Z", + "Hs (total) (m)": 3.3753, + "Tp (total) (s)": 11.4231 + }, + { + "Date+Time": "1985-04-02T00:00:00Z", + "Hs (total) (m)": 2.8573, + "Tp (total) (s)": 11.9114 + }, + { + "Date+Time": "1985-04-03T00:00:00Z", + "Hs (total) (m)": 2.517, + "Tp (total) (s)": 11.3285 + }, + { + "Date+Time": "1985-04-04T00:00:00Z", + "Hs (total) (m)": 3.4616, + "Tp (total) (s)": 11.6741 + }, + { + "Date+Time": "1985-04-05T00:00:00Z", + "Hs (total) (m)": 2.9931, + "Tp (total) (s)": 13.7043 + }, + { + "Date+Time": "1985-04-06T00:00:00Z", + "Hs (total) (m)": 2.6368, + "Tp (total) (s)": 12.5225 + }, + { + "Date+Time": "1985-04-07T00:00:00Z", + "Hs (total) (m)": 2.3209, + "Tp (total) (s)": 11.0187 + }, + { + "Date+Time": "1985-04-08T00:00:00Z", + "Hs (total) (m)": 1.9143, + "Tp (total) (s)": 10.4579 + }, + { + "Date+Time": "1985-04-09T00:00:00Z", + "Hs (total) (m)": 1.5442, + "Tp (total) (s)": 11.6329 + }, + { + "Date+Time": "1985-04-10T00:00:00Z", + "Hs (total) (m)": 1.7449, + "Tp (total) (s)": 12.0602 + }, + { + "Date+Time": "1985-04-11T00:00:00Z", + "Hs (total) (m)": 1.4023, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "1985-04-12T00:00:00Z", + "Hs (total) (m)": 2.3797, + "Tp (total) (s)": 8.5566 + }, + { + "Date+Time": "1985-04-13T00:00:00Z", + "Hs (total) (m)": 3.3189, + "Tp (total) (s)": 13.2435 + }, + { + "Date+Time": "1985-04-14T00:00:00Z", + "Hs (total) (m)": 4.9167, + "Tp (total) (s)": 13.0913 + }, + { + "Date+Time": "1985-04-15T00:00:00Z", + "Hs (total) (m)": 3.4806, + "Tp (total) (s)": 13.9607 + }, + { + "Date+Time": "1985-04-16T00:00:00Z", + "Hs (total) (m)": 1.9265, + "Tp (total) (s)": 11.5703 + }, + { + "Date+Time": "1985-04-17T00:00:00Z", + "Hs (total) (m)": 2.4079, + "Tp (total) (s)": 10.4671 + }, + { + "Date+Time": "1985-04-18T00:00:00Z", + "Hs (total) (m)": 1.9372, + "Tp (total) (s)": 11.4414 + }, + { + "Date+Time": "1985-04-19T00:00:00Z", + "Hs (total) (m)": 1.4931, + "Tp (total) (s)": 11.285 + }, + { + "Date+Time": "1985-04-20T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 9.3989 + }, + { + "Date+Time": "1985-04-21T00:00:00Z", + "Hs (total) (m)": 0.8789, + "Tp (total) (s)": 8.3613 + }, + { + "Date+Time": "1985-04-22T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 7.8806 + }, + { + "Date+Time": "1985-04-23T00:00:00Z", + "Hs (total) (m)": 0.6851, + "Tp (total) (s)": 11.2049 + }, + { + "Date+Time": "1985-04-24T00:00:00Z", + "Hs (total) (m)": 0.5081, + "Tp (total) (s)": 2.6933 + }, + { + "Date+Time": "1985-04-25T00:00:00Z", + "Hs (total) (m)": 0.4387, + "Tp (total) (s)": 9.817 + }, + { + "Date+Time": "1985-04-26T00:00:00Z", + "Hs (total) (m)": 0.4891, + "Tp (total) (s)": 8.3438 + }, + { + "Date+Time": "1985-04-27T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 3.6279 + }, + { + "Date+Time": "1985-04-28T00:00:00Z", + "Hs (total) (m)": 0.9323, + "Tp (total) (s)": 8.4964 + }, + { + "Date+Time": "1985-04-29T00:00:00Z", + "Hs (total) (m)": 1.2162, + "Tp (total) (s)": 10.3343 + }, + { + "Date+Time": "1985-04-30T00:00:00Z", + "Hs (total) (m)": 1.3405, + "Tp (total) (s)": 10.2916 + }, + { + "Date+Time": "1985-05-01T00:00:00Z", + "Hs (total) (m)": 1.4222, + "Tp (total) (s)": 7.7639 + }, + { + "Date+Time": "1985-05-02T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 7.7898 + }, + { + "Date+Time": "1985-05-03T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 10.4427 + }, + { + "Date+Time": "1985-05-04T00:00:00Z", + "Hs (total) (m)": 0.8209, + "Tp (total) (s)": 8.9656 + }, + { + "Date+Time": "1985-05-05T00:00:00Z", + "Hs (total) (m)": 0.9354, + "Tp (total) (s)": 9.6919 + }, + { + "Date+Time": "1985-05-06T00:00:00Z", + "Hs (total) (m)": 1.8456, + "Tp (total) (s)": 8.8862 + }, + { + "Date+Time": "1985-05-07T00:00:00Z", + "Hs (total) (m)": 1.3604, + "Tp (total) (s)": 10.7433 + }, + { + "Date+Time": "1985-05-08T00:00:00Z", + "Hs (total) (m)": 1.017, + "Tp (total) (s)": 10.3549 + }, + { + "Date+Time": "1985-05-09T00:00:00Z", + "Hs (total) (m)": 1.7685, + "Tp (total) (s)": 14.2399 + }, + { + "Date+Time": "1985-05-10T00:00:00Z", + "Hs (total) (m)": 1.9967, + "Tp (total) (s)": 7.9028 + }, + { + "Date+Time": "1985-05-11T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 8.4613 + }, + { + "Date+Time": "1985-05-12T00:00:00Z", + "Hs (total) (m)": 0.8057, + "Tp (total) (s)": 9.9261 + }, + { + "Date+Time": "1985-05-13T00:00:00Z", + "Hs (total) (m)": 0.8339, + "Tp (total) (s)": 9.4058 + }, + { + "Date+Time": "1985-05-14T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 9.2776 + }, + { + "Date+Time": "1985-05-15T00:00:00Z", + "Hs (total) (m)": 0.8591, + "Tp (total) (s)": 9.2891 + }, + { + "Date+Time": "1985-05-16T00:00:00Z", + "Hs (total) (m)": 1.1872, + "Tp (total) (s)": 11.4879 + }, + { + "Date+Time": "1985-05-17T00:00:00Z", + "Hs (total) (m)": 1.442, + "Tp (total) (s)": 12.4088 + }, + { + "Date+Time": "1985-05-18T00:00:00Z", + "Hs (total) (m)": 1.0147, + "Tp (total) (s)": 10.5152 + }, + { + "Date+Time": "1985-05-19T00:00:00Z", + "Hs (total) (m)": 1.3802, + "Tp (total) (s)": 16.1191 + }, + { + "Date+Time": "1985-05-20T00:00:00Z", + "Hs (total) (m)": 1.8189, + "Tp (total) (s)": 14.1308 + }, + { + "Date+Time": "1985-05-21T00:00:00Z", + "Hs (total) (m)": 1.1048, + "Tp (total) (s)": 11.8595 + }, + { + "Date+Time": "1985-05-22T00:00:00Z", + "Hs (total) (m)": 0.8957, + "Tp (total) (s)": 10.5235 + }, + { + "Date+Time": "1985-05-23T00:00:00Z", + "Hs (total) (m)": 0.705, + "Tp (total) (s)": 9.2029 + }, + { + "Date+Time": "1985-05-24T00:00:00Z", + "Hs (total) (m)": 0.7752, + "Tp (total) (s)": 4.0681 + }, + { + "Date+Time": "1985-05-25T00:00:00Z", + "Hs (total) (m)": 1.2909, + "Tp (total) (s)": 6.5538 + }, + { + "Date+Time": "1985-05-26T00:00:00Z", + "Hs (total) (m)": 1.8883, + "Tp (total) (s)": 5.3262 + }, + { + "Date+Time": "1985-05-27T00:00:00Z", + "Hs (total) (m)": 1.9669, + "Tp (total) (s)": 7.5938 + }, + { + "Date+Time": "1985-05-28T00:00:00Z", + "Hs (total) (m)": 0.6569, + "Tp (total) (s)": 9.9139 + }, + { + "Date+Time": "1985-05-29T00:00:00Z", + "Hs (total) (m)": 0.8431, + "Tp (total) (s)": 9.3356 + }, + { + "Date+Time": "1985-05-30T00:00:00Z", + "Hs (total) (m)": 1.0819, + "Tp (total) (s)": 6.5394 + }, + { + "Date+Time": "1985-05-31T00:00:00Z", + "Hs (total) (m)": 0.7653, + "Tp (total) (s)": 7.8257 + }, + { + "Date+Time": "1985-06-01T00:00:00Z", + "Hs (total) (m)": 0.6439, + "Tp (total) (s)": 8.6856 + }, + { + "Date+Time": "1985-06-02T00:00:00Z", + "Hs (total) (m)": 0.5867, + "Tp (total) (s)": 7.7754 + }, + { + "Date+Time": "1985-06-03T00:00:00Z", + "Hs (total) (m)": 0.9041, + "Tp (total) (s)": 11.0309 + }, + { + "Date+Time": "1985-06-04T00:00:00Z", + "Hs (total) (m)": 0.8011, + "Tp (total) (s)": 9.4501 + }, + { + "Date+Time": "1985-06-05T00:00:00Z", + "Hs (total) (m)": 0.8057, + "Tp (total) (s)": 3.3105 + }, + { + "Date+Time": "1985-06-06T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 3.2853 + }, + { + "Date+Time": "1985-06-07T00:00:00Z", + "Hs (total) (m)": 0.7324, + "Tp (total) (s)": 7.9577 + }, + { + "Date+Time": "1985-06-08T00:00:00Z", + "Hs (total) (m)": 0.7218, + "Tp (total) (s)": 5.8466 + }, + { + "Date+Time": "1985-06-09T00:00:00Z", + "Hs (total) (m)": 1.1864, + "Tp (total) (s)": 5.9366 + }, + { + "Date+Time": "1985-06-10T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 6.9048 + }, + { + "Date+Time": "1985-06-11T00:00:00Z", + "Hs (total) (m)": 1.7144, + "Tp (total) (s)": 9.0556 + }, + { + "Date+Time": "1985-06-12T00:00:00Z", + "Hs (total) (m)": 2.0867, + "Tp (total) (s)": 8.7733 + }, + { + "Date+Time": "1985-06-13T00:00:00Z", + "Hs (total) (m)": 2.4705, + "Tp (total) (s)": 9.1601 + }, + { + "Date+Time": "1985-06-14T00:00:00Z", + "Hs (total) (m)": 0.8896, + "Tp (total) (s)": 9.2143 + }, + { + "Date+Time": "1985-06-15T00:00:00Z", + "Hs (total) (m)": 0.6981, + "Tp (total) (s)": 8.3712 + }, + { + "Date+Time": "1985-06-16T00:00:00Z", + "Hs (total) (m)": 0.6859, + "Tp (total) (s)": 10.4282 + }, + { + "Date+Time": "1985-06-17T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 9.1975 + }, + { + "Date+Time": "1985-06-18T00:00:00Z", + "Hs (total) (m)": 1.3138, + "Tp (total) (s)": 5.8344 + }, + { + "Date+Time": "1985-06-19T00:00:00Z", + "Hs (total) (m)": 1.101, + "Tp (total) (s)": 7.0887 + }, + { + "Date+Time": "1985-06-20T00:00:00Z", + "Hs (total) (m)": 1.1025, + "Tp (total) (s)": 8.8778 + }, + { + "Date+Time": "1985-06-21T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 8.5398 + }, + { + "Date+Time": "1985-06-22T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 8.5108 + }, + { + "Date+Time": "1985-06-23T00:00:00Z", + "Hs (total) (m)": 2.8558, + "Tp (total) (s)": 11.1316 + }, + { + "Date+Time": "1985-06-24T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 8.6085 + }, + { + "Date+Time": "1985-06-25T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 6.8873 + }, + { + "Date+Time": "1985-06-26T00:00:00Z", + "Hs (total) (m)": 1.2314, + "Tp (total) (s)": 6.9918 + }, + { + "Date+Time": "1985-06-27T00:00:00Z", + "Hs (total) (m)": 1.2238, + "Tp (total) (s)": 7.8974 + }, + { + "Date+Time": "1985-06-28T00:00:00Z", + "Hs (total) (m)": 1.12, + "Tp (total) (s)": 7.6685 + }, + { + "Date+Time": "1985-06-29T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 5.8489 + }, + { + "Date+Time": "1985-06-30T00:00:00Z", + "Hs (total) (m)": 0.9049, + "Tp (total) (s)": 7.841 + }, + { + "Date+Time": "1985-07-01T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 8.5093 + }, + { + "Date+Time": "1985-07-02T00:00:00Z", + "Hs (total) (m)": 1.0781, + "Tp (total) (s)": 5.2141 + }, + { + "Date+Time": "1985-07-03T00:00:00Z", + "Hs (total) (m)": 1.2444, + "Tp (total) (s)": 8.7985 + }, + { + "Date+Time": "1985-07-04T00:00:00Z", + "Hs (total) (m)": 0.9247, + "Tp (total) (s)": 8.7825 + }, + { + "Date+Time": "1985-07-05T00:00:00Z", + "Hs (total) (m)": 0.9957, + "Tp (total) (s)": 8.4284 + }, + { + "Date+Time": "1985-07-06T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 7.622 + }, + { + "Date+Time": "1985-07-07T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 7.7494 + }, + { + "Date+Time": "1985-07-08T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 7.8463 + }, + { + "Date+Time": "1985-07-09T00:00:00Z", + "Hs (total) (m)": 1.1185, + "Tp (total) (s)": 8.4262 + }, + { + "Date+Time": "1985-07-10T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 7.9531 + }, + { + "Date+Time": "1985-07-11T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 6.4127 + }, + { + "Date+Time": "1985-07-12T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 8.1126 + }, + { + "Date+Time": "1985-07-13T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 7.9745 + }, + { + "Date+Time": "1985-07-14T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 7.973 + }, + { + "Date+Time": "1985-07-15T00:00:00Z", + "Hs (total) (m)": 0.7912, + "Tp (total) (s)": 8.4849 + }, + { + "Date+Time": "1985-07-16T00:00:00Z", + "Hs (total) (m)": 1.7617, + "Tp (total) (s)": 7.8806 + }, + { + "Date+Time": "1985-07-17T00:00:00Z", + "Hs (total) (m)": 1.7678, + "Tp (total) (s)": 6.9155 + }, + { + "Date+Time": "1985-07-18T00:00:00Z", + "Hs (total) (m)": 3.1869, + "Tp (total) (s)": 12.4409 + }, + { + "Date+Time": "1985-07-19T00:00:00Z", + "Hs (total) (m)": 1.6602, + "Tp (total) (s)": 11.1835 + }, + { + "Date+Time": "1985-07-20T00:00:00Z", + "Hs (total) (m)": 2.0837, + "Tp (total) (s)": 8.3285 + }, + { + "Date+Time": "1985-07-21T00:00:00Z", + "Hs (total) (m)": 1.7975, + "Tp (total) (s)": 9.3432 + }, + { + "Date+Time": "1985-07-22T00:00:00Z", + "Hs (total) (m)": 1.6289, + "Tp (total) (s)": 8.8153 + }, + { + "Date+Time": "1985-07-23T00:00:00Z", + "Hs (total) (m)": 1.7396, + "Tp (total) (s)": 9.3219 + }, + { + "Date+Time": "1985-07-24T00:00:00Z", + "Hs (total) (m)": 1.8876, + "Tp (total) (s)": 9.9734 + }, + { + "Date+Time": "1985-07-25T00:00:00Z", + "Hs (total) (m)": 1.2665, + "Tp (total) (s)": 9.3059 + }, + { + "Date+Time": "1985-07-26T00:00:00Z", + "Hs (total) (m)": 0.9209, + "Tp (total) (s)": 8.7077 + }, + { + "Date+Time": "1985-07-27T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 8.723 + }, + { + "Date+Time": "1985-07-28T00:00:00Z", + "Hs (total) (m)": 0.7157, + "Tp (total) (s)": 7.5182 + }, + { + "Date+Time": "1985-07-29T00:00:00Z", + "Hs (total) (m)": 0.9758, + "Tp (total) (s)": 5.8969 + }, + { + "Date+Time": "1985-07-30T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 6.5653 + }, + { + "Date+Time": "1985-07-31T00:00:00Z", + "Hs (total) (m)": 0.6981, + "Tp (total) (s)": 7.6144 + }, + { + "Date+Time": "1985-08-01T00:00:00Z", + "Hs (total) (m)": 1.1277, + "Tp (total) (s)": 11.5871 + }, + { + "Date+Time": "1985-08-02T00:00:00Z", + "Hs (total) (m)": 2.7329, + "Tp (total) (s)": 8.1729 + }, + { + "Date+Time": "1985-08-03T00:00:00Z", + "Hs (total) (m)": 3.1259, + "Tp (total) (s)": 11.5192 + }, + { + "Date+Time": "1985-08-04T00:00:00Z", + "Hs (total) (m)": 2.2874, + "Tp (total) (s)": 11.0454 + }, + { + "Date+Time": "1985-08-05T00:00:00Z", + "Hs (total) (m)": 1.6503, + "Tp (total) (s)": 7.1062 + }, + { + "Date+Time": "1985-08-06T00:00:00Z", + "Hs (total) (m)": 1.7182, + "Tp (total) (s)": 8.2293 + }, + { + "Date+Time": "1985-08-07T00:00:00Z", + "Hs (total) (m)": 1.7457, + "Tp (total) (s)": 6.9063 + }, + { + "Date+Time": "1985-08-08T00:00:00Z", + "Hs (total) (m)": 1.6717, + "Tp (total) (s)": 10.1558 + }, + { + "Date+Time": "1985-08-09T00:00:00Z", + "Hs (total) (m)": 2.2408, + "Tp (total) (s)": 9.2158 + }, + { + "Date+Time": "1985-08-10T00:00:00Z", + "Hs (total) (m)": 2.9878, + "Tp (total) (s)": 11.6535 + }, + { + "Date+Time": "1985-08-11T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "1985-08-12T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 7.6952 + }, + { + "Date+Time": "1985-08-13T00:00:00Z", + "Hs (total) (m)": 1.4512, + "Tp (total) (s)": 7.812 + }, + { + "Date+Time": "1985-08-14T00:00:00Z", + "Hs (total) (m)": 0.9644, + "Tp (total) (s)": 7.1986 + }, + { + "Date+Time": "1985-08-15T00:00:00Z", + "Hs (total) (m)": 1.9005, + "Tp (total) (s)": 7.0818 + }, + { + "Date+Time": "1985-08-16T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 7.2932 + }, + { + "Date+Time": "1985-08-17T00:00:00Z", + "Hs (total) (m)": 0.6394, + "Tp (total) (s)": 6.2799 + }, + { + "Date+Time": "1985-08-18T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 7.6952 + }, + { + "Date+Time": "1985-08-19T00:00:00Z", + "Hs (total) (m)": 1.7884, + "Tp (total) (s)": 9.4874 + }, + { + "Date+Time": "1985-08-20T00:00:00Z", + "Hs (total) (m)": 2.0096, + "Tp (total) (s)": 9.959 + }, + { + "Date+Time": "1985-08-21T00:00:00Z", + "Hs (total) (m)": 2.7696, + "Tp (total) (s)": 9.3287 + }, + { + "Date+Time": "1985-08-22T00:00:00Z", + "Hs (total) (m)": 1.822, + "Tp (total) (s)": 8.4094 + }, + { + "Date+Time": "1985-08-23T00:00:00Z", + "Hs (total) (m)": 1.9684, + "Tp (total) (s)": 7.9882 + }, + { + "Date+Time": "1985-08-24T00:00:00Z", + "Hs (total) (m)": 2.1104, + "Tp (total) (s)": 8.3529 + }, + { + "Date+Time": "1985-08-25T00:00:00Z", + "Hs (total) (m)": 2.0226, + "Tp (total) (s)": 8.5025 + }, + { + "Date+Time": "1985-08-26T00:00:00Z", + "Hs (total) (m)": 1.2337, + "Tp (total) (s)": 8.9808 + }, + { + "Date+Time": "1985-08-27T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 6.3814 + }, + { + "Date+Time": "1985-08-28T00:00:00Z", + "Hs (total) (m)": 2.5048, + "Tp (total) (s)": 8.5246 + }, + { + "Date+Time": "1985-08-29T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 9.5973 + }, + { + "Date+Time": "1985-08-30T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 8.7001 + }, + { + "Date+Time": "1985-08-31T00:00:00Z", + "Hs (total) (m)": 1.2421, + "Tp (total) (s)": 6.4356 + }, + { + "Date+Time": "1985-09-01T00:00:00Z", + "Hs (total) (m)": 2.0508, + "Tp (total) (s)": 7.7013 + }, + { + "Date+Time": "1985-09-02T00:00:00Z", + "Hs (total) (m)": 0.7065, + "Tp (total) (s)": 9.6889 + }, + { + "Date+Time": "1985-09-03T00:00:00Z", + "Hs (total) (m)": 1.7762, + "Tp (total) (s)": 7.8593 + }, + { + "Date+Time": "1985-09-04T00:00:00Z", + "Hs (total) (m)": 1.0605, + "Tp (total) (s)": 9.4821 + }, + { + "Date+Time": "1985-09-05T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 8.7092 + }, + { + "Date+Time": "1985-09-06T00:00:00Z", + "Hs (total) (m)": 1.2116, + "Tp (total) (s)": 10.1619 + }, + { + "Date+Time": "1985-09-07T00:00:00Z", + "Hs (total) (m)": 1.1734, + "Tp (total) (s)": 7.8478 + }, + { + "Date+Time": "1985-09-08T00:00:00Z", + "Hs (total) (m)": 2.0714, + "Tp (total) (s)": 7.8867 + }, + { + "Date+Time": "1985-09-09T00:00:00Z", + "Hs (total) (m)": 1.4573, + "Tp (total) (s)": 9.2662 + }, + { + "Date+Time": "1985-09-10T00:00:00Z", + "Hs (total) (m)": 1.5915, + "Tp (total) (s)": 9.4966 + }, + { + "Date+Time": "1985-09-11T00:00:00Z", + "Hs (total) (m)": 1.3108, + "Tp (total) (s)": 10.2664 + }, + { + "Date+Time": "1985-09-12T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 10.4076 + }, + { + "Date+Time": "1985-09-13T00:00:00Z", + "Hs (total) (m)": 2.0859, + "Tp (total) (s)": 10.3038 + }, + { + "Date+Time": "1985-09-14T00:00:00Z", + "Hs (total) (m)": 3.1198, + "Tp (total) (s)": 11.5406 + }, + { + "Date+Time": "1985-09-15T00:00:00Z", + "Hs (total) (m)": 3.6653, + "Tp (total) (s)": 14.0477 + }, + { + "Date+Time": "1985-09-16T00:00:00Z", + "Hs (total) (m)": 2.2904, + "Tp (total) (s)": 11.4322 + }, + { + "Date+Time": "1985-09-17T00:00:00Z", + "Hs (total) (m)": 2.5941, + "Tp (total) (s)": 9.6881 + }, + { + "Date+Time": "1985-09-18T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 9.2547 + }, + { + "Date+Time": "1985-09-19T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 9.621 + }, + { + "Date+Time": "1985-09-20T00:00:00Z", + "Hs (total) (m)": 1.3627, + "Tp (total) (s)": 9.64 + }, + { + "Date+Time": "1985-09-21T00:00:00Z", + "Hs (total) (m)": 2.5979, + "Tp (total) (s)": 7.5396 + }, + { + "Date+Time": "1985-09-22T00:00:00Z", + "Hs (total) (m)": 2.5979, + "Tp (total) (s)": 10.4953 + }, + { + "Date+Time": "1985-09-23T00:00:00Z", + "Hs (total) (m)": 3.1587, + "Tp (total) (s)": 11.504 + }, + { + "Date+Time": "1985-09-24T00:00:00Z", + "Hs (total) (m)": 1.4092, + "Tp (total) (s)": 8.9297 + }, + { + "Date+Time": "1985-09-25T00:00:00Z", + "Hs (total) (m)": 1.5145, + "Tp (total) (s)": 16.2877 + }, + { + "Date+Time": "1985-09-26T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 12.981 + }, + { + "Date+Time": "1985-09-27T00:00:00Z", + "Hs (total) (m)": 1.4298, + "Tp (total) (s)": 11.0446 + }, + { + "Date+Time": "1985-09-28T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 9.5103 + }, + { + "Date+Time": "1985-09-29T00:00:00Z", + "Hs (total) (m)": 1.0681, + "Tp (total) (s)": 8.726 + }, + { + "Date+Time": "1985-09-30T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 10.4289 + }, + { + "Date+Time": "1985-10-01T00:00:00Z", + "Hs (total) (m)": 2.6048, + "Tp (total) (s)": 9.9849 + }, + { + "Date+Time": "1985-10-02T00:00:00Z", + "Hs (total) (m)": 1.9723, + "Tp (total) (s)": 8.3949 + }, + { + "Date+Time": "1985-10-03T00:00:00Z", + "Hs (total) (m)": 3.2983, + "Tp (total) (s)": 13.3503 + }, + { + "Date+Time": "1985-10-04T00:00:00Z", + "Hs (total) (m)": 3.6508, + "Tp (total) (s)": 12.598 + }, + { + "Date+Time": "1985-10-05T00:00:00Z", + "Hs (total) (m)": 4.2566, + "Tp (total) (s)": 12.4226 + }, + { + "Date+Time": "1985-10-06T00:00:00Z", + "Hs (total) (m)": 3.2975, + "Tp (total) (s)": 10.1955 + }, + { + "Date+Time": "1985-10-07T00:00:00Z", + "Hs (total) (m)": 3.2899, + "Tp (total) (s)": 11.7046 + }, + { + "Date+Time": "1985-10-08T00:00:00Z", + "Hs (total) (m)": 2.7436, + "Tp (total) (s)": 11.5139 + }, + { + "Date+Time": "1985-10-09T00:00:00Z", + "Hs (total) (m)": 2.7993, + "Tp (total) (s)": 10.4389 + }, + { + "Date+Time": "1985-10-10T00:00:00Z", + "Hs (total) (m)": 2.2675, + "Tp (total) (s)": 10.155 + }, + { + "Date+Time": "1985-10-11T00:00:00Z", + "Hs (total) (m)": 3.4837, + "Tp (total) (s)": 10.4358 + }, + { + "Date+Time": "1985-10-12T00:00:00Z", + "Hs (total) (m)": 1.603, + "Tp (total) (s)": 9.772 + }, + { + "Date+Time": "1985-10-13T00:00:00Z", + "Hs (total) (m)": 1.0323, + "Tp (total) (s)": 8.948 + }, + { + "Date+Time": "1985-10-14T00:00:00Z", + "Hs (total) (m)": 1.014, + "Tp (total) (s)": 11.5978 + }, + { + "Date+Time": "1985-10-15T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 10.3954 + }, + { + "Date+Time": "1985-10-16T00:00:00Z", + "Hs (total) (m)": 1.0811, + "Tp (total) (s)": 12.1616 + }, + { + "Date+Time": "1985-10-17T00:00:00Z", + "Hs (total) (m)": 1.2177, + "Tp (total) (s)": 11.6543 + }, + { + "Date+Time": "1985-10-18T00:00:00Z", + "Hs (total) (m)": 1.3497, + "Tp (total) (s)": 11.3529 + }, + { + "Date+Time": "1985-10-19T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 9.8712 + }, + { + "Date+Time": "1985-10-20T00:00:00Z", + "Hs (total) (m)": 1.1635, + "Tp (total) (s)": 11.8297 + }, + { + "Date+Time": "1985-10-21T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 11.1011 + }, + { + "Date+Time": "1985-10-22T00:00:00Z", + "Hs (total) (m)": 1.2719, + "Tp (total) (s)": 11.4154 + }, + { + "Date+Time": "1985-10-23T00:00:00Z", + "Hs (total) (m)": 0.9407, + "Tp (total) (s)": 10.4587 + }, + { + "Date+Time": "1985-10-24T00:00:00Z", + "Hs (total) (m)": 1.3085, + "Tp (total) (s)": 11.3308 + }, + { + "Date+Time": "1985-10-25T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 9.5416 + }, + { + "Date+Time": "1985-10-26T00:00:00Z", + "Hs (total) (m)": 0.8393, + "Tp (total) (s)": 8.5604 + }, + { + "Date+Time": "1985-10-27T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 11.7183 + }, + { + "Date+Time": "1985-10-28T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 9.4287 + }, + { + "Date+Time": "1985-10-29T00:00:00Z", + "Hs (total) (m)": 0.9842, + "Tp (total) (s)": 8.4063 + }, + { + "Date+Time": "1985-10-30T00:00:00Z", + "Hs (total) (m)": 0.9445, + "Tp (total) (s)": 11.475 + }, + { + "Date+Time": "1985-10-31T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 10.6983 + }, + { + "Date+Time": "1985-11-01T00:00:00Z", + "Hs (total) (m)": 0.6767, + "Tp (total) (s)": 2.7322 + }, + { + "Date+Time": "1985-11-02T00:00:00Z", + "Hs (total) (m)": 0.7866, + "Tp (total) (s)": 6.296 + }, + { + "Date+Time": "1985-11-03T00:00:00Z", + "Hs (total) (m)": 0.5402, + "Tp (total) (s)": 12.6591 + }, + { + "Date+Time": "1985-11-04T00:00:00Z", + "Hs (total) (m)": 2.179, + "Tp (total) (s)": 6.9605 + }, + { + "Date+Time": "1985-11-05T00:00:00Z", + "Hs (total) (m)": 1.6694, + "Tp (total) (s)": 13.4419 + }, + { + "Date+Time": "1985-11-06T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 9.7339 + }, + { + "Date+Time": "1985-11-07T00:00:00Z", + "Hs (total) (m)": 2.8672, + "Tp (total) (s)": 10.1299 + }, + { + "Date+Time": "1985-11-08T00:00:00Z", + "Hs (total) (m)": 2.2622, + "Tp (total) (s)": 10.3763 + }, + { + "Date+Time": "1985-11-09T00:00:00Z", + "Hs (total) (m)": 2.4262, + "Tp (total) (s)": 9.7911 + }, + { + "Date+Time": "1985-11-10T00:00:00Z", + "Hs (total) (m)": 1.9127, + "Tp (total) (s)": 12.9154 + }, + { + "Date+Time": "1985-11-11T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 8.7832 + }, + { + "Date+Time": "1985-11-12T00:00:00Z", + "Hs (total) (m)": 0.6287, + "Tp (total) (s)": 8.7115 + }, + { + "Date+Time": "1985-11-13T00:00:00Z", + "Hs (total) (m)": 1.062, + "Tp (total) (s)": 10.474 + }, + { + "Date+Time": "1985-11-14T00:00:00Z", + "Hs (total) (m)": 2.6399, + "Tp (total) (s)": 11.5146 + }, + { + "Date+Time": "1985-11-15T00:00:00Z", + "Hs (total) (m)": 1.4855, + "Tp (total) (s)": 10.2519 + }, + { + "Date+Time": "1985-11-16T00:00:00Z", + "Hs (total) (m)": 3.3761, + "Tp (total) (s)": 11.2331 + }, + { + "Date+Time": "1985-11-17T00:00:00Z", + "Hs (total) (m)": 2.4369, + "Tp (total) (s)": 12.3981 + }, + { + "Date+Time": "1985-11-18T00:00:00Z", + "Hs (total) (m)": 2.7291, + "Tp (total) (s)": 14.9297 + }, + { + "Date+Time": "1985-11-19T00:00:00Z", + "Hs (total) (m)": 2.5742, + "Tp (total) (s)": 13.805 + }, + { + "Date+Time": "1985-11-20T00:00:00Z", + "Hs (total) (m)": 2.0241, + "Tp (total) (s)": 12.6621 + }, + { + "Date+Time": "1985-11-21T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 11.5154 + }, + { + "Date+Time": "1985-11-22T00:00:00Z", + "Hs (total) (m)": 0.5951, + "Tp (total) (s)": 2.6498 + }, + { + "Date+Time": "1985-11-23T00:00:00Z", + "Hs (total) (m)": 0.4448, + "Tp (total) (s)": 2.4842 + }, + { + "Date+Time": "1985-11-24T00:00:00Z", + "Hs (total) (m)": 0.4227, + "Tp (total) (s)": 2.443 + }, + { + "Date+Time": "1985-11-25T00:00:00Z", + "Hs (total) (m)": 0.4357, + "Tp (total) (s)": 2.6154 + }, + { + "Date+Time": "1985-11-26T00:00:00Z", + "Hs (total) (m)": 0.5638, + "Tp (total) (s)": 11.4391 + }, + { + "Date+Time": "1985-11-27T00:00:00Z", + "Hs (total) (m)": 0.8232, + "Tp (total) (s)": 11.5596 + }, + { + "Date+Time": "1985-11-28T00:00:00Z", + "Hs (total) (m)": 0.7599, + "Tp (total) (s)": 10.1238 + }, + { + "Date+Time": "1985-11-29T00:00:00Z", + "Hs (total) (m)": 0.4341, + "Tp (total) (s)": 10.3679 + }, + { + "Date+Time": "1985-11-30T00:00:00Z", + "Hs (total) (m)": 1.6831, + "Tp (total) (s)": 11.8213 + }, + { + "Date+Time": "1985-12-01T00:00:00Z", + "Hs (total) (m)": 2.4941, + "Tp (total) (s)": 10.4045 + }, + { + "Date+Time": "1985-12-02T00:00:00Z", + "Hs (total) (m)": 2.8993, + "Tp (total) (s)": 11.4078 + }, + { + "Date+Time": "1985-12-03T00:00:00Z", + "Hs (total) (m)": 4.9579, + "Tp (total) (s)": 10.6405 + }, + { + "Date+Time": "1985-12-04T00:00:00Z", + "Hs (total) (m)": 3.0618, + "Tp (total) (s)": 11.372 + }, + { + "Date+Time": "1985-12-05T00:00:00Z", + "Hs (total) (m)": 2.5987, + "Tp (total) (s)": 10.612 + }, + { + "Date+Time": "1985-12-06T00:00:00Z", + "Hs (total) (m)": 2.6589, + "Tp (total) (s)": 9.6652 + }, + { + "Date+Time": "1985-12-07T00:00:00Z", + "Hs (total) (m)": 2.356, + "Tp (total) (s)": 8.6482 + }, + { + "Date+Time": "1985-12-08T00:00:00Z", + "Hs (total) (m)": 2.2851, + "Tp (total) (s)": 13.6227 + }, + { + "Date+Time": "1985-12-09T00:00:00Z", + "Hs (total) (m)": 1.7579, + "Tp (total) (s)": 11.9488 + }, + { + "Date+Time": "1985-12-10T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 10.5296 + }, + { + "Date+Time": "1985-12-11T00:00:00Z", + "Hs (total) (m)": 2.044, + "Tp (total) (s)": 12.2112 + }, + { + "Date+Time": "1985-12-12T00:00:00Z", + "Hs (total) (m)": 3.4066, + "Tp (total) (s)": 12.5927 + }, + { + "Date+Time": "1985-12-13T00:00:00Z", + "Hs (total) (m)": 2.9801, + "Tp (total) (s)": 11.5757 + }, + { + "Date+Time": "1985-12-14T00:00:00Z", + "Hs (total) (m)": 1.9303, + "Tp (total) (s)": 10.8394 + }, + { + "Date+Time": "1985-12-15T00:00:00Z", + "Hs (total) (m)": 3.2571, + "Tp (total) (s)": 10.3992 + }, + { + "Date+Time": "1985-12-16T00:00:00Z", + "Hs (total) (m)": 2.3721, + "Tp (total) (s)": 11.0202 + }, + { + "Date+Time": "1985-12-17T00:00:00Z", + "Hs (total) (m)": 2.102, + "Tp (total) (s)": 10.5876 + }, + { + "Date+Time": "1985-12-18T00:00:00Z", + "Hs (total) (m)": 1.9425, + "Tp (total) (s)": 10.4526 + }, + { + "Date+Time": "1985-12-19T00:00:00Z", + "Hs (total) (m)": 3.1037, + "Tp (total) (s)": 15.1685 + }, + { + "Date+Time": "1985-12-20T00:00:00Z", + "Hs (total) (m)": 4.6434, + "Tp (total) (s)": 12.8376 + }, + { + "Date+Time": "1985-12-21T00:00:00Z", + "Hs (total) (m)": 5.4391, + "Tp (total) (s)": 13.6807 + }, + { + "Date+Time": "1985-12-22T00:00:00Z", + "Hs (total) (m)": 5.4405, + "Tp (total) (s)": 17.0754 + }, + { + "Date+Time": "1985-12-23T00:00:00Z", + "Hs (total) (m)": 4.5793, + "Tp (total) (s)": 15.4637 + }, + { + "Date+Time": "1985-12-24T00:00:00Z", + "Hs (total) (m)": 2.6811, + "Tp (total) (s)": 12.5309 + }, + { + "Date+Time": "1985-12-25T00:00:00Z", + "Hs (total) (m)": 2.2004, + "Tp (total) (s)": 11.4986 + }, + { + "Date+Time": "1985-12-26T00:00:00Z", + "Hs (total) (m)": 3.3921, + "Tp (total) (s)": 14.7336 + }, + { + "Date+Time": "1985-12-27T00:00:00Z", + "Hs (total) (m)": 1.0117, + "Tp (total) (s)": 3.3303 + }, + { + "Date+Time": "1985-12-28T00:00:00Z", + "Hs (total) (m)": 0.6355, + "Tp (total) (s)": 10.6761 + }, + { + "Date+Time": "1985-12-29T00:00:00Z", + "Hs (total) (m)": 0.4959, + "Tp (total) (s)": 12.0411 + }, + { + "Date+Time": "1985-12-30T00:00:00Z", + "Hs (total) (m)": 2.1859, + "Tp (total) (s)": 11.597 + }, + { + "Date+Time": "1985-12-31T00:00:00Z", + "Hs (total) (m)": 3.1449, + "Tp (total) (s)": 10.5716 + }, + { + "Date+Time": "1986-01-01T00:00:00Z", + "Hs (total) (m)": 2.591, + "Tp (total) (s)": 12.286 + }, + { + "Date+Time": "1986-01-02T00:00:00Z", + "Hs (total) (m)": 2.7017, + "Tp (total) (s)": 11.7817 + }, + { + "Date+Time": "1986-01-03T00:00:00Z", + "Hs (total) (m)": 3.3341, + "Tp (total) (s)": 16.129 + }, + { + "Date+Time": "1986-01-04T00:00:00Z", + "Hs (total) (m)": 2.8809, + "Tp (total) (s)": 15.7201 + }, + { + "Date+Time": "1986-01-05T00:00:00Z", + "Hs (total) (m)": 3.0152, + "Tp (total) (s)": 11.8709 + }, + { + "Date+Time": "1986-01-06T00:00:00Z", + "Hs (total) (m)": 2.7718, + "Tp (total) (s)": 12.4111 + }, + { + "Date+Time": "1986-01-07T00:00:00Z", + "Hs (total) (m)": 3.1724, + "Tp (total) (s)": 12.9337 + }, + { + "Date+Time": "1986-01-08T00:00:00Z", + "Hs (total) (m)": 2.6658, + "Tp (total) (s)": 13.319 + }, + { + "Date+Time": "1986-01-09T00:00:00Z", + "Hs (total) (m)": 2.3247, + "Tp (total) (s)": 14.2804 + }, + { + "Date+Time": "1986-01-10T00:00:00Z", + "Hs (total) (m)": 3.7156, + "Tp (total) (s)": 9.2372 + }, + { + "Date+Time": "1986-01-11T00:00:00Z", + "Hs (total) (m)": 4.4527, + "Tp (total) (s)": 13.8821 + }, + { + "Date+Time": "1986-01-12T00:00:00Z", + "Hs (total) (m)": 4.6655, + "Tp (total) (s)": 14.1125 + }, + { + "Date+Time": "1986-01-13T00:00:00Z", + "Hs (total) (m)": 3.9354, + "Tp (total) (s)": 13.7402 + }, + { + "Date+Time": "1986-01-14T00:00:00Z", + "Hs (total) (m)": 4.2314, + "Tp (total) (s)": 12.2173 + }, + { + "Date+Time": "1986-01-15T00:00:00Z", + "Hs (total) (m)": 4.9221, + "Tp (total) (s)": 15.6466 + }, + { + "Date+Time": "1986-01-16T00:00:00Z", + "Hs (total) (m)": 4.191, + "Tp (total) (s)": 15.656 + }, + { + "Date+Time": "1986-01-17T00:00:00Z", + "Hs (total) (m)": 2.5307, + "Tp (total) (s)": 13.7585 + }, + { + "Date+Time": "1986-01-18T00:00:00Z", + "Hs (total) (m)": 2.0814, + "Tp (total) (s)": 11.3613 + }, + { + "Date+Time": "1986-01-19T00:00:00Z", + "Hs (total) (m)": 2.5292, + "Tp (total) (s)": 15.1486 + }, + { + "Date+Time": "1986-01-20T00:00:00Z", + "Hs (total) (m)": 2.9641, + "Tp (total) (s)": 14.5177 + }, + { + "Date+Time": "1986-01-21T00:00:00Z", + "Hs (total) (m)": 3.6897, + "Tp (total) (s)": 13.2084 + }, + { + "Date+Time": "1986-01-22T00:00:00Z", + "Hs (total) (m)": 3.576, + "Tp (total) (s)": 12.5729 + }, + { + "Date+Time": "1986-01-23T00:00:00Z", + "Hs (total) (m)": 3.6019, + "Tp (total) (s)": 12.2089 + }, + { + "Date+Time": "1986-01-24T00:00:00Z", + "Hs (total) (m)": 3.5188, + "Tp (total) (s)": 12.6324 + }, + { + "Date+Time": "1986-01-25T00:00:00Z", + "Hs (total) (m)": 3.106, + "Tp (total) (s)": 13.4266 + }, + { + "Date+Time": "1986-01-26T00:00:00Z", + "Hs (total) (m)": 2.3621, + "Tp (total) (s)": 13.5983 + }, + { + "Date+Time": "1986-01-27T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 11.3742 + }, + { + "Date+Time": "1986-01-28T00:00:00Z", + "Hs (total) (m)": 2.2103, + "Tp (total) (s)": 11.3247 + }, + { + "Date+Time": "1986-01-29T00:00:00Z", + "Hs (total) (m)": 2.9595, + "Tp (total) (s)": 15.4645 + }, + { + "Date+Time": "1986-01-30T00:00:00Z", + "Hs (total) (m)": 2.8817, + "Tp (total) (s)": 15.08 + }, + { + "Date+Time": "1986-01-31T00:00:00Z", + "Hs (total) (m)": 2.2279, + "Tp (total) (s)": 13.892 + }, + { + "Date+Time": "1986-02-01T00:00:00Z", + "Hs (total) (m)": 1.5618, + "Tp (total) (s)": 12.7506 + }, + { + "Date+Time": "1986-02-02T00:00:00Z", + "Hs (total) (m)": 1.1193, + "Tp (total) (s)": 11.5581 + }, + { + "Date+Time": "1986-02-03T00:00:00Z", + "Hs (total) (m)": 0.8835, + "Tp (total) (s)": 3.2525 + }, + { + "Date+Time": "1986-02-04T00:00:00Z", + "Hs (total) (m)": 0.721, + "Tp (total) (s)": 3.0503 + }, + { + "Date+Time": "1986-02-05T00:00:00Z", + "Hs (total) (m)": 0.8362, + "Tp (total) (s)": 12.7895 + }, + { + "Date+Time": "1986-02-06T00:00:00Z", + "Hs (total) (m)": 0.7729, + "Tp (total) (s)": 12.009 + }, + { + "Date+Time": "1986-02-07T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 10.4534 + }, + { + "Date+Time": "1986-02-08T00:00:00Z", + "Hs (total) (m)": 0.7897, + "Tp (total) (s)": 3.1938 + }, + { + "Date+Time": "1986-02-09T00:00:00Z", + "Hs (total) (m)": 1.0079, + "Tp (total) (s)": 11.4772 + }, + { + "Date+Time": "1986-02-10T00:00:00Z", + "Hs (total) (m)": 1.7167, + "Tp (total) (s)": 11.8107 + }, + { + "Date+Time": "1986-02-11T00:00:00Z", + "Hs (total) (m)": 3.0847, + "Tp (total) (s)": 11.7771 + }, + { + "Date+Time": "1986-02-12T00:00:00Z", + "Hs (total) (m)": 2.8275, + "Tp (total) (s)": 11.2789 + }, + { + "Date+Time": "1986-02-13T00:00:00Z", + "Hs (total) (m)": 2.6322, + "Tp (total) (s)": 12.141 + }, + { + "Date+Time": "1986-02-14T00:00:00Z", + "Hs (total) (m)": 1.5954, + "Tp (total) (s)": 5.4392 + }, + { + "Date+Time": "1986-02-15T00:00:00Z", + "Hs (total) (m)": 1.3199, + "Tp (total) (s)": 11.6672 + }, + { + "Date+Time": "1986-02-16T00:00:00Z", + "Hs (total) (m)": 2.1104, + "Tp (total) (s)": 15.624 + }, + { + "Date+Time": "1986-02-17T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 14.5238 + }, + { + "Date+Time": "1986-02-18T00:00:00Z", + "Hs (total) (m)": 1.6472, + "Tp (total) (s)": 14.1354 + }, + { + "Date+Time": "1986-02-19T00:00:00Z", + "Hs (total) (m)": 1.4222, + "Tp (total) (s)": 14.1942 + }, + { + "Date+Time": "1986-02-20T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 14.2926 + }, + { + "Date+Time": "1986-02-21T00:00:00Z", + "Hs (total) (m)": 2.105, + "Tp (total) (s)": 13.815 + }, + { + "Date+Time": "1986-02-22T00:00:00Z", + "Hs (total) (m)": 1.6106, + "Tp (total) (s)": 13.1603 + }, + { + "Date+Time": "1986-02-23T00:00:00Z", + "Hs (total) (m)": 1.368, + "Tp (total) (s)": 12.8574 + }, + { + "Date+Time": "1986-02-24T00:00:00Z", + "Hs (total) (m)": 2.1912, + "Tp (total) (s)": 14.7206 + }, + { + "Date+Time": "1986-02-25T00:00:00Z", + "Hs (total) (m)": 1.5152, + "Tp (total) (s)": 12.9902 + }, + { + "Date+Time": "1986-02-26T00:00:00Z", + "Hs (total) (m)": 1.0681, + "Tp (total) (s)": 13.5701 + }, + { + "Date+Time": "1986-02-27T00:00:00Z", + "Hs (total) (m)": 0.7126, + "Tp (total) (s)": 4.3359 + }, + { + "Date+Time": "1986-02-28T00:00:00Z", + "Hs (total) (m)": 0.6157, + "Tp (total) (s)": 4.371 + }, + { + "Date+Time": "1986-03-01T00:00:00Z", + "Hs (total) (m)": 0.7073, + "Tp (total) (s)": 3.1533 + }, + { + "Date+Time": "1986-03-02T00:00:00Z", + "Hs (total) (m)": 0.6478, + "Tp (total) (s)": 3.0366 + }, + { + "Date+Time": "1986-03-03T00:00:00Z", + "Hs (total) (m)": 0.663, + "Tp (total) (s)": 11.8633 + }, + { + "Date+Time": "1986-03-04T00:00:00Z", + "Hs (total) (m)": 2.25, + "Tp (total) (s)": 8.034 + }, + { + "Date+Time": "1986-03-05T00:00:00Z", + "Hs (total) (m)": 2.6955, + "Tp (total) (s)": 10.6502 + }, + { + "Date+Time": "1986-03-06T00:00:00Z", + "Hs (total) (m)": 3.1465, + "Tp (total) (s)": 13.0818 + }, + { + "Date+Time": "1986-03-07T00:00:00Z", + "Hs (total) (m)": 3.2357, + "Tp (total) (s)": 13.2107 + }, + { + "Date+Time": "1986-03-08T00:00:00Z", + "Hs (total) (m)": 3.2319, + "Tp (total) (s)": 12.5072 + }, + { + "Date+Time": "1986-03-09T00:00:00Z", + "Hs (total) (m)": 3.2151, + "Tp (total) (s)": 15.2287 + }, + { + "Date+Time": "1986-03-10T00:00:00Z", + "Hs (total) (m)": 3.2716, + "Tp (total) (s)": 15.3119 + }, + { + "Date+Time": "1986-03-11T00:00:00Z", + "Hs (total) (m)": 2.7123, + "Tp (total) (s)": 14.8144 + }, + { + "Date+Time": "1986-03-12T00:00:00Z", + "Hs (total) (m)": 2.3942, + "Tp (total) (s)": 10.9127 + }, + { + "Date+Time": "1986-03-13T00:00:00Z", + "Hs (total) (m)": 2.3011, + "Tp (total) (s)": 12.3104 + }, + { + "Date+Time": "1986-03-14T00:00:00Z", + "Hs (total) (m)": 3.6103, + "Tp (total) (s)": 14.9052 + }, + { + "Date+Time": "1986-03-15T00:00:00Z", + "Hs (total) (m)": 4.2764, + "Tp (total) (s)": 14.1003 + }, + { + "Date+Time": "1986-03-16T00:00:00Z", + "Hs (total) (m)": 3.4059, + "Tp (total) (s)": 13.0497 + }, + { + "Date+Time": "1986-03-17T00:00:00Z", + "Hs (total) (m)": 2.8619, + "Tp (total) (s)": 12.7178 + }, + { + "Date+Time": "1986-03-18T00:00:00Z", + "Hs (total) (m)": 3.75, + "Tp (total) (s)": 12.067 + }, + { + "Date+Time": "1986-03-19T00:00:00Z", + "Hs (total) (m)": 2.6223, + "Tp (total) (s)": 12.2303 + }, + { + "Date+Time": "1986-03-20T00:00:00Z", + "Hs (total) (m)": 4.1047, + "Tp (total) (s)": 12.6583 + }, + { + "Date+Time": "1986-03-21T00:00:00Z", + "Hs (total) (m)": 3.5173, + "Tp (total) (s)": 12.1433 + }, + { + "Date+Time": "1986-03-22T00:00:00Z", + "Hs (total) (m)": 3.5241, + "Tp (total) (s)": 12.6621 + }, + { + "Date+Time": "1986-03-23T00:00:00Z", + "Hs (total) (m)": 3.7538, + "Tp (total) (s)": 12.5202 + }, + { + "Date+Time": "1986-03-24T00:00:00Z", + "Hs (total) (m)": 3.7446, + "Tp (total) (s)": 13.5853 + }, + { + "Date+Time": "1986-03-25T00:00:00Z", + "Hs (total) (m)": 3.5295, + "Tp (total) (s)": 14.4139 + }, + { + "Date+Time": "1986-03-26T00:00:00Z", + "Hs (total) (m)": 3.5295, + "Tp (total) (s)": 15.1143 + }, + { + "Date+Time": "1986-03-27T00:00:00Z", + "Hs (total) (m)": 3.4692, + "Tp (total) (s)": 14.9854 + }, + { + "Date+Time": "1986-03-28T00:00:00Z", + "Hs (total) (m)": 3.7164, + "Tp (total) (s)": 12.3859 + }, + { + "Date+Time": "1986-03-29T00:00:00Z", + "Hs (total) (m)": 4.3519, + "Tp (total) (s)": 16.4426 + }, + { + "Date+Time": "1986-03-30T00:00:00Z", + "Hs (total) (m)": 3.8163, + "Tp (total) (s)": 15.8689 + }, + { + "Date+Time": "1986-03-31T00:00:00Z", + "Hs (total) (m)": 2.9664, + "Tp (total) (s)": 13.2817 + }, + { + "Date+Time": "1986-04-01T00:00:00Z", + "Hs (total) (m)": 2.5994, + "Tp (total) (s)": 13.6006 + }, + { + "Date+Time": "1986-04-02T00:00:00Z", + "Hs (total) (m)": 2.3164, + "Tp (total) (s)": 11.6848 + }, + { + "Date+Time": "1986-04-03T00:00:00Z", + "Hs (total) (m)": 1.925, + "Tp (total) (s)": 11.0927 + }, + { + "Date+Time": "1986-04-04T00:00:00Z", + "Hs (total) (m)": 1.5152, + "Tp (total) (s)": 10.4465 + }, + { + "Date+Time": "1986-04-05T00:00:00Z", + "Hs (total) (m)": 1.2879, + "Tp (total) (s)": 14.7908 + }, + { + "Date+Time": "1986-04-06T00:00:00Z", + "Hs (total) (m)": 1.2696, + "Tp (total) (s)": 14.5276 + }, + { + "Date+Time": "1986-04-07T00:00:00Z", + "Hs (total) (m)": 1.0758, + "Tp (total) (s)": 13.8447 + }, + { + "Date+Time": "1986-04-08T00:00:00Z", + "Hs (total) (m)": 1.1589, + "Tp (total) (s)": 13.6845 + }, + { + "Date+Time": "1986-04-09T00:00:00Z", + "Hs (total) (m)": 1.2268, + "Tp (total) (s)": 13.1954 + }, + { + "Date+Time": "1986-04-10T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 12.2127 + }, + { + "Date+Time": "1986-04-11T00:00:00Z", + "Hs (total) (m)": 0.5234, + "Tp (total) (s)": 2.6894 + }, + { + "Date+Time": "1986-04-12T00:00:00Z", + "Hs (total) (m)": 0.3998, + "Tp (total) (s)": 2.2881 + }, + { + "Date+Time": "1986-04-13T00:00:00Z", + "Hs (total) (m)": 0.4822, + "Tp (total) (s)": 2.739 + }, + { + "Date+Time": "1986-04-14T00:00:00Z", + "Hs (total) (m)": 0.7035, + "Tp (total) (s)": 6.6813 + }, + { + "Date+Time": "1986-04-15T00:00:00Z", + "Hs (total) (m)": 0.8789, + "Tp (total) (s)": 7.3664 + }, + { + "Date+Time": "1986-04-16T00:00:00Z", + "Hs (total) (m)": 1.2146, + "Tp (total) (s)": 7.902 + }, + { + "Date+Time": "1986-04-17T00:00:00Z", + "Hs (total) (m)": 1.3024, + "Tp (total) (s)": 3.6729 + }, + { + "Date+Time": "1986-04-18T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 10.0986 + }, + { + "Date+Time": "1986-04-19T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 9.3379 + }, + { + "Date+Time": "1986-04-20T00:00:00Z", + "Hs (total) (m)": 1.9105, + "Tp (total) (s)": 9.756 + }, + { + "Date+Time": "1986-04-21T00:00:00Z", + "Hs (total) (m)": 2.8657, + "Tp (total) (s)": 13.7806 + }, + { + "Date+Time": "1986-04-22T00:00:00Z", + "Hs (total) (m)": 2.852, + "Tp (total) (s)": 13.5838 + }, + { + "Date+Time": "1986-04-23T00:00:00Z", + "Hs (total) (m)": 2.5765, + "Tp (total) (s)": 13.5723 + }, + { + "Date+Time": "1986-04-24T00:00:00Z", + "Hs (total) (m)": 1.9127, + "Tp (total) (s)": 13.3625 + }, + { + "Date+Time": "1986-04-25T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 12.2684 + }, + { + "Date+Time": "1986-04-26T00:00:00Z", + "Hs (total) (m)": 0.7515, + "Tp (total) (s)": 9.1601 + }, + { + "Date+Time": "1986-04-27T00:00:00Z", + "Hs (total) (m)": 0.9377, + "Tp (total) (s)": 7.6281 + }, + { + "Date+Time": "1986-04-28T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 11.7496 + }, + { + "Date+Time": "1986-04-29T00:00:00Z", + "Hs (total) (m)": 2.6704, + "Tp (total) (s)": 10.8753 + }, + { + "Date+Time": "1986-04-30T00:00:00Z", + "Hs (total) (m)": 3.325, + "Tp (total) (s)": 13.3671 + }, + { + "Date+Time": "1986-05-01T00:00:00Z", + "Hs (total) (m)": 3.7576, + "Tp (total) (s)": 11.7466 + }, + { + "Date+Time": "1986-05-02T00:00:00Z", + "Hs (total) (m)": 3.0839, + "Tp (total) (s)": 10.8325 + }, + { + "Date+Time": "1986-05-03T00:00:00Z", + "Hs (total) (m)": 2.0745, + "Tp (total) (s)": 10.5533 + }, + { + "Date+Time": "1986-05-04T00:00:00Z", + "Hs (total) (m)": 1.5267, + "Tp (total) (s)": 10.1604 + }, + { + "Date+Time": "1986-05-05T00:00:00Z", + "Hs (total) (m)": 1.0422, + "Tp (total) (s)": 10.0948 + }, + { + "Date+Time": "1986-05-06T00:00:00Z", + "Hs (total) (m)": 0.7599, + "Tp (total) (s)": 8.9831 + }, + { + "Date+Time": "1986-05-07T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 8.5536 + }, + { + "Date+Time": "1986-05-08T00:00:00Z", + "Hs (total) (m)": 0.6569, + "Tp (total) (s)": 10.8592 + }, + { + "Date+Time": "1986-05-09T00:00:00Z", + "Hs (total) (m)": 0.9003, + "Tp (total) (s)": 9.7331 + }, + { + "Date+Time": "1986-05-10T00:00:00Z", + "Hs (total) (m)": 2.4285, + "Tp (total) (s)": 7.0894 + }, + { + "Date+Time": "1986-05-11T00:00:00Z", + "Hs (total) (m)": 3.161, + "Tp (total) (s)": 10.9073 + }, + { + "Date+Time": "1986-05-12T00:00:00Z", + "Hs (total) (m)": 2.8314, + "Tp (total) (s)": 10.6326 + }, + { + "Date+Time": "1986-05-13T00:00:00Z", + "Hs (total) (m)": 3.1816, + "Tp (total) (s)": 11.1995 + }, + { + "Date+Time": "1986-05-14T00:00:00Z", + "Hs (total) (m)": 2.2958, + "Tp (total) (s)": 10.6235 + }, + { + "Date+Time": "1986-05-15T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 9.8582 + }, + { + "Date+Time": "1986-05-16T00:00:00Z", + "Hs (total) (m)": 1.5343, + "Tp (total) (s)": 9.4661 + }, + { + "Date+Time": "1986-05-17T00:00:00Z", + "Hs (total) (m)": 1.4847, + "Tp (total) (s)": 9.0014 + }, + { + "Date+Time": "1986-05-18T00:00:00Z", + "Hs (total) (m)": 2.4232, + "Tp (total) (s)": 10.5853 + }, + { + "Date+Time": "1986-05-19T00:00:00Z", + "Hs (total) (m)": 2.3614, + "Tp (total) (s)": 10.3244 + }, + { + "Date+Time": "1986-05-20T00:00:00Z", + "Hs (total) (m)": 1.9562, + "Tp (total) (s)": 10.2847 + }, + { + "Date+Time": "1986-05-21T00:00:00Z", + "Hs (total) (m)": 2.5704, + "Tp (total) (s)": 7.0208 + }, + { + "Date+Time": "1986-05-22T00:00:00Z", + "Hs (total) (m)": 3.0877, + "Tp (total) (s)": 10.5785 + }, + { + "Date+Time": "1986-05-23T00:00:00Z", + "Hs (total) (m)": 3.5112, + "Tp (total) (s)": 11.9793 + }, + { + "Date+Time": "1986-05-24T00:00:00Z", + "Hs (total) (m)": 3.2243, + "Tp (total) (s)": 12.2669 + }, + { + "Date+Time": "1986-05-25T00:00:00Z", + "Hs (total) (m)": 3.4364, + "Tp (total) (s)": 9.7118 + }, + { + "Date+Time": "1986-05-26T00:00:00Z", + "Hs (total) (m)": 2.8039, + "Tp (total) (s)": 9.5614 + }, + { + "Date+Time": "1986-05-27T00:00:00Z", + "Hs (total) (m)": 2.8993, + "Tp (total) (s)": 8.713 + }, + { + "Date+Time": "1986-05-28T00:00:00Z", + "Hs (total) (m)": 3.1358, + "Tp (total) (s)": 10.6754 + }, + { + "Date+Time": "1986-05-29T00:00:00Z", + "Hs (total) (m)": 2.3377, + "Tp (total) (s)": 10.3969 + }, + { + "Date+Time": "1986-05-30T00:00:00Z", + "Hs (total) (m)": 1.6633, + "Tp (total) (s)": 10.0917 + }, + { + "Date+Time": "1986-05-31T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 7.9089 + }, + { + "Date+Time": "1986-06-01T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 7.8547 + }, + { + "Date+Time": "1986-06-02T00:00:00Z", + "Hs (total) (m)": 1.2261, + "Tp (total) (s)": 7.9119 + }, + { + "Date+Time": "1986-06-03T00:00:00Z", + "Hs (total) (m)": 1.2688, + "Tp (total) (s)": 8.5009 + }, + { + "Date+Time": "1986-06-04T00:00:00Z", + "Hs (total) (m)": 1.2162, + "Tp (total) (s)": 8.6329 + }, + { + "Date+Time": "1986-06-05T00:00:00Z", + "Hs (total) (m)": 1.1032, + "Tp (total) (s)": 8.6932 + }, + { + "Date+Time": "1986-06-06T00:00:00Z", + "Hs (total) (m)": 1.0689, + "Tp (total) (s)": 8.6009 + }, + { + "Date+Time": "1986-06-07T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 8.4597 + }, + { + "Date+Time": "1986-06-08T00:00:00Z", + "Hs (total) (m)": 1.1711, + "Tp (total) (s)": 12.9345 + }, + { + "Date+Time": "1986-06-09T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 10.4022 + }, + { + "Date+Time": "1986-06-10T00:00:00Z", + "Hs (total) (m)": 1.6099, + "Tp (total) (s)": 10.1588 + }, + { + "Date+Time": "1986-06-11T00:00:00Z", + "Hs (total) (m)": 1.5511, + "Tp (total) (s)": 9.5775 + }, + { + "Date+Time": "1986-06-12T00:00:00Z", + "Hs (total) (m)": 1.7113, + "Tp (total) (s)": 9.5943 + }, + { + "Date+Time": "1986-06-13T00:00:00Z", + "Hs (total) (m)": 1.6961, + "Tp (total) (s)": 9.4493 + }, + { + "Date+Time": "1986-06-14T00:00:00Z", + "Hs (total) (m)": 1.6999, + "Tp (total) (s)": 10.1207 + }, + { + "Date+Time": "1986-06-15T00:00:00Z", + "Hs (total) (m)": 1.5099, + "Tp (total) (s)": 11.1194 + }, + { + "Date+Time": "1986-06-16T00:00:00Z", + "Hs (total) (m)": 1.4344, + "Tp (total) (s)": 10.889 + }, + { + "Date+Time": "1986-06-17T00:00:00Z", + "Hs (total) (m)": 1.2688, + "Tp (total) (s)": 10.7112 + }, + { + "Date+Time": "1986-06-18T00:00:00Z", + "Hs (total) (m)": 1.1361, + "Tp (total) (s)": 10.6586 + }, + { + "Date+Time": "1986-06-19T00:00:00Z", + "Hs (total) (m)": 1.3619, + "Tp (total) (s)": 9.3036 + }, + { + "Date+Time": "1986-06-20T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 10.5541 + }, + { + "Date+Time": "1986-06-21T00:00:00Z", + "Hs (total) (m)": 1.2032, + "Tp (total) (s)": 10.5045 + }, + { + "Date+Time": "1986-06-22T00:00:00Z", + "Hs (total) (m)": 0.763, + "Tp (total) (s)": 10.2351 + }, + { + "Date+Time": "1986-06-23T00:00:00Z", + "Hs (total) (m)": 0.473, + "Tp (total) (s)": 9.2753 + }, + { + "Date+Time": "1986-06-24T00:00:00Z", + "Hs (total) (m)": 0.454, + "Tp (total) (s)": 8.7237 + }, + { + "Date+Time": "1986-06-25T00:00:00Z", + "Hs (total) (m)": 0.5608, + "Tp (total) (s)": 8.1629 + }, + { + "Date+Time": "1986-06-26T00:00:00Z", + "Hs (total) (m)": 0.6798, + "Tp (total) (s)": 6.7301 + }, + { + "Date+Time": "1986-06-27T00:00:00Z", + "Hs (total) (m)": 0.5997, + "Tp (total) (s)": 6.3532 + }, + { + "Date+Time": "1986-06-28T00:00:00Z", + "Hs (total) (m)": 0.4212, + "Tp (total) (s)": 6.0732 + }, + { + "Date+Time": "1986-06-29T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 9.2753 + }, + { + "Date+Time": "1986-06-30T00:00:00Z", + "Hs (total) (m)": 0.7126, + "Tp (total) (s)": 8.2621 + }, + { + "Date+Time": "1986-07-01T00:00:00Z", + "Hs (total) (m)": 0.5928, + "Tp (total) (s)": 4.0849 + }, + { + "Date+Time": "1986-07-02T00:00:00Z", + "Hs (total) (m)": 0.9239, + "Tp (total) (s)": 3.9789 + }, + { + "Date+Time": "1986-07-03T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 6.4447 + }, + { + "Date+Time": "1986-07-04T00:00:00Z", + "Hs (total) (m)": 1.0765, + "Tp (total) (s)": 6.9498 + }, + { + "Date+Time": "1986-07-05T00:00:00Z", + "Hs (total) (m)": 1.1109, + "Tp (total) (s)": 6.6355 + }, + { + "Date+Time": "1986-07-06T00:00:00Z", + "Hs (total) (m)": 1.0865, + "Tp (total) (s)": 6.5386 + }, + { + "Date+Time": "1986-07-07T00:00:00Z", + "Hs (total) (m)": 1.2314, + "Tp (total) (s)": 6.4539 + }, + { + "Date+Time": "1986-07-08T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 9.1357 + }, + { + "Date+Time": "1986-07-09T00:00:00Z", + "Hs (total) (m)": 1.2032, + "Tp (total) (s)": 8.7695 + }, + { + "Date+Time": "1986-07-10T00:00:00Z", + "Hs (total) (m)": 1.2764, + "Tp (total) (s)": 8.7298 + }, + { + "Date+Time": "1986-07-11T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 9.2631 + }, + { + "Date+Time": "1986-07-12T00:00:00Z", + "Hs (total) (m)": 1.1841, + "Tp (total) (s)": 7.0513 + }, + { + "Date+Time": "1986-07-13T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 7.1116 + }, + { + "Date+Time": "1986-07-14T00:00:00Z", + "Hs (total) (m)": 0.969, + "Tp (total) (s)": 7.2581 + }, + { + "Date+Time": "1986-07-15T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 9.2631 + }, + { + "Date+Time": "1986-07-16T00:00:00Z", + "Hs (total) (m)": 1.1742, + "Tp (total) (s)": 8.7504 + }, + { + "Date+Time": "1986-07-17T00:00:00Z", + "Hs (total) (m)": 2.0173, + "Tp (total) (s)": 8.0332 + }, + { + "Date+Time": "1986-07-18T00:00:00Z", + "Hs (total) (m)": 2.1203, + "Tp (total) (s)": 9.5515 + }, + { + "Date+Time": "1986-07-19T00:00:00Z", + "Hs (total) (m)": 1.9608, + "Tp (total) (s)": 10.1779 + }, + { + "Date+Time": "1986-07-20T00:00:00Z", + "Hs (total) (m)": 1.2558, + "Tp (total) (s)": 8.6337 + }, + { + "Date+Time": "1986-07-21T00:00:00Z", + "Hs (total) (m)": 1.117, + "Tp (total) (s)": 7.2993 + }, + { + "Date+Time": "1986-07-22T00:00:00Z", + "Hs (total) (m)": 1.0208, + "Tp (total) (s)": 6.6996 + }, + { + "Date+Time": "1986-07-23T00:00:00Z", + "Hs (total) (m)": 1.014, + "Tp (total) (s)": 7.197 + }, + { + "Date+Time": "1986-07-24T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 8.3529 + }, + { + "Date+Time": "1986-07-25T00:00:00Z", + "Hs (total) (m)": 0.9255, + "Tp (total) (s)": 7.9791 + }, + { + "Date+Time": "1986-07-26T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 7.6289 + }, + { + "Date+Time": "1986-07-27T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 7.0223 + }, + { + "Date+Time": "1986-07-28T00:00:00Z", + "Hs (total) (m)": 1.809, + "Tp (total) (s)": 8.7802 + }, + { + "Date+Time": "1986-07-29T00:00:00Z", + "Hs (total) (m)": 2.0035, + "Tp (total) (s)": 9.65 + }, + { + "Date+Time": "1986-07-30T00:00:00Z", + "Hs (total) (m)": 1.941, + "Tp (total) (s)": 10.0314 + }, + { + "Date+Time": "1986-07-31T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 9.0556 + }, + { + "Date+Time": "1986-08-01T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 8.5513 + }, + { + "Date+Time": "1986-08-02T00:00:00Z", + "Hs (total) (m)": 0.9903, + "Tp (total) (s)": 6.5485 + }, + { + "Date+Time": "1986-08-03T00:00:00Z", + "Hs (total) (m)": 1.9517, + "Tp (total) (s)": 6.9704 + }, + { + "Date+Time": "1986-08-04T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 7.8448 + }, + { + "Date+Time": "1986-08-05T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 8.0554 + }, + { + "Date+Time": "1986-08-06T00:00:00Z", + "Hs (total) (m)": 1.5641, + "Tp (total) (s)": 4.8585 + }, + { + "Date+Time": "1986-08-07T00:00:00Z", + "Hs (total) (m)": 1.9219, + "Tp (total) (s)": 10.5533 + }, + { + "Date+Time": "1986-08-08T00:00:00Z", + "Hs (total) (m)": 1.2978, + "Tp (total) (s)": 10.6235 + }, + { + "Date+Time": "1986-08-09T00:00:00Z", + "Hs (total) (m)": 1.117, + "Tp (total) (s)": 7.522 + }, + { + "Date+Time": "1986-08-10T00:00:00Z", + "Hs (total) (m)": 0.8271, + "Tp (total) (s)": 7.6716 + }, + { + "Date+Time": "1986-08-11T00:00:00Z", + "Hs (total) (m)": 0.7103, + "Tp (total) (s)": 7.6792 + }, + { + "Date+Time": "1986-08-12T00:00:00Z", + "Hs (total) (m)": 0.6462, + "Tp (total) (s)": 7.2848 + }, + { + "Date+Time": "1986-08-13T00:00:00Z", + "Hs (total) (m)": 0.8286, + "Tp (total) (s)": 11.2819 + }, + { + "Date+Time": "1986-08-14T00:00:00Z", + "Hs (total) (m)": 1.1376, + "Tp (total) (s)": 10.4823 + }, + { + "Date+Time": "1986-08-15T00:00:00Z", + "Hs (total) (m)": 1.8708, + "Tp (total) (s)": 7.7662 + }, + { + "Date+Time": "1986-08-16T00:00:00Z", + "Hs (total) (m)": 2.4293, + "Tp (total) (s)": 9.4317 + }, + { + "Date+Time": "1986-08-17T00:00:00Z", + "Hs (total) (m)": 2.0966, + "Tp (total) (s)": 9.4012 + }, + { + "Date+Time": "1986-08-18T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 7.7036 + }, + { + "Date+Time": "1986-08-19T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 6.9758 + }, + { + "Date+Time": "1986-08-20T00:00:00Z", + "Hs (total) (m)": 0.5448, + "Tp (total) (s)": 8.2339 + }, + { + "Date+Time": "1986-08-21T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 2.7322 + }, + { + "Date+Time": "1986-08-22T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 10.268 + }, + { + "Date+Time": "1986-08-23T00:00:00Z", + "Hs (total) (m)": 1.3337, + "Tp (total) (s)": 10.0299 + }, + { + "Date+Time": "1986-08-24T00:00:00Z", + "Hs (total) (m)": 0.5974, + "Tp (total) (s)": 8.4864 + }, + { + "Date+Time": "1986-08-25T00:00:00Z", + "Hs (total) (m)": 0.4082, + "Tp (total) (s)": 7.8356 + }, + { + "Date+Time": "1986-08-26T00:00:00Z", + "Hs (total) (m)": 0.885, + "Tp (total) (s)": 3.5661 + }, + { + "Date+Time": "1986-08-27T00:00:00Z", + "Hs (total) (m)": 0.7172, + "Tp (total) (s)": 3.6401 + }, + { + "Date+Time": "1986-08-28T00:00:00Z", + "Hs (total) (m)": 0.6218, + "Tp (total) (s)": 3.5951 + }, + { + "Date+Time": "1986-08-29T00:00:00Z", + "Hs (total) (m)": 0.7561, + "Tp (total) (s)": 3.6065 + }, + { + "Date+Time": "1986-08-30T00:00:00Z", + "Hs (total) (m)": 0.8576, + "Tp (total) (s)": 7.0833 + }, + { + "Date+Time": "1986-08-31T00:00:00Z", + "Hs (total) (m)": 0.8377, + "Tp (total) (s)": 6.8697 + }, + { + "Date+Time": "1986-09-01T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 6.769 + }, + { + "Date+Time": "1986-09-02T00:00:00Z", + "Hs (total) (m)": 1.0376, + "Tp (total) (s)": 5.3125 + }, + { + "Date+Time": "1986-09-03T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 4.1849 + }, + { + "Date+Time": "1986-09-04T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 12.5912 + }, + { + "Date+Time": "1986-09-05T00:00:00Z", + "Hs (total) (m)": 1.4725, + "Tp (total) (s)": 9.8148 + }, + { + "Date+Time": "1986-09-06T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 8.8099 + }, + { + "Date+Time": "1986-09-07T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 8.4811 + }, + { + "Date+Time": "1986-09-08T00:00:00Z", + "Hs (total) (m)": 0.8889, + "Tp (total) (s)": 11.2949 + }, + { + "Date+Time": "1986-09-09T00:00:00Z", + "Hs (total) (m)": 0.7653, + "Tp (total) (s)": 9.8155 + }, + { + "Date+Time": "1986-09-10T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 8.7374 + }, + { + "Date+Time": "1986-09-11T00:00:00Z", + "Hs (total) (m)": 0.6905, + "Tp (total) (s)": 8.3117 + }, + { + "Date+Time": "1986-09-12T00:00:00Z", + "Hs (total) (m)": 0.6752, + "Tp (total) (s)": 8.4925 + }, + { + "Date+Time": "1986-09-13T00:00:00Z", + "Hs (total) (m)": 0.5821, + "Tp (total) (s)": 8.385 + }, + { + "Date+Time": "1986-09-14T00:00:00Z", + "Hs (total) (m)": 0.5081, + "Tp (total) (s)": 2.665 + }, + { + "Date+Time": "1986-09-15T00:00:00Z", + "Hs (total) (m)": 0.3807, + "Tp (total) (s)": 2.4735 + }, + { + "Date+Time": "1986-09-16T00:00:00Z", + "Hs (total) (m)": 0.3952, + "Tp (total) (s)": 2.7184 + }, + { + "Date+Time": "1986-09-17T00:00:00Z", + "Hs (total) (m)": 0.4883, + "Tp (total) (s)": 2.9382 + }, + { + "Date+Time": "1986-09-18T00:00:00Z", + "Hs (total) (m)": 0.6005, + "Tp (total) (s)": 2.9756 + }, + { + "Date+Time": "1986-09-19T00:00:00Z", + "Hs (total) (m)": 0.4151, + "Tp (total) (s)": 8.0706 + }, + { + "Date+Time": "1986-09-20T00:00:00Z", + "Hs (total) (m)": 0.5013, + "Tp (total) (s)": 7.6533 + }, + { + "Date+Time": "1986-09-21T00:00:00Z", + "Hs (total) (m)": 0.6432, + "Tp (total) (s)": 8.6673 + }, + { + "Date+Time": "1986-09-22T00:00:00Z", + "Hs (total) (m)": 0.9217, + "Tp (total) (s)": 9.1411 + }, + { + "Date+Time": "1986-09-23T00:00:00Z", + "Hs (total) (m)": 1.3703, + "Tp (total) (s)": 12.5118 + }, + { + "Date+Time": "1986-09-24T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 12.476 + }, + { + "Date+Time": "1986-09-25T00:00:00Z", + "Hs (total) (m)": 1.2444, + "Tp (total) (s)": 11.7763 + }, + { + "Date+Time": "1986-09-26T00:00:00Z", + "Hs (total) (m)": 1.0361, + "Tp (total) (s)": 9.4836 + }, + { + "Date+Time": "1986-09-27T00:00:00Z", + "Hs (total) (m)": 0.9499, + "Tp (total) (s)": 8.7077 + }, + { + "Date+Time": "1986-09-28T00:00:00Z", + "Hs (total) (m)": 1.2284, + "Tp (total) (s)": 10.2016 + }, + { + "Date+Time": "1986-09-29T00:00:00Z", + "Hs (total) (m)": 1.6388, + "Tp (total) (s)": 10.8386 + }, + { + "Date+Time": "1986-09-30T00:00:00Z", + "Hs (total) (m)": 1.9936, + "Tp (total) (s)": 11.2003 + }, + { + "Date+Time": "1986-10-01T00:00:00Z", + "Hs (total) (m)": 2.221, + "Tp (total) (s)": 11.3872 + }, + { + "Date+Time": "1986-10-02T00:00:00Z", + "Hs (total) (m)": 2.3171, + "Tp (total) (s)": 11.6474 + }, + { + "Date+Time": "1986-10-03T00:00:00Z", + "Hs (total) (m)": 1.9951, + "Tp (total) (s)": 13.2733 + }, + { + "Date+Time": "1986-10-04T00:00:00Z", + "Hs (total) (m)": 1.4718, + "Tp (total) (s)": 11.2705 + }, + { + "Date+Time": "1986-10-05T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 10.361 + }, + { + "Date+Time": "1986-10-06T00:00:00Z", + "Hs (total) (m)": 1.4588, + "Tp (total) (s)": 9.4646 + }, + { + "Date+Time": "1986-10-07T00:00:00Z", + "Hs (total) (m)": 1.8082, + "Tp (total) (s)": 11.7374 + }, + { + "Date+Time": "1986-10-08T00:00:00Z", + "Hs (total) (m)": 2.1516, + "Tp (total) (s)": 11.3849 + }, + { + "Date+Time": "1986-10-09T00:00:00Z", + "Hs (total) (m)": 2.0775, + "Tp (total) (s)": 11.4925 + }, + { + "Date+Time": "1986-10-10T00:00:00Z", + "Hs (total) (m)": 2.3263, + "Tp (total) (s)": 11.1507 + }, + { + "Date+Time": "1986-10-11T00:00:00Z", + "Hs (total) (m)": 2.0898, + "Tp (total) (s)": 10.0856 + }, + { + "Date+Time": "1986-10-12T00:00:00Z", + "Hs (total) (m)": 2.3888, + "Tp (total) (s)": 13.9401 + }, + { + "Date+Time": "1986-10-13T00:00:00Z", + "Hs (total) (m)": 2.8382, + "Tp (total) (s)": 13.905 + }, + { + "Date+Time": "1986-10-14T00:00:00Z", + "Hs (total) (m)": 2.8283, + "Tp (total) (s)": 13.0703 + }, + { + "Date+Time": "1986-10-15T00:00:00Z", + "Hs (total) (m)": 2.5155, + "Tp (total) (s)": 12.4607 + }, + { + "Date+Time": "1986-10-16T00:00:00Z", + "Hs (total) (m)": 2.2217, + "Tp (total) (s)": 12.7201 + }, + { + "Date+Time": "1986-10-17T00:00:00Z", + "Hs (total) (m)": 2.0371, + "Tp (total) (s)": 12.9757 + }, + { + "Date+Time": "1986-10-18T00:00:00Z", + "Hs (total) (m)": 2.131, + "Tp (total) (s)": 12.6652 + }, + { + "Date+Time": "1986-10-19T00:00:00Z", + "Hs (total) (m)": 2.4232, + "Tp (total) (s)": 12.1937 + }, + { + "Date+Time": "1986-10-20T00:00:00Z", + "Hs (total) (m)": 2.3789, + "Tp (total) (s)": 10.4228 + }, + { + "Date+Time": "1986-10-21T00:00:00Z", + "Hs (total) (m)": 3.3731, + "Tp (total) (s)": 14.9388 + }, + { + "Date+Time": "1986-10-22T00:00:00Z", + "Hs (total) (m)": 3.4143, + "Tp (total) (s)": 14.9876 + }, + { + "Date+Time": "1986-10-23T00:00:00Z", + "Hs (total) (m)": 3.2182, + "Tp (total) (s)": 12.8964 + }, + { + "Date+Time": "1986-10-24T00:00:00Z", + "Hs (total) (m)": 2.955, + "Tp (total) (s)": 12.4088 + }, + { + "Date+Time": "1986-10-25T00:00:00Z", + "Hs (total) (m)": 4.1154, + "Tp (total) (s)": 11.4948 + }, + { + "Date+Time": "1986-10-26T00:00:00Z", + "Hs (total) (m)": 4.3764, + "Tp (total) (s)": 12.8758 + }, + { + "Date+Time": "1986-10-27T00:00:00Z", + "Hs (total) (m)": 3.6462, + "Tp (total) (s)": 12.7911 + }, + { + "Date+Time": "1986-10-28T00:00:00Z", + "Hs (total) (m)": 2.7398, + "Tp (total) (s)": 10.609 + }, + { + "Date+Time": "1986-10-29T00:00:00Z", + "Hs (total) (m)": 2.4186, + "Tp (total) (s)": 9.8468 + }, + { + "Date+Time": "1986-10-30T00:00:00Z", + "Hs (total) (m)": 2.6627, + "Tp (total) (s)": 10.1222 + }, + { + "Date+Time": "1986-10-31T00:00:00Z", + "Hs (total) (m)": 3.8873, + "Tp (total) (s)": 14.404 + }, + { + "Date+Time": "1986-11-01T00:00:00Z", + "Hs (total) (m)": 3.3647, + "Tp (total) (s)": 12.6972 + }, + { + "Date+Time": "1986-11-02T00:00:00Z", + "Hs (total) (m)": 1.7708, + "Tp (total) (s)": 11.1965 + }, + { + "Date+Time": "1986-11-03T00:00:00Z", + "Hs (total) (m)": 2.028, + "Tp (total) (s)": 11.2751 + }, + { + "Date+Time": "1986-11-04T00:00:00Z", + "Hs (total) (m)": 1.8075, + "Tp (total) (s)": 8.6879 + }, + { + "Date+Time": "1986-11-05T00:00:00Z", + "Hs (total) (m)": 1.7235, + "Tp (total) (s)": 8.9671 + }, + { + "Date+Time": "1986-11-06T00:00:00Z", + "Hs (total) (m)": 2.5628, + "Tp (total) (s)": 11.2873 + }, + { + "Date+Time": "1986-11-07T00:00:00Z", + "Hs (total) (m)": 2.3637, + "Tp (total) (s)": 10.9439 + }, + { + "Date+Time": "1986-11-08T00:00:00Z", + "Hs (total) (m)": 2.8771, + "Tp (total) (s)": 14.1087 + }, + { + "Date+Time": "1986-11-09T00:00:00Z", + "Hs (total) (m)": 3.1327, + "Tp (total) (s)": 14.6115 + }, + { + "Date+Time": "1986-11-10T00:00:00Z", + "Hs (total) (m)": 3.5447, + "Tp (total) (s)": 12.5355 + }, + { + "Date+Time": "1986-11-11T00:00:00Z", + "Hs (total) (m)": 5.419, + "Tp (total) (s)": 14.9417 + }, + { + "Date+Time": "1986-11-12T00:00:00Z", + "Hs (total) (m)": 4.5328, + "Tp (total) (s)": 15.0395 + }, + { + "Date+Time": "1986-11-13T00:00:00Z", + "Hs (total) (m)": 3.0923, + "Tp (total) (s)": 12.3112 + }, + { + "Date+Time": "1986-11-14T00:00:00Z", + "Hs (total) (m)": 3.4455, + "Tp (total) (s)": 11.417 + }, + { + "Date+Time": "1986-11-15T00:00:00Z", + "Hs (total) (m)": 3.0168, + "Tp (total) (s)": 15.7414 + }, + { + "Date+Time": "1986-11-16T00:00:00Z", + "Hs (total) (m)": 3.0709, + "Tp (total) (s)": 15.1982 + }, + { + "Date+Time": "1986-11-17T00:00:00Z", + "Hs (total) (m)": 3.3952, + "Tp (total) (s)": 11.642 + }, + { + "Date+Time": "1986-11-18T00:00:00Z", + "Hs (total) (m)": 4.0384, + "Tp (total) (s)": 15.5324 + }, + { + "Date+Time": "1986-11-19T00:00:00Z", + "Hs (total) (m)": 4.4565, + "Tp (total) (s)": 16.2442 + }, + { + "Date+Time": "1986-11-20T00:00:00Z", + "Hs (total) (m)": 3.7263, + "Tp (total) (s)": 15.2326 + }, + { + "Date+Time": "1986-11-21T00:00:00Z", + "Hs (total) (m)": 2.9763, + "Tp (total) (s)": 12.814 + }, + { + "Date+Time": "1986-11-22T00:00:00Z", + "Hs (total) (m)": 3.2022, + "Tp (total) (s)": 12.5668 + }, + { + "Date+Time": "1986-11-23T00:00:00Z", + "Hs (total) (m)": 4.3756, + "Tp (total) (s)": 12.2608 + }, + { + "Date+Time": "1986-11-24T00:00:00Z", + "Hs (total) (m)": 6.091, + "Tp (total) (s)": 16.6354 + }, + { + "Date+Time": "1986-11-25T00:00:00Z", + "Hs (total) (m)": 6.5913, + "Tp (total) (s)": 16.9689 + }, + { + "Date+Time": "1986-11-26T00:00:00Z", + "Hs (total) (m)": 5.0946, + "Tp (total) (s)": 15.9108 + }, + { + "Date+Time": "1986-11-27T00:00:00Z", + "Hs (total) (m)": 3.647, + "Tp (total) (s)": 12.0296 + }, + { + "Date+Time": "1986-11-28T00:00:00Z", + "Hs (total) (m)": 3.5211, + "Tp (total) (s)": 11.9137 + }, + { + "Date+Time": "1986-11-29T00:00:00Z", + "Hs (total) (m)": 3.8636, + "Tp (total) (s)": 12.8552 + }, + { + "Date+Time": "1986-11-30T00:00:00Z", + "Hs (total) (m)": 3.2083, + "Tp (total) (s)": 12.7453 + }, + { + "Date+Time": "1986-12-01T00:00:00Z", + "Hs (total) (m)": 2.4361, + "Tp (total) (s)": 11.7862 + }, + { + "Date+Time": "1986-12-02T00:00:00Z", + "Hs (total) (m)": 2.2965, + "Tp (total) (s)": 12.5599 + }, + { + "Date+Time": "1986-12-03T00:00:00Z", + "Hs (total) (m)": 3.1075, + "Tp (total) (s)": 11.034 + }, + { + "Date+Time": "1986-12-04T00:00:00Z", + "Hs (total) (m)": 3.6958, + "Tp (total) (s)": 11.1576 + }, + { + "Date+Time": "1986-12-05T00:00:00Z", + "Hs (total) (m)": 3.1564, + "Tp (total) (s)": 12.5332 + }, + { + "Date+Time": "1986-12-06T00:00:00Z", + "Hs (total) (m)": 3.1968, + "Tp (total) (s)": 11.2934 + }, + { + "Date+Time": "1986-12-07T00:00:00Z", + "Hs (total) (m)": 2.8153, + "Tp (total) (s)": 10.7181 + }, + { + "Date+Time": "1986-12-08T00:00:00Z", + "Hs (total) (m)": 3.2655, + "Tp (total) (s)": 10.6609 + }, + { + "Date+Time": "1986-12-09T00:00:00Z", + "Hs (total) (m)": 2.8283, + "Tp (total) (s)": 11.3857 + }, + { + "Date+Time": "1986-12-10T00:00:00Z", + "Hs (total) (m)": 2.4415, + "Tp (total) (s)": 11.7534 + }, + { + "Date+Time": "1986-12-11T00:00:00Z", + "Hs (total) (m)": 2.8787, + "Tp (total) (s)": 11.7244 + }, + { + "Date+Time": "1986-12-12T00:00:00Z", + "Hs (total) (m)": 3.1274, + "Tp (total) (s)": 11.4498 + }, + { + "Date+Time": "1986-12-13T00:00:00Z", + "Hs (total) (m)": 3.8842, + "Tp (total) (s)": 16.0604 + }, + { + "Date+Time": "1986-12-14T00:00:00Z", + "Hs (total) (m)": 4.5511, + "Tp (total) (s)": 14.9548 + }, + { + "Date+Time": "1986-12-15T00:00:00Z", + "Hs (total) (m)": 3.8026, + "Tp (total) (s)": 14.0103 + }, + { + "Date+Time": "1986-12-16T00:00:00Z", + "Hs (total) (m)": 3.6195, + "Tp (total) (s)": 13.937 + }, + { + "Date+Time": "1986-12-17T00:00:00Z", + "Hs (total) (m)": 3.7194, + "Tp (total) (s)": 13.7295 + }, + { + "Date+Time": "1986-12-18T00:00:00Z", + "Hs (total) (m)": 5.074, + "Tp (total) (s)": 18.0001 + }, + { + "Date+Time": "1986-12-19T00:00:00Z", + "Hs (total) (m)": 4.5915, + "Tp (total) (s)": 16.9836 + }, + { + "Date+Time": "1986-12-20T00:00:00Z", + "Hs (total) (m)": 3.5127, + "Tp (total) (s)": 13.5037 + }, + { + "Date+Time": "1986-12-21T00:00:00Z", + "Hs (total) (m)": 3.3082, + "Tp (total) (s)": 11.8938 + }, + { + "Date+Time": "1986-12-22T00:00:00Z", + "Hs (total) (m)": 2.8573, + "Tp (total) (s)": 12.5797 + }, + { + "Date+Time": "1986-12-23T00:00:00Z", + "Hs (total) (m)": 1.5198, + "Tp (total) (s)": 11.3681 + }, + { + "Date+Time": "1986-12-24T00:00:00Z", + "Hs (total) (m)": 0.8667, + "Tp (total) (s)": 8.8351 + }, + { + "Date+Time": "1986-12-25T00:00:00Z", + "Hs (total) (m)": 1.5175, + "Tp (total) (s)": 7.6968 + }, + { + "Date+Time": "1986-12-26T00:00:00Z", + "Hs (total) (m)": 2.1393, + "Tp (total) (s)": 8.4185 + }, + { + "Date+Time": "1986-12-27T00:00:00Z", + "Hs (total) (m)": 2.3553, + "Tp (total) (s)": 11.4795 + }, + { + "Date+Time": "1986-12-28T00:00:00Z", + "Hs (total) (m)": 2.5452, + "Tp (total) (s)": 11.7389 + }, + { + "Date+Time": "1986-12-29T00:00:00Z", + "Hs (total) (m)": 2.7497, + "Tp (total) (s)": 11.6916 + }, + { + "Date+Time": "1986-12-30T00:00:00Z", + "Hs (total) (m)": 3.1838, + "Tp (total) (s)": 14.1705 + }, + { + "Date+Time": "1986-12-31T00:00:00Z", + "Hs (total) (m)": 3.2052, + "Tp (total) (s)": 11.1805 + }, + { + "Date+Time": "1987-01-01T00:00:00Z", + "Hs (total) (m)": 2.7985, + "Tp (total) (s)": 14.1591 + }, + { + "Date+Time": "1987-01-02T00:00:00Z", + "Hs (total) (m)": 3.431, + "Tp (total) (s)": 11.156 + }, + { + "Date+Time": "1987-01-03T00:00:00Z", + "Hs (total) (m)": 2.3263, + "Tp (total) (s)": 11.3048 + }, + { + "Date+Time": "1987-01-04T00:00:00Z", + "Hs (total) (m)": 2.427, + "Tp (total) (s)": 6.8796 + }, + { + "Date+Time": "1987-01-05T00:00:00Z", + "Hs (total) (m)": 2.7573, + "Tp (total) (s)": 10.1695 + }, + { + "Date+Time": "1987-01-06T00:00:00Z", + "Hs (total) (m)": 3.2449, + "Tp (total) (s)": 15.144 + }, + { + "Date+Time": "1987-01-07T00:00:00Z", + "Hs (total) (m)": 2.195, + "Tp (total) (s)": 14.111 + }, + { + "Date+Time": "1987-01-08T00:00:00Z", + "Hs (total) (m)": 1.5282, + "Tp (total) (s)": 11.3002 + }, + { + "Date+Time": "1987-01-09T00:00:00Z", + "Hs (total) (m)": 2.5132, + "Tp (total) (s)": 6.492 + }, + { + "Date+Time": "1987-01-10T00:00:00Z", + "Hs (total) (m)": 1.6121, + "Tp (total) (s)": 7.902 + }, + { + "Date+Time": "1987-01-11T00:00:00Z", + "Hs (total) (m)": 1.5442, + "Tp (total) (s)": 9.0945 + }, + { + "Date+Time": "1987-01-12T00:00:00Z", + "Hs (total) (m)": 1.7029, + "Tp (total) (s)": 6.5935 + }, + { + "Date+Time": "1987-01-13T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 5.752 + }, + { + "Date+Time": "1987-01-14T00:00:00Z", + "Hs (total) (m)": 0.6439, + "Tp (total) (s)": 3.0862 + }, + { + "Date+Time": "1987-01-15T00:00:00Z", + "Hs (total) (m)": 0.8019, + "Tp (total) (s)": 2.9 + }, + { + "Date+Time": "1987-01-16T00:00:00Z", + "Hs (total) (m)": 1.3848, + "Tp (total) (s)": 14.3963 + }, + { + "Date+Time": "1987-01-17T00:00:00Z", + "Hs (total) (m)": 2.5285, + "Tp (total) (s)": 8.4399 + }, + { + "Date+Time": "1987-01-18T00:00:00Z", + "Hs (total) (m)": 2.2599, + "Tp (total) (s)": 11.5131 + }, + { + "Date+Time": "1987-01-19T00:00:00Z", + "Hs (total) (m)": 2.2187, + "Tp (total) (s)": 11.3613 + }, + { + "Date+Time": "1987-01-20T00:00:00Z", + "Hs (total) (m)": 2.2782, + "Tp (total) (s)": 10.3954 + }, + { + "Date+Time": "1987-01-21T00:00:00Z", + "Hs (total) (m)": 1.7823, + "Tp (total) (s)": 10.9264 + }, + { + "Date+Time": "1987-01-22T00:00:00Z", + "Hs (total) (m)": 1.5671, + "Tp (total) (s)": 11.6787 + }, + { + "Date+Time": "1987-01-23T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 10.6334 + }, + { + "Date+Time": "1987-01-24T00:00:00Z", + "Hs (total) (m)": 1.0628, + "Tp (total) (s)": 16.8432 + }, + { + "Date+Time": "1987-01-25T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 13.9821 + }, + { + "Date+Time": "1987-01-26T00:00:00Z", + "Hs (total) (m)": 0.7271, + "Tp (total) (s)": 11.5894 + }, + { + "Date+Time": "1987-01-27T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 12.624 + }, + { + "Date+Time": "1987-01-28T00:00:00Z", + "Hs (total) (m)": 0.998, + "Tp (total) (s)": 11.697 + }, + { + "Date+Time": "1987-01-29T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 12.9231 + }, + { + "Date+Time": "1987-01-30T00:00:00Z", + "Hs (total) (m)": 1.5091, + "Tp (total) (s)": 12.0243 + }, + { + "Date+Time": "1987-01-31T00:00:00Z", + "Hs (total) (m)": 1.6915, + "Tp (total) (s)": 13.509 + }, + { + "Date+Time": "1987-02-01T00:00:00Z", + "Hs (total) (m)": 1.8647, + "Tp (total) (s)": 12.8292 + }, + { + "Date+Time": "1987-02-02T00:00:00Z", + "Hs (total) (m)": 2.2729, + "Tp (total) (s)": 14.0873 + }, + { + "Date+Time": "1987-02-03T00:00:00Z", + "Hs (total) (m)": 2.2851, + "Tp (total) (s)": 14.1095 + }, + { + "Date+Time": "1987-02-04T00:00:00Z", + "Hs (total) (m)": 1.9616, + "Tp (total) (s)": 13.9225 + }, + { + "Date+Time": "1987-02-05T00:00:00Z", + "Hs (total) (m)": 3.3372, + "Tp (total) (s)": 10.506 + }, + { + "Date+Time": "1987-02-06T00:00:00Z", + "Hs (total) (m)": 4.0178, + "Tp (total) (s)": 11.9762 + }, + { + "Date+Time": "1987-02-07T00:00:00Z", + "Hs (total) (m)": 2.9115, + "Tp (total) (s)": 12.8155 + }, + { + "Date+Time": "1987-02-08T00:00:00Z", + "Hs (total) (m)": 2.6131, + "Tp (total) (s)": 11.916 + }, + { + "Date+Time": "1987-02-09T00:00:00Z", + "Hs (total) (m)": 2.504, + "Tp (total) (s)": 14.0599 + }, + { + "Date+Time": "1987-02-10T00:00:00Z", + "Hs (total) (m)": 2.385, + "Tp (total) (s)": 14.0439 + }, + { + "Date+Time": "1987-02-11T00:00:00Z", + "Hs (total) (m)": 2.3186, + "Tp (total) (s)": 13.4732 + }, + { + "Date+Time": "1987-02-12T00:00:00Z", + "Hs (total) (m)": 2.2256, + "Tp (total) (s)": 11.9129 + }, + { + "Date+Time": "1987-02-13T00:00:00Z", + "Hs (total) (m)": 1.8036, + "Tp (total) (s)": 12.3417 + }, + { + "Date+Time": "1987-02-14T00:00:00Z", + "Hs (total) (m)": 1.7228, + "Tp (total) (s)": 11.2331 + }, + { + "Date+Time": "1987-02-15T00:00:00Z", + "Hs (total) (m)": 1.825, + "Tp (total) (s)": 13.5334 + }, + { + "Date+Time": "1987-02-16T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 13.187 + }, + { + "Date+Time": "1987-02-17T00:00:00Z", + "Hs (total) (m)": 1.7029, + "Tp (total) (s)": 17.1834 + }, + { + "Date+Time": "1987-02-18T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 15.408 + }, + { + "Date+Time": "1987-02-19T00:00:00Z", + "Hs (total) (m)": 1.5763, + "Tp (total) (s)": 13.8371 + }, + { + "Date+Time": "1987-02-20T00:00:00Z", + "Hs (total) (m)": 1.1559, + "Tp (total) (s)": 12.6476 + }, + { + "Date+Time": "1987-02-21T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 11.2651 + }, + { + "Date+Time": "1987-02-22T00:00:00Z", + "Hs (total) (m)": 1.0796, + "Tp (total) (s)": 14.9182 + }, + { + "Date+Time": "1987-02-23T00:00:00Z", + "Hs (total) (m)": 1.1971, + "Tp (total) (s)": 13.4785 + }, + { + "Date+Time": "1987-02-24T00:00:00Z", + "Hs (total) (m)": 1.4161, + "Tp (total) (s)": 11.9114 + }, + { + "Date+Time": "1987-02-25T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 5.4041 + }, + { + "Date+Time": "1987-02-26T00:00:00Z", + "Hs (total) (m)": 1.603, + "Tp (total) (s)": 11.5848 + }, + { + "Date+Time": "1987-02-27T00:00:00Z", + "Hs (total) (m)": 3.0931, + "Tp (total) (s)": 11.2651 + }, + { + "Date+Time": "1987-02-28T00:00:00Z", + "Hs (total) (m)": 4.0262, + "Tp (total) (s)": 15.7193 + }, + { + "Date+Time": "1987-03-01T00:00:00Z", + "Hs (total) (m)": 2.9611, + "Tp (total) (s)": 13.9409 + }, + { + "Date+Time": "1987-03-02T00:00:00Z", + "Hs (total) (m)": 2.2599, + "Tp (total) (s)": 13.171 + }, + { + "Date+Time": "1987-03-03T00:00:00Z", + "Hs (total) (m)": 1.899, + "Tp (total) (s)": 12.9063 + }, + { + "Date+Time": "1987-03-04T00:00:00Z", + "Hs (total) (m)": 1.9921, + "Tp (total) (s)": 10.3351 + }, + { + "Date+Time": "1987-03-05T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 10.6326 + }, + { + "Date+Time": "1987-03-06T00:00:00Z", + "Hs (total) (m)": 2.5338, + "Tp (total) (s)": 11.2445 + }, + { + "Date+Time": "1987-03-07T00:00:00Z", + "Hs (total) (m)": 2.3217, + "Tp (total) (s)": 11.597 + }, + { + "Date+Time": "1987-03-08T00:00:00Z", + "Hs (total) (m)": 2.2286, + "Tp (total) (s)": 11.8954 + }, + { + "Date+Time": "1987-03-09T00:00:00Z", + "Hs (total) (m)": 2.3278, + "Tp (total) (s)": 11.5879 + }, + { + "Date+Time": "1987-03-10T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 11.3956 + }, + { + "Date+Time": "1987-03-11T00:00:00Z", + "Hs (total) (m)": 1.8227, + "Tp (total) (s)": 14.4307 + }, + { + "Date+Time": "1987-03-12T00:00:00Z", + "Hs (total) (m)": 1.5427, + "Tp (total) (s)": 13.4823 + }, + { + "Date+Time": "1987-03-13T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 11.4902 + }, + { + "Date+Time": "1987-03-14T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 10.6655 + }, + { + "Date+Time": "1987-03-15T00:00:00Z", + "Hs (total) (m)": 1.175, + "Tp (total) (s)": 13.6776 + }, + { + "Date+Time": "1987-03-16T00:00:00Z", + "Hs (total) (m)": 1.3054, + "Tp (total) (s)": 13.1268 + }, + { + "Date+Time": "1987-03-17T00:00:00Z", + "Hs (total) (m)": 1.5206, + "Tp (total) (s)": 11.8274 + }, + { + "Date+Time": "1987-03-18T00:00:00Z", + "Hs (total) (m)": 2.0173, + "Tp (total) (s)": 9.2471 + }, + { + "Date+Time": "1987-03-19T00:00:00Z", + "Hs (total) (m)": 2.9115, + "Tp (total) (s)": 12.7552 + }, + { + "Date+Time": "1987-03-20T00:00:00Z", + "Hs (total) (m)": 2.1668, + "Tp (total) (s)": 12.6255 + }, + { + "Date+Time": "1987-03-21T00:00:00Z", + "Hs (total) (m)": 1.3955, + "Tp (total) (s)": 12.6278 + }, + { + "Date+Time": "1987-03-22T00:00:00Z", + "Hs (total) (m)": 1.3947, + "Tp (total) (s)": 12.4157 + }, + { + "Date+Time": "1987-03-23T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 10.3908 + }, + { + "Date+Time": "1987-03-24T00:00:00Z", + "Hs (total) (m)": 1.339, + "Tp (total) (s)": 9.7369 + }, + { + "Date+Time": "1987-03-25T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 8.768 + }, + { + "Date+Time": "1987-03-26T00:00:00Z", + "Hs (total) (m)": 2.6124, + "Tp (total) (s)": 9.2837 + }, + { + "Date+Time": "1987-03-27T00:00:00Z", + "Hs (total) (m)": 3.7408, + "Tp (total) (s)": 11.1164 + }, + { + "Date+Time": "1987-03-28T00:00:00Z", + "Hs (total) (m)": 2.8733, + "Tp (total) (s)": 10.5304 + }, + { + "Date+Time": "1987-03-29T00:00:00Z", + "Hs (total) (m)": 2.0753, + "Tp (total) (s)": 10.8364 + }, + { + "Date+Time": "1987-03-30T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 11.4315 + }, + { + "Date+Time": "1987-03-31T00:00:00Z", + "Hs (total) (m)": 2.8512, + "Tp (total) (s)": 8.6756 + }, + { + "Date+Time": "1987-04-01T00:00:00Z", + "Hs (total) (m)": 2.2988, + "Tp (total) (s)": 11.9495 + }, + { + "Date+Time": "1987-04-02T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 11.3987 + }, + { + "Date+Time": "1987-04-03T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 10.4366 + }, + { + "Date+Time": "1987-04-04T00:00:00Z", + "Hs (total) (m)": 1.3451, + "Tp (total) (s)": 9.6232 + }, + { + "Date+Time": "1987-04-05T00:00:00Z", + "Hs (total) (m)": 1.059, + "Tp (total) (s)": 9.5035 + }, + { + "Date+Time": "1987-04-06T00:00:00Z", + "Hs (total) (m)": 0.8454, + "Tp (total) (s)": 10.7982 + }, + { + "Date+Time": "1987-04-07T00:00:00Z", + "Hs (total) (m)": 0.8621, + "Tp (total) (s)": 8.4841 + }, + { + "Date+Time": "1987-04-08T00:00:00Z", + "Hs (total) (m)": 0.5348, + "Tp (total) (s)": 6.9689 + }, + { + "Date+Time": "1987-04-09T00:00:00Z", + "Hs (total) (m)": 0.7347, + "Tp (total) (s)": 11.433 + }, + { + "Date+Time": "1987-04-10T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 8.6283 + }, + { + "Date+Time": "1987-04-11T00:00:00Z", + "Hs (total) (m)": 1.838, + "Tp (total) (s)": 11.2789 + }, + { + "Date+Time": "1987-04-12T00:00:00Z", + "Hs (total) (m)": 1.6457, + "Tp (total) (s)": 10.0009 + }, + { + "Date+Time": "1987-04-13T00:00:00Z", + "Hs (total) (m)": 1.751, + "Tp (total) (s)": 9.6171 + }, + { + "Date+Time": "1987-04-14T00:00:00Z", + "Hs (total) (m)": 1.7632, + "Tp (total) (s)": 11.713 + }, + { + "Date+Time": "1987-04-15T00:00:00Z", + "Hs (total) (m)": 1.8418, + "Tp (total) (s)": 11.7542 + }, + { + "Date+Time": "1987-04-16T00:00:00Z", + "Hs (total) (m)": 1.5488, + "Tp (total) (s)": 12.1982 + }, + { + "Date+Time": "1987-04-17T00:00:00Z", + "Hs (total) (m)": 1.4534, + "Tp (total) (s)": 12.8613 + }, + { + "Date+Time": "1987-04-18T00:00:00Z", + "Hs (total) (m)": 1.8166, + "Tp (total) (s)": 11.5139 + }, + { + "Date+Time": "1987-04-19T00:00:00Z", + "Hs (total) (m)": 2.7818, + "Tp (total) (s)": 8.9526 + }, + { + "Date+Time": "1987-04-20T00:00:00Z", + "Hs (total) (m)": 2.5834, + "Tp (total) (s)": 11.7542 + }, + { + "Date+Time": "1987-04-21T00:00:00Z", + "Hs (total) (m)": 2.0875, + "Tp (total) (s)": 11.0225 + }, + { + "Date+Time": "1987-04-22T00:00:00Z", + "Hs (total) (m)": 1.751, + "Tp (total) (s)": 10.6525 + }, + { + "Date+Time": "1987-04-23T00:00:00Z", + "Hs (total) (m)": 1.7006, + "Tp (total) (s)": 10.7517 + }, + { + "Date+Time": "1987-04-24T00:00:00Z", + "Hs (total) (m)": 1.3581, + "Tp (total) (s)": 10.625 + }, + { + "Date+Time": "1987-04-25T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 10.2153 + }, + { + "Date+Time": "1987-04-26T00:00:00Z", + "Hs (total) (m)": 1.3169, + "Tp (total) (s)": 13.7951 + }, + { + "Date+Time": "1987-04-27T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 12.5614 + }, + { + "Date+Time": "1987-04-28T00:00:00Z", + "Hs (total) (m)": 0.9568, + "Tp (total) (s)": 11.1797 + }, + { + "Date+Time": "1987-04-29T00:00:00Z", + "Hs (total) (m)": 1.0681, + "Tp (total) (s)": 11.5322 + }, + { + "Date+Time": "1987-04-30T00:00:00Z", + "Hs (total) (m)": 1.0659, + "Tp (total) (s)": 11.6466 + }, + { + "Date+Time": "1987-05-01T00:00:00Z", + "Hs (total) (m)": 1.0224, + "Tp (total) (s)": 11.5474 + }, + { + "Date+Time": "1987-05-02T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 10.3549 + }, + { + "Date+Time": "1987-05-03T00:00:00Z", + "Hs (total) (m)": 2.4911, + "Tp (total) (s)": 12.6843 + }, + { + "Date+Time": "1987-05-04T00:00:00Z", + "Hs (total) (m)": 1.6129, + "Tp (total) (s)": 12.2227 + }, + { + "Date+Time": "1987-05-05T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 10.9119 + }, + { + "Date+Time": "1987-05-06T00:00:00Z", + "Hs (total) (m)": 1.0308, + "Tp (total) (s)": 10.3458 + }, + { + "Date+Time": "1987-05-07T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 10.2268 + }, + { + "Date+Time": "1987-05-08T00:00:00Z", + "Hs (total) (m)": 0.9613, + "Tp (total) (s)": 13.6982 + }, + { + "Date+Time": "1987-05-09T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 13.2748 + }, + { + "Date+Time": "1987-05-10T00:00:00Z", + "Hs (total) (m)": 1.1246, + "Tp (total) (s)": 12.7422 + }, + { + "Date+Time": "1987-05-11T00:00:00Z", + "Hs (total) (m)": 1.091, + "Tp (total) (s)": 8.5383 + }, + { + "Date+Time": "1987-05-12T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 8.0409 + }, + { + "Date+Time": "1987-05-13T00:00:00Z", + "Hs (total) (m)": 1.7098, + "Tp (total) (s)": 9.2174 + }, + { + "Date+Time": "1987-05-14T00:00:00Z", + "Hs (total) (m)": 1.5603, + "Tp (total) (s)": 8.6825 + }, + { + "Date+Time": "1987-05-15T00:00:00Z", + "Hs (total) (m)": 1.4664, + "Tp (total) (s)": 8.5459 + }, + { + "Date+Time": "1987-05-16T00:00:00Z", + "Hs (total) (m)": 1.1216, + "Tp (total) (s)": 9.7194 + }, + { + "Date+Time": "1987-05-17T00:00:00Z", + "Hs (total) (m)": 1.0842, + "Tp (total) (s)": 9.1449 + }, + { + "Date+Time": "1987-05-18T00:00:00Z", + "Hs (total) (m)": 1.1536, + "Tp (total) (s)": 8.9854 + }, + { + "Date+Time": "1987-05-19T00:00:00Z", + "Hs (total) (m)": 1.0857, + "Tp (total) (s)": 9.4417 + }, + { + "Date+Time": "1987-05-20T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 9.3669 + }, + { + "Date+Time": "1987-05-21T00:00:00Z", + "Hs (total) (m)": 0.8126, + "Tp (total) (s)": 9.0426 + }, + { + "Date+Time": "1987-05-22T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 8.2606 + }, + { + "Date+Time": "1987-05-23T00:00:00Z", + "Hs (total) (m)": 0.6653, + "Tp (total) (s)": 7.9394 + }, + { + "Date+Time": "1987-05-24T00:00:00Z", + "Hs (total) (m)": 0.6211, + "Tp (total) (s)": 2.8321 + }, + { + "Date+Time": "1987-05-25T00:00:00Z", + "Hs (total) (m)": 0.5646, + "Tp (total) (s)": 9.9101 + }, + { + "Date+Time": "1987-05-26T00:00:00Z", + "Hs (total) (m)": 1.1528, + "Tp (total) (s)": 4.8311 + }, + { + "Date+Time": "1987-05-27T00:00:00Z", + "Hs (total) (m)": 0.5837, + "Tp (total) (s)": 8.034 + }, + { + "Date+Time": "1987-05-28T00:00:00Z", + "Hs (total) (m)": 0.679, + "Tp (total) (s)": 9.431 + }, + { + "Date+Time": "1987-05-29T00:00:00Z", + "Hs (total) (m)": 0.9186, + "Tp (total) (s)": 8.5139 + }, + { + "Date+Time": "1987-05-30T00:00:00Z", + "Hs (total) (m)": 2.2057, + "Tp (total) (s)": 8.2446 + }, + { + "Date+Time": "1987-05-31T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 11.5429 + }, + { + "Date+Time": "1987-06-01T00:00:00Z", + "Hs (total) (m)": 2.0707, + "Tp (total) (s)": 9.9322 + }, + { + "Date+Time": "1987-06-02T00:00:00Z", + "Hs (total) (m)": 1.5236, + "Tp (total) (s)": 9.5866 + }, + { + "Date+Time": "1987-06-03T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 9.1433 + }, + { + "Date+Time": "1987-06-04T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 10.3442 + }, + { + "Date+Time": "1987-06-05T00:00:00Z", + "Hs (total) (m)": 1.1994, + "Tp (total) (s)": 9.8491 + }, + { + "Date+Time": "1987-06-06T00:00:00Z", + "Hs (total) (m)": 1.294, + "Tp (total) (s)": 8.7092 + }, + { + "Date+Time": "1987-06-07T00:00:00Z", + "Hs (total) (m)": 1.4893, + "Tp (total) (s)": 7.268 + }, + { + "Date+Time": "1987-06-08T00:00:00Z", + "Hs (total) (m)": 1.3153, + "Tp (total) (s)": 7.8333 + }, + { + "Date+Time": "1987-06-09T00:00:00Z", + "Hs (total) (m)": 1.1879, + "Tp (total) (s)": 8.5582 + }, + { + "Date+Time": "1987-06-10T00:00:00Z", + "Hs (total) (m)": 0.9491, + "Tp (total) (s)": 8.0111 + }, + { + "Date+Time": "1987-06-11T00:00:00Z", + "Hs (total) (m)": 0.763, + "Tp (total) (s)": 7.8677 + }, + { + "Date+Time": "1987-06-12T00:00:00Z", + "Hs (total) (m)": 0.6836, + "Tp (total) (s)": 7.8585 + }, + { + "Date+Time": "1987-06-13T00:00:00Z", + "Hs (total) (m)": 0.634, + "Tp (total) (s)": 7.635 + }, + { + "Date+Time": "1987-06-14T00:00:00Z", + "Hs (total) (m)": 0.573, + "Tp (total) (s)": 6.0663 + }, + { + "Date+Time": "1987-06-15T00:00:00Z", + "Hs (total) (m)": 0.6104, + "Tp (total) (s)": 5.9664 + }, + { + "Date+Time": "1987-06-16T00:00:00Z", + "Hs (total) (m)": 0.6302, + "Tp (total) (s)": 5.958 + }, + { + "Date+Time": "1987-06-17T00:00:00Z", + "Hs (total) (m)": 0.8919, + "Tp (total) (s)": 5.2538 + }, + { + "Date+Time": "1987-06-18T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 10.0314 + }, + { + "Date+Time": "1987-06-19T00:00:00Z", + "Hs (total) (m)": 1.1414, + "Tp (total) (s)": 7.9615 + }, + { + "Date+Time": "1987-06-20T00:00:00Z", + "Hs (total) (m)": 0.9781, + "Tp (total) (s)": 8.1584 + }, + { + "Date+Time": "1987-06-21T00:00:00Z", + "Hs (total) (m)": 1.0208, + "Tp (total) (s)": 10.2153 + }, + { + "Date+Time": "1987-06-22T00:00:00Z", + "Hs (total) (m)": 1.2535, + "Tp (total) (s)": 10.0673 + }, + { + "Date+Time": "1987-06-23T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 9.5065 + }, + { + "Date+Time": "1987-06-24T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 9.6156 + }, + { + "Date+Time": "1987-06-25T00:00:00Z", + "Hs (total) (m)": 1.133, + "Tp (total) (s)": 9.4729 + }, + { + "Date+Time": "1987-06-26T00:00:00Z", + "Hs (total) (m)": 1.1032, + "Tp (total) (s)": 9.2883 + }, + { + "Date+Time": "1987-06-27T00:00:00Z", + "Hs (total) (m)": 1.236, + "Tp (total) (s)": 8.6711 + }, + { + "Date+Time": "1987-06-28T00:00:00Z", + "Hs (total) (m)": 1.6366, + "Tp (total) (s)": 8.9175 + }, + { + "Date+Time": "1987-06-29T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 9.5752 + }, + { + "Date+Time": "1987-06-30T00:00:00Z", + "Hs (total) (m)": 2.6978, + "Tp (total) (s)": 10.783 + }, + { + "Date+Time": "1987-07-01T00:00:00Z", + "Hs (total) (m)": 2.1867, + "Tp (total) (s)": 10.0925 + }, + { + "Date+Time": "1987-07-02T00:00:00Z", + "Hs (total) (m)": 1.574, + "Tp (total) (s)": 9.7018 + }, + { + "Date+Time": "1987-07-03T00:00:00Z", + "Hs (total) (m)": 1.3504, + "Tp (total) (s)": 7.5106 + }, + { + "Date+Time": "1987-07-04T00:00:00Z", + "Hs (total) (m)": 1.6518, + "Tp (total) (s)": 7.8097 + }, + { + "Date+Time": "1987-07-05T00:00:00Z", + "Hs (total) (m)": 1.4275, + "Tp (total) (s)": 8.6428 + }, + { + "Date+Time": "1987-07-06T00:00:00Z", + "Hs (total) (m)": 1.1528, + "Tp (total) (s)": 8.6428 + }, + { + "Date+Time": "1987-07-07T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 8.6833 + }, + { + "Date+Time": "1987-07-08T00:00:00Z", + "Hs (total) (m)": 0.8454, + "Tp (total) (s)": 8.285 + }, + { + "Date+Time": "1987-07-09T00:00:00Z", + "Hs (total) (m)": 0.6829, + "Tp (total) (s)": 7.1688 + }, + { + "Date+Time": "1987-07-10T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 8.1774 + }, + { + "Date+Time": "1987-07-11T00:00:00Z", + "Hs (total) (m)": 1.458, + "Tp (total) (s)": 6.9597 + }, + { + "Date+Time": "1987-07-12T00:00:00Z", + "Hs (total) (m)": 1.5465, + "Tp (total) (s)": 8.8847 + }, + { + "Date+Time": "1987-07-13T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 8.639 + }, + { + "Date+Time": "1987-07-14T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 8.0241 + }, + { + "Date+Time": "1987-07-15T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 7.7624 + }, + { + "Date+Time": "1987-07-16T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 8.6039 + }, + { + "Date+Time": "1987-07-17T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 9.4211 + }, + { + "Date+Time": "1987-07-18T00:00:00Z", + "Hs (total) (m)": 0.9903, + "Tp (total) (s)": 9.1365 + }, + { + "Date+Time": "1987-07-19T00:00:00Z", + "Hs (total) (m)": 1.236, + "Tp (total) (s)": 7.7197 + }, + { + "Date+Time": "1987-07-20T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 7.3222 + }, + { + "Date+Time": "1987-07-21T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 7.0612 + }, + { + "Date+Time": "1987-07-22T00:00:00Z", + "Hs (total) (m)": 0.6584, + "Tp (total) (s)": 6.3875 + }, + { + "Date+Time": "1987-07-23T00:00:00Z", + "Hs (total) (m)": 0.5341, + "Tp (total) (s)": 5.2812 + }, + { + "Date+Time": "1987-07-24T00:00:00Z", + "Hs (total) (m)": 0.547, + "Tp (total) (s)": 10.213 + }, + { + "Date+Time": "1987-07-25T00:00:00Z", + "Hs (total) (m)": 0.6798, + "Tp (total) (s)": 9.5111 + }, + { + "Date+Time": "1987-07-26T00:00:00Z", + "Hs (total) (m)": 0.7591, + "Tp (total) (s)": 7.7166 + }, + { + "Date+Time": "1987-07-27T00:00:00Z", + "Hs (total) (m)": 1.2024, + "Tp (total) (s)": 5.9259 + }, + { + "Date+Time": "1987-07-28T00:00:00Z", + "Hs (total) (m)": 1.2886, + "Tp (total) (s)": 7.4915 + }, + { + "Date+Time": "1987-07-29T00:00:00Z", + "Hs (total) (m)": 1.2963, + "Tp (total) (s)": 6.6446 + }, + { + "Date+Time": "1987-07-30T00:00:00Z", + "Hs (total) (m)": 1.1322, + "Tp (total) (s)": 7.0238 + }, + { + "Date+Time": "1987-07-31T00:00:00Z", + "Hs (total) (m)": 1.1986, + "Tp (total) (s)": 6.8789 + }, + { + "Date+Time": "1987-08-01T00:00:00Z", + "Hs (total) (m)": 1.4664, + "Tp (total) (s)": 7.1848 + }, + { + "Date+Time": "1987-08-02T00:00:00Z", + "Hs (total) (m)": 2.0402, + "Tp (total) (s)": 8.6009 + }, + { + "Date+Time": "1987-08-03T00:00:00Z", + "Hs (total) (m)": 1.5015, + "Tp (total) (s)": 9.3303 + }, + { + "Date+Time": "1987-08-04T00:00:00Z", + "Hs (total) (m)": 1.1879, + "Tp (total) (s)": 8.8397 + }, + { + "Date+Time": "1987-08-05T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 8.3941 + }, + { + "Date+Time": "1987-08-06T00:00:00Z", + "Hs (total) (m)": 0.7164, + "Tp (total) (s)": 7.8875 + }, + { + "Date+Time": "1987-08-07T00:00:00Z", + "Hs (total) (m)": 0.5562, + "Tp (total) (s)": 7.5426 + }, + { + "Date+Time": "1987-08-08T00:00:00Z", + "Hs (total) (m)": 0.5867, + "Tp (total) (s)": 2.5796 + }, + { + "Date+Time": "1987-08-09T00:00:00Z", + "Hs (total) (m)": 0.7332, + "Tp (total) (s)": 8.4902 + }, + { + "Date+Time": "1987-08-10T00:00:00Z", + "Hs (total) (m)": 0.6279, + "Tp (total) (s)": 8.3041 + }, + { + "Date+Time": "1987-08-11T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 8.948 + }, + { + "Date+Time": "1987-08-12T00:00:00Z", + "Hs (total) (m)": 1.3924, + "Tp (total) (s)": 8.7199 + }, + { + "Date+Time": "1987-08-13T00:00:00Z", + "Hs (total) (m)": 2.2897, + "Tp (total) (s)": 9.1655 + }, + { + "Date+Time": "1987-08-14T00:00:00Z", + "Hs (total) (m)": 1.5381, + "Tp (total) (s)": 8.1301 + }, + { + "Date+Time": "1987-08-15T00:00:00Z", + "Hs (total) (m)": 1.3405, + "Tp (total) (s)": 7.5602 + }, + { + "Date+Time": "1987-08-16T00:00:00Z", + "Hs (total) (m)": 1.6465, + "Tp (total) (s)": 7.1604 + }, + { + "Date+Time": "1987-08-17T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 12.4767 + }, + { + "Date+Time": "1987-08-18T00:00:00Z", + "Hs (total) (m)": 1.3771, + "Tp (total) (s)": 11.0508 + }, + { + "Date+Time": "1987-08-19T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 9.3158 + }, + { + "Date+Time": "1987-08-20T00:00:00Z", + "Hs (total) (m)": 1.4542, + "Tp (total) (s)": 8.4315 + }, + { + "Date+Time": "1987-08-21T00:00:00Z", + "Hs (total) (m)": 1.1856, + "Tp (total) (s)": 8.8343 + }, + { + "Date+Time": "1987-08-22T00:00:00Z", + "Hs (total) (m)": 0.8194, + "Tp (total) (s)": 7.8928 + }, + { + "Date+Time": "1987-08-23T00:00:00Z", + "Hs (total) (m)": 0.7149, + "Tp (total) (s)": 7.1886 + }, + { + "Date+Time": "1987-08-24T00:00:00Z", + "Hs (total) (m)": 0.6935, + "Tp (total) (s)": 6.943 + }, + { + "Date+Time": "1987-08-25T00:00:00Z", + "Hs (total) (m)": 0.7622, + "Tp (total) (s)": 7.8944 + }, + { + "Date+Time": "1987-08-26T00:00:00Z", + "Hs (total) (m)": 1.5404, + "Tp (total) (s)": 11.7817 + }, + { + "Date+Time": "1987-08-27T00:00:00Z", + "Hs (total) (m)": 1.2803, + "Tp (total) (s)": 8.5002 + }, + { + "Date+Time": "1987-08-28T00:00:00Z", + "Hs (total) (m)": 1.0018, + "Tp (total) (s)": 8.1217 + }, + { + "Date+Time": "1987-08-29T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 7.6197 + }, + { + "Date+Time": "1987-08-30T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 8.2537 + }, + { + "Date+Time": "1987-08-31T00:00:00Z", + "Hs (total) (m)": 0.8644, + "Tp (total) (s)": 8.227 + }, + { + "Date+Time": "1987-09-01T00:00:00Z", + "Hs (total) (m)": 0.7103, + "Tp (total) (s)": 7.5747 + }, + { + "Date+Time": "1987-09-02T00:00:00Z", + "Hs (total) (m)": 0.7935, + "Tp (total) (s)": 10.371 + }, + { + "Date+Time": "1987-09-03T00:00:00Z", + "Hs (total) (m)": 2.5163, + "Tp (total) (s)": 8.7764 + }, + { + "Date+Time": "1987-09-04T00:00:00Z", + "Hs (total) (m)": 4.722, + "Tp (total) (s)": 14.1774 + }, + { + "Date+Time": "1987-09-05T00:00:00Z", + "Hs (total) (m)": 3.3158, + "Tp (total) (s)": 11.4002 + }, + { + "Date+Time": "1987-09-06T00:00:00Z", + "Hs (total) (m)": 2.591, + "Tp (total) (s)": 10.0391 + }, + { + "Date+Time": "1987-09-07T00:00:00Z", + "Hs (total) (m)": 1.9448, + "Tp (total) (s)": 9.7018 + }, + { + "Date+Time": "1987-09-08T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 9.0732 + }, + { + "Date+Time": "1987-09-09T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 8.3865 + }, + { + "Date+Time": "1987-09-10T00:00:00Z", + "Hs (total) (m)": 1.9356, + "Tp (total) (s)": 8.5498 + }, + { + "Date+Time": "1987-09-11T00:00:00Z", + "Hs (total) (m)": 2.1943, + "Tp (total) (s)": 10.4091 + }, + { + "Date+Time": "1987-09-12T00:00:00Z", + "Hs (total) (m)": 2.0768, + "Tp (total) (s)": 10.3351 + }, + { + "Date+Time": "1987-09-13T00:00:00Z", + "Hs (total) (m)": 2.7528, + "Tp (total) (s)": 10.1077 + }, + { + "Date+Time": "1987-09-14T00:00:00Z", + "Hs (total) (m)": 2.7444, + "Tp (total) (s)": 11.3842 + }, + { + "Date+Time": "1987-09-15T00:00:00Z", + "Hs (total) (m)": 2.3705, + "Tp (total) (s)": 9.6362 + }, + { + "Date+Time": "1987-09-16T00:00:00Z", + "Hs (total) (m)": 1.4206, + "Tp (total) (s)": 9.5439 + }, + { + "Date+Time": "1987-09-17T00:00:00Z", + "Hs (total) (m)": 1.4054, + "Tp (total) (s)": 9.1441 + }, + { + "Date+Time": "1987-09-18T00:00:00Z", + "Hs (total) (m)": 1.3825, + "Tp (total) (s)": 9.2792 + }, + { + "Date+Time": "1987-09-19T00:00:00Z", + "Hs (total) (m)": 1.1567, + "Tp (total) (s)": 9.4928 + }, + { + "Date+Time": "1987-09-20T00:00:00Z", + "Hs (total) (m)": 1.5137, + "Tp (total) (s)": 10.4701 + }, + { + "Date+Time": "1987-09-21T00:00:00Z", + "Hs (total) (m)": 2.1157, + "Tp (total) (s)": 7.7265 + }, + { + "Date+Time": "1987-09-22T00:00:00Z", + "Hs (total) (m)": 2.0089, + "Tp (total) (s)": 8.623 + }, + { + "Date+Time": "1987-09-23T00:00:00Z", + "Hs (total) (m)": 3.1098, + "Tp (total) (s)": 10.9928 + }, + { + "Date+Time": "1987-09-24T00:00:00Z", + "Hs (total) (m)": 2.237, + "Tp (total) (s)": 10.5663 + }, + { + "Date+Time": "1987-09-25T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 9.2524 + }, + { + "Date+Time": "1987-09-26T00:00:00Z", + "Hs (total) (m)": 0.998, + "Tp (total) (s)": 8.5795 + }, + { + "Date+Time": "1987-09-27T00:00:00Z", + "Hs (total) (m)": 0.7668, + "Tp (total) (s)": 8.3926 + }, + { + "Date+Time": "1987-09-28T00:00:00Z", + "Hs (total) (m)": 0.6729, + "Tp (total) (s)": 11.4917 + }, + { + "Date+Time": "1987-09-29T00:00:00Z", + "Hs (total) (m)": 1.355, + "Tp (total) (s)": 16.6501 + }, + { + "Date+Time": "1987-09-30T00:00:00Z", + "Hs (total) (m)": 2.3537, + "Tp (total) (s)": 13.9035 + }, + { + "Date+Time": "1987-10-01T00:00:00Z", + "Hs (total) (m)": 1.5946, + "Tp (total) (s)": 11.2209 + }, + { + "Date+Time": "1987-10-02T00:00:00Z", + "Hs (total) (m)": 1.719, + "Tp (total) (s)": 10.4076 + }, + { + "Date+Time": "1987-10-03T00:00:00Z", + "Hs (total) (m)": 0.9445, + "Tp (total) (s)": 10.2931 + }, + { + "Date+Time": "1987-10-04T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 10.1451 + }, + { + "Date+Time": "1987-10-05T00:00:00Z", + "Hs (total) (m)": 0.692, + "Tp (total) (s)": 13.4991 + }, + { + "Date+Time": "1987-10-06T00:00:00Z", + "Hs (total) (m)": 2.044, + "Tp (total) (s)": 13.1535 + }, + { + "Date+Time": "1987-10-07T00:00:00Z", + "Hs (total) (m)": 2.5735, + "Tp (total) (s)": 12.7689 + }, + { + "Date+Time": "1987-10-08T00:00:00Z", + "Hs (total) (m)": 2.6208, + "Tp (total) (s)": 10.4884 + }, + { + "Date+Time": "1987-10-09T00:00:00Z", + "Hs (total) (m)": 3.0747, + "Tp (total) (s)": 11.1621 + }, + { + "Date+Time": "1987-10-10T00:00:00Z", + "Hs (total) (m)": 1.9265, + "Tp (total) (s)": 11.2491 + }, + { + "Date+Time": "1987-10-11T00:00:00Z", + "Hs (total) (m)": 1.5511, + "Tp (total) (s)": 11.1698 + }, + { + "Date+Time": "1987-10-12T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 12.463 + }, + { + "Date+Time": "1987-10-13T00:00:00Z", + "Hs (total) (m)": 2.9771, + "Tp (total) (s)": 13.0268 + }, + { + "Date+Time": "1987-10-14T00:00:00Z", + "Hs (total) (m)": 3.6699, + "Tp (total) (s)": 11.6718 + }, + { + "Date+Time": "1987-10-15T00:00:00Z", + "Hs (total) (m)": 2.1432, + "Tp (total) (s)": 10.8531 + }, + { + "Date+Time": "1987-10-16T00:00:00Z", + "Hs (total) (m)": 1.529, + "Tp (total) (s)": 10.3175 + }, + { + "Date+Time": "1987-10-17T00:00:00Z", + "Hs (total) (m)": 2.0959, + "Tp (total) (s)": 11.7252 + }, + { + "Date+Time": "1987-10-18T00:00:00Z", + "Hs (total) (m)": 2.9267, + "Tp (total) (s)": 8.4811 + }, + { + "Date+Time": "1987-10-19T00:00:00Z", + "Hs (total) (m)": 2.0516, + "Tp (total) (s)": 9.5096 + }, + { + "Date+Time": "1987-10-20T00:00:00Z", + "Hs (total) (m)": 1.5465, + "Tp (total) (s)": 9.3654 + }, + { + "Date+Time": "1987-10-21T00:00:00Z", + "Hs (total) (m)": 1.1261, + "Tp (total) (s)": 9.0724 + }, + { + "Date+Time": "1987-10-22T00:00:00Z", + "Hs (total) (m)": 1.4107, + "Tp (total) (s)": 7.4656 + }, + { + "Date+Time": "1987-10-23T00:00:00Z", + "Hs (total) (m)": 1.0277, + "Tp (total) (s)": 8.4292 + }, + { + "Date+Time": "1987-10-24T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 9.315 + }, + { + "Date+Time": "1987-10-25T00:00:00Z", + "Hs (total) (m)": 2.3202, + "Tp (total) (s)": 7.6029 + }, + { + "Date+Time": "1987-10-26T00:00:00Z", + "Hs (total) (m)": 3.0053, + "Tp (total) (s)": 15.0861 + }, + { + "Date+Time": "1987-10-27T00:00:00Z", + "Hs (total) (m)": 2.1973, + "Tp (total) (s)": 14.9007 + }, + { + "Date+Time": "1987-10-28T00:00:00Z", + "Hs (total) (m)": 2.0302, + "Tp (total) (s)": 13.5701 + }, + { + "Date+Time": "1987-10-29T00:00:00Z", + "Hs (total) (m)": 2.7207, + "Tp (total) (s)": 12.3898 + }, + { + "Date+Time": "1987-10-30T00:00:00Z", + "Hs (total) (m)": 2.4529, + "Tp (total) (s)": 11.2865 + }, + { + "Date+Time": "1987-10-31T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 10.2145 + }, + { + "Date+Time": "1987-11-01T00:00:00Z", + "Hs (total) (m)": 0.8187, + "Tp (total) (s)": 8.9465 + }, + { + "Date+Time": "1987-11-02T00:00:00Z", + "Hs (total) (m)": 0.7004, + "Tp (total) (s)": 8.3682 + }, + { + "Date+Time": "1987-11-03T00:00:00Z", + "Hs (total) (m)": 0.9262, + "Tp (total) (s)": 11.8603 + }, + { + "Date+Time": "1987-11-04T00:00:00Z", + "Hs (total) (m)": 1.0956, + "Tp (total) (s)": 12.4783 + }, + { + "Date+Time": "1987-11-05T00:00:00Z", + "Hs (total) (m)": 1.3413, + "Tp (total) (s)": 11.3422 + }, + { + "Date+Time": "1987-11-06T00:00:00Z", + "Hs (total) (m)": 1.2726, + "Tp (total) (s)": 10.6586 + }, + { + "Date+Time": "1987-11-07T00:00:00Z", + "Hs (total) (m)": 1.0231, + "Tp (total) (s)": 12.2791 + }, + { + "Date+Time": "1987-11-08T00:00:00Z", + "Hs (total) (m)": 1.1254, + "Tp (total) (s)": 10.3679 + }, + { + "Date+Time": "1987-11-09T00:00:00Z", + "Hs (total) (m)": 1.7159, + "Tp (total) (s)": 9.4752 + }, + { + "Date+Time": "1987-11-10T00:00:00Z", + "Hs (total) (m)": 1.9852, + "Tp (total) (s)": 9.341 + }, + { + "Date+Time": "1987-11-11T00:00:00Z", + "Hs (total) (m)": 3.0885, + "Tp (total) (s)": 11.5284 + }, + { + "Date+Time": "1987-11-12T00:00:00Z", + "Hs (total) (m)": 4.416, + "Tp (total) (s)": 12.1372 + }, + { + "Date+Time": "1987-11-13T00:00:00Z", + "Hs (total) (m)": 4.0117, + "Tp (total) (s)": 12.5042 + }, + { + "Date+Time": "1987-11-14T00:00:00Z", + "Hs (total) (m)": 2.6795, + "Tp (total) (s)": 12.4546 + }, + { + "Date+Time": "1987-11-15T00:00:00Z", + "Hs (total) (m)": 2.9107, + "Tp (total) (s)": 11.5261 + }, + { + "Date+Time": "1987-11-16T00:00:00Z", + "Hs (total) (m)": 2.8932, + "Tp (total) (s)": 10.1108 + }, + { + "Date+Time": "1987-11-17T00:00:00Z", + "Hs (total) (m)": 3.7004, + "Tp (total) (s)": 13.4266 + }, + { + "Date+Time": "1987-11-18T00:00:00Z", + "Hs (total) (m)": 2.9466, + "Tp (total) (s)": 11.787 + }, + { + "Date+Time": "1987-11-19T00:00:00Z", + "Hs (total) (m)": 2.5475, + "Tp (total) (s)": 11.2224 + }, + { + "Date+Time": "1987-11-20T00:00:00Z", + "Hs (total) (m)": 2.7909, + "Tp (total) (s)": 12.4523 + }, + { + "Date+Time": "1987-11-21T00:00:00Z", + "Hs (total) (m)": 1.8143, + "Tp (total) (s)": 11.4406 + }, + { + "Date+Time": "1987-11-22T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 9.9055 + }, + { + "Date+Time": "1987-11-23T00:00:00Z", + "Hs (total) (m)": 1.9341, + "Tp (total) (s)": 9.859 + }, + { + "Date+Time": "1987-11-24T00:00:00Z", + "Hs (total) (m)": 1.8181, + "Tp (total) (s)": 11.7641 + }, + { + "Date+Time": "1987-11-25T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 11.1026 + }, + { + "Date+Time": "1987-11-26T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 10.0795 + }, + { + "Date+Time": "1987-11-27T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 13.01 + }, + { + "Date+Time": "1987-11-28T00:00:00Z", + "Hs (total) (m)": 1.1834, + "Tp (total) (s)": 11.774 + }, + { + "Date+Time": "1987-11-29T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 9.1647 + }, + { + "Date+Time": "1987-11-30T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 10.6227 + }, + { + "Date+Time": "1987-12-01T00:00:00Z", + "Hs (total) (m)": 1.0979, + "Tp (total) (s)": 10.7311 + }, + { + "Date+Time": "1987-12-02T00:00:00Z", + "Hs (total) (m)": 1.5015, + "Tp (total) (s)": 13.9859 + }, + { + "Date+Time": "1987-12-03T00:00:00Z", + "Hs (total) (m)": 0.9178, + "Tp (total) (s)": 13.1642 + }, + { + "Date+Time": "1987-12-04T00:00:00Z", + "Hs (total) (m)": 0.6241, + "Tp (total) (s)": 2.9412 + }, + { + "Date+Time": "1987-12-05T00:00:00Z", + "Hs (total) (m)": 0.6943, + "Tp (total) (s)": 2.9565 + }, + { + "Date+Time": "1987-12-06T00:00:00Z", + "Hs (total) (m)": 0.8003, + "Tp (total) (s)": 3.2197 + }, + { + "Date+Time": "1987-12-07T00:00:00Z", + "Hs (total) (m)": 0.5654, + "Tp (total) (s)": 2.8184 + }, + { + "Date+Time": "1987-12-08T00:00:00Z", + "Hs (total) (m)": 1.3443, + "Tp (total) (s)": 11.8305 + }, + { + "Date+Time": "1987-12-09T00:00:00Z", + "Hs (total) (m)": 1.4374, + "Tp (total) (s)": 11.1446 + }, + { + "Date+Time": "1987-12-10T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 12.6324 + }, + { + "Date+Time": "1987-12-11T00:00:00Z", + "Hs (total) (m)": 0.9079, + "Tp (total) (s)": 12.6995 + }, + { + "Date+Time": "1987-12-12T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 5.8931 + }, + { + "Date+Time": "1987-12-13T00:00:00Z", + "Hs (total) (m)": 1.4618, + "Tp (total) (s)": 10.4717 + }, + { + "Date+Time": "1987-12-14T00:00:00Z", + "Hs (total) (m)": 1.1521, + "Tp (total) (s)": 5.752 + }, + { + "Date+Time": "1987-12-15T00:00:00Z", + "Hs (total) (m)": 1.1727, + "Tp (total) (s)": 5.0562 + }, + { + "Date+Time": "1987-12-16T00:00:00Z", + "Hs (total) (m)": 1.2284, + "Tp (total) (s)": 8.9595 + }, + { + "Date+Time": "1987-12-17T00:00:00Z", + "Hs (total) (m)": 2.926, + "Tp (total) (s)": 13.8241 + }, + { + "Date+Time": "1987-12-18T00:00:00Z", + "Hs (total) (m)": 2.5552, + "Tp (total) (s)": 12.9902 + }, + { + "Date+Time": "1987-12-19T00:00:00Z", + "Hs (total) (m)": 2.266, + "Tp (total) (s)": 11.4292 + }, + { + "Date+Time": "1987-12-20T00:00:00Z", + "Hs (total) (m)": 3.1579, + "Tp (total) (s)": 11.388 + }, + { + "Date+Time": "1987-12-21T00:00:00Z", + "Hs (total) (m)": 2.9916, + "Tp (total) (s)": 12.7461 + }, + { + "Date+Time": "1987-12-22T00:00:00Z", + "Hs (total) (m)": 2.6261, + "Tp (total) (s)": 12.3913 + }, + { + "Date+Time": "1987-12-23T00:00:00Z", + "Hs (total) (m)": 2.588, + "Tp (total) (s)": 10.5617 + }, + { + "Date+Time": "1987-12-24T00:00:00Z", + "Hs (total) (m)": 3.0946, + "Tp (total) (s)": 14.3025 + }, + { + "Date+Time": "1987-12-25T00:00:00Z", + "Hs (total) (m)": 3.0015, + "Tp (total) (s)": 11.6932 + }, + { + "Date+Time": "1987-12-26T00:00:00Z", + "Hs (total) (m)": 3.1922, + "Tp (total) (s)": 9.9261 + }, + { + "Date+Time": "1987-12-27T00:00:00Z", + "Hs (total) (m)": 3.943, + "Tp (total) (s)": 16.9362 + }, + { + "Date+Time": "1987-12-28T00:00:00Z", + "Hs (total) (m)": 3.7698, + "Tp (total) (s)": 15.0433 + }, + { + "Date+Time": "1987-12-29T00:00:00Z", + "Hs (total) (m)": 3.9972, + "Tp (total) (s)": 13.451 + }, + { + "Date+Time": "1987-12-30T00:00:00Z", + "Hs (total) (m)": 3.7332, + "Tp (total) (s)": 13.2328 + }, + { + "Date+Time": "1987-12-31T00:00:00Z", + "Hs (total) (m)": 3.2365, + "Tp (total) (s)": 13.0604 + }, + { + "Date+Time": "1988-01-01T00:00:00Z", + "Hs (total) (m)": 3.7446, + "Tp (total) (s)": 12.8178 + }, + { + "Date+Time": "1988-01-02T00:00:00Z", + "Hs (total) (m)": 3.7667, + "Tp (total) (s)": 11.1431 + }, + { + "Date+Time": "1988-01-03T00:00:00Z", + "Hs (total) (m)": 5.8921, + "Tp (total) (s)": 14.1077 + }, + { + "Date+Time": "1988-01-04T00:00:00Z", + "Hs (total) (m)": 3.0145, + "Tp (total) (s)": 13.1672 + }, + { + "Date+Time": "1988-01-05T00:00:00Z", + "Hs (total) (m)": 4.107, + "Tp (total) (s)": 15.3203 + }, + { + "Date+Time": "1988-01-06T00:00:00Z", + "Hs (total) (m)": 2.076, + "Tp (total) (s)": 13.6753 + }, + { + "Date+Time": "1988-01-07T00:00:00Z", + "Hs (total) (m)": 1.6923, + "Tp (total) (s)": 11.7969 + }, + { + "Date+Time": "1988-01-08T00:00:00Z", + "Hs (total) (m)": 2.1058, + "Tp (total) (s)": 8.4933 + }, + { + "Date+Time": "1988-01-09T00:00:00Z", + "Hs (total) (m)": 4.1292, + "Tp (total) (s)": 12.8285 + }, + { + "Date+Time": "1988-01-10T00:00:00Z", + "Hs (total) (m)": 4.5862, + "Tp (total) (s)": 12.7171 + }, + { + "Date+Time": "1988-01-11T00:00:00Z", + "Hs (total) (m)": 3.7042, + "Tp (total) (s)": 13.4205 + }, + { + "Date+Time": "1988-01-12T00:00:00Z", + "Hs (total) (m)": 4.3603, + "Tp (total) (s)": 11.8297 + }, + { + "Date+Time": "1988-01-13T00:00:00Z", + "Hs (total) (m)": 3.8186, + "Tp (total) (s)": 13.4419 + }, + { + "Date+Time": "1988-01-14T00:00:00Z", + "Hs (total) (m)": 4.5763, + "Tp (total) (s)": 15.1242 + }, + { + "Date+Time": "1988-01-15T00:00:00Z", + "Hs (total) (m)": 2.6078, + "Tp (total) (s)": 13.0039 + }, + { + "Date+Time": "1988-01-16T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 11.6062 + }, + { + "Date+Time": "1988-01-17T00:00:00Z", + "Hs (total) (m)": 1.9005, + "Tp (total) (s)": 14.1476 + }, + { + "Date+Time": "1988-01-18T00:00:00Z", + "Hs (total) (m)": 2.5903, + "Tp (total) (s)": 15.1509 + }, + { + "Date+Time": "1988-01-19T00:00:00Z", + "Hs (total) (m)": 2.9038, + "Tp (total) (s)": 13.8981 + }, + { + "Date+Time": "1988-01-20T00:00:00Z", + "Hs (total) (m)": 2.4712, + "Tp (total) (s)": 10.3069 + }, + { + "Date+Time": "1988-01-21T00:00:00Z", + "Hs (total) (m)": 3.3914, + "Tp (total) (s)": 13.8409 + }, + { + "Date+Time": "1988-01-22T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 13.7158 + }, + { + "Date+Time": "1988-01-23T00:00:00Z", + "Hs (total) (m)": 2.1439, + "Tp (total) (s)": 12.3424 + }, + { + "Date+Time": "1988-01-24T00:00:00Z", + "Hs (total) (m)": 2.8718, + "Tp (total) (s)": 11.0935 + }, + { + "Date+Time": "1988-01-25T00:00:00Z", + "Hs (total) (m)": 3.4448, + "Tp (total) (s)": 14.1774 + }, + { + "Date+Time": "1988-01-26T00:00:00Z", + "Hs (total) (m)": 2.6605, + "Tp (total) (s)": 13.8188 + }, + { + "Date+Time": "1988-01-27T00:00:00Z", + "Hs (total) (m)": 1.3718, + "Tp (total) (s)": 11.4063 + }, + { + "Date+Time": "1988-01-28T00:00:00Z", + "Hs (total) (m)": 0.8927, + "Tp (total) (s)": 3.0747 + }, + { + "Date+Time": "1988-01-29T00:00:00Z", + "Hs (total) (m)": 1.7174, + "Tp (total) (s)": 8.8565 + }, + { + "Date+Time": "1988-01-30T00:00:00Z", + "Hs (total) (m)": 4.8845, + "Tp (total) (s)": 15.7949 + }, + { + "Date+Time": "1988-01-31T00:00:00Z", + "Hs (total) (m)": 4.4519, + "Tp (total) (s)": 14.687 + }, + { + "Date+Time": "1988-02-01T00:00:00Z", + "Hs (total) (m)": 5.4995, + "Tp (total) (s)": 11.3129 + }, + { + "Date+Time": "1988-02-02T00:00:00Z", + "Hs (total) (m)": 4.4221, + "Tp (total) (s)": 13.5495 + }, + { + "Date+Time": "1988-02-03T00:00:00Z", + "Hs (total) (m)": 4.1803, + "Tp (total) (s)": 13.1413 + }, + { + "Date+Time": "1988-02-04T00:00:00Z", + "Hs (total) (m)": 2.1813, + "Tp (total) (s)": 11.9739 + }, + { + "Date+Time": "1988-02-05T00:00:00Z", + "Hs (total) (m)": 2.0508, + "Tp (total) (s)": 11.4544 + }, + { + "Date+Time": "1988-02-06T00:00:00Z", + "Hs (total) (m)": 2.7909, + "Tp (total) (s)": 14.7221 + }, + { + "Date+Time": "1988-02-07T00:00:00Z", + "Hs (total) (m)": 2.4438, + "Tp (total) (s)": 14.7374 + }, + { + "Date+Time": "1988-02-08T00:00:00Z", + "Hs (total) (m)": 4.1421, + "Tp (total) (s)": 11.8023 + }, + { + "Date+Time": "1988-02-09T00:00:00Z", + "Hs (total) (m)": 5.1548, + "Tp (total) (s)": 13.8219 + }, + { + "Date+Time": "1988-02-10T00:00:00Z", + "Hs (total) (m)": 6.7332, + "Tp (total) (s)": 16.0211 + }, + { + "Date+Time": "1988-02-11T00:00:00Z", + "Hs (total) (m)": 4.4046, + "Tp (total) (s)": 14.1156 + }, + { + "Date+Time": "1988-02-12T00:00:00Z", + "Hs (total) (m)": 2.7871, + "Tp (total) (s)": 12.7941 + }, + { + "Date+Time": "1988-02-13T00:00:00Z", + "Hs (total) (m)": 3.2746, + "Tp (total) (s)": 10.5899 + }, + { + "Date+Time": "1988-02-14T00:00:00Z", + "Hs (total) (m)": 2.6002, + "Tp (total) (s)": 10.5228 + }, + { + "Date+Time": "1988-02-15T00:00:00Z", + "Hs (total) (m)": 2.0684, + "Tp (total) (s)": 10.2336 + }, + { + "Date+Time": "1988-02-16T00:00:00Z", + "Hs (total) (m)": 1.8838, + "Tp (total) (s)": 12.4355 + }, + { + "Date+Time": "1988-02-17T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 10.58 + }, + { + "Date+Time": "1988-02-18T00:00:00Z", + "Hs (total) (m)": 1.8349, + "Tp (total) (s)": 12.6812 + }, + { + "Date+Time": "1988-02-19T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 11.71 + }, + { + "Date+Time": "1988-02-20T00:00:00Z", + "Hs (total) (m)": 1.1856, + "Tp (total) (s)": 11.2751 + }, + { + "Date+Time": "1988-02-21T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 13.9332 + }, + { + "Date+Time": "1988-02-22T00:00:00Z", + "Hs (total) (m)": 1.4664, + "Tp (total) (s)": 12.2318 + }, + { + "Date+Time": "1988-02-23T00:00:00Z", + "Hs (total) (m)": 1.0132, + "Tp (total) (s)": 10.876 + }, + { + "Date+Time": "1988-02-24T00:00:00Z", + "Hs (total) (m)": 0.7218, + "Tp (total) (s)": 10.1131 + }, + { + "Date+Time": "1988-02-25T00:00:00Z", + "Hs (total) (m)": 0.7309, + "Tp (total) (s)": 12.8689 + }, + { + "Date+Time": "1988-02-26T00:00:00Z", + "Hs (total) (m)": 1.2146, + "Tp (total) (s)": 12.4371 + }, + { + "Date+Time": "1988-02-27T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 11.4345 + }, + { + "Date+Time": "1988-02-28T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 10.0894 + }, + { + "Date+Time": "1988-02-29T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 9.3852 + }, + { + "Date+Time": "1988-03-01T00:00:00Z", + "Hs (total) (m)": 1.5458, + "Tp (total) (s)": 10.1634 + }, + { + "Date+Time": "1988-03-02T00:00:00Z", + "Hs (total) (m)": 1.0063, + "Tp (total) (s)": 9.6133 + }, + { + "Date+Time": "1988-03-03T00:00:00Z", + "Hs (total) (m)": 1.4885, + "Tp (total) (s)": 7.5579 + }, + { + "Date+Time": "1988-03-04T00:00:00Z", + "Hs (total) (m)": 1.3016, + "Tp (total) (s)": 10.4488 + }, + { + "Date+Time": "1988-03-05T00:00:00Z", + "Hs (total) (m)": 1.1811, + "Tp (total) (s)": 8.3079 + }, + { + "Date+Time": "1988-03-06T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 7.49 + }, + { + "Date+Time": "1988-03-07T00:00:00Z", + "Hs (total) (m)": 1.8204, + "Tp (total) (s)": 10.3496 + }, + { + "Date+Time": "1988-03-08T00:00:00Z", + "Hs (total) (m)": 1.4664, + "Tp (total) (s)": 11.3636 + }, + { + "Date+Time": "1988-03-09T00:00:00Z", + "Hs (total) (m)": 1.9982, + "Tp (total) (s)": 12.9482 + }, + { + "Date+Time": "1988-03-10T00:00:00Z", + "Hs (total) (m)": 1.7212, + "Tp (total) (s)": 12.4714 + }, + { + "Date+Time": "1988-03-11T00:00:00Z", + "Hs (total) (m)": 1.5999, + "Tp (total) (s)": 11.858 + }, + { + "Date+Time": "1988-03-12T00:00:00Z", + "Hs (total) (m)": 1.6205, + "Tp (total) (s)": 10.0703 + }, + { + "Date+Time": "1988-03-13T00:00:00Z", + "Hs (total) (m)": 1.5343, + "Tp (total) (s)": 13.686 + }, + { + "Date+Time": "1988-03-14T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 11.5963 + }, + { + "Date+Time": "1988-03-15T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 8.4948 + }, + { + "Date+Time": "1988-03-16T00:00:00Z", + "Hs (total) (m)": 4.3001, + "Tp (total) (s)": 13.1512 + }, + { + "Date+Time": "1988-03-17T00:00:00Z", + "Hs (total) (m)": 2.3743, + "Tp (total) (s)": 12.936 + }, + { + "Date+Time": "1988-03-18T00:00:00Z", + "Hs (total) (m)": 2.0936, + "Tp (total) (s)": 10.609 + }, + { + "Date+Time": "1988-03-19T00:00:00Z", + "Hs (total) (m)": 3.0183, + "Tp (total) (s)": 11.2201 + }, + { + "Date+Time": "1988-03-20T00:00:00Z", + "Hs (total) (m)": 2.472, + "Tp (total) (s)": 12.3417 + }, + { + "Date+Time": "1988-03-21T00:00:00Z", + "Hs (total) (m)": 2.0882, + "Tp (total) (s)": 12.418 + }, + { + "Date+Time": "1988-03-22T00:00:00Z", + "Hs (total) (m)": 2.443, + "Tp (total) (s)": 12.5813 + }, + { + "Date+Time": "1988-03-23T00:00:00Z", + "Hs (total) (m)": 2.9778, + "Tp (total) (s)": 11.0187 + }, + { + "Date+Time": "1988-03-24T00:00:00Z", + "Hs (total) (m)": 4.3451, + "Tp (total) (s)": 14.5955 + }, + { + "Date+Time": "1988-03-25T00:00:00Z", + "Hs (total) (m)": 3.5867, + "Tp (total) (s)": 13.7051 + }, + { + "Date+Time": "1988-03-26T00:00:00Z", + "Hs (total) (m)": 3.9193, + "Tp (total) (s)": 12.4439 + }, + { + "Date+Time": "1988-03-27T00:00:00Z", + "Hs (total) (m)": 2.691, + "Tp (total) (s)": 10.4518 + }, + { + "Date+Time": "1988-03-28T00:00:00Z", + "Hs (total) (m)": 2.6109, + "Tp (total) (s)": 8.5002 + }, + { + "Date+Time": "1988-03-29T00:00:00Z", + "Hs (total) (m)": 2.1737, + "Tp (total) (s)": 9.6759 + }, + { + "Date+Time": "1988-03-30T00:00:00Z", + "Hs (total) (m)": 2.2927, + "Tp (total) (s)": 11.4322 + }, + { + "Date+Time": "1988-03-31T00:00:00Z", + "Hs (total) (m)": 1.854, + "Tp (total) (s)": 9.9696 + }, + { + "Date+Time": "1988-04-01T00:00:00Z", + "Hs (total) (m)": 1.8426, + "Tp (total) (s)": 8.5009 + }, + { + "Date+Time": "1988-04-02T00:00:00Z", + "Hs (total) (m)": 1.4374, + "Tp (total) (s)": 9.2082 + }, + { + "Date+Time": "1988-04-03T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 10.2062 + }, + { + "Date+Time": "1988-04-04T00:00:00Z", + "Hs (total) (m)": 0.6294, + "Tp (total) (s)": 9.2051 + }, + { + "Date+Time": "1988-04-05T00:00:00Z", + "Hs (total) (m)": 0.7164, + "Tp (total) (s)": 10.4656 + }, + { + "Date+Time": "1988-04-06T00:00:00Z", + "Hs (total) (m)": 0.959, + "Tp (total) (s)": 10.1238 + }, + { + "Date+Time": "1988-04-07T00:00:00Z", + "Hs (total) (m)": 0.8614, + "Tp (total) (s)": 10.2512 + }, + { + "Date+Time": "1988-04-08T00:00:00Z", + "Hs (total) (m)": 0.6363, + "Tp (total) (s)": 9.5714 + }, + { + "Date+Time": "1988-04-09T00:00:00Z", + "Hs (total) (m)": 0.5882, + "Tp (total) (s)": 9.3394 + }, + { + "Date+Time": "1988-04-10T00:00:00Z", + "Hs (total) (m)": 0.5066, + "Tp (total) (s)": 2.8375 + }, + { + "Date+Time": "1988-04-11T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 9.608 + }, + { + "Date+Time": "1988-04-12T00:00:00Z", + "Hs (total) (m)": 0.6706, + "Tp (total) (s)": 9.4073 + }, + { + "Date+Time": "1988-04-13T00:00:00Z", + "Hs (total) (m)": 0.5341, + "Tp (total) (s)": 8.9457 + }, + { + "Date+Time": "1988-04-14T00:00:00Z", + "Hs (total) (m)": 1.1757, + "Tp (total) (s)": 4.8608 + }, + { + "Date+Time": "1988-04-15T00:00:00Z", + "Hs (total) (m)": 1.3787, + "Tp (total) (s)": 10.4106 + }, + { + "Date+Time": "1988-04-16T00:00:00Z", + "Hs (total) (m)": 1.9837, + "Tp (total) (s)": 10.9691 + }, + { + "Date+Time": "1988-04-17T00:00:00Z", + "Hs (total) (m)": 1.3985, + "Tp (total) (s)": 11.0973 + }, + { + "Date+Time": "1988-04-18T00:00:00Z", + "Hs (total) (m)": 1.9143, + "Tp (total) (s)": 9.9765 + }, + { + "Date+Time": "1988-04-19T00:00:00Z", + "Hs (total) (m)": 1.8708, + "Tp (total) (s)": 10.9043 + }, + { + "Date+Time": "1988-04-20T00:00:00Z", + "Hs (total) (m)": 1.7151, + "Tp (total) (s)": 9.5309 + }, + { + "Date+Time": "1988-04-21T00:00:00Z", + "Hs (total) (m)": 1.8174, + "Tp (total) (s)": 10.2832 + }, + { + "Date+Time": "1988-04-22T00:00:00Z", + "Hs (total) (m)": 1.3932, + "Tp (total) (s)": 9.4569 + }, + { + "Date+Time": "1988-04-23T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 9.4722 + }, + { + "Date+Time": "1988-04-24T00:00:00Z", + "Hs (total) (m)": 1.1612, + "Tp (total) (s)": 8.6505 + }, + { + "Date+Time": "1988-04-25T00:00:00Z", + "Hs (total) (m)": 1.413, + "Tp (total) (s)": 10.303 + }, + { + "Date+Time": "1988-04-26T00:00:00Z", + "Hs (total) (m)": 1.1254, + "Tp (total) (s)": 12.1731 + }, + { + "Date+Time": "1988-04-27T00:00:00Z", + "Hs (total) (m)": 1.1734, + "Tp (total) (s)": 11.5581 + }, + { + "Date+Time": "1988-04-28T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 10.8356 + }, + { + "Date+Time": "1988-04-29T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 5.2873 + }, + { + "Date+Time": "1988-04-30T00:00:00Z", + "Hs (total) (m)": 1.5107, + "Tp (total) (s)": 11.2896 + }, + { + "Date+Time": "1988-05-01T00:00:00Z", + "Hs (total) (m)": 2.092, + "Tp (total) (s)": 11.6382 + }, + { + "Date+Time": "1988-05-02T00:00:00Z", + "Hs (total) (m)": 1.2749, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "1988-05-03T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 3.2914 + }, + { + "Date+Time": "1988-05-04T00:00:00Z", + "Hs (total) (m)": 0.7294, + "Tp (total) (s)": 9.3577 + }, + { + "Date+Time": "1988-05-05T00:00:00Z", + "Hs (total) (m)": 0.5928, + "Tp (total) (s)": 7.9455 + }, + { + "Date+Time": "1988-05-06T00:00:00Z", + "Hs (total) (m)": 1.2299, + "Tp (total) (s)": 9.8125 + }, + { + "Date+Time": "1988-05-07T00:00:00Z", + "Hs (total) (m)": 1.4985, + "Tp (total) (s)": 12.315 + }, + { + "Date+Time": "1988-05-08T00:00:00Z", + "Hs (total) (m)": 1.3596, + "Tp (total) (s)": 11.9884 + }, + { + "Date+Time": "1988-05-09T00:00:00Z", + "Hs (total) (m)": 1.5038, + "Tp (total) (s)": 11.6604 + }, + { + "Date+Time": "1988-05-10T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 11.3262 + }, + { + "Date+Time": "1988-05-11T00:00:00Z", + "Hs (total) (m)": 1.7113, + "Tp (total) (s)": 10.8379 + }, + { + "Date+Time": "1988-05-12T00:00:00Z", + "Hs (total) (m)": 1.2909, + "Tp (total) (s)": 10.5251 + }, + { + "Date+Time": "1988-05-13T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 10.6647 + }, + { + "Date+Time": "1988-05-14T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 7.7998 + }, + { + "Date+Time": "1988-05-15T00:00:00Z", + "Hs (total) (m)": 1.0178, + "Tp (total) (s)": 8.7008 + }, + { + "Date+Time": "1988-05-16T00:00:00Z", + "Hs (total) (m)": 0.7538, + "Tp (total) (s)": 7.7891 + }, + { + "Date+Time": "1988-05-17T00:00:00Z", + "Hs (total) (m)": 0.631, + "Tp (total) (s)": 7.0856 + }, + { + "Date+Time": "1988-05-18T00:00:00Z", + "Hs (total) (m)": 0.6355, + "Tp (total) (s)": 3.0038 + }, + { + "Date+Time": "1988-05-19T00:00:00Z", + "Hs (total) (m)": 0.7134, + "Tp (total) (s)": 3.0236 + }, + { + "Date+Time": "1988-05-20T00:00:00Z", + "Hs (total) (m)": 0.5539, + "Tp (total) (s)": 10.3229 + }, + { + "Date+Time": "1988-05-21T00:00:00Z", + "Hs (total) (m)": 0.3258, + "Tp (total) (s)": 9.563 + }, + { + "Date+Time": "1988-05-22T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 4.4092 + }, + { + "Date+Time": "1988-05-23T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 5.4483 + }, + { + "Date+Time": "1988-05-24T00:00:00Z", + "Hs (total) (m)": 1.7571, + "Tp (total) (s)": 8.9564 + }, + { + "Date+Time": "1988-05-25T00:00:00Z", + "Hs (total) (m)": 3.0236, + "Tp (total) (s)": 8.5757 + }, + { + "Date+Time": "1988-05-26T00:00:00Z", + "Hs (total) (m)": 1.8456, + "Tp (total) (s)": 10.6021 + }, + { + "Date+Time": "1988-05-27T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 9.566 + }, + { + "Date+Time": "1988-05-28T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 6.8293 + }, + { + "Date+Time": "1988-05-29T00:00:00Z", + "Hs (total) (m)": 1.4435, + "Tp (total) (s)": 10.5167 + }, + { + "Date+Time": "1988-05-30T00:00:00Z", + "Hs (total) (m)": 1.4946, + "Tp (total) (s)": 9.6767 + }, + { + "Date+Time": "1988-05-31T00:00:00Z", + "Hs (total) (m)": 1.8433, + "Tp (total) (s)": 8.7771 + }, + { + "Date+Time": "1988-06-01T00:00:00Z", + "Hs (total) (m)": 1.5374, + "Tp (total) (s)": 7.9455 + }, + { + "Date+Time": "1988-06-02T00:00:00Z", + "Hs (total) (m)": 1.751, + "Tp (total) (s)": 8.3712 + }, + { + "Date+Time": "1988-06-03T00:00:00Z", + "Hs (total) (m)": 2.1783, + "Tp (total) (s)": 9.3799 + }, + { + "Date+Time": "1988-06-04T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 9.3547 + }, + { + "Date+Time": "1988-06-05T00:00:00Z", + "Hs (total) (m)": 1.0353, + "Tp (total) (s)": 8.4193 + }, + { + "Date+Time": "1988-06-06T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 5.8367 + }, + { + "Date+Time": "1988-06-07T00:00:00Z", + "Hs (total) (m)": 1.1284, + "Tp (total) (s)": 9.3081 + }, + { + "Date+Time": "1988-06-08T00:00:00Z", + "Hs (total) (m)": 1.0887, + "Tp (total) (s)": 9.2013 + }, + { + "Date+Time": "1988-06-09T00:00:00Z", + "Hs (total) (m)": 0.792, + "Tp (total) (s)": 10.0856 + }, + { + "Date+Time": "1988-06-10T00:00:00Z", + "Hs (total) (m)": 0.6958, + "Tp (total) (s)": 3.0915 + }, + { + "Date+Time": "1988-06-11T00:00:00Z", + "Hs (total) (m)": 0.6027, + "Tp (total) (s)": 10.4678 + }, + { + "Date+Time": "1988-06-12T00:00:00Z", + "Hs (total) (m)": 0.7149, + "Tp (total) (s)": 10.4495 + }, + { + "Date+Time": "1988-06-13T00:00:00Z", + "Hs (total) (m)": 0.7332, + "Tp (total) (s)": 9.9086 + }, + { + "Date+Time": "1988-06-14T00:00:00Z", + "Hs (total) (m)": 0.6424, + "Tp (total) (s)": 9.3448 + }, + { + "Date+Time": "1988-06-15T00:00:00Z", + "Hs (total) (m)": 0.7424, + "Tp (total) (s)": 9.4287 + }, + { + "Date+Time": "1988-06-16T00:00:00Z", + "Hs (total) (m)": 0.7813, + "Tp (total) (s)": 8.7611 + }, + { + "Date+Time": "1988-06-17T00:00:00Z", + "Hs (total) (m)": 0.8889, + "Tp (total) (s)": 11.7 + }, + { + "Date+Time": "1988-06-18T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 10.7028 + }, + { + "Date+Time": "1988-06-19T00:00:00Z", + "Hs (total) (m)": 0.7744, + "Tp (total) (s)": 9.4913 + }, + { + "Date+Time": "1988-06-20T00:00:00Z", + "Hs (total) (m)": 1.014, + "Tp (total) (s)": 12.405 + }, + { + "Date+Time": "1988-06-21T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 11.4414 + }, + { + "Date+Time": "1988-06-22T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 11.2613 + }, + { + "Date+Time": "1988-06-23T00:00:00Z", + "Hs (total) (m)": 1.1017, + "Tp (total) (s)": 10.6014 + }, + { + "Date+Time": "1988-06-24T00:00:00Z", + "Hs (total) (m)": 1.0598, + "Tp (total) (s)": 10.886 + }, + { + "Date+Time": "1988-06-25T00:00:00Z", + "Hs (total) (m)": 0.9537, + "Tp (total) (s)": 9.8834 + }, + { + "Date+Time": "1988-06-26T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 10.9081 + }, + { + "Date+Time": "1988-06-27T00:00:00Z", + "Hs (total) (m)": 0.8461, + "Tp (total) (s)": 10.1276 + }, + { + "Date+Time": "1988-06-28T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 10.3999 + }, + { + "Date+Time": "1988-06-29T00:00:00Z", + "Hs (total) (m)": 0.8583, + "Tp (total) (s)": 9.5264 + }, + { + "Date+Time": "1988-06-30T00:00:00Z", + "Hs (total) (m)": 1.2604, + "Tp (total) (s)": 8.5856 + }, + { + "Date+Time": "1988-07-01T00:00:00Z", + "Hs (total) (m)": 1.5, + "Tp (total) (s)": 8.491 + }, + { + "Date+Time": "1988-07-02T00:00:00Z", + "Hs (total) (m)": 2.3606, + "Tp (total) (s)": 8.8244 + }, + { + "Date+Time": "1988-07-03T00:00:00Z", + "Hs (total) (m)": 1.838, + "Tp (total) (s)": 9.7736 + }, + { + "Date+Time": "1988-07-04T00:00:00Z", + "Hs (total) (m)": 1.0971, + "Tp (total) (s)": 9.447 + }, + { + "Date+Time": "1988-07-05T00:00:00Z", + "Hs (total) (m)": 0.8248, + "Tp (total) (s)": 9.9094 + }, + { + "Date+Time": "1988-07-06T00:00:00Z", + "Hs (total) (m)": 0.8194, + "Tp (total) (s)": 9.2853 + }, + { + "Date+Time": "1988-07-07T00:00:00Z", + "Hs (total) (m)": 0.9438, + "Tp (total) (s)": 8.4284 + }, + { + "Date+Time": "1988-07-08T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 6.1457 + }, + { + "Date+Time": "1988-07-09T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 5.99 + }, + { + "Date+Time": "1988-07-10T00:00:00Z", + "Hs (total) (m)": 1.1139, + "Tp (total) (s)": 5.7001 + }, + { + "Date+Time": "1988-07-11T00:00:00Z", + "Hs (total) (m)": 2.7657, + "Tp (total) (s)": 7.799 + }, + { + "Date+Time": "1988-07-12T00:00:00Z", + "Hs (total) (m)": 2.2645, + "Tp (total) (s)": 10.2557 + }, + { + "Date+Time": "1988-07-13T00:00:00Z", + "Hs (total) (m)": 1.7457, + "Tp (total) (s)": 7.7548 + }, + { + "Date+Time": "1988-07-14T00:00:00Z", + "Hs (total) (m)": 1.8418, + "Tp (total) (s)": 9.27 + }, + { + "Date+Time": "1988-07-15T00:00:00Z", + "Hs (total) (m)": 0.7736, + "Tp (total) (s)": 6.415 + }, + { + "Date+Time": "1988-07-16T00:00:00Z", + "Hs (total) (m)": 0.7927, + "Tp (total) (s)": 6.6149 + }, + { + "Date+Time": "1988-07-17T00:00:00Z", + "Hs (total) (m)": 1.175, + "Tp (total) (s)": 6.3501 + }, + { + "Date+Time": "1988-07-18T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 11.3887 + }, + { + "Date+Time": "1988-07-19T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 9.6202 + }, + { + "Date+Time": "1988-07-20T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 7.1093 + }, + { + "Date+Time": "1988-07-21T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 8.504 + }, + { + "Date+Time": "1988-07-22T00:00:00Z", + "Hs (total) (m)": 1.2055, + "Tp (total) (s)": 9.2051 + }, + { + "Date+Time": "1988-07-23T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 8.4803 + }, + { + "Date+Time": "1988-07-24T00:00:00Z", + "Hs (total) (m)": 2.0173, + "Tp (total) (s)": 9.5355 + }, + { + "Date+Time": "1988-07-25T00:00:00Z", + "Hs (total) (m)": 2.6536, + "Tp (total) (s)": 10.0475 + }, + { + "Date+Time": "1988-07-26T00:00:00Z", + "Hs (total) (m)": 4.7586, + "Tp (total) (s)": 11.0416 + }, + { + "Date+Time": "1988-07-27T00:00:00Z", + "Hs (total) (m)": 2.8947, + "Tp (total) (s)": 10.4167 + }, + { + "Date+Time": "1988-07-28T00:00:00Z", + "Hs (total) (m)": 1.7884, + "Tp (total) (s)": 9.0297 + }, + { + "Date+Time": "1988-07-29T00:00:00Z", + "Hs (total) (m)": 1.3825, + "Tp (total) (s)": 8.4468 + }, + { + "Date+Time": "1988-07-30T00:00:00Z", + "Hs (total) (m)": 1.8952, + "Tp (total) (s)": 8.3483 + }, + { + "Date+Time": "1988-07-31T00:00:00Z", + "Hs (total) (m)": 1.6366, + "Tp (total) (s)": 8.182 + }, + { + "Date+Time": "1988-08-01T00:00:00Z", + "Hs (total) (m)": 0.9743, + "Tp (total) (s)": 8.0027 + }, + { + "Date+Time": "1988-08-02T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 7.7425 + }, + { + "Date+Time": "1988-08-03T00:00:00Z", + "Hs (total) (m)": 0.7958, + "Tp (total) (s)": 7.5289 + }, + { + "Date+Time": "1988-08-04T00:00:00Z", + "Hs (total) (m)": 1.2307, + "Tp (total) (s)": 6.3959 + }, + { + "Date+Time": "1988-08-05T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 9.5035 + }, + { + "Date+Time": "1988-08-06T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 7.8372 + }, + { + "Date+Time": "1988-08-07T00:00:00Z", + "Hs (total) (m)": 1.8693, + "Tp (total) (s)": 7.9264 + }, + { + "Date+Time": "1988-08-08T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 10.3404 + }, + { + "Date+Time": "1988-08-09T00:00:00Z", + "Hs (total) (m)": 2.0684, + "Tp (total) (s)": 9.1731 + }, + { + "Date+Time": "1988-08-10T00:00:00Z", + "Hs (total) (m)": 2.0302, + "Tp (total) (s)": 9.5996 + }, + { + "Date+Time": "1988-08-11T00:00:00Z", + "Hs (total) (m)": 2.5391, + "Tp (total) (s)": 9.4378 + }, + { + "Date+Time": "1988-08-12T00:00:00Z", + "Hs (total) (m)": 2.0127, + "Tp (total) (s)": 8.8588 + }, + { + "Date+Time": "1988-08-13T00:00:00Z", + "Hs (total) (m)": 1.5038, + "Tp (total) (s)": 7.7013 + }, + { + "Date+Time": "1988-08-14T00:00:00Z", + "Hs (total) (m)": 1.4672, + "Tp (total) (s)": 7.6472 + }, + { + "Date+Time": "1988-08-15T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 8.3132 + }, + { + "Date+Time": "1988-08-16T00:00:00Z", + "Hs (total) (m)": 0.9529, + "Tp (total) (s)": 7.6044 + }, + { + "Date+Time": "1988-08-17T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 8.1393 + }, + { + "Date+Time": "1988-08-18T00:00:00Z", + "Hs (total) (m)": 1.8494, + "Tp (total) (s)": 8.3605 + }, + { + "Date+Time": "1988-08-19T00:00:00Z", + "Hs (total) (m)": 2.6643, + "Tp (total) (s)": 13.9653 + }, + { + "Date+Time": "1988-08-20T00:00:00Z", + "Hs (total) (m)": 2.5689, + "Tp (total) (s)": 12.0006 + }, + { + "Date+Time": "1988-08-21T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 10.1627 + }, + { + "Date+Time": "1988-08-22T00:00:00Z", + "Hs (total) (m)": 0.6607, + "Tp (total) (s)": 8.5765 + }, + { + "Date+Time": "1988-08-23T00:00:00Z", + "Hs (total) (m)": 1.1826, + "Tp (total) (s)": 7.7906 + }, + { + "Date+Time": "1988-08-24T00:00:00Z", + "Hs (total) (m)": 1.6228, + "Tp (total) (s)": 9.8521 + }, + { + "Date+Time": "1988-08-25T00:00:00Z", + "Hs (total) (m)": 2.4957, + "Tp (total) (s)": 9.2219 + }, + { + "Date+Time": "1988-08-26T00:00:00Z", + "Hs (total) (m)": 1.5244, + "Tp (total) (s)": 10.0192 + }, + { + "Date+Time": "1988-08-27T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 8.3598 + }, + { + "Date+Time": "1988-08-28T00:00:00Z", + "Hs (total) (m)": 2.4499, + "Tp (total) (s)": 9.2715 + }, + { + "Date+Time": "1988-08-29T00:00:00Z", + "Hs (total) (m)": 2.4758, + "Tp (total) (s)": 8.7748 + }, + { + "Date+Time": "1988-08-30T00:00:00Z", + "Hs (total) (m)": 2.5361, + "Tp (total) (s)": 11.1339 + }, + { + "Date+Time": "1988-08-31T00:00:00Z", + "Hs (total) (m)": 2.8794, + "Tp (total) (s)": 9.2395 + }, + { + "Date+Time": "1988-09-01T00:00:00Z", + "Hs (total) (m)": 1.545, + "Tp (total) (s)": 8.6093 + }, + { + "Date+Time": "1988-09-02T00:00:00Z", + "Hs (total) (m)": 2.4407, + "Tp (total) (s)": 8.8122 + }, + { + "Date+Time": "1988-09-03T00:00:00Z", + "Hs (total) (m)": 2.4934, + "Tp (total) (s)": 9.3127 + }, + { + "Date+Time": "1988-09-04T00:00:00Z", + "Hs (total) (m)": 2.5307, + "Tp (total) (s)": 9.4798 + }, + { + "Date+Time": "1988-09-05T00:00:00Z", + "Hs (total) (m)": 2.3843, + "Tp (total) (s)": 9.7644 + }, + { + "Date+Time": "1988-09-06T00:00:00Z", + "Hs (total) (m)": 1.8227, + "Tp (total) (s)": 8.4292 + }, + { + "Date+Time": "1988-09-07T00:00:00Z", + "Hs (total) (m)": 1.6755, + "Tp (total) (s)": 7.8021 + }, + { + "Date+Time": "1988-09-08T00:00:00Z", + "Hs (total) (m)": 1.9715, + "Tp (total) (s)": 10.2794 + }, + { + "Date+Time": "1988-09-09T00:00:00Z", + "Hs (total) (m)": 1.4168, + "Tp (total) (s)": 11.1652 + }, + { + "Date+Time": "1988-09-10T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 7.9691 + }, + { + "Date+Time": "1988-09-11T00:00:00Z", + "Hs (total) (m)": 1.3871, + "Tp (total) (s)": 8.0004 + }, + { + "Date+Time": "1988-09-12T00:00:00Z", + "Hs (total) (m)": 1.7403, + "Tp (total) (s)": 7.1062 + }, + { + "Date+Time": "1988-09-13T00:00:00Z", + "Hs (total) (m)": 1.5404, + "Tp (total) (s)": 8.1828 + }, + { + "Date+Time": "1988-09-14T00:00:00Z", + "Hs (total) (m)": 0.6973, + "Tp (total) (s)": 8.3857 + }, + { + "Date+Time": "1988-09-15T00:00:00Z", + "Hs (total) (m)": 0.5272, + "Tp (total) (s)": 8.1721 + }, + { + "Date+Time": "1988-09-16T00:00:00Z", + "Hs (total) (m)": 0.4494, + "Tp (total) (s)": 7.712 + }, + { + "Date+Time": "1988-09-17T00:00:00Z", + "Hs (total) (m)": 0.5478, + "Tp (total) (s)": 11.597 + }, + { + "Date+Time": "1988-09-18T00:00:00Z", + "Hs (total) (m)": 0.6127, + "Tp (total) (s)": 9.2364 + }, + { + "Date+Time": "1988-09-19T00:00:00Z", + "Hs (total) (m)": 0.7553, + "Tp (total) (s)": 8.5513 + }, + { + "Date+Time": "1988-09-20T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 10.3839 + }, + { + "Date+Time": "1988-09-21T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 12.5759 + }, + { + "Date+Time": "1988-09-22T00:00:00Z", + "Hs (total) (m)": 1.6121, + "Tp (total) (s)": 7.9356 + }, + { + "Date+Time": "1988-09-23T00:00:00Z", + "Hs (total) (m)": 2.5063, + "Tp (total) (s)": 10.1794 + }, + { + "Date+Time": "1988-09-24T00:00:00Z", + "Hs (total) (m)": 3.0213, + "Tp (total) (s)": 10.1901 + }, + { + "Date+Time": "1988-09-25T00:00:00Z", + "Hs (total) (m)": 2.0104, + "Tp (total) (s)": 9.8903 + }, + { + "Date+Time": "1988-09-26T00:00:00Z", + "Hs (total) (m)": 2.8703, + "Tp (total) (s)": 8.6169 + }, + { + "Date+Time": "1988-09-27T00:00:00Z", + "Hs (total) (m)": 1.9845, + "Tp (total) (s)": 9.4996 + }, + { + "Date+Time": "1988-09-28T00:00:00Z", + "Hs (total) (m)": 2.6101, + "Tp (total) (s)": 9.0365 + }, + { + "Date+Time": "1988-09-29T00:00:00Z", + "Hs (total) (m)": 2.4812, + "Tp (total) (s)": 10.8364 + }, + { + "Date+Time": "1988-09-30T00:00:00Z", + "Hs (total) (m)": 1.252, + "Tp (total) (s)": 10.4556 + }, + { + "Date+Time": "1988-10-01T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 10.2596 + }, + { + "Date+Time": "1988-10-02T00:00:00Z", + "Hs (total) (m)": 4.4206, + "Tp (total) (s)": 16.979 + }, + { + "Date+Time": "1988-10-03T00:00:00Z", + "Hs (total) (m)": 3.2434, + "Tp (total) (s)": 14.9579 + }, + { + "Date+Time": "1988-10-04T00:00:00Z", + "Hs (total) (m)": 1.8967, + "Tp (total) (s)": 12.1822 + }, + { + "Date+Time": "1988-10-05T00:00:00Z", + "Hs (total) (m)": 2.7673, + "Tp (total) (s)": 10.123 + }, + { + "Date+Time": "1988-10-06T00:00:00Z", + "Hs (total) (m)": 2.2309, + "Tp (total) (s)": 10.6143 + }, + { + "Date+Time": "1988-10-07T00:00:00Z", + "Hs (total) (m)": 4.8929, + "Tp (total) (s)": 13.4674 + }, + { + "Date+Time": "1988-10-08T00:00:00Z", + "Hs (total) (m)": 3.1953, + "Tp (total) (s)": 12.4912 + }, + { + "Date+Time": "1988-10-09T00:00:00Z", + "Hs (total) (m)": 3.4288, + "Tp (total) (s)": 9.8354 + }, + { + "Date+Time": "1988-10-10T00:00:00Z", + "Hs (total) (m)": 1.6327, + "Tp (total) (s)": 9.7758 + }, + { + "Date+Time": "1988-10-11T00:00:00Z", + "Hs (total) (m)": 1.7396, + "Tp (total) (s)": 10.6807 + }, + { + "Date+Time": "1988-10-12T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 5.2293 + }, + { + "Date+Time": "1988-10-13T00:00:00Z", + "Hs (total) (m)": 0.8919, + "Tp (total) (s)": 10.1985 + }, + { + "Date+Time": "1988-10-14T00:00:00Z", + "Hs (total) (m)": 0.7462, + "Tp (total) (s)": 9.3669 + }, + { + "Date+Time": "1988-10-15T00:00:00Z", + "Hs (total) (m)": 1.0117, + "Tp (total) (s)": 11.2491 + }, + { + "Date+Time": "1988-10-16T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 10.2283 + }, + { + "Date+Time": "1988-10-17T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 11.3735 + }, + { + "Date+Time": "1988-10-18T00:00:00Z", + "Hs (total) (m)": 1.4626, + "Tp (total) (s)": 12.6797 + }, + { + "Date+Time": "1988-10-19T00:00:00Z", + "Hs (total) (m)": 1.6533, + "Tp (total) (s)": 12.1357 + }, + { + "Date+Time": "1988-10-20T00:00:00Z", + "Hs (total) (m)": 1.9921, + "Tp (total) (s)": 11.3544 + }, + { + "Date+Time": "1988-10-21T00:00:00Z", + "Hs (total) (m)": 2.1401, + "Tp (total) (s)": 11.4444 + }, + { + "Date+Time": "1988-10-22T00:00:00Z", + "Hs (total) (m)": 2.4102, + "Tp (total) (s)": 11.2148 + }, + { + "Date+Time": "1988-10-23T00:00:00Z", + "Hs (total) (m)": 1.7518, + "Tp (total) (s)": 10.9851 + }, + { + "Date+Time": "1988-10-24T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 10.226 + }, + { + "Date+Time": "1988-10-25T00:00:00Z", + "Hs (total) (m)": 1.7251, + "Tp (total) (s)": 9.698 + }, + { + "Date+Time": "1988-10-26T00:00:00Z", + "Hs (total) (m)": 1.7052, + "Tp (total) (s)": 8.7428 + }, + { + "Date+Time": "1988-10-27T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 7.1802 + }, + { + "Date+Time": "1988-10-28T00:00:00Z", + "Hs (total) (m)": 1.5534, + "Tp (total) (s)": 13.892 + }, + { + "Date+Time": "1988-10-29T00:00:00Z", + "Hs (total) (m)": 0.7523, + "Tp (total) (s)": 11.9686 + }, + { + "Date+Time": "1988-10-30T00:00:00Z", + "Hs (total) (m)": 0.5768, + "Tp (total) (s)": 2.9519 + }, + { + "Date+Time": "1988-10-31T00:00:00Z", + "Hs (total) (m)": 0.5959, + "Tp (total) (s)": 3.2029 + }, + { + "Date+Time": "1988-11-01T00:00:00Z", + "Hs (total) (m)": 0.5478, + "Tp (total) (s)": 4.0895 + }, + { + "Date+Time": "1988-11-02T00:00:00Z", + "Hs (total) (m)": 0.5501, + "Tp (total) (s)": 8.6665 + }, + { + "Date+Time": "1988-11-03T00:00:00Z", + "Hs (total) (m)": 0.7744, + "Tp (total) (s)": 9.5721 + }, + { + "Date+Time": "1988-11-04T00:00:00Z", + "Hs (total) (m)": 1.0025, + "Tp (total) (s)": 4.2871 + }, + { + "Date+Time": "1988-11-05T00:00:00Z", + "Hs (total) (m)": 1.561, + "Tp (total) (s)": 12.6118 + }, + { + "Date+Time": "1988-11-06T00:00:00Z", + "Hs (total) (m)": 1.117, + "Tp (total) (s)": 11.6611 + }, + { + "Date+Time": "1988-11-07T00:00:00Z", + "Hs (total) (m)": 0.782, + "Tp (total) (s)": 9.7003 + }, + { + "Date+Time": "1988-11-08T00:00:00Z", + "Hs (total) (m)": 1.2429, + "Tp (total) (s)": 11.5909 + }, + { + "Date+Time": "1988-11-09T00:00:00Z", + "Hs (total) (m)": 1.9318, + "Tp (total) (s)": 11.0858 + }, + { + "Date+Time": "1988-11-10T00:00:00Z", + "Hs (total) (m)": 2.1897, + "Tp (total) (s)": 11.6764 + }, + { + "Date+Time": "1988-11-11T00:00:00Z", + "Hs (total) (m)": 3.3807, + "Tp (total) (s)": 10.3061 + }, + { + "Date+Time": "1988-11-12T00:00:00Z", + "Hs (total) (m)": 3.2685, + "Tp (total) (s)": 14.5047 + }, + { + "Date+Time": "1988-11-13T00:00:00Z", + "Hs (total) (m)": 2.1966, + "Tp (total) (s)": 13.8691 + }, + { + "Date+Time": "1988-11-14T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 11.0569 + }, + { + "Date+Time": "1988-11-15T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 10.1306 + }, + { + "Date+Time": "1988-11-16T00:00:00Z", + "Hs (total) (m)": 1.3283, + "Tp (total) (s)": 11.6054 + }, + { + "Date+Time": "1988-11-17T00:00:00Z", + "Hs (total) (m)": 1.5229, + "Tp (total) (s)": 11.3468 + }, + { + "Date+Time": "1988-11-18T00:00:00Z", + "Hs (total) (m)": 2.8214, + "Tp (total) (s)": 10.6578 + }, + { + "Date+Time": "1988-11-19T00:00:00Z", + "Hs (total) (m)": 0.7782, + "Tp (total) (s)": 9.5988 + }, + { + "Date+Time": "1988-11-20T00:00:00Z", + "Hs (total) (m)": 1.31, + "Tp (total) (s)": 10.4038 + }, + { + "Date+Time": "1988-11-21T00:00:00Z", + "Hs (total) (m)": 0.6485, + "Tp (total) (s)": 9.8331 + }, + { + "Date+Time": "1988-11-22T00:00:00Z", + "Hs (total) (m)": 0.4433, + "Tp (total) (s)": 10.1108 + }, + { + "Date+Time": "1988-11-23T00:00:00Z", + "Hs (total) (m)": 0.5547, + "Tp (total) (s)": 9.6789 + }, + { + "Date+Time": "1988-11-24T00:00:00Z", + "Hs (total) (m)": 0.66, + "Tp (total) (s)": 11.2735 + }, + { + "Date+Time": "1988-11-25T00:00:00Z", + "Hs (total) (m)": 0.9293, + "Tp (total) (s)": 11.642 + }, + { + "Date+Time": "1988-11-26T00:00:00Z", + "Hs (total) (m)": 1.4573, + "Tp (total) (s)": 17.3482 + }, + { + "Date+Time": "1988-11-27T00:00:00Z", + "Hs (total) (m)": 1.7747, + "Tp (total) (s)": 15.2585 + }, + { + "Date+Time": "1988-11-28T00:00:00Z", + "Hs (total) (m)": 2.2637, + "Tp (total) (s)": 14.0202 + }, + { + "Date+Time": "1988-11-29T00:00:00Z", + "Hs (total) (m)": 2.5925, + "Tp (total) (s)": 15.1914 + }, + { + "Date+Time": "1988-11-30T00:00:00Z", + "Hs (total) (m)": 2.2652, + "Tp (total) (s)": 13.4793 + }, + { + "Date+Time": "1988-12-01T00:00:00Z", + "Hs (total) (m)": 2.6872, + "Tp (total) (s)": 12.6148 + }, + { + "Date+Time": "1988-12-02T00:00:00Z", + "Hs (total) (m)": 2.1134, + "Tp (total) (s)": 12.1525 + }, + { + "Date+Time": "1988-12-03T00:00:00Z", + "Hs (total) (m)": 1.9158, + "Tp (total) (s)": 12.9803 + }, + { + "Date+Time": "1988-12-04T00:00:00Z", + "Hs (total) (m)": 5.3453, + "Tp (total) (s)": 12.5755 + }, + { + "Date+Time": "1988-12-05T00:00:00Z", + "Hs (total) (m)": 3.1014, + "Tp (total) (s)": 12.698 + }, + { + "Date+Time": "1988-12-06T00:00:00Z", + "Hs (total) (m)": 2.7795, + "Tp (total) (s)": 11.6283 + }, + { + "Date+Time": "1988-12-07T00:00:00Z", + "Hs (total) (m)": 1.4962, + "Tp (total) (s)": 10.2763 + }, + { + "Date+Time": "1988-12-08T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 9.4813 + }, + { + "Date+Time": "1988-12-09T00:00:00Z", + "Hs (total) (m)": 2.6826, + "Tp (total) (s)": 11.4437 + }, + { + "Date+Time": "1988-12-10T00:00:00Z", + "Hs (total) (m)": 1.9532, + "Tp (total) (s)": 10.2809 + }, + { + "Date+Time": "1988-12-11T00:00:00Z", + "Hs (total) (m)": 1.5542, + "Tp (total) (s)": 10.1672 + }, + { + "Date+Time": "1988-12-12T00:00:00Z", + "Hs (total) (m)": 1.6823, + "Tp (total) (s)": 11.3475 + }, + { + "Date+Time": "1988-12-13T00:00:00Z", + "Hs (total) (m)": 1.2955, + "Tp (total) (s)": 14.7259 + }, + { + "Date+Time": "1988-12-14T00:00:00Z", + "Hs (total) (m)": 0.9674, + "Tp (total) (s)": 10.641 + }, + { + "Date+Time": "1988-12-15T00:00:00Z", + "Hs (total) (m)": 1.0041, + "Tp (total) (s)": 11.3689 + }, + { + "Date+Time": "1988-12-16T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 7.6708 + }, + { + "Date+Time": "1988-12-17T00:00:00Z", + "Hs (total) (m)": 2.0295, + "Tp (total) (s)": 13.6097 + }, + { + "Date+Time": "1988-12-18T00:00:00Z", + "Hs (total) (m)": 1.8769, + "Tp (total) (s)": 12.5942 + }, + { + "Date+Time": "1988-12-19T00:00:00Z", + "Hs (total) (m)": 3.489, + "Tp (total) (s)": 15.8979 + }, + { + "Date+Time": "1988-12-20T00:00:00Z", + "Hs (total) (m)": 2.8573, + "Tp (total) (s)": 13.9569 + }, + { + "Date+Time": "1988-12-21T00:00:00Z", + "Hs (total) (m)": 2.1592, + "Tp (total) (s)": 11.8961 + }, + { + "Date+Time": "1988-12-22T00:00:00Z", + "Hs (total) (m)": 3.1312, + "Tp (total) (s)": 11.2758 + }, + { + "Date+Time": "1988-12-23T00:00:00Z", + "Hs (total) (m)": 2.6749, + "Tp (total) (s)": 12.5828 + }, + { + "Date+Time": "1988-12-24T00:00:00Z", + "Hs (total) (m)": 3.5714, + "Tp (total) (s)": 11.5535 + }, + { + "Date+Time": "1988-12-25T00:00:00Z", + "Hs (total) (m)": 2.3881, + "Tp (total) (s)": 11.6115 + }, + { + "Date+Time": "1988-12-26T00:00:00Z", + "Hs (total) (m)": 2.6475, + "Tp (total) (s)": 10.1047 + }, + { + "Date+Time": "1988-12-27T00:00:00Z", + "Hs (total) (m)": 3.2121, + "Tp (total) (s)": 12.4546 + }, + { + "Date+Time": "1988-12-28T00:00:00Z", + "Hs (total) (m)": 2.9984, + "Tp (total) (s)": 13.8646 + }, + { + "Date+Time": "1988-12-29T00:00:00Z", + "Hs (total) (m)": 3.692, + "Tp (total) (s)": 11.6321 + }, + { + "Date+Time": "1988-12-30T00:00:00Z", + "Hs (total) (m)": 3.2792, + "Tp (total) (s)": 12.8117 + }, + { + "Date+Time": "1988-12-31T00:00:00Z", + "Hs (total) (m)": 2.5895, + "Tp (total) (s)": 12.579 + }, + { + "Date+Time": "1989-01-01T00:00:00Z", + "Hs (total) (m)": 2.6406, + "Tp (total) (s)": 11.6932 + }, + { + "Date+Time": "1989-01-02T00:00:00Z", + "Hs (total) (m)": 2.8306, + "Tp (total) (s)": 15.4065 + }, + { + "Date+Time": "1989-01-03T00:00:00Z", + "Hs (total) (m)": 3.1205, + "Tp (total) (s)": 14.2422 + }, + { + "Date+Time": "1989-01-04T00:00:00Z", + "Hs (total) (m)": 4.442, + "Tp (total) (s)": 15.3211 + }, + { + "Date+Time": "1989-01-05T00:00:00Z", + "Hs (total) (m)": 4.0681, + "Tp (total) (s)": 14.2308 + }, + { + "Date+Time": "1989-01-06T00:00:00Z", + "Hs (total) (m)": 3.4387, + "Tp (total) (s)": 12.1265 + }, + { + "Date+Time": "1989-01-07T00:00:00Z", + "Hs (total) (m)": 2.4255, + "Tp (total) (s)": 11.7542 + }, + { + "Date+Time": "1989-01-08T00:00:00Z", + "Hs (total) (m)": 2.3774, + "Tp (total) (s)": 15.6545 + }, + { + "Date+Time": "1989-01-09T00:00:00Z", + "Hs (total) (m)": 3.1678, + "Tp (total) (s)": 14.2941 + }, + { + "Date+Time": "1989-01-10T00:00:00Z", + "Hs (total) (m)": 2.092, + "Tp (total) (s)": 12.8056 + }, + { + "Date+Time": "1989-01-11T00:00:00Z", + "Hs (total) (m)": 3.6897, + "Tp (total) (s)": 12.5126 + }, + { + "Date+Time": "1989-01-12T00:00:00Z", + "Hs (total) (m)": 3.7057, + "Tp (total) (s)": 13.9233 + }, + { + "Date+Time": "1989-01-13T00:00:00Z", + "Hs (total) (m)": 2.9878, + "Tp (total) (s)": 13.6929 + }, + { + "Date+Time": "1989-01-14T00:00:00Z", + "Hs (total) (m)": 5.859, + "Tp (total) (s)": 14.1648 + }, + { + "Date+Time": "1989-01-15T00:00:00Z", + "Hs (total) (m)": 5.5119, + "Tp (total) (s)": 14.3568 + }, + { + "Date+Time": "1989-01-16T00:00:00Z", + "Hs (total) (m)": 4.4633, + "Tp (total) (s)": 15.2722 + }, + { + "Date+Time": "1989-01-17T00:00:00Z", + "Hs (total) (m)": 3.077, + "Tp (total) (s)": 13.9637 + }, + { + "Date+Time": "1989-01-18T00:00:00Z", + "Hs (total) (m)": 2.1271, + "Tp (total) (s)": 12.701 + }, + { + "Date+Time": "1989-01-19T00:00:00Z", + "Hs (total) (m)": 2.3667, + "Tp (total) (s)": 11.6855 + }, + { + "Date+Time": "1989-01-20T00:00:00Z", + "Hs (total) (m)": 3.0663, + "Tp (total) (s)": 11.2751 + }, + { + "Date+Time": "1989-01-21T00:00:00Z", + "Hs (total) (m)": 2.2156, + "Tp (total) (s)": 11.7458 + }, + { + "Date+Time": "1989-01-22T00:00:00Z", + "Hs (total) (m)": 2.3484, + "Tp (total) (s)": 10.889 + }, + { + "Date+Time": "1989-01-23T00:00:00Z", + "Hs (total) (m)": 2.9801, + "Tp (total) (s)": 11.0599 + }, + { + "Date+Time": "1989-01-24T00:00:00Z", + "Hs (total) (m)": 3.5142, + "Tp (total) (s)": 14.0461 + }, + { + "Date+Time": "1989-01-25T00:00:00Z", + "Hs (total) (m)": 3.3357, + "Tp (total) (s)": 14.9022 + }, + { + "Date+Time": "1989-01-26T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 14.4108 + }, + { + "Date+Time": "1989-01-27T00:00:00Z", + "Hs (total) (m)": 3.9735, + "Tp (total) (s)": 9.0732 + }, + { + "Date+Time": "1989-01-28T00:00:00Z", + "Hs (total) (m)": 3.7294, + "Tp (total) (s)": 12.7354 + }, + { + "Date+Time": "1989-01-29T00:00:00Z", + "Hs (total) (m)": 3.357, + "Tp (total) (s)": 13.3389 + }, + { + "Date+Time": "1989-01-30T00:00:00Z", + "Hs (total) (m)": 3.7477, + "Tp (total) (s)": 15.3203 + }, + { + "Date+Time": "1989-01-31T00:00:00Z", + "Hs (total) (m)": 2.8428, + "Tp (total) (s)": 13.8752 + }, + { + "Date+Time": "1989-02-01T00:00:00Z", + "Hs (total) (m)": 2.5597, + "Tp (total) (s)": 13.0703 + }, + { + "Date+Time": "1989-02-02T00:00:00Z", + "Hs (total) (m)": 2.398, + "Tp (total) (s)": 12.5088 + }, + { + "Date+Time": "1989-02-03T00:00:00Z", + "Hs (total) (m)": 3.1098, + "Tp (total) (s)": 15.1547 + }, + { + "Date+Time": "1989-02-04T00:00:00Z", + "Hs (total) (m)": 3.4608, + "Tp (total) (s)": 11.272 + }, + { + "Date+Time": "1989-02-05T00:00:00Z", + "Hs (total) (m)": 3.7904, + "Tp (total) (s)": 15.5507 + }, + { + "Date+Time": "1989-02-06T00:00:00Z", + "Hs (total) (m)": 4.3153, + "Tp (total) (s)": 13.1512 + }, + { + "Date+Time": "1989-02-07T00:00:00Z", + "Hs (total) (m)": 5.2451, + "Tp (total) (s)": 12.6024 + }, + { + "Date+Time": "1989-02-08T00:00:00Z", + "Hs (total) (m)": 2.4323, + "Tp (total) (s)": 11.581 + }, + { + "Date+Time": "1989-02-09T00:00:00Z", + "Hs (total) (m)": 3.1571, + "Tp (total) (s)": 10.5991 + }, + { + "Date+Time": "1989-02-10T00:00:00Z", + "Hs (total) (m)": 3.1457, + "Tp (total) (s)": 14.4559 + }, + { + "Date+Time": "1989-02-11T00:00:00Z", + "Hs (total) (m)": 2.7596, + "Tp (total) (s)": 13.8592 + }, + { + "Date+Time": "1989-02-12T00:00:00Z", + "Hs (total) (m)": 3.4433, + "Tp (total) (s)": 15.6133 + }, + { + "Date+Time": "1989-02-13T00:00:00Z", + "Hs (total) (m)": 3.1953, + "Tp (total) (s)": 15.2402 + }, + { + "Date+Time": "1989-02-14T00:00:00Z", + "Hs (total) (m)": 4.0567, + "Tp (total) (s)": 13.741 + }, + { + "Date+Time": "1989-02-15T00:00:00Z", + "Hs (total) (m)": 4.6548, + "Tp (total) (s)": 11.4498 + }, + { + "Date+Time": "1989-02-16T00:00:00Z", + "Hs (total) (m)": 2.9626, + "Tp (total) (s)": 12.6621 + }, + { + "Date+Time": "1989-02-17T00:00:00Z", + "Hs (total) (m)": 2.456, + "Tp (total) (s)": 12.7758 + }, + { + "Date+Time": "1989-02-18T00:00:00Z", + "Hs (total) (m)": 3.6172, + "Tp (total) (s)": 10.6113 + }, + { + "Date+Time": "1989-02-19T00:00:00Z", + "Hs (total) (m)": 4.5618, + "Tp (total) (s)": 11.0965 + }, + { + "Date+Time": "1989-02-20T00:00:00Z", + "Hs (total) (m)": 3.6111, + "Tp (total) (s)": 12.0724 + }, + { + "Date+Time": "1989-02-21T00:00:00Z", + "Hs (total) (m)": 2.8596, + "Tp (total) (s)": 12.7705 + }, + { + "Date+Time": "1989-02-22T00:00:00Z", + "Hs (total) (m)": 4.9359, + "Tp (total) (s)": 12.1697 + }, + { + "Date+Time": "1989-02-23T00:00:00Z", + "Hs (total) (m)": 4.0201, + "Tp (total) (s)": 13.976 + }, + { + "Date+Time": "1989-02-24T00:00:00Z", + "Hs (total) (m)": 2.6963, + "Tp (total) (s)": 12.8994 + }, + { + "Date+Time": "1989-02-25T00:00:00Z", + "Hs (total) (m)": 2.2118, + "Tp (total) (s)": 11.6192 + }, + { + "Date+Time": "1989-02-26T00:00:00Z", + "Hs (total) (m)": 3.9529, + "Tp (total) (s)": 15.4614 + }, + { + "Date+Time": "1989-02-27T00:00:00Z", + "Hs (total) (m)": 3.4158, + "Tp (total) (s)": 13.5975 + }, + { + "Date+Time": "1989-02-28T00:00:00Z", + "Hs (total) (m)": 2.8466, + "Tp (total) (s)": 13.5243 + }, + { + "Date+Time": "1989-03-01T00:00:00Z", + "Hs (total) (m)": 2.4789, + "Tp (total) (s)": 10.8631 + }, + { + "Date+Time": "1989-03-02T00:00:00Z", + "Hs (total) (m)": 1.7953, + "Tp (total) (s)": 14.2506 + }, + { + "Date+Time": "1989-03-03T00:00:00Z", + "Hs (total) (m)": 2.7093, + "Tp (total) (s)": 15.0052 + }, + { + "Date+Time": "1989-03-04T00:00:00Z", + "Hs (total) (m)": 2.6055, + "Tp (total) (s)": 13.7768 + }, + { + "Date+Time": "1989-03-05T00:00:00Z", + "Hs (total) (m)": 2.6421, + "Tp (total) (s)": 12.8719 + }, + { + "Date+Time": "1989-03-06T00:00:00Z", + "Hs (total) (m)": 4.387, + "Tp (total) (s)": 12.363 + }, + { + "Date+Time": "1989-03-07T00:00:00Z", + "Hs (total) (m)": 3.1655, + "Tp (total) (s)": 11.4589 + }, + { + "Date+Time": "1989-03-08T00:00:00Z", + "Hs (total) (m)": 2.7551, + "Tp (total) (s)": 11.7283 + }, + { + "Date+Time": "1989-03-09T00:00:00Z", + "Hs (total) (m)": 3.8881, + "Tp (total) (s)": 15.1135 + }, + { + "Date+Time": "1989-03-10T00:00:00Z", + "Hs (total) (m)": 3.5684, + "Tp (total) (s)": 15.1212 + }, + { + "Date+Time": "1989-03-11T00:00:00Z", + "Hs (total) (m)": 3.4181, + "Tp (total) (s)": 12.0365 + }, + { + "Date+Time": "1989-03-12T00:00:00Z", + "Hs (total) (m)": 3.6882, + "Tp (total) (s)": 13.8661 + }, + { + "Date+Time": "1989-03-13T00:00:00Z", + "Hs (total) (m)": 3.3052, + "Tp (total) (s)": 11.6726 + }, + { + "Date+Time": "1989-03-14T00:00:00Z", + "Hs (total) (m)": 2.9176, + "Tp (total) (s)": 11.5986 + }, + { + "Date+Time": "1989-03-15T00:00:00Z", + "Hs (total) (m)": 2.8657, + "Tp (total) (s)": 11.4826 + }, + { + "Date+Time": "1989-03-16T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 11.3971 + }, + { + "Date+Time": "1989-03-17T00:00:00Z", + "Hs (total) (m)": 1.3947, + "Tp (total) (s)": 10.8684 + }, + { + "Date+Time": "1989-03-18T00:00:00Z", + "Hs (total) (m)": 2.06, + "Tp (total) (s)": 6.299 + }, + { + "Date+Time": "1989-03-19T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 10.4831 + }, + { + "Date+Time": "1989-03-20T00:00:00Z", + "Hs (total) (m)": 4.2489, + "Tp (total) (s)": 13.1451 + }, + { + "Date+Time": "1989-03-21T00:00:00Z", + "Hs (total) (m)": 3.3013, + "Tp (total) (s)": 13.329 + }, + { + "Date+Time": "1989-03-22T00:00:00Z", + "Hs (total) (m)": 4.3771, + "Tp (total) (s)": 11.7687 + }, + { + "Date+Time": "1989-03-23T00:00:00Z", + "Hs (total) (m)": 3.7553, + "Tp (total) (s)": 11.6428 + }, + { + "Date+Time": "1989-03-24T00:00:00Z", + "Hs (total) (m)": 4.5602, + "Tp (total) (s)": 13.0718 + }, + { + "Date+Time": "1989-03-25T00:00:00Z", + "Hs (total) (m)": 3.7477, + "Tp (total) (s)": 14.098 + }, + { + "Date+Time": "1989-03-26T00:00:00Z", + "Hs (total) (m)": 3.3006, + "Tp (total) (s)": 12.3234 + }, + { + "Date+Time": "1989-03-27T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 11.0179 + }, + { + "Date+Time": "1989-03-28T00:00:00Z", + "Hs (total) (m)": 1.6083, + "Tp (total) (s)": 11.8557 + }, + { + "Date+Time": "1989-03-29T00:00:00Z", + "Hs (total) (m)": 1.4336, + "Tp (total) (s)": 10.8715 + }, + { + "Date+Time": "1989-03-30T00:00:00Z", + "Hs (total) (m)": 3.0938, + "Tp (total) (s)": 10.7044 + }, + { + "Date+Time": "1989-03-31T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 11.858 + }, + { + "Date+Time": "1989-04-01T00:00:00Z", + "Hs (total) (m)": 1.7167, + "Tp (total) (s)": 12.4462 + }, + { + "Date+Time": "1989-04-02T00:00:00Z", + "Hs (total) (m)": 2.3652, + "Tp (total) (s)": 15.1975 + }, + { + "Date+Time": "1989-04-03T00:00:00Z", + "Hs (total) (m)": 1.9189, + "Tp (total) (s)": 13.3229 + }, + { + "Date+Time": "1989-04-04T00:00:00Z", + "Hs (total) (m)": 1.3855, + "Tp (total) (s)": 12.315 + }, + { + "Date+Time": "1989-04-05T00:00:00Z", + "Hs (total) (m)": 0.9278, + "Tp (total) (s)": 11.1469 + }, + { + "Date+Time": "1989-04-06T00:00:00Z", + "Hs (total) (m)": 0.8042, + "Tp (total) (s)": 10.1001 + }, + { + "Date+Time": "1989-04-07T00:00:00Z", + "Hs (total) (m)": 1.3253, + "Tp (total) (s)": 12.1052 + }, + { + "Date+Time": "1989-04-08T00:00:00Z", + "Hs (total) (m)": 1.5992, + "Tp (total) (s)": 12.6812 + }, + { + "Date+Time": "1989-04-09T00:00:00Z", + "Hs (total) (m)": 2.2286, + "Tp (total) (s)": 10.5869 + }, + { + "Date+Time": "1989-04-10T00:00:00Z", + "Hs (total) (m)": 1.8403, + "Tp (total) (s)": 10.2771 + }, + { + "Date+Time": "1989-04-11T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 9.9231 + }, + { + "Date+Time": "1989-04-12T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 10.1917 + }, + { + "Date+Time": "1989-04-13T00:00:00Z", + "Hs (total) (m)": 2.5445, + "Tp (total) (s)": 13.7837 + }, + { + "Date+Time": "1989-04-14T00:00:00Z", + "Hs (total) (m)": 2.0257, + "Tp (total) (s)": 12.6339 + }, + { + "Date+Time": "1989-04-15T00:00:00Z", + "Hs (total) (m)": 1.5816, + "Tp (total) (s)": 12.4294 + }, + { + "Date+Time": "1989-04-16T00:00:00Z", + "Hs (total) (m)": 1.2429, + "Tp (total) (s)": 12.3516 + }, + { + "Date+Time": "1989-04-17T00:00:00Z", + "Hs (total) (m)": 1.3153, + "Tp (total) (s)": 10.0269 + }, + { + "Date+Time": "1989-04-18T00:00:00Z", + "Hs (total) (m)": 1.0857, + "Tp (total) (s)": 10.0597 + }, + { + "Date+Time": "1989-04-19T00:00:00Z", + "Hs (total) (m)": 1.2581, + "Tp (total) (s)": 9.6873 + }, + { + "Date+Time": "1989-04-20T00:00:00Z", + "Hs (total) (m)": 1.165, + "Tp (total) (s)": 10.4389 + }, + { + "Date+Time": "1989-04-21T00:00:00Z", + "Hs (total) (m)": 0.8393, + "Tp (total) (s)": 9.0739 + }, + { + "Date+Time": "1989-04-22T00:00:00Z", + "Hs (total) (m)": 0.5669, + "Tp (total) (s)": 7.8524 + }, + { + "Date+Time": "1989-04-23T00:00:00Z", + "Hs (total) (m)": 0.9468, + "Tp (total) (s)": 11.507 + }, + { + "Date+Time": "1989-04-24T00:00:00Z", + "Hs (total) (m)": 0.9033, + "Tp (total) (s)": 10.963 + }, + { + "Date+Time": "1989-04-25T00:00:00Z", + "Hs (total) (m)": 0.7805, + "Tp (total) (s)": 10.5174 + }, + { + "Date+Time": "1989-04-26T00:00:00Z", + "Hs (total) (m)": 0.6989, + "Tp (total) (s)": 10.622 + }, + { + "Date+Time": "1989-04-27T00:00:00Z", + "Hs (total) (m)": 1.6594, + "Tp (total) (s)": 7.7342 + }, + { + "Date+Time": "1989-04-28T00:00:00Z", + "Hs (total) (m)": 1.2917, + "Tp (total) (s)": 8.5047 + }, + { + "Date+Time": "1989-04-29T00:00:00Z", + "Hs (total) (m)": 1.5694, + "Tp (total) (s)": 7.6861 + }, + { + "Date+Time": "1989-04-30T00:00:00Z", + "Hs (total) (m)": 2.1683, + "Tp (total) (s)": 12.6003 + }, + { + "Date+Time": "1989-05-01T00:00:00Z", + "Hs (total) (m)": 2.7131, + "Tp (total) (s)": 12.8162 + }, + { + "Date+Time": "1989-05-02T00:00:00Z", + "Hs (total) (m)": 2.6475, + "Tp (total) (s)": 10.5274 + }, + { + "Date+Time": "1989-05-03T00:00:00Z", + "Hs (total) (m)": 1.8181, + "Tp (total) (s)": 10.2214 + }, + { + "Date+Time": "1989-05-04T00:00:00Z", + "Hs (total) (m)": 1.355, + "Tp (total) (s)": 9.6225 + }, + { + "Date+Time": "1989-05-05T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 9.4623 + }, + { + "Date+Time": "1989-05-06T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 9.5698 + }, + { + "Date+Time": "1989-05-07T00:00:00Z", + "Hs (total) (m)": 0.7591, + "Tp (total) (s)": 9.5111 + }, + { + "Date+Time": "1989-05-08T00:00:00Z", + "Hs (total) (m)": 0.7271, + "Tp (total) (s)": 10.5396 + }, + { + "Date+Time": "1989-05-09T00:00:00Z", + "Hs (total) (m)": 0.7447, + "Tp (total) (s)": 9.4623 + }, + { + "Date+Time": "1989-05-10T00:00:00Z", + "Hs (total) (m)": 0.7569, + "Tp (total) (s)": 9.5508 + }, + { + "Date+Time": "1989-05-11T00:00:00Z", + "Hs (total) (m)": 0.7485, + "Tp (total) (s)": 9.1464 + }, + { + "Date+Time": "1989-05-12T00:00:00Z", + "Hs (total) (m)": 1.5603, + "Tp (total) (s)": 8.2949 + }, + { + "Date+Time": "1989-05-13T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 8.8366 + }, + { + "Date+Time": "1989-05-14T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 7.8555 + }, + { + "Date+Time": "1989-05-15T00:00:00Z", + "Hs (total) (m)": 2.6391, + "Tp (total) (s)": 9.9818 + }, + { + "Date+Time": "1989-05-16T00:00:00Z", + "Hs (total) (m)": 2.9992, + "Tp (total) (s)": 13.9882 + }, + { + "Date+Time": "1989-05-17T00:00:00Z", + "Hs (total) (m)": 2.1943, + "Tp (total) (s)": 11.9793 + }, + { + "Date+Time": "1989-05-18T00:00:00Z", + "Hs (total) (m)": 1.7312, + "Tp (total) (s)": 9.8392 + }, + { + "Date+Time": "1989-05-19T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 9.492 + }, + { + "Date+Time": "1989-05-20T00:00:00Z", + "Hs (total) (m)": 0.9713, + "Tp (total) (s)": 8.7771 + }, + { + "Date+Time": "1989-05-21T00:00:00Z", + "Hs (total) (m)": 1.0422, + "Tp (total) (s)": 10.2062 + }, + { + "Date+Time": "1989-05-22T00:00:00Z", + "Hs (total) (m)": 1.0681, + "Tp (total) (s)": 9.7613 + }, + { + "Date+Time": "1989-05-23T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 11.8847 + }, + { + "Date+Time": "1989-05-24T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 11.3979 + }, + { + "Date+Time": "1989-05-25T00:00:00Z", + "Hs (total) (m)": 1.0399, + "Tp (total) (s)": 10.9226 + }, + { + "Date+Time": "1989-05-26T00:00:00Z", + "Hs (total) (m)": 0.9507, + "Tp (total) (s)": 10.0887 + }, + { + "Date+Time": "1989-05-27T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 9.2257 + }, + { + "Date+Time": "1989-05-28T00:00:00Z", + "Hs (total) (m)": 0.6333, + "Tp (total) (s)": 8.5559 + }, + { + "Date+Time": "1989-05-29T00:00:00Z", + "Hs (total) (m)": 0.5837, + "Tp (total) (s)": 8.1866 + }, + { + "Date+Time": "1989-05-30T00:00:00Z", + "Hs (total) (m)": 0.5715, + "Tp (total) (s)": 8.4979 + }, + { + "Date+Time": "1989-05-31T00:00:00Z", + "Hs (total) (m)": 0.5654, + "Tp (total) (s)": 8.4483 + }, + { + "Date+Time": "1989-06-01T00:00:00Z", + "Hs (total) (m)": 0.576, + "Tp (total) (s)": 2.7879 + }, + { + "Date+Time": "1989-06-02T00:00:00Z", + "Hs (total) (m)": 0.5547, + "Tp (total) (s)": 6.1174 + }, + { + "Date+Time": "1989-06-03T00:00:00Z", + "Hs (total) (m)": 0.8751, + "Tp (total) (s)": 5.4437 + }, + { + "Date+Time": "1989-06-04T00:00:00Z", + "Hs (total) (m)": 0.7614, + "Tp (total) (s)": 6.2769 + }, + { + "Date+Time": "1989-06-05T00:00:00Z", + "Hs (total) (m)": 0.705, + "Tp (total) (s)": 6.6652 + }, + { + "Date+Time": "1989-06-06T00:00:00Z", + "Hs (total) (m)": 1.0453, + "Tp (total) (s)": 6.4684 + }, + { + "Date+Time": "1989-06-07T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 7.358 + }, + { + "Date+Time": "1989-06-08T00:00:00Z", + "Hs (total) (m)": 0.6569, + "Tp (total) (s)": 6.9346 + }, + { + "Date+Time": "1989-06-09T00:00:00Z", + "Hs (total) (m)": 1.3398, + "Tp (total) (s)": 6.9384 + }, + { + "Date+Time": "1989-06-10T00:00:00Z", + "Hs (total) (m)": 1.1208, + "Tp (total) (s)": 11.2285 + }, + { + "Date+Time": "1989-06-11T00:00:00Z", + "Hs (total) (m)": 2.0646, + "Tp (total) (s)": 8.4269 + }, + { + "Date+Time": "1989-06-12T00:00:00Z", + "Hs (total) (m)": 1.9738, + "Tp (total) (s)": 9.1243 + }, + { + "Date+Time": "1989-06-13T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 8.5543 + }, + { + "Date+Time": "1989-06-14T00:00:00Z", + "Hs (total) (m)": 1.3695, + "Tp (total) (s)": 8.5925 + }, + { + "Date+Time": "1989-06-15T00:00:00Z", + "Hs (total) (m)": 1.3153, + "Tp (total) (s)": 9.3379 + }, + { + "Date+Time": "1989-06-16T00:00:00Z", + "Hs (total) (m)": 1.5755, + "Tp (total) (s)": 8.7245 + }, + { + "Date+Time": "1989-06-17T00:00:00Z", + "Hs (total) (m)": 1.1841, + "Tp (total) (s)": 8.8336 + }, + { + "Date+Time": "1989-06-18T00:00:00Z", + "Hs (total) (m)": 1.3268, + "Tp (total) (s)": 10.5243 + }, + { + "Date+Time": "1989-06-19T00:00:00Z", + "Hs (total) (m)": 1.1681, + "Tp (total) (s)": 9.6599 + }, + { + "Date+Time": "1989-06-20T00:00:00Z", + "Hs (total) (m)": 0.9812, + "Tp (total) (s)": 9.228 + }, + { + "Date+Time": "1989-06-21T00:00:00Z", + "Hs (total) (m)": 0.8866, + "Tp (total) (s)": 8.7451 + }, + { + "Date+Time": "1989-06-22T00:00:00Z", + "Hs (total) (m)": 0.7881, + "Tp (total) (s)": 8.2118 + }, + { + "Date+Time": "1989-06-23T00:00:00Z", + "Hs (total) (m)": 0.7942, + "Tp (total) (s)": 10.5914 + }, + { + "Date+Time": "1989-06-24T00:00:00Z", + "Hs (total) (m)": 1.0376, + "Tp (total) (s)": 10.7067 + }, + { + "Date+Time": "1989-06-25T00:00:00Z", + "Hs (total) (m)": 1.8487, + "Tp (total) (s)": 6.2433 + }, + { + "Date+Time": "1989-06-26T00:00:00Z", + "Hs (total) (m)": 2.4232, + "Tp (total) (s)": 9.9124 + }, + { + "Date+Time": "1989-06-27T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 9.901 + }, + { + "Date+Time": "1989-06-28T00:00:00Z", + "Hs (total) (m)": 1.3031, + "Tp (total) (s)": 9.3677 + }, + { + "Date+Time": "1989-06-29T00:00:00Z", + "Hs (total) (m)": 1.5336, + "Tp (total) (s)": 7.7067 + }, + { + "Date+Time": "1989-06-30T00:00:00Z", + "Hs (total) (m)": 1.0659, + "Tp (total) (s)": 7.5671 + }, + { + "Date+Time": "1989-07-01T00:00:00Z", + "Hs (total) (m)": 1.5252, + "Tp (total) (s)": 7.0917 + }, + { + "Date+Time": "1989-07-02T00:00:00Z", + "Hs (total) (m)": 1.4527, + "Tp (total) (s)": 7.0894 + }, + { + "Date+Time": "1989-07-03T00:00:00Z", + "Hs (total) (m)": 0.7233, + "Tp (total) (s)": 7.2275 + }, + { + "Date+Time": "1989-07-04T00:00:00Z", + "Hs (total) (m)": 0.6317, + "Tp (total) (s)": 7.1741 + }, + { + "Date+Time": "1989-07-05T00:00:00Z", + "Hs (total) (m)": 0.7233, + "Tp (total) (s)": 8.3506 + }, + { + "Date+Time": "1989-07-06T00:00:00Z", + "Hs (total) (m)": 0.792, + "Tp (total) (s)": 8.565 + }, + { + "Date+Time": "1989-07-07T00:00:00Z", + "Hs (total) (m)": 0.8202, + "Tp (total) (s)": 8.3583 + }, + { + "Date+Time": "1989-07-08T00:00:00Z", + "Hs (total) (m)": 1.4962, + "Tp (total) (s)": 13.9256 + }, + { + "Date+Time": "1989-07-09T00:00:00Z", + "Hs (total) (m)": 1.2917, + "Tp (total) (s)": 11.774 + }, + { + "Date+Time": "1989-07-10T00:00:00Z", + "Hs (total) (m)": 0.6859, + "Tp (total) (s)": 5.9397 + }, + { + "Date+Time": "1989-07-11T00:00:00Z", + "Hs (total) (m)": 0.6752, + "Tp (total) (s)": 8.3712 + }, + { + "Date+Time": "1989-07-12T00:00:00Z", + "Hs (total) (m)": 0.8103, + "Tp (total) (s)": 8.4361 + }, + { + "Date+Time": "1989-07-13T00:00:00Z", + "Hs (total) (m)": 0.9117, + "Tp (total) (s)": 8.0271 + }, + { + "Date+Time": "1989-07-14T00:00:00Z", + "Hs (total) (m)": 1.0865, + "Tp (total) (s)": 9.3181 + }, + { + "Date+Time": "1989-07-15T00:00:00Z", + "Hs (total) (m)": 1.0796, + "Tp (total) (s)": 9.4058 + }, + { + "Date+Time": "1989-07-16T00:00:00Z", + "Hs (total) (m)": 0.9667, + "Tp (total) (s)": 9.1639 + }, + { + "Date+Time": "1989-07-17T00:00:00Z", + "Hs (total) (m)": 0.6783, + "Tp (total) (s)": 7.8356 + }, + { + "Date+Time": "1989-07-18T00:00:00Z", + "Hs (total) (m)": 0.4959, + "Tp (total) (s)": 7.2222 + }, + { + "Date+Time": "1989-07-19T00:00:00Z", + "Hs (total) (m)": 0.4814, + "Tp (total) (s)": 9.2006 + }, + { + "Date+Time": "1989-07-20T00:00:00Z", + "Hs (total) (m)": 0.5921, + "Tp (total) (s)": 9.3768 + }, + { + "Date+Time": "1989-07-21T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 10.4709 + }, + { + "Date+Time": "1989-07-22T00:00:00Z", + "Hs (total) (m)": 1.0865, + "Tp (total) (s)": 9.5569 + }, + { + "Date+Time": "1989-07-23T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 5.3133 + }, + { + "Date+Time": "1989-07-24T00:00:00Z", + "Hs (total) (m)": 0.7027, + "Tp (total) (s)": 8.6604 + }, + { + "Date+Time": "1989-07-25T00:00:00Z", + "Hs (total) (m)": 0.8202, + "Tp (total) (s)": 8.0363 + }, + { + "Date+Time": "1989-07-26T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 7.9218 + }, + { + "Date+Time": "1989-07-27T00:00:00Z", + "Hs (total) (m)": 1.487, + "Tp (total) (s)": 7.7013 + }, + { + "Date+Time": "1989-07-28T00:00:00Z", + "Hs (total) (m)": 1.7335, + "Tp (total) (s)": 8.4552 + }, + { + "Date+Time": "1989-07-29T00:00:00Z", + "Hs (total) (m)": 1.9005, + "Tp (total) (s)": 8.4521 + }, + { + "Date+Time": "1989-07-30T00:00:00Z", + "Hs (total) (m)": 2.1226, + "Tp (total) (s)": 8.6245 + }, + { + "Date+Time": "1989-07-31T00:00:00Z", + "Hs (total) (m)": 1.5053, + "Tp (total) (s)": 8.5742 + }, + { + "Date+Time": "1989-08-01T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 7.7815 + }, + { + "Date+Time": "1989-08-02T00:00:00Z", + "Hs (total) (m)": 1.1284, + "Tp (total) (s)": 7.1306 + }, + { + "Date+Time": "1989-08-03T00:00:00Z", + "Hs (total) (m)": 0.9796, + "Tp (total) (s)": 7.0528 + }, + { + "Date+Time": "1989-08-04T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 6.9071 + }, + { + "Date+Time": "1989-08-05T00:00:00Z", + "Hs (total) (m)": 0.8667, + "Tp (total) (s)": 7.5068 + }, + { + "Date+Time": "1989-08-06T00:00:00Z", + "Hs (total) (m)": 0.94, + "Tp (total) (s)": 8.4048 + }, + { + "Date+Time": "1989-08-07T00:00:00Z", + "Hs (total) (m)": 1.1834, + "Tp (total) (s)": 7.9852 + }, + { + "Date+Time": "1989-08-08T00:00:00Z", + "Hs (total) (m)": 1.1589, + "Tp (total) (s)": 9.2036 + }, + { + "Date+Time": "1989-08-09T00:00:00Z", + "Hs (total) (m)": 1.191, + "Tp (total) (s)": 7.062 + }, + { + "Date+Time": "1989-08-10T00:00:00Z", + "Hs (total) (m)": 1.529, + "Tp (total) (s)": 6.4478 + }, + { + "Date+Time": "1989-08-11T00:00:00Z", + "Hs (total) (m)": 1.5809, + "Tp (total) (s)": 7.6693 + }, + { + "Date+Time": "1989-08-12T00:00:00Z", + "Hs (total) (m)": 2.3377, + "Tp (total) (s)": 6.8636 + }, + { + "Date+Time": "1989-08-13T00:00:00Z", + "Hs (total) (m)": 2.3202, + "Tp (total) (s)": 7.8974 + }, + { + "Date+Time": "1989-08-14T00:00:00Z", + "Hs (total) (m)": 2.5079, + "Tp (total) (s)": 10.1749 + }, + { + "Date+Time": "1989-08-15T00:00:00Z", + "Hs (total) (m)": 2.5323, + "Tp (total) (s)": 9.65 + }, + { + "Date+Time": "1989-08-16T00:00:00Z", + "Hs (total) (m)": 3.164, + "Tp (total) (s)": 9.5408 + }, + { + "Date+Time": "1989-08-17T00:00:00Z", + "Hs (total) (m)": 3.0396, + "Tp (total) (s)": 10.7028 + }, + { + "Date+Time": "1989-08-18T00:00:00Z", + "Hs (total) (m)": 1.989, + "Tp (total) (s)": 9.7972 + }, + { + "Date+Time": "1989-08-19T00:00:00Z", + "Hs (total) (m)": 1.6717, + "Tp (total) (s)": 8.549 + }, + { + "Date+Time": "1989-08-20T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 8.0096 + }, + { + "Date+Time": "1989-08-21T00:00:00Z", + "Hs (total) (m)": 2.311, + "Tp (total) (s)": 8.9381 + }, + { + "Date+Time": "1989-08-22T00:00:00Z", + "Hs (total) (m)": 2.7703, + "Tp (total) (s)": 11.1423 + }, + { + "Date+Time": "1989-08-23T00:00:00Z", + "Hs (total) (m)": 2.7863, + "Tp (total) (s)": 12.3638 + }, + { + "Date+Time": "1989-08-24T00:00:00Z", + "Hs (total) (m)": 2.3255, + "Tp (total) (s)": 12.0632 + }, + { + "Date+Time": "1989-08-25T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 12.7247 + }, + { + "Date+Time": "1989-08-26T00:00:00Z", + "Hs (total) (m)": 1.7922, + "Tp (total) (s)": 11.1927 + }, + { + "Date+Time": "1989-08-27T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 9.286 + }, + { + "Date+Time": "1989-08-28T00:00:00Z", + "Hs (total) (m)": 1.2078, + "Tp (total) (s)": 8.4017 + }, + { + "Date+Time": "1989-08-29T00:00:00Z", + "Hs (total) (m)": 1.8105, + "Tp (total) (s)": 13.1741 + }, + { + "Date+Time": "1989-08-30T00:00:00Z", + "Hs (total) (m)": 2.0753, + "Tp (total) (s)": 12.315 + }, + { + "Date+Time": "1989-08-31T00:00:00Z", + "Hs (total) (m)": 1.4344, + "Tp (total) (s)": 9.6301 + }, + { + "Date+Time": "1989-09-01T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 6.518 + }, + { + "Date+Time": "1989-09-02T00:00:00Z", + "Hs (total) (m)": 1.6526, + "Tp (total) (s)": 10.6143 + }, + { + "Date+Time": "1989-09-03T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 9.4516 + }, + { + "Date+Time": "1989-09-04T00:00:00Z", + "Hs (total) (m)": 1.0758, + "Tp (total) (s)": 8.5185 + }, + { + "Date+Time": "1989-09-05T00:00:00Z", + "Hs (total) (m)": 1.2322, + "Tp (total) (s)": 8.1675 + }, + { + "Date+Time": "1989-09-06T00:00:00Z", + "Hs (total) (m)": 1.1429, + "Tp (total) (s)": 9.4546 + }, + { + "Date+Time": "1989-09-07T00:00:00Z", + "Hs (total) (m)": 1.2574, + "Tp (total) (s)": 10.3282 + }, + { + "Date+Time": "1989-09-08T00:00:00Z", + "Hs (total) (m)": 1.3764, + "Tp (total) (s)": 9.6873 + }, + { + "Date+Time": "1989-09-09T00:00:00Z", + "Hs (total) (m)": 1.4382, + "Tp (total) (s)": 10.2748 + }, + { + "Date+Time": "1989-09-10T00:00:00Z", + "Hs (total) (m)": 1.2505, + "Tp (total) (s)": 10.7669 + }, + { + "Date+Time": "1989-09-11T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 10.332 + }, + { + "Date+Time": "1989-09-12T00:00:00Z", + "Hs (total) (m)": 0.4486, + "Tp (total) (s)": 18.9161 + }, + { + "Date+Time": "1989-09-13T00:00:00Z", + "Hs (total) (m)": 1.1254, + "Tp (total) (s)": 15.7323 + }, + { + "Date+Time": "1989-09-14T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 14.8183 + }, + { + "Date+Time": "1989-09-15T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 12.5927 + }, + { + "Date+Time": "1989-09-16T00:00:00Z", + "Hs (total) (m)": 2.5567, + "Tp (total) (s)": 8.1622 + }, + { + "Date+Time": "1989-09-17T00:00:00Z", + "Hs (total) (m)": 2.7169, + "Tp (total) (s)": 10.818 + }, + { + "Date+Time": "1989-09-18T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 10.8699 + }, + { + "Date+Time": "1989-09-19T00:00:00Z", + "Hs (total) (m)": 3.457, + "Tp (total) (s)": 10.6784 + }, + { + "Date+Time": "1989-09-20T00:00:00Z", + "Hs (total) (m)": 4.3947, + "Tp (total) (s)": 14.0515 + }, + { + "Date+Time": "1989-09-21T00:00:00Z", + "Hs (total) (m)": 3.8858, + "Tp (total) (s)": 10.5808 + }, + { + "Date+Time": "1989-09-22T00:00:00Z", + "Hs (total) (m)": 2.8649, + "Tp (total) (s)": 11.3361 + }, + { + "Date+Time": "1989-09-23T00:00:00Z", + "Hs (total) (m)": 1.9768, + "Tp (total) (s)": 10.5686 + }, + { + "Date+Time": "1989-09-24T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 10.1054 + }, + { + "Date+Time": "1989-09-25T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 8.5505 + }, + { + "Date+Time": "1989-09-26T00:00:00Z", + "Hs (total) (m)": 2.0943, + "Tp (total) (s)": 9.6301 + }, + { + "Date+Time": "1989-09-27T00:00:00Z", + "Hs (total) (m)": 1.6518, + "Tp (total) (s)": 9.2128 + }, + { + "Date+Time": "1989-09-28T00:00:00Z", + "Hs (total) (m)": 1.6053, + "Tp (total) (s)": 10.5907 + }, + { + "Date+Time": "1989-09-29T00:00:00Z", + "Hs (total) (m)": 1.8136, + "Tp (total) (s)": 13.667 + }, + { + "Date+Time": "1989-09-30T00:00:00Z", + "Hs (total) (m)": 1.3131, + "Tp (total) (s)": 12.5088 + }, + { + "Date+Time": "1989-10-01T00:00:00Z", + "Hs (total) (m)": 0.8309, + "Tp (total) (s)": 10.3633 + }, + { + "Date+Time": "1989-10-02T00:00:00Z", + "Hs (total) (m)": 0.7042, + "Tp (total) (s)": 11.7908 + }, + { + "Date+Time": "1989-10-03T00:00:00Z", + "Hs (total) (m)": 0.4662, + "Tp (total) (s)": 11.1339 + }, + { + "Date+Time": "1989-10-04T00:00:00Z", + "Hs (total) (m)": 0.8316, + "Tp (total) (s)": 9.5576 + }, + { + "Date+Time": "1989-10-05T00:00:00Z", + "Hs (total) (m)": 1.3489, + "Tp (total) (s)": 8.6138 + }, + { + "Date+Time": "1989-10-06T00:00:00Z", + "Hs (total) (m)": 1.1521, + "Tp (total) (s)": 7.2092 + }, + { + "Date+Time": "1989-10-07T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 5.9206 + }, + { + "Date+Time": "1989-10-08T00:00:00Z", + "Hs (total) (m)": 2.1485, + "Tp (total) (s)": 8.0569 + }, + { + "Date+Time": "1989-10-09T00:00:00Z", + "Hs (total) (m)": 2.0676, + "Tp (total) (s)": 10.2115 + }, + { + "Date+Time": "1989-10-10T00:00:00Z", + "Hs (total) (m)": 1.4351, + "Tp (total) (s)": 8.929 + }, + { + "Date+Time": "1989-10-11T00:00:00Z", + "Hs (total) (m)": 1.0758, + "Tp (total) (s)": 10.226 + }, + { + "Date+Time": "1989-10-12T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 10.0963 + }, + { + "Date+Time": "1989-10-13T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 6.3654 + }, + { + "Date+Time": "1989-10-14T00:00:00Z", + "Hs (total) (m)": 2.0318, + "Tp (total) (s)": 14.2659 + }, + { + "Date+Time": "1989-10-15T00:00:00Z", + "Hs (total) (m)": 2.3186, + "Tp (total) (s)": 12.3898 + }, + { + "Date+Time": "1989-10-16T00:00:00Z", + "Hs (total) (m)": 1.989, + "Tp (total) (s)": 10.6037 + }, + { + "Date+Time": "1989-10-17T00:00:00Z", + "Hs (total) (m)": 2.7268, + "Tp (total) (s)": 8.591 + }, + { + "Date+Time": "1989-10-18T00:00:00Z", + "Hs (total) (m)": 2.6811, + "Tp (total) (s)": 11.7038 + }, + { + "Date+Time": "1989-10-19T00:00:00Z", + "Hs (total) (m)": 1.8509, + "Tp (total) (s)": 11.4635 + }, + { + "Date+Time": "1989-10-20T00:00:00Z", + "Hs (total) (m)": 2.0264, + "Tp (total) (s)": 10.2969 + }, + { + "Date+Time": "1989-10-21T00:00:00Z", + "Hs (total) (m)": 3.8965, + "Tp (total) (s)": 15.9093 + }, + { + "Date+Time": "1989-10-22T00:00:00Z", + "Hs (total) (m)": 5.0395, + "Tp (total) (s)": 16.462 + }, + { + "Date+Time": "1989-10-23T00:00:00Z", + "Hs (total) (m)": 4.4122, + "Tp (total) (s)": 14.9106 + }, + { + "Date+Time": "1989-10-24T00:00:00Z", + "Hs (total) (m)": 3.2105, + "Tp (total) (s)": 11.7138 + }, + { + "Date+Time": "1989-10-25T00:00:00Z", + "Hs (total) (m)": 2.3934, + "Tp (total) (s)": 11.0881 + }, + { + "Date+Time": "1989-10-26T00:00:00Z", + "Hs (total) (m)": 2.443, + "Tp (total) (s)": 8.4513 + }, + { + "Date+Time": "1989-10-27T00:00:00Z", + "Hs (total) (m)": 2.5651, + "Tp (total) (s)": 14.4208 + }, + { + "Date+Time": "1989-10-28T00:00:00Z", + "Hs (total) (m)": 0.8202, + "Tp (total) (s)": 3.3471 + }, + { + "Date+Time": "1989-10-29T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 9.4142 + }, + { + "Date+Time": "1989-10-30T00:00:00Z", + "Hs (total) (m)": 2.0028, + "Tp (total) (s)": 10.1283 + }, + { + "Date+Time": "1989-10-31T00:00:00Z", + "Hs (total) (m)": 2.6063, + "Tp (total) (s)": 9.1746 + }, + { + "Date+Time": "1989-11-01T00:00:00Z", + "Hs (total) (m)": 3.3914, + "Tp (total) (s)": 14.0301 + }, + { + "Date+Time": "1989-11-02T00:00:00Z", + "Hs (total) (m)": 3.843, + "Tp (total) (s)": 15.1944 + }, + { + "Date+Time": "1989-11-03T00:00:00Z", + "Hs (total) (m)": 4.1803, + "Tp (total) (s)": 12.8574 + }, + { + "Date+Time": "1989-11-04T00:00:00Z", + "Hs (total) (m)": 3.6554, + "Tp (total) (s)": 12.2631 + }, + { + "Date+Time": "1989-11-05T00:00:00Z", + "Hs (total) (m)": 3.2403, + "Tp (total) (s)": 12.6583 + }, + { + "Date+Time": "1989-11-06T00:00:00Z", + "Hs (total) (m)": 3.5089, + "Tp (total) (s)": 12.1014 + }, + { + "Date+Time": "1989-11-07T00:00:00Z", + "Hs (total) (m)": 3.1068, + "Tp (total) (s)": 14.8221 + }, + { + "Date+Time": "1989-11-08T00:00:00Z", + "Hs (total) (m)": 1.8685, + "Tp (total) (s)": 12.5805 + }, + { + "Date+Time": "1989-11-09T00:00:00Z", + "Hs (total) (m)": 1.9478, + "Tp (total) (s)": 10.4671 + }, + { + "Date+Time": "1989-11-10T00:00:00Z", + "Hs (total) (m)": 2.562, + "Tp (total) (s)": 13.6082 + }, + { + "Date+Time": "1989-11-11T00:00:00Z", + "Hs (total) (m)": 2.6711, + "Tp (total) (s)": 11.298 + }, + { + "Date+Time": "1989-11-12T00:00:00Z", + "Hs (total) (m)": 2.1805, + "Tp (total) (s)": 10.0864 + }, + { + "Date+Time": "1989-11-13T00:00:00Z", + "Hs (total) (m)": 1.5763, + "Tp (total) (s)": 10.0848 + }, + { + "Date+Time": "1989-11-14T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 10.4816 + }, + { + "Date+Time": "1989-11-15T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 9.6011 + }, + { + "Date+Time": "1989-11-16T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 9.4302 + }, + { + "Date+Time": "1989-11-17T00:00:00Z", + "Hs (total) (m)": 1.0369, + "Tp (total) (s)": 4.7899 + }, + { + "Date+Time": "1989-11-18T00:00:00Z", + "Hs (total) (m)": 2.1149, + "Tp (total) (s)": 12.6095 + }, + { + "Date+Time": "1989-11-19T00:00:00Z", + "Hs (total) (m)": 1.8609, + "Tp (total) (s)": 12.1158 + }, + { + "Date+Time": "1989-11-20T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 3.3181 + }, + { + "Date+Time": "1989-11-21T00:00:00Z", + "Hs (total) (m)": 0.8255, + "Tp (total) (s)": 3.3601 + }, + { + "Date+Time": "1989-11-22T00:00:00Z", + "Hs (total) (m)": 0.8187, + "Tp (total) (s)": 10.2397 + }, + { + "Date+Time": "1989-11-23T00:00:00Z", + "Hs (total) (m)": 0.6691, + "Tp (total) (s)": 3.0557 + }, + { + "Date+Time": "1989-11-24T00:00:00Z", + "Hs (total) (m)": 0.3372, + "Tp (total) (s)": 10.1741 + }, + { + "Date+Time": "1989-11-25T00:00:00Z", + "Hs (total) (m)": 0.2876, + "Tp (total) (s)": 9.7621 + }, + { + "Date+Time": "1989-11-26T00:00:00Z", + "Hs (total) (m)": 1.0216, + "Tp (total) (s)": 15.4424 + }, + { + "Date+Time": "1989-11-27T00:00:00Z", + "Hs (total) (m)": 1.2391, + "Tp (total) (s)": 15.1296 + }, + { + "Date+Time": "1989-11-28T00:00:00Z", + "Hs (total) (m)": 0.6691, + "Tp (total) (s)": 12.495 + }, + { + "Date+Time": "1989-11-29T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 12.904 + }, + { + "Date+Time": "1989-11-30T00:00:00Z", + "Hs (total) (m)": 1.3771, + "Tp (total) (s)": 12.5118 + }, + { + "Date+Time": "1989-12-01T00:00:00Z", + "Hs (total) (m)": 1.3237, + "Tp (total) (s)": 11.2384 + }, + { + "Date+Time": "1989-12-02T00:00:00Z", + "Hs (total) (m)": 1.5412, + "Tp (total) (s)": 14.0019 + }, + { + "Date+Time": "1989-12-03T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 11.9785 + }, + { + "Date+Time": "1989-12-04T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 10.9485 + }, + { + "Date+Time": "1989-12-05T00:00:00Z", + "Hs (total) (m)": 0.7759, + "Tp (total) (s)": 11.6565 + }, + { + "Date+Time": "1989-12-06T00:00:00Z", + "Hs (total) (m)": 0.5348, + "Tp (total) (s)": 2.7764 + }, + { + "Date+Time": "1989-12-07T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 15.1494 + }, + { + "Date+Time": "1989-12-08T00:00:00Z", + "Hs (total) (m)": 0.9316, + "Tp (total) (s)": 14.6313 + }, + { + "Date+Time": "1989-12-09T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 14.7015 + }, + { + "Date+Time": "1989-12-10T00:00:00Z", + "Hs (total) (m)": 1.4504, + "Tp (total) (s)": 13.8279 + }, + { + "Date+Time": "1989-12-11T00:00:00Z", + "Hs (total) (m)": 1.5923, + "Tp (total) (s)": 12.627 + }, + { + "Date+Time": "1989-12-12T00:00:00Z", + "Hs (total) (m)": 1.6518, + "Tp (total) (s)": 6.2708 + }, + { + "Date+Time": "1989-12-13T00:00:00Z", + "Hs (total) (m)": 2.1195, + "Tp (total) (s)": 15.4614 + }, + { + "Date+Time": "1989-12-14T00:00:00Z", + "Hs (total) (m)": 3.0107, + "Tp (total) (s)": 14.2254 + }, + { + "Date+Time": "1989-12-15T00:00:00Z", + "Hs (total) (m)": 3.9529, + "Tp (total) (s)": 15.1982 + }, + { + "Date+Time": "1989-12-16T00:00:00Z", + "Hs (total) (m)": 2.53, + "Tp (total) (s)": 12.0586 + }, + { + "Date+Time": "1989-12-17T00:00:00Z", + "Hs (total) (m)": 2.2942, + "Tp (total) (s)": 14.6634 + }, + { + "Date+Time": "1989-12-18T00:00:00Z", + "Hs (total) (m)": 3.6424, + "Tp (total) (s)": 16.0573 + }, + { + "Date+Time": "1989-12-19T00:00:00Z", + "Hs (total) (m)": 2.8901, + "Tp (total) (s)": 12.9536 + }, + { + "Date+Time": "1989-12-20T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 12.7277 + }, + { + "Date+Time": "1989-12-21T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 11.7275 + }, + { + "Date+Time": "1989-12-22T00:00:00Z", + "Hs (total) (m)": 2.1599, + "Tp (total) (s)": 11.3346 + }, + { + "Date+Time": "1989-12-23T00:00:00Z", + "Hs (total) (m)": 2.958, + "Tp (total) (s)": 13.683 + }, + { + "Date+Time": "1989-12-24T00:00:00Z", + "Hs (total) (m)": 3.0755, + "Tp (total) (s)": 12.3135 + }, + { + "Date+Time": "1989-12-25T00:00:00Z", + "Hs (total) (m)": 4.2283, + "Tp (total) (s)": 12.2333 + }, + { + "Date+Time": "1989-12-26T00:00:00Z", + "Hs (total) (m)": 5.8414, + "Tp (total) (s)": 15.3779 + }, + { + "Date+Time": "1989-12-27T00:00:00Z", + "Hs (total) (m)": 4.7044, + "Tp (total) (s)": 15.4271 + }, + { + "Date+Time": "1989-12-28T00:00:00Z", + "Hs (total) (m)": 2.6345, + "Tp (total) (s)": 13.8546 + }, + { + "Date+Time": "1989-12-29T00:00:00Z", + "Hs (total) (m)": 2.0859, + "Tp (total) (s)": 12.5172 + }, + { + "Date+Time": "1989-12-30T00:00:00Z", + "Hs (total) (m)": 2.5834, + "Tp (total) (s)": 13.2099 + }, + { + "Date+Time": "1989-12-31T00:00:00Z", + "Hs (total) (m)": 2.0775, + "Tp (total) (s)": 13.7219 + }, + { + "Date+Time": "1990-01-01T00:00:00Z", + "Hs (total) (m)": 3.7477, + "Tp (total) (s)": 17.3719 + }, + { + "Date+Time": "1990-01-02T00:00:00Z", + "Hs (total) (m)": 3.6859, + "Tp (total) (s)": 17.1522 + }, + { + "Date+Time": "1990-01-03T00:00:00Z", + "Hs (total) (m)": 3.6584, + "Tp (total) (s)": 16.6639 + }, + { + "Date+Time": "1990-01-04T00:00:00Z", + "Hs (total) (m)": 2.942, + "Tp (total) (s)": 12.9276 + }, + { + "Date+Time": "1990-01-05T00:00:00Z", + "Hs (total) (m)": 2.5193, + "Tp (total) (s)": 12.7766 + }, + { + "Date+Time": "1990-01-06T00:00:00Z", + "Hs (total) (m)": 2.5185, + "Tp (total) (s)": 14.8679 + }, + { + "Date+Time": "1990-01-07T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 14.8831 + }, + { + "Date+Time": "1990-01-08T00:00:00Z", + "Hs (total) (m)": 2.9229, + "Tp (total) (s)": 14.5634 + }, + { + "Date+Time": "1990-01-09T00:00:00Z", + "Hs (total) (m)": 3.122, + "Tp (total) (s)": 13.5571 + }, + { + "Date+Time": "1990-01-10T00:00:00Z", + "Hs (total) (m)": 3.4463, + "Tp (total) (s)": 15.6705 + }, + { + "Date+Time": "1990-01-11T00:00:00Z", + "Hs (total) (m)": 4.1955, + "Tp (total) (s)": 15.5698 + }, + { + "Date+Time": "1990-01-12T00:00:00Z", + "Hs (total) (m)": 4.4801, + "Tp (total) (s)": 14.7549 + }, + { + "Date+Time": "1990-01-13T00:00:00Z", + "Hs (total) (m)": 3.4417, + "Tp (total) (s)": 12.5172 + }, + { + "Date+Time": "1990-01-14T00:00:00Z", + "Hs (total) (m)": 3.4005, + "Tp (total) (s)": 12.402 + }, + { + "Date+Time": "1990-01-15T00:00:00Z", + "Hs (total) (m)": 3.3822, + "Tp (total) (s)": 12.5637 + }, + { + "Date+Time": "1990-01-16T00:00:00Z", + "Hs (total) (m)": 3.4707, + "Tp (total) (s)": 12.566 + }, + { + "Date+Time": "1990-01-17T00:00:00Z", + "Hs (total) (m)": 3.9277, + "Tp (total) (s)": 12.598 + }, + { + "Date+Time": "1990-01-18T00:00:00Z", + "Hs (total) (m)": 4.1696, + "Tp (total) (s)": 13.3282 + }, + { + "Date+Time": "1990-01-19T00:00:00Z", + "Hs (total) (m)": 4.6472, + "Tp (total) (s)": 13.6311 + }, + { + "Date+Time": "1990-01-20T00:00:00Z", + "Hs (total) (m)": 4.1955, + "Tp (total) (s)": 13.4312 + }, + { + "Date+Time": "1990-01-21T00:00:00Z", + "Hs (total) (m)": 3.5905, + "Tp (total) (s)": 12.6026 + }, + { + "Date+Time": "1990-01-22T00:00:00Z", + "Hs (total) (m)": 3.5913, + "Tp (total) (s)": 12.5263 + }, + { + "Date+Time": "1990-01-23T00:00:00Z", + "Hs (total) (m)": 4.5885, + "Tp (total) (s)": 14.7526 + }, + { + "Date+Time": "1990-01-24T00:00:00Z", + "Hs (total) (m)": 4.5816, + "Tp (total) (s)": 14.9396 + }, + { + "Date+Time": "1990-01-25T00:00:00Z", + "Hs (total) (m)": 4.4862, + "Tp (total) (s)": 14.5871 + }, + { + "Date+Time": "1990-01-26T00:00:00Z", + "Hs (total) (m)": 4.3069, + "Tp (total) (s)": 14.0866 + }, + { + "Date+Time": "1990-01-27T00:00:00Z", + "Hs (total) (m)": 4.474, + "Tp (total) (s)": 13.802 + }, + { + "Date+Time": "1990-01-28T00:00:00Z", + "Hs (total) (m)": 4.0086, + "Tp (total) (s)": 13.6311 + }, + { + "Date+Time": "1990-01-29T00:00:00Z", + "Hs (total) (m)": 3.0694, + "Tp (total) (s)": 13.123 + }, + { + "Date+Time": "1990-01-30T00:00:00Z", + "Hs (total) (m)": 3.4074, + "Tp (total) (s)": 17.4757 + }, + { + "Date+Time": "1990-01-31T00:00:00Z", + "Hs (total) (m)": 5.1133, + "Tp (total) (s)": 18.1732 + }, + { + "Date+Time": "1990-02-01T00:00:00Z", + "Hs (total) (m)": 5.3174, + "Tp (total) (s)": 17.882 + }, + { + "Date+Time": "1990-02-02T00:00:00Z", + "Hs (total) (m)": 5.2239, + "Tp (total) (s)": 14.4956 + }, + { + "Date+Time": "1990-02-03T00:00:00Z", + "Hs (total) (m)": 4.7655, + "Tp (total) (s)": 12.7766 + }, + { + "Date+Time": "1990-02-04T00:00:00Z", + "Hs (total) (m)": 4.7166, + "Tp (total) (s)": 12.2234 + }, + { + "Date+Time": "1990-02-05T00:00:00Z", + "Hs (total) (m)": 5.6923, + "Tp (total) (s)": 13.458 + }, + { + "Date+Time": "1990-02-06T00:00:00Z", + "Hs (total) (m)": 5.5001, + "Tp (total) (s)": 14.4204 + }, + { + "Date+Time": "1990-02-07T00:00:00Z", + "Hs (total) (m)": 4.4809, + "Tp (total) (s)": 14.2056 + }, + { + "Date+Time": "1990-02-08T00:00:00Z", + "Hs (total) (m)": 3.3616, + "Tp (total) (s)": 13.699 + }, + { + "Date+Time": "1990-02-09T00:00:00Z", + "Hs (total) (m)": 3.2815, + "Tp (total) (s)": 13.7654 + }, + { + "Date+Time": "1990-02-10T00:00:00Z", + "Hs (total) (m)": 3.4715, + "Tp (total) (s)": 13.7173 + }, + { + "Date+Time": "1990-02-11T00:00:00Z", + "Hs (total) (m)": 3.6119, + "Tp (total) (s)": 12.4744 + }, + { + "Date+Time": "1990-02-12T00:00:00Z", + "Hs (total) (m)": 4.3298, + "Tp (total) (s)": 12.8933 + }, + { + "Date+Time": "1990-02-13T00:00:00Z", + "Hs (total) (m)": 4.7098, + "Tp (total) (s)": 13.7135 + }, + { + "Date+Time": "1990-02-14T00:00:00Z", + "Hs (total) (m)": 4.4824, + "Tp (total) (s)": 13.6151 + }, + { + "Date+Time": "1990-02-15T00:00:00Z", + "Hs (total) (m)": 3.853, + "Tp (total) (s)": 12.7735 + }, + { + "Date+Time": "1990-02-16T00:00:00Z", + "Hs (total) (m)": 3.3456, + "Tp (total) (s)": 12.5599 + }, + { + "Date+Time": "1990-02-17T00:00:00Z", + "Hs (total) (m)": 3.0808, + "Tp (total) (s)": 11.8458 + }, + { + "Date+Time": "1990-02-18T00:00:00Z", + "Hs (total) (m)": 3.3937, + "Tp (total) (s)": 11.3422 + }, + { + "Date+Time": "1990-02-19T00:00:00Z", + "Hs (total) (m)": 4.2734, + "Tp (total) (s)": 12.7041 + }, + { + "Date+Time": "1990-02-20T00:00:00Z", + "Hs (total) (m)": 4.2428, + "Tp (total) (s)": 13.2565 + }, + { + "Date+Time": "1990-02-21T00:00:00Z", + "Hs (total) (m)": 4.7098, + "Tp (total) (s)": 12.8269 + }, + { + "Date+Time": "1990-02-22T00:00:00Z", + "Hs (total) (m)": 4.87, + "Tp (total) (s)": 12.6804 + }, + { + "Date+Time": "1990-02-23T00:00:00Z", + "Hs (total) (m)": 4.9172, + "Tp (total) (s)": 13.5522 + }, + { + "Date+Time": "1990-02-24T00:00:00Z", + "Hs (total) (m)": 4.2291, + "Tp (total) (s)": 14.745 + }, + { + "Date+Time": "1990-02-25T00:00:00Z", + "Hs (total) (m)": 3.7584, + "Tp (total) (s)": 14.7 + }, + { + "Date+Time": "1990-02-26T00:00:00Z", + "Hs (total) (m)": 3.9041, + "Tp (total) (s)": 10.6502 + }, + { + "Date+Time": "1990-02-27T00:00:00Z", + "Hs (total) (m)": 5.0434, + "Tp (total) (s)": 13.7294 + }, + { + "Date+Time": "1990-02-28T00:00:00Z", + "Hs (total) (m)": 5.7163, + "Tp (total) (s)": 14.5873 + }, + { + "Date+Time": "1990-03-01T00:00:00Z", + "Hs (total) (m)": 5.1631, + "Tp (total) (s)": 15.3837 + }, + { + "Date+Time": "1990-03-02T00:00:00Z", + "Hs (total) (m)": 3.515, + "Tp (total) (s)": 14.3803 + }, + { + "Date+Time": "1990-03-03T00:00:00Z", + "Hs (total) (m)": 2.7909, + "Tp (total) (s)": 12.1845 + }, + { + "Date+Time": "1990-03-04T00:00:00Z", + "Hs (total) (m)": 3.3242, + "Tp (total) (s)": 11.198 + }, + { + "Date+Time": "1990-03-05T00:00:00Z", + "Hs (total) (m)": 2.9298, + "Tp (total) (s)": 11.2468 + }, + { + "Date+Time": "1990-03-06T00:00:00Z", + "Hs (total) (m)": 2.8054, + "Tp (total) (s)": 11.4879 + }, + { + "Date+Time": "1990-03-07T00:00:00Z", + "Hs (total) (m)": 3.0, + "Tp (total) (s)": 12.2021 + }, + { + "Date+Time": "1990-03-08T00:00:00Z", + "Hs (total) (m)": 3.0686, + "Tp (total) (s)": 12.1891 + }, + { + "Date+Time": "1990-03-09T00:00:00Z", + "Hs (total) (m)": 3.0717, + "Tp (total) (s)": 11.8175 + }, + { + "Date+Time": "1990-03-10T00:00:00Z", + "Hs (total) (m)": 2.8756, + "Tp (total) (s)": 10.921 + }, + { + "Date+Time": "1990-03-11T00:00:00Z", + "Hs (total) (m)": 3.3357, + "Tp (total) (s)": 10.9043 + }, + { + "Date+Time": "1990-03-12T00:00:00Z", + "Hs (total) (m)": 3.0953, + "Tp (total) (s)": 11.3544 + }, + { + "Date+Time": "1990-03-13T00:00:00Z", + "Hs (total) (m)": 3.3227, + "Tp (total) (s)": 15.0868 + }, + { + "Date+Time": "1990-03-14T00:00:00Z", + "Hs (total) (m)": 3.2975, + "Tp (total) (s)": 10.6029 + }, + { + "Date+Time": "1990-03-15T00:00:00Z", + "Hs (total) (m)": 3.8255, + "Tp (total) (s)": 11.285 + }, + { + "Date+Time": "1990-03-16T00:00:00Z", + "Hs (total) (m)": 3.9476, + "Tp (total) (s)": 11.4818 + }, + { + "Date+Time": "1990-03-17T00:00:00Z", + "Hs (total) (m)": 3.6401, + "Tp (total) (s)": 11.8282 + }, + { + "Date+Time": "1990-03-18T00:00:00Z", + "Hs (total) (m)": 3.0686, + "Tp (total) (s)": 11.7748 + }, + { + "Date+Time": "1990-03-19T00:00:00Z", + "Hs (total) (m)": 2.8184, + "Tp (total) (s)": 11.5223 + }, + { + "Date+Time": "1990-03-20T00:00:00Z", + "Hs (total) (m)": 2.5468, + "Tp (total) (s)": 11.2476 + }, + { + "Date+Time": "1990-03-21T00:00:00Z", + "Hs (total) (m)": 2.749, + "Tp (total) (s)": 10.5586 + }, + { + "Date+Time": "1990-03-22T00:00:00Z", + "Hs (total) (m)": 2.8474, + "Tp (total) (s)": 10.5831 + }, + { + "Date+Time": "1990-03-23T00:00:00Z", + "Hs (total) (m)": 2.9191, + "Tp (total) (s)": 13.8096 + }, + { + "Date+Time": "1990-03-24T00:00:00Z", + "Hs (total) (m)": 3.534, + "Tp (total) (s)": 12.9353 + }, + { + "Date+Time": "1990-03-25T00:00:00Z", + "Hs (total) (m)": 3.5287, + "Tp (total) (s)": 13.7127 + }, + { + "Date+Time": "1990-03-26T00:00:00Z", + "Hs (total) (m)": 3.3448, + "Tp (total) (s)": 13.992 + }, + { + "Date+Time": "1990-03-27T00:00:00Z", + "Hs (total) (m)": 2.4689, + "Tp (total) (s)": 13.6021 + }, + { + "Date+Time": "1990-03-28T00:00:00Z", + "Hs (total) (m)": 1.8509, + "Tp (total) (s)": 11.5909 + }, + { + "Date+Time": "1990-03-29T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "1990-03-30T00:00:00Z", + "Hs (total) (m)": 1.5549, + "Tp (total) (s)": 10.2557 + }, + { + "Date+Time": "1990-03-31T00:00:00Z", + "Hs (total) (m)": 1.3512, + "Tp (total) (s)": 10.1764 + }, + { + "Date+Time": "1990-04-01T00:00:00Z", + "Hs (total) (m)": 1.4267, + "Tp (total) (s)": 10.8066 + }, + { + "Date+Time": "1990-04-02T00:00:00Z", + "Hs (total) (m)": 1.3001, + "Tp (total) (s)": 11.1362 + }, + { + "Date+Time": "1990-04-03T00:00:00Z", + "Hs (total) (m)": 1.4191, + "Tp (total) (s)": 10.4122 + }, + { + "Date+Time": "1990-04-04T00:00:00Z", + "Hs (total) (m)": 1.3138, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "1990-04-05T00:00:00Z", + "Hs (total) (m)": 1.6663, + "Tp (total) (s)": 10.033 + }, + { + "Date+Time": "1990-04-06T00:00:00Z", + "Hs (total) (m)": 1.822, + "Tp (total) (s)": 10.2832 + }, + { + "Date+Time": "1990-04-07T00:00:00Z", + "Hs (total) (m)": 1.5893, + "Tp (total) (s)": 9.3287 + }, + { + "Date+Time": "1990-04-08T00:00:00Z", + "Hs (total) (m)": 1.5839, + "Tp (total) (s)": 9.1647 + }, + { + "Date+Time": "1990-04-09T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 12.7995 + }, + { + "Date+Time": "1990-04-10T00:00:00Z", + "Hs (total) (m)": 1.0369, + "Tp (total) (s)": 9.1914 + }, + { + "Date+Time": "1990-04-11T00:00:00Z", + "Hs (total) (m)": 1.3787, + "Tp (total) (s)": 8.388 + }, + { + "Date+Time": "1990-04-12T00:00:00Z", + "Hs (total) (m)": 2.3827, + "Tp (total) (s)": 14.5985 + }, + { + "Date+Time": "1990-04-13T00:00:00Z", + "Hs (total) (m)": 2.8649, + "Tp (total) (s)": 13.9004 + }, + { + "Date+Time": "1990-04-14T00:00:00Z", + "Hs (total) (m)": 2.6055, + "Tp (total) (s)": 12.0518 + }, + { + "Date+Time": "1990-04-15T00:00:00Z", + "Hs (total) (m)": 2.7375, + "Tp (total) (s)": 11.8969 + }, + { + "Date+Time": "1990-04-16T00:00:00Z", + "Hs (total) (m)": 3.0801, + "Tp (total) (s)": 12.5889 + }, + { + "Date+Time": "1990-04-17T00:00:00Z", + "Hs (total) (m)": 3.3822, + "Tp (total) (s)": 13.8096 + }, + { + "Date+Time": "1990-04-18T00:00:00Z", + "Hs (total) (m)": 3.5264, + "Tp (total) (s)": 13.9126 + }, + { + "Date+Time": "1990-04-19T00:00:00Z", + "Hs (total) (m)": 3.193, + "Tp (total) (s)": 13.7814 + }, + { + "Date+Time": "1990-04-20T00:00:00Z", + "Hs (total) (m)": 2.8428, + "Tp (total) (s)": 13.0009 + }, + { + "Date+Time": "1990-04-21T00:00:00Z", + "Hs (total) (m)": 1.9181, + "Tp (total) (s)": 11.5711 + }, + { + "Date+Time": "1990-04-22T00:00:00Z", + "Hs (total) (m)": 1.4115, + "Tp (total) (s)": 11.2125 + }, + { + "Date+Time": "1990-04-23T00:00:00Z", + "Hs (total) (m)": 0.8934, + "Tp (total) (s)": 9.7415 + }, + { + "Date+Time": "1990-04-24T00:00:00Z", + "Hs (total) (m)": 0.8286, + "Tp (total) (s)": 10.3 + }, + { + "Date+Time": "1990-04-25T00:00:00Z", + "Hs (total) (m)": 0.9087, + "Tp (total) (s)": 12.2311 + }, + { + "Date+Time": "1990-04-26T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 11.3819 + }, + { + "Date+Time": "1990-04-27T00:00:00Z", + "Hs (total) (m)": 1.4092, + "Tp (total) (s)": 10.1344 + }, + { + "Date+Time": "1990-04-28T00:00:00Z", + "Hs (total) (m)": 1.5809, + "Tp (total) (s)": 12.1982 + }, + { + "Date+Time": "1990-04-29T00:00:00Z", + "Hs (total) (m)": 1.6709, + "Tp (total) (s)": 11.7168 + }, + { + "Date+Time": "1990-04-30T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 11.082 + }, + { + "Date+Time": "1990-05-01T00:00:00Z", + "Hs (total) (m)": 1.4206, + "Tp (total) (s)": 10.3946 + }, + { + "Date+Time": "1990-05-02T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 10.4244 + }, + { + "Date+Time": "1990-05-03T00:00:00Z", + "Hs (total) (m)": 1.4046, + "Tp (total) (s)": 11.227 + }, + { + "Date+Time": "1990-05-04T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 11.2362 + }, + { + "Date+Time": "1990-05-05T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 11.2545 + }, + { + "Date+Time": "1990-05-06T00:00:00Z", + "Hs (total) (m)": 1.0636, + "Tp (total) (s)": 11.6512 + }, + { + "Date+Time": "1990-05-07T00:00:00Z", + "Hs (total) (m)": 0.9087, + "Tp (total) (s)": 10.0467 + }, + { + "Date+Time": "1990-05-08T00:00:00Z", + "Hs (total) (m)": 0.8683, + "Tp (total) (s)": 9.1533 + }, + { + "Date+Time": "1990-05-09T00:00:00Z", + "Hs (total) (m)": 0.8873, + "Tp (total) (s)": 8.5627 + }, + { + "Date+Time": "1990-05-10T00:00:00Z", + "Hs (total) (m)": 0.811, + "Tp (total) (s)": 7.9333 + }, + { + "Date+Time": "1990-05-11T00:00:00Z", + "Hs (total) (m)": 0.8873, + "Tp (total) (s)": 13.0764 + }, + { + "Date+Time": "1990-05-12T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 12.5469 + }, + { + "Date+Time": "1990-05-13T00:00:00Z", + "Hs (total) (m)": 1.2284, + "Tp (total) (s)": 12.0846 + }, + { + "Date+Time": "1990-05-14T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 11.465 + }, + { + "Date+Time": "1990-05-15T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 10.4778 + }, + { + "Date+Time": "1990-05-16T00:00:00Z", + "Hs (total) (m)": 1.2467, + "Tp (total) (s)": 9.5614 + }, + { + "Date+Time": "1990-05-17T00:00:00Z", + "Hs (total) (m)": 1.1551, + "Tp (total) (s)": 9.0732 + }, + { + "Date+Time": "1990-05-18T00:00:00Z", + "Hs (total) (m)": 0.9941, + "Tp (total) (s)": 8.8839 + }, + { + "Date+Time": "1990-05-19T00:00:00Z", + "Hs (total) (m)": 0.9064, + "Tp (total) (s)": 8.6955 + }, + { + "Date+Time": "1990-05-20T00:00:00Z", + "Hs (total) (m)": 0.8713, + "Tp (total) (s)": 8.5551 + }, + { + "Date+Time": "1990-05-21T00:00:00Z", + "Hs (total) (m)": 0.4357, + "Tp (total) (s)": 8.5566 + }, + { + "Date+Time": "1990-05-22T00:00:00Z", + "Hs (total) (m)": 0.2945, + "Tp (total) (s)": 2.0638 + }, + { + "Date+Time": "1990-05-23T00:00:00Z", + "Hs (total) (m)": 0.3807, + "Tp (total) (s)": 2.2492 + }, + { + "Date+Time": "1990-05-24T00:00:00Z", + "Hs (total) (m)": 0.5165, + "Tp (total) (s)": 10.2206 + }, + { + "Date+Time": "1990-05-25T00:00:00Z", + "Hs (total) (m)": 0.602, + "Tp (total) (s)": 8.9351 + }, + { + "Date+Time": "1990-05-26T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 7.9279 + }, + { + "Date+Time": "1990-05-27T00:00:00Z", + "Hs (total) (m)": 0.8934, + "Tp (total) (s)": 9.4165 + }, + { + "Date+Time": "1990-05-28T00:00:00Z", + "Hs (total) (m)": 0.663, + "Tp (total) (s)": 9.386 + }, + { + "Date+Time": "1990-05-29T00:00:00Z", + "Hs (total) (m)": 0.9499, + "Tp (total) (s)": 9.2578 + }, + { + "Date+Time": "1990-05-30T00:00:00Z", + "Hs (total) (m)": 0.8377, + "Tp (total) (s)": 8.536 + }, + { + "Date+Time": "1990-05-31T00:00:00Z", + "Hs (total) (m)": 1.1208, + "Tp (total) (s)": 9.4157 + }, + { + "Date+Time": "1990-06-01T00:00:00Z", + "Hs (total) (m)": 1.5419, + "Tp (total) (s)": 9.0983 + }, + { + "Date+Time": "1990-06-02T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 8.7954 + }, + { + "Date+Time": "1990-06-03T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 9.3806 + }, + { + "Date+Time": "1990-06-04T00:00:00Z", + "Hs (total) (m)": 1.5839, + "Tp (total) (s)": 8.7542 + }, + { + "Date+Time": "1990-06-05T00:00:00Z", + "Hs (total) (m)": 1.989, + "Tp (total) (s)": 13.7379 + }, + { + "Date+Time": "1990-06-06T00:00:00Z", + "Hs (total) (m)": 2.0997, + "Tp (total) (s)": 13.4289 + }, + { + "Date+Time": "1990-06-07T00:00:00Z", + "Hs (total) (m)": 2.0676, + "Tp (total) (s)": 11.9633 + }, + { + "Date+Time": "1990-06-08T00:00:00Z", + "Hs (total) (m)": 1.9539, + "Tp (total) (s)": 11.0775 + }, + { + "Date+Time": "1990-06-09T00:00:00Z", + "Hs (total) (m)": 1.8509, + "Tp (total) (s)": 11.0904 + }, + { + "Date+Time": "1990-06-10T00:00:00Z", + "Hs (total) (m)": 1.5831, + "Tp (total) (s)": 8.6848 + }, + { + "Date+Time": "1990-06-11T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 8.4773 + }, + { + "Date+Time": "1990-06-12T00:00:00Z", + "Hs (total) (m)": 1.0178, + "Tp (total) (s)": 8.4094 + }, + { + "Date+Time": "1990-06-13T00:00:00Z", + "Hs (total) (m)": 0.8637, + "Tp (total) (s)": 9.4386 + }, + { + "Date+Time": "1990-06-14T00:00:00Z", + "Hs (total) (m)": 0.7698, + "Tp (total) (s)": 9.5103 + }, + { + "Date+Time": "1990-06-15T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 8.5589 + }, + { + "Date+Time": "1990-06-16T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 13.5029 + }, + { + "Date+Time": "1990-06-17T00:00:00Z", + "Hs (total) (m)": 1.4451, + "Tp (total) (s)": 13.3946 + }, + { + "Date+Time": "1990-06-18T00:00:00Z", + "Hs (total) (m)": 1.8975, + "Tp (total) (s)": 12.9948 + }, + { + "Date+Time": "1990-06-19T00:00:00Z", + "Hs (total) (m)": 1.735, + "Tp (total) (s)": 12.4264 + }, + { + "Date+Time": "1990-06-20T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 11.1141 + }, + { + "Date+Time": "1990-06-21T00:00:00Z", + "Hs (total) (m)": 1.6594, + "Tp (total) (s)": 11.3865 + }, + { + "Date+Time": "1990-06-22T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 11.3117 + }, + { + "Date+Time": "1990-06-23T00:00:00Z", + "Hs (total) (m)": 1.6442, + "Tp (total) (s)": 11.298 + }, + { + "Date+Time": "1990-06-24T00:00:00Z", + "Hs (total) (m)": 1.7518, + "Tp (total) (s)": 11.2049 + }, + { + "Date+Time": "1990-06-25T00:00:00Z", + "Hs (total) (m)": 1.7357, + "Tp (total) (s)": 9.3333 + }, + { + "Date+Time": "1990-06-26T00:00:00Z", + "Hs (total) (m)": 1.471, + "Tp (total) (s)": 8.5696 + }, + { + "Date+Time": "1990-06-27T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 8.6818 + }, + { + "Date+Time": "1990-06-28T00:00:00Z", + "Hs (total) (m)": 1.3092, + "Tp (total) (s)": 8.8267 + }, + { + "Date+Time": "1990-06-29T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 8.9579 + }, + { + "Date+Time": "1990-06-30T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 8.61 + }, + { + "Date+Time": "1990-07-01T00:00:00Z", + "Hs (total) (m)": 1.4008, + "Tp (total) (s)": 8.6802 + }, + { + "Date+Time": "1990-07-02T00:00:00Z", + "Hs (total) (m)": 1.5404, + "Tp (total) (s)": 8.6833 + }, + { + "Date+Time": "1990-07-03T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 8.6489 + }, + { + "Date+Time": "1990-07-04T00:00:00Z", + "Hs (total) (m)": 1.6289, + "Tp (total) (s)": 5.8283 + }, + { + "Date+Time": "1990-07-05T00:00:00Z", + "Hs (total) (m)": 2.8321, + "Tp (total) (s)": 10.3008 + }, + { + "Date+Time": "1990-07-06T00:00:00Z", + "Hs (total) (m)": 2.0295, + "Tp (total) (s)": 10.0536 + }, + { + "Date+Time": "1990-07-07T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 8.4826 + }, + { + "Date+Time": "1990-07-08T00:00:00Z", + "Hs (total) (m)": 1.9143, + "Tp (total) (s)": 8.1973 + }, + { + "Date+Time": "1990-07-09T00:00:00Z", + "Hs (total) (m)": 2.6307, + "Tp (total) (s)": 11.4902 + }, + { + "Date+Time": "1990-07-10T00:00:00Z", + "Hs (total) (m)": 2.6337, + "Tp (total) (s)": 11.8915 + }, + { + "Date+Time": "1990-07-11T00:00:00Z", + "Hs (total) (m)": 2.0348, + "Tp (total) (s)": 11.3758 + }, + { + "Date+Time": "1990-07-12T00:00:00Z", + "Hs (total) (m)": 1.4023, + "Tp (total) (s)": 9.8689 + }, + { + "Date+Time": "1990-07-13T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 11.195 + }, + { + "Date+Time": "1990-07-14T00:00:00Z", + "Hs (total) (m)": 1.2238, + "Tp (total) (s)": 10.8783 + }, + { + "Date+Time": "1990-07-15T00:00:00Z", + "Hs (total) (m)": 1.0819, + "Tp (total) (s)": 8.9793 + }, + { + "Date+Time": "1990-07-16T00:00:00Z", + "Hs (total) (m)": 0.7866, + "Tp (total) (s)": 9.3326 + }, + { + "Date+Time": "1990-07-17T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 9.2677 + }, + { + "Date+Time": "1990-07-18T00:00:00Z", + "Hs (total) (m)": 0.8614, + "Tp (total) (s)": 8.9412 + }, + { + "Date+Time": "1990-07-19T00:00:00Z", + "Hs (total) (m)": 1.1505, + "Tp (total) (s)": 8.3232 + }, + { + "Date+Time": "1990-07-20T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 8.079 + }, + { + "Date+Time": "1990-07-21T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 7.8707 + }, + { + "Date+Time": "1990-07-22T00:00:00Z", + "Hs (total) (m)": 0.6905, + "Tp (total) (s)": 7.8852 + }, + { + "Date+Time": "1990-07-23T00:00:00Z", + "Hs (total) (m)": 0.6096, + "Tp (total) (s)": 8.0119 + }, + { + "Date+Time": "1990-07-24T00:00:00Z", + "Hs (total) (m)": 0.6249, + "Tp (total) (s)": 8.1889 + }, + { + "Date+Time": "1990-07-25T00:00:00Z", + "Hs (total) (m)": 0.5699, + "Tp (total) (s)": 7.9608 + }, + { + "Date+Time": "1990-07-26T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 8.6497 + }, + { + "Date+Time": "1990-07-27T00:00:00Z", + "Hs (total) (m)": 1.0994, + "Tp (total) (s)": 9.0327 + }, + { + "Date+Time": "1990-07-28T00:00:00Z", + "Hs (total) (m)": 0.9255, + "Tp (total) (s)": 8.8443 + }, + { + "Date+Time": "1990-07-29T00:00:00Z", + "Hs (total) (m)": 1.4122, + "Tp (total) (s)": 5.3072 + }, + { + "Date+Time": "1990-07-30T00:00:00Z", + "Hs (total) (m)": 2.3537, + "Tp (total) (s)": 9.1594 + }, + { + "Date+Time": "1990-07-31T00:00:00Z", + "Hs (total) (m)": 1.9509, + "Tp (total) (s)": 10.2992 + }, + { + "Date+Time": "1990-08-01T00:00:00Z", + "Hs (total) (m)": 2.3881, + "Tp (total) (s)": 8.9343 + }, + { + "Date+Time": "1990-08-02T00:00:00Z", + "Hs (total) (m)": 2.0631, + "Tp (total) (s)": 9.7179 + }, + { + "Date+Time": "1990-08-03T00:00:00Z", + "Hs (total) (m)": 1.6366, + "Tp (total) (s)": 9.3051 + }, + { + "Date+Time": "1990-08-04T00:00:00Z", + "Hs (total) (m)": 1.1124, + "Tp (total) (s)": 9.0213 + }, + { + "Date+Time": "1990-08-05T00:00:00Z", + "Hs (total) (m)": 1.12, + "Tp (total) (s)": 7.5083 + }, + { + "Date+Time": "1990-08-06T00:00:00Z", + "Hs (total) (m)": 1.0125, + "Tp (total) (s)": 7.3176 + }, + { + "Date+Time": "1990-08-07T00:00:00Z", + "Hs (total) (m)": 1.0025, + "Tp (total) (s)": 7.6479 + }, + { + "Date+Time": "1990-08-08T00:00:00Z", + "Hs (total) (m)": 0.9064, + "Tp (total) (s)": 7.8249 + }, + { + "Date+Time": "1990-08-09T00:00:00Z", + "Hs (total) (m)": 1.2734, + "Tp (total) (s)": 4.8555 + }, + { + "Date+Time": "1990-08-10T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 5.3591 + }, + { + "Date+Time": "1990-08-11T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 6.3845 + }, + { + "Date+Time": "1990-08-12T00:00:00Z", + "Hs (total) (m)": 1.6991, + "Tp (total) (s)": 10.5007 + }, + { + "Date+Time": "1990-08-13T00:00:00Z", + "Hs (total) (m)": 1.503, + "Tp (total) (s)": 10.2374 + }, + { + "Date+Time": "1990-08-14T00:00:00Z", + "Hs (total) (m)": 1.3329, + "Tp (total) (s)": 9.8216 + }, + { + "Date+Time": "1990-08-15T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 8.1248 + }, + { + "Date+Time": "1990-08-16T00:00:00Z", + "Hs (total) (m)": 1.783, + "Tp (total) (s)": 7.7532 + }, + { + "Date+Time": "1990-08-17T00:00:00Z", + "Hs (total) (m)": 1.9013, + "Tp (total) (s)": 8.3102 + }, + { + "Date+Time": "1990-08-18T00:00:00Z", + "Hs (total) (m)": 1.825, + "Tp (total) (s)": 8.2766 + }, + { + "Date+Time": "1990-08-19T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 8.0332 + }, + { + "Date+Time": "1990-08-20T00:00:00Z", + "Hs (total) (m)": 1.1521, + "Tp (total) (s)": 7.8967 + }, + { + "Date+Time": "1990-08-21T00:00:00Z", + "Hs (total) (m)": 1.3627, + "Tp (total) (s)": 7.3244 + }, + { + "Date+Time": "1990-08-22T00:00:00Z", + "Hs (total) (m)": 1.5099, + "Tp (total) (s)": 7.8715 + }, + { + "Date+Time": "1990-08-23T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 8.6276 + }, + { + "Date+Time": "1990-08-24T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 12.3524 + }, + { + "Date+Time": "1990-08-25T00:00:00Z", + "Hs (total) (m)": 1.1017, + "Tp (total) (s)": 11.639 + }, + { + "Date+Time": "1990-08-26T00:00:00Z", + "Hs (total) (m)": 1.0071, + "Tp (total) (s)": 8.9877 + }, + { + "Date+Time": "1990-08-27T00:00:00Z", + "Hs (total) (m)": 1.2223, + "Tp (total) (s)": 11.5093 + }, + { + "Date+Time": "1990-08-28T00:00:00Z", + "Hs (total) (m)": 1.4252, + "Tp (total) (s)": 11.3514 + }, + { + "Date+Time": "1990-08-29T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 8.7024 + }, + { + "Date+Time": "1990-08-30T00:00:00Z", + "Hs (total) (m)": 1.8006, + "Tp (total) (s)": 8.6108 + }, + { + "Date+Time": "1990-08-31T00:00:00Z", + "Hs (total) (m)": 2.1592, + "Tp (total) (s)": 11.2972 + }, + { + "Date+Time": "1990-09-01T00:00:00Z", + "Hs (total) (m)": 1.9539, + "Tp (total) (s)": 11.6024 + }, + { + "Date+Time": "1990-09-02T00:00:00Z", + "Hs (total) (m)": 1.7747, + "Tp (total) (s)": 11.3376 + }, + { + "Date+Time": "1990-09-03T00:00:00Z", + "Hs (total) (m)": 1.8731, + "Tp (total) (s)": 6.8949 + }, + { + "Date+Time": "1990-09-04T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 8.3964 + }, + { + "Date+Time": "1990-09-05T00:00:00Z", + "Hs (total) (m)": 1.8242, + "Tp (total) (s)": 8.829 + }, + { + "Date+Time": "1990-09-06T00:00:00Z", + "Hs (total) (m)": 2.1912, + "Tp (total) (s)": 9.2807 + }, + { + "Date+Time": "1990-09-07T00:00:00Z", + "Hs (total) (m)": 2.3667, + "Tp (total) (s)": 10.2451 + }, + { + "Date+Time": "1990-09-08T00:00:00Z", + "Hs (total) (m)": 1.8876, + "Tp (total) (s)": 10.5441 + }, + { + "Date+Time": "1990-09-09T00:00:00Z", + "Hs (total) (m)": 1.1902, + "Tp (total) (s)": 10.0383 + }, + { + "Date+Time": "1990-09-10T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 9.5393 + }, + { + "Date+Time": "1990-09-11T00:00:00Z", + "Hs (total) (m)": 0.7065, + "Tp (total) (s)": 9.3837 + }, + { + "Date+Time": "1990-09-12T00:00:00Z", + "Hs (total) (m)": 0.6478, + "Tp (total) (s)": 9.3295 + }, + { + "Date+Time": "1990-09-13T00:00:00Z", + "Hs (total) (m)": 0.6661, + "Tp (total) (s)": 10.2428 + }, + { + "Date+Time": "1990-09-14T00:00:00Z", + "Hs (total) (m)": 0.6729, + "Tp (total) (s)": 10.3107 + }, + { + "Date+Time": "1990-09-15T00:00:00Z", + "Hs (total) (m)": 0.7782, + "Tp (total) (s)": 10.1573 + }, + { + "Date+Time": "1990-09-16T00:00:00Z", + "Hs (total) (m)": 0.766, + "Tp (total) (s)": 10.3694 + }, + { + "Date+Time": "1990-09-17T00:00:00Z", + "Hs (total) (m)": 1.0193, + "Tp (total) (s)": 11.4551 + }, + { + "Date+Time": "1990-09-18T00:00:00Z", + "Hs (total) (m)": 1.5053, + "Tp (total) (s)": 12.6713 + }, + { + "Date+Time": "1990-09-19T00:00:00Z", + "Hs (total) (m)": 2.955, + "Tp (total) (s)": 9.3432 + }, + { + "Date+Time": "1990-09-20T00:00:00Z", + "Hs (total) (m)": 2.2271, + "Tp (total) (s)": 10.0314 + }, + { + "Date+Time": "1990-09-21T00:00:00Z", + "Hs (total) (m)": 2.2912, + "Tp (total) (s)": 12.9627 + }, + { + "Date+Time": "1990-09-22T00:00:00Z", + "Hs (total) (m)": 1.6671, + "Tp (total) (s)": 12.3646 + }, + { + "Date+Time": "1990-09-23T00:00:00Z", + "Hs (total) (m)": 1.5664, + "Tp (total) (s)": 8.7336 + }, + { + "Date+Time": "1990-09-24T00:00:00Z", + "Hs (total) (m)": 1.4718, + "Tp (total) (s)": 8.9297 + }, + { + "Date+Time": "1990-09-25T00:00:00Z", + "Hs (total) (m)": 1.355, + "Tp (total) (s)": 8.961 + }, + { + "Date+Time": "1990-09-26T00:00:00Z", + "Hs (total) (m)": 1.146, + "Tp (total) (s)": 9.2723 + }, + { + "Date+Time": "1990-09-27T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 9.389 + }, + { + "Date+Time": "1990-09-28T00:00:00Z", + "Hs (total) (m)": 0.9423, + "Tp (total) (s)": 8.8298 + }, + { + "Date+Time": "1990-09-29T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 9.2471 + }, + { + "Date+Time": "1990-09-30T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 9.0358 + }, + { + "Date+Time": "1990-10-01T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 9.1685 + }, + { + "Date+Time": "1990-10-02T00:00:00Z", + "Hs (total) (m)": 1.9539, + "Tp (total) (s)": 9.2578 + }, + { + "Date+Time": "1990-10-03T00:00:00Z", + "Hs (total) (m)": 1.7922, + "Tp (total) (s)": 8.5902 + }, + { + "Date+Time": "1990-10-04T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 10.2809 + }, + { + "Date+Time": "1990-10-05T00:00:00Z", + "Hs (total) (m)": 2.6994, + "Tp (total) (s)": 11.1194 + }, + { + "Date+Time": "1990-10-06T00:00:00Z", + "Hs (total) (m)": 3.3403, + "Tp (total) (s)": 9.4707 + }, + { + "Date+Time": "1990-10-07T00:00:00Z", + "Hs (total) (m)": 2.4796, + "Tp (total) (s)": 9.8964 + }, + { + "Date+Time": "1990-10-08T00:00:00Z", + "Hs (total) (m)": 1.7891, + "Tp (total) (s)": 10.3381 + }, + { + "Date+Time": "1990-10-09T00:00:00Z", + "Hs (total) (m)": 2.0859, + "Tp (total) (s)": 7.7921 + }, + { + "Date+Time": "1990-10-10T00:00:00Z", + "Hs (total) (m)": 1.9555, + "Tp (total) (s)": 9.4852 + }, + { + "Date+Time": "1990-10-11T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 9.8361 + }, + { + "Date+Time": "1990-10-12T00:00:00Z", + "Hs (total) (m)": 2.9702, + "Tp (total) (s)": 8.6283 + }, + { + "Date+Time": "1990-10-13T00:00:00Z", + "Hs (total) (m)": 2.7161, + "Tp (total) (s)": 10.5335 + }, + { + "Date+Time": "1990-10-14T00:00:00Z", + "Hs (total) (m)": 2.794, + "Tp (total) (s)": 11.3056 + }, + { + "Date+Time": "1990-10-15T00:00:00Z", + "Hs (total) (m)": 2.4361, + "Tp (total) (s)": 10.4617 + }, + { + "Date+Time": "1990-10-16T00:00:00Z", + "Hs (total) (m)": 1.7502, + "Tp (total) (s)": 10.4839 + }, + { + "Date+Time": "1990-10-17T00:00:00Z", + "Hs (total) (m)": 1.4489, + "Tp (total) (s)": 10.332 + }, + { + "Date+Time": "1990-10-18T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 9.6332 + }, + { + "Date+Time": "1990-10-19T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 8.9923 + }, + { + "Date+Time": "1990-10-20T00:00:00Z", + "Hs (total) (m)": 1.1589, + "Tp (total) (s)": 10.4205 + }, + { + "Date+Time": "1990-10-21T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 11.2171 + }, + { + "Date+Time": "1990-10-22T00:00:00Z", + "Hs (total) (m)": 1.587, + "Tp (total) (s)": 12.5652 + }, + { + "Date+Time": "1990-10-23T00:00:00Z", + "Hs (total) (m)": 1.722, + "Tp (total) (s)": 11.6848 + }, + { + "Date+Time": "1990-10-24T00:00:00Z", + "Hs (total) (m)": 2.1393, + "Tp (total) (s)": 15.3806 + }, + { + "Date+Time": "1990-10-25T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 12.0235 + }, + { + "Date+Time": "1990-10-26T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 10.7906 + }, + { + "Date+Time": "1990-10-27T00:00:00Z", + "Hs (total) (m)": 1.9501, + "Tp (total) (s)": 11.5436 + }, + { + "Date+Time": "1990-10-28T00:00:00Z", + "Hs (total) (m)": 2.1287, + "Tp (total) (s)": 11.6581 + }, + { + "Date+Time": "1990-10-29T00:00:00Z", + "Hs (total) (m)": 2.1516, + "Tp (total) (s)": 11.4132 + }, + { + "Date+Time": "1990-10-30T00:00:00Z", + "Hs (total) (m)": 2.9878, + "Tp (total) (s)": 10.7486 + }, + { + "Date+Time": "1990-10-31T00:00:00Z", + "Hs (total) (m)": 3.103, + "Tp (total) (s)": 11.3804 + }, + { + "Date+Time": "1990-11-01T00:00:00Z", + "Hs (total) (m)": 2.5231, + "Tp (total) (s)": 11.375 + }, + { + "Date+Time": "1990-11-02T00:00:00Z", + "Hs (total) (m)": 1.7617, + "Tp (total) (s)": 10.5922 + }, + { + "Date+Time": "1990-11-03T00:00:00Z", + "Hs (total) (m)": 1.2879, + "Tp (total) (s)": 9.9116 + }, + { + "Date+Time": "1990-11-04T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 9.5767 + }, + { + "Date+Time": "1990-11-05T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 12.1883 + }, + { + "Date+Time": "1990-11-06T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 11.23 + }, + { + "Date+Time": "1990-11-07T00:00:00Z", + "Hs (total) (m)": 1.0338, + "Tp (total) (s)": 10.8493 + }, + { + "Date+Time": "1990-11-08T00:00:00Z", + "Hs (total) (m)": 1.191, + "Tp (total) (s)": 4.4053 + }, + { + "Date+Time": "1990-11-09T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 15.0586 + }, + { + "Date+Time": "1990-11-10T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 10.6052 + }, + { + "Date+Time": "1990-11-11T00:00:00Z", + "Hs (total) (m)": 1.9486, + "Tp (total) (s)": 11.5032 + }, + { + "Date+Time": "1990-11-12T00:00:00Z", + "Hs (total) (m)": 2.0394, + "Tp (total) (s)": 11.4048 + }, + { + "Date+Time": "1990-11-13T00:00:00Z", + "Hs (total) (m)": 2.9206, + "Tp (total) (s)": 13.6082 + }, + { + "Date+Time": "1990-11-14T00:00:00Z", + "Hs (total) (m)": 2.4163, + "Tp (total) (s)": 11.6794 + }, + { + "Date+Time": "1990-11-15T00:00:00Z", + "Hs (total) (m)": 2.2149, + "Tp (total) (s)": 10.5518 + }, + { + "Date+Time": "1990-11-16T00:00:00Z", + "Hs (total) (m)": 2.2713, + "Tp (total) (s)": 10.2313 + }, + { + "Date+Time": "1990-11-17T00:00:00Z", + "Hs (total) (m)": 3.0099, + "Tp (total) (s)": 12.5645 + }, + { + "Date+Time": "1990-11-18T00:00:00Z", + "Hs (total) (m)": 3.0625, + "Tp (total) (s)": 12.0083 + }, + { + "Date+Time": "1990-11-19T00:00:00Z", + "Hs (total) (m)": 2.8466, + "Tp (total) (s)": 11.4551 + }, + { + "Date+Time": "1990-11-20T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 11.0492 + }, + { + "Date+Time": "1990-11-21T00:00:00Z", + "Hs (total) (m)": 1.9898, + "Tp (total) (s)": 10.6433 + }, + { + "Date+Time": "1990-11-22T00:00:00Z", + "Hs (total) (m)": 1.5854, + "Tp (total) (s)": 10.4495 + }, + { + "Date+Time": "1990-11-23T00:00:00Z", + "Hs (total) (m)": 2.3415, + "Tp (total) (s)": 7.107 + }, + { + "Date+Time": "1990-11-24T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 8.4902 + }, + { + "Date+Time": "1990-11-25T00:00:00Z", + "Hs (total) (m)": 1.8853, + "Tp (total) (s)": 13.9981 + }, + { + "Date+Time": "1990-11-26T00:00:00Z", + "Hs (total) (m)": 2.0493, + "Tp (total) (s)": 14.4833 + }, + { + "Date+Time": "1990-11-27T00:00:00Z", + "Hs (total) (m)": 1.5946, + "Tp (total) (s)": 14.2087 + }, + { + "Date+Time": "1990-11-28T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 12.2181 + }, + { + "Date+Time": "1990-11-29T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 9.8811 + }, + { + "Date+Time": "1990-11-30T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 17.1224 + }, + { + "Date+Time": "1990-12-01T00:00:00Z", + "Hs (total) (m)": 1.7693, + "Tp (total) (s)": 14.7893 + }, + { + "Date+Time": "1990-12-02T00:00:00Z", + "Hs (total) (m)": 1.5137, + "Tp (total) (s)": 13.3786 + }, + { + "Date+Time": "1990-12-03T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 10.3298 + }, + { + "Date+Time": "1990-12-04T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 12.4294 + }, + { + "Date+Time": "1990-12-05T00:00:00Z", + "Hs (total) (m)": 1.1277, + "Tp (total) (s)": 12.9582 + }, + { + "Date+Time": "1990-12-06T00:00:00Z", + "Hs (total) (m)": 1.1002, + "Tp (total) (s)": 12.4363 + }, + { + "Date+Time": "1990-12-07T00:00:00Z", + "Hs (total) (m)": 1.7022, + "Tp (total) (s)": 14.053 + }, + { + "Date+Time": "1990-12-08T00:00:00Z", + "Hs (total) (m)": 1.6892, + "Tp (total) (s)": 13.937 + }, + { + "Date+Time": "1990-12-09T00:00:00Z", + "Hs (total) (m)": 1.7403, + "Tp (total) (s)": 13.6006 + }, + { + "Date+Time": "1990-12-10T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 12.3867 + }, + { + "Date+Time": "1990-12-11T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 11.5871 + }, + { + "Date+Time": "1990-12-12T00:00:00Z", + "Hs (total) (m)": 1.5137, + "Tp (total) (s)": 11.5795 + }, + { + "Date+Time": "1990-12-13T00:00:00Z", + "Hs (total) (m)": 1.6633, + "Tp (total) (s)": 11.8603 + }, + { + "Date+Time": "1990-12-14T00:00:00Z", + "Hs (total) (m)": 1.5549, + "Tp (total) (s)": 11.5589 + }, + { + "Date+Time": "1990-12-15T00:00:00Z", + "Hs (total) (m)": 1.9433, + "Tp (total) (s)": 11.5383 + }, + { + "Date+Time": "1990-12-16T00:00:00Z", + "Hs (total) (m)": 1.7052, + "Tp (total) (s)": 11.3979 + }, + { + "Date+Time": "1990-12-17T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 12.2265 + }, + { + "Date+Time": "1990-12-18T00:00:00Z", + "Hs (total) (m)": 1.5709, + "Tp (total) (s)": 11.8068 + }, + { + "Date+Time": "1990-12-19T00:00:00Z", + "Hs (total) (m)": 1.1956, + "Tp (total) (s)": 12.1059 + }, + { + "Date+Time": "1990-12-20T00:00:00Z", + "Hs (total) (m)": 1.8807, + "Tp (total) (s)": 11.9617 + }, + { + "Date+Time": "1990-12-21T00:00:00Z", + "Hs (total) (m)": 3.0122, + "Tp (total) (s)": 11.639 + }, + { + "Date+Time": "1990-12-22T00:00:00Z", + "Hs (total) (m)": 3.4074, + "Tp (total) (s)": 11.2056 + }, + { + "Date+Time": "1990-12-23T00:00:00Z", + "Hs (total) (m)": 2.7734, + "Tp (total) (s)": 11.214 + }, + { + "Date+Time": "1990-12-24T00:00:00Z", + "Hs (total) (m)": 3.9018, + "Tp (total) (s)": 15.4447 + }, + { + "Date+Time": "1990-12-25T00:00:00Z", + "Hs (total) (m)": 4.5851, + "Tp (total) (s)": 15.0431 + }, + { + "Date+Time": "1990-12-26T00:00:00Z", + "Hs (total) (m)": 4.8857, + "Tp (total) (s)": 15.5086 + }, + { + "Date+Time": "1990-12-27T00:00:00Z", + "Hs (total) (m)": 5.6856, + "Tp (total) (s)": 15.2685 + }, + { + "Date+Time": "1990-12-28T00:00:00Z", + "Hs (total) (m)": 5.3138, + "Tp (total) (s)": 15.2976 + }, + { + "Date+Time": "1990-12-29T00:00:00Z", + "Hs (total) (m)": 5.0999, + "Tp (total) (s)": 15.315 + }, + { + "Date+Time": "1990-12-30T00:00:00Z", + "Hs (total) (m)": 4.8971, + "Tp (total) (s)": 15.4186 + }, + { + "Date+Time": "1990-12-31T00:00:00Z", + "Hs (total) (m)": 4.9249, + "Tp (total) (s)": 16.0066 + }, + { + "Date+Time": "1991-01-01T00:00:00Z", + "Hs (total) (m)": 3.2029, + "Tp (total) (s)": 13.7547 + }, + { + "Date+Time": "1991-01-02T00:00:00Z", + "Hs (total) (m)": 5.324, + "Tp (total) (s)": 11.5972 + }, + { + "Date+Time": "1991-01-03T00:00:00Z", + "Hs (total) (m)": 4.7525, + "Tp (total) (s)": 12.4828 + }, + { + "Date+Time": "1991-01-04T00:00:00Z", + "Hs (total) (m)": 5.334, + "Tp (total) (s)": 15.4108 + }, + { + "Date+Time": "1991-01-05T00:00:00Z", + "Hs (total) (m)": 5.2793, + "Tp (total) (s)": 15.147 + }, + { + "Date+Time": "1991-01-06T00:00:00Z", + "Hs (total) (m)": 7.1903, + "Tp (total) (s)": 15.8393 + }, + { + "Date+Time": "1991-01-07T00:00:00Z", + "Hs (total) (m)": 3.2334, + "Tp (total) (s)": 12.4882 + }, + { + "Date+Time": "1991-01-08T00:00:00Z", + "Hs (total) (m)": 3.2434, + "Tp (total) (s)": 11.3819 + }, + { + "Date+Time": "1991-01-09T00:00:00Z", + "Hs (total) (m)": 2.546, + "Tp (total) (s)": 11.5864 + }, + { + "Date+Time": "1991-01-10T00:00:00Z", + "Hs (total) (m)": 4.0185, + "Tp (total) (s)": 11.124 + }, + { + "Date+Time": "1991-01-11T00:00:00Z", + "Hs (total) (m)": 3.3685, + "Tp (total) (s)": 10.8036 + }, + { + "Date+Time": "1991-01-12T00:00:00Z", + "Hs (total) (m)": 2.0219, + "Tp (total) (s)": 10.6456 + }, + { + "Date+Time": "1991-01-13T00:00:00Z", + "Hs (total) (m)": 1.6953, + "Tp (total) (s)": 10.6021 + }, + { + "Date+Time": "1991-01-14T00:00:00Z", + "Hs (total) (m)": 4.3397, + "Tp (total) (s)": 15.3745 + }, + { + "Date+Time": "1991-01-15T00:00:00Z", + "Hs (total) (m)": 3.4951, + "Tp (total) (s)": 15.3981 + }, + { + "Date+Time": "1991-01-16T00:00:00Z", + "Hs (total) (m)": 2.5925, + "Tp (total) (s)": 11.0263 + }, + { + "Date+Time": "1991-01-17T00:00:00Z", + "Hs (total) (m)": 3.0099, + "Tp (total) (s)": 12.5965 + }, + { + "Date+Time": "1991-01-18T00:00:00Z", + "Hs (total) (m)": 2.6406, + "Tp (total) (s)": 12.6026 + }, + { + "Date+Time": "1991-01-19T00:00:00Z", + "Hs (total) (m)": 3.1861, + "Tp (total) (s)": 11.0614 + }, + { + "Date+Time": "1991-01-20T00:00:00Z", + "Hs (total) (m)": 3.9567, + "Tp (total) (s)": 11.9617 + }, + { + "Date+Time": "1991-01-21T00:00:00Z", + "Hs (total) (m)": 2.6986, + "Tp (total) (s)": 12.946 + }, + { + "Date+Time": "1991-01-22T00:00:00Z", + "Hs (total) (m)": 1.7991, + "Tp (total) (s)": 12.492 + }, + { + "Date+Time": "1991-01-23T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 12.566 + }, + { + "Date+Time": "1991-01-24T00:00:00Z", + "Hs (total) (m)": 1.5305, + "Tp (total) (s)": 11.4879 + }, + { + "Date+Time": "1991-01-25T00:00:00Z", + "Hs (total) (m)": 1.78, + "Tp (total) (s)": 14.9495 + }, + { + "Date+Time": "1991-01-26T00:00:00Z", + "Hs (total) (m)": 1.9761, + "Tp (total) (s)": 13.168 + }, + { + "Date+Time": "1991-01-27T00:00:00Z", + "Hs (total) (m)": 2.1187, + "Tp (total) (s)": 13.5212 + }, + { + "Date+Time": "1991-01-28T00:00:00Z", + "Hs (total) (m)": 2.0119, + "Tp (total) (s)": 11.3056 + }, + { + "Date+Time": "1991-01-29T00:00:00Z", + "Hs (total) (m)": 2.2782, + "Tp (total) (s)": 14.0057 + }, + { + "Date+Time": "1991-01-30T00:00:00Z", + "Hs (total) (m)": 1.9852, + "Tp (total) (s)": 13.6044 + }, + { + "Date+Time": "1991-01-31T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 11.6588 + }, + { + "Date+Time": "1991-02-01T00:00:00Z", + "Hs (total) (m)": 2.4247, + "Tp (total) (s)": 11.2896 + }, + { + "Date+Time": "1991-02-02T00:00:00Z", + "Hs (total) (m)": 2.192, + "Tp (total) (s)": 13.2603 + }, + { + "Date+Time": "1991-02-03T00:00:00Z", + "Hs (total) (m)": 2.5513, + "Tp (total) (s)": 16.7974 + }, + { + "Date+Time": "1991-02-04T00:00:00Z", + "Hs (total) (m)": 3.4204, + "Tp (total) (s)": 15.0891 + }, + { + "Date+Time": "1991-02-05T00:00:00Z", + "Hs (total) (m)": 2.1882, + "Tp (total) (s)": 13.1947 + }, + { + "Date+Time": "1991-02-06T00:00:00Z", + "Hs (total) (m)": 2.6063, + "Tp (total) (s)": 12.9765 + }, + { + "Date+Time": "1991-02-07T00:00:00Z", + "Hs (total) (m)": 1.7136, + "Tp (total) (s)": 6.5874 + }, + { + "Date+Time": "1991-02-08T00:00:00Z", + "Hs (total) (m)": 1.0506, + "Tp (total) (s)": 12.3356 + }, + { + "Date+Time": "1991-02-09T00:00:00Z", + "Hs (total) (m)": 0.6058, + "Tp (total) (s)": 2.8146 + }, + { + "Date+Time": "1991-02-10T00:00:00Z", + "Hs (total) (m)": 1.1902, + "Tp (total) (s)": 11.7664 + }, + { + "Date+Time": "1991-02-11T00:00:00Z", + "Hs (total) (m)": 1.0254, + "Tp (total) (s)": 10.5197 + }, + { + "Date+Time": "1991-02-12T00:00:00Z", + "Hs (total) (m)": 1.3337, + "Tp (total) (s)": 10.4343 + }, + { + "Date+Time": "1991-02-13T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 10.0818 + }, + { + "Date+Time": "1991-02-14T00:00:00Z", + "Hs (total) (m)": 0.9735, + "Tp (total) (s)": 9.2158 + }, + { + "Date+Time": "1991-02-15T00:00:00Z", + "Hs (total) (m)": 1.5732, + "Tp (total) (s)": 8.8 + }, + { + "Date+Time": "1991-02-16T00:00:00Z", + "Hs (total) (m)": 1.7739, + "Tp (total) (s)": 8.3918 + }, + { + "Date+Time": "1991-02-17T00:00:00Z", + "Hs (total) (m)": 1.7869, + "Tp (total) (s)": 13.0192 + }, + { + "Date+Time": "1991-02-18T00:00:00Z", + "Hs (total) (m)": 1.8036, + "Tp (total) (s)": 12.5301 + }, + { + "Date+Time": "1991-02-19T00:00:00Z", + "Hs (total) (m)": 1.9868, + "Tp (total) (s)": 11.3285 + }, + { + "Date+Time": "1991-02-20T00:00:00Z", + "Hs (total) (m)": 1.8906, + "Tp (total) (s)": 10.8249 + }, + { + "Date+Time": "1991-02-21T00:00:00Z", + "Hs (total) (m)": 2.3476, + "Tp (total) (s)": 10.4198 + }, + { + "Date+Time": "1991-02-22T00:00:00Z", + "Hs (total) (m)": 2.2614, + "Tp (total) (s)": 11.5009 + }, + { + "Date+Time": "1991-02-23T00:00:00Z", + "Hs (total) (m)": 3.5943, + "Tp (total) (s)": 11.4063 + }, + { + "Date+Time": "1991-02-24T00:00:00Z", + "Hs (total) (m)": 3.6012, + "Tp (total) (s)": 13.8829 + }, + { + "Date+Time": "1991-02-25T00:00:00Z", + "Hs (total) (m)": 2.3759, + "Tp (total) (s)": 11.9678 + }, + { + "Date+Time": "1991-02-26T00:00:00Z", + "Hs (total) (m)": 3.3013, + "Tp (total) (s)": 13.0642 + }, + { + "Date+Time": "1991-02-27T00:00:00Z", + "Hs (total) (m)": 3.7172, + "Tp (total) (s)": 16.7104 + }, + { + "Date+Time": "1991-02-28T00:00:00Z", + "Hs (total) (m)": 2.4133, + "Tp (total) (s)": 14.0927 + }, + { + "Date+Time": "1991-03-01T00:00:00Z", + "Hs (total) (m)": 1.5748, + "Tp (total) (s)": 12.6354 + }, + { + "Date+Time": "1991-03-02T00:00:00Z", + "Hs (total) (m)": 2.3507, + "Tp (total) (s)": 11.8282 + }, + { + "Date+Time": "1991-03-03T00:00:00Z", + "Hs (total) (m)": 3.8797, + "Tp (total) (s)": 16.7226 + }, + { + "Date+Time": "1991-03-04T00:00:00Z", + "Hs (total) (m)": 2.736, + "Tp (total) (s)": 15.1997 + }, + { + "Date+Time": "1991-03-05T00:00:00Z", + "Hs (total) (m)": 2.9283, + "Tp (total) (s)": 12.7621 + }, + { + "Date+Time": "1991-03-06T00:00:00Z", + "Hs (total) (m)": 1.7151, + "Tp (total) (s)": 10.9142 + }, + { + "Date+Time": "1991-03-07T00:00:00Z", + "Hs (total) (m)": 1.9791, + "Tp (total) (s)": 13.995 + }, + { + "Date+Time": "1991-03-08T00:00:00Z", + "Hs (total) (m)": 1.1681, + "Tp (total) (s)": 11.7321 + }, + { + "Date+Time": "1991-03-09T00:00:00Z", + "Hs (total) (m)": 0.6767, + "Tp (total) (s)": 8.2034 + }, + { + "Date+Time": "1991-03-10T00:00:00Z", + "Hs (total) (m)": 0.7965, + "Tp (total) (s)": 8.594 + }, + { + "Date+Time": "1991-03-11T00:00:00Z", + "Hs (total) (m)": 1.1322, + "Tp (total) (s)": 10.435 + }, + { + "Date+Time": "1991-03-12T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 9.6568 + }, + { + "Date+Time": "1991-03-13T00:00:00Z", + "Hs (total) (m)": 1.9402, + "Tp (total) (s)": 12.2143 + }, + { + "Date+Time": "1991-03-14T00:00:00Z", + "Hs (total) (m)": 1.6701, + "Tp (total) (s)": 12.5744 + }, + { + "Date+Time": "1991-03-15T00:00:00Z", + "Hs (total) (m)": 1.6007, + "Tp (total) (s)": 10.6899 + }, + { + "Date+Time": "1991-03-16T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 12.2478 + }, + { + "Date+Time": "1991-03-17T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 11.4216 + }, + { + "Date+Time": "1991-03-18T00:00:00Z", + "Hs (total) (m)": 2.0157, + "Tp (total) (s)": 12.672 + }, + { + "Date+Time": "1991-03-19T00:00:00Z", + "Hs (total) (m)": 3.7454, + "Tp (total) (s)": 10.1924 + }, + { + "Date+Time": "1991-03-20T00:00:00Z", + "Hs (total) (m)": 2.9603, + "Tp (total) (s)": 11.8152 + }, + { + "Date+Time": "1991-03-21T00:00:00Z", + "Hs (total) (m)": 2.224, + "Tp (total) (s)": 12.8559 + }, + { + "Date+Time": "1991-03-22T00:00:00Z", + "Hs (total) (m)": 1.6511, + "Tp (total) (s)": 11.5467 + }, + { + "Date+Time": "1991-03-23T00:00:00Z", + "Hs (total) (m)": 1.2963, + "Tp (total) (s)": 10.3473 + }, + { + "Date+Time": "1991-03-24T00:00:00Z", + "Hs (total) (m)": 1.0887, + "Tp (total) (s)": 14.5505 + }, + { + "Date+Time": "1991-03-25T00:00:00Z", + "Hs (total) (m)": 1.5069, + "Tp (total) (s)": 12.7903 + }, + { + "Date+Time": "1991-03-26T00:00:00Z", + "Hs (total) (m)": 1.3665, + "Tp (total) (s)": 11.3712 + }, + { + "Date+Time": "1991-03-27T00:00:00Z", + "Hs (total) (m)": 1.4878, + "Tp (total) (s)": 11.3315 + }, + { + "Date+Time": "1991-03-28T00:00:00Z", + "Hs (total) (m)": 1.532, + "Tp (total) (s)": 14.8961 + }, + { + "Date+Time": "1991-03-29T00:00:00Z", + "Hs (total) (m)": 1.0834, + "Tp (total) (s)": 12.4485 + }, + { + "Date+Time": "1991-03-30T00:00:00Z", + "Hs (total) (m)": 0.6455, + "Tp (total) (s)": 10.361 + }, + { + "Date+Time": "1991-03-31T00:00:00Z", + "Hs (total) (m)": 0.8126, + "Tp (total) (s)": 10.3671 + }, + { + "Date+Time": "1991-04-01T00:00:00Z", + "Hs (total) (m)": 1.986, + "Tp (total) (s)": 10.448 + }, + { + "Date+Time": "1991-04-02T00:00:00Z", + "Hs (total) (m)": 3.7484, + "Tp (total) (s)": 11.3598 + }, + { + "Date+Time": "1991-04-03T00:00:00Z", + "Hs (total) (m)": 2.9565, + "Tp (total) (s)": 11.8725 + }, + { + "Date+Time": "1991-04-04T00:00:00Z", + "Hs (total) (m)": 3.6172, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "1991-04-05T00:00:00Z", + "Hs (total) (m)": 5.2507, + "Tp (total) (s)": 13.697 + }, + { + "Date+Time": "1991-04-06T00:00:00Z", + "Hs (total) (m)": 2.4461, + "Tp (total) (s)": 12.3531 + }, + { + "Date+Time": "1991-04-07T00:00:00Z", + "Hs (total) (m)": 6.6363, + "Tp (total) (s)": 14.7312 + }, + { + "Date+Time": "1991-04-08T00:00:00Z", + "Hs (total) (m)": 2.9786, + "Tp (total) (s)": 12.3348 + }, + { + "Date+Time": "1991-04-09T00:00:00Z", + "Hs (total) (m)": 2.2553, + "Tp (total) (s)": 10.229 + }, + { + "Date+Time": "1991-04-10T00:00:00Z", + "Hs (total) (m)": 3.2563, + "Tp (total) (s)": 12.5263 + }, + { + "Date+Time": "1991-04-11T00:00:00Z", + "Hs (total) (m)": 2.6109, + "Tp (total) (s)": 10.2298 + }, + { + "Date+Time": "1991-04-12T00:00:00Z", + "Hs (total) (m)": 1.7869, + "Tp (total) (s)": 8.8855 + }, + { + "Date+Time": "1991-04-13T00:00:00Z", + "Hs (total) (m)": 1.0109, + "Tp (total) (s)": 7.6769 + }, + { + "Date+Time": "1991-04-14T00:00:00Z", + "Hs (total) (m)": 0.9117, + "Tp (total) (s)": 10.2733 + }, + { + "Date+Time": "1991-04-15T00:00:00Z", + "Hs (total) (m)": 0.9888, + "Tp (total) (s)": 10.5464 + }, + { + "Date+Time": "1991-04-16T00:00:00Z", + "Hs (total) (m)": 0.8683, + "Tp (total) (s)": 11.1232 + }, + { + "Date+Time": "1991-04-17T00:00:00Z", + "Hs (total) (m)": 0.7057, + "Tp (total) (s)": 2.6704 + }, + { + "Date+Time": "1991-04-18T00:00:00Z", + "Hs (total) (m)": 0.8675, + "Tp (total) (s)": 13.0512 + }, + { + "Date+Time": "1991-04-19T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 4.3916 + }, + { + "Date+Time": "1991-04-20T00:00:00Z", + "Hs (total) (m)": 0.8576, + "Tp (total) (s)": 10.39 + }, + { + "Date+Time": "1991-04-21T00:00:00Z", + "Hs (total) (m)": 0.7782, + "Tp (total) (s)": 6.122 + }, + { + "Date+Time": "1991-04-22T00:00:00Z", + "Hs (total) (m)": 0.9239, + "Tp (total) (s)": 7.8455 + }, + { + "Date+Time": "1991-04-23T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 10.3732 + }, + { + "Date+Time": "1991-04-24T00:00:00Z", + "Hs (total) (m)": 1.9585, + "Tp (total) (s)": 8.1919 + }, + { + "Date+Time": "1991-04-25T00:00:00Z", + "Hs (total) (m)": 1.6221, + "Tp (total) (s)": 11.7344 + }, + { + "Date+Time": "1991-04-26T00:00:00Z", + "Hs (total) (m)": 1.3726, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "1991-04-27T00:00:00Z", + "Hs (total) (m)": 2.1828, + "Tp (total) (s)": 10.5869 + }, + { + "Date+Time": "1991-04-28T00:00:00Z", + "Hs (total) (m)": 1.4008, + "Tp (total) (s)": 10.5396 + }, + { + "Date+Time": "1991-04-29T00:00:00Z", + "Hs (total) (m)": 1.5313, + "Tp (total) (s)": 10.6365 + }, + { + "Date+Time": "1991-04-30T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 9.5447 + }, + { + "Date+Time": "1991-05-01T00:00:00Z", + "Hs (total) (m)": 0.9873, + "Tp (total) (s)": 10.2634 + }, + { + "Date+Time": "1991-05-02T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 9.9384 + }, + { + "Date+Time": "1991-05-03T00:00:00Z", + "Hs (total) (m)": 0.8126, + "Tp (total) (s)": 5.7131 + }, + { + "Date+Time": "1991-05-04T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 5.9389 + }, + { + "Date+Time": "1991-05-05T00:00:00Z", + "Hs (total) (m)": 0.9659, + "Tp (total) (s)": 6.9788 + }, + { + "Date+Time": "1991-05-06T00:00:00Z", + "Hs (total) (m)": 0.8118, + "Tp (total) (s)": 6.2616 + }, + { + "Date+Time": "1991-05-07T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 7.0444 + }, + { + "Date+Time": "1991-05-08T00:00:00Z", + "Hs (total) (m)": 0.9163, + "Tp (total) (s)": 8.3483 + }, + { + "Date+Time": "1991-05-09T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 7.3016 + }, + { + "Date+Time": "1991-05-10T00:00:00Z", + "Hs (total) (m)": 1.175, + "Tp (total) (s)": 12.4569 + }, + { + "Date+Time": "1991-05-11T00:00:00Z", + "Hs (total) (m)": 1.455, + "Tp (total) (s)": 10.5045 + }, + { + "Date+Time": "1991-05-12T00:00:00Z", + "Hs (total) (m)": 1.1216, + "Tp (total) (s)": 8.8298 + }, + { + "Date+Time": "1991-05-13T00:00:00Z", + "Hs (total) (m)": 1.8136, + "Tp (total) (s)": 8.8374 + }, + { + "Date+Time": "1991-05-14T00:00:00Z", + "Hs (total) (m)": 1.2535, + "Tp (total) (s)": 8.7931 + }, + { + "Date+Time": "1991-05-15T00:00:00Z", + "Hs (total) (m)": 0.943, + "Tp (total) (s)": 9.3554 + }, + { + "Date+Time": "1991-05-16T00:00:00Z", + "Hs (total) (m)": 0.8103, + "Tp (total) (s)": 8.6138 + }, + { + "Date+Time": "1991-05-17T00:00:00Z", + "Hs (total) (m)": 0.7347, + "Tp (total) (s)": 11.3262 + }, + { + "Date+Time": "1991-05-18T00:00:00Z", + "Hs (total) (m)": 0.9827, + "Tp (total) (s)": 10.2039 + }, + { + "Date+Time": "1991-05-19T00:00:00Z", + "Hs (total) (m)": 1.091, + "Tp (total) (s)": 8.6291 + }, + { + "Date+Time": "1991-05-20T00:00:00Z", + "Hs (total) (m)": 1.2963, + "Tp (total) (s)": 8.4651 + }, + { + "Date+Time": "1991-05-21T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 9.8628 + }, + { + "Date+Time": "1991-05-22T00:00:00Z", + "Hs (total) (m)": 1.4512, + "Tp (total) (s)": 11.4887 + }, + { + "Date+Time": "1991-05-23T00:00:00Z", + "Hs (total) (m)": 1.204, + "Tp (total) (s)": 10.0208 + }, + { + "Date+Time": "1991-05-24T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 8.694 + }, + { + "Date+Time": "1991-05-25T00:00:00Z", + "Hs (total) (m)": 0.7096, + "Tp (total) (s)": 8.1133 + }, + { + "Date+Time": "1991-05-26T00:00:00Z", + "Hs (total) (m)": 0.7439, + "Tp (total) (s)": 10.7807 + }, + { + "Date+Time": "1991-05-27T00:00:00Z", + "Hs (total) (m)": 0.7866, + "Tp (total) (s)": 9.6576 + }, + { + "Date+Time": "1991-05-28T00:00:00Z", + "Hs (total) (m)": 0.8316, + "Tp (total) (s)": 10.0497 + }, + { + "Date+Time": "1991-05-29T00:00:00Z", + "Hs (total) (m)": 0.6409, + "Tp (total) (s)": 9.1853 + }, + { + "Date+Time": "1991-05-30T00:00:00Z", + "Hs (total) (m)": 0.4036, + "Tp (total) (s)": 9.7095 + }, + { + "Date+Time": "1991-05-31T00:00:00Z", + "Hs (total) (m)": 0.4318, + "Tp (total) (s)": 9.3501 + }, + { + "Date+Time": "1991-06-01T00:00:00Z", + "Hs (total) (m)": 0.4952, + "Tp (total) (s)": 3.9163 + }, + { + "Date+Time": "1991-06-02T00:00:00Z", + "Hs (total) (m)": 0.5684, + "Tp (total) (s)": 7.8402 + }, + { + "Date+Time": "1991-06-03T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 14.4917 + }, + { + "Date+Time": "1991-06-04T00:00:00Z", + "Hs (total) (m)": 1.3802, + "Tp (total) (s)": 12.8185 + }, + { + "Date+Time": "1991-06-05T00:00:00Z", + "Hs (total) (m)": 1.3077, + "Tp (total) (s)": 11.127 + }, + { + "Date+Time": "1991-06-06T00:00:00Z", + "Hs (total) (m)": 1.6991, + "Tp (total) (s)": 9.7865 + }, + { + "Date+Time": "1991-06-07T00:00:00Z", + "Hs (total) (m)": 0.8538, + "Tp (total) (s)": 8.8595 + }, + { + "Date+Time": "1991-06-08T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 10.5579 + }, + { + "Date+Time": "1991-06-09T00:00:00Z", + "Hs (total) (m)": 3.2395, + "Tp (total) (s)": 8.6528 + }, + { + "Date+Time": "1991-06-10T00:00:00Z", + "Hs (total) (m)": 2.9977, + "Tp (total) (s)": 13.2809 + }, + { + "Date+Time": "1991-06-11T00:00:00Z", + "Hs (total) (m)": 1.6358, + "Tp (total) (s)": 10.7891 + }, + { + "Date+Time": "1991-06-12T00:00:00Z", + "Hs (total) (m)": 3.0885, + "Tp (total) (s)": 9.431 + }, + { + "Date+Time": "1991-06-13T00:00:00Z", + "Hs (total) (m)": 3.5447, + "Tp (total) (s)": 12.4218 + }, + { + "Date+Time": "1991-06-14T00:00:00Z", + "Hs (total) (m)": 1.9066, + "Tp (total) (s)": 9.6271 + }, + { + "Date+Time": "1991-06-15T00:00:00Z", + "Hs (total) (m)": 1.0903, + "Tp (total) (s)": 8.7992 + }, + { + "Date+Time": "1991-06-16T00:00:00Z", + "Hs (total) (m)": 1.0788, + "Tp (total) (s)": 6.4653 + }, + { + "Date+Time": "1991-06-17T00:00:00Z", + "Hs (total) (m)": 1.1032, + "Tp (total) (s)": 7.0688 + }, + { + "Date+Time": "1991-06-18T00:00:00Z", + "Hs (total) (m)": 0.8644, + "Tp (total) (s)": 7.1162 + }, + { + "Date+Time": "1991-06-19T00:00:00Z", + "Hs (total) (m)": 0.9072, + "Tp (total) (s)": 9.6049 + }, + { + "Date+Time": "1991-06-20T00:00:00Z", + "Hs (total) (m)": 0.9239, + "Tp (total) (s)": 9.479 + }, + { + "Date+Time": "1991-06-21T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 5.2629 + }, + { + "Date+Time": "1991-06-22T00:00:00Z", + "Hs (total) (m)": 3.1388, + "Tp (total) (s)": 9.7194 + }, + { + "Date+Time": "1991-06-23T00:00:00Z", + "Hs (total) (m)": 2.6162, + "Tp (total) (s)": 9.1784 + }, + { + "Date+Time": "1991-06-24T00:00:00Z", + "Hs (total) (m)": 1.059, + "Tp (total) (s)": 8.6352 + }, + { + "Date+Time": "1991-06-25T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 7.9676 + }, + { + "Date+Time": "1991-06-26T00:00:00Z", + "Hs (total) (m)": 1.371, + "Tp (total) (s)": 8.6627 + }, + { + "Date+Time": "1991-06-27T00:00:00Z", + "Hs (total) (m)": 1.7945, + "Tp (total) (s)": 9.5355 + }, + { + "Date+Time": "1991-06-28T00:00:00Z", + "Hs (total) (m)": 1.5252, + "Tp (total) (s)": 9.582 + }, + { + "Date+Time": "1991-06-29T00:00:00Z", + "Hs (total) (m)": 1.0331, + "Tp (total) (s)": 8.6062 + }, + { + "Date+Time": "1991-06-30T00:00:00Z", + "Hs (total) (m)": 1.6121, + "Tp (total) (s)": 12.4508 + }, + { + "Date+Time": "1991-07-01T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 8.5124 + }, + { + "Date+Time": "1991-07-02T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 8.6222 + }, + { + "Date+Time": "1991-07-03T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 8.5314 + }, + { + "Date+Time": "1991-07-04T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 8.1248 + }, + { + "Date+Time": "1991-07-05T00:00:00Z", + "Hs (total) (m)": 0.8248, + "Tp (total) (s)": 10.3442 + }, + { + "Date+Time": "1991-07-06T00:00:00Z", + "Hs (total) (m)": 0.8942, + "Tp (total) (s)": 10.1062 + }, + { + "Date+Time": "1991-07-07T00:00:00Z", + "Hs (total) (m)": 0.988, + "Tp (total) (s)": 9.7728 + }, + { + "Date+Time": "1991-07-08T00:00:00Z", + "Hs (total) (m)": 1.0842, + "Tp (total) (s)": 9.3989 + }, + { + "Date+Time": "1991-07-09T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 9.5431 + }, + { + "Date+Time": "1991-07-10T00:00:00Z", + "Hs (total) (m)": 2.282, + "Tp (total) (s)": 9.405 + }, + { + "Date+Time": "1991-07-11T00:00:00Z", + "Hs (total) (m)": 2.2637, + "Tp (total) (s)": 8.6772 + }, + { + "Date+Time": "1991-07-12T00:00:00Z", + "Hs (total) (m)": 2.0104, + "Tp (total) (s)": 7.5991 + }, + { + "Date+Time": "1991-07-13T00:00:00Z", + "Hs (total) (m)": 2.2118, + "Tp (total) (s)": 9.2235 + }, + { + "Date+Time": "1991-07-14T00:00:00Z", + "Hs (total) (m)": 1.5587, + "Tp (total) (s)": 8.6688 + }, + { + "Date+Time": "1991-07-15T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 7.6701 + }, + { + "Date+Time": "1991-07-16T00:00:00Z", + "Hs (total) (m)": 1.7418, + "Tp (total) (s)": 8.4292 + }, + { + "Date+Time": "1991-07-17T00:00:00Z", + "Hs (total) (m)": 1.3894, + "Tp (total) (s)": 7.9417 + }, + { + "Date+Time": "1991-07-18T00:00:00Z", + "Hs (total) (m)": 1.7006, + "Tp (total) (s)": 7.7357 + }, + { + "Date+Time": "1991-07-19T00:00:00Z", + "Hs (total) (m)": 2.1302, + "Tp (total) (s)": 11.2934 + }, + { + "Date+Time": "1991-07-20T00:00:00Z", + "Hs (total) (m)": 1.8319, + "Tp (total) (s)": 11.3659 + }, + { + "Date+Time": "1991-07-21T00:00:00Z", + "Hs (total) (m)": 1.4809, + "Tp (total) (s)": 11.066 + }, + { + "Date+Time": "1991-07-22T00:00:00Z", + "Hs (total) (m)": 1.2177, + "Tp (total) (s)": 8.8191 + }, + { + "Date+Time": "1991-07-23T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 8.4475 + }, + { + "Date+Time": "1991-07-24T00:00:00Z", + "Hs (total) (m)": 1.5007, + "Tp (total) (s)": 7.8913 + }, + { + "Date+Time": "1991-07-25T00:00:00Z", + "Hs (total) (m)": 1.4809, + "Tp (total) (s)": 7.8639 + }, + { + "Date+Time": "1991-07-26T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 7.7486 + }, + { + "Date+Time": "1991-07-27T00:00:00Z", + "Hs (total) (m)": 1.5793, + "Tp (total) (s)": 5.5818 + }, + { + "Date+Time": "1991-07-28T00:00:00Z", + "Hs (total) (m)": 1.7586, + "Tp (total) (s)": 8.5017 + }, + { + "Date+Time": "1991-07-29T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 9.4958 + }, + { + "Date+Time": "1991-07-30T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 9.5126 + }, + { + "Date+Time": "1991-07-31T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 9.3852 + }, + { + "Date+Time": "1991-08-01T00:00:00Z", + "Hs (total) (m)": 0.7134, + "Tp (total) (s)": 7.68 + }, + { + "Date+Time": "1991-08-02T00:00:00Z", + "Hs (total) (m)": 1.0353, + "Tp (total) (s)": 8.6703 + }, + { + "Date+Time": "1991-08-03T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 8.6802 + }, + { + "Date+Time": "1991-08-04T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 8.8359 + }, + { + "Date+Time": "1991-08-05T00:00:00Z", + "Hs (total) (m)": 2.0943, + "Tp (total) (s)": 8.5681 + }, + { + "Date+Time": "1991-08-06T00:00:00Z", + "Hs (total) (m)": 1.4924, + "Tp (total) (s)": 8.7046 + }, + { + "Date+Time": "1991-08-07T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 8.7176 + }, + { + "Date+Time": "1991-08-08T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 9.2654 + }, + { + "Date+Time": "1991-08-09T00:00:00Z", + "Hs (total) (m)": 2.0913, + "Tp (total) (s)": 6.428 + }, + { + "Date+Time": "1991-08-10T00:00:00Z", + "Hs (total) (m)": 1.9814, + "Tp (total) (s)": 8.9236 + }, + { + "Date+Time": "1991-08-11T00:00:00Z", + "Hs (total) (m)": 1.7045, + "Tp (total) (s)": 9.5569 + }, + { + "Date+Time": "1991-08-12T00:00:00Z", + "Hs (total) (m)": 1.6137, + "Tp (total) (s)": 10.6174 + }, + { + "Date+Time": "1991-08-13T00:00:00Z", + "Hs (total) (m)": 1.4687, + "Tp (total) (s)": 10.3275 + }, + { + "Date+Time": "1991-08-14T00:00:00Z", + "Hs (total) (m)": 1.3001, + "Tp (total) (s)": 9.7987 + }, + { + "Date+Time": "1991-08-15T00:00:00Z", + "Hs (total) (m)": 1.9005, + "Tp (total) (s)": 9.4134 + }, + { + "Date+Time": "1991-08-16T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 9.5424 + }, + { + "Date+Time": "1991-08-17T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 9.6591 + }, + { + "Date+Time": "1991-08-18T00:00:00Z", + "Hs (total) (m)": 1.5175, + "Tp (total) (s)": 9.3875 + }, + { + "Date+Time": "1991-08-19T00:00:00Z", + "Hs (total) (m)": 1.6274, + "Tp (total) (s)": 8.5108 + }, + { + "Date+Time": "1991-08-20T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 8.1988 + }, + { + "Date+Time": "1991-08-21T00:00:00Z", + "Hs (total) (m)": 2.0264, + "Tp (total) (s)": 12.6164 + }, + { + "Date+Time": "1991-08-22T00:00:00Z", + "Hs (total) (m)": 1.7968, + "Tp (total) (s)": 10.844 + }, + { + "Date+Time": "1991-08-23T00:00:00Z", + "Hs (total) (m)": 1.5519, + "Tp (total) (s)": 10.564 + }, + { + "Date+Time": "1991-08-24T00:00:00Z", + "Hs (total) (m)": 1.2818, + "Tp (total) (s)": 10.2062 + }, + { + "Date+Time": "1991-08-25T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 9.6545 + }, + { + "Date+Time": "1991-08-26T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 9.4134 + }, + { + "Date+Time": "1991-08-27T00:00:00Z", + "Hs (total) (m)": 1.0285, + "Tp (total) (s)": 9.2181 + }, + { + "Date+Time": "1991-08-28T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 12.6583 + }, + { + "Date+Time": "1991-08-29T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 12.3562 + }, + { + "Date+Time": "1991-08-30T00:00:00Z", + "Hs (total) (m)": 1.4412, + "Tp (total) (s)": 13.6166 + }, + { + "Date+Time": "1991-08-31T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 10.5541 + }, + { + "Date+Time": "1991-09-01T00:00:00Z", + "Hs (total) (m)": 1.236, + "Tp (total) (s)": 10.3603 + }, + { + "Date+Time": "1991-09-02T00:00:00Z", + "Hs (total) (m)": 0.9949, + "Tp (total) (s)": 10.1375 + }, + { + "Date+Time": "1991-09-03T00:00:00Z", + "Hs (total) (m)": 0.8736, + "Tp (total) (s)": 9.8689 + }, + { + "Date+Time": "1991-09-04T00:00:00Z", + "Hs (total) (m)": 0.7889, + "Tp (total) (s)": 9.669 + }, + { + "Date+Time": "1991-09-05T00:00:00Z", + "Hs (total) (m)": 0.7393, + "Tp (total) (s)": 9.3158 + }, + { + "Date+Time": "1991-09-06T00:00:00Z", + "Hs (total) (m)": 0.5982, + "Tp (total) (s)": 8.858 + }, + { + "Date+Time": "1991-09-07T00:00:00Z", + "Hs (total) (m)": 0.5242, + "Tp (total) (s)": 9.0953 + }, + { + "Date+Time": "1991-09-08T00:00:00Z", + "Hs (total) (m)": 0.4288, + "Tp (total) (s)": 9.27 + }, + { + "Date+Time": "1991-09-09T00:00:00Z", + "Hs (total) (m)": 0.7973, + "Tp (total) (s)": 10.4137 + }, + { + "Date+Time": "1991-09-10T00:00:00Z", + "Hs (total) (m)": 0.8728, + "Tp (total) (s)": 10.2199 + }, + { + "Date+Time": "1991-09-11T00:00:00Z", + "Hs (total) (m)": 0.7645, + "Tp (total) (s)": 8.8496 + }, + { + "Date+Time": "1991-09-12T00:00:00Z", + "Hs (total) (m)": 0.8209, + "Tp (total) (s)": 8.0729 + }, + { + "Date+Time": "1991-09-13T00:00:00Z", + "Hs (total) (m)": 1.223, + "Tp (total) (s)": 6.315 + }, + { + "Date+Time": "1991-09-14T00:00:00Z", + "Hs (total) (m)": 2.6536, + "Tp (total) (s)": 9.7514 + }, + { + "Date+Time": "1991-09-15T00:00:00Z", + "Hs (total) (m)": 2.1714, + "Tp (total) (s)": 11.4093 + }, + { + "Date+Time": "1991-09-16T00:00:00Z", + "Hs (total) (m)": 2.5636, + "Tp (total) (s)": 10.7631 + }, + { + "Date+Time": "1991-09-17T00:00:00Z", + "Hs (total) (m)": 2.3942, + "Tp (total) (s)": 9.521 + }, + { + "Date+Time": "1991-09-18T00:00:00Z", + "Hs (total) (m)": 2.3194, + "Tp (total) (s)": 9.4348 + }, + { + "Date+Time": "1991-09-19T00:00:00Z", + "Hs (total) (m)": 2.0478, + "Tp (total) (s)": 9.9414 + }, + { + "Date+Time": "1991-09-20T00:00:00Z", + "Hs (total) (m)": 2.0409, + "Tp (total) (s)": 10.4053 + }, + { + "Date+Time": "1991-09-21T00:00:00Z", + "Hs (total) (m)": 2.6376, + "Tp (total) (s)": 10.8264 + }, + { + "Date+Time": "1991-09-22T00:00:00Z", + "Hs (total) (m)": 2.8764, + "Tp (total) (s)": 11.2514 + }, + { + "Date+Time": "1991-09-23T00:00:00Z", + "Hs (total) (m)": 3.2655, + "Tp (total) (s)": 12.0815 + }, + { + "Date+Time": "1991-09-24T00:00:00Z", + "Hs (total) (m)": 3.7317, + "Tp (total) (s)": 11.5604 + }, + { + "Date+Time": "1991-09-25T00:00:00Z", + "Hs (total) (m)": 3.4333, + "Tp (total) (s)": 12.727 + }, + { + "Date+Time": "1991-09-26T00:00:00Z", + "Hs (total) (m)": 2.3133, + "Tp (total) (s)": 12.4668 + }, + { + "Date+Time": "1991-09-27T00:00:00Z", + "Hs (total) (m)": 1.4313, + "Tp (total) (s)": 11.5116 + }, + { + "Date+Time": "1991-09-28T00:00:00Z", + "Hs (total) (m)": 1.4763, + "Tp (total) (s)": 9.8506 + }, + { + "Date+Time": "1991-09-29T00:00:00Z", + "Hs (total) (m)": 1.194, + "Tp (total) (s)": 3.6462 + }, + { + "Date+Time": "1991-09-30T00:00:00Z", + "Hs (total) (m)": 0.7012, + "Tp (total) (s)": 3.5226 + }, + { + "Date+Time": "1991-10-01T00:00:00Z", + "Hs (total) (m)": 1.7525, + "Tp (total) (s)": 8.5368 + }, + { + "Date+Time": "1991-10-02T00:00:00Z", + "Hs (total) (m)": 2.6917, + "Tp (total) (s)": 12.3432 + }, + { + "Date+Time": "1991-10-03T00:00:00Z", + "Hs (total) (m)": 3.4768, + "Tp (total) (s)": 9.4722 + }, + { + "Date+Time": "1991-10-04T00:00:00Z", + "Hs (total) (m)": 3.367, + "Tp (total) (s)": 12.9688 + }, + { + "Date+Time": "1991-10-05T00:00:00Z", + "Hs (total) (m)": 3.0984, + "Tp (total) (s)": 12.9292 + }, + { + "Date+Time": "1991-10-06T00:00:00Z", + "Hs (total) (m)": 2.1729, + "Tp (total) (s)": 12.8109 + }, + { + "Date+Time": "1991-10-07T00:00:00Z", + "Hs (total) (m)": 3.6584, + "Tp (total) (s)": 11.5749 + }, + { + "Date+Time": "1991-10-08T00:00:00Z", + "Hs (total) (m)": 4.1902, + "Tp (total) (s)": 15.8506 + }, + { + "Date+Time": "1991-10-09T00:00:00Z", + "Hs (total) (m)": 3.0091, + "Tp (total) (s)": 15.1288 + }, + { + "Date+Time": "1991-10-10T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 13.8089 + }, + { + "Date+Time": "1991-10-11T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 12.7445 + }, + { + "Date+Time": "1991-10-12T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 10.5846 + }, + { + "Date+Time": "1991-10-13T00:00:00Z", + "Hs (total) (m)": 0.8293, + "Tp (total) (s)": 10.3847 + }, + { + "Date+Time": "1991-10-14T00:00:00Z", + "Hs (total) (m)": 0.9247, + "Tp (total) (s)": 9.6446 + }, + { + "Date+Time": "1991-10-15T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 9.1998 + }, + { + "Date+Time": "1991-10-16T00:00:00Z", + "Hs (total) (m)": 1.9929, + "Tp (total) (s)": 9.3974 + }, + { + "Date+Time": "1991-10-17T00:00:00Z", + "Hs (total) (m)": 2.7146, + "Tp (total) (s)": 10.4831 + }, + { + "Date+Time": "1991-10-18T00:00:00Z", + "Hs (total) (m)": 2.8336, + "Tp (total) (s)": 12.4058 + }, + { + "Date+Time": "1991-10-19T00:00:00Z", + "Hs (total) (m)": 2.411, + "Tp (total) (s)": 13.02 + }, + { + "Date+Time": "1991-10-20T00:00:00Z", + "Hs (total) (m)": 1.5831, + "Tp (total) (s)": 13.1787 + }, + { + "Date+Time": "1991-10-21T00:00:00Z", + "Hs (total) (m)": 1.4344, + "Tp (total) (s)": 12.4271 + }, + { + "Date+Time": "1991-10-22T00:00:00Z", + "Hs (total) (m)": 1.2947, + "Tp (total) (s)": 8.0164 + }, + { + "Date+Time": "1991-10-23T00:00:00Z", + "Hs (total) (m)": 1.0834, + "Tp (total) (s)": 10.4541 + }, + { + "Date+Time": "1991-10-24T00:00:00Z", + "Hs (total) (m)": 0.7469, + "Tp (total) (s)": 10.094 + }, + { + "Date+Time": "1991-10-25T00:00:00Z", + "Hs (total) (m)": 0.7393, + "Tp (total) (s)": 10.6204 + }, + { + "Date+Time": "1991-10-26T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 11.4765 + }, + { + "Date+Time": "1991-10-27T00:00:00Z", + "Hs (total) (m)": 1.5297, + "Tp (total) (s)": 10.5167 + }, + { + "Date+Time": "1991-10-28T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 10.6754 + }, + { + "Date+Time": "1991-10-29T00:00:00Z", + "Hs (total) (m)": 2.1249, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "1991-10-30T00:00:00Z", + "Hs (total) (m)": 2.5803, + "Tp (total) (s)": 12.4432 + }, + { + "Date+Time": "1991-10-31T00:00:00Z", + "Hs (total) (m)": 4.2726, + "Tp (total) (s)": 12.5065 + }, + { + "Date+Time": "1991-11-01T00:00:00Z", + "Hs (total) (m)": 4.7411, + "Tp (total) (s)": 13.3923 + }, + { + "Date+Time": "1991-11-02T00:00:00Z", + "Hs (total) (m)": 3.4043, + "Tp (total) (s)": 10.7509 + }, + { + "Date+Time": "1991-11-03T00:00:00Z", + "Hs (total) (m)": 2.9199, + "Tp (total) (s)": 10.1268 + }, + { + "Date+Time": "1991-11-04T00:00:00Z", + "Hs (total) (m)": 2.9611, + "Tp (total) (s)": 13.5594 + }, + { + "Date+Time": "1991-11-05T00:00:00Z", + "Hs (total) (m)": 2.5231, + "Tp (total) (s)": 13.6837 + }, + { + "Date+Time": "1991-11-06T00:00:00Z", + "Hs (total) (m)": 1.7144, + "Tp (total) (s)": 12.843 + }, + { + "Date+Time": "1991-11-07T00:00:00Z", + "Hs (total) (m)": 2.6307, + "Tp (total) (s)": 9.3524 + }, + { + "Date+Time": "1991-11-08T00:00:00Z", + "Hs (total) (m)": 3.0534, + "Tp (total) (s)": 10.3145 + }, + { + "Date+Time": "1991-11-09T00:00:00Z", + "Hs (total) (m)": 2.3072, + "Tp (total) (s)": 10.5884 + }, + { + "Date+Time": "1991-11-10T00:00:00Z", + "Hs (total) (m)": 1.8395, + "Tp (total) (s)": 10.6441 + }, + { + "Date+Time": "1991-11-11T00:00:00Z", + "Hs (total) (m)": 2.9992, + "Tp (total) (s)": 10.4236 + }, + { + "Date+Time": "1991-11-12T00:00:00Z", + "Hs (total) (m)": 3.132, + "Tp (total) (s)": 12.2402 + }, + { + "Date+Time": "1991-11-13T00:00:00Z", + "Hs (total) (m)": 3.9346, + "Tp (total) (s)": 12.009 + }, + { + "Date+Time": "1991-11-14T00:00:00Z", + "Hs (total) (m)": 4.1467, + "Tp (total) (s)": 14.1606 + }, + { + "Date+Time": "1991-11-15T00:00:00Z", + "Hs (total) (m)": 3.5012, + "Tp (total) (s)": 14.6146 + }, + { + "Date+Time": "1991-11-16T00:00:00Z", + "Hs (total) (m)": 2.4155, + "Tp (total) (s)": 14.4833 + }, + { + "Date+Time": "1991-11-17T00:00:00Z", + "Hs (total) (m)": 1.899, + "Tp (total) (s)": 13.1825 + }, + { + "Date+Time": "1991-11-18T00:00:00Z", + "Hs (total) (m)": 2.4087, + "Tp (total) (s)": 10.5052 + }, + { + "Date+Time": "1991-11-19T00:00:00Z", + "Hs (total) (m)": 2.1714, + "Tp (total) (s)": 12.0319 + }, + { + "Date+Time": "1991-11-20T00:00:00Z", + "Hs (total) (m)": 1.7991, + "Tp (total) (s)": 12.1311 + }, + { + "Date+Time": "1991-11-21T00:00:00Z", + "Hs (total) (m)": 1.4428, + "Tp (total) (s)": 11.4834 + }, + { + "Date+Time": "1991-11-22T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 11.1652 + }, + { + "Date+Time": "1991-11-23T00:00:00Z", + "Hs (total) (m)": 3.019, + "Tp (total) (s)": 11.2438 + }, + { + "Date+Time": "1991-11-24T00:00:00Z", + "Hs (total) (m)": 3.5768, + "Tp (total) (s)": 11.1126 + }, + { + "Date+Time": "1991-11-25T00:00:00Z", + "Hs (total) (m)": 3.1373, + "Tp (total) (s)": 11.5429 + }, + { + "Date+Time": "1991-11-26T00:00:00Z", + "Hs (total) (m)": 4.0712, + "Tp (total) (s)": 12.0678 + }, + { + "Date+Time": "1991-11-27T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 11.4689 + }, + { + "Date+Time": "1991-11-28T00:00:00Z", + "Hs (total) (m)": 3.045, + "Tp (total) (s)": 11.0607 + }, + { + "Date+Time": "1991-11-29T00:00:00Z", + "Hs (total) (m)": 2.6528, + "Tp (total) (s)": 14.0561 + }, + { + "Date+Time": "1991-11-30T00:00:00Z", + "Hs (total) (m)": 3.8667, + "Tp (total) (s)": 12.9452 + }, + { + "Date+Time": "1991-12-01T00:00:00Z", + "Hs (total) (m)": 2.3576, + "Tp (total) (s)": 12.6957 + }, + { + "Date+Time": "1991-12-02T00:00:00Z", + "Hs (total) (m)": 1.8891, + "Tp (total) (s)": 13.5166 + }, + { + "Date+Time": "1991-12-03T00:00:00Z", + "Hs (total) (m)": 1.9059, + "Tp (total) (s)": 12.9383 + }, + { + "Date+Time": "1991-12-04T00:00:00Z", + "Hs (total) (m)": 1.7663, + "Tp (total) (s)": 11.9922 + }, + { + "Date+Time": "1991-12-05T00:00:00Z", + "Hs (total) (m)": 1.8273, + "Tp (total) (s)": 12.1883 + }, + { + "Date+Time": "1991-12-06T00:00:00Z", + "Hs (total) (m)": 2.0051, + "Tp (total) (s)": 17.9395 + }, + { + "Date+Time": "1991-12-07T00:00:00Z", + "Hs (total) (m)": 2.076, + "Tp (total) (s)": 14.452 + }, + { + "Date+Time": "1991-12-08T00:00:00Z", + "Hs (total) (m)": 1.7342, + "Tp (total) (s)": 16.2236 + }, + { + "Date+Time": "1991-12-09T00:00:00Z", + "Hs (total) (m)": 2.0867, + "Tp (total) (s)": 15.347 + }, + { + "Date+Time": "1991-12-10T00:00:00Z", + "Hs (total) (m)": 2.2744, + "Tp (total) (s)": 14.0683 + }, + { + "Date+Time": "1991-12-11T00:00:00Z", + "Hs (total) (m)": 1.8906, + "Tp (total) (s)": 13.0116 + }, + { + "Date+Time": "1991-12-12T00:00:00Z", + "Hs (total) (m)": 1.6251, + "Tp (total) (s)": 12.6843 + }, + { + "Date+Time": "1991-12-13T00:00:00Z", + "Hs (total) (m)": 1.6701, + "Tp (total) (s)": 12.743 + }, + { + "Date+Time": "1991-12-14T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 13.2305 + }, + { + "Date+Time": "1991-12-15T00:00:00Z", + "Hs (total) (m)": 1.6617, + "Tp (total) (s)": 12.7979 + }, + { + "Date+Time": "1991-12-16T00:00:00Z", + "Hs (total) (m)": 1.426, + "Tp (total) (s)": 12.5256 + }, + { + "Date+Time": "1991-12-17T00:00:00Z", + "Hs (total) (m)": 1.7365, + "Tp (total) (s)": 11.5001 + }, + { + "Date+Time": "1991-12-18T00:00:00Z", + "Hs (total) (m)": 3.8446, + "Tp (total) (s)": 16.4495 + }, + { + "Date+Time": "1991-12-19T00:00:00Z", + "Hs (total) (m)": 5.4255, + "Tp (total) (s)": 16.703 + }, + { + "Date+Time": "1991-12-20T00:00:00Z", + "Hs (total) (m)": 4.7716, + "Tp (total) (s)": 14.0606 + }, + { + "Date+Time": "1991-12-21T00:00:00Z", + "Hs (total) (m)": 5.23, + "Tp (total) (s)": 14.7979 + }, + { + "Date+Time": "1991-12-22T00:00:00Z", + "Hs (total) (m)": 5.178, + "Tp (total) (s)": 13.8216 + }, + { + "Date+Time": "1991-12-23T00:00:00Z", + "Hs (total) (m)": 5.1055, + "Tp (total) (s)": 13.0692 + }, + { + "Date+Time": "1991-12-24T00:00:00Z", + "Hs (total) (m)": 3.56, + "Tp (total) (s)": 12.6972 + }, + { + "Date+Time": "1991-12-25T00:00:00Z", + "Hs (total) (m)": 2.4155, + "Tp (total) (s)": 12.4882 + }, + { + "Date+Time": "1991-12-26T00:00:00Z", + "Hs (total) (m)": 2.6238, + "Tp (total) (s)": 9.4272 + }, + { + "Date+Time": "1991-12-27T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 10.3572 + }, + { + "Date+Time": "1991-12-28T00:00:00Z", + "Hs (total) (m)": 1.3222, + "Tp (total) (s)": 10.1741 + }, + { + "Date+Time": "1991-12-29T00:00:00Z", + "Hs (total) (m)": 1.5069, + "Tp (total) (s)": 15.379 + }, + { + "Date+Time": "1991-12-30T00:00:00Z", + "Hs (total) (m)": 1.426, + "Tp (total) (s)": 13.7402 + }, + { + "Date+Time": "1991-12-31T00:00:00Z", + "Hs (total) (m)": 2.2507, + "Tp (total) (s)": 12.3074 + }, + { + "Date+Time": "1992-01-01T00:00:00Z", + "Hs (total) (m)": 3.8797, + "Tp (total) (s)": 9.9399 + }, + { + "Date+Time": "1992-01-02T00:00:00Z", + "Hs (total) (m)": 4.1948, + "Tp (total) (s)": 13.2214 + }, + { + "Date+Time": "1992-01-03T00:00:00Z", + "Hs (total) (m)": 4.9348, + "Tp (total) (s)": 12.7432 + }, + { + "Date+Time": "1992-01-04T00:00:00Z", + "Hs (total) (m)": 3.2586, + "Tp (total) (s)": 12.508 + }, + { + "Date+Time": "1992-01-05T00:00:00Z", + "Hs (total) (m)": 2.6666, + "Tp (total) (s)": 13.4198 + }, + { + "Date+Time": "1992-01-06T00:00:00Z", + "Hs (total) (m)": 3.2434, + "Tp (total) (s)": 10.7013 + }, + { + "Date+Time": "1992-01-07T00:00:00Z", + "Hs (total) (m)": 3.4974, + "Tp (total) (s)": 9.8567 + }, + { + "Date+Time": "1992-01-08T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 11.3224 + }, + { + "Date+Time": "1992-01-09T00:00:00Z", + "Hs (total) (m)": 1.268, + "Tp (total) (s)": 11.288 + }, + { + "Date+Time": "1992-01-10T00:00:00Z", + "Hs (total) (m)": 1.0887, + "Tp (total) (s)": 10.4946 + }, + { + "Date+Time": "1992-01-11T00:00:00Z", + "Hs (total) (m)": 1.0056, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "1992-01-12T00:00:00Z", + "Hs (total) (m)": 1.4267, + "Tp (total) (s)": 12.9902 + }, + { + "Date+Time": "1992-01-13T00:00:00Z", + "Hs (total) (m)": 1.6472, + "Tp (total) (s)": 12.9849 + }, + { + "Date+Time": "1992-01-14T00:00:00Z", + "Hs (total) (m)": 1.384, + "Tp (total) (s)": 12.4676 + }, + { + "Date+Time": "1992-01-15T00:00:00Z", + "Hs (total) (m)": 1.4145, + "Tp (total) (s)": 14.14 + }, + { + "Date+Time": "1992-01-16T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 13.7883 + }, + { + "Date+Time": "1992-01-17T00:00:00Z", + "Hs (total) (m)": 1.0681, + "Tp (total) (s)": 13.9958 + }, + { + "Date+Time": "1992-01-18T00:00:00Z", + "Hs (total) (m)": 1.1177, + "Tp (total) (s)": 11.6749 + }, + { + "Date+Time": "1992-01-19T00:00:00Z", + "Hs (total) (m)": 1.3436, + "Tp (total) (s)": 10.4976 + }, + { + "Date+Time": "1992-01-20T00:00:00Z", + "Hs (total) (m)": 1.4618, + "Tp (total) (s)": 13.8096 + }, + { + "Date+Time": "1992-01-21T00:00:00Z", + "Hs (total) (m)": 2.0859, + "Tp (total) (s)": 14.9113 + }, + { + "Date+Time": "1992-01-22T00:00:00Z", + "Hs (total) (m)": 3.0053, + "Tp (total) (s)": 13.9546 + }, + { + "Date+Time": "1992-01-23T00:00:00Z", + "Hs (total) (m)": 3.309, + "Tp (total) (s)": 13.3442 + }, + { + "Date+Time": "1992-01-24T00:00:00Z", + "Hs (total) (m)": 3.3876, + "Tp (total) (s)": 13.5533 + }, + { + "Date+Time": "1992-01-25T00:00:00Z", + "Hs (total) (m)": 3.2167, + "Tp (total) (s)": 13.4243 + }, + { + "Date+Time": "1992-01-26T00:00:00Z", + "Hs (total) (m)": 1.8883, + "Tp (total) (s)": 12.3081 + }, + { + "Date+Time": "1992-01-27T00:00:00Z", + "Hs (total) (m)": 1.7975, + "Tp (total) (s)": 11.4826 + }, + { + "Date+Time": "1992-01-28T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 11.343 + }, + { + "Date+Time": "1992-01-29T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 14.2705 + }, + { + "Date+Time": "1992-01-30T00:00:00Z", + "Hs (total) (m)": 1.4145, + "Tp (total) (s)": 13.638 + }, + { + "Date+Time": "1992-01-31T00:00:00Z", + "Hs (total) (m)": 1.9814, + "Tp (total) (s)": 14.2834 + }, + { + "Date+Time": "1992-02-01T00:00:00Z", + "Hs (total) (m)": 2.0119, + "Tp (total) (s)": 12.3379 + }, + { + "Date+Time": "1992-02-02T00:00:00Z", + "Hs (total) (m)": 1.4626, + "Tp (total) (s)": 10.786 + }, + { + "Date+Time": "1992-02-03T00:00:00Z", + "Hs (total) (m)": 2.9382, + "Tp (total) (s)": 16.7341 + }, + { + "Date+Time": "1992-02-04T00:00:00Z", + "Hs (total) (m)": 2.839, + "Tp (total) (s)": 15.1814 + }, + { + "Date+Time": "1992-02-05T00:00:00Z", + "Hs (total) (m)": 2.3461, + "Tp (total) (s)": 10.6639 + }, + { + "Date+Time": "1992-02-06T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 10.5502 + }, + { + "Date+Time": "1992-02-07T00:00:00Z", + "Hs (total) (m)": 2.8863, + "Tp (total) (s)": 10.5846 + }, + { + "Date+Time": "1992-02-08T00:00:00Z", + "Hs (total) (m)": 2.8695, + "Tp (total) (s)": 12.5004 + }, + { + "Date+Time": "1992-02-09T00:00:00Z", + "Hs (total) (m)": 2.8932, + "Tp (total) (s)": 12.299 + }, + { + "Date+Time": "1992-02-10T00:00:00Z", + "Hs (total) (m)": 3.6935, + "Tp (total) (s)": 15.5293 + }, + { + "Date+Time": "1992-02-11T00:00:00Z", + "Hs (total) (m)": 3.1602, + "Tp (total) (s)": 15.1921 + }, + { + "Date+Time": "1992-02-12T00:00:00Z", + "Hs (total) (m)": 2.6543, + "Tp (total) (s)": 14.1942 + }, + { + "Date+Time": "1992-02-13T00:00:00Z", + "Hs (total) (m)": 3.5516, + "Tp (total) (s)": 13.8173 + }, + { + "Date+Time": "1992-02-14T00:00:00Z", + "Hs (total) (m)": 4.2497, + "Tp (total) (s)": 16.4518 + }, + { + "Date+Time": "1992-02-15T00:00:00Z", + "Hs (total) (m)": 3.824, + "Tp (total) (s)": 15.3165 + }, + { + "Date+Time": "1992-02-16T00:00:00Z", + "Hs (total) (m)": 3.4501, + "Tp (total) (s)": 13.5144 + }, + { + "Date+Time": "1992-02-17T00:00:00Z", + "Hs (total) (m)": 2.6833, + "Tp (total) (s)": 13.7814 + }, + { + "Date+Time": "1992-02-18T00:00:00Z", + "Hs (total) (m)": 2.2843, + "Tp (total) (s)": 13.4663 + }, + { + "Date+Time": "1992-02-19T00:00:00Z", + "Hs (total) (m)": 2.3545, + "Tp (total) (s)": 14.7618 + }, + { + "Date+Time": "1992-02-20T00:00:00Z", + "Hs (total) (m)": 2.2668, + "Tp (total) (s)": 13.6502 + }, + { + "Date+Time": "1992-02-21T00:00:00Z", + "Hs (total) (m)": 2.1447, + "Tp (total) (s)": 12.9505 + }, + { + "Date+Time": "1992-02-22T00:00:00Z", + "Hs (total) (m)": 4.2283, + "Tp (total) (s)": 15.933 + }, + { + "Date+Time": "1992-02-23T00:00:00Z", + "Hs (total) (m)": 4.3107, + "Tp (total) (s)": 13.4472 + }, + { + "Date+Time": "1992-02-24T00:00:00Z", + "Hs (total) (m)": 3.9865, + "Tp (total) (s)": 12.0426 + }, + { + "Date+Time": "1992-02-25T00:00:00Z", + "Hs (total) (m)": 2.6994, + "Tp (total) (s)": 13.7104 + }, + { + "Date+Time": "1992-02-26T00:00:00Z", + "Hs (total) (m)": 3.3929, + "Tp (total) (s)": 12.598 + }, + { + "Date+Time": "1992-02-27T00:00:00Z", + "Hs (total) (m)": 4.3069, + "Tp (total) (s)": 12.5629 + }, + { + "Date+Time": "1992-02-28T00:00:00Z", + "Hs (total) (m)": 3.0305, + "Tp (total) (s)": 12.2906 + }, + { + "Date+Time": "1992-02-29T00:00:00Z", + "Hs (total) (m)": 3.9636, + "Tp (total) (s)": 12.4897 + }, + { + "Date+Time": "1992-03-01T00:00:00Z", + "Hs (total) (m)": 3.6752, + "Tp (total) (s)": 14.3307 + }, + { + "Date+Time": "1992-03-02T00:00:00Z", + "Hs (total) (m)": 2.9832, + "Tp (total) (s)": 13.937 + }, + { + "Date+Time": "1992-03-03T00:00:00Z", + "Hs (total) (m)": 3.6958, + "Tp (total) (s)": 13.5189 + }, + { + "Date+Time": "1992-03-04T00:00:00Z", + "Hs (total) (m)": 3.9544, + "Tp (total) (s)": 16.7997 + }, + { + "Date+Time": "1992-03-05T00:00:00Z", + "Hs (total) (m)": 3.798, + "Tp (total) (s)": 15.8376 + }, + { + "Date+Time": "1992-03-06T00:00:00Z", + "Hs (total) (m)": 3.3189, + "Tp (total) (s)": 15.2356 + }, + { + "Date+Time": "1992-03-07T00:00:00Z", + "Hs (total) (m)": 3.2655, + "Tp (total) (s)": 11.7763 + }, + { + "Date+Time": "1992-03-08T00:00:00Z", + "Hs (total) (m)": 1.9448, + "Tp (total) (s)": 11.4597 + }, + { + "Date+Time": "1992-03-09T00:00:00Z", + "Hs (total) (m)": 2.7474, + "Tp (total) (s)": 8.9038 + }, + { + "Date+Time": "1992-03-10T00:00:00Z", + "Hs (total) (m)": 2.8916, + "Tp (total) (s)": 11.4002 + }, + { + "Date+Time": "1992-03-11T00:00:00Z", + "Hs (total) (m)": 3.4867, + "Tp (total) (s)": 12.7613 + }, + { + "Date+Time": "1992-03-12T00:00:00Z", + "Hs (total) (m)": 3.9178, + "Tp (total) (s)": 13.7692 + }, + { + "Date+Time": "1992-03-13T00:00:00Z", + "Hs (total) (m)": 3.6607, + "Tp (total) (s)": 12.3424 + }, + { + "Date+Time": "1992-03-14T00:00:00Z", + "Hs (total) (m)": 3.2861, + "Tp (total) (s)": 12.4073 + }, + { + "Date+Time": "1992-03-15T00:00:00Z", + "Hs (total) (m)": 2.8191, + "Tp (total) (s)": 11.9236 + }, + { + "Date+Time": "1992-03-16T00:00:00Z", + "Hs (total) (m)": 2.0775, + "Tp (total) (s)": 10.5861 + }, + { + "Date+Time": "1992-03-17T00:00:00Z", + "Hs (total) (m)": 2.044, + "Tp (total) (s)": 9.0495 + }, + { + "Date+Time": "1992-03-18T00:00:00Z", + "Hs (total) (m)": 2.9321, + "Tp (total) (s)": 13.918 + }, + { + "Date+Time": "1992-03-19T00:00:00Z", + "Hs (total) (m)": 2.0241, + "Tp (total) (s)": 12.4973 + }, + { + "Date+Time": "1992-03-20T00:00:00Z", + "Hs (total) (m)": 2.588, + "Tp (total) (s)": 9.7392 + }, + { + "Date+Time": "1992-03-21T00:00:00Z", + "Hs (total) (m)": 3.0648, + "Tp (total) (s)": 10.2596 + }, + { + "Date+Time": "1992-03-22T00:00:00Z", + "Hs (total) (m)": 4.5427, + "Tp (total) (s)": 13.8775 + }, + { + "Date+Time": "1992-03-23T00:00:00Z", + "Hs (total) (m)": 3.2311, + "Tp (total) (s)": 13.142 + }, + { + "Date+Time": "1992-03-24T00:00:00Z", + "Hs (total) (m)": 2.4323, + "Tp (total) (s)": 11.5345 + }, + { + "Date+Time": "1992-03-25T00:00:00Z", + "Hs (total) (m)": 1.8654, + "Tp (total) (s)": 11.2903 + }, + { + "Date+Time": "1992-03-26T00:00:00Z", + "Hs (total) (m)": 1.9333, + "Tp (total) (s)": 11.3208 + }, + { + "Date+Time": "1992-03-27T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 11.0614 + }, + { + "Date+Time": "1992-03-28T00:00:00Z", + "Hs (total) (m)": 1.8578, + "Tp (total) (s)": 11.8625 + }, + { + "Date+Time": "1992-03-29T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 14.8625 + }, + { + "Date+Time": "1992-03-30T00:00:00Z", + "Hs (total) (m)": 2.3331, + "Tp (total) (s)": 15.0975 + }, + { + "Date+Time": "1992-03-31T00:00:00Z", + "Hs (total) (m)": 2.356, + "Tp (total) (s)": 14.5199 + }, + { + "Date+Time": "1992-04-01T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 13.8417 + }, + { + "Date+Time": "1992-04-02T00:00:00Z", + "Hs (total) (m)": 1.3764, + "Tp (total) (s)": 12.2318 + }, + { + "Date+Time": "1992-04-03T00:00:00Z", + "Hs (total) (m)": 1.0033, + "Tp (total) (s)": 11.4917 + }, + { + "Date+Time": "1992-04-04T00:00:00Z", + "Hs (total) (m)": 0.9735, + "Tp (total) (s)": 12.167 + }, + { + "Date+Time": "1992-04-05T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 11.5184 + }, + { + "Date+Time": "1992-04-06T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 8.6283 + }, + { + "Date+Time": "1992-04-07T00:00:00Z", + "Hs (total) (m)": 2.3553, + "Tp (total) (s)": 12.3218 + }, + { + "Date+Time": "1992-04-08T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 12.5538 + }, + { + "Date+Time": "1992-04-09T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 11.8274 + }, + { + "Date+Time": "1992-04-10T00:00:00Z", + "Hs (total) (m)": 2.1516, + "Tp (total) (s)": 8.8977 + }, + { + "Date+Time": "1992-04-11T00:00:00Z", + "Hs (total) (m)": 2.1622, + "Tp (total) (s)": 12.6453 + }, + { + "Date+Time": "1992-04-12T00:00:00Z", + "Hs (total) (m)": 1.8166, + "Tp (total) (s)": 12.3936 + }, + { + "Date+Time": "1992-04-13T00:00:00Z", + "Hs (total) (m)": 3.3029, + "Tp (total) (s)": 10.7608 + }, + { + "Date+Time": "1992-04-14T00:00:00Z", + "Hs (total) (m)": 2.9984, + "Tp (total) (s)": 11.5055 + }, + { + "Date+Time": "1992-04-15T00:00:00Z", + "Hs (total) (m)": 2.459, + "Tp (total) (s)": 13.8272 + }, + { + "Date+Time": "1992-04-16T00:00:00Z", + "Hs (total) (m)": 1.8715, + "Tp (total) (s)": 13.2214 + }, + { + "Date+Time": "1992-04-17T00:00:00Z", + "Hs (total) (m)": 1.7922, + "Tp (total) (s)": 12.2814 + }, + { + "Date+Time": "1992-04-18T00:00:00Z", + "Hs (total) (m)": 2.1775, + "Tp (total) (s)": 10.6899 + }, + { + "Date+Time": "1992-04-19T00:00:00Z", + "Hs (total) (m)": 2.4354, + "Tp (total) (s)": 11.182 + }, + { + "Date+Time": "1992-04-20T00:00:00Z", + "Hs (total) (m)": 2.0058, + "Tp (total) (s)": 10.3191 + }, + { + "Date+Time": "1992-04-21T00:00:00Z", + "Hs (total) (m)": 2.2881, + "Tp (total) (s)": 11.1728 + }, + { + "Date+Time": "1992-04-22T00:00:00Z", + "Hs (total) (m)": 1.5542, + "Tp (total) (s)": 10.6311 + }, + { + "Date+Time": "1992-04-23T00:00:00Z", + "Hs (total) (m)": 1.7327, + "Tp (total) (s)": 9.4859 + }, + { + "Date+Time": "1992-04-24T00:00:00Z", + "Hs (total) (m)": 2.5666, + "Tp (total) (s)": 10.6441 + }, + { + "Date+Time": "1992-04-25T00:00:00Z", + "Hs (total) (m)": 3.2823, + "Tp (total) (s)": 13.8386 + }, + { + "Date+Time": "1992-04-26T00:00:00Z", + "Hs (total) (m)": 3.4471, + "Tp (total) (s)": 13.1092 + }, + { + "Date+Time": "1992-04-27T00:00:00Z", + "Hs (total) (m)": 3.6248, + "Tp (total) (s)": 11.6169 + }, + { + "Date+Time": "1992-04-28T00:00:00Z", + "Hs (total) (m)": 2.8504, + "Tp (total) (s)": 11.0797 + }, + { + "Date+Time": "1992-04-29T00:00:00Z", + "Hs (total) (m)": 1.999, + "Tp (total) (s)": 10.1573 + }, + { + "Date+Time": "1992-04-30T00:00:00Z", + "Hs (total) (m)": 1.8441, + "Tp (total) (s)": 9.5683 + }, + { + "Date+Time": "1992-05-01T00:00:00Z", + "Hs (total) (m)": 1.7228, + "Tp (total) (s)": 8.8313 + }, + { + "Date+Time": "1992-05-02T00:00:00Z", + "Hs (total) (m)": 1.8715, + "Tp (total) (s)": 11.2552 + }, + { + "Date+Time": "1992-05-03T00:00:00Z", + "Hs (total) (m)": 1.6747, + "Tp (total) (s)": 11.4422 + }, + { + "Date+Time": "1992-05-04T00:00:00Z", + "Hs (total) (m)": 1.899, + "Tp (total) (s)": 8.2537 + }, + { + "Date+Time": "1992-05-05T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 13.7928 + }, + { + "Date+Time": "1992-05-06T00:00:00Z", + "Hs (total) (m)": 2.2027, + "Tp (total) (s)": 12.4538 + }, + { + "Date+Time": "1992-05-07T00:00:00Z", + "Hs (total) (m)": 2.2393, + "Tp (total) (s)": 12.3371 + }, + { + "Date+Time": "1992-05-08T00:00:00Z", + "Hs (total) (m)": 2.2416, + "Tp (total) (s)": 10.9195 + }, + { + "Date+Time": "1992-05-09T00:00:00Z", + "Hs (total) (m)": 2.7291, + "Tp (total) (s)": 13.6029 + }, + { + "Date+Time": "1992-05-10T00:00:00Z", + "Hs (total) (m)": 2.2332, + "Tp (total) (s)": 13.2115 + }, + { + "Date+Time": "1992-05-11T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 12.6385 + }, + { + "Date+Time": "1992-05-12T00:00:00Z", + "Hs (total) (m)": 2.8748, + "Tp (total) (s)": 9.4394 + }, + { + "Date+Time": "1992-05-13T00:00:00Z", + "Hs (total) (m)": 2.8588, + "Tp (total) (s)": 10.2725 + }, + { + "Date+Time": "1992-05-14T00:00:00Z", + "Hs (total) (m)": 2.3217, + "Tp (total) (s)": 10.3694 + }, + { + "Date+Time": "1992-05-15T00:00:00Z", + "Hs (total) (m)": 3.5211, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "1992-05-16T00:00:00Z", + "Hs (total) (m)": 1.664, + "Tp (total) (s)": 9.5317 + }, + { + "Date+Time": "1992-05-17T00:00:00Z", + "Hs (total) (m)": 1.0865, + "Tp (total) (s)": 9.386 + }, + { + "Date+Time": "1992-05-18T00:00:00Z", + "Hs (total) (m)": 1.2261, + "Tp (total) (s)": 8.8893 + }, + { + "Date+Time": "1992-05-19T00:00:00Z", + "Hs (total) (m)": 0.766, + "Tp (total) (s)": 9.6149 + }, + { + "Date+Time": "1992-05-20T00:00:00Z", + "Hs (total) (m)": 0.6767, + "Tp (total) (s)": 9.4981 + }, + { + "Date+Time": "1992-05-21T00:00:00Z", + "Hs (total) (m)": 0.7202, + "Tp (total) (s)": 8.9236 + }, + { + "Date+Time": "1992-05-22T00:00:00Z", + "Hs (total) (m)": 0.7225, + "Tp (total) (s)": 8.5231 + }, + { + "Date+Time": "1992-05-23T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 12.5004 + }, + { + "Date+Time": "1992-05-24T00:00:00Z", + "Hs (total) (m)": 1.0002, + "Tp (total) (s)": 11.9419 + }, + { + "Date+Time": "1992-05-25T00:00:00Z", + "Hs (total) (m)": 1.3581, + "Tp (total) (s)": 4.7983 + }, + { + "Date+Time": "1992-05-26T00:00:00Z", + "Hs (total) (m)": 2.4339, + "Tp (total) (s)": 13.7539 + }, + { + "Date+Time": "1992-05-27T00:00:00Z", + "Hs (total) (m)": 1.6099, + "Tp (total) (s)": 11.2178 + }, + { + "Date+Time": "1992-05-28T00:00:00Z", + "Hs (total) (m)": 1.0933, + "Tp (total) (s)": 10.3313 + }, + { + "Date+Time": "1992-05-29T00:00:00Z", + "Hs (total) (m)": 0.8347, + "Tp (total) (s)": 8.5757 + }, + { + "Date+Time": "1992-05-30T00:00:00Z", + "Hs (total) (m)": 0.5242, + "Tp (total) (s)": 9.0419 + }, + { + "Date+Time": "1992-05-31T00:00:00Z", + "Hs (total) (m)": 0.531, + "Tp (total) (s)": 8.7703 + }, + { + "Date+Time": "1992-06-01T00:00:00Z", + "Hs (total) (m)": 0.9743, + "Tp (total) (s)": 10.3954 + }, + { + "Date+Time": "1992-06-02T00:00:00Z", + "Hs (total) (m)": 0.7317, + "Tp (total) (s)": 10.6388 + }, + { + "Date+Time": "1992-06-03T00:00:00Z", + "Hs (total) (m)": 1.3062, + "Tp (total) (s)": 10.4778 + }, + { + "Date+Time": "1992-06-04T00:00:00Z", + "Hs (total) (m)": 1.1979, + "Tp (total) (s)": 10.3015 + }, + { + "Date+Time": "1992-06-05T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 9.6126 + }, + { + "Date+Time": "1992-06-06T00:00:00Z", + "Hs (total) (m)": 0.7355, + "Tp (total) (s)": 9.2425 + }, + { + "Date+Time": "1992-06-07T00:00:00Z", + "Hs (total) (m)": 0.6035, + "Tp (total) (s)": 7.7792 + }, + { + "Date+Time": "1992-06-08T00:00:00Z", + "Hs (total) (m)": 0.6287, + "Tp (total) (s)": 8.0767 + }, + { + "Date+Time": "1992-06-09T00:00:00Z", + "Hs (total) (m)": 0.9728, + "Tp (total) (s)": 11.5513 + }, + { + "Date+Time": "1992-06-10T00:00:00Z", + "Hs (total) (m)": 1.1696, + "Tp (total) (s)": 11.5871 + }, + { + "Date+Time": "1992-06-11T00:00:00Z", + "Hs (total) (m)": 1.1048, + "Tp (total) (s)": 11.2392 + }, + { + "Date+Time": "1992-06-12T00:00:00Z", + "Hs (total) (m)": 1.014, + "Tp (total) (s)": 8.9259 + }, + { + "Date+Time": "1992-06-13T00:00:00Z", + "Hs (total) (m)": 0.9949, + "Tp (total) (s)": 9.315 + }, + { + "Date+Time": "1992-06-14T00:00:00Z", + "Hs (total) (m)": 1.4115, + "Tp (total) (s)": 7.7654 + }, + { + "Date+Time": "1992-06-15T00:00:00Z", + "Hs (total) (m)": 1.4473, + "Tp (total) (s)": 11.1225 + }, + { + "Date+Time": "1992-06-16T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 10.5968 + }, + { + "Date+Time": "1992-06-17T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 10.3954 + }, + { + "Date+Time": "1992-06-18T00:00:00Z", + "Hs (total) (m)": 0.9697, + "Tp (total) (s)": 10.1314 + }, + { + "Date+Time": "1992-06-19T00:00:00Z", + "Hs (total) (m)": 0.8309, + "Tp (total) (s)": 9.5157 + }, + { + "Date+Time": "1992-06-20T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 9.0831 + }, + { + "Date+Time": "1992-06-21T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 5.6917 + }, + { + "Date+Time": "1992-06-22T00:00:00Z", + "Hs (total) (m)": 0.8751, + "Tp (total) (s)": 7.6327 + }, + { + "Date+Time": "1992-06-23T00:00:00Z", + "Hs (total) (m)": 1.0216, + "Tp (total) (s)": 11.0637 + }, + { + "Date+Time": "1992-06-24T00:00:00Z", + "Hs (total) (m)": 1.0063, + "Tp (total) (s)": 10.1466 + }, + { + "Date+Time": "1992-06-25T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 9.6294 + }, + { + "Date+Time": "1992-06-26T00:00:00Z", + "Hs (total) (m)": 1.4153, + "Tp (total) (s)": 9.6751 + }, + { + "Date+Time": "1992-06-27T00:00:00Z", + "Hs (total) (m)": 1.2535, + "Tp (total) (s)": 9.3661 + }, + { + "Date+Time": "1992-06-28T00:00:00Z", + "Hs (total) (m)": 1.1727, + "Tp (total) (s)": 10.0101 + }, + { + "Date+Time": "1992-06-29T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 9.1685 + }, + { + "Date+Time": "1992-06-30T00:00:00Z", + "Hs (total) (m)": 0.8133, + "Tp (total) (s)": 8.6718 + }, + { + "Date+Time": "1992-07-01T00:00:00Z", + "Hs (total) (m)": 0.499, + "Tp (total) (s)": 8.0836 + }, + { + "Date+Time": "1992-07-02T00:00:00Z", + "Hs (total) (m)": 0.9697, + "Tp (total) (s)": 8.4384 + }, + { + "Date+Time": "1992-07-03T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 11.6695 + }, + { + "Date+Time": "1992-07-04T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 11.3346 + }, + { + "Date+Time": "1992-07-05T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 11.2995 + }, + { + "Date+Time": "1992-07-06T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 10.7128 + }, + { + "Date+Time": "1992-07-07T00:00:00Z", + "Hs (total) (m)": 1.1658, + "Tp (total) (s)": 10.86 + }, + { + "Date+Time": "1992-07-08T00:00:00Z", + "Hs (total) (m)": 1.2543, + "Tp (total) (s)": 11.301 + }, + { + "Date+Time": "1992-07-09T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 11.2239 + }, + { + "Date+Time": "1992-07-10T00:00:00Z", + "Hs (total) (m)": 1.4588, + "Tp (total) (s)": 10.3351 + }, + { + "Date+Time": "1992-07-11T00:00:00Z", + "Hs (total) (m)": 1.4908, + "Tp (total) (s)": 9.8086 + }, + { + "Date+Time": "1992-07-12T00:00:00Z", + "Hs (total) (m)": 1.4634, + "Tp (total) (s)": 9.5317 + }, + { + "Date+Time": "1992-07-13T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 9.3394 + }, + { + "Date+Time": "1992-07-14T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 9.0091 + }, + { + "Date+Time": "1992-07-15T00:00:00Z", + "Hs (total) (m)": 1.5053, + "Tp (total) (s)": 8.8443 + }, + { + "Date+Time": "1992-07-16T00:00:00Z", + "Hs (total) (m)": 1.6869, + "Tp (total) (s)": 9.2616 + }, + { + "Date+Time": "1992-07-17T00:00:00Z", + "Hs (total) (m)": 1.8326, + "Tp (total) (s)": 9.1273 + }, + { + "Date+Time": "1992-07-18T00:00:00Z", + "Hs (total) (m)": 3.209, + "Tp (total) (s)": 14.7359 + }, + { + "Date+Time": "1992-07-19T00:00:00Z", + "Hs (total) (m)": 3.3105, + "Tp (total) (s)": 13.8592 + }, + { + "Date+Time": "1992-07-20T00:00:00Z", + "Hs (total) (m)": 2.9466, + "Tp (total) (s)": 11.4277 + }, + { + "Date+Time": "1992-07-21T00:00:00Z", + "Hs (total) (m)": 2.2034, + "Tp (total) (s)": 11.0225 + }, + { + "Date+Time": "1992-07-22T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 10.5564 + }, + { + "Date+Time": "1992-07-23T00:00:00Z", + "Hs (total) (m)": 2.0035, + "Tp (total) (s)": 7.3336 + }, + { + "Date+Time": "1992-07-24T00:00:00Z", + "Hs (total) (m)": 1.4573, + "Tp (total) (s)": 7.7555 + }, + { + "Date+Time": "1992-07-25T00:00:00Z", + "Hs (total) (m)": 1.9539, + "Tp (total) (s)": 6.8094 + }, + { + "Date+Time": "1992-07-26T00:00:00Z", + "Hs (total) (m)": 2.3057, + "Tp (total) (s)": 10.1321 + }, + { + "Date+Time": "1992-07-27T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 10.638 + }, + { + "Date+Time": "1992-07-28T00:00:00Z", + "Hs (total) (m)": 1.9669, + "Tp (total) (s)": 10.4663 + }, + { + "Date+Time": "1992-07-29T00:00:00Z", + "Hs (total) (m)": 1.5625, + "Tp (total) (s)": 9.9033 + }, + { + "Date+Time": "1992-07-30T00:00:00Z", + "Hs (total) (m)": 1.2444, + "Tp (total) (s)": 9.1731 + }, + { + "Date+Time": "1992-07-31T00:00:00Z", + "Hs (total) (m)": 0.9407, + "Tp (total) (s)": 9.4172 + }, + { + "Date+Time": "1992-08-01T00:00:00Z", + "Hs (total) (m)": 1.8166, + "Tp (total) (s)": 7.0566 + }, + { + "Date+Time": "1992-08-02T00:00:00Z", + "Hs (total) (m)": 1.6701, + "Tp (total) (s)": 10.5174 + }, + { + "Date+Time": "1992-08-03T00:00:00Z", + "Hs (total) (m)": 2.0402, + "Tp (total) (s)": 10.5426 + }, + { + "Date+Time": "1992-08-04T00:00:00Z", + "Hs (total) (m)": 2.3064, + "Tp (total) (s)": 10.5502 + }, + { + "Date+Time": "1992-08-05T00:00:00Z", + "Hs (total) (m)": 2.7505, + "Tp (total) (s)": 10.4999 + }, + { + "Date+Time": "1992-08-06T00:00:00Z", + "Hs (total) (m)": 2.3858, + "Tp (total) (s)": 9.579 + }, + { + "Date+Time": "1992-08-07T00:00:00Z", + "Hs (total) (m)": 1.9662, + "Tp (total) (s)": 9.7423 + }, + { + "Date+Time": "1992-08-08T00:00:00Z", + "Hs (total) (m)": 1.7174, + "Tp (total) (s)": 9.5065 + }, + { + "Date+Time": "1992-08-09T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 9.5889 + }, + { + "Date+Time": "1992-08-10T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 9.7537 + }, + { + "Date+Time": "1992-08-11T00:00:00Z", + "Hs (total) (m)": 1.4748, + "Tp (total) (s)": 9.1166 + }, + { + "Date+Time": "1992-08-12T00:00:00Z", + "Hs (total) (m)": 2.0821, + "Tp (total) (s)": 10.2565 + }, + { + "Date+Time": "1992-08-13T00:00:00Z", + "Hs (total) (m)": 2.1859, + "Tp (total) (s)": 10.1611 + }, + { + "Date+Time": "1992-08-14T00:00:00Z", + "Hs (total) (m)": 1.9875, + "Tp (total) (s)": 9.8193 + }, + { + "Date+Time": "1992-08-15T00:00:00Z", + "Hs (total) (m)": 2.0814, + "Tp (total) (s)": 8.668 + }, + { + "Date+Time": "1992-08-16T00:00:00Z", + "Hs (total) (m)": 1.5046, + "Tp (total) (s)": 8.1561 + }, + { + "Date+Time": "1992-08-17T00:00:00Z", + "Hs (total) (m)": 1.7853, + "Tp (total) (s)": 11.4002 + }, + { + "Date+Time": "1992-08-18T00:00:00Z", + "Hs (total) (m)": 1.9211, + "Tp (total) (s)": 11.4368 + }, + { + "Date+Time": "1992-08-19T00:00:00Z", + "Hs (total) (m)": 2.1332, + "Tp (total) (s)": 10.8005 + }, + { + "Date+Time": "1992-08-20T00:00:00Z", + "Hs (total) (m)": 1.7975, + "Tp (total) (s)": 10.1833 + }, + { + "Date+Time": "1992-08-21T00:00:00Z", + "Hs (total) (m)": 1.6823, + "Tp (total) (s)": 9.3081 + }, + { + "Date+Time": "1992-08-22T00:00:00Z", + "Hs (total) (m)": 1.8464, + "Tp (total) (s)": 7.9279 + }, + { + "Date+Time": "1992-08-23T00:00:00Z", + "Hs (total) (m)": 1.6037, + "Tp (total) (s)": 7.667 + }, + { + "Date+Time": "1992-08-24T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 7.7937 + }, + { + "Date+Time": "1992-08-25T00:00:00Z", + "Hs (total) (m)": 1.9814, + "Tp (total) (s)": 8.4681 + }, + { + "Date+Time": "1992-08-26T00:00:00Z", + "Hs (total) (m)": 2.4812, + "Tp (total) (s)": 9.0892 + }, + { + "Date+Time": "1992-08-27T00:00:00Z", + "Hs (total) (m)": 2.1561, + "Tp (total) (s)": 8.7977 + }, + { + "Date+Time": "1992-08-28T00:00:00Z", + "Hs (total) (m)": 2.0913, + "Tp (total) (s)": 9.1189 + }, + { + "Date+Time": "1992-08-29T00:00:00Z", + "Hs (total) (m)": 1.6327, + "Tp (total) (s)": 10.4877 + }, + { + "Date+Time": "1992-08-30T00:00:00Z", + "Hs (total) (m)": 1.5595, + "Tp (total) (s)": 9.65 + }, + { + "Date+Time": "1992-08-31T00:00:00Z", + "Hs (total) (m)": 1.4626, + "Tp (total) (s)": 8.4384 + }, + { + "Date+Time": "1992-09-01T00:00:00Z", + "Hs (total) (m)": 1.8471, + "Tp (total) (s)": 8.3453 + }, + { + "Date+Time": "1992-09-02T00:00:00Z", + "Hs (total) (m)": 2.3118, + "Tp (total) (s)": 9.3616 + }, + { + "Date+Time": "1992-09-03T00:00:00Z", + "Hs (total) (m)": 2.1088, + "Tp (total) (s)": 9.1899 + }, + { + "Date+Time": "1992-09-04T00:00:00Z", + "Hs (total) (m)": 1.8044, + "Tp (total) (s)": 9.2143 + }, + { + "Date+Time": "1992-09-05T00:00:00Z", + "Hs (total) (m)": 1.5847, + "Tp (total) (s)": 8.6749 + }, + { + "Date+Time": "1992-09-06T00:00:00Z", + "Hs (total) (m)": 1.8715, + "Tp (total) (s)": 8.6413 + }, + { + "Date+Time": "1992-09-07T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 8.5772 + }, + { + "Date+Time": "1992-09-08T00:00:00Z", + "Hs (total) (m)": 2.3949, + "Tp (total) (s)": 9.36 + }, + { + "Date+Time": "1992-09-09T00:00:00Z", + "Hs (total) (m)": 2.6933, + "Tp (total) (s)": 12.3859 + }, + { + "Date+Time": "1992-09-10T00:00:00Z", + "Hs (total) (m)": 3.5134, + "Tp (total) (s)": 10.5701 + }, + { + "Date+Time": "1992-09-11T00:00:00Z", + "Hs (total) (m)": 2.8329, + "Tp (total) (s)": 10.342 + }, + { + "Date+Time": "1992-09-12T00:00:00Z", + "Hs (total) (m)": 2.2683, + "Tp (total) (s)": 9.682 + }, + { + "Date+Time": "1992-09-13T00:00:00Z", + "Hs (total) (m)": 1.664, + "Tp (total) (s)": 8.9427 + }, + { + "Date+Time": "1992-09-14T00:00:00Z", + "Hs (total) (m)": 1.8868, + "Tp (total) (s)": 8.948 + }, + { + "Date+Time": "1992-09-15T00:00:00Z", + "Hs (total) (m)": 2.3789, + "Tp (total) (s)": 8.5513 + }, + { + "Date+Time": "1992-09-16T00:00:00Z", + "Hs (total) (m)": 2.2652, + "Tp (total) (s)": 10.432 + }, + { + "Date+Time": "1992-09-17T00:00:00Z", + "Hs (total) (m)": 2.2958, + "Tp (total) (s)": 11.3224 + }, + { + "Date+Time": "1992-09-18T00:00:00Z", + "Hs (total) (m)": 1.8212, + "Tp (total) (s)": 11.1599 + }, + { + "Date+Time": "1992-09-19T00:00:00Z", + "Hs (total) (m)": 1.6594, + "Tp (total) (s)": 9.5309 + }, + { + "Date+Time": "1992-09-20T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 9.6828 + }, + { + "Date+Time": "1992-09-21T00:00:00Z", + "Hs (total) (m)": 1.4275, + "Tp (total) (s)": 10.1032 + }, + { + "Date+Time": "1992-09-22T00:00:00Z", + "Hs (total) (m)": 1.2741, + "Tp (total) (s)": 10.432 + }, + { + "Date+Time": "1992-09-23T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 10.548 + }, + { + "Date+Time": "1992-09-24T00:00:00Z", + "Hs (total) (m)": 0.8591, + "Tp (total) (s)": 9.3043 + }, + { + "Date+Time": "1992-09-25T00:00:00Z", + "Hs (total) (m)": 0.8545, + "Tp (total) (s)": 8.9419 + }, + { + "Date+Time": "1992-09-26T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 9.0052 + }, + { + "Date+Time": "1992-09-27T00:00:00Z", + "Hs (total) (m)": 0.7958, + "Tp (total) (s)": 9.3333 + }, + { + "Date+Time": "1992-09-28T00:00:00Z", + "Hs (total) (m)": 0.6996, + "Tp (total) (s)": 8.5513 + }, + { + "Date+Time": "1992-09-29T00:00:00Z", + "Hs (total) (m)": 1.5908, + "Tp (total) (s)": 10.4305 + }, + { + "Date+Time": "1992-09-30T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 12.508 + }, + { + "Date+Time": "1992-10-01T00:00:00Z", + "Hs (total) (m)": 1.886, + "Tp (total) (s)": 11.7252 + }, + { + "Date+Time": "1992-10-02T00:00:00Z", + "Hs (total) (m)": 1.7792, + "Tp (total) (s)": 10.728 + }, + { + "Date+Time": "1992-10-03T00:00:00Z", + "Hs (total) (m)": 1.7472, + "Tp (total) (s)": 9.7331 + }, + { + "Date+Time": "1992-10-04T00:00:00Z", + "Hs (total) (m)": 1.6007, + "Tp (total) (s)": 9.5714 + }, + { + "Date+Time": "1992-10-05T00:00:00Z", + "Hs (total) (m)": 1.5229, + "Tp (total) (s)": 9.4813 + }, + { + "Date+Time": "1992-10-06T00:00:00Z", + "Hs (total) (m)": 1.4695, + "Tp (total) (s)": 9.431 + }, + { + "Date+Time": "1992-10-07T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 9.4371 + }, + { + "Date+Time": "1992-10-08T00:00:00Z", + "Hs (total) (m)": 1.043, + "Tp (total) (s)": 9.3562 + }, + { + "Date+Time": "1992-10-09T00:00:00Z", + "Hs (total) (m)": 0.811, + "Tp (total) (s)": 10.2008 + }, + { + "Date+Time": "1992-10-10T00:00:00Z", + "Hs (total) (m)": 0.8034, + "Tp (total) (s)": 9.3791 + }, + { + "Date+Time": "1992-10-11T00:00:00Z", + "Hs (total) (m)": 0.6088, + "Tp (total) (s)": 8.9442 + }, + { + "Date+Time": "1992-10-12T00:00:00Z", + "Hs (total) (m)": 0.4975, + "Tp (total) (s)": 5.0134 + }, + { + "Date+Time": "1992-10-13T00:00:00Z", + "Hs (total) (m)": 0.4501, + "Tp (total) (s)": 12.1815 + }, + { + "Date+Time": "1992-10-14T00:00:00Z", + "Hs (total) (m)": 0.5196, + "Tp (total) (s)": 11.6199 + }, + { + "Date+Time": "1992-10-15T00:00:00Z", + "Hs (total) (m)": 1.0575, + "Tp (total) (s)": 3.2311 + }, + { + "Date+Time": "1992-10-16T00:00:00Z", + "Hs (total) (m)": 1.2368, + "Tp (total) (s)": 4.5251 + }, + { + "Date+Time": "1992-10-17T00:00:00Z", + "Hs (total) (m)": 1.2879, + "Tp (total) (s)": 7.59 + }, + { + "Date+Time": "1992-10-18T00:00:00Z", + "Hs (total) (m)": 1.204, + "Tp (total) (s)": 9.4707 + }, + { + "Date+Time": "1992-10-19T00:00:00Z", + "Hs (total) (m)": 1.0231, + "Tp (total) (s)": 11.4925 + }, + { + "Date+Time": "1992-10-20T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 11.5772 + }, + { + "Date+Time": "1992-10-21T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 10.065 + }, + { + "Date+Time": "1992-10-22T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 11.9785 + }, + { + "Date+Time": "1992-10-23T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 9.3875 + }, + { + "Date+Time": "1992-10-24T00:00:00Z", + "Hs (total) (m)": 2.5185, + "Tp (total) (s)": 14.5054 + }, + { + "Date+Time": "1992-10-25T00:00:00Z", + "Hs (total) (m)": 3.3723, + "Tp (total) (s)": 14.5016 + }, + { + "Date+Time": "1992-10-26T00:00:00Z", + "Hs (total) (m)": 3.3761, + "Tp (total) (s)": 12.7102 + }, + { + "Date+Time": "1992-10-27T00:00:00Z", + "Hs (total) (m)": 2.72, + "Tp (total) (s)": 11.6543 + }, + { + "Date+Time": "1992-10-28T00:00:00Z", + "Hs (total) (m)": 2.2279, + "Tp (total) (s)": 10.255 + }, + { + "Date+Time": "1992-10-29T00:00:00Z", + "Hs (total) (m)": 2.1668, + "Tp (total) (s)": 11.0797 + }, + { + "Date+Time": "1992-10-30T00:00:00Z", + "Hs (total) (m)": 1.9295, + "Tp (total) (s)": 11.4185 + }, + { + "Date+Time": "1992-10-31T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 11.5017 + }, + { + "Date+Time": "1992-11-01T00:00:00Z", + "Hs (total) (m)": 2.2027, + "Tp (total) (s)": 7.8051 + }, + { + "Date+Time": "1992-11-02T00:00:00Z", + "Hs (total) (m)": 2.4796, + "Tp (total) (s)": 7.9836 + }, + { + "Date+Time": "1992-11-03T00:00:00Z", + "Hs (total) (m)": 2.8184, + "Tp (total) (s)": 10.3145 + }, + { + "Date+Time": "1992-11-04T00:00:00Z", + "Hs (total) (m)": 2.6849, + "Tp (total) (s)": 10.5289 + }, + { + "Date+Time": "1992-11-05T00:00:00Z", + "Hs (total) (m)": 2.6719, + "Tp (total) (s)": 10.5243 + }, + { + "Date+Time": "1992-11-06T00:00:00Z", + "Hs (total) (m)": 2.9038, + "Tp (total) (s)": 10.9546 + }, + { + "Date+Time": "1992-11-07T00:00:00Z", + "Hs (total) (m)": 2.7276, + "Tp (total) (s)": 12.4355 + }, + { + "Date+Time": "1992-11-08T00:00:00Z", + "Hs (total) (m)": 2.1134, + "Tp (total) (s)": 12.2753 + }, + { + "Date+Time": "1992-11-09T00:00:00Z", + "Hs (total) (m)": 2.3515, + "Tp (total) (s)": 11.6565 + }, + { + "Date+Time": "1992-11-10T00:00:00Z", + "Hs (total) (m)": 1.8929, + "Tp (total) (s)": 11.4559 + }, + { + "Date+Time": "1992-11-11T00:00:00Z", + "Hs (total) (m)": 2.6162, + "Tp (total) (s)": 14.0339 + }, + { + "Date+Time": "1992-11-12T00:00:00Z", + "Hs (total) (m)": 3.1426, + "Tp (total) (s)": 13.8394 + }, + { + "Date+Time": "1992-11-13T00:00:00Z", + "Hs (total) (m)": 3.0908, + "Tp (total) (s)": 13.271 + }, + { + "Date+Time": "1992-11-14T00:00:00Z", + "Hs (total) (m)": 2.8642, + "Tp (total) (s)": 12.8582 + }, + { + "Date+Time": "1992-11-15T00:00:00Z", + "Hs (total) (m)": 1.8265, + "Tp (total) (s)": 10.7753 + }, + { + "Date+Time": "1992-11-16T00:00:00Z", + "Hs (total) (m)": 1.6976, + "Tp (total) (s)": 11.7336 + }, + { + "Date+Time": "1992-11-17T00:00:00Z", + "Hs (total) (m)": 2.0775, + "Tp (total) (s)": 11.5566 + }, + { + "Date+Time": "1992-11-18T00:00:00Z", + "Hs (total) (m)": 2.4957, + "Tp (total) (s)": 12.2913 + }, + { + "Date+Time": "1992-11-19T00:00:00Z", + "Hs (total) (m)": 2.9542, + "Tp (total) (s)": 12.8842 + }, + { + "Date+Time": "1992-11-20T00:00:00Z", + "Hs (total) (m)": 2.8893, + "Tp (total) (s)": 12.7888 + }, + { + "Date+Time": "1992-11-21T00:00:00Z", + "Hs (total) (m)": 2.5094, + "Tp (total) (s)": 12.2265 + }, + { + "Date+Time": "1992-11-22T00:00:00Z", + "Hs (total) (m)": 2.6528, + "Tp (total) (s)": 11.3552 + }, + { + "Date+Time": "1992-11-23T00:00:00Z", + "Hs (total) (m)": 4.1261, + "Tp (total) (s)": 11.2629 + }, + { + "Date+Time": "1992-11-24T00:00:00Z", + "Hs (total) (m)": 4.1261, + "Tp (total) (s)": 11.8725 + }, + { + "Date+Time": "1992-11-25T00:00:00Z", + "Hs (total) (m)": 3.9293, + "Tp (total) (s)": 12.1242 + }, + { + "Date+Time": "1992-11-26T00:00:00Z", + "Hs (total) (m)": 3.6836, + "Tp (total) (s)": 12.212 + }, + { + "Date+Time": "1992-11-27T00:00:00Z", + "Hs (total) (m)": 3.8461, + "Tp (total) (s)": 11.7443 + }, + { + "Date+Time": "1992-11-28T00:00:00Z", + "Hs (total) (m)": 3.3441, + "Tp (total) (s)": 11.4246 + }, + { + "Date+Time": "1992-11-29T00:00:00Z", + "Hs (total) (m)": 2.7963, + "Tp (total) (s)": 11.4284 + }, + { + "Date+Time": "1992-11-30T00:00:00Z", + "Hs (total) (m)": 3.0778, + "Tp (total) (s)": 11.8557 + }, + { + "Date+Time": "1992-12-01T00:00:00Z", + "Hs (total) (m)": 3.2327, + "Tp (total) (s)": 13.2351 + }, + { + "Date+Time": "1992-12-02T00:00:00Z", + "Hs (total) (m)": 3.7774, + "Tp (total) (s)": 16.4182 + }, + { + "Date+Time": "1992-12-03T00:00:00Z", + "Hs (total) (m)": 3.5875, + "Tp (total) (s)": 16.2038 + }, + { + "Date+Time": "1992-12-04T00:00:00Z", + "Hs (total) (m)": 3.6348, + "Tp (total) (s)": 14.9396 + }, + { + "Date+Time": "1992-12-05T00:00:00Z", + "Hs (total) (m)": 3.1533, + "Tp (total) (s)": 13.5983 + }, + { + "Date+Time": "1992-12-06T00:00:00Z", + "Hs (total) (m)": 2.8756, + "Tp (total) (s)": 13.0284 + }, + { + "Date+Time": "1992-12-07T00:00:00Z", + "Hs (total) (m)": 2.6261, + "Tp (total) (s)": 11.7443 + }, + { + "Date+Time": "1992-12-08T00:00:00Z", + "Hs (total) (m)": 2.4552, + "Tp (total) (s)": 10.7105 + }, + { + "Date+Time": "1992-12-09T00:00:00Z", + "Hs (total) (m)": 2.7062, + "Tp (total) (s)": 14.8946 + }, + { + "Date+Time": "1992-12-10T00:00:00Z", + "Hs (total) (m)": 2.5086, + "Tp (total) (s)": 15.0052 + }, + { + "Date+Time": "1992-12-11T00:00:00Z", + "Hs (total) (m)": 2.6627, + "Tp (total) (s)": 14.2766 + }, + { + "Date+Time": "1992-12-12T00:00:00Z", + "Hs (total) (m)": 2.7085, + "Tp (total) (s)": 13.6685 + }, + { + "Date+Time": "1992-12-13T00:00:00Z", + "Hs (total) (m)": 2.1828, + "Tp (total) (s)": 12.1952 + }, + { + "Date+Time": "1992-12-14T00:00:00Z", + "Hs (total) (m)": 2.7886, + "Tp (total) (s)": 11.2018 + }, + { + "Date+Time": "1992-12-15T00:00:00Z", + "Hs (total) (m)": 3.4722, + "Tp (total) (s)": 11.4963 + }, + { + "Date+Time": "1992-12-16T00:00:00Z", + "Hs (total) (m)": 2.8298, + "Tp (total) (s)": 11.5162 + }, + { + "Date+Time": "1992-12-17T00:00:00Z", + "Hs (total) (m)": 2.4598, + "Tp (total) (s)": 11.4597 + }, + { + "Date+Time": "1992-12-18T00:00:00Z", + "Hs (total) (m)": 3.2296, + "Tp (total) (s)": 11.4292 + }, + { + "Date+Time": "1992-12-19T00:00:00Z", + "Hs (total) (m)": 2.3736, + "Tp (total) (s)": 11.4475 + }, + { + "Date+Time": "1992-12-20T00:00:00Z", + "Hs (total) (m)": 1.7869, + "Tp (total) (s)": 11.5749 + }, + { + "Date+Time": "1992-12-21T00:00:00Z", + "Hs (total) (m)": 2.0615, + "Tp (total) (s)": 11.3933 + }, + { + "Date+Time": "1992-12-22T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 12.5538 + }, + { + "Date+Time": "1992-12-23T00:00:00Z", + "Hs (total) (m)": 2.018, + "Tp (total) (s)": 15.3127 + }, + { + "Date+Time": "1992-12-24T00:00:00Z", + "Hs (total) (m)": 2.4957, + "Tp (total) (s)": 15.2631 + }, + { + "Date+Time": "1992-12-25T00:00:00Z", + "Hs (total) (m)": 2.6627, + "Tp (total) (s)": 15.331 + }, + { + "Date+Time": "1992-12-26T00:00:00Z", + "Hs (total) (m)": 2.7512, + "Tp (total) (s)": 15.3104 + }, + { + "Date+Time": "1992-12-27T00:00:00Z", + "Hs (total) (m)": 2.1973, + "Tp (total) (s)": 14.8381 + }, + { + "Date+Time": "1992-12-28T00:00:00Z", + "Hs (total) (m)": 1.9997, + "Tp (total) (s)": 16.9424 + }, + { + "Date+Time": "1992-12-29T00:00:00Z", + "Hs (total) (m)": 2.3331, + "Tp (total) (s)": 16.0329 + }, + { + "Date+Time": "1992-12-30T00:00:00Z", + "Hs (total) (m)": 2.2935, + "Tp (total) (s)": 15.2402 + }, + { + "Date+Time": "1992-12-31T00:00:00Z", + "Hs (total) (m)": 2.3911, + "Tp (total) (s)": 14.4131 + }, + { + "Date+Time": "1993-01-01T00:00:00Z", + "Hs (total) (m)": 2.8367, + "Tp (total) (s)": 12.521 + }, + { + "Date+Time": "1993-01-02T00:00:00Z", + "Hs (total) (m)": 4.0208, + "Tp (total) (s)": 13.8272 + }, + { + "Date+Time": "1993-01-03T00:00:00Z", + "Hs (total) (m)": 4.0345, + "Tp (total) (s)": 13.8874 + }, + { + "Date+Time": "1993-01-04T00:00:00Z", + "Hs (total) (m)": 4.1658, + "Tp (total) (s)": 13.0528 + }, + { + "Date+Time": "1993-01-05T00:00:00Z", + "Hs (total) (m)": 4.1871, + "Tp (total) (s)": 13.6143 + }, + { + "Date+Time": "1993-01-06T00:00:00Z", + "Hs (total) (m)": 3.6523, + "Tp (total) (s)": 13.5601 + }, + { + "Date+Time": "1993-01-07T00:00:00Z", + "Hs (total) (m)": 3.1274, + "Tp (total) (s)": 12.8811 + }, + { + "Date+Time": "1993-01-08T00:00:00Z", + "Hs (total) (m)": 3.4219, + "Tp (total) (s)": 11.9945 + }, + { + "Date+Time": "1993-01-09T00:00:00Z", + "Hs (total) (m)": 4.7845, + "Tp (total) (s)": 15.0243 + }, + { + "Date+Time": "1993-01-10T00:00:00Z", + "Hs (total) (m)": 3.9628, + "Tp (total) (s)": 12.859 + }, + { + "Date+Time": "1993-01-11T00:00:00Z", + "Hs (total) (m)": 4.5801, + "Tp (total) (s)": 12.5645 + }, + { + "Date+Time": "1993-01-12T00:00:00Z", + "Hs (total) (m)": 5.3749, + "Tp (total) (s)": 14.18 + }, + { + "Date+Time": "1993-01-13T00:00:00Z", + "Hs (total) (m)": 5.5699, + "Tp (total) (s)": 15.1594 + }, + { + "Date+Time": "1993-01-14T00:00:00Z", + "Hs (total) (m)": 4.3489, + "Tp (total) (s)": 15.1814 + }, + { + "Date+Time": "1993-01-15T00:00:00Z", + "Hs (total) (m)": 4.516, + "Tp (total) (s)": 12.0373 + }, + { + "Date+Time": "1993-01-16T00:00:00Z", + "Hs (total) (m)": 4.812, + "Tp (total) (s)": 12.1944 + }, + { + "Date+Time": "1993-01-17T00:00:00Z", + "Hs (total) (m)": 6.2479, + "Tp (total) (s)": 12.6465 + }, + { + "Date+Time": "1993-01-18T00:00:00Z", + "Hs (total) (m)": 4.5839, + "Tp (total) (s)": 12.8117 + }, + { + "Date+Time": "1993-01-19T00:00:00Z", + "Hs (total) (m)": 3.6454, + "Tp (total) (s)": 12.4424 + }, + { + "Date+Time": "1993-01-20T00:00:00Z", + "Hs (total) (m)": 3.573, + "Tp (total) (s)": 11.2506 + }, + { + "Date+Time": "1993-01-21T00:00:00Z", + "Hs (total) (m)": 3.9811, + "Tp (total) (s)": 14.9739 + }, + { + "Date+Time": "1993-01-22T00:00:00Z", + "Hs (total) (m)": 5.3056, + "Tp (total) (s)": 15.4571 + }, + { + "Date+Time": "1993-01-23T00:00:00Z", + "Hs (total) (m)": 5.2479, + "Tp (total) (s)": 15.9011 + }, + { + "Date+Time": "1993-01-24T00:00:00Z", + "Hs (total) (m)": 6.1334, + "Tp (total) (s)": 13.9325 + }, + { + "Date+Time": "1993-01-25T00:00:00Z", + "Hs (total) (m)": 5.1179, + "Tp (total) (s)": 14.9071 + }, + { + "Date+Time": "1993-01-26T00:00:00Z", + "Hs (total) (m)": 3.4021, + "Tp (total) (s)": 13.966 + }, + { + "Date+Time": "1993-01-27T00:00:00Z", + "Hs (total) (m)": 2.6437, + "Tp (total) (s)": 13.4632 + }, + { + "Date+Time": "1993-01-28T00:00:00Z", + "Hs (total) (m)": 2.3316, + "Tp (total) (s)": 11.5528 + }, + { + "Date+Time": "1993-01-29T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 10.3336 + }, + { + "Date+Time": "1993-01-30T00:00:00Z", + "Hs (total) (m)": 1.6129, + "Tp (total) (s)": 10.3809 + }, + { + "Date+Time": "1993-01-31T00:00:00Z", + "Hs (total) (m)": 2.0295, + "Tp (total) (s)": 13.8668 + }, + { + "Date+Time": "1993-02-01T00:00:00Z", + "Hs (total) (m)": 2.1851, + "Tp (total) (s)": 14.0614 + }, + { + "Date+Time": "1993-02-02T00:00:00Z", + "Hs (total) (m)": 2.4926, + "Tp (total) (s)": 14.082 + }, + { + "Date+Time": "1993-02-03T00:00:00Z", + "Hs (total) (m)": 2.7535, + "Tp (total) (s)": 14.3048 + }, + { + "Date+Time": "1993-02-04T00:00:00Z", + "Hs (total) (m)": 2.7772, + "Tp (total) (s)": 14.7603 + }, + { + "Date+Time": "1993-02-05T00:00:00Z", + "Hs (total) (m)": 2.4926, + "Tp (total) (s)": 14.5131 + }, + { + "Date+Time": "1993-02-06T00:00:00Z", + "Hs (total) (m)": 2.1561, + "Tp (total) (s)": 12.8155 + }, + { + "Date+Time": "1993-02-07T00:00:00Z", + "Hs (total) (m)": 1.5999, + "Tp (total) (s)": 11.5154 + }, + { + "Date+Time": "1993-02-08T00:00:00Z", + "Hs (total) (m)": 1.3886, + "Tp (total) (s)": 11.4681 + }, + { + "Date+Time": "1993-02-09T00:00:00Z", + "Hs (total) (m)": 1.3924, + "Tp (total) (s)": 11.5635 + }, + { + "Date+Time": "1993-02-10T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 11.6375 + }, + { + "Date+Time": "1993-02-11T00:00:00Z", + "Hs (total) (m)": 1.5, + "Tp (total) (s)": 11.5009 + }, + { + "Date+Time": "1993-02-12T00:00:00Z", + "Hs (total) (m)": 1.719, + "Tp (total) (s)": 11.137 + }, + { + "Date+Time": "1993-02-13T00:00:00Z", + "Hs (total) (m)": 2.2713, + "Tp (total) (s)": 16.6417 + }, + { + "Date+Time": "1993-02-14T00:00:00Z", + "Hs (total) (m)": 2.823, + "Tp (total) (s)": 15.492 + }, + { + "Date+Time": "1993-02-15T00:00:00Z", + "Hs (total) (m)": 2.4003, + "Tp (total) (s)": 14.8274 + }, + { + "Date+Time": "1993-02-16T00:00:00Z", + "Hs (total) (m)": 1.9684, + "Tp (total) (s)": 13.8432 + }, + { + "Date+Time": "1993-02-17T00:00:00Z", + "Hs (total) (m)": 1.7663, + "Tp (total) (s)": 13.2313 + }, + { + "Date+Time": "1993-02-18T00:00:00Z", + "Hs (total) (m)": 1.7037, + "Tp (total) (s)": 12.8445 + }, + { + "Date+Time": "1993-02-19T00:00:00Z", + "Hs (total) (m)": 1.7357, + "Tp (total) (s)": 12.434 + }, + { + "Date+Time": "1993-02-20T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 12.2593 + }, + { + "Date+Time": "1993-02-21T00:00:00Z", + "Hs (total) (m)": 2.0913, + "Tp (total) (s)": 14.6237 + }, + { + "Date+Time": "1993-02-22T00:00:00Z", + "Hs (total) (m)": 1.6556, + "Tp (total) (s)": 13.5945 + }, + { + "Date+Time": "1993-02-23T00:00:00Z", + "Hs (total) (m)": 1.2497, + "Tp (total) (s)": 10.4305 + }, + { + "Date+Time": "1993-02-24T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 10.5052 + }, + { + "Date+Time": "1993-02-25T00:00:00Z", + "Hs (total) (m)": 2.2103, + "Tp (total) (s)": 6.9544 + }, + { + "Date+Time": "1993-02-26T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 8.4025 + }, + { + "Date+Time": "1993-02-27T00:00:00Z", + "Hs (total) (m)": 1.9967, + "Tp (total) (s)": 8.929 + }, + { + "Date+Time": "1993-02-28T00:00:00Z", + "Hs (total) (m)": 1.8387, + "Tp (total) (s)": 10.461 + }, + { + "Date+Time": "1993-03-01T00:00:00Z", + "Hs (total) (m)": 1.5931, + "Tp (total) (s)": 10.3412 + }, + { + "Date+Time": "1993-03-02T00:00:00Z", + "Hs (total) (m)": 1.3695, + "Tp (total) (s)": 10.3641 + }, + { + "Date+Time": "1993-03-03T00:00:00Z", + "Hs (total) (m)": 0.9713, + "Tp (total) (s)": 10.9638 + }, + { + "Date+Time": "1993-03-04T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 15.3829 + }, + { + "Date+Time": "1993-03-05T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 14.9731 + }, + { + "Date+Time": "1993-03-06T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 13.7127 + }, + { + "Date+Time": "1993-03-07T00:00:00Z", + "Hs (total) (m)": 1.2246, + "Tp (total) (s)": 12.3424 + }, + { + "Date+Time": "1993-03-08T00:00:00Z", + "Hs (total) (m)": 1.8159, + "Tp (total) (s)": 12.5362 + }, + { + "Date+Time": "1993-03-09T00:00:00Z", + "Hs (total) (m)": 1.455, + "Tp (total) (s)": 12.4325 + }, + { + "Date+Time": "1993-03-10T00:00:00Z", + "Hs (total) (m)": 1.2665, + "Tp (total) (s)": 12.5057 + }, + { + "Date+Time": "1993-03-11T00:00:00Z", + "Hs (total) (m)": 1.957, + "Tp (total) (s)": 10.6464 + }, + { + "Date+Time": "1993-03-12T00:00:00Z", + "Hs (total) (m)": 2.1683, + "Tp (total) (s)": 13.9691 + }, + { + "Date+Time": "1993-03-13T00:00:00Z", + "Hs (total) (m)": 2.5849, + "Tp (total) (s)": 12.476 + }, + { + "Date+Time": "1993-03-14T00:00:00Z", + "Hs (total) (m)": 2.2698, + "Tp (total) (s)": 11.5154 + }, + { + "Date+Time": "1993-03-15T00:00:00Z", + "Hs (total) (m)": 2.1302, + "Tp (total) (s)": 11.5452 + }, + { + "Date+Time": "1993-03-16T00:00:00Z", + "Hs (total) (m)": 2.3865, + "Tp (total) (s)": 14.2079 + }, + { + "Date+Time": "1993-03-17T00:00:00Z", + "Hs (total) (m)": 2.8802, + "Tp (total) (s)": 13.7913 + }, + { + "Date+Time": "1993-03-18T00:00:00Z", + "Hs (total) (m)": 3.0862, + "Tp (total) (s)": 14.2163 + }, + { + "Date+Time": "1993-03-19T00:00:00Z", + "Hs (total) (m)": 2.7856, + "Tp (total) (s)": 14.3178 + }, + { + "Date+Time": "1993-03-20T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 14.9396 + }, + { + "Date+Time": "1993-03-21T00:00:00Z", + "Hs (total) (m)": 2.9481, + "Tp (total) (s)": 14.7633 + }, + { + "Date+Time": "1993-03-22T00:00:00Z", + "Hs (total) (m)": 2.5666, + "Tp (total) (s)": 14.1163 + }, + { + "Date+Time": "1993-03-23T00:00:00Z", + "Hs (total) (m)": 3.3258, + "Tp (total) (s)": 13.7616 + }, + { + "Date+Time": "1993-03-24T00:00:00Z", + "Hs (total) (m)": 3.5867, + "Tp (total) (s)": 14.2323 + }, + { + "Date+Time": "1993-03-25T00:00:00Z", + "Hs (total) (m)": 2.9229, + "Tp (total) (s)": 14.8755 + }, + { + "Date+Time": "1993-03-26T00:00:00Z", + "Hs (total) (m)": 1.7701, + "Tp (total) (s)": 13.6982 + }, + { + "Date+Time": "1993-03-27T00:00:00Z", + "Hs (total) (m)": 2.7551, + "Tp (total) (s)": 10.7654 + }, + { + "Date+Time": "1993-03-28T00:00:00Z", + "Hs (total) (m)": 1.87, + "Tp (total) (s)": 10.921 + }, + { + "Date+Time": "1993-03-29T00:00:00Z", + "Hs (total) (m)": 2.0768, + "Tp (total) (s)": 11.269 + }, + { + "Date+Time": "1993-03-30T00:00:00Z", + "Hs (total) (m)": 2.4598, + "Tp (total) (s)": 11.5673 + }, + { + "Date+Time": "1993-03-31T00:00:00Z", + "Hs (total) (m)": 2.8527, + "Tp (total) (s)": 10.6655 + }, + { + "Date+Time": "1993-04-01T00:00:00Z", + "Hs (total) (m)": 2.7688, + "Tp (total) (s)": 10.2565 + }, + { + "Date+Time": "1993-04-02T00:00:00Z", + "Hs (total) (m)": 2.3568, + "Tp (total) (s)": 10.1588 + }, + { + "Date+Time": "1993-04-03T00:00:00Z", + "Hs (total) (m)": 2.121, + "Tp (total) (s)": 10.242 + }, + { + "Date+Time": "1993-04-04T00:00:00Z", + "Hs (total) (m)": 1.9646, + "Tp (total) (s)": 10.3816 + }, + { + "Date+Time": "1993-04-05T00:00:00Z", + "Hs (total) (m)": 3.3792, + "Tp (total) (s)": 14.3979 + }, + { + "Date+Time": "1993-04-06T00:00:00Z", + "Hs (total) (m)": 5.0276, + "Tp (total) (s)": 13.777 + }, + { + "Date+Time": "1993-04-07T00:00:00Z", + "Hs (total) (m)": 3.4028, + "Tp (total) (s)": 13.3175 + }, + { + "Date+Time": "1993-04-08T00:00:00Z", + "Hs (total) (m)": 2.3591, + "Tp (total) (s)": 10.3648 + }, + { + "Date+Time": "1993-04-09T00:00:00Z", + "Hs (total) (m)": 1.9044, + "Tp (total) (s)": 11.0553 + }, + { + "Date+Time": "1993-04-10T00:00:00Z", + "Hs (total) (m)": 1.6205, + "Tp (total) (s)": 11.4208 + }, + { + "Date+Time": "1993-04-11T00:00:00Z", + "Hs (total) (m)": 1.5366, + "Tp (total) (s)": 11.475 + }, + { + "Date+Time": "1993-04-12T00:00:00Z", + "Hs (total) (m)": 1.4611, + "Tp (total) (s)": 11.4917 + }, + { + "Date+Time": "1993-04-13T00:00:00Z", + "Hs (total) (m)": 1.2551, + "Tp (total) (s)": 11.4559 + }, + { + "Date+Time": "1993-04-14T00:00:00Z", + "Hs (total) (m)": 1.1025, + "Tp (total) (s)": 11.2995 + }, + { + "Date+Time": "1993-04-15T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 11.2918 + }, + { + "Date+Time": "1993-04-16T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 9.4958 + }, + { + "Date+Time": "1993-04-17T00:00:00Z", + "Hs (total) (m)": 1.2352, + "Tp (total) (s)": 9.18 + }, + { + "Date+Time": "1993-04-18T00:00:00Z", + "Hs (total) (m)": 1.7335, + "Tp (total) (s)": 12.2555 + }, + { + "Date+Time": "1993-04-19T00:00:00Z", + "Hs (total) (m)": 2.4453, + "Tp (total) (s)": 9.0075 + }, + { + "Date+Time": "1993-04-20T00:00:00Z", + "Hs (total) (m)": 2.9511, + "Tp (total) (s)": 10.5922 + }, + { + "Date+Time": "1993-04-21T00:00:00Z", + "Hs (total) (m)": 2.8642, + "Tp (total) (s)": 13.7356 + }, + { + "Date+Time": "1993-04-22T00:00:00Z", + "Hs (total) (m)": 2.4216, + "Tp (total) (s)": 13.4587 + }, + { + "Date+Time": "1993-04-23T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 12.1471 + }, + { + "Date+Time": "1993-04-24T00:00:00Z", + "Hs (total) (m)": 1.6915, + "Tp (total) (s)": 10.8806 + }, + { + "Date+Time": "1993-04-25T00:00:00Z", + "Hs (total) (m)": 1.5366, + "Tp (total) (s)": 11.3323 + }, + { + "Date+Time": "1993-04-26T00:00:00Z", + "Hs (total) (m)": 1.4763, + "Tp (total) (s)": 11.137 + }, + { + "Date+Time": "1993-04-27T00:00:00Z", + "Hs (total) (m)": 1.307, + "Tp (total) (s)": 10.4801 + }, + { + "Date+Time": "1993-04-28T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 9.3822 + }, + { + "Date+Time": "1993-04-29T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 12.5851 + }, + { + "Date+Time": "1993-04-30T00:00:00Z", + "Hs (total) (m)": 0.8919, + "Tp (total) (s)": 12.4569 + }, + { + "Date+Time": "1993-05-01T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 12.2951 + }, + { + "Date+Time": "1993-05-02T00:00:00Z", + "Hs (total) (m)": 1.1505, + "Tp (total) (s)": 12.0746 + }, + { + "Date+Time": "1993-05-03T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 11.729 + }, + { + "Date+Time": "1993-05-04T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 11.1095 + }, + { + "Date+Time": "1993-05-05T00:00:00Z", + "Hs (total) (m)": 1.3031, + "Tp (total) (s)": 10.7929 + }, + { + "Date+Time": "1993-05-06T00:00:00Z", + "Hs (total) (m)": 1.3604, + "Tp (total) (s)": 11.3048 + }, + { + "Date+Time": "1993-05-07T00:00:00Z", + "Hs (total) (m)": 1.4893, + "Tp (total) (s)": 14.1202 + }, + { + "Date+Time": "1993-05-08T00:00:00Z", + "Hs (total) (m)": 1.3215, + "Tp (total) (s)": 13.6395 + }, + { + "Date+Time": "1993-05-09T00:00:00Z", + "Hs (total) (m)": 1.0437, + "Tp (total) (s)": 12.1891 + }, + { + "Date+Time": "1993-05-10T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 10.6273 + }, + { + "Date+Time": "1993-05-11T00:00:00Z", + "Hs (total) (m)": 0.8782, + "Tp (total) (s)": 9.5683 + }, + { + "Date+Time": "1993-05-12T00:00:00Z", + "Hs (total) (m)": 0.8072, + "Tp (total) (s)": 3.0335 + }, + { + "Date+Time": "1993-05-13T00:00:00Z", + "Hs (total) (m)": 0.528, + "Tp (total) (s)": 11.9816 + }, + { + "Date+Time": "1993-05-14T00:00:00Z", + "Hs (total) (m)": 0.7317, + "Tp (total) (s)": 2.9862 + }, + { + "Date+Time": "1993-05-15T00:00:00Z", + "Hs (total) (m)": 0.7408, + "Tp (total) (s)": 3.3387 + }, + { + "Date+Time": "1993-05-16T00:00:00Z", + "Hs (total) (m)": 0.8347, + "Tp (total) (s)": 12.4943 + }, + { + "Date+Time": "1993-05-17T00:00:00Z", + "Hs (total) (m)": 1.0376, + "Tp (total) (s)": 11.256 + }, + { + "Date+Time": "1993-05-18T00:00:00Z", + "Hs (total) (m)": 1.2841, + "Tp (total) (s)": 11.5184 + }, + { + "Date+Time": "1993-05-19T00:00:00Z", + "Hs (total) (m)": 1.8075, + "Tp (total) (s)": 8.4544 + }, + { + "Date+Time": "1993-05-20T00:00:00Z", + "Hs (total) (m)": 1.6442, + "Tp (total) (s)": 9.0541 + }, + { + "Date+Time": "1993-05-21T00:00:00Z", + "Hs (total) (m)": 1.3947, + "Tp (total) (s)": 8.6627 + }, + { + "Date+Time": "1993-05-22T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 9.228 + }, + { + "Date+Time": "1993-05-23T00:00:00Z", + "Hs (total) (m)": 1.2612, + "Tp (total) (s)": 10.3763 + }, + { + "Date+Time": "1993-05-24T00:00:00Z", + "Hs (total) (m)": 1.413, + "Tp (total) (s)": 9.6912 + }, + { + "Date+Time": "1993-05-25T00:00:00Z", + "Hs (total) (m)": 0.7706, + "Tp (total) (s)": 8.5887 + }, + { + "Date+Time": "1993-05-26T00:00:00Z", + "Hs (total) (m)": 0.8965, + "Tp (total) (s)": 8.7207 + }, + { + "Date+Time": "1993-05-27T00:00:00Z", + "Hs (total) (m)": 0.8492, + "Tp (total) (s)": 3.4356 + }, + { + "Date+Time": "1993-05-28T00:00:00Z", + "Hs (total) (m)": 0.4944, + "Tp (total) (s)": 2.6055 + }, + { + "Date+Time": "1993-05-29T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 12.6423 + }, + { + "Date+Time": "1993-05-30T00:00:00Z", + "Hs (total) (m)": 1.2574, + "Tp (total) (s)": 12.1517 + }, + { + "Date+Time": "1993-05-31T00:00:00Z", + "Hs (total) (m)": 2.0341, + "Tp (total) (s)": 7.7738 + }, + { + "Date+Time": "1993-06-01T00:00:00Z", + "Hs (total) (m)": 1.7014, + "Tp (total) (s)": 8.3583 + }, + { + "Date+Time": "1993-06-02T00:00:00Z", + "Hs (total) (m)": 1.7006, + "Tp (total) (s)": 8.4567 + }, + { + "Date+Time": "1993-06-03T00:00:00Z", + "Hs (total) (m)": 1.5358, + "Tp (total) (s)": 10.4579 + }, + { + "Date+Time": "1993-06-04T00:00:00Z", + "Hs (total) (m)": 1.8754, + "Tp (total) (s)": 8.9717 + }, + { + "Date+Time": "1993-06-05T00:00:00Z", + "Hs (total) (m)": 1.4504, + "Tp (total) (s)": 9.3448 + }, + { + "Date+Time": "1993-06-06T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 10.2359 + }, + { + "Date+Time": "1993-06-07T00:00:00Z", + "Hs (total) (m)": 1.8151, + "Tp (total) (s)": 9.8064 + }, + { + "Date+Time": "1993-06-08T00:00:00Z", + "Hs (total) (m)": 2.0608, + "Tp (total) (s)": 11.3521 + }, + { + "Date+Time": "1993-06-09T00:00:00Z", + "Hs (total) (m)": 1.8967, + "Tp (total) (s)": 12.5843 + }, + { + "Date+Time": "1993-06-10T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 12.4523 + }, + { + "Date+Time": "1993-06-11T00:00:00Z", + "Hs (total) (m)": 1.4267, + "Tp (total) (s)": 12.4332 + }, + { + "Date+Time": "1993-06-12T00:00:00Z", + "Hs (total) (m)": 1.3985, + "Tp (total) (s)": 12.3028 + }, + { + "Date+Time": "1993-06-13T00:00:00Z", + "Hs (total) (m)": 1.3611, + "Tp (total) (s)": 11.2354 + }, + { + "Date+Time": "1993-06-14T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 6.5111 + }, + { + "Date+Time": "1993-06-15T00:00:00Z", + "Hs (total) (m)": 1.2543, + "Tp (total) (s)": 7.1642 + }, + { + "Date+Time": "1993-06-16T00:00:00Z", + "Hs (total) (m)": 1.3176, + "Tp (total) (s)": 10.4175 + }, + { + "Date+Time": "1993-06-17T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 12.4065 + }, + { + "Date+Time": "1993-06-18T00:00:00Z", + "Hs (total) (m)": 1.8761, + "Tp (total) (s)": 11.9709 + }, + { + "Date+Time": "1993-06-19T00:00:00Z", + "Hs (total) (m)": 2.0737, + "Tp (total) (s)": 11.4925 + }, + { + "Date+Time": "1993-06-20T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 8.6779 + }, + { + "Date+Time": "1993-06-21T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 8.5665 + }, + { + "Date+Time": "1993-06-22T00:00:00Z", + "Hs (total) (m)": 0.8957, + "Tp (total) (s)": 8.446 + }, + { + "Date+Time": "1993-06-23T00:00:00Z", + "Hs (total) (m)": 0.782, + "Tp (total) (s)": 7.3847 + }, + { + "Date+Time": "1993-06-24T00:00:00Z", + "Hs (total) (m)": 0.679, + "Tp (total) (s)": 6.8636 + }, + { + "Date+Time": "1993-06-25T00:00:00Z", + "Hs (total) (m)": 0.7057, + "Tp (total) (s)": 11.9129 + }, + { + "Date+Time": "1993-06-26T00:00:00Z", + "Hs (total) (m)": 1.8227, + "Tp (total) (s)": 8.6543 + }, + { + "Date+Time": "1993-06-27T00:00:00Z", + "Hs (total) (m)": 1.5427, + "Tp (total) (s)": 9.4737 + }, + { + "Date+Time": "1993-06-28T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 9.4623 + }, + { + "Date+Time": "1993-06-29T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 9.4264 + }, + { + "Date+Time": "1993-06-30T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 9.6469 + }, + { + "Date+Time": "1993-07-01T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 10.9577 + }, + { + "Date+Time": "1993-07-02T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 9.9956 + }, + { + "Date+Time": "1993-07-03T00:00:00Z", + "Hs (total) (m)": 1.6114, + "Tp (total) (s)": 9.1426 + }, + { + "Date+Time": "1993-07-04T00:00:00Z", + "Hs (total) (m)": 1.7685, + "Tp (total) (s)": 9.4913 + }, + { + "Date+Time": "1993-07-05T00:00:00Z", + "Hs (total) (m)": 1.2261, + "Tp (total) (s)": 9.4371 + }, + { + "Date+Time": "1993-07-06T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 8.4536 + }, + { + "Date+Time": "1993-07-07T00:00:00Z", + "Hs (total) (m)": 1.0918, + "Tp (total) (s)": 8.1034 + }, + { + "Date+Time": "1993-07-08T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 6.5279 + }, + { + "Date+Time": "1993-07-09T00:00:00Z", + "Hs (total) (m)": 1.3802, + "Tp (total) (s)": 7.7876 + }, + { + "Date+Time": "1993-07-10T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 8.5253 + }, + { + "Date+Time": "1993-07-11T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 10.0085 + }, + { + "Date+Time": "1993-07-12T00:00:00Z", + "Hs (total) (m)": 0.8599, + "Tp (total) (s)": 10.4236 + }, + { + "Date+Time": "1993-07-13T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 10.0536 + }, + { + "Date+Time": "1993-07-14T00:00:00Z", + "Hs (total) (m)": 1.4725, + "Tp (total) (s)": 8.9877 + }, + { + "Date+Time": "1993-07-15T00:00:00Z", + "Hs (total) (m)": 1.1673, + "Tp (total) (s)": 8.6711 + }, + { + "Date+Time": "1993-07-16T00:00:00Z", + "Hs (total) (m)": 1.3619, + "Tp (total) (s)": 7.9928 + }, + { + "Date+Time": "1993-07-17T00:00:00Z", + "Hs (total) (m)": 1.9021, + "Tp (total) (s)": 8.5383 + }, + { + "Date+Time": "1993-07-18T00:00:00Z", + "Hs (total) (m)": 1.1834, + "Tp (total) (s)": 8.1645 + }, + { + "Date+Time": "1993-07-19T00:00:00Z", + "Hs (total) (m)": 1.6823, + "Tp (total) (s)": 8.6917 + }, + { + "Date+Time": "1993-07-20T00:00:00Z", + "Hs (total) (m)": 0.9423, + "Tp (total) (s)": 6.0961 + }, + { + "Date+Time": "1993-07-21T00:00:00Z", + "Hs (total) (m)": 0.8354, + "Tp (total) (s)": 6.196 + }, + { + "Date+Time": "1993-07-22T00:00:00Z", + "Hs (total) (m)": 0.8057, + "Tp (total) (s)": 8.3285 + }, + { + "Date+Time": "1993-07-23T00:00:00Z", + "Hs (total) (m)": 1.8418, + "Tp (total) (s)": 7.0452 + }, + { + "Date+Time": "1993-07-24T00:00:00Z", + "Hs (total) (m)": 1.6503, + "Tp (total) (s)": 8.3293 + }, + { + "Date+Time": "1993-07-25T00:00:00Z", + "Hs (total) (m)": 2.1592, + "Tp (total) (s)": 9.3593 + }, + { + "Date+Time": "1993-07-26T00:00:00Z", + "Hs (total) (m)": 1.9509, + "Tp (total) (s)": 8.6062 + }, + { + "Date+Time": "1993-07-27T00:00:00Z", + "Hs (total) (m)": 1.6205, + "Tp (total) (s)": 7.6891 + }, + { + "Date+Time": "1993-07-28T00:00:00Z", + "Hs (total) (m)": 2.3156, + "Tp (total) (s)": 8.2392 + }, + { + "Date+Time": "1993-07-29T00:00:00Z", + "Hs (total) (m)": 1.4634, + "Tp (total) (s)": 8.4468 + }, + { + "Date+Time": "1993-07-30T00:00:00Z", + "Hs (total) (m)": 1.3009, + "Tp (total) (s)": 7.7639 + }, + { + "Date+Time": "1993-07-31T00:00:00Z", + "Hs (total) (m)": 1.6495, + "Tp (total) (s)": 8.7184 + }, + { + "Date+Time": "1993-08-01T00:00:00Z", + "Hs (total) (m)": 1.4664, + "Tp (total) (s)": 8.5025 + }, + { + "Date+Time": "1993-08-02T00:00:00Z", + "Hs (total) (m)": 2.0959, + "Tp (total) (s)": 8.3636 + }, + { + "Date+Time": "1993-08-03T00:00:00Z", + "Hs (total) (m)": 1.9982, + "Tp (total) (s)": 8.4933 + }, + { + "Date+Time": "1993-08-04T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 8.3171 + }, + { + "Date+Time": "1993-08-05T00:00:00Z", + "Hs (total) (m)": 0.7057, + "Tp (total) (s)": 7.1772 + }, + { + "Date+Time": "1993-08-06T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 6.1968 + }, + { + "Date+Time": "1993-08-07T00:00:00Z", + "Hs (total) (m)": 1.5915, + "Tp (total) (s)": 7.0315 + }, + { + "Date+Time": "1993-08-08T00:00:00Z", + "Hs (total) (m)": 1.0269, + "Tp (total) (s)": 7.7235 + }, + { + "Date+Time": "1993-08-09T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 7.297 + }, + { + "Date+Time": "1993-08-10T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 8.4513 + }, + { + "Date+Time": "1993-08-11T00:00:00Z", + "Hs (total) (m)": 1.1277, + "Tp (total) (s)": 8.5772 + }, + { + "Date+Time": "1993-08-12T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 8.4727 + }, + { + "Date+Time": "1993-08-13T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 7.9546 + }, + { + "Date+Time": "1993-08-14T00:00:00Z", + "Hs (total) (m)": 2.1683, + "Tp (total) (s)": 9.463 + }, + { + "Date+Time": "1993-08-15T00:00:00Z", + "Hs (total) (m)": 1.1719, + "Tp (total) (s)": 10.4694 + }, + { + "Date+Time": "1993-08-16T00:00:00Z", + "Hs (total) (m)": 0.7874, + "Tp (total) (s)": 8.9908 + }, + { + "Date+Time": "1993-08-17T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 8.5482 + }, + { + "Date+Time": "1993-08-18T00:00:00Z", + "Hs (total) (m)": 0.837, + "Tp (total) (s)": 9.1891 + }, + { + "Date+Time": "1993-08-19T00:00:00Z", + "Hs (total) (m)": 2.0203, + "Tp (total) (s)": 15.3027 + }, + { + "Date+Time": "1993-08-20T00:00:00Z", + "Hs (total) (m)": 1.5091, + "Tp (total) (s)": 12.7583 + }, + { + "Date+Time": "1993-08-21T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 11.6405 + }, + { + "Date+Time": "1993-08-22T00:00:00Z", + "Hs (total) (m)": 1.0193, + "Tp (total) (s)": 9.5531 + }, + { + "Date+Time": "1993-08-23T00:00:00Z", + "Hs (total) (m)": 0.8263, + "Tp (total) (s)": 7.1543 + }, + { + "Date+Time": "1993-08-24T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 7.9882 + }, + { + "Date+Time": "1993-08-25T00:00:00Z", + "Hs (total) (m)": 0.5516, + "Tp (total) (s)": 5.9465 + }, + { + "Date+Time": "1993-08-26T00:00:00Z", + "Hs (total) (m)": 0.6287, + "Tp (total) (s)": 6.1563 + }, + { + "Date+Time": "1993-08-27T00:00:00Z", + "Hs (total) (m)": 0.5242, + "Tp (total) (s)": 10.0505 + }, + { + "Date+Time": "1993-08-28T00:00:00Z", + "Hs (total) (m)": 0.8744, + "Tp (total) (s)": 11.2285 + }, + { + "Date+Time": "1993-08-29T00:00:00Z", + "Hs (total) (m)": 1.6388, + "Tp (total) (s)": 9.6767 + }, + { + "Date+Time": "1993-08-30T00:00:00Z", + "Hs (total) (m)": 0.9293, + "Tp (total) (s)": 8.8176 + }, + { + "Date+Time": "1993-08-31T00:00:00Z", + "Hs (total) (m)": 0.7408, + "Tp (total) (s)": 9.1777 + }, + { + "Date+Time": "1993-09-01T00:00:00Z", + "Hs (total) (m)": 1.101, + "Tp (total) (s)": 10.5487 + }, + { + "Date+Time": "1993-09-02T00:00:00Z", + "Hs (total) (m)": 0.8683, + "Tp (total) (s)": 9.5706 + }, + { + "Date+Time": "1993-09-03T00:00:00Z", + "Hs (total) (m)": 0.6134, + "Tp (total) (s)": 8.3445 + }, + { + "Date+Time": "1993-09-04T00:00:00Z", + "Hs (total) (m)": 0.5623, + "Tp (total) (s)": 10.5647 + }, + { + "Date+Time": "1993-09-05T00:00:00Z", + "Hs (total) (m)": 0.7973, + "Tp (total) (s)": 9.7301 + }, + { + "Date+Time": "1993-09-06T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 11.4948 + }, + { + "Date+Time": "1993-09-07T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 11.7244 + }, + { + "Date+Time": "1993-09-08T00:00:00Z", + "Hs (total) (m)": 1.2375, + "Tp (total) (s)": 3.7324 + }, + { + "Date+Time": "1993-09-09T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 3.1755 + }, + { + "Date+Time": "1993-09-10T00:00:00Z", + "Hs (total) (m)": 1.4206, + "Tp (total) (s)": 6.5004 + }, + { + "Date+Time": "1993-09-11T00:00:00Z", + "Hs (total) (m)": 1.3909, + "Tp (total) (s)": 7.1169 + }, + { + "Date+Time": "1993-09-12T00:00:00Z", + "Hs (total) (m)": 1.1101, + "Tp (total) (s)": 9.8163 + }, + { + "Date+Time": "1993-09-13T00:00:00Z", + "Hs (total) (m)": 1.0338, + "Tp (total) (s)": 5.9038 + }, + { + "Date+Time": "1993-09-14T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 10.0635 + }, + { + "Date+Time": "1993-09-15T00:00:00Z", + "Hs (total) (m)": 0.5562, + "Tp (total) (s)": 2.926 + }, + { + "Date+Time": "1993-09-16T00:00:00Z", + "Hs (total) (m)": 0.9262, + "Tp (total) (s)": 11.2491 + }, + { + "Date+Time": "1993-09-17T00:00:00Z", + "Hs (total) (m)": 0.8454, + "Tp (total) (s)": 10.3862 + }, + { + "Date+Time": "1993-09-18T00:00:00Z", + "Hs (total) (m)": 1.1231, + "Tp (total) (s)": 5.9114 + }, + { + "Date+Time": "1993-09-19T00:00:00Z", + "Hs (total) (m)": 2.8954, + "Tp (total) (s)": 9.4623 + }, + { + "Date+Time": "1993-09-20T00:00:00Z", + "Hs (total) (m)": 2.6185, + "Tp (total) (s)": 12.7483 + }, + { + "Date+Time": "1993-09-21T00:00:00Z", + "Hs (total) (m)": 2.4926, + "Tp (total) (s)": 11.2667 + }, + { + "Date+Time": "1993-09-22T00:00:00Z", + "Hs (total) (m)": 1.6236, + "Tp (total) (s)": 10.2634 + }, + { + "Date+Time": "1993-09-23T00:00:00Z", + "Hs (total) (m)": 0.927, + "Tp (total) (s)": 8.4445 + }, + { + "Date+Time": "1993-09-24T00:00:00Z", + "Hs (total) (m)": 1.5381, + "Tp (total) (s)": 11.9457 + }, + { + "Date+Time": "1993-09-25T00:00:00Z", + "Hs (total) (m)": 1.4412, + "Tp (total) (s)": 11.166 + }, + { + "Date+Time": "1993-09-26T00:00:00Z", + "Hs (total) (m)": 1.7708, + "Tp (total) (s)": 9.8605 + }, + { + "Date+Time": "1993-09-27T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 9.6263 + }, + { + "Date+Time": "1993-09-28T00:00:00Z", + "Hs (total) (m)": 1.2589, + "Tp (total) (s)": 8.6802 + }, + { + "Date+Time": "1993-09-29T00:00:00Z", + "Hs (total) (m)": 1.204, + "Tp (total) (s)": 9.6675 + }, + { + "Date+Time": "1993-09-30T00:00:00Z", + "Hs (total) (m)": 1.5969, + "Tp (total) (s)": 11.7374 + }, + { + "Date+Time": "1993-10-01T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 11.0034 + }, + { + "Date+Time": "1993-10-02T00:00:00Z", + "Hs (total) (m)": 2.5956, + "Tp (total) (s)": 13.3961 + }, + { + "Date+Time": "1993-10-03T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 12.3463 + }, + { + "Date+Time": "1993-10-04T00:00:00Z", + "Hs (total) (m)": 3.1182, + "Tp (total) (s)": 12.302 + }, + { + "Date+Time": "1993-10-05T00:00:00Z", + "Hs (total) (m)": 3.5524, + "Tp (total) (s)": 15.3111 + }, + { + "Date+Time": "1993-10-06T00:00:00Z", + "Hs (total) (m)": 1.3749, + "Tp (total) (s)": 11.5322 + }, + { + "Date+Time": "1993-10-07T00:00:00Z", + "Hs (total) (m)": 1.2436, + "Tp (total) (s)": 12.6789 + }, + { + "Date+Time": "1993-10-08T00:00:00Z", + "Hs (total) (m)": 0.7729, + "Tp (total) (s)": 11.6581 + }, + { + "Date+Time": "1993-10-09T00:00:00Z", + "Hs (total) (m)": 0.5867, + "Tp (total) (s)": 2.5216 + }, + { + "Date+Time": "1993-10-10T00:00:00Z", + "Hs (total) (m)": 0.4158, + "Tp (total) (s)": 8.578 + }, + { + "Date+Time": "1993-10-11T00:00:00Z", + "Hs (total) (m)": 0.5234, + "Tp (total) (s)": 12.2051 + }, + { + "Date+Time": "1993-10-12T00:00:00Z", + "Hs (total) (m)": 0.8133, + "Tp (total) (s)": 9.9498 + }, + { + "Date+Time": "1993-10-13T00:00:00Z", + "Hs (total) (m)": 0.6561, + "Tp (total) (s)": 2.739 + }, + { + "Date+Time": "1993-10-14T00:00:00Z", + "Hs (total) (m)": 0.6607, + "Tp (total) (s)": 2.8405 + }, + { + "Date+Time": "1993-10-15T00:00:00Z", + "Hs (total) (m)": 0.6249, + "Tp (total) (s)": 11.3025 + }, + { + "Date+Time": "1993-10-16T00:00:00Z", + "Hs (total) (m)": 0.6859, + "Tp (total) (s)": 11.1675 + }, + { + "Date+Time": "1993-10-17T00:00:00Z", + "Hs (total) (m)": 0.5043, + "Tp (total) (s)": 11.697 + }, + { + "Date+Time": "1993-10-18T00:00:00Z", + "Hs (total) (m)": 0.3899, + "Tp (total) (s)": 10.2718 + }, + { + "Date+Time": "1993-10-19T00:00:00Z", + "Hs (total) (m)": 1.2787, + "Tp (total) (s)": 8.6077 + }, + { + "Date+Time": "1993-10-20T00:00:00Z", + "Hs (total) (m)": 1.3718, + "Tp (total) (s)": 9.444 + }, + { + "Date+Time": "1993-10-21T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 10.1856 + }, + { + "Date+Time": "1993-10-22T00:00:00Z", + "Hs (total) (m)": 0.8545, + "Tp (total) (s)": 9.5073 + }, + { + "Date+Time": "1993-10-23T00:00:00Z", + "Hs (total) (m)": 0.8301, + "Tp (total) (s)": 9.5576 + }, + { + "Date+Time": "1993-10-24T00:00:00Z", + "Hs (total) (m)": 1.0224, + "Tp (total) (s)": 12.5958 + }, + { + "Date+Time": "1993-10-25T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 11.745 + }, + { + "Date+Time": "1993-10-26T00:00:00Z", + "Hs (total) (m)": 0.6531, + "Tp (total) (s)": 10.6502 + }, + { + "Date+Time": "1993-10-27T00:00:00Z", + "Hs (total) (m)": 0.7576, + "Tp (total) (s)": 11.5192 + }, + { + "Date+Time": "1993-10-28T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 10.992 + }, + { + "Date+Time": "1993-10-29T00:00:00Z", + "Hs (total) (m)": 0.6523, + "Tp (total) (s)": 3.0015 + }, + { + "Date+Time": "1993-10-30T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 13.3129 + }, + { + "Date+Time": "1993-10-31T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 11.3659 + }, + { + "Date+Time": "1993-11-01T00:00:00Z", + "Hs (total) (m)": 0.8293, + "Tp (total) (s)": 9.6591 + }, + { + "Date+Time": "1993-11-02T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 12.2829 + }, + { + "Date+Time": "1993-11-03T00:00:00Z", + "Hs (total) (m)": 1.3352, + "Tp (total) (s)": 11.774 + }, + { + "Date+Time": "1993-11-04T00:00:00Z", + "Hs (total) (m)": 2.5819, + "Tp (total) (s)": 14.3498 + }, + { + "Date+Time": "1993-11-05T00:00:00Z", + "Hs (total) (m)": 2.1317, + "Tp (total) (s)": 11.9198 + }, + { + "Date+Time": "1993-11-06T00:00:00Z", + "Hs (total) (m)": 2.0333, + "Tp (total) (s)": 12.7056 + }, + { + "Date+Time": "1993-11-07T00:00:00Z", + "Hs (total) (m)": 1.368, + "Tp (total) (s)": 12.2539 + }, + { + "Date+Time": "1993-11-08T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 11.803 + }, + { + "Date+Time": "1993-11-09T00:00:00Z", + "Hs (total) (m)": 2.6605, + "Tp (total) (s)": 11.5375 + }, + { + "Date+Time": "1993-11-10T00:00:00Z", + "Hs (total) (m)": 2.7032, + "Tp (total) (s)": 12.6286 + }, + { + "Date+Time": "1993-11-11T00:00:00Z", + "Hs (total) (m)": 2.1043, + "Tp (total) (s)": 13.3862 + }, + { + "Date+Time": "1993-11-12T00:00:00Z", + "Hs (total) (m)": 2.3896, + "Tp (total) (s)": 12.9864 + }, + { + "Date+Time": "1993-11-13T00:00:00Z", + "Hs (total) (m)": 2.3103, + "Tp (total) (s)": 13.4968 + }, + { + "Date+Time": "1993-11-14T00:00:00Z", + "Hs (total) (m)": 1.8174, + "Tp (total) (s)": 12.801 + }, + { + "Date+Time": "1993-11-15T00:00:00Z", + "Hs (total) (m)": 1.8181, + "Tp (total) (s)": 11.4696 + }, + { + "Date+Time": "1993-11-16T00:00:00Z", + "Hs (total) (m)": 4.1536, + "Tp (total) (s)": 16.9759 + }, + { + "Date+Time": "1993-11-17T00:00:00Z", + "Hs (total) (m)": 3.1961, + "Tp (total) (s)": 15.1852 + }, + { + "Date+Time": "1993-11-18T00:00:00Z", + "Hs (total) (m)": 3.2662, + "Tp (total) (s)": 12.83 + }, + { + "Date+Time": "1993-11-19T00:00:00Z", + "Hs (total) (m)": 3.8865, + "Tp (total) (s)": 12.6225 + }, + { + "Date+Time": "1993-11-20T00:00:00Z", + "Hs (total) (m)": 2.4117, + "Tp (total) (s)": 12.3783 + }, + { + "Date+Time": "1993-11-21T00:00:00Z", + "Hs (total) (m)": 2.0287, + "Tp (total) (s)": 13.7181 + }, + { + "Date+Time": "1993-11-22T00:00:00Z", + "Hs (total) (m)": 2.4239, + "Tp (total) (s)": 13.6959 + }, + { + "Date+Time": "1993-11-23T00:00:00Z", + "Hs (total) (m)": 2.3736, + "Tp (total) (s)": 13.7631 + }, + { + "Date+Time": "1993-11-24T00:00:00Z", + "Hs (total) (m)": 2.2317, + "Tp (total) (s)": 13.8852 + }, + { + "Date+Time": "1993-11-25T00:00:00Z", + "Hs (total) (m)": 2.5498, + "Tp (total) (s)": 15.2448 + }, + { + "Date+Time": "1993-11-26T00:00:00Z", + "Hs (total) (m)": 2.6605, + "Tp (total) (s)": 12.8216 + }, + { + "Date+Time": "1993-11-27T00:00:00Z", + "Hs (total) (m)": 2.1096, + "Tp (total) (s)": 12.5034 + }, + { + "Date+Time": "1993-11-28T00:00:00Z", + "Hs (total) (m)": 3.2151, + "Tp (total) (s)": 12.6171 + }, + { + "Date+Time": "1993-11-29T00:00:00Z", + "Hs (total) (m)": 3.3288, + "Tp (total) (s)": 14.0301 + }, + { + "Date+Time": "1993-11-30T00:00:00Z", + "Hs (total) (m)": 3.325, + "Tp (total) (s)": 11.0553 + }, + { + "Date+Time": "1993-12-01T00:00:00Z", + "Hs (total) (m)": 2.7787, + "Tp (total) (s)": 13.1634 + }, + { + "Date+Time": "1993-12-02T00:00:00Z", + "Hs (total) (m)": 3.5615, + "Tp (total) (s)": 12.6034 + }, + { + "Date+Time": "1993-12-03T00:00:00Z", + "Hs (total) (m)": 3.8827, + "Tp (total) (s)": 13.7242 + }, + { + "Date+Time": "1993-12-04T00:00:00Z", + "Hs (total) (m)": 4.3374, + "Tp (total) (s)": 14.9167 + }, + { + "Date+Time": "1993-12-05T00:00:00Z", + "Hs (total) (m)": 2.871, + "Tp (total) (s)": 11.7824 + }, + { + "Date+Time": "1993-12-06T00:00:00Z", + "Hs (total) (m)": 2.1905, + "Tp (total) (s)": 11.1522 + }, + { + "Date+Time": "1993-12-07T00:00:00Z", + "Hs (total) (m)": 2.8146, + "Tp (total) (s)": 10.7082 + }, + { + "Date+Time": "1993-12-08T00:00:00Z", + "Hs (total) (m)": 2.3141, + "Tp (total) (s)": 12.534 + }, + { + "Date+Time": "1993-12-09T00:00:00Z", + "Hs (total) (m)": 7.8658, + "Tp (total) (s)": 15.4938 + }, + { + "Date+Time": "1993-12-10T00:00:00Z", + "Hs (total) (m)": 4.3626, + "Tp (total) (s)": 12.5324 + }, + { + "Date+Time": "1993-12-11T00:00:00Z", + "Hs (total) (m)": 4.2856, + "Tp (total) (s)": 13.1115 + }, + { + "Date+Time": "1993-12-12T00:00:00Z", + "Hs (total) (m)": 1.9417, + "Tp (total) (s)": 12.6705 + }, + { + "Date+Time": "1993-12-13T00:00:00Z", + "Hs (total) (m)": 3.2472, + "Tp (total) (s)": 11.1362 + }, + { + "Date+Time": "1993-12-14T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 11.2133 + }, + { + "Date+Time": "1993-12-15T00:00:00Z", + "Hs (total) (m)": 4.342, + "Tp (total) (s)": 13.6738 + }, + { + "Date+Time": "1993-12-16T00:00:00Z", + "Hs (total) (m)": 4.9812, + "Tp (total) (s)": 15.6597 + }, + { + "Date+Time": "1993-12-17T00:00:00Z", + "Hs (total) (m)": 2.1256, + "Tp (total) (s)": 12.434 + }, + { + "Date+Time": "1993-12-18T00:00:00Z", + "Hs (total) (m)": 2.5178, + "Tp (total) (s)": 10.4503 + }, + { + "Date+Time": "1993-12-19T00:00:00Z", + "Hs (total) (m)": 3.7721, + "Tp (total) (s)": 9.5767 + }, + { + "Date+Time": "1993-12-20T00:00:00Z", + "Hs (total) (m)": 2.8123, + "Tp (total) (s)": 12.1853 + }, + { + "Date+Time": "1993-12-21T00:00:00Z", + "Hs (total) (m)": 2.6116, + "Tp (total) (s)": 12.1204 + }, + { + "Date+Time": "1993-12-22T00:00:00Z", + "Hs (total) (m)": 3.6317, + "Tp (total) (s)": 12.3005 + }, + { + "Date+Time": "1993-12-23T00:00:00Z", + "Hs (total) (m)": 3.1091, + "Tp (total) (s)": 12.8994 + }, + { + "Date+Time": "1993-12-24T00:00:00Z", + "Hs (total) (m)": 3.1213, + "Tp (total) (s)": 11.8572 + }, + { + "Date+Time": "1993-12-25T00:00:00Z", + "Hs (total) (m)": 2.3888, + "Tp (total) (s)": 11.3727 + }, + { + "Date+Time": "1993-12-26T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 9.5935 + }, + { + "Date+Time": "1993-12-27T00:00:00Z", + "Hs (total) (m)": 2.5941, + "Tp (total) (s)": 17.2758 + }, + { + "Date+Time": "1993-12-28T00:00:00Z", + "Hs (total) (m)": 3.2884, + "Tp (total) (s)": 15.1883 + }, + { + "Date+Time": "1993-12-29T00:00:00Z", + "Hs (total) (m)": 2.9595, + "Tp (total) (s)": 12.5683 + }, + { + "Date+Time": "1993-12-30T00:00:00Z", + "Hs (total) (m)": 4.5717, + "Tp (total) (s)": 14.3666 + }, + { + "Date+Time": "1993-12-31T00:00:00Z", + "Hs (total) (m)": 3.7011, + "Tp (total) (s)": 15.186 + }, + { + "Date+Time": "1994-01-01T00:00:00Z", + "Hs (total) (m)": 3.1846, + "Tp (total) (s)": 14.1469 + }, + { + "Date+Time": "1994-01-02T00:00:00Z", + "Hs (total) (m)": 3.0702, + "Tp (total) (s)": 13.0413 + }, + { + "Date+Time": "1994-01-03T00:00:00Z", + "Hs (total) (m)": 5.2231, + "Tp (total) (s)": 17.1078 + }, + { + "Date+Time": "1994-01-04T00:00:00Z", + "Hs (total) (m)": 3.1121, + "Tp (total) (s)": 15.0319 + }, + { + "Date+Time": "1994-01-05T00:00:00Z", + "Hs (total) (m)": 2.7345, + "Tp (total) (s)": 13.3374 + }, + { + "Date+Time": "1994-01-06T00:00:00Z", + "Hs (total) (m)": 3.0335, + "Tp (total) (s)": 12.8544 + }, + { + "Date+Time": "1994-01-07T00:00:00Z", + "Hs (total) (m)": 1.9845, + "Tp (total) (s)": 14.2865 + }, + { + "Date+Time": "1994-01-08T00:00:00Z", + "Hs (total) (m)": 1.587, + "Tp (total) (s)": 11.9655 + }, + { + "Date+Time": "1994-01-09T00:00:00Z", + "Hs (total) (m)": 2.2515, + "Tp (total) (s)": 13.2046 + }, + { + "Date+Time": "1994-01-10T00:00:00Z", + "Hs (total) (m)": 4.3275, + "Tp (total) (s)": 14.7374 + }, + { + "Date+Time": "1994-01-11T00:00:00Z", + "Hs (total) (m)": 3.7805, + "Tp (total) (s)": 14.0362 + }, + { + "Date+Time": "1994-01-12T00:00:00Z", + "Hs (total) (m)": 3.1877, + "Tp (total) (s)": 11.6054 + }, + { + "Date+Time": "1994-01-13T00:00:00Z", + "Hs (total) (m)": 4.561, + "Tp (total) (s)": 11.507 + }, + { + "Date+Time": "1994-01-14T00:00:00Z", + "Hs (total) (m)": 4.8425, + "Tp (total) (s)": 13.6639 + }, + { + "Date+Time": "1994-01-15T00:00:00Z", + "Hs (total) (m)": 2.34, + "Tp (total) (s)": 12.0342 + }, + { + "Date+Time": "1994-01-16T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 11.4139 + }, + { + "Date+Time": "1994-01-17T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 10.2435 + }, + { + "Date+Time": "1994-01-18T00:00:00Z", + "Hs (total) (m)": 2.5529, + "Tp (total) (s)": 7.3222 + }, + { + "Date+Time": "1994-01-19T00:00:00Z", + "Hs (total) (m)": 3.7347, + "Tp (total) (s)": 12.2814 + }, + { + "Date+Time": "1994-01-20T00:00:00Z", + "Hs (total) (m)": 4.9455, + "Tp (total) (s)": 18.3588 + }, + { + "Date+Time": "1994-01-21T00:00:00Z", + "Hs (total) (m)": 3.4791, + "Tp (total) (s)": 14.9075 + }, + { + "Date+Time": "1994-01-22T00:00:00Z", + "Hs (total) (m)": 3.4104, + "Tp (total) (s)": 15.3424 + }, + { + "Date+Time": "1994-01-23T00:00:00Z", + "Hs (total) (m)": 4.1383, + "Tp (total) (s)": 15.1311 + }, + { + "Date+Time": "1994-01-24T00:00:00Z", + "Hs (total) (m)": 2.6658, + "Tp (total) (s)": 14.259 + }, + { + "Date+Time": "1994-01-25T00:00:00Z", + "Hs (total) (m)": 3.3647, + "Tp (total) (s)": 11.3903 + }, + { + "Date+Time": "1994-01-26T00:00:00Z", + "Hs (total) (m)": 5.8861, + "Tp (total) (s)": 15.2025 + }, + { + "Date+Time": "1994-01-27T00:00:00Z", + "Hs (total) (m)": 5.2044, + "Tp (total) (s)": 15.3162 + }, + { + "Date+Time": "1994-01-28T00:00:00Z", + "Hs (total) (m)": 5.047, + "Tp (total) (s)": 15.7932 + }, + { + "Date+Time": "1994-01-29T00:00:00Z", + "Hs (total) (m)": 2.8581, + "Tp (total) (s)": 12.8842 + }, + { + "Date+Time": "1994-01-30T00:00:00Z", + "Hs (total) (m)": 3.3219, + "Tp (total) (s)": 12.2021 + }, + { + "Date+Time": "1994-01-31T00:00:00Z", + "Hs (total) (m)": 2.53, + "Tp (total) (s)": 13.0802 + }, + { + "Date+Time": "1994-02-01T00:00:00Z", + "Hs (total) (m)": 4.1978, + "Tp (total) (s)": 9.8704 + }, + { + "Date+Time": "1994-02-02T00:00:00Z", + "Hs (total) (m)": 3.7881, + "Tp (total) (s)": 13.097 + }, + { + "Date+Time": "1994-02-03T00:00:00Z", + "Hs (total) (m)": 3.3197, + "Tp (total) (s)": 15.2165 + }, + { + "Date+Time": "1994-02-04T00:00:00Z", + "Hs (total) (m)": 3.2289, + "Tp (total) (s)": 14.697 + }, + { + "Date+Time": "1994-02-05T00:00:00Z", + "Hs (total) (m)": 3.74, + "Tp (total) (s)": 14.7694 + }, + { + "Date+Time": "1994-02-06T00:00:00Z", + "Hs (total) (m)": 3.0839, + "Tp (total) (s)": 13.1756 + }, + { + "Date+Time": "1994-02-07T00:00:00Z", + "Hs (total) (m)": 3.737, + "Tp (total) (s)": 15.5156 + }, + { + "Date+Time": "1994-02-08T00:00:00Z", + "Hs (total) (m)": 3.4867, + "Tp (total) (s)": 14.304 + }, + { + "Date+Time": "1994-02-09T00:00:00Z", + "Hs (total) (m)": 2.8291, + "Tp (total) (s)": 12.5019 + }, + { + "Date+Time": "1994-02-10T00:00:00Z", + "Hs (total) (m)": 2.1561, + "Tp (total) (s)": 12.534 + }, + { + "Date+Time": "1994-02-11T00:00:00Z", + "Hs (total) (m)": 1.9578, + "Tp (total) (s)": 12.4851 + }, + { + "Date+Time": "1994-02-12T00:00:00Z", + "Hs (total) (m)": 2.2156, + "Tp (total) (s)": 11.4391 + }, + { + "Date+Time": "1994-02-13T00:00:00Z", + "Hs (total) (m)": 2.916, + "Tp (total) (s)": 13.8119 + }, + { + "Date+Time": "1994-02-14T00:00:00Z", + "Hs (total) (m)": 2.5658, + "Tp (total) (s)": 12.9215 + }, + { + "Date+Time": "1994-02-15T00:00:00Z", + "Hs (total) (m)": 1.6388, + "Tp (total) (s)": 13.5975 + }, + { + "Date+Time": "1994-02-16T00:00:00Z", + "Hs (total) (m)": 0.8995, + "Tp (total) (s)": 10.9111 + }, + { + "Date+Time": "1994-02-17T00:00:00Z", + "Hs (total) (m)": 1.0689, + "Tp (total) (s)": 10.2954 + }, + { + "Date+Time": "1994-02-18T00:00:00Z", + "Hs (total) (m)": 2.4949, + "Tp (total) (s)": 12.4493 + }, + { + "Date+Time": "1994-02-19T00:00:00Z", + "Hs (total) (m)": 3.3433, + "Tp (total) (s)": 15.7285 + }, + { + "Date+Time": "1994-02-20T00:00:00Z", + "Hs (total) (m)": 2.797, + "Tp (total) (s)": 13.4663 + }, + { + "Date+Time": "1994-02-21T00:00:00Z", + "Hs (total) (m)": 2.224, + "Tp (total) (s)": 12.3127 + }, + { + "Date+Time": "1994-02-22T00:00:00Z", + "Hs (total) (m)": 2.2622, + "Tp (total) (s)": 13.522 + }, + { + "Date+Time": "1994-02-23T00:00:00Z", + "Hs (total) (m)": 3.164, + "Tp (total) (s)": 13.8035 + }, + { + "Date+Time": "1994-02-24T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 12.3882 + }, + { + "Date+Time": "1994-02-25T00:00:00Z", + "Hs (total) (m)": 2.0821, + "Tp (total) (s)": 12.4523 + }, + { + "Date+Time": "1994-02-26T00:00:00Z", + "Hs (total) (m)": 3.1739, + "Tp (total) (s)": 15.6301 + }, + { + "Date+Time": "1994-02-27T00:00:00Z", + "Hs (total) (m)": 2.5086, + "Tp (total) (s)": 13.5189 + }, + { + "Date+Time": "1994-02-28T00:00:00Z", + "Hs (total) (m)": 1.3581, + "Tp (total) (s)": 11.2705 + }, + { + "Date+Time": "1994-03-01T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 9.5119 + }, + { + "Date+Time": "1994-03-02T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 8.2942 + }, + { + "Date+Time": "1994-03-03T00:00:00Z", + "Hs (total) (m)": 3.7935, + "Tp (total) (s)": 12.0327 + }, + { + "Date+Time": "1994-03-04T00:00:00Z", + "Hs (total) (m)": 3.0869, + "Tp (total) (s)": 12.7384 + }, + { + "Date+Time": "1994-03-05T00:00:00Z", + "Hs (total) (m)": 4.5625, + "Tp (total) (s)": 12.4676 + }, + { + "Date+Time": "1994-03-06T00:00:00Z", + "Hs (total) (m)": 3.6737, + "Tp (total) (s)": 14.5383 + }, + { + "Date+Time": "1994-03-07T00:00:00Z", + "Hs (total) (m)": 3.5226, + "Tp (total) (s)": 12.6766 + }, + { + "Date+Time": "1994-03-08T00:00:00Z", + "Hs (total) (m)": 3.0412, + "Tp (total) (s)": 12.8918 + }, + { + "Date+Time": "1994-03-09T00:00:00Z", + "Hs (total) (m)": 2.9046, + "Tp (total) (s)": 12.2517 + }, + { + "Date+Time": "1994-03-10T00:00:00Z", + "Hs (total) (m)": 3.4814, + "Tp (total) (s)": 14.2613 + }, + { + "Date+Time": "1994-03-11T00:00:00Z", + "Hs (total) (m)": 3.7538, + "Tp (total) (s)": 12.6255 + }, + { + "Date+Time": "1994-03-12T00:00:00Z", + "Hs (total) (m)": 4.091, + "Tp (total) (s)": 16.5502 + }, + { + "Date+Time": "1994-03-13T00:00:00Z", + "Hs (total) (m)": 3.9163, + "Tp (total) (s)": 12.3936 + }, + { + "Date+Time": "1994-03-14T00:00:00Z", + "Hs (total) (m)": 3.6851, + "Tp (total) (s)": 14.2903 + }, + { + "Date+Time": "1994-03-15T00:00:00Z", + "Hs (total) (m)": 2.6566, + "Tp (total) (s)": 13.0558 + }, + { + "Date+Time": "1994-03-16T00:00:00Z", + "Hs (total) (m)": 3.1014, + "Tp (total) (s)": 12.4996 + }, + { + "Date+Time": "1994-03-17T00:00:00Z", + "Hs (total) (m)": 3.1747, + "Tp (total) (s)": 13.815 + }, + { + "Date+Time": "1994-03-18T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 11.7763 + }, + { + "Date+Time": "1994-03-19T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 10.9966 + }, + { + "Date+Time": "1994-03-20T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 9.9582 + }, + { + "Date+Time": "1994-03-21T00:00:00Z", + "Hs (total) (m)": 2.0386, + "Tp (total) (s)": 8.636 + }, + { + "Date+Time": "1994-03-22T00:00:00Z", + "Hs (total) (m)": 3.3837, + "Tp (total) (s)": 8.9671 + }, + { + "Date+Time": "1994-03-23T00:00:00Z", + "Hs (total) (m)": 3.8873, + "Tp (total) (s)": 13.9508 + }, + { + "Date+Time": "1994-03-24T00:00:00Z", + "Hs (total) (m)": 3.5058, + "Tp (total) (s)": 12.0235 + }, + { + "Date+Time": "1994-03-25T00:00:00Z", + "Hs (total) (m)": 3.0885, + "Tp (total) (s)": 13.2084 + }, + { + "Date+Time": "1994-03-26T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 11.1103 + }, + { + "Date+Time": "1994-03-27T00:00:00Z", + "Hs (total) (m)": 1.9784, + "Tp (total) (s)": 9.6187 + }, + { + "Date+Time": "1994-03-28T00:00:00Z", + "Hs (total) (m)": 2.2195, + "Tp (total) (s)": 8.6062 + }, + { + "Date+Time": "1994-03-29T00:00:00Z", + "Hs (total) (m)": 3.5745, + "Tp (total) (s)": 11.4765 + }, + { + "Date+Time": "1994-03-30T00:00:00Z", + "Hs (total) (m)": 2.8809, + "Tp (total) (s)": 12.4943 + }, + { + "Date+Time": "1994-03-31T00:00:00Z", + "Hs (total) (m)": 7.2225, + "Tp (total) (s)": 16.8716 + }, + { + "Date+Time": "1994-04-01T00:00:00Z", + "Hs (total) (m)": 3.9872, + "Tp (total) (s)": 14.7649 + }, + { + "Date+Time": "1994-04-02T00:00:00Z", + "Hs (total) (m)": 4.2673, + "Tp (total) (s)": 13.2107 + }, + { + "Date+Time": "1994-04-03T00:00:00Z", + "Hs (total) (m)": 3.3509, + "Tp (total) (s)": 14.0286 + }, + { + "Date+Time": "1994-04-04T00:00:00Z", + "Hs (total) (m)": 3.3242, + "Tp (total) (s)": 12.6736 + }, + { + "Date+Time": "1994-04-05T00:00:00Z", + "Hs (total) (m)": 6.008, + "Tp (total) (s)": 15.4206 + }, + { + "Date+Time": "1994-04-06T00:00:00Z", + "Hs (total) (m)": 3.8553, + "Tp (total) (s)": 15.389 + }, + { + "Date+Time": "1994-04-07T00:00:00Z", + "Hs (total) (m)": 2.9458, + "Tp (total) (s)": 12.7651 + }, + { + "Date+Time": "1994-04-08T00:00:00Z", + "Hs (total) (m)": 2.4331, + "Tp (total) (s)": 11.713 + }, + { + "Date+Time": "1994-04-09T00:00:00Z", + "Hs (total) (m)": 3.8484, + "Tp (total) (s)": 13.0688 + }, + { + "Date+Time": "1994-04-10T00:00:00Z", + "Hs (total) (m)": 2.3675, + "Tp (total) (s)": 11.729 + }, + { + "Date+Time": "1994-04-11T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 10.0024 + }, + { + "Date+Time": "1994-04-12T00:00:00Z", + "Hs (total) (m)": 1.8815, + "Tp (total) (s)": 14.0812 + }, + { + "Date+Time": "1994-04-13T00:00:00Z", + "Hs (total) (m)": 1.8502, + "Tp (total) (s)": 12.8277 + }, + { + "Date+Time": "1994-04-14T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 10.7952 + }, + { + "Date+Time": "1994-04-15T00:00:00Z", + "Hs (total) (m)": 0.9308, + "Tp (total) (s)": 12.8094 + }, + { + "Date+Time": "1994-04-16T00:00:00Z", + "Hs (total) (m)": 1.1246, + "Tp (total) (s)": 12.3341 + }, + { + "Date+Time": "1994-04-17T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 11.2346 + }, + { + "Date+Time": "1994-04-18T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 10.2199 + }, + { + "Date+Time": "1994-04-19T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 9.2708 + }, + { + "Date+Time": "1994-04-20T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 7.8188 + }, + { + "Date+Time": "1994-04-21T00:00:00Z", + "Hs (total) (m)": 0.6607, + "Tp (total) (s)": 11.7679 + }, + { + "Date+Time": "1994-04-22T00:00:00Z", + "Hs (total) (m)": 0.7027, + "Tp (total) (s)": 11.4879 + }, + { + "Date+Time": "1994-04-23T00:00:00Z", + "Hs (total) (m)": 0.6912, + "Tp (total) (s)": 2.8359 + }, + { + "Date+Time": "1994-04-24T00:00:00Z", + "Hs (total) (m)": 1.3672, + "Tp (total) (s)": 10.3916 + }, + { + "Date+Time": "1994-04-25T00:00:00Z", + "Hs (total) (m)": 2.0974, + "Tp (total) (s)": 7.7761 + }, + { + "Date+Time": "1994-04-26T00:00:00Z", + "Hs (total) (m)": 3.132, + "Tp (total) (s)": 7.9943 + }, + { + "Date+Time": "1994-04-27T00:00:00Z", + "Hs (total) (m)": 3.1152, + "Tp (total) (s)": 12.9475 + }, + { + "Date+Time": "1994-04-28T00:00:00Z", + "Hs (total) (m)": 3.0663, + "Tp (total) (s)": 11.2064 + }, + { + "Date+Time": "1994-04-29T00:00:00Z", + "Hs (total) (m)": 2.7329, + "Tp (total) (s)": 11.6344 + }, + { + "Date+Time": "1994-04-30T00:00:00Z", + "Hs (total) (m)": 1.7174, + "Tp (total) (s)": 10.4595 + }, + { + "Date+Time": "1994-05-01T00:00:00Z", + "Hs (total) (m)": 1.1383, + "Tp (total) (s)": 9.6263 + }, + { + "Date+Time": "1994-05-02T00:00:00Z", + "Hs (total) (m)": 2.3103, + "Tp (total) (s)": 15.2806 + }, + { + "Date+Time": "1994-05-03T00:00:00Z", + "Hs (total) (m)": 2.1058, + "Tp (total) (s)": 13.4953 + }, + { + "Date+Time": "1994-05-04T00:00:00Z", + "Hs (total) (m)": 3.2777, + "Tp (total) (s)": 9.4516 + }, + { + "Date+Time": "1994-05-05T00:00:00Z", + "Hs (total) (m)": 2.2492, + "Tp (total) (s)": 10.9493 + }, + { + "Date+Time": "1994-05-06T00:00:00Z", + "Hs (total) (m)": 3.1152, + "Tp (total) (s)": 10.3198 + }, + { + "Date+Time": "1994-05-07T00:00:00Z", + "Hs (total) (m)": 2.7787, + "Tp (total) (s)": 12.8384 + }, + { + "Date+Time": "1994-05-08T00:00:00Z", + "Hs (total) (m)": 2.047, + "Tp (total) (s)": 12.5332 + }, + { + "Date+Time": "1994-05-09T00:00:00Z", + "Hs (total) (m)": 1.4702, + "Tp (total) (s)": 10.9363 + }, + { + "Date+Time": "1994-05-10T00:00:00Z", + "Hs (total) (m)": 2.3064, + "Tp (total) (s)": 9.9528 + }, + { + "Date+Time": "1994-05-11T00:00:00Z", + "Hs (total) (m)": 1.854, + "Tp (total) (s)": 13.8997 + }, + { + "Date+Time": "1994-05-12T00:00:00Z", + "Hs (total) (m)": 1.7586, + "Tp (total) (s)": 12.3699 + }, + { + "Date+Time": "1994-05-13T00:00:00Z", + "Hs (total) (m)": 1.4786, + "Tp (total) (s)": 10.2718 + }, + { + "Date+Time": "1994-05-14T00:00:00Z", + "Hs (total) (m)": 0.7759, + "Tp (total) (s)": 10.4579 + }, + { + "Date+Time": "1994-05-15T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 2.9916 + }, + { + "Date+Time": "1994-05-16T00:00:00Z", + "Hs (total) (m)": 0.6264, + "Tp (total) (s)": 2.9603 + }, + { + "Date+Time": "1994-05-17T00:00:00Z", + "Hs (total) (m)": 0.6081, + "Tp (total) (s)": 2.9771 + }, + { + "Date+Time": "1994-05-18T00:00:00Z", + "Hs (total) (m)": 0.4936, + "Tp (total) (s)": 2.7535 + }, + { + "Date+Time": "1994-05-19T00:00:00Z", + "Hs (total) (m)": 0.4097, + "Tp (total) (s)": 2.253 + }, + { + "Date+Time": "1994-05-20T00:00:00Z", + "Hs (total) (m)": 0.6607, + "Tp (total) (s)": 3.0068 + }, + { + "Date+Time": "1994-05-21T00:00:00Z", + "Hs (total) (m)": 0.6882, + "Tp (total) (s)": 3.6584 + }, + { + "Date+Time": "1994-05-22T00:00:00Z", + "Hs (total) (m)": 0.6691, + "Tp (total) (s)": 11.4742 + }, + { + "Date+Time": "1994-05-23T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 8.6596 + }, + { + "Date+Time": "1994-05-24T00:00:00Z", + "Hs (total) (m)": 0.7317, + "Tp (total) (s)": 8.4834 + }, + { + "Date+Time": "1994-05-25T00:00:00Z", + "Hs (total) (m)": 0.6973, + "Tp (total) (s)": 9.1891 + }, + { + "Date+Time": "1994-05-26T00:00:00Z", + "Hs (total) (m)": 1.3749, + "Tp (total) (s)": 11.5574 + }, + { + "Date+Time": "1994-05-27T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 9.5897 + }, + { + "Date+Time": "1994-05-28T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 10.4999 + }, + { + "Date+Time": "1994-05-29T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 11.5612 + }, + { + "Date+Time": "1994-05-30T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 10.1695 + }, + { + "Date+Time": "1994-05-31T00:00:00Z", + "Hs (total) (m)": 0.8248, + "Tp (total) (s)": 8.4506 + }, + { + "Date+Time": "1994-06-01T00:00:00Z", + "Hs (total) (m)": 1.0857, + "Tp (total) (s)": 11.7824 + }, + { + "Date+Time": "1994-06-02T00:00:00Z", + "Hs (total) (m)": 1.1589, + "Tp (total) (s)": 10.9424 + }, + { + "Date+Time": "1994-06-03T00:00:00Z", + "Hs (total) (m)": 1.97, + "Tp (total) (s)": 8.7558 + }, + { + "Date+Time": "1994-06-04T00:00:00Z", + "Hs (total) (m)": 2.1523, + "Tp (total) (s)": 10.5853 + }, + { + "Date+Time": "1994-06-05T00:00:00Z", + "Hs (total) (m)": 2.0119, + "Tp (total) (s)": 10.3786 + }, + { + "Date+Time": "1994-06-06T00:00:00Z", + "Hs (total) (m)": 2.1012, + "Tp (total) (s)": 9.3516 + }, + { + "Date+Time": "1994-06-07T00:00:00Z", + "Hs (total) (m)": 2.1882, + "Tp (total) (s)": 10.3969 + }, + { + "Date+Time": "1994-06-08T00:00:00Z", + "Hs (total) (m)": 1.6861, + "Tp (total) (s)": 10.5548 + }, + { + "Date+Time": "1994-06-09T00:00:00Z", + "Hs (total) (m)": 1.6671, + "Tp (total) (s)": 8.8824 + }, + { + "Date+Time": "1994-06-10T00:00:00Z", + "Hs (total) (m)": 1.5542, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "1994-06-11T00:00:00Z", + "Hs (total) (m)": 0.9255, + "Tp (total) (s)": 9.7324 + }, + { + "Date+Time": "1994-06-12T00:00:00Z", + "Hs (total) (m)": 0.8927, + "Tp (total) (s)": 11.5123 + }, + { + "Date+Time": "1994-06-13T00:00:00Z", + "Hs (total) (m)": 0.7775, + "Tp (total) (s)": 9.624 + }, + { + "Date+Time": "1994-06-14T00:00:00Z", + "Hs (total) (m)": 1.0392, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "1994-06-15T00:00:00Z", + "Hs (total) (m)": 1.1475, + "Tp (total) (s)": 10.4396 + }, + { + "Date+Time": "1994-06-16T00:00:00Z", + "Hs (total) (m)": 1.2665, + "Tp (total) (s)": 9.7797 + }, + { + "Date+Time": "1994-06-17T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 9.2669 + }, + { + "Date+Time": "1994-06-18T00:00:00Z", + "Hs (total) (m)": 1.8136, + "Tp (total) (s)": 7.6609 + }, + { + "Date+Time": "1994-06-19T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 10.1634 + }, + { + "Date+Time": "1994-06-20T00:00:00Z", + "Hs (total) (m)": 2.298, + "Tp (total) (s)": 10.3977 + }, + { + "Date+Time": "1994-06-21T00:00:00Z", + "Hs (total) (m)": 2.0966, + "Tp (total) (s)": 9.4043 + }, + { + "Date+Time": "1994-06-22T00:00:00Z", + "Hs (total) (m)": 2.411, + "Tp (total) (s)": 9.5721 + }, + { + "Date+Time": "1994-06-23T00:00:00Z", + "Hs (total) (m)": 1.8372, + "Tp (total) (s)": 10.4572 + }, + { + "Date+Time": "1994-06-24T00:00:00Z", + "Hs (total) (m)": 1.3581, + "Tp (total) (s)": 9.0915 + }, + { + "Date+Time": "1994-06-25T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 7.8883 + }, + { + "Date+Time": "1994-06-26T00:00:00Z", + "Hs (total) (m)": 1.5282, + "Tp (total) (s)": 8.1019 + }, + { + "Date+Time": "1994-06-27T00:00:00Z", + "Hs (total) (m)": 2.5597, + "Tp (total) (s)": 10.5502 + }, + { + "Date+Time": "1994-06-28T00:00:00Z", + "Hs (total) (m)": 1.8349, + "Tp (total) (s)": 10.126 + }, + { + "Date+Time": "1994-06-29T00:00:00Z", + "Hs (total) (m)": 2.5063, + "Tp (total) (s)": 7.1673 + }, + { + "Date+Time": "1994-06-30T00:00:00Z", + "Hs (total) (m)": 1.4809, + "Tp (total) (s)": 7.9318 + }, + { + "Date+Time": "1994-07-01T00:00:00Z", + "Hs (total) (m)": 1.5465, + "Tp (total) (s)": 11.758 + }, + { + "Date+Time": "1994-07-02T00:00:00Z", + "Hs (total) (m)": 1.2299, + "Tp (total) (s)": 10.0139 + }, + { + "Date+Time": "1994-07-03T00:00:00Z", + "Hs (total) (m)": 1.5229, + "Tp (total) (s)": 8.5238 + }, + { + "Date+Time": "1994-07-04T00:00:00Z", + "Hs (total) (m)": 1.3779, + "Tp (total) (s)": 8.4925 + }, + { + "Date+Time": "1994-07-05T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 8.301 + }, + { + "Date+Time": "1994-07-06T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 7.5739 + }, + { + "Date+Time": "1994-07-07T00:00:00Z", + "Hs (total) (m)": 0.8187, + "Tp (total) (s)": 7.4953 + }, + { + "Date+Time": "1994-07-08T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 7.075 + }, + { + "Date+Time": "1994-07-09T00:00:00Z", + "Hs (total) (m)": 2.0638, + "Tp (total) (s)": 9.4142 + }, + { + "Date+Time": "1994-07-10T00:00:00Z", + "Hs (total) (m)": 2.1508, + "Tp (total) (s)": 10.3099 + }, + { + "Date+Time": "1994-07-11T00:00:00Z", + "Hs (total) (m)": 1.912, + "Tp (total) (s)": 9.5141 + }, + { + "Date+Time": "1994-07-12T00:00:00Z", + "Hs (total) (m)": 1.6533, + "Tp (total) (s)": 9.4562 + }, + { + "Date+Time": "1994-07-13T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 8.7573 + }, + { + "Date+Time": "1994-07-14T00:00:00Z", + "Hs (total) (m)": 1.4267, + "Tp (total) (s)": 7.2108 + }, + { + "Date+Time": "1994-07-15T00:00:00Z", + "Hs (total) (m)": 1.3359, + "Tp (total) (s)": 9.5416 + }, + { + "Date+Time": "1994-07-16T00:00:00Z", + "Hs (total) (m)": 1.2139, + "Tp (total) (s)": 10.1543 + }, + { + "Date+Time": "1994-07-17T00:00:00Z", + "Hs (total) (m)": 0.856, + "Tp (total) (s)": 8.6428 + }, + { + "Date+Time": "1994-07-18T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 7.7235 + }, + { + "Date+Time": "1994-07-19T00:00:00Z", + "Hs (total) (m)": 0.7416, + "Tp (total) (s)": 7.7105 + }, + { + "Date+Time": "1994-07-20T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 7.3885 + }, + { + "Date+Time": "1994-07-21T00:00:00Z", + "Hs (total) (m)": 1.2299, + "Tp (total) (s)": 11.5642 + }, + { + "Date+Time": "1994-07-22T00:00:00Z", + "Hs (total) (m)": 1.4992, + "Tp (total) (s)": 9.5058 + }, + { + "Date+Time": "1994-07-23T00:00:00Z", + "Hs (total) (m)": 1.0102, + "Tp (total) (s)": 8.6863 + }, + { + "Date+Time": "1994-07-24T00:00:00Z", + "Hs (total) (m)": 1.3657, + "Tp (total) (s)": 9.3478 + }, + { + "Date+Time": "1994-07-25T00:00:00Z", + "Hs (total) (m)": 2.0539, + "Tp (total) (s)": 11.9167 + }, + { + "Date+Time": "1994-07-26T00:00:00Z", + "Hs (total) (m)": 2.0531, + "Tp (total) (s)": 9.7156 + }, + { + "Date+Time": "1994-07-27T00:00:00Z", + "Hs (total) (m)": 1.8204, + "Tp (total) (s)": 8.6116 + }, + { + "Date+Time": "1994-07-28T00:00:00Z", + "Hs (total) (m)": 1.8853, + "Tp (total) (s)": 8.6161 + }, + { + "Date+Time": "1994-07-29T00:00:00Z", + "Hs (total) (m)": 1.5313, + "Tp (total) (s)": 9.5317 + }, + { + "Date+Time": "1994-07-30T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 8.0905 + }, + { + "Date+Time": "1994-07-31T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 8.6512 + }, + { + "Date+Time": "1994-08-01T00:00:00Z", + "Hs (total) (m)": 1.1139, + "Tp (total) (s)": 10.139 + }, + { + "Date+Time": "1994-08-02T00:00:00Z", + "Hs (total) (m)": 0.7103, + "Tp (total) (s)": 8.6261 + }, + { + "Date+Time": "1994-08-03T00:00:00Z", + "Hs (total) (m)": 0.4563, + "Tp (total) (s)": 5.7062 + }, + { + "Date+Time": "1994-08-04T00:00:00Z", + "Hs (total) (m)": 0.4776, + "Tp (total) (s)": 6.502 + }, + { + "Date+Time": "1994-08-05T00:00:00Z", + "Hs (total) (m)": 0.7515, + "Tp (total) (s)": 6.5012 + }, + { + "Date+Time": "1994-08-06T00:00:00Z", + "Hs (total) (m)": 0.5974, + "Tp (total) (s)": 10.3984 + }, + { + "Date+Time": "1994-08-07T00:00:00Z", + "Hs (total) (m)": 0.8072, + "Tp (total) (s)": 9.6408 + }, + { + "Date+Time": "1994-08-08T00:00:00Z", + "Hs (total) (m)": 0.5089, + "Tp (total) (s)": 8.3338 + }, + { + "Date+Time": "1994-08-09T00:00:00Z", + "Hs (total) (m)": 0.383, + "Tp (total) (s)": 2.4766 + }, + { + "Date+Time": "1994-08-10T00:00:00Z", + "Hs (total) (m)": 0.4715, + "Tp (total) (s)": 2.6238 + }, + { + "Date+Time": "1994-08-11T00:00:00Z", + "Hs (total) (m)": 0.5966, + "Tp (total) (s)": 2.9916 + }, + { + "Date+Time": "1994-08-12T00:00:00Z", + "Hs (total) (m)": 0.6317, + "Tp (total) (s)": 5.3179 + }, + { + "Date+Time": "1994-08-13T00:00:00Z", + "Hs (total) (m)": 0.8034, + "Tp (total) (s)": 9.3318 + }, + { + "Date+Time": "1994-08-14T00:00:00Z", + "Hs (total) (m)": 0.5882, + "Tp (total) (s)": 8.7596 + }, + { + "Date+Time": "1994-08-15T00:00:00Z", + "Hs (total) (m)": 1.4901, + "Tp (total) (s)": 9.1655 + }, + { + "Date+Time": "1994-08-16T00:00:00Z", + "Hs (total) (m)": 1.5809, + "Tp (total) (s)": 7.5983 + }, + { + "Date+Time": "1994-08-17T00:00:00Z", + "Hs (total) (m)": 2.1371, + "Tp (total) (s)": 8.7336 + }, + { + "Date+Time": "1994-08-18T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 9.8163 + }, + { + "Date+Time": "1994-08-19T00:00:00Z", + "Hs (total) (m)": 2.0051, + "Tp (total) (s)": 7.7448 + }, + { + "Date+Time": "1994-08-20T00:00:00Z", + "Hs (total) (m)": 1.471, + "Tp (total) (s)": 8.7497 + }, + { + "Date+Time": "1994-08-21T00:00:00Z", + "Hs (total) (m)": 1.0857, + "Tp (total) (s)": 10.1291 + }, + { + "Date+Time": "1994-08-22T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 9.2097 + }, + { + "Date+Time": "1994-08-23T00:00:00Z", + "Hs (total) (m)": 1.017, + "Tp (total) (s)": 5.8252 + }, + { + "Date+Time": "1994-08-24T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 9.4119 + }, + { + "Date+Time": "1994-08-25T00:00:00Z", + "Hs (total) (m)": 1.2978, + "Tp (total) (s)": 7.4984 + }, + { + "Date+Time": "1994-08-26T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 8.3216 + }, + { + "Date+Time": "1994-08-27T00:00:00Z", + "Hs (total) (m)": 1.8456, + "Tp (total) (s)": 9.2021 + }, + { + "Date+Time": "1994-08-28T00:00:00Z", + "Hs (total) (m)": 2.5895, + "Tp (total) (s)": 9.0258 + }, + { + "Date+Time": "1994-08-29T00:00:00Z", + "Hs (total) (m)": 1.8006, + "Tp (total) (s)": 9.6446 + }, + { + "Date+Time": "1994-08-30T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 8.8153 + }, + { + "Date+Time": "1994-08-31T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 8.5757 + }, + { + "Date+Time": "1994-09-01T00:00:00Z", + "Hs (total) (m)": 0.7584, + "Tp (total) (s)": 7.9516 + }, + { + "Date+Time": "1994-09-02T00:00:00Z", + "Hs (total) (m)": 0.6424, + "Tp (total) (s)": 7.2146 + }, + { + "Date+Time": "1994-09-03T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 7.1474 + }, + { + "Date+Time": "1994-09-04T00:00:00Z", + "Hs (total) (m)": 1.2673, + "Tp (total) (s)": 8.6261 + }, + { + "Date+Time": "1994-09-05T00:00:00Z", + "Hs (total) (m)": 2.1325, + "Tp (total) (s)": 12.5324 + }, + { + "Date+Time": "1994-09-06T00:00:00Z", + "Hs (total) (m)": 2.9221, + "Tp (total) (s)": 11.7626 + }, + { + "Date+Time": "1994-09-07T00:00:00Z", + "Hs (total) (m)": 2.3637, + "Tp (total) (s)": 12.5866 + }, + { + "Date+Time": "1994-09-08T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 12.2814 + }, + { + "Date+Time": "1994-09-09T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 11.536 + }, + { + "Date+Time": "1994-09-10T00:00:00Z", + "Hs (total) (m)": 1.9509, + "Tp (total) (s)": 7.7441 + }, + { + "Date+Time": "1994-09-11T00:00:00Z", + "Hs (total) (m)": 2.7795, + "Tp (total) (s)": 9.3326 + }, + { + "Date+Time": "1994-09-12T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 10.123 + }, + { + "Date+Time": "1994-09-13T00:00:00Z", + "Hs (total) (m)": 0.7019, + "Tp (total) (s)": 8.5704 + }, + { + "Date+Time": "1994-09-14T00:00:00Z", + "Hs (total) (m)": 0.6432, + "Tp (total) (s)": 8.5833 + }, + { + "Date+Time": "1994-09-15T00:00:00Z", + "Hs (total) (m)": 0.8896, + "Tp (total) (s)": 6.4531 + }, + { + "Date+Time": "1994-09-16T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 8.24 + }, + { + "Date+Time": "1994-09-17T00:00:00Z", + "Hs (total) (m)": 0.6958, + "Tp (total) (s)": 8.1767 + }, + { + "Date+Time": "1994-09-18T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 11.4978 + }, + { + "Date+Time": "1994-09-19T00:00:00Z", + "Hs (total) (m)": 1.4153, + "Tp (total) (s)": 10.6868 + }, + { + "Date+Time": "1994-09-20T00:00:00Z", + "Hs (total) (m)": 1.2963, + "Tp (total) (s)": 6.2578 + }, + { + "Date+Time": "1994-09-21T00:00:00Z", + "Hs (total) (m)": 1.0849, + "Tp (total) (s)": 7.6342 + }, + { + "Date+Time": "1994-09-22T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 8.6535 + }, + { + "Date+Time": "1994-09-23T00:00:00Z", + "Hs (total) (m)": 0.7347, + "Tp (total) (s)": 9.0831 + }, + { + "Date+Time": "1994-09-24T00:00:00Z", + "Hs (total) (m)": 0.8019, + "Tp (total) (s)": 10.4404 + }, + { + "Date+Time": "1994-09-25T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 11.3224 + }, + { + "Date+Time": "1994-09-26T00:00:00Z", + "Hs (total) (m)": 0.9339, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "1994-09-27T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 10.3992 + }, + { + "Date+Time": "1994-09-28T00:00:00Z", + "Hs (total) (m)": 1.1742, + "Tp (total) (s)": 9.5729 + }, + { + "Date+Time": "1994-09-29T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 11.2529 + }, + { + "Date+Time": "1994-09-30T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 8.7695 + }, + { + "Date+Time": "1994-10-01T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 8.9724 + }, + { + "Date+Time": "1994-10-02T00:00:00Z", + "Hs (total) (m)": 1.1826, + "Tp (total) (s)": 8.6222 + }, + { + "Date+Time": "1994-10-03T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 5.9297 + }, + { + "Date+Time": "1994-10-04T00:00:00Z", + "Hs (total) (m)": 0.5875, + "Tp (total) (s)": 8.4239 + }, + { + "Date+Time": "1994-10-05T00:00:00Z", + "Hs (total) (m)": 0.5295, + "Tp (total) (s)": 11.5047 + }, + { + "Date+Time": "1994-10-06T00:00:00Z", + "Hs (total) (m)": 2.131, + "Tp (total) (s)": 7.1299 + }, + { + "Date+Time": "1994-10-07T00:00:00Z", + "Hs (total) (m)": 3.2945, + "Tp (total) (s)": 12.6949 + }, + { + "Date+Time": "1994-10-08T00:00:00Z", + "Hs (total) (m)": 1.9929, + "Tp (total) (s)": 12.4363 + }, + { + "Date+Time": "1994-10-09T00:00:00Z", + "Hs (total) (m)": 1.5938, + "Tp (total) (s)": 11.5604 + }, + { + "Date+Time": "1994-10-10T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 10.5136 + }, + { + "Date+Time": "1994-10-11T00:00:00Z", + "Hs (total) (m)": 1.1742, + "Tp (total) (s)": 11.1209 + }, + { + "Date+Time": "1994-10-12T00:00:00Z", + "Hs (total) (m)": 1.014, + "Tp (total) (s)": 9.7179 + }, + { + "Date+Time": "1994-10-13T00:00:00Z", + "Hs (total) (m)": 0.8827, + "Tp (total) (s)": 10.213 + }, + { + "Date+Time": "1994-10-14T00:00:00Z", + "Hs (total) (m)": 0.8538, + "Tp (total) (s)": 10.4656 + }, + { + "Date+Time": "1994-10-15T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 9.7819 + }, + { + "Date+Time": "1994-10-16T00:00:00Z", + "Hs (total) (m)": 0.6775, + "Tp (total) (s)": 9.9727 + }, + { + "Date+Time": "1994-10-17T00:00:00Z", + "Hs (total) (m)": 0.631, + "Tp (total) (s)": 2.8947 + }, + { + "Date+Time": "1994-10-18T00:00:00Z", + "Hs (total) (m)": 1.1734, + "Tp (total) (s)": 5.1447 + }, + { + "Date+Time": "1994-10-19T00:00:00Z", + "Hs (total) (m)": 2.2713, + "Tp (total) (s)": 9.4836 + }, + { + "Date+Time": "1994-10-20T00:00:00Z", + "Hs (total) (m)": 3.3166, + "Tp (total) (s)": 13.332 + }, + { + "Date+Time": "1994-10-21T00:00:00Z", + "Hs (total) (m)": 1.6053, + "Tp (total) (s)": 10.3473 + }, + { + "Date+Time": "1994-10-22T00:00:00Z", + "Hs (total) (m)": 1.6274, + "Tp (total) (s)": 12.7857 + }, + { + "Date+Time": "1994-10-23T00:00:00Z", + "Hs (total) (m)": 2.1546, + "Tp (total) (s)": 12.6133 + }, + { + "Date+Time": "1994-10-24T00:00:00Z", + "Hs (total) (m)": 1.9669, + "Tp (total) (s)": 9.6522 + }, + { + "Date+Time": "1994-10-25T00:00:00Z", + "Hs (total) (m)": 1.5069, + "Tp (total) (s)": 9.6042 + }, + { + "Date+Time": "1994-10-26T00:00:00Z", + "Hs (total) (m)": 2.1477, + "Tp (total) (s)": 9.4134 + }, + { + "Date+Time": "1994-10-27T00:00:00Z", + "Hs (total) (m)": 1.7525, + "Tp (total) (s)": 9.1578 + }, + { + "Date+Time": "1994-10-28T00:00:00Z", + "Hs (total) (m)": 1.2436, + "Tp (total) (s)": 9.5256 + }, + { + "Date+Time": "1994-10-29T00:00:00Z", + "Hs (total) (m)": 1.3764, + "Tp (total) (s)": 8.7519 + }, + { + "Date+Time": "1994-10-30T00:00:00Z", + "Hs (total) (m)": 2.0463, + "Tp (total) (s)": 9.2486 + }, + { + "Date+Time": "1994-10-31T00:00:00Z", + "Hs (total) (m)": 4.1368, + "Tp (total) (s)": 10.4236 + }, + { + "Date+Time": "1994-11-01T00:00:00Z", + "Hs (total) (m)": 2.6292, + "Tp (total) (s)": 11.4856 + }, + { + "Date+Time": "1994-11-02T00:00:00Z", + "Hs (total) (m)": 1.8365, + "Tp (total) (s)": 8.5833 + }, + { + "Date+Time": "1994-11-03T00:00:00Z", + "Hs (total) (m)": 2.504, + "Tp (total) (s)": 12.8109 + }, + { + "Date+Time": "1994-11-04T00:00:00Z", + "Hs (total) (m)": 2.8939, + "Tp (total) (s)": 8.1317 + }, + { + "Date+Time": "1994-11-05T00:00:00Z", + "Hs (total) (m)": 2.0318, + "Tp (total) (s)": 11.4689 + }, + { + "Date+Time": "1994-11-06T00:00:00Z", + "Hs (total) (m)": 0.9659, + "Tp (total) (s)": 9.6629 + }, + { + "Date+Time": "1994-11-07T00:00:00Z", + "Hs (total) (m)": 1.5938, + "Tp (total) (s)": 12.83 + }, + { + "Date+Time": "1994-11-08T00:00:00Z", + "Hs (total) (m)": 2.2423, + "Tp (total) (s)": 12.669 + }, + { + "Date+Time": "1994-11-09T00:00:00Z", + "Hs (total) (m)": 2.3469, + "Tp (total) (s)": 14.0751 + }, + { + "Date+Time": "1994-11-10T00:00:00Z", + "Hs (total) (m)": 1.6587, + "Tp (total) (s)": 10.8638 + }, + { + "Date+Time": "1994-11-11T00:00:00Z", + "Hs (total) (m)": 1.0704, + "Tp (total) (s)": 9.5241 + }, + { + "Date+Time": "1994-11-12T00:00:00Z", + "Hs (total) (m)": 2.7001, + "Tp (total) (s)": 14.6252 + }, + { + "Date+Time": "1994-11-13T00:00:00Z", + "Hs (total) (m)": 2.6681, + "Tp (total) (s)": 12.5958 + }, + { + "Date+Time": "1994-11-14T00:00:00Z", + "Hs (total) (m)": 3.3944, + "Tp (total) (s)": 12.6873 + }, + { + "Date+Time": "1994-11-15T00:00:00Z", + "Hs (total) (m)": 3.7477, + "Tp (total) (s)": 11.8915 + }, + { + "Date+Time": "1994-11-16T00:00:00Z", + "Hs (total) (m)": 2.4491, + "Tp (total) (s)": 11.9694 + }, + { + "Date+Time": "1994-11-17T00:00:00Z", + "Hs (total) (m)": 1.8693, + "Tp (total) (s)": 9.3356 + }, + { + "Date+Time": "1994-11-18T00:00:00Z", + "Hs (total) (m)": 1.7624, + "Tp (total) (s)": 9.4058 + }, + { + "Date+Time": "1994-11-19T00:00:00Z", + "Hs (total) (m)": 3.4326, + "Tp (total) (s)": 9.299 + }, + { + "Date+Time": "1994-11-20T00:00:00Z", + "Hs (total) (m)": 2.4674, + "Tp (total) (s)": 11.3491 + }, + { + "Date+Time": "1994-11-21T00:00:00Z", + "Hs (total) (m)": 2.2088, + "Tp (total) (s)": 11.4078 + }, + { + "Date+Time": "1994-11-22T00:00:00Z", + "Hs (total) (m)": 2.1706, + "Tp (total) (s)": 10.7311 + }, + { + "Date+Time": "1994-11-23T00:00:00Z", + "Hs (total) (m)": 2.9275, + "Tp (total) (s)": 12.5553 + }, + { + "Date+Time": "1994-11-24T00:00:00Z", + "Hs (total) (m)": 2.2835, + "Tp (total) (s)": 13.9126 + }, + { + "Date+Time": "1994-11-25T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 12.2509 + }, + { + "Date+Time": "1994-11-26T00:00:00Z", + "Hs (total) (m)": 1.606, + "Tp (total) (s)": 10.5518 + }, + { + "Date+Time": "1994-11-27T00:00:00Z", + "Hs (total) (m)": 2.0356, + "Tp (total) (s)": 9.5553 + }, + { + "Date+Time": "1994-11-28T00:00:00Z", + "Hs (total) (m)": 2.8085, + "Tp (total) (s)": 15.0349 + }, + { + "Date+Time": "1994-11-29T00:00:00Z", + "Hs (total) (m)": 2.2225, + "Tp (total) (s)": 13.683 + }, + { + "Date+Time": "1994-11-30T00:00:00Z", + "Hs (total) (m)": 1.8662, + "Tp (total) (s)": 11.9419 + }, + { + "Date+Time": "1994-12-01T00:00:00Z", + "Hs (total) (m)": 1.8761, + "Tp (total) (s)": 11.5352 + }, + { + "Date+Time": "1994-12-02T00:00:00Z", + "Hs (total) (m)": 2.3553, + "Tp (total) (s)": 9.5096 + }, + { + "Date+Time": "1994-12-03T00:00:00Z", + "Hs (total) (m)": 3.872, + "Tp (total) (s)": 14.5787 + }, + { + "Date+Time": "1994-12-04T00:00:00Z", + "Hs (total) (m)": 3.1091, + "Tp (total) (s)": 12.1334 + }, + { + "Date+Time": "1994-12-05T00:00:00Z", + "Hs (total) (m)": 2.2248, + "Tp (total) (s)": 11.4834 + }, + { + "Date+Time": "1994-12-06T00:00:00Z", + "Hs (total) (m)": 5.1319, + "Tp (total) (s)": 13.3761 + }, + { + "Date+Time": "1994-12-07T00:00:00Z", + "Hs (total) (m)": 6.7631, + "Tp (total) (s)": 14.2914 + }, + { + "Date+Time": "1994-12-08T00:00:00Z", + "Hs (total) (m)": 4.4801, + "Tp (total) (s)": 13.6853 + }, + { + "Date+Time": "1994-12-09T00:00:00Z", + "Hs (total) (m)": 3.9804, + "Tp (total) (s)": 13.5388 + }, + { + "Date+Time": "1994-12-10T00:00:00Z", + "Hs (total) (m)": 3.5943, + "Tp (total) (s)": 12.6087 + }, + { + "Date+Time": "1994-12-11T00:00:00Z", + "Hs (total) (m)": 4.7548, + "Tp (total) (s)": 12.6331 + }, + { + "Date+Time": "1994-12-12T00:00:00Z", + "Hs (total) (m)": 4.2375, + "Tp (total) (s)": 13.0505 + }, + { + "Date+Time": "1994-12-13T00:00:00Z", + "Hs (total) (m)": 2.4957, + "Tp (total) (s)": 13.3465 + }, + { + "Date+Time": "1994-12-14T00:00:00Z", + "Hs (total) (m)": 1.471, + "Tp (total) (s)": 10.5007 + }, + { + "Date+Time": "1994-12-15T00:00:00Z", + "Hs (total) (m)": 1.5908, + "Tp (total) (s)": 15.7895 + }, + { + "Date+Time": "1994-12-16T00:00:00Z", + "Hs (total) (m)": 2.6856, + "Tp (total) (s)": 15.1463 + }, + { + "Date+Time": "1994-12-17T00:00:00Z", + "Hs (total) (m)": 3.9384, + "Tp (total) (s)": 14.1232 + }, + { + "Date+Time": "1994-12-18T00:00:00Z", + "Hs (total) (m)": 4.8242, + "Tp (total) (s)": 12.8529 + }, + { + "Date+Time": "1994-12-19T00:00:00Z", + "Hs (total) (m)": 4.2276, + "Tp (total) (s)": 15.3218 + }, + { + "Date+Time": "1994-12-20T00:00:00Z", + "Hs (total) (m)": 2.456, + "Tp (total) (s)": 12.9582 + }, + { + "Date+Time": "1994-12-21T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 11.4269 + }, + { + "Date+Time": "1994-12-22T00:00:00Z", + "Hs (total) (m)": 1.7487, + "Tp (total) (s)": 10.5106 + }, + { + "Date+Time": "1994-12-23T00:00:00Z", + "Hs (total) (m)": 1.9845, + "Tp (total) (s)": 10.612 + }, + { + "Date+Time": "1994-12-24T00:00:00Z", + "Hs (total) (m)": 2.9313, + "Tp (total) (s)": 12.5774 + }, + { + "Date+Time": "1994-12-25T00:00:00Z", + "Hs (total) (m)": 2.842, + "Tp (total) (s)": 12.125 + }, + { + "Date+Time": "1994-12-26T00:00:00Z", + "Hs (total) (m)": 2.9756, + "Tp (total) (s)": 11.8351 + }, + { + "Date+Time": "1994-12-27T00:00:00Z", + "Hs (total) (m)": 3.1709, + "Tp (total) (s)": 12.0403 + }, + { + "Date+Time": "1994-12-28T00:00:00Z", + "Hs (total) (m)": 3.2205, + "Tp (total) (s)": 11.2529 + }, + { + "Date+Time": "1994-12-29T00:00:00Z", + "Hs (total) (m)": 5.3392, + "Tp (total) (s)": 12.9934 + }, + { + "Date+Time": "1994-12-30T00:00:00Z", + "Hs (total) (m)": 6.6032, + "Tp (total) (s)": 15.3418 + }, + { + "Date+Time": "1994-12-31T00:00:00Z", + "Hs (total) (m)": 3.6149, + "Tp (total) (s)": 12.0022 + }, + { + "Date+Time": "1995-01-01T00:00:00Z", + "Hs (total) (m)": 1.4046, + "Tp (total) (s)": 11.7618 + }, + { + "Date+Time": "1995-01-02T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 9.9773 + }, + { + "Date+Time": "1995-01-03T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 9.4867 + }, + { + "Date+Time": "1995-01-04T00:00:00Z", + "Hs (total) (m)": 2.4483, + "Tp (total) (s)": 10.754 + }, + { + "Date+Time": "1995-01-05T00:00:00Z", + "Hs (total) (m)": 3.0999, + "Tp (total) (s)": 12.7102 + }, + { + "Date+Time": "1995-01-06T00:00:00Z", + "Hs (total) (m)": 5.047, + "Tp (total) (s)": 15.9035 + }, + { + "Date+Time": "1995-01-07T00:00:00Z", + "Hs (total) (m)": 3.0526, + "Tp (total) (s)": 14.1156 + }, + { + "Date+Time": "1995-01-08T00:00:00Z", + "Hs (total) (m)": 3.1533, + "Tp (total) (s)": 13.889 + }, + { + "Date+Time": "1995-01-09T00:00:00Z", + "Hs (total) (m)": 3.0564, + "Tp (total) (s)": 13.873 + }, + { + "Date+Time": "1995-01-10T00:00:00Z", + "Hs (total) (m)": 3.8812, + "Tp (total) (s)": 14.3818 + }, + { + "Date+Time": "1995-01-11T00:00:00Z", + "Hs (total) (m)": 3.0625, + "Tp (total) (s)": 11.5772 + }, + { + "Date+Time": "1995-01-12T00:00:00Z", + "Hs (total) (m)": 1.7441, + "Tp (total) (s)": 11.491 + }, + { + "Date+Time": "1995-01-13T00:00:00Z", + "Hs (total) (m)": 1.8342, + "Tp (total) (s)": 11.6741 + }, + { + "Date+Time": "1995-01-14T00:00:00Z", + "Hs (total) (m)": 2.6467, + "Tp (total) (s)": 10.4137 + }, + { + "Date+Time": "1995-01-15T00:00:00Z", + "Hs (total) (m)": 2.2065, + "Tp (total) (s)": 11.7695 + }, + { + "Date+Time": "1995-01-16T00:00:00Z", + "Hs (total) (m)": 4.5961, + "Tp (total) (s)": 11.2285 + }, + { + "Date+Time": "1995-01-17T00:00:00Z", + "Hs (total) (m)": 3.2006, + "Tp (total) (s)": 11.3453 + }, + { + "Date+Time": "1995-01-18T00:00:00Z", + "Hs (total) (m)": 6.4765, + "Tp (total) (s)": 13.1316 + }, + { + "Date+Time": "1995-01-19T00:00:00Z", + "Hs (total) (m)": 3.3486, + "Tp (total) (s)": 12.4493 + }, + { + "Date+Time": "1995-01-20T00:00:00Z", + "Hs (total) (m)": 2.8939, + "Tp (total) (s)": 13.2717 + }, + { + "Date+Time": "1995-01-21T00:00:00Z", + "Hs (total) (m)": 3.7599, + "Tp (total) (s)": 14.05 + }, + { + "Date+Time": "1995-01-22T00:00:00Z", + "Hs (total) (m)": 3.225, + "Tp (total) (s)": 11.5986 + }, + { + "Date+Time": "1995-01-23T00:00:00Z", + "Hs (total) (m)": 3.4715, + "Tp (total) (s)": 10.7585 + }, + { + "Date+Time": "1995-01-24T00:00:00Z", + "Hs (total) (m)": 3.5997, + "Tp (total) (s)": 11.272 + }, + { + "Date+Time": "1995-01-25T00:00:00Z", + "Hs (total) (m)": 1.812, + "Tp (total) (s)": 10.8379 + }, + { + "Date+Time": "1995-01-26T00:00:00Z", + "Hs (total) (m)": 2.25, + "Tp (total) (s)": 10.7059 + }, + { + "Date+Time": "1995-01-27T00:00:00Z", + "Hs (total) (m)": 1.5481, + "Tp (total) (s)": 11.2629 + }, + { + "Date+Time": "1995-01-28T00:00:00Z", + "Hs (total) (m)": 3.7797, + "Tp (total) (s)": 11.8801 + }, + { + "Date+Time": "1995-01-29T00:00:00Z", + "Hs (total) (m)": 4.9783, + "Tp (total) (s)": 15.1002 + }, + { + "Date+Time": "1995-01-30T00:00:00Z", + "Hs (total) (m)": 2.6101, + "Tp (total) (s)": 13.5998 + }, + { + "Date+Time": "1995-01-31T00:00:00Z", + "Hs (total) (m)": 4.1215, + "Tp (total) (s)": 8.9633 + }, + { + "Date+Time": "1995-02-01T00:00:00Z", + "Hs (total) (m)": 3.9842, + "Tp (total) (s)": 14.6535 + }, + { + "Date+Time": "1995-02-02T00:00:00Z", + "Hs (total) (m)": 2.5643, + "Tp (total) (s)": 13.0215 + }, + { + "Date+Time": "1995-02-03T00:00:00Z", + "Hs (total) (m)": 4.1589, + "Tp (total) (s)": 11.6466 + }, + { + "Date+Time": "1995-02-04T00:00:00Z", + "Hs (total) (m)": 4.3489, + "Tp (total) (s)": 17.0095 + }, + { + "Date+Time": "1995-02-05T00:00:00Z", + "Hs (total) (m)": 2.5803, + "Tp (total) (s)": 13.773 + }, + { + "Date+Time": "1995-02-06T00:00:00Z", + "Hs (total) (m)": 2.5651, + "Tp (total) (s)": 10.9996 + }, + { + "Date+Time": "1995-02-07T00:00:00Z", + "Hs (total) (m)": 2.4567, + "Tp (total) (s)": 11.3353 + }, + { + "Date+Time": "1995-02-08T00:00:00Z", + "Hs (total) (m)": 1.9608, + "Tp (total) (s)": 11.4422 + }, + { + "Date+Time": "1995-02-09T00:00:00Z", + "Hs (total) (m)": 1.7457, + "Tp (total) (s)": 10.9592 + }, + { + "Date+Time": "1995-02-10T00:00:00Z", + "Hs (total) (m)": 2.1157, + "Tp (total) (s)": 14.7076 + }, + { + "Date+Time": "1995-02-11T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 12.3295 + }, + { + "Date+Time": "1995-02-12T00:00:00Z", + "Hs (total) (m)": 3.6126, + "Tp (total) (s)": 14.4391 + }, + { + "Date+Time": "1995-02-13T00:00:00Z", + "Hs (total) (m)": 4.1055, + "Tp (total) (s)": 15.8124 + }, + { + "Date+Time": "1995-02-14T00:00:00Z", + "Hs (total) (m)": 3.766, + "Tp (total) (s)": 14.7961 + }, + { + "Date+Time": "1995-02-15T00:00:00Z", + "Hs (total) (m)": 5.0663, + "Tp (total) (s)": 11.6979 + }, + { + "Date+Time": "1995-02-16T00:00:00Z", + "Hs (total) (m)": 6.6839, + "Tp (total) (s)": 17.3058 + }, + { + "Date+Time": "1995-02-17T00:00:00Z", + "Hs (total) (m)": 4.3641, + "Tp (total) (s)": 15.3851 + }, + { + "Date+Time": "1995-02-18T00:00:00Z", + "Hs (total) (m)": 2.8886, + "Tp (total) (s)": 11.774 + }, + { + "Date+Time": "1995-02-19T00:00:00Z", + "Hs (total) (m)": 5.1415, + "Tp (total) (s)": 12.7199 + }, + { + "Date+Time": "1995-02-20T00:00:00Z", + "Hs (total) (m)": 4.1162, + "Tp (total) (s)": 15.1822 + }, + { + "Date+Time": "1995-02-21T00:00:00Z", + "Hs (total) (m)": 2.884, + "Tp (total) (s)": 13.6372 + }, + { + "Date+Time": "1995-02-22T00:00:00Z", + "Hs (total) (m)": 5.1709, + "Tp (total) (s)": 13.7411 + }, + { + "Date+Time": "1995-02-23T00:00:00Z", + "Hs (total) (m)": 4.7334, + "Tp (total) (s)": 15.2593 + }, + { + "Date+Time": "1995-02-24T00:00:00Z", + "Hs (total) (m)": 2.4369, + "Tp (total) (s)": 12.5591 + }, + { + "Date+Time": "1995-02-25T00:00:00Z", + "Hs (total) (m)": 2.3263, + "Tp (total) (s)": 11.4223 + }, + { + "Date+Time": "1995-02-26T00:00:00Z", + "Hs (total) (m)": 2.0631, + "Tp (total) (s)": 10.3519 + }, + { + "Date+Time": "1995-02-27T00:00:00Z", + "Hs (total) (m)": 2.369, + "Tp (total) (s)": 12.7583 + }, + { + "Date+Time": "1995-02-28T00:00:00Z", + "Hs (total) (m)": 3.5707, + "Tp (total) (s)": 11.5482 + }, + { + "Date+Time": "1995-03-01T00:00:00Z", + "Hs (total) (m)": 3.2365, + "Tp (total) (s)": 13.6937 + }, + { + "Date+Time": "1995-03-02T00:00:00Z", + "Hs (total) (m)": 3.5211, + "Tp (total) (s)": 12.8727 + }, + { + "Date+Time": "1995-03-03T00:00:00Z", + "Hs (total) (m)": 3.029, + "Tp (total) (s)": 14.996 + }, + { + "Date+Time": "1995-03-04T00:00:00Z", + "Hs (total) (m)": 2.6002, + "Tp (total) (s)": 13.8676 + }, + { + "Date+Time": "1995-03-05T00:00:00Z", + "Hs (total) (m)": 3.4822, + "Tp (total) (s)": 12.4096 + }, + { + "Date+Time": "1995-03-06T00:00:00Z", + "Hs (total) (m)": 3.634, + "Tp (total) (s)": 13.5907 + }, + { + "Date+Time": "1995-03-07T00:00:00Z", + "Hs (total) (m)": 3.6538, + "Tp (total) (s)": 12.1624 + }, + { + "Date+Time": "1995-03-08T00:00:00Z", + "Hs (total) (m)": 4.3008, + "Tp (total) (s)": 15.7476 + }, + { + "Date+Time": "1995-03-09T00:00:00Z", + "Hs (total) (m)": 2.5582, + "Tp (total) (s)": 15.0464 + }, + { + "Date+Time": "1995-03-10T00:00:00Z", + "Hs (total) (m)": 3.3525, + "Tp (total) (s)": 11.697 + }, + { + "Date+Time": "1995-03-11T00:00:00Z", + "Hs (total) (m)": 2.7886, + "Tp (total) (s)": 11.401 + }, + { + "Date+Time": "1995-03-12T00:00:00Z", + "Hs (total) (m)": 1.4473, + "Tp (total) (s)": 10.2802 + }, + { + "Date+Time": "1995-03-13T00:00:00Z", + "Hs (total) (m)": 1.3565, + "Tp (total) (s)": 9.5134 + }, + { + "Date+Time": "1995-03-14T00:00:00Z", + "Hs (total) (m)": 2.2546, + "Tp (total) (s)": 14.9785 + }, + { + "Date+Time": "1995-03-15T00:00:00Z", + "Hs (total) (m)": 3.5691, + "Tp (total) (s)": 15.0037 + }, + { + "Date+Time": "1995-03-16T00:00:00Z", + "Hs (total) (m)": 2.3049, + "Tp (total) (s)": 12.431 + }, + { + "Date+Time": "1995-03-17T00:00:00Z", + "Hs (total) (m)": 3.8308, + "Tp (total) (s)": 12.8506 + }, + { + "Date+Time": "1995-03-18T00:00:00Z", + "Hs (total) (m)": 3.6477, + "Tp (total) (s)": 13.7364 + }, + { + "Date+Time": "1995-03-19T00:00:00Z", + "Hs (total) (m)": 1.8929, + "Tp (total) (s)": 12.4958 + }, + { + "Date+Time": "1995-03-20T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 11.7321 + }, + { + "Date+Time": "1995-03-21T00:00:00Z", + "Hs (total) (m)": 0.8919, + "Tp (total) (s)": 12.3402 + }, + { + "Date+Time": "1995-03-22T00:00:00Z", + "Hs (total) (m)": 1.9829, + "Tp (total) (s)": 9.209 + }, + { + "Date+Time": "1995-03-23T00:00:00Z", + "Hs (total) (m)": 1.9448, + "Tp (total) (s)": 14.0156 + }, + { + "Date+Time": "1995-03-24T00:00:00Z", + "Hs (total) (m)": 1.9913, + "Tp (total) (s)": 12.8231 + }, + { + "Date+Time": "1995-03-25T00:00:00Z", + "Hs (total) (m)": 2.7917, + "Tp (total) (s)": 10.802 + }, + { + "Date+Time": "1995-03-26T00:00:00Z", + "Hs (total) (m)": 2.0875, + "Tp (total) (s)": 10.7418 + }, + { + "Date+Time": "1995-03-27T00:00:00Z", + "Hs (total) (m)": 2.1416, + "Tp (total) (s)": 8.948 + }, + { + "Date+Time": "1995-03-28T00:00:00Z", + "Hs (total) (m)": 1.5419, + "Tp (total) (s)": 9.4096 + }, + { + "Date+Time": "1995-03-29T00:00:00Z", + "Hs (total) (m)": 1.8609, + "Tp (total) (s)": 9.6454 + }, + { + "Date+Time": "1995-03-30T00:00:00Z", + "Hs (total) (m)": 1.4374, + "Tp (total) (s)": 9.1922 + }, + { + "Date+Time": "1995-03-31T00:00:00Z", + "Hs (total) (m)": 1.8387, + "Tp (total) (s)": 7.7479 + }, + { + "Date+Time": "1995-04-01T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 12.0052 + }, + { + "Date+Time": "1995-04-02T00:00:00Z", + "Hs (total) (m)": 2.5048, + "Tp (total) (s)": 15.2928 + }, + { + "Date+Time": "1995-04-03T00:00:00Z", + "Hs (total) (m)": 1.8838, + "Tp (total) (s)": 12.4607 + }, + { + "Date+Time": "1995-04-04T00:00:00Z", + "Hs (total) (m)": 1.532, + "Tp (total) (s)": 11.9968 + }, + { + "Date+Time": "1995-04-05T00:00:00Z", + "Hs (total) (m)": 2.1393, + "Tp (total) (s)": 11.4681 + }, + { + "Date+Time": "1995-04-06T00:00:00Z", + "Hs (total) (m)": 1.9883, + "Tp (total) (s)": 11.1347 + }, + { + "Date+Time": "1995-04-07T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 16.5693 + }, + { + "Date+Time": "1995-04-08T00:00:00Z", + "Hs (total) (m)": 1.9951, + "Tp (total) (s)": 13.976 + }, + { + "Date+Time": "1995-04-09T00:00:00Z", + "Hs (total) (m)": 1.3169, + "Tp (total) (s)": 11.5719 + }, + { + "Date+Time": "1995-04-10T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 14.3696 + }, + { + "Date+Time": "1995-04-11T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 11.8969 + }, + { + "Date+Time": "1995-04-12T00:00:00Z", + "Hs (total) (m)": 2.443, + "Tp (total) (s)": 13.8173 + }, + { + "Date+Time": "1995-04-13T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 13.8661 + }, + { + "Date+Time": "1995-04-14T00:00:00Z", + "Hs (total) (m)": 1.6205, + "Tp (total) (s)": 12.6537 + }, + { + "Date+Time": "1995-04-15T00:00:00Z", + "Hs (total) (m)": 1.1689, + "Tp (total) (s)": 11.243 + }, + { + "Date+Time": "1995-04-16T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 10.3015 + }, + { + "Date+Time": "1995-04-17T00:00:00Z", + "Hs (total) (m)": 1.4122, + "Tp (total) (s)": 7.7013 + }, + { + "Date+Time": "1995-04-18T00:00:00Z", + "Hs (total) (m)": 1.6945, + "Tp (total) (s)": 8.7199 + }, + { + "Date+Time": "1995-04-19T00:00:00Z", + "Hs (total) (m)": 1.0514, + "Tp (total) (s)": 10.3916 + }, + { + "Date+Time": "1995-04-20T00:00:00Z", + "Hs (total) (m)": 0.9285, + "Tp (total) (s)": 11.7023 + }, + { + "Date+Time": "1995-04-21T00:00:00Z", + "Hs (total) (m)": 0.9674, + "Tp (total) (s)": 12.1044 + }, + { + "Date+Time": "1995-04-22T00:00:00Z", + "Hs (total) (m)": 0.8477, + "Tp (total) (s)": 10.8295 + }, + { + "Date+Time": "1995-04-23T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 3.5936 + }, + { + "Date+Time": "1995-04-24T00:00:00Z", + "Hs (total) (m)": 0.5593, + "Tp (total) (s)": 9.4333 + }, + { + "Date+Time": "1995-04-25T00:00:00Z", + "Hs (total) (m)": 0.5692, + "Tp (total) (s)": 3.2937 + }, + { + "Date+Time": "1995-04-26T00:00:00Z", + "Hs (total) (m)": 0.4646, + "Tp (total) (s)": 10.3107 + }, + { + "Date+Time": "1995-04-27T00:00:00Z", + "Hs (total) (m)": 0.5089, + "Tp (total) (s)": 2.591 + }, + { + "Date+Time": "1995-04-28T00:00:00Z", + "Hs (total) (m)": 0.441, + "Tp (total) (s)": 2.5231 + }, + { + "Date+Time": "1995-04-29T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 11.5047 + }, + { + "Date+Time": "1995-04-30T00:00:00Z", + "Hs (total) (m)": 1.9654, + "Tp (total) (s)": 14.2911 + }, + { + "Date+Time": "1995-05-01T00:00:00Z", + "Hs (total) (m)": 2.3026, + "Tp (total) (s)": 11.8076 + }, + { + "Date+Time": "1995-05-02T00:00:00Z", + "Hs (total) (m)": 2.2324, + "Tp (total) (s)": 10.9104 + }, + { + "Date+Time": "1995-05-03T00:00:00Z", + "Hs (total) (m)": 1.8212, + "Tp (total) (s)": 11.4437 + }, + { + "Date+Time": "1995-05-04T00:00:00Z", + "Hs (total) (m)": 1.664, + "Tp (total) (s)": 10.8074 + }, + { + "Date+Time": "1995-05-05T00:00:00Z", + "Hs (total) (m)": 1.8609, + "Tp (total) (s)": 11.1759 + }, + { + "Date+Time": "1995-05-06T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 9.2433 + }, + { + "Date+Time": "1995-05-07T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 8.6306 + }, + { + "Date+Time": "1995-05-08T00:00:00Z", + "Hs (total) (m)": 1.2947, + "Tp (total) (s)": 8.6756 + }, + { + "Date+Time": "1995-05-09T00:00:00Z", + "Hs (total) (m)": 0.9621, + "Tp (total) (s)": 7.1848 + }, + { + "Date+Time": "1995-05-10T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 10.5449 + }, + { + "Date+Time": "1995-05-11T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 3.0183 + }, + { + "Date+Time": "1995-05-12T00:00:00Z", + "Hs (total) (m)": 0.8477, + "Tp (total) (s)": 3.9727 + }, + { + "Date+Time": "1995-05-13T00:00:00Z", + "Hs (total) (m)": 0.7721, + "Tp (total) (s)": 8.414 + }, + { + "Date+Time": "1995-05-14T00:00:00Z", + "Hs (total) (m)": 0.4601, + "Tp (total) (s)": 7.9646 + }, + { + "Date+Time": "1995-05-15T00:00:00Z", + "Hs (total) (m)": 0.5852, + "Tp (total) (s)": 10.4335 + }, + { + "Date+Time": "1995-05-16T00:00:00Z", + "Hs (total) (m)": 0.6386, + "Tp (total) (s)": 10.0139 + }, + { + "Date+Time": "1995-05-17T00:00:00Z", + "Hs (total) (m)": 0.6676, + "Tp (total) (s)": 2.9275 + }, + { + "Date+Time": "1995-05-18T00:00:00Z", + "Hs (total) (m)": 0.6256, + "Tp (total) (s)": 8.3781 + }, + { + "Date+Time": "1995-05-19T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 6.5226 + }, + { + "Date+Time": "1995-05-20T00:00:00Z", + "Hs (total) (m)": 1.6076, + "Tp (total) (s)": 7.2031 + }, + { + "Date+Time": "1995-05-21T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 8.8015 + }, + { + "Date+Time": "1995-05-22T00:00:00Z", + "Hs (total) (m)": 1.9692, + "Tp (total) (s)": 7.9272 + }, + { + "Date+Time": "1995-05-23T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 9.2708 + }, + { + "Date+Time": "1995-05-24T00:00:00Z", + "Hs (total) (m)": 1.5206, + "Tp (total) (s)": 9.5355 + }, + { + "Date+Time": "1995-05-25T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 11.8404 + }, + { + "Date+Time": "1995-05-26T00:00:00Z", + "Hs (total) (m)": 1.4924, + "Tp (total) (s)": 10.4671 + }, + { + "Date+Time": "1995-05-27T00:00:00Z", + "Hs (total) (m)": 1.7479, + "Tp (total) (s)": 15.1906 + }, + { + "Date+Time": "1995-05-28T00:00:00Z", + "Hs (total) (m)": 2.6818, + "Tp (total) (s)": 11.1728 + }, + { + "Date+Time": "1995-05-29T00:00:00Z", + "Hs (total) (m)": 3.2167, + "Tp (total) (s)": 13.5945 + }, + { + "Date+Time": "1995-05-30T00:00:00Z", + "Hs (total) (m)": 2.1218, + "Tp (total) (s)": 10.3092 + }, + { + "Date+Time": "1995-05-31T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 8.4559 + }, + { + "Date+Time": "1995-06-01T00:00:00Z", + "Hs (total) (m)": 0.9919, + "Tp (total) (s)": 15.0143 + }, + { + "Date+Time": "1995-06-02T00:00:00Z", + "Hs (total) (m)": 1.7716, + "Tp (total) (s)": 13.5296 + }, + { + "Date+Time": "1995-06-03T00:00:00Z", + "Hs (total) (m)": 2.2263, + "Tp (total) (s)": 11.6657 + }, + { + "Date+Time": "1995-06-04T00:00:00Z", + "Hs (total) (m)": 1.5328, + "Tp (total) (s)": 8.8076 + }, + { + "Date+Time": "1995-06-05T00:00:00Z", + "Hs (total) (m)": 1.1742, + "Tp (total) (s)": 10.77 + }, + { + "Date+Time": "1995-06-06T00:00:00Z", + "Hs (total) (m)": 1.0811, + "Tp (total) (s)": 10.0269 + }, + { + "Date+Time": "1995-06-07T00:00:00Z", + "Hs (total) (m)": 1.1223, + "Tp (total) (s)": 6.2151 + }, + { + "Date+Time": "1995-06-08T00:00:00Z", + "Hs (total) (m)": 0.7904, + "Tp (total) (s)": 5.652 + }, + { + "Date+Time": "1995-06-09T00:00:00Z", + "Hs (total) (m)": 0.9072, + "Tp (total) (s)": 7.1383 + }, + { + "Date+Time": "1995-06-10T00:00:00Z", + "Hs (total) (m)": 0.9133, + "Tp (total) (s)": 5.9 + }, + { + "Date+Time": "1995-06-11T00:00:00Z", + "Hs (total) (m)": 1.1093, + "Tp (total) (s)": 6.4142 + }, + { + "Date+Time": "1995-06-12T00:00:00Z", + "Hs (total) (m)": 0.811, + "Tp (total) (s)": 7.8364 + }, + { + "Date+Time": "1995-06-13T00:00:00Z", + "Hs (total) (m)": 0.6043, + "Tp (total) (s)": 12.1525 + }, + { + "Date+Time": "1995-06-14T00:00:00Z", + "Hs (total) (m)": 0.6661, + "Tp (total) (s)": 10.4404 + }, + { + "Date+Time": "1995-06-15T00:00:00Z", + "Hs (total) (m)": 0.6455, + "Tp (total) (s)": 9.7156 + }, + { + "Date+Time": "1995-06-16T00:00:00Z", + "Hs (total) (m)": 0.5753, + "Tp (total) (s)": 8.5711 + }, + { + "Date+Time": "1995-06-17T00:00:00Z", + "Hs (total) (m)": 2.1577, + "Tp (total) (s)": 8.1385 + }, + { + "Date+Time": "1995-06-18T00:00:00Z", + "Hs (total) (m)": 1.6457, + "Tp (total) (s)": 9.3257 + }, + { + "Date+Time": "1995-06-19T00:00:00Z", + "Hs (total) (m)": 2.4964, + "Tp (total) (s)": 10.448 + }, + { + "Date+Time": "1995-06-20T00:00:00Z", + "Hs (total) (m)": 1.7312, + "Tp (total) (s)": 9.5805 + }, + { + "Date+Time": "1995-06-21T00:00:00Z", + "Hs (total) (m)": 1.3153, + "Tp (total) (s)": 9.4485 + }, + { + "Date+Time": "1995-06-22T00:00:00Z", + "Hs (total) (m)": 0.9064, + "Tp (total) (s)": 8.8328 + }, + { + "Date+Time": "1995-06-23T00:00:00Z", + "Hs (total) (m)": 0.9323, + "Tp (total) (s)": 12.9917 + }, + { + "Date+Time": "1995-06-24T00:00:00Z", + "Hs (total) (m)": 1.1261, + "Tp (total) (s)": 11.6543 + }, + { + "Date+Time": "1995-06-25T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 10.4968 + }, + { + "Date+Time": "1995-06-26T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 9.7148 + }, + { + "Date+Time": "1995-06-27T00:00:00Z", + "Hs (total) (m)": 0.8202, + "Tp (total) (s)": 8.6543 + }, + { + "Date+Time": "1995-06-28T00:00:00Z", + "Hs (total) (m)": 0.6867, + "Tp (total) (s)": 8.0592 + }, + { + "Date+Time": "1995-06-29T00:00:00Z", + "Hs (total) (m)": 0.6836, + "Tp (total) (s)": 9.4348 + }, + { + "Date+Time": "1995-06-30T00:00:00Z", + "Hs (total) (m)": 0.5921, + "Tp (total) (s)": 7.9424 + }, + { + "Date+Time": "1995-07-01T00:00:00Z", + "Hs (total) (m)": 0.5928, + "Tp (total) (s)": 2.6643 + }, + { + "Date+Time": "1995-07-02T00:00:00Z", + "Hs (total) (m)": 0.5585, + "Tp (total) (s)": 5.4163 + }, + { + "Date+Time": "1995-07-03T00:00:00Z", + "Hs (total) (m)": 0.5448, + "Tp (total) (s)": 5.4079 + }, + { + "Date+Time": "1995-07-04T00:00:00Z", + "Hs (total) (m)": 0.5737, + "Tp (total) (s)": 2.9916 + }, + { + "Date+Time": "1995-07-05T00:00:00Z", + "Hs (total) (m)": 0.6371, + "Tp (total) (s)": 3.2594 + }, + { + "Date+Time": "1995-07-06T00:00:00Z", + "Hs (total) (m)": 0.9537, + "Tp (total) (s)": 3.0633 + }, + { + "Date+Time": "1995-07-07T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 6.5424 + }, + { + "Date+Time": "1995-07-08T00:00:00Z", + "Hs (total) (m)": 1.323, + "Tp (total) (s)": 8.2209 + }, + { + "Date+Time": "1995-07-09T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 8.5017 + }, + { + "Date+Time": "1995-07-10T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 8.9763 + }, + { + "Date+Time": "1995-07-11T00:00:00Z", + "Hs (total) (m)": 0.9903, + "Tp (total) (s)": 9.1708 + }, + { + "Date+Time": "1995-07-12T00:00:00Z", + "Hs (total) (m)": 1.0071, + "Tp (total) (s)": 9.3478 + }, + { + "Date+Time": "1995-07-13T00:00:00Z", + "Hs (total) (m)": 1.4466, + "Tp (total) (s)": 9.4356 + }, + { + "Date+Time": "1995-07-14T00:00:00Z", + "Hs (total) (m)": 1.6495, + "Tp (total) (s)": 8.7596 + }, + { + "Date+Time": "1995-07-15T00:00:00Z", + "Hs (total) (m)": 1.3436, + "Tp (total) (s)": 8.5154 + }, + { + "Date+Time": "1995-07-16T00:00:00Z", + "Hs (total) (m)": 1.0201, + "Tp (total) (s)": 8.3949 + }, + { + "Date+Time": "1995-07-17T00:00:00Z", + "Hs (total) (m)": 0.9644, + "Tp (total) (s)": 8.0996 + }, + { + "Date+Time": "1995-07-18T00:00:00Z", + "Hs (total) (m)": 1.2947, + "Tp (total) (s)": 8.3331 + }, + { + "Date+Time": "1995-07-19T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 7.9302 + }, + { + "Date+Time": "1995-07-20T00:00:00Z", + "Hs (total) (m)": 2.0005, + "Tp (total) (s)": 8.4826 + }, + { + "Date+Time": "1995-07-21T00:00:00Z", + "Hs (total) (m)": 2.1653, + "Tp (total) (s)": 10.0696 + }, + { + "Date+Time": "1995-07-22T00:00:00Z", + "Hs (total) (m)": 2.047, + "Tp (total) (s)": 10.268 + }, + { + "Date+Time": "1995-07-23T00:00:00Z", + "Hs (total) (m)": 1.7922, + "Tp (total) (s)": 10.3526 + }, + { + "Date+Time": "1995-07-24T00:00:00Z", + "Hs (total) (m)": 1.9578, + "Tp (total) (s)": 9.7354 + }, + { + "Date+Time": "1995-07-25T00:00:00Z", + "Hs (total) (m)": 2.0775, + "Tp (total) (s)": 10.0223 + }, + { + "Date+Time": "1995-07-26T00:00:00Z", + "Hs (total) (m)": 2.0287, + "Tp (total) (s)": 10.7776 + }, + { + "Date+Time": "1995-07-27T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 10.7204 + }, + { + "Date+Time": "1995-07-28T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 11.2613 + }, + { + "Date+Time": "1995-07-29T00:00:00Z", + "Hs (total) (m)": 1.5137, + "Tp (total) (s)": 10.3275 + }, + { + "Date+Time": "1995-07-30T00:00:00Z", + "Hs (total) (m)": 1.4382, + "Tp (total) (s)": 9.4424 + }, + { + "Date+Time": "1995-07-31T00:00:00Z", + "Hs (total) (m)": 1.1727, + "Tp (total) (s)": 9.1708 + }, + { + "Date+Time": "1995-08-01T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 8.7466 + }, + { + "Date+Time": "1995-08-02T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 10.5441 + }, + { + "Date+Time": "1995-08-03T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 10.4358 + }, + { + "Date+Time": "1995-08-04T00:00:00Z", + "Hs (total) (m)": 1.1513, + "Tp (total) (s)": 10.3076 + }, + { + "Date+Time": "1995-08-05T00:00:00Z", + "Hs (total) (m)": 0.8942, + "Tp (total) (s)": 9.2463 + }, + { + "Date+Time": "1995-08-06T00:00:00Z", + "Hs (total) (m)": 0.6157, + "Tp (total) (s)": 8.62 + }, + { + "Date+Time": "1995-08-07T00:00:00Z", + "Hs (total) (m)": 0.6363, + "Tp (total) (s)": 6.3585 + }, + { + "Date+Time": "1995-08-08T00:00:00Z", + "Hs (total) (m)": 0.5066, + "Tp (total) (s)": 9.6133 + }, + { + "Date+Time": "1995-08-09T00:00:00Z", + "Hs (total) (m)": 0.4044, + "Tp (total) (s)": 9.444 + }, + { + "Date+Time": "1995-08-10T00:00:00Z", + "Hs (total) (m)": 0.6386, + "Tp (total) (s)": 7.2512 + }, + { + "Date+Time": "1995-08-11T00:00:00Z", + "Hs (total) (m)": 1.1208, + "Tp (total) (s)": 8.1492 + }, + { + "Date+Time": "1995-08-12T00:00:00Z", + "Hs (total) (m)": 1.381, + "Tp (total) (s)": 10.6792 + }, + { + "Date+Time": "1995-08-13T00:00:00Z", + "Hs (total) (m)": 1.6778, + "Tp (total) (s)": 10.2443 + }, + { + "Date+Time": "1995-08-14T00:00:00Z", + "Hs (total) (m)": 1.764, + "Tp (total) (s)": 10.5579 + }, + { + "Date+Time": "1995-08-15T00:00:00Z", + "Hs (total) (m)": 1.8303, + "Tp (total) (s)": 10.9325 + }, + { + "Date+Time": "1995-08-16T00:00:00Z", + "Hs (total) (m)": 1.6282, + "Tp (total) (s)": 10.4884 + }, + { + "Date+Time": "1995-08-17T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 10.1604 + }, + { + "Date+Time": "1995-08-18T00:00:00Z", + "Hs (total) (m)": 1.1872, + "Tp (total) (s)": 9.7316 + }, + { + "Date+Time": "1995-08-19T00:00:00Z", + "Hs (total) (m)": 1.0971, + "Tp (total) (s)": 9.5935 + }, + { + "Date+Time": "1995-08-20T00:00:00Z", + "Hs (total) (m)": 1.0659, + "Tp (total) (s)": 9.6522 + }, + { + "Date+Time": "1995-08-21T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 9.7377 + }, + { + "Date+Time": "1995-08-22T00:00:00Z", + "Hs (total) (m)": 1.1376, + "Tp (total) (s)": 9.946 + }, + { + "Date+Time": "1995-08-23T00:00:00Z", + "Hs (total) (m)": 1.2322, + "Tp (total) (s)": 10.332 + }, + { + "Date+Time": "1995-08-24T00:00:00Z", + "Hs (total) (m)": 1.2375, + "Tp (total) (s)": 10.6914 + }, + { + "Date+Time": "1995-08-25T00:00:00Z", + "Hs (total) (m)": 1.6793, + "Tp (total) (s)": 10.5266 + }, + { + "Date+Time": "1995-08-26T00:00:00Z", + "Hs (total) (m)": 1.8509, + "Tp (total) (s)": 10.3954 + }, + { + "Date+Time": "1995-08-27T00:00:00Z", + "Hs (total) (m)": 2.0089, + "Tp (total) (s)": 11.1118 + }, + { + "Date+Time": "1995-08-28T00:00:00Z", + "Hs (total) (m)": 1.8357, + "Tp (total) (s)": 10.9485 + }, + { + "Date+Time": "1995-08-29T00:00:00Z", + "Hs (total) (m)": 1.3474, + "Tp (total) (s)": 10.4709 + }, + { + "Date+Time": "1995-08-30T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 7.1841 + }, + { + "Date+Time": "1995-08-31T00:00:00Z", + "Hs (total) (m)": 0.9148, + "Tp (total) (s)": 9.3425 + }, + { + "Date+Time": "1995-09-01T00:00:00Z", + "Hs (total) (m)": 0.7653, + "Tp (total) (s)": 7.9501 + }, + { + "Date+Time": "1995-09-02T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 7.2329 + }, + { + "Date+Time": "1995-09-03T00:00:00Z", + "Hs (total) (m)": 0.8187, + "Tp (total) (s)": 10.1192 + }, + { + "Date+Time": "1995-09-04T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 9.7858 + }, + { + "Date+Time": "1995-09-05T00:00:00Z", + "Hs (total) (m)": 0.811, + "Tp (total) (s)": 9.5378 + }, + { + "Date+Time": "1995-09-06T00:00:00Z", + "Hs (total) (m)": 0.8324, + "Tp (total) (s)": 8.7436 + }, + { + "Date+Time": "1995-09-07T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 7.6495 + }, + { + "Date+Time": "1995-09-08T00:00:00Z", + "Hs (total) (m)": 1.0422, + "Tp (total) (s)": 8.3941 + }, + { + "Date+Time": "1995-09-09T00:00:00Z", + "Hs (total) (m)": 0.766, + "Tp (total) (s)": 10.1917 + }, + { + "Date+Time": "1995-09-10T00:00:00Z", + "Hs (total) (m)": 1.2268, + "Tp (total) (s)": 13.2313 + }, + { + "Date+Time": "1995-09-11T00:00:00Z", + "Hs (total) (m)": 1.1238, + "Tp (total) (s)": 11.9999 + }, + { + "Date+Time": "1995-09-12T00:00:00Z", + "Hs (total) (m)": 1.0002, + "Tp (total) (s)": 7.77 + }, + { + "Date+Time": "1995-09-13T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 8.4956 + }, + { + "Date+Time": "1995-09-14T00:00:00Z", + "Hs (total) (m)": 1.4466, + "Tp (total) (s)": 8.8229 + }, + { + "Date+Time": "1995-09-15T00:00:00Z", + "Hs (total) (m)": 1.7083, + "Tp (total) (s)": 16.5952 + }, + { + "Date+Time": "1995-09-16T00:00:00Z", + "Hs (total) (m)": 2.1943, + "Tp (total) (s)": 15.904 + }, + { + "Date+Time": "1995-09-17T00:00:00Z", + "Hs (total) (m)": 2.2835, + "Tp (total) (s)": 15.5286 + }, + { + "Date+Time": "1995-09-18T00:00:00Z", + "Hs (total) (m)": 1.9829, + "Tp (total) (s)": 14.7412 + }, + { + "Date+Time": "1995-09-19T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 13.3023 + }, + { + "Date+Time": "1995-09-20T00:00:00Z", + "Hs (total) (m)": 1.1742, + "Tp (total) (s)": 11.7733 + }, + { + "Date+Time": "1995-09-21T00:00:00Z", + "Hs (total) (m)": 0.9056, + "Tp (total) (s)": 10.4671 + }, + { + "Date+Time": "1995-09-22T00:00:00Z", + "Hs (total) (m)": 0.8599, + "Tp (total) (s)": 9.8239 + }, + { + "Date+Time": "1995-09-23T00:00:00Z", + "Hs (total) (m)": 0.9445, + "Tp (total) (s)": 10.229 + }, + { + "Date+Time": "1995-09-24T00:00:00Z", + "Hs (total) (m)": 2.1523, + "Tp (total) (s)": 14.687 + }, + { + "Date+Time": "1995-09-25T00:00:00Z", + "Hs (total) (m)": 2.6345, + "Tp (total) (s)": 13.7753 + }, + { + "Date+Time": "1995-09-26T00:00:00Z", + "Hs (total) (m)": 2.3965, + "Tp (total) (s)": 10.3679 + }, + { + "Date+Time": "1995-09-27T00:00:00Z", + "Hs (total) (m)": 2.2546, + "Tp (total) (s)": 10.1764 + }, + { + "Date+Time": "1995-09-28T00:00:00Z", + "Hs (total) (m)": 2.2187, + "Tp (total) (s)": 13.7974 + }, + { + "Date+Time": "1995-09-29T00:00:00Z", + "Hs (total) (m)": 2.1798, + "Tp (total) (s)": 12.9612 + }, + { + "Date+Time": "1995-09-30T00:00:00Z", + "Hs (total) (m)": 1.989, + "Tp (total) (s)": 11.5337 + }, + { + "Date+Time": "1995-10-01T00:00:00Z", + "Hs (total) (m)": 1.8906, + "Tp (total) (s)": 10.3305 + }, + { + "Date+Time": "1995-10-02T00:00:00Z", + "Hs (total) (m)": 2.3568, + "Tp (total) (s)": 9.0915 + }, + { + "Date+Time": "1995-10-03T00:00:00Z", + "Hs (total) (m)": 2.9481, + "Tp (total) (s)": 9.7781 + }, + { + "Date+Time": "1995-10-04T00:00:00Z", + "Hs (total) (m)": 3.4463, + "Tp (total) (s)": 13.8478 + }, + { + "Date+Time": "1995-10-05T00:00:00Z", + "Hs (total) (m)": 3.3189, + "Tp (total) (s)": 13.9637 + }, + { + "Date+Time": "1995-10-06T00:00:00Z", + "Hs (total) (m)": 2.826, + "Tp (total) (s)": 10.3259 + }, + { + "Date+Time": "1995-10-07T00:00:00Z", + "Hs (total) (m)": 2.8085, + "Tp (total) (s)": 9.9376 + }, + { + "Date+Time": "1995-10-08T00:00:00Z", + "Hs (total) (m)": 2.5613, + "Tp (total) (s)": 10.4373 + }, + { + "Date+Time": "1995-10-09T00:00:00Z", + "Hs (total) (m)": 3.2395, + "Tp (total) (s)": 11.343 + }, + { + "Date+Time": "1995-10-10T00:00:00Z", + "Hs (total) (m)": 3.1602, + "Tp (total) (s)": 12.5874 + }, + { + "Date+Time": "1995-10-11T00:00:00Z", + "Hs (total) (m)": 2.7345, + "Tp (total) (s)": 11.6565 + }, + { + "Date+Time": "1995-10-12T00:00:00Z", + "Hs (total) (m)": 2.636, + "Tp (total) (s)": 9.65 + }, + { + "Date+Time": "1995-10-13T00:00:00Z", + "Hs (total) (m)": 2.5163, + "Tp (total) (s)": 10.7265 + }, + { + "Date+Time": "1995-10-14T00:00:00Z", + "Hs (total) (m)": 2.2706, + "Tp (total) (s)": 11.4483 + }, + { + "Date+Time": "1995-10-15T00:00:00Z", + "Hs (total) (m)": 2.1546, + "Tp (total) (s)": 11.1202 + }, + { + "Date+Time": "1995-10-16T00:00:00Z", + "Hs (total) (m)": 1.9433, + "Tp (total) (s)": 10.4221 + }, + { + "Date+Time": "1995-10-17T00:00:00Z", + "Hs (total) (m)": 2.0447, + "Tp (total) (s)": 10.0856 + }, + { + "Date+Time": "1995-10-18T00:00:00Z", + "Hs (total) (m)": 1.9433, + "Tp (total) (s)": 10.197 + }, + { + "Date+Time": "1995-10-19T00:00:00Z", + "Hs (total) (m)": 1.9478, + "Tp (total) (s)": 12.4584 + }, + { + "Date+Time": "1995-10-20T00:00:00Z", + "Hs (total) (m)": 1.999, + "Tp (total) (s)": 12.3058 + }, + { + "Date+Time": "1995-10-21T00:00:00Z", + "Hs (total) (m)": 2.0806, + "Tp (total) (s)": 12.6179 + }, + { + "Date+Time": "1995-10-22T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 12.5332 + }, + { + "Date+Time": "1995-10-23T00:00:00Z", + "Hs (total) (m)": 1.7205, + "Tp (total) (s)": 11.1461 + }, + { + "Date+Time": "1995-10-24T00:00:00Z", + "Hs (total) (m)": 2.4384, + "Tp (total) (s)": 12.9719 + }, + { + "Date+Time": "1995-10-25T00:00:00Z", + "Hs (total) (m)": 2.6994, + "Tp (total) (s)": 12.7865 + }, + { + "Date+Time": "1995-10-26T00:00:00Z", + "Hs (total) (m)": 3.1999, + "Tp (total) (s)": 12.8529 + }, + { + "Date+Time": "1995-10-27T00:00:00Z", + "Hs (total) (m)": 3.3174, + "Tp (total) (s)": 11.4925 + }, + { + "Date+Time": "1995-10-28T00:00:00Z", + "Hs (total) (m)": 2.6086, + "Tp (total) (s)": 11.0553 + }, + { + "Date+Time": "1995-10-29T00:00:00Z", + "Hs (total) (m)": 1.8365, + "Tp (total) (s)": 10.3107 + }, + { + "Date+Time": "1995-10-30T00:00:00Z", + "Hs (total) (m)": 1.7373, + "Tp (total) (s)": 10.3298 + }, + { + "Date+Time": "1995-10-31T00:00:00Z", + "Hs (total) (m)": 1.8151, + "Tp (total) (s)": 10.5602 + }, + { + "Date+Time": "1995-11-01T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 9.7011 + }, + { + "Date+Time": "1995-11-02T00:00:00Z", + "Hs (total) (m)": 1.5488, + "Tp (total) (s)": 9.6042 + }, + { + "Date+Time": "1995-11-03T00:00:00Z", + "Hs (total) (m)": 1.2177, + "Tp (total) (s)": 9.4668 + }, + { + "Date+Time": "1995-11-04T00:00:00Z", + "Hs (total) (m)": 1.2535, + "Tp (total) (s)": 9.4592 + }, + { + "Date+Time": "1995-11-05T00:00:00Z", + "Hs (total) (m)": 1.867, + "Tp (total) (s)": 13.8241 + }, + { + "Date+Time": "1995-11-06T00:00:00Z", + "Hs (total) (m)": 2.4354, + "Tp (total) (s)": 12.5179 + }, + { + "Date+Time": "1995-11-07T00:00:00Z", + "Hs (total) (m)": 2.2271, + "Tp (total) (s)": 11.8198 + }, + { + "Date+Time": "1995-11-08T00:00:00Z", + "Hs (total) (m)": 1.6869, + "Tp (total) (s)": 11.153 + }, + { + "Date+Time": "1995-11-09T00:00:00Z", + "Hs (total) (m)": 1.3642, + "Tp (total) (s)": 9.756 + }, + { + "Date+Time": "1995-11-10T00:00:00Z", + "Hs (total) (m)": 1.2116, + "Tp (total) (s)": 8.8626 + }, + { + "Date+Time": "1995-11-11T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 12.4783 + }, + { + "Date+Time": "1995-11-12T00:00:00Z", + "Hs (total) (m)": 1.6106, + "Tp (total) (s)": 11.639 + }, + { + "Date+Time": "1995-11-13T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 11.4162 + }, + { + "Date+Time": "1995-11-14T00:00:00Z", + "Hs (total) (m)": 0.8904, + "Tp (total) (s)": 5.0478 + }, + { + "Date+Time": "1995-11-15T00:00:00Z", + "Hs (total) (m)": 1.268, + "Tp (total) (s)": 12.5401 + }, + { + "Date+Time": "1995-11-16T00:00:00Z", + "Hs (total) (m)": 1.5343, + "Tp (total) (s)": 11.5284 + }, + { + "Date+Time": "1995-11-17T00:00:00Z", + "Hs (total) (m)": 1.2436, + "Tp (total) (s)": 9.8598 + }, + { + "Date+Time": "1995-11-18T00:00:00Z", + "Hs (total) (m)": 0.9705, + "Tp (total) (s)": 9.7346 + }, + { + "Date+Time": "1995-11-19T00:00:00Z", + "Hs (total) (m)": 0.9339, + "Tp (total) (s)": 8.1507 + }, + { + "Date+Time": "1995-11-20T00:00:00Z", + "Hs (total) (m)": 1.458, + "Tp (total) (s)": 4.4465 + }, + { + "Date+Time": "1995-11-21T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 10.8509 + }, + { + "Date+Time": "1995-11-22T00:00:00Z", + "Hs (total) (m)": 1.751, + "Tp (total) (s)": 11.2163 + }, + { + "Date+Time": "1995-11-23T00:00:00Z", + "Hs (total) (m)": 1.8624, + "Tp (total) (s)": 10.3999 + }, + { + "Date+Time": "1995-11-24T00:00:00Z", + "Hs (total) (m)": 2.9603, + "Tp (total) (s)": 10.6105 + }, + { + "Date+Time": "1995-11-25T00:00:00Z", + "Hs (total) (m)": 3.0679, + "Tp (total) (s)": 11.2995 + }, + { + "Date+Time": "1995-11-26T00:00:00Z", + "Hs (total) (m)": 2.3789, + "Tp (total) (s)": 12.2379 + }, + { + "Date+Time": "1995-11-27T00:00:00Z", + "Hs (total) (m)": 1.8464, + "Tp (total) (s)": 13.5571 + }, + { + "Date+Time": "1995-11-28T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 13.0856 + }, + { + "Date+Time": "1995-11-29T00:00:00Z", + "Hs (total) (m)": 1.1605, + "Tp (total) (s)": 11.3033 + }, + { + "Date+Time": "1995-11-30T00:00:00Z", + "Hs (total) (m)": 1.323, + "Tp (total) (s)": 11.5192 + }, + { + "Date+Time": "1995-12-01T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 13.8241 + }, + { + "Date+Time": "1995-12-02T00:00:00Z", + "Hs (total) (m)": 1.4603, + "Tp (total) (s)": 12.6423 + }, + { + "Date+Time": "1995-12-03T00:00:00Z", + "Hs (total) (m)": 1.9501, + "Tp (total) (s)": 12.6583 + }, + { + "Date+Time": "1995-12-04T00:00:00Z", + "Hs (total) (m)": 2.4659, + "Tp (total) (s)": 14.0484 + }, + { + "Date+Time": "1995-12-05T00:00:00Z", + "Hs (total) (m)": 2.8436, + "Tp (total) (s)": 14.0759 + }, + { + "Date+Time": "1995-12-06T00:00:00Z", + "Hs (total) (m)": 2.723, + "Tp (total) (s)": 13.8455 + }, + { + "Date+Time": "1995-12-07T00:00:00Z", + "Hs (total) (m)": 2.5948, + "Tp (total) (s)": 14.1507 + }, + { + "Date+Time": "1995-12-08T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 14.2048 + }, + { + "Date+Time": "1995-12-09T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 13.9981 + }, + { + "Date+Time": "1995-12-10T00:00:00Z", + "Hs (total) (m)": 1.9417, + "Tp (total) (s)": 14.0759 + }, + { + "Date+Time": "1995-12-11T00:00:00Z", + "Hs (total) (m)": 2.1577, + "Tp (total) (s)": 14.1568 + }, + { + "Date+Time": "1995-12-12T00:00:00Z", + "Hs (total) (m)": 1.8151, + "Tp (total) (s)": 13.6692 + }, + { + "Date+Time": "1995-12-13T00:00:00Z", + "Hs (total) (m)": 1.7739, + "Tp (total) (s)": 12.9421 + }, + { + "Date+Time": "1995-12-14T00:00:00Z", + "Hs (total) (m)": 1.8303, + "Tp (total) (s)": 14.1537 + }, + { + "Date+Time": "1995-12-15T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 15.0227 + }, + { + "Date+Time": "1995-12-16T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 15.2066 + }, + { + "Date+Time": "1995-12-17T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 12.8071 + }, + { + "Date+Time": "1995-12-18T00:00:00Z", + "Hs (total) (m)": 0.6577, + "Tp (total) (s)": 11.8946 + }, + { + "Date+Time": "1995-12-19T00:00:00Z", + "Hs (total) (m)": 1.0437, + "Tp (total) (s)": 12.8529 + }, + { + "Date+Time": "1995-12-20T00:00:00Z", + "Hs (total) (m)": 1.31, + "Tp (total) (s)": 5.2995 + }, + { + "Date+Time": "1995-12-21T00:00:00Z", + "Hs (total) (m)": 1.7365, + "Tp (total) (s)": 18.9077 + }, + { + "Date+Time": "1995-12-22T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 17.0644 + }, + { + "Date+Time": "1995-12-23T00:00:00Z", + "Hs (total) (m)": 2.3194, + "Tp (total) (s)": 15.7308 + }, + { + "Date+Time": "1995-12-24T00:00:00Z", + "Hs (total) (m)": 2.0722, + "Tp (total) (s)": 14.4147 + }, + { + "Date+Time": "1995-12-25T00:00:00Z", + "Hs (total) (m)": 1.677, + "Tp (total) (s)": 12.4104 + }, + { + "Date+Time": "1995-12-26T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 11.6794 + }, + { + "Date+Time": "1995-12-27T00:00:00Z", + "Hs (total) (m)": 0.8461, + "Tp (total) (s)": 10.5922 + }, + { + "Date+Time": "1995-12-28T00:00:00Z", + "Hs (total) (m)": 1.8738, + "Tp (total) (s)": 14.3147 + }, + { + "Date+Time": "1995-12-29T00:00:00Z", + "Hs (total) (m)": 1.8242, + "Tp (total) (s)": 14.3307 + }, + { + "Date+Time": "1995-12-30T00:00:00Z", + "Hs (total) (m)": 2.3423, + "Tp (total) (s)": 13.7783 + }, + { + "Date+Time": "1995-12-31T00:00:00Z", + "Hs (total) (m)": 1.7029, + "Tp (total) (s)": 13.818 + }, + { + "Date+Time": "1996-01-01T00:00:00Z", + "Hs (total) (m)": 2.6727, + "Tp (total) (s)": 15.5843 + }, + { + "Date+Time": "1996-01-02T00:00:00Z", + "Hs (total) (m)": 2.8085, + "Tp (total) (s)": 15.5271 + }, + { + "Date+Time": "1996-01-03T00:00:00Z", + "Hs (total) (m)": 3.0503, + "Tp (total) (s)": 15.3462 + }, + { + "Date+Time": "1996-01-04T00:00:00Z", + "Hs (total) (m)": 3.003, + "Tp (total) (s)": 11.8542 + }, + { + "Date+Time": "1996-01-05T00:00:00Z", + "Hs (total) (m)": 2.5788, + "Tp (total) (s)": 11.5413 + }, + { + "Date+Time": "1996-01-06T00:00:00Z", + "Hs (total) (m)": 2.459, + "Tp (total) (s)": 11.6024 + }, + { + "Date+Time": "1996-01-07T00:00:00Z", + "Hs (total) (m)": 3.1541, + "Tp (total) (s)": 12.6064 + }, + { + "Date+Time": "1996-01-08T00:00:00Z", + "Hs (total) (m)": 3.9644, + "Tp (total) (s)": 13.9973 + }, + { + "Date+Time": "1996-01-09T00:00:00Z", + "Hs (total) (m)": 4.3771, + "Tp (total) (s)": 14.0057 + }, + { + "Date+Time": "1996-01-10T00:00:00Z", + "Hs (total) (m)": 4.0994, + "Tp (total) (s)": 13.5273 + }, + { + "Date+Time": "1996-01-11T00:00:00Z", + "Hs (total) (m)": 3.5142, + "Tp (total) (s)": 13.8455 + }, + { + "Date+Time": "1996-01-12T00:00:00Z", + "Hs (total) (m)": 3.106, + "Tp (total) (s)": 13.9302 + }, + { + "Date+Time": "1996-01-13T00:00:00Z", + "Hs (total) (m)": 3.1098, + "Tp (total) (s)": 18.6529 + }, + { + "Date+Time": "1996-01-14T00:00:00Z", + "Hs (total) (m)": 3.8026, + "Tp (total) (s)": 18.3203 + }, + { + "Date+Time": "1996-01-15T00:00:00Z", + "Hs (total) (m)": 3.7889, + "Tp (total) (s)": 17.8716 + }, + { + "Date+Time": "1996-01-16T00:00:00Z", + "Hs (total) (m)": 3.2838, + "Tp (total) (s)": 16.702 + }, + { + "Date+Time": "1996-01-17T00:00:00Z", + "Hs (total) (m)": 2.6528, + "Tp (total) (s)": 16.792 + }, + { + "Date+Time": "1996-01-18T00:00:00Z", + "Hs (total) (m)": 2.7093, + "Tp (total) (s)": 14.1133 + }, + { + "Date+Time": "1996-01-19T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 13.7036 + }, + { + "Date+Time": "1996-01-20T00:00:00Z", + "Hs (total) (m)": 2.5872, + "Tp (total) (s)": 13.8493 + }, + { + "Date+Time": "1996-01-21T00:00:00Z", + "Hs (total) (m)": 2.9641, + "Tp (total) (s)": 15.2219 + }, + { + "Date+Time": "1996-01-22T00:00:00Z", + "Hs (total) (m)": 2.8977, + "Tp (total) (s)": 15.4141 + }, + { + "Date+Time": "1996-01-23T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 14.2094 + }, + { + "Date+Time": "1996-01-24T00:00:00Z", + "Hs (total) (m)": 0.9468, + "Tp (total) (s)": 12.2105 + }, + { + "Date+Time": "1996-01-25T00:00:00Z", + "Hs (total) (m)": 0.5898, + "Tp (total) (s)": 2.9572 + }, + { + "Date+Time": "1996-01-26T00:00:00Z", + "Hs (total) (m)": 1.22, + "Tp (total) (s)": 14.729 + }, + { + "Date+Time": "1996-01-27T00:00:00Z", + "Hs (total) (m)": 0.8515, + "Tp (total) (s)": 3.3204 + }, + { + "Date+Time": "1996-01-28T00:00:00Z", + "Hs (total) (m)": 0.8667, + "Tp (total) (s)": 3.8728 + }, + { + "Date+Time": "1996-01-29T00:00:00Z", + "Hs (total) (m)": 0.9728, + "Tp (total) (s)": 4.7418 + }, + { + "Date+Time": "1996-01-30T00:00:00Z", + "Hs (total) (m)": 0.5074, + "Tp (total) (s)": 2.723 + }, + { + "Date+Time": "1996-01-31T00:00:00Z", + "Hs (total) (m)": 0.3327, + "Tp (total) (s)": 2.282 + }, + { + "Date+Time": "1996-02-01T00:00:00Z", + "Hs (total) (m)": 0.4975, + "Tp (total) (s)": 2.7337 + }, + { + "Date+Time": "1996-02-02T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 10.86 + }, + { + "Date+Time": "1996-02-03T00:00:00Z", + "Hs (total) (m)": 0.7225, + "Tp (total) (s)": 10.2809 + }, + { + "Date+Time": "1996-02-04T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 10.5007 + }, + { + "Date+Time": "1996-02-05T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 7.1955 + }, + { + "Date+Time": "1996-02-06T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 8.1683 + }, + { + "Date+Time": "1996-02-07T00:00:00Z", + "Hs (total) (m)": 2.0211, + "Tp (total) (s)": 12.5492 + }, + { + "Date+Time": "1996-02-08T00:00:00Z", + "Hs (total) (m)": 2.4369, + "Tp (total) (s)": 12.0617 + }, + { + "Date+Time": "1996-02-09T00:00:00Z", + "Hs (total) (m)": 2.8932, + "Tp (total) (s)": 11.9686 + }, + { + "Date+Time": "1996-02-10T00:00:00Z", + "Hs (total) (m)": 4.7113, + "Tp (total) (s)": 14.9548 + }, + { + "Date+Time": "1996-02-11T00:00:00Z", + "Hs (total) (m)": 5.5002, + "Tp (total) (s)": 16.4812 + }, + { + "Date+Time": "1996-02-12T00:00:00Z", + "Hs (total) (m)": 5.0704, + "Tp (total) (s)": 16.2573 + }, + { + "Date+Time": "1996-02-13T00:00:00Z", + "Hs (total) (m)": 3.6546, + "Tp (total) (s)": 13.6006 + }, + { + "Date+Time": "1996-02-14T00:00:00Z", + "Hs (total) (m)": 2.3362, + "Tp (total) (s)": 10.6037 + }, + { + "Date+Time": "1996-02-15T00:00:00Z", + "Hs (total) (m)": 2.1905, + "Tp (total) (s)": 10.1123 + }, + { + "Date+Time": "1996-02-16T00:00:00Z", + "Hs (total) (m)": 1.7205, + "Tp (total) (s)": 13.4136 + }, + { + "Date+Time": "1996-02-17T00:00:00Z", + "Hs (total) (m)": 1.8151, + "Tp (total) (s)": 11.8168 + }, + { + "Date+Time": "1996-02-18T00:00:00Z", + "Hs (total) (m)": 2.3118, + "Tp (total) (s)": 11.5467 + }, + { + "Date+Time": "1996-02-19T00:00:00Z", + "Hs (total) (m)": 3.383, + "Tp (total) (s)": 15.3256 + }, + { + "Date+Time": "1996-02-20T00:00:00Z", + "Hs (total) (m)": 3.5081, + "Tp (total) (s)": 13.8707 + }, + { + "Date+Time": "1996-02-21T00:00:00Z", + "Hs (total) (m)": 1.6335, + "Tp (total) (s)": 13.7967 + }, + { + "Date+Time": "1996-02-22T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 10.8127 + }, + { + "Date+Time": "1996-02-23T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 9.695 + }, + { + "Date+Time": "1996-02-24T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 15.5545 + }, + { + "Date+Time": "1996-02-25T00:00:00Z", + "Hs (total) (m)": 2.6269, + "Tp (total) (s)": 14.3948 + }, + { + "Date+Time": "1996-02-26T00:00:00Z", + "Hs (total) (m)": 2.9664, + "Tp (total) (s)": 14.1354 + }, + { + "Date+Time": "1996-02-27T00:00:00Z", + "Hs (total) (m)": 2.8077, + "Tp (total) (s)": 14.1202 + }, + { + "Date+Time": "1996-02-28T00:00:00Z", + "Hs (total) (m)": 2.311, + "Tp (total) (s)": 13.8813 + }, + { + "Date+Time": "1996-02-29T00:00:00Z", + "Hs (total) (m)": 1.7739, + "Tp (total) (s)": 12.5149 + }, + { + "Date+Time": "1996-03-01T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 10.9348 + }, + { + "Date+Time": "1996-03-02T00:00:00Z", + "Hs (total) (m)": 1.1536, + "Tp (total) (s)": 10.255 + }, + { + "Date+Time": "1996-03-03T00:00:00Z", + "Hs (total) (m)": 1.0857, + "Tp (total) (s)": 10.6052 + }, + { + "Date+Time": "1996-03-04T00:00:00Z", + "Hs (total) (m)": 1.1078, + "Tp (total) (s)": 13.9386 + }, + { + "Date+Time": "1996-03-05T00:00:00Z", + "Hs (total) (m)": 0.9308, + "Tp (total) (s)": 13.6853 + }, + { + "Date+Time": "1996-03-06T00:00:00Z", + "Hs (total) (m)": 0.6623, + "Tp (total) (s)": 13.4106 + }, + { + "Date+Time": "1996-03-07T00:00:00Z", + "Hs (total) (m)": 0.8103, + "Tp (total) (s)": 12.4386 + }, + { + "Date+Time": "1996-03-08T00:00:00Z", + "Hs (total) (m)": 1.0903, + "Tp (total) (s)": 11.52 + }, + { + "Date+Time": "1996-03-09T00:00:00Z", + "Hs (total) (m)": 1.2986, + "Tp (total) (s)": 14.3811 + }, + { + "Date+Time": "1996-03-10T00:00:00Z", + "Hs (total) (m)": 1.8227, + "Tp (total) (s)": 13.8798 + }, + { + "Date+Time": "1996-03-11T00:00:00Z", + "Hs (total) (m)": 1.925, + "Tp (total) (s)": 13.1748 + }, + { + "Date+Time": "1996-03-12T00:00:00Z", + "Hs (total) (m)": 1.9822, + "Tp (total) (s)": 12.4241 + }, + { + "Date+Time": "1996-03-13T00:00:00Z", + "Hs (total) (m)": 2.3034, + "Tp (total) (s)": 17.2613 + }, + { + "Date+Time": "1996-03-14T00:00:00Z", + "Hs (total) (m)": 3.0038, + "Tp (total) (s)": 17.0598 + }, + { + "Date+Time": "1996-03-15T00:00:00Z", + "Hs (total) (m)": 3.077, + "Tp (total) (s)": 14.9625 + }, + { + "Date+Time": "1996-03-16T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 14.2514 + }, + { + "Date+Time": "1996-03-17T00:00:00Z", + "Hs (total) (m)": 2.2691, + "Tp (total) (s)": 14.0896 + }, + { + "Date+Time": "1996-03-18T00:00:00Z", + "Hs (total) (m)": 2.1783, + "Tp (total) (s)": 14.771 + }, + { + "Date+Time": "1996-03-19T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 12.4752 + }, + { + "Date+Time": "1996-03-20T00:00:00Z", + "Hs (total) (m)": 1.3901, + "Tp (total) (s)": 10.0398 + }, + { + "Date+Time": "1996-03-21T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 7.9585 + }, + { + "Date+Time": "1996-03-22T00:00:00Z", + "Hs (total) (m)": 0.483, + "Tp (total) (s)": 11.6039 + }, + { + "Date+Time": "1996-03-23T00:00:00Z", + "Hs (total) (m)": 0.4334, + "Tp (total) (s)": 12.6377 + }, + { + "Date+Time": "1996-03-24T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 9.7339 + }, + { + "Date+Time": "1996-03-25T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 10.1276 + }, + { + "Date+Time": "1996-03-26T00:00:00Z", + "Hs (total) (m)": 0.8545, + "Tp (total) (s)": 11.3552 + }, + { + "Date+Time": "1996-03-27T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 3.5035 + }, + { + "Date+Time": "1996-03-28T00:00:00Z", + "Hs (total) (m)": 0.2106, + "Tp (total) (s)": 10.7456 + }, + { + "Date+Time": "1996-03-29T00:00:00Z", + "Hs (total) (m)": 0.4715, + "Tp (total) (s)": 10.3412 + }, + { + "Date+Time": "1996-03-30T00:00:00Z", + "Hs (total) (m)": 0.5768, + "Tp (total) (s)": 10.3107 + }, + { + "Date+Time": "1996-03-31T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 10.1947 + }, + { + "Date+Time": "1996-04-01T00:00:00Z", + "Hs (total) (m)": 1.0613, + "Tp (total) (s)": 10.7898 + }, + { + "Date+Time": "1996-04-02T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 12.6949 + }, + { + "Date+Time": "1996-04-03T00:00:00Z", + "Hs (total) (m)": 1.149, + "Tp (total) (s)": 13.1596 + }, + { + "Date+Time": "1996-04-04T00:00:00Z", + "Hs (total) (m)": 1.7144, + "Tp (total) (s)": 12.7865 + }, + { + "Date+Time": "1996-04-05T00:00:00Z", + "Hs (total) (m)": 2.0997, + "Tp (total) (s)": 11.5368 + }, + { + "Date+Time": "1996-04-06T00:00:00Z", + "Hs (total) (m)": 2.0241, + "Tp (total) (s)": 12.3356 + }, + { + "Date+Time": "1996-04-07T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 12.579 + }, + { + "Date+Time": "1996-04-08T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 12.431 + }, + { + "Date+Time": "1996-04-09T00:00:00Z", + "Hs (total) (m)": 1.6747, + "Tp (total) (s)": 11.2224 + }, + { + "Date+Time": "1996-04-10T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 12.4943 + }, + { + "Date+Time": "1996-04-11T00:00:00Z", + "Hs (total) (m)": 2.3225, + "Tp (total) (s)": 12.5034 + }, + { + "Date+Time": "1996-04-12T00:00:00Z", + "Hs (total) (m)": 2.1302, + "Tp (total) (s)": 12.1113 + }, + { + "Date+Time": "1996-04-13T00:00:00Z", + "Hs (total) (m)": 1.4367, + "Tp (total) (s)": 10.7624 + }, + { + "Date+Time": "1996-04-14T00:00:00Z", + "Hs (total) (m)": 1.5603, + "Tp (total) (s)": 8.7634 + }, + { + "Date+Time": "1996-04-15T00:00:00Z", + "Hs (total) (m)": 1.6976, + "Tp (total) (s)": 9.2868 + }, + { + "Date+Time": "1996-04-16T00:00:00Z", + "Hs (total) (m)": 2.102, + "Tp (total) (s)": 10.2412 + }, + { + "Date+Time": "1996-04-17T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 12.9589 + }, + { + "Date+Time": "1996-04-18T00:00:00Z", + "Hs (total) (m)": 2.5788, + "Tp (total) (s)": 12.8162 + }, + { + "Date+Time": "1996-04-19T00:00:00Z", + "Hs (total) (m)": 3.1793, + "Tp (total) (s)": 12.2036 + }, + { + "Date+Time": "1996-04-20T00:00:00Z", + "Hs (total) (m)": 3.0671, + "Tp (total) (s)": 11.2346 + }, + { + "Date+Time": "1996-04-21T00:00:00Z", + "Hs (total) (m)": 2.1638, + "Tp (total) (s)": 10.3206 + }, + { + "Date+Time": "1996-04-22T00:00:00Z", + "Hs (total) (m)": 1.5069, + "Tp (total) (s)": 10.126 + }, + { + "Date+Time": "1996-04-23T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 6.5088 + }, + { + "Date+Time": "1996-04-24T00:00:00Z", + "Hs (total) (m)": 1.4779, + "Tp (total) (s)": 7.1192 + }, + { + "Date+Time": "1996-04-25T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 9.1945 + }, + { + "Date+Time": "1996-04-26T00:00:00Z", + "Hs (total) (m)": 1.587, + "Tp (total) (s)": 7.075 + }, + { + "Date+Time": "1996-04-27T00:00:00Z", + "Hs (total) (m)": 1.5175, + "Tp (total) (s)": 11.2362 + }, + { + "Date+Time": "1996-04-28T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 7.9958 + }, + { + "Date+Time": "1996-04-29T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 8.3201 + }, + { + "Date+Time": "1996-04-30T00:00:00Z", + "Hs (total) (m)": 1.371, + "Tp (total) (s)": 9.3493 + }, + { + "Date+Time": "1996-05-01T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 9.9765 + }, + { + "Date+Time": "1996-05-02T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 10.0154 + }, + { + "Date+Time": "1996-05-03T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 9.5851 + }, + { + "Date+Time": "1996-05-04T00:00:00Z", + "Hs (total) (m)": 0.6119, + "Tp (total) (s)": 7.2214 + }, + { + "Date+Time": "1996-05-05T00:00:00Z", + "Hs (total) (m)": 0.4456, + "Tp (total) (s)": 9.138 + }, + { + "Date+Time": "1996-05-06T00:00:00Z", + "Hs (total) (m)": 0.277, + "Tp (total) (s)": 2.1706 + }, + { + "Date+Time": "1996-05-07T00:00:00Z", + "Hs (total) (m)": 0.4852, + "Tp (total) (s)": 10.2855 + }, + { + "Date+Time": "1996-05-08T00:00:00Z", + "Hs (total) (m)": 0.6729, + "Tp (total) (s)": 9.415 + }, + { + "Date+Time": "1996-05-09T00:00:00Z", + "Hs (total) (m)": 0.6508, + "Tp (total) (s)": 7.1146 + }, + { + "Date+Time": "1996-05-10T00:00:00Z", + "Hs (total) (m)": 0.5654, + "Tp (total) (s)": 2.53 + }, + { + "Date+Time": "1996-05-11T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 12.8933 + }, + { + "Date+Time": "1996-05-12T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 12.8201 + }, + { + "Date+Time": "1996-05-13T00:00:00Z", + "Hs (total) (m)": 1.355, + "Tp (total) (s)": 12.6232 + }, + { + "Date+Time": "1996-05-14T00:00:00Z", + "Hs (total) (m)": 1.6724, + "Tp (total) (s)": 12.3066 + }, + { + "Date+Time": "1996-05-15T00:00:00Z", + "Hs (total) (m)": 1.474, + "Tp (total) (s)": 11.7695 + }, + { + "Date+Time": "1996-05-16T00:00:00Z", + "Hs (total) (m)": 1.2642, + "Tp (total) (s)": 11.5253 + }, + { + "Date+Time": "1996-05-17T00:00:00Z", + "Hs (total) (m)": 0.9697, + "Tp (total) (s)": 10.4495 + }, + { + "Date+Time": "1996-05-18T00:00:00Z", + "Hs (total) (m)": 0.7218, + "Tp (total) (s)": 9.5592 + }, + { + "Date+Time": "1996-05-19T00:00:00Z", + "Hs (total) (m)": 0.5135, + "Tp (total) (s)": 11.3422 + }, + { + "Date+Time": "1996-05-20T00:00:00Z", + "Hs (total) (m)": 0.5684, + "Tp (total) (s)": 2.7787 + }, + { + "Date+Time": "1996-05-21T00:00:00Z", + "Hs (total) (m)": 0.7385, + "Tp (total) (s)": 2.8802 + }, + { + "Date+Time": "1996-05-22T00:00:00Z", + "Hs (total) (m)": 1.3054, + "Tp (total) (s)": 3.9727 + }, + { + "Date+Time": "1996-05-23T00:00:00Z", + "Hs (total) (m)": 1.8792, + "Tp (total) (s)": 8.4971 + }, + { + "Date+Time": "1996-05-24T00:00:00Z", + "Hs (total) (m)": 2.1264, + "Tp (total) (s)": 8.6703 + }, + { + "Date+Time": "1996-05-25T00:00:00Z", + "Hs (total) (m)": 2.2645, + "Tp (total) (s)": 9.1395 + }, + { + "Date+Time": "1996-05-26T00:00:00Z", + "Hs (total) (m)": 1.97, + "Tp (total) (s)": 11.2949 + }, + { + "Date+Time": "1996-05-27T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 8.8748 + }, + { + "Date+Time": "1996-05-28T00:00:00Z", + "Hs (total) (m)": 1.8242, + "Tp (total) (s)": 8.8107 + }, + { + "Date+Time": "1996-05-29T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 11.214 + }, + { + "Date+Time": "1996-05-30T00:00:00Z", + "Hs (total) (m)": 2.0051, + "Tp (total) (s)": 11.2598 + }, + { + "Date+Time": "1996-05-31T00:00:00Z", + "Hs (total) (m)": 2.5712, + "Tp (total) (s)": 11.7321 + }, + { + "Date+Time": "1996-06-01T00:00:00Z", + "Hs (total) (m)": 3.1503, + "Tp (total) (s)": 10.6578 + }, + { + "Date+Time": "1996-06-02T00:00:00Z", + "Hs (total) (m)": 2.9901, + "Tp (total) (s)": 11.0988 + }, + { + "Date+Time": "1996-06-03T00:00:00Z", + "Hs (total) (m)": 2.43, + "Tp (total) (s)": 11.3681 + }, + { + "Date+Time": "1996-06-04T00:00:00Z", + "Hs (total) (m)": 2.1439, + "Tp (total) (s)": 10.4465 + }, + { + "Date+Time": "1996-06-05T00:00:00Z", + "Hs (total) (m)": 2.3339, + "Tp (total) (s)": 9.405 + }, + { + "Date+Time": "1996-06-06T00:00:00Z", + "Hs (total) (m)": 2.974, + "Tp (total) (s)": 12.5248 + }, + { + "Date+Time": "1996-06-07T00:00:00Z", + "Hs (total) (m)": 2.6322, + "Tp (total) (s)": 12.3997 + }, + { + "Date+Time": "1996-06-08T00:00:00Z", + "Hs (total) (m)": 2.2294, + "Tp (total) (s)": 10.0009 + }, + { + "Date+Time": "1996-06-09T00:00:00Z", + "Hs (total) (m)": 2.4689, + "Tp (total) (s)": 11.359 + }, + { + "Date+Time": "1996-06-10T00:00:00Z", + "Hs (total) (m)": 2.5117, + "Tp (total) (s)": 11.2247 + }, + { + "Date+Time": "1996-06-11T00:00:00Z", + "Hs (total) (m)": 2.1493, + "Tp (total) (s)": 10.8402 + }, + { + "Date+Time": "1996-06-12T00:00:00Z", + "Hs (total) (m)": 1.9349, + "Tp (total) (s)": 10.5464 + }, + { + "Date+Time": "1996-06-13T00:00:00Z", + "Hs (total) (m)": 1.7335, + "Tp (total) (s)": 10.4274 + }, + { + "Date+Time": "1996-06-14T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 9.3745 + }, + { + "Date+Time": "1996-06-15T00:00:00Z", + "Hs (total) (m)": 1.1597, + "Tp (total) (s)": 7.5159 + }, + { + "Date+Time": "1996-06-16T00:00:00Z", + "Hs (total) (m)": 1.1109, + "Tp (total) (s)": 7.3756 + }, + { + "Date+Time": "1996-06-17T00:00:00Z", + "Hs (total) (m)": 0.9186, + "Tp (total) (s)": 9.2898 + }, + { + "Date+Time": "1996-06-18T00:00:00Z", + "Hs (total) (m)": 0.9697, + "Tp (total) (s)": 9.0709 + }, + { + "Date+Time": "1996-06-19T00:00:00Z", + "Hs (total) (m)": 0.7523, + "Tp (total) (s)": 8.6825 + }, + { + "Date+Time": "1996-06-20T00:00:00Z", + "Hs (total) (m)": 0.6539, + "Tp (total) (s)": 8.3407 + }, + { + "Date+Time": "1996-06-21T00:00:00Z", + "Hs (total) (m)": 0.5257, + "Tp (total) (s)": 2.6772 + }, + { + "Date+Time": "1996-06-22T00:00:00Z", + "Hs (total) (m)": 0.4883, + "Tp (total) (s)": 2.7017 + }, + { + "Date+Time": "1996-06-23T00:00:00Z", + "Hs (total) (m)": 0.4265, + "Tp (total) (s)": 2.7505 + }, + { + "Date+Time": "1996-06-24T00:00:00Z", + "Hs (total) (m)": 0.4067, + "Tp (total) (s)": 5.9626 + }, + { + "Date+Time": "1996-06-25T00:00:00Z", + "Hs (total) (m)": 0.7416, + "Tp (total) (s)": 9.9849 + }, + { + "Date+Time": "1996-06-26T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 10.2985 + }, + { + "Date+Time": "1996-06-27T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 10.2588 + }, + { + "Date+Time": "1996-06-28T00:00:00Z", + "Hs (total) (m)": 1.5793, + "Tp (total) (s)": 10.184 + }, + { + "Date+Time": "1996-06-29T00:00:00Z", + "Hs (total) (m)": 1.5625, + "Tp (total) (s)": 9.9567 + }, + { + "Date+Time": "1996-06-30T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 8.1011 + }, + { + "Date+Time": "1996-07-01T00:00:00Z", + "Hs (total) (m)": 2.356, + "Tp (total) (s)": 9.5416 + }, + { + "Date+Time": "1996-07-02T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 10.7166 + }, + { + "Date+Time": "1996-07-03T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 6.5928 + }, + { + "Date+Time": "1996-07-04T00:00:00Z", + "Hs (total) (m)": 2.3934, + "Tp (total) (s)": 9.5889 + }, + { + "Date+Time": "1996-07-05T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 8.6879 + }, + { + "Date+Time": "1996-07-06T00:00:00Z", + "Hs (total) (m)": 1.0666, + "Tp (total) (s)": 8.7344 + }, + { + "Date+Time": "1996-07-07T00:00:00Z", + "Hs (total) (m)": 1.2345, + "Tp (total) (s)": 9.0388 + }, + { + "Date+Time": "1996-07-08T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 8.7649 + }, + { + "Date+Time": "1996-07-09T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 8.7474 + }, + { + "Date+Time": "1996-07-10T00:00:00Z", + "Hs (total) (m)": 1.0918, + "Tp (total) (s)": 7.8509 + }, + { + "Date+Time": "1996-07-11T00:00:00Z", + "Hs (total) (m)": 1.4161, + "Tp (total) (s)": 8.6909 + }, + { + "Date+Time": "1996-07-12T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 9.2738 + }, + { + "Date+Time": "1996-07-13T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 8.9045 + }, + { + "Date+Time": "1996-07-14T00:00:00Z", + "Hs (total) (m)": 1.3169, + "Tp (total) (s)": 8.5871 + }, + { + "Date+Time": "1996-07-15T00:00:00Z", + "Hs (total) (m)": 1.0826, + "Tp (total) (s)": 10.9485 + }, + { + "Date+Time": "1996-07-16T00:00:00Z", + "Hs (total) (m)": 0.8019, + "Tp (total) (s)": 8.9656 + }, + { + "Date+Time": "1996-07-17T00:00:00Z", + "Hs (total) (m)": 0.618, + "Tp (total) (s)": 7.7456 + }, + { + "Date+Time": "1996-07-18T00:00:00Z", + "Hs (total) (m)": 0.5425, + "Tp (total) (s)": 12.5896 + }, + { + "Date+Time": "1996-07-19T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 11.4795 + }, + { + "Date+Time": "1996-07-20T00:00:00Z", + "Hs (total) (m)": 0.9308, + "Tp (total) (s)": 10.9531 + }, + { + "Date+Time": "1996-07-21T00:00:00Z", + "Hs (total) (m)": 0.9629, + "Tp (total) (s)": 9.6156 + }, + { + "Date+Time": "1996-07-22T00:00:00Z", + "Hs (total) (m)": 1.3276, + "Tp (total) (s)": 8.6161 + }, + { + "Date+Time": "1996-07-23T00:00:00Z", + "Hs (total) (m)": 1.0338, + "Tp (total) (s)": 7.9272 + }, + { + "Date+Time": "1996-07-24T00:00:00Z", + "Hs (total) (m)": 1.0971, + "Tp (total) (s)": 8.4727 + }, + { + "Date+Time": "1996-07-25T00:00:00Z", + "Hs (total) (m)": 0.75, + "Tp (total) (s)": 7.8669 + }, + { + "Date+Time": "1996-07-26T00:00:00Z", + "Hs (total) (m)": 1.1414, + "Tp (total) (s)": 11.4406 + }, + { + "Date+Time": "1996-07-27T00:00:00Z", + "Hs (total) (m)": 1.2955, + "Tp (total) (s)": 10.8104 + }, + { + "Date+Time": "1996-07-28T00:00:00Z", + "Hs (total) (m)": 1.2139, + "Tp (total) (s)": 10.3801 + }, + { + "Date+Time": "1996-07-29T00:00:00Z", + "Hs (total) (m)": 1.2482, + "Tp (total) (s)": 8.7168 + }, + { + "Date+Time": "1996-07-30T00:00:00Z", + "Hs (total) (m)": 0.9354, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "1996-07-31T00:00:00Z", + "Hs (total) (m)": 1.783, + "Tp (total) (s)": 8.7168 + }, + { + "Date+Time": "1996-08-01T00:00:00Z", + "Hs (total) (m)": 2.2416, + "Tp (total) (s)": 12.2669 + }, + { + "Date+Time": "1996-08-02T00:00:00Z", + "Hs (total) (m)": 1.3489, + "Tp (total) (s)": 10.097 + }, + { + "Date+Time": "1996-08-03T00:00:00Z", + "Hs (total) (m)": 0.9026, + "Tp (total) (s)": 8.2247 + }, + { + "Date+Time": "1996-08-04T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 8.1797 + }, + { + "Date+Time": "1996-08-05T00:00:00Z", + "Hs (total) (m)": 1.632, + "Tp (total) (s)": 9.4844 + }, + { + "Date+Time": "1996-08-06T00:00:00Z", + "Hs (total) (m)": 1.5229, + "Tp (total) (s)": 8.6673 + }, + { + "Date+Time": "1996-08-07T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 9.4127 + }, + { + "Date+Time": "1996-08-08T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 8.7054 + }, + { + "Date+Time": "1996-08-09T00:00:00Z", + "Hs (total) (m)": 2.4796, + "Tp (total) (s)": 10.4938 + }, + { + "Date+Time": "1996-08-10T00:00:00Z", + "Hs (total) (m)": 2.5758, + "Tp (total) (s)": 10.4015 + }, + { + "Date+Time": "1996-08-11T00:00:00Z", + "Hs (total) (m)": 1.6449, + "Tp (total) (s)": 10.1085 + }, + { + "Date+Time": "1996-08-12T00:00:00Z", + "Hs (total) (m)": 0.8789, + "Tp (total) (s)": 8.269 + }, + { + "Date+Time": "1996-08-13T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 7.7738 + }, + { + "Date+Time": "1996-08-14T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 8.4376 + }, + { + "Date+Time": "1996-08-15T00:00:00Z", + "Hs (total) (m)": 0.689, + "Tp (total) (s)": 8.6955 + }, + { + "Date+Time": "1996-08-16T00:00:00Z", + "Hs (total) (m)": 0.9713, + "Tp (total) (s)": 7.2146 + }, + { + "Date+Time": "1996-08-17T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 9.7179 + }, + { + "Date+Time": "1996-08-18T00:00:00Z", + "Hs (total) (m)": 1.5725, + "Tp (total) (s)": 9.3554 + }, + { + "Date+Time": "1996-08-19T00:00:00Z", + "Hs (total) (m)": 1.9578, + "Tp (total) (s)": 12.6301 + }, + { + "Date+Time": "1996-08-20T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 10.4785 + }, + { + "Date+Time": "1996-08-21T00:00:00Z", + "Hs (total) (m)": 0.7935, + "Tp (total) (s)": 7.5747 + }, + { + "Date+Time": "1996-08-22T00:00:00Z", + "Hs (total) (m)": 0.689, + "Tp (total) (s)": 6.9399 + }, + { + "Date+Time": "1996-08-23T00:00:00Z", + "Hs (total) (m)": 1.4206, + "Tp (total) (s)": 7.6853 + }, + { + "Date+Time": "1996-08-24T00:00:00Z", + "Hs (total) (m)": 1.8082, + "Tp (total) (s)": 10.2252 + }, + { + "Date+Time": "1996-08-25T00:00:00Z", + "Hs (total) (m)": 1.6976, + "Tp (total) (s)": 8.0576 + }, + { + "Date+Time": "1996-08-26T00:00:00Z", + "Hs (total) (m)": 1.4496, + "Tp (total) (s)": 9.3776 + }, + { + "Date+Time": "1996-08-27T00:00:00Z", + "Hs (total) (m)": 0.8934, + "Tp (total) (s)": 9.6675 + }, + { + "Date+Time": "1996-08-28T00:00:00Z", + "Hs (total) (m)": 0.6096, + "Tp (total) (s)": 7.4076 + }, + { + "Date+Time": "1996-08-29T00:00:00Z", + "Hs (total) (m)": 0.4944, + "Tp (total) (s)": 7.8135 + }, + { + "Date+Time": "1996-08-30T00:00:00Z", + "Hs (total) (m)": 0.9171, + "Tp (total) (s)": 16.2763 + }, + { + "Date+Time": "1996-08-31T00:00:00Z", + "Hs (total) (m)": 0.8438, + "Tp (total) (s)": 10.6571 + }, + { + "Date+Time": "1996-09-01T00:00:00Z", + "Hs (total) (m)": 0.9674, + "Tp (total) (s)": 10.4213 + }, + { + "Date+Time": "1996-09-02T00:00:00Z", + "Hs (total) (m)": 1.1917, + "Tp (total) (s)": 10.9737 + }, + { + "Date+Time": "1996-09-03T00:00:00Z", + "Hs (total) (m)": 0.9613, + "Tp (total) (s)": 9.785 + }, + { + "Date+Time": "1996-09-04T00:00:00Z", + "Hs (total) (m)": 0.8133, + "Tp (total) (s)": 10.2573 + }, + { + "Date+Time": "1996-09-05T00:00:00Z", + "Hs (total) (m)": 0.7958, + "Tp (total) (s)": 9.4089 + }, + { + "Date+Time": "1996-09-06T00:00:00Z", + "Hs (total) (m)": 1.0895, + "Tp (total) (s)": 13.1069 + }, + { + "Date+Time": "1996-09-07T00:00:00Z", + "Hs (total) (m)": 1.1658, + "Tp (total) (s)": 12.157 + }, + { + "Date+Time": "1996-09-08T00:00:00Z", + "Hs (total) (m)": 0.8423, + "Tp (total) (s)": 9.8033 + }, + { + "Date+Time": "1996-09-09T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 11.6894 + }, + { + "Date+Time": "1996-09-10T00:00:00Z", + "Hs (total) (m)": 0.9209, + "Tp (total) (s)": 11.7664 + }, + { + "Date+Time": "1996-09-11T00:00:00Z", + "Hs (total) (m)": 0.5768, + "Tp (total) (s)": 5.3789 + }, + { + "Date+Time": "1996-09-12T00:00:00Z", + "Hs (total) (m)": 0.7355, + "Tp (total) (s)": 5.8878 + }, + { + "Date+Time": "1996-09-13T00:00:00Z", + "Hs (total) (m)": 0.5638, + "Tp (total) (s)": 8.6596 + }, + { + "Date+Time": "1996-09-14T00:00:00Z", + "Hs (total) (m)": 0.5188, + "Tp (total) (s)": 8.6772 + }, + { + "Date+Time": "1996-09-15T00:00:00Z", + "Hs (total) (m)": 0.8751, + "Tp (total) (s)": 8.3674 + }, + { + "Date+Time": "1996-09-16T00:00:00Z", + "Hs (total) (m)": 1.8509, + "Tp (total) (s)": 13.0261 + }, + { + "Date+Time": "1996-09-17T00:00:00Z", + "Hs (total) (m)": 2.0829, + "Tp (total) (s)": 12.3768 + }, + { + "Date+Time": "1996-09-18T00:00:00Z", + "Hs (total) (m)": 2.2103, + "Tp (total) (s)": 10.4785 + }, + { + "Date+Time": "1996-09-19T00:00:00Z", + "Hs (total) (m)": 1.6526, + "Tp (total) (s)": 9.4813 + }, + { + "Date+Time": "1996-09-20T00:00:00Z", + "Hs (total) (m)": 1.0811, + "Tp (total) (s)": 11.3475 + }, + { + "Date+Time": "1996-09-21T00:00:00Z", + "Hs (total) (m)": 1.1315, + "Tp (total) (s)": 12.0899 + }, + { + "Date+Time": "1996-09-22T00:00:00Z", + "Hs (total) (m)": 0.9011, + "Tp (total) (s)": 9.5485 + }, + { + "Date+Time": "1996-09-23T00:00:00Z", + "Hs (total) (m)": 1.1513, + "Tp (total) (s)": 9.4958 + }, + { + "Date+Time": "1996-09-24T00:00:00Z", + "Hs (total) (m)": 2.1851, + "Tp (total) (s)": 12.8956 + }, + { + "Date+Time": "1996-09-25T00:00:00Z", + "Hs (total) (m)": 2.649, + "Tp (total) (s)": 11.4719 + }, + { + "Date+Time": "1996-09-26T00:00:00Z", + "Hs (total) (m)": 2.0356, + "Tp (total) (s)": 10.8814 + }, + { + "Date+Time": "1996-09-27T00:00:00Z", + "Hs (total) (m)": 3.103, + "Tp (total) (s)": 10.5396 + }, + { + "Date+Time": "1996-09-28T00:00:00Z", + "Hs (total) (m)": 3.7263, + "Tp (total) (s)": 13.638 + }, + { + "Date+Time": "1996-09-29T00:00:00Z", + "Hs (total) (m)": 3.7446, + "Tp (total) (s)": 12.9086 + }, + { + "Date+Time": "1996-09-30T00:00:00Z", + "Hs (total) (m)": 2.7314, + "Tp (total) (s)": 10.992 + }, + { + "Date+Time": "1996-10-01T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 10.474 + }, + { + "Date+Time": "1996-10-02T00:00:00Z", + "Hs (total) (m)": 1.8273, + "Tp (total) (s)": 9.5012 + }, + { + "Date+Time": "1996-10-03T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 10.2641 + }, + { + "Date+Time": "1996-10-04T00:00:00Z", + "Hs (total) (m)": 3.2975, + "Tp (total) (s)": 11.0828 + }, + { + "Date+Time": "1996-10-05T00:00:00Z", + "Hs (total) (m)": 3.56, + "Tp (total) (s)": 14.7618 + }, + { + "Date+Time": "1996-10-06T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 11.4238 + }, + { + "Date+Time": "1996-10-07T00:00:00Z", + "Hs (total) (m)": 2.031, + "Tp (total) (s)": 9.9635 + }, + { + "Date+Time": "1996-10-08T00:00:00Z", + "Hs (total) (m)": 2.3293, + "Tp (total) (s)": 11.9465 + }, + { + "Date+Time": "1996-10-09T00:00:00Z", + "Hs (total) (m)": 1.9646, + "Tp (total) (s)": 12.3234 + }, + { + "Date+Time": "1996-10-10T00:00:00Z", + "Hs (total) (m)": 2.073, + "Tp (total) (s)": 15.1135 + }, + { + "Date+Time": "1996-10-11T00:00:00Z", + "Hs (total) (m)": 2.0219, + "Tp (total) (s)": 12.7689 + }, + { + "Date+Time": "1996-10-12T00:00:00Z", + "Hs (total) (m)": 3.6088, + "Tp (total) (s)": 11.082 + }, + { + "Date+Time": "1996-10-13T00:00:00Z", + "Hs (total) (m)": 2.3171, + "Tp (total) (s)": 10.754 + }, + { + "Date+Time": "1996-10-14T00:00:00Z", + "Hs (total) (m)": 2.7947, + "Tp (total) (s)": 12.7308 + }, + { + "Date+Time": "1996-10-15T00:00:00Z", + "Hs (total) (m)": 2.0005, + "Tp (total) (s)": 10.873 + }, + { + "Date+Time": "1996-10-16T00:00:00Z", + "Hs (total) (m)": 4.3237, + "Tp (total) (s)": 12.5736 + }, + { + "Date+Time": "1996-10-17T00:00:00Z", + "Hs (total) (m)": 2.3247, + "Tp (total) (s)": 12.7796 + }, + { + "Date+Time": "1996-10-18T00:00:00Z", + "Hs (total) (m)": 2.5979, + "Tp (total) (s)": 10.7067 + }, + { + "Date+Time": "1996-10-19T00:00:00Z", + "Hs (total) (m)": 3.6569, + "Tp (total) (s)": 11.1744 + }, + { + "Date+Time": "1996-10-20T00:00:00Z", + "Hs (total) (m)": 2.5796, + "Tp (total) (s)": 12.5828 + }, + { + "Date+Time": "1996-10-21T00:00:00Z", + "Hs (total) (m)": 2.6925, + "Tp (total) (s)": 11.7069 + }, + { + "Date+Time": "1996-10-22T00:00:00Z", + "Hs (total) (m)": 1.9608, + "Tp (total) (s)": 10.7761 + }, + { + "Date+Time": "1996-10-23T00:00:00Z", + "Hs (total) (m)": 2.3942, + "Tp (total) (s)": 9.6187 + }, + { + "Date+Time": "1996-10-24T00:00:00Z", + "Hs (total) (m)": 3.6973, + "Tp (total) (s)": 14.198 + }, + { + "Date+Time": "1996-10-25T00:00:00Z", + "Hs (total) (m)": 2.1912, + "Tp (total) (s)": 10.921 + }, + { + "Date+Time": "1996-10-26T00:00:00Z", + "Hs (total) (m)": 2.1348, + "Tp (total) (s)": 9.3204 + }, + { + "Date+Time": "1996-10-27T00:00:00Z", + "Hs (total) (m)": 3.338, + "Tp (total) (s)": 9.1525 + }, + { + "Date+Time": "1996-10-28T00:00:00Z", + "Hs (total) (m)": 2.5689, + "Tp (total) (s)": 11.4429 + }, + { + "Date+Time": "1996-10-29T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 11.5886 + }, + { + "Date+Time": "1996-10-30T00:00:00Z", + "Hs (total) (m)": 1.4832, + "Tp (total) (s)": 11.6794 + }, + { + "Date+Time": "1996-10-31T00:00:00Z", + "Hs (total) (m)": 1.8006, + "Tp (total) (s)": 6.869 + }, + { + "Date+Time": "1996-11-01T00:00:00Z", + "Hs (total) (m)": 2.5269, + "Tp (total) (s)": 9.3394 + }, + { + "Date+Time": "1996-11-02T00:00:00Z", + "Hs (total) (m)": 2.8733, + "Tp (total) (s)": 8.6863 + }, + { + "Date+Time": "1996-11-03T00:00:00Z", + "Hs (total) (m)": 3.2067, + "Tp (total) (s)": 11.2476 + }, + { + "Date+Time": "1996-11-04T00:00:00Z", + "Hs (total) (m)": 3.3723, + "Tp (total) (s)": 11.3529 + }, + { + "Date+Time": "1996-11-05T00:00:00Z", + "Hs (total) (m)": 4.6854, + "Tp (total) (s)": 12.5164 + }, + { + "Date+Time": "1996-11-06T00:00:00Z", + "Hs (total) (m)": 4.2581, + "Tp (total) (s)": 10.0391 + }, + { + "Date+Time": "1996-11-07T00:00:00Z", + "Hs (total) (m)": 4.0033, + "Tp (total) (s)": 12.7407 + }, + { + "Date+Time": "1996-11-08T00:00:00Z", + "Hs (total) (m)": 2.9084, + "Tp (total) (s)": 14.3468 + }, + { + "Date+Time": "1996-11-09T00:00:00Z", + "Hs (total) (m)": 2.6849, + "Tp (total) (s)": 9.3501 + }, + { + "Date+Time": "1996-11-10T00:00:00Z", + "Hs (total) (m)": 1.3276, + "Tp (total) (s)": 10.1497 + }, + { + "Date+Time": "1996-11-11T00:00:00Z", + "Hs (total) (m)": 1.4824, + "Tp (total) (s)": 9.5897 + }, + { + "Date+Time": "1996-11-12T00:00:00Z", + "Hs (total) (m)": 2.0272, + "Tp (total) (s)": 12.7804 + }, + { + "Date+Time": "1996-11-13T00:00:00Z", + "Hs (total) (m)": 1.1155, + "Tp (total) (s)": 12.3356 + }, + { + "Date+Time": "1996-11-14T00:00:00Z", + "Hs (total) (m)": 0.9484, + "Tp (total) (s)": 9.1418 + }, + { + "Date+Time": "1996-11-15T00:00:00Z", + "Hs (total) (m)": 0.8621, + "Tp (total) (s)": 9.4592 + }, + { + "Date+Time": "1996-11-16T00:00:00Z", + "Hs (total) (m)": 1.2299, + "Tp (total) (s)": 14.0843 + }, + { + "Date+Time": "1996-11-17T00:00:00Z", + "Hs (total) (m)": 2.1561, + "Tp (total) (s)": 11.4872 + }, + { + "Date+Time": "1996-11-18T00:00:00Z", + "Hs (total) (m)": 1.6625, + "Tp (total) (s)": 11.5123 + }, + { + "Date+Time": "1996-11-19T00:00:00Z", + "Hs (total) (m)": 1.5534, + "Tp (total) (s)": 10.3763 + }, + { + "Date+Time": "1996-11-20T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 11.3437 + }, + { + "Date+Time": "1996-11-21T00:00:00Z", + "Hs (total) (m)": 1.4176, + "Tp (total) (s)": 11.3002 + }, + { + "Date+Time": "1996-11-22T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 10.4396 + }, + { + "Date+Time": "1996-11-23T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 9.36 + }, + { + "Date+Time": "1996-11-24T00:00:00Z", + "Hs (total) (m)": 0.9484, + "Tp (total) (s)": 12.1479 + }, + { + "Date+Time": "1996-11-25T00:00:00Z", + "Hs (total) (m)": 3.5478, + "Tp (total) (s)": 11.2377 + }, + { + "Date+Time": "1996-11-26T00:00:00Z", + "Hs (total) (m)": 2.2744, + "Tp (total) (s)": 11.7313 + }, + { + "Date+Time": "1996-11-27T00:00:00Z", + "Hs (total) (m)": 2.1882, + "Tp (total) (s)": 10.6006 + }, + { + "Date+Time": "1996-11-28T00:00:00Z", + "Hs (total) (m)": 1.7083, + "Tp (total) (s)": 11.3598 + }, + { + "Date+Time": "1996-11-29T00:00:00Z", + "Hs (total) (m)": 3.4356, + "Tp (total) (s)": 11.3117 + }, + { + "Date+Time": "1996-11-30T00:00:00Z", + "Hs (total) (m)": 3.1365, + "Tp (total) (s)": 13.0863 + }, + { + "Date+Time": "1996-12-01T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 11.607 + }, + { + "Date+Time": "1996-12-02T00:00:00Z", + "Hs (total) (m)": 4.3329, + "Tp (total) (s)": 13.8936 + }, + { + "Date+Time": "1996-12-03T00:00:00Z", + "Hs (total) (m)": 2.8214, + "Tp (total) (s)": 14.3384 + }, + { + "Date+Time": "1996-12-04T00:00:00Z", + "Hs (total) (m)": 2.4667, + "Tp (total) (s)": 11.3445 + }, + { + "Date+Time": "1996-12-05T00:00:00Z", + "Hs (total) (m)": 1.8929, + "Tp (total) (s)": 12.3386 + }, + { + "Date+Time": "1996-12-06T00:00:00Z", + "Hs (total) (m)": 0.8675, + "Tp (total) (s)": 10.5144 + }, + { + "Date+Time": "1996-12-07T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 8.9427 + }, + { + "Date+Time": "1996-12-08T00:00:00Z", + "Hs (total) (m)": 1.7449, + "Tp (total) (s)": 9.2166 + }, + { + "Date+Time": "1996-12-09T00:00:00Z", + "Hs (total) (m)": 1.9028, + "Tp (total) (s)": 10.3916 + }, + { + "Date+Time": "1996-12-10T00:00:00Z", + "Hs (total) (m)": 2.1241, + "Tp (total) (s)": 13.8157 + }, + { + "Date+Time": "1996-12-11T00:00:00Z", + "Hs (total) (m)": 1.4222, + "Tp (total) (s)": 11.6085 + }, + { + "Date+Time": "1996-12-12T00:00:00Z", + "Hs (total) (m)": 1.4046, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "1996-12-13T00:00:00Z", + "Hs (total) (m)": 0.8087, + "Tp (total) (s)": 11.4589 + }, + { + "Date+Time": "1996-12-14T00:00:00Z", + "Hs (total) (m)": 0.5371, + "Tp (total) (s)": 10.6014 + }, + { + "Date+Time": "1996-12-15T00:00:00Z", + "Hs (total) (m)": 1.8525, + "Tp (total) (s)": 9.2387 + }, + { + "Date+Time": "1996-12-16T00:00:00Z", + "Hs (total) (m)": 1.6251, + "Tp (total) (s)": 12.4599 + }, + { + "Date+Time": "1996-12-17T00:00:00Z", + "Hs (total) (m)": 1.4908, + "Tp (total) (s)": 11.6489 + }, + { + "Date+Time": "1996-12-18T00:00:00Z", + "Hs (total) (m)": 1.2276, + "Tp (total) (s)": 5.34 + }, + { + "Date+Time": "1996-12-19T00:00:00Z", + "Hs (total) (m)": 1.8662, + "Tp (total) (s)": 10.4213 + }, + { + "Date+Time": "1996-12-20T00:00:00Z", + "Hs (total) (m)": 2.121, + "Tp (total) (s)": 11.3712 + }, + { + "Date+Time": "1996-12-21T00:00:00Z", + "Hs (total) (m)": 1.8372, + "Tp (total) (s)": 11.6489 + }, + { + "Date+Time": "1996-12-22T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 12.5423 + }, + { + "Date+Time": "1996-12-23T00:00:00Z", + "Hs (total) (m)": 0.8133, + "Tp (total) (s)": 3.2998 + }, + { + "Date+Time": "1996-12-24T00:00:00Z", + "Hs (total) (m)": 1.0674, + "Tp (total) (s)": 16.6936 + }, + { + "Date+Time": "1996-12-25T00:00:00Z", + "Hs (total) (m)": 1.7418, + "Tp (total) (s)": 14.0767 + }, + { + "Date+Time": "1996-12-26T00:00:00Z", + "Hs (total) (m)": 1.3321, + "Tp (total) (s)": 12.3798 + }, + { + "Date+Time": "1996-12-27T00:00:00Z", + "Hs (total) (m)": 1.5419, + "Tp (total) (s)": 10.8829 + }, + { + "Date+Time": "1996-12-28T00:00:00Z", + "Hs (total) (m)": 1.8395, + "Tp (total) (s)": 14.7481 + }, + { + "Date+Time": "1996-12-29T00:00:00Z", + "Hs (total) (m)": 1.3459, + "Tp (total) (s)": 12.8681 + }, + { + "Date+Time": "1996-12-30T00:00:00Z", + "Hs (total) (m)": 1.7632, + "Tp (total) (s)": 13.583 + }, + { + "Date+Time": "1996-12-31T00:00:00Z", + "Hs (total) (m)": 0.8927, + "Tp (total) (s)": 12.328 + }, + { + "Date+Time": "1997-01-01T00:00:00Z", + "Hs (total) (m)": 0.6821, + "Tp (total) (s)": 2.9794 + }, + { + "Date+Time": "1997-01-02T00:00:00Z", + "Hs (total) (m)": 0.5509, + "Tp (total) (s)": 12.5904 + }, + { + "Date+Time": "1997-01-03T00:00:00Z", + "Hs (total) (m)": 0.5364, + "Tp (total) (s)": 12.5752 + }, + { + "Date+Time": "1997-01-04T00:00:00Z", + "Hs (total) (m)": 0.6127, + "Tp (total) (s)": 12.5881 + }, + { + "Date+Time": "1997-01-05T00:00:00Z", + "Hs (total) (m)": 0.9873, + "Tp (total) (s)": 14.877 + }, + { + "Date+Time": "1997-01-06T00:00:00Z", + "Hs (total) (m)": 1.2261, + "Tp (total) (s)": 14.5917 + }, + { + "Date+Time": "1997-01-07T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 13.0993 + }, + { + "Date+Time": "1997-01-08T00:00:00Z", + "Hs (total) (m)": 1.2963, + "Tp (total) (s)": 12.6827 + }, + { + "Date+Time": "1997-01-09T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 12.6179 + }, + { + "Date+Time": "1997-01-10T00:00:00Z", + "Hs (total) (m)": 1.1597, + "Tp (total) (s)": 11.8931 + }, + { + "Date+Time": "1997-01-11T00:00:00Z", + "Hs (total) (m)": 1.4687, + "Tp (total) (s)": 14.0851 + }, + { + "Date+Time": "1997-01-12T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 14.0118 + }, + { + "Date+Time": "1997-01-13T00:00:00Z", + "Hs (total) (m)": 3.3815, + "Tp (total) (s)": 12.6743 + }, + { + "Date+Time": "1997-01-14T00:00:00Z", + "Hs (total) (m)": 3.2785, + "Tp (total) (s)": 11.5314 + }, + { + "Date+Time": "1997-01-15T00:00:00Z", + "Hs (total) (m)": 2.8443, + "Tp (total) (s)": 11.52 + }, + { + "Date+Time": "1997-01-16T00:00:00Z", + "Hs (total) (m)": 2.5269, + "Tp (total) (s)": 11.9137 + }, + { + "Date+Time": "1997-01-17T00:00:00Z", + "Hs (total) (m)": 2.7161, + "Tp (total) (s)": 13.5754 + }, + { + "Date+Time": "1997-01-18T00:00:00Z", + "Hs (total) (m)": 2.7184, + "Tp (total) (s)": 13.7387 + }, + { + "Date+Time": "1997-01-19T00:00:00Z", + "Hs (total) (m)": 2.3057, + "Tp (total) (s)": 13.4503 + }, + { + "Date+Time": "1997-01-20T00:00:00Z", + "Hs (total) (m)": 1.9395, + "Tp (total) (s)": 12.7468 + }, + { + "Date+Time": "1997-01-21T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 11.3712 + }, + { + "Date+Time": "1997-01-22T00:00:00Z", + "Hs (total) (m)": 0.8065, + "Tp (total) (s)": 10.6937 + }, + { + "Date+Time": "1997-01-23T00:00:00Z", + "Hs (total) (m)": 1.101, + "Tp (total) (s)": 14.2254 + }, + { + "Date+Time": "1997-01-24T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 14.3803 + }, + { + "Date+Time": "1997-01-25T00:00:00Z", + "Hs (total) (m)": 2.3835, + "Tp (total) (s)": 13.5914 + }, + { + "Date+Time": "1997-01-26T00:00:00Z", + "Hs (total) (m)": 2.0264, + "Tp (total) (s)": 12.4508 + }, + { + "Date+Time": "1997-01-27T00:00:00Z", + "Hs (total) (m)": 2.2202, + "Tp (total) (s)": 13.7791 + }, + { + "Date+Time": "1997-01-28T00:00:00Z", + "Hs (total) (m)": 2.0272, + "Tp (total) (s)": 13.6082 + }, + { + "Date+Time": "1997-01-29T00:00:00Z", + "Hs (total) (m)": 1.5603, + "Tp (total) (s)": 12.7064 + }, + { + "Date+Time": "1997-01-30T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 12.2883 + }, + { + "Date+Time": "1997-01-31T00:00:00Z", + "Hs (total) (m)": 1.4588, + "Tp (total) (s)": 11.7733 + }, + { + "Date+Time": "1997-02-01T00:00:00Z", + "Hs (total) (m)": 1.5618, + "Tp (total) (s)": 11.9922 + }, + { + "Date+Time": "1997-02-02T00:00:00Z", + "Hs (total) (m)": 1.3131, + "Tp (total) (s)": 10.6449 + }, + { + "Date+Time": "1997-02-03T00:00:00Z", + "Hs (total) (m)": 1.4092, + "Tp (total) (s)": 7.9562 + }, + { + "Date+Time": "1997-02-04T00:00:00Z", + "Hs (total) (m)": 2.4438, + "Tp (total) (s)": 11.2827 + }, + { + "Date+Time": "1997-02-05T00:00:00Z", + "Hs (total) (m)": 3.1343, + "Tp (total) (s)": 11.5398 + }, + { + "Date+Time": "1997-02-06T00:00:00Z", + "Hs (total) (m)": 2.768, + "Tp (total) (s)": 12.302 + }, + { + "Date+Time": "1997-02-07T00:00:00Z", + "Hs (total) (m)": 3.2517, + "Tp (total) (s)": 11.0996 + }, + { + "Date+Time": "1997-02-08T00:00:00Z", + "Hs (total) (m)": 3.09, + "Tp (total) (s)": 11.5879 + }, + { + "Date+Time": "1997-02-09T00:00:00Z", + "Hs (total) (m)": 3.3685, + "Tp (total) (s)": 11.5947 + }, + { + "Date+Time": "1997-02-10T00:00:00Z", + "Hs (total) (m)": 3.6561, + "Tp (total) (s)": 12.6583 + }, + { + "Date+Time": "1997-02-11T00:00:00Z", + "Hs (total) (m)": 4.4427, + "Tp (total) (s)": 12.7415 + }, + { + "Date+Time": "1997-02-12T00:00:00Z", + "Hs (total) (m)": 5.0778, + "Tp (total) (s)": 14.259 + }, + { + "Date+Time": "1997-02-13T00:00:00Z", + "Hs (total) (m)": 4.31, + "Tp (total) (s)": 14.9754 + }, + { + "Date+Time": "1997-02-14T00:00:00Z", + "Hs (total) (m)": 3.4639, + "Tp (total) (s)": 12.8552 + }, + { + "Date+Time": "1997-02-15T00:00:00Z", + "Hs (total) (m)": 3.6599, + "Tp (total) (s)": 12.6293 + }, + { + "Date+Time": "1997-02-16T00:00:00Z", + "Hs (total) (m)": 3.5745, + "Tp (total) (s)": 13.8562 + }, + { + "Date+Time": "1997-02-17T00:00:00Z", + "Hs (total) (m)": 3.7019, + "Tp (total) (s)": 13.4419 + }, + { + "Date+Time": "1997-02-18T00:00:00Z", + "Hs (total) (m)": 4.4618, + "Tp (total) (s)": 15.0113 + }, + { + "Date+Time": "1997-02-19T00:00:00Z", + "Hs (total) (m)": 5.0432, + "Tp (total) (s)": 13.7951 + }, + { + "Date+Time": "1997-02-20T00:00:00Z", + "Hs (total) (m)": 5.4313, + "Tp (total) (s)": 14.6555 + }, + { + "Date+Time": "1997-02-21T00:00:00Z", + "Hs (total) (m)": 6.2453, + "Tp (total) (s)": 15.8412 + }, + { + "Date+Time": "1997-02-22T00:00:00Z", + "Hs (total) (m)": 5.5269, + "Tp (total) (s)": 14.4977 + }, + { + "Date+Time": "1997-02-23T00:00:00Z", + "Hs (total) (m)": 4.6815, + "Tp (total) (s)": 14.0332 + }, + { + "Date+Time": "1997-02-24T00:00:00Z", + "Hs (total) (m)": 4.2444, + "Tp (total) (s)": 13.7623 + }, + { + "Date+Time": "1997-02-25T00:00:00Z", + "Hs (total) (m)": 4.8227, + "Tp (total) (s)": 12.7781 + }, + { + "Date+Time": "1997-02-26T00:00:00Z", + "Hs (total) (m)": 5.3877, + "Tp (total) (s)": 14.4268 + }, + { + "Date+Time": "1997-02-27T00:00:00Z", + "Hs (total) (m)": 4.4145, + "Tp (total) (s)": 13.5601 + }, + { + "Date+Time": "1997-02-28T00:00:00Z", + "Hs (total) (m)": 4.1437, + "Tp (total) (s)": 13.197 + }, + { + "Date+Time": "1997-03-01T00:00:00Z", + "Hs (total) (m)": 4.371, + "Tp (total) (s)": 12.8925 + }, + { + "Date+Time": "1997-03-02T00:00:00Z", + "Hs (total) (m)": 4.4267, + "Tp (total) (s)": 13.2725 + }, + { + "Date+Time": "1997-03-03T00:00:00Z", + "Hs (total) (m)": 4.9807, + "Tp (total) (s)": 13.7641 + }, + { + "Date+Time": "1997-03-04T00:00:00Z", + "Hs (total) (m)": 4.416, + "Tp (total) (s)": 13.6334 + }, + { + "Date+Time": "1997-03-05T00:00:00Z", + "Hs (total) (m)": 3.3189, + "Tp (total) (s)": 12.9765 + }, + { + "Date+Time": "1997-03-06T00:00:00Z", + "Hs (total) (m)": 3.106, + "Tp (total) (s)": 14.491 + }, + { + "Date+Time": "1997-03-07T00:00:00Z", + "Hs (total) (m)": 3.2769, + "Tp (total) (s)": 15.5057 + }, + { + "Date+Time": "1997-03-08T00:00:00Z", + "Hs (total) (m)": 3.5028, + "Tp (total) (s)": 16.0024 + }, + { + "Date+Time": "1997-03-09T00:00:00Z", + "Hs (total) (m)": 3.1442, + "Tp (total) (s)": 15.376 + }, + { + "Date+Time": "1997-03-10T00:00:00Z", + "Hs (total) (m)": 2.2858, + "Tp (total) (s)": 13.5281 + }, + { + "Date+Time": "1997-03-11T00:00:00Z", + "Hs (total) (m)": 2.6032, + "Tp (total) (s)": 15.7102 + }, + { + "Date+Time": "1997-03-12T00:00:00Z", + "Hs (total) (m)": 2.298, + "Tp (total) (s)": 14.6809 + }, + { + "Date+Time": "1997-03-13T00:00:00Z", + "Hs (total) (m)": 1.812, + "Tp (total) (s)": 13.39 + }, + { + "Date+Time": "1997-03-14T00:00:00Z", + "Hs (total) (m)": 1.9173, + "Tp (total) (s)": 11.3628 + }, + { + "Date+Time": "1997-03-15T00:00:00Z", + "Hs (total) (m)": 2.073, + "Tp (total) (s)": 11.6115 + }, + { + "Date+Time": "1997-03-16T00:00:00Z", + "Hs (total) (m)": 2.3461, + "Tp (total) (s)": 13.5998 + }, + { + "Date+Time": "1997-03-17T00:00:00Z", + "Hs (total) (m)": 2.5231, + "Tp (total) (s)": 13.6174 + }, + { + "Date+Time": "1997-03-18T00:00:00Z", + "Hs (total) (m)": 2.6048, + "Tp (total) (s)": 13.5365 + }, + { + "Date+Time": "1997-03-19T00:00:00Z", + "Hs (total) (m)": 2.6238, + "Tp (total) (s)": 12.8674 + }, + { + "Date+Time": "1997-03-20T00:00:00Z", + "Hs (total) (m)": 2.1485, + "Tp (total) (s)": 12.4699 + }, + { + "Date+Time": "1997-03-21T00:00:00Z", + "Hs (total) (m)": 1.8761, + "Tp (total) (s)": 9.5317 + }, + { + "Date+Time": "1997-03-22T00:00:00Z", + "Hs (total) (m)": 1.1948, + "Tp (total) (s)": 9.8071 + }, + { + "Date+Time": "1997-03-23T00:00:00Z", + "Hs (total) (m)": 2.0508, + "Tp (total) (s)": 14.1591 + }, + { + "Date+Time": "1997-03-24T00:00:00Z", + "Hs (total) (m)": 2.401, + "Tp (total) (s)": 13.3328 + }, + { + "Date+Time": "1997-03-25T00:00:00Z", + "Hs (total) (m)": 2.3888, + "Tp (total) (s)": 12.4248 + }, + { + "Date+Time": "1997-03-26T00:00:00Z", + "Hs (total) (m)": 2.8558, + "Tp (total) (s)": 16.7623 + }, + { + "Date+Time": "1997-03-27T00:00:00Z", + "Hs (total) (m)": 3.1449, + "Tp (total) (s)": 15.3096 + }, + { + "Date+Time": "1997-03-28T00:00:00Z", + "Hs (total) (m)": 2.9366, + "Tp (total) (s)": 13.6525 + }, + { + "Date+Time": "1997-03-29T00:00:00Z", + "Hs (total) (m)": 2.9656, + "Tp (total) (s)": 13.2443 + }, + { + "Date+Time": "1997-03-30T00:00:00Z", + "Hs (total) (m)": 2.2561, + "Tp (total) (s)": 12.3997 + }, + { + "Date+Time": "1997-03-31T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 10.8348 + }, + { + "Date+Time": "1997-04-01T00:00:00Z", + "Hs (total) (m)": 1.7113, + "Tp (total) (s)": 10.6189 + }, + { + "Date+Time": "1997-04-02T00:00:00Z", + "Hs (total) (m)": 1.7998, + "Tp (total) (s)": 13.5578 + }, + { + "Date+Time": "1997-04-03T00:00:00Z", + "Hs (total) (m)": 1.5267, + "Tp (total) (s)": 12.9643 + }, + { + "Date+Time": "1997-04-04T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 13.5662 + }, + { + "Date+Time": "1997-04-05T00:00:00Z", + "Hs (total) (m)": 1.7594, + "Tp (total) (s)": 14.0217 + }, + { + "Date+Time": "1997-04-06T00:00:00Z", + "Hs (total) (m)": 1.8509, + "Tp (total) (s)": 10.5014 + }, + { + "Date+Time": "1997-04-07T00:00:00Z", + "Hs (total) (m)": 1.8097, + "Tp (total) (s)": 9.7942 + }, + { + "Date+Time": "1997-04-08T00:00:00Z", + "Hs (total) (m)": 1.6068, + "Tp (total) (s)": 10.9378 + }, + { + "Date+Time": "1997-04-09T00:00:00Z", + "Hs (total) (m)": 1.2955, + "Tp (total) (s)": 12.3249 + }, + { + "Date+Time": "1997-04-10T00:00:00Z", + "Hs (total) (m)": 1.0872, + "Tp (total) (s)": 11.3727 + }, + { + "Date+Time": "1997-04-11T00:00:00Z", + "Hs (total) (m)": 0.9301, + "Tp (total) (s)": 13.538 + }, + { + "Date+Time": "1997-04-12T00:00:00Z", + "Hs (total) (m)": 1.2307, + "Tp (total) (s)": 13.0528 + }, + { + "Date+Time": "1997-04-13T00:00:00Z", + "Hs (total) (m)": 1.0414, + "Tp (total) (s)": 11.8 + }, + { + "Date+Time": "1997-04-14T00:00:00Z", + "Hs (total) (m)": 0.9491, + "Tp (total) (s)": 11.4505 + }, + { + "Date+Time": "1997-04-15T00:00:00Z", + "Hs (total) (m)": 0.8377, + "Tp (total) (s)": 10.7692 + }, + { + "Date+Time": "1997-04-16T00:00:00Z", + "Hs (total) (m)": 0.692, + "Tp (total) (s)": 10.406 + }, + { + "Date+Time": "1997-04-17T00:00:00Z", + "Hs (total) (m)": 0.8477, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "1997-04-18T00:00:00Z", + "Hs (total) (m)": 0.5547, + "Tp (total) (s)": 10.5945 + }, + { + "Date+Time": "1997-04-19T00:00:00Z", + "Hs (total) (m)": 0.5806, + "Tp (total) (s)": 11.5215 + }, + { + "Date+Time": "1997-04-20T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 11.5352 + }, + { + "Date+Time": "1997-04-21T00:00:00Z", + "Hs (total) (m)": 0.7218, + "Tp (total) (s)": 12.3257 + }, + { + "Date+Time": "1997-04-22T00:00:00Z", + "Hs (total) (m)": 0.956, + "Tp (total) (s)": 12.8132 + }, + { + "Date+Time": "1997-04-23T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 12.55 + }, + { + "Date+Time": "1997-04-24T00:00:00Z", + "Hs (total) (m)": 1.4687, + "Tp (total) (s)": 11.2941 + }, + { + "Date+Time": "1997-04-25T00:00:00Z", + "Hs (total) (m)": 1.632, + "Tp (total) (s)": 7.6617 + }, + { + "Date+Time": "1997-04-26T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 13.1382 + }, + { + "Date+Time": "1997-04-27T00:00:00Z", + "Hs (total) (m)": 1.5275, + "Tp (total) (s)": 11.9991 + }, + { + "Date+Time": "1997-04-28T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 14.9083 + }, + { + "Date+Time": "1997-04-29T00:00:00Z", + "Hs (total) (m)": 2.7306, + "Tp (total) (s)": 14.0278 + }, + { + "Date+Time": "1997-04-30T00:00:00Z", + "Hs (total) (m)": 2.9542, + "Tp (total) (s)": 11.5856 + }, + { + "Date+Time": "1997-05-01T00:00:00Z", + "Hs (total) (m)": 2.7894, + "Tp (total) (s)": 12.1372 + }, + { + "Date+Time": "1997-05-02T00:00:00Z", + "Hs (total) (m)": 2.1905, + "Tp (total) (s)": 12.6263 + }, + { + "Date+Time": "1997-05-03T00:00:00Z", + "Hs (total) (m)": 1.8326, + "Tp (total) (s)": 12.36 + }, + { + "Date+Time": "1997-05-04T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 11.9076 + }, + { + "Date+Time": "1997-05-05T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 13.8951 + }, + { + "Date+Time": "1997-05-06T00:00:00Z", + "Hs (total) (m)": 1.6861, + "Tp (total) (s)": 8.0065 + }, + { + "Date+Time": "1997-05-07T00:00:00Z", + "Hs (total) (m)": 1.4176, + "Tp (total) (s)": 9.5897 + }, + { + "Date+Time": "1997-05-08T00:00:00Z", + "Hs (total) (m)": 1.3039, + "Tp (total) (s)": 11.3247 + }, + { + "Date+Time": "1997-05-09T00:00:00Z", + "Hs (total) (m)": 1.1666, + "Tp (total) (s)": 8.3804 + }, + { + "Date+Time": "1997-05-10T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 10.1787 + }, + { + "Date+Time": "1997-05-11T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 9.8872 + }, + { + "Date+Time": "1997-05-12T00:00:00Z", + "Hs (total) (m)": 1.6037, + "Tp (total) (s)": 10.2901 + }, + { + "Date+Time": "1997-05-13T00:00:00Z", + "Hs (total) (m)": 1.4336, + "Tp (total) (s)": 9.7888 + }, + { + "Date+Time": "1997-05-14T00:00:00Z", + "Hs (total) (m)": 1.3436, + "Tp (total) (s)": 10.1985 + }, + { + "Date+Time": "1997-05-15T00:00:00Z", + "Hs (total) (m)": 1.384, + "Tp (total) (s)": 7.8623 + }, + { + "Date+Time": "1997-05-16T00:00:00Z", + "Hs (total) (m)": 1.5755, + "Tp (total) (s)": 7.9157 + }, + { + "Date+Time": "1997-05-17T00:00:00Z", + "Hs (total) (m)": 1.587, + "Tp (total) (s)": 8.0515 + }, + { + "Date+Time": "1997-05-18T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 9.254 + }, + { + "Date+Time": "1997-05-19T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 9.8193 + }, + { + "Date+Time": "1997-05-20T00:00:00Z", + "Hs (total) (m)": 1.0903, + "Tp (total) (s)": 9.7118 + }, + { + "Date+Time": "1997-05-21T00:00:00Z", + "Hs (total) (m)": 1.0056, + "Tp (total) (s)": 11.4994 + }, + { + "Date+Time": "1997-05-22T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 11.4391 + }, + { + "Date+Time": "1997-05-23T00:00:00Z", + "Hs (total) (m)": 1.0201, + "Tp (total) (s)": 10.5434 + }, + { + "Date+Time": "1997-05-24T00:00:00Z", + "Hs (total) (m)": 0.9163, + "Tp (total) (s)": 12.9124 + }, + { + "Date+Time": "1997-05-25T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 11.5215 + }, + { + "Date+Time": "1997-05-26T00:00:00Z", + "Hs (total) (m)": 0.927, + "Tp (total) (s)": 11.0378 + }, + { + "Date+Time": "1997-05-27T00:00:00Z", + "Hs (total) (m)": 0.8362, + "Tp (total) (s)": 10.4541 + }, + { + "Date+Time": "1997-05-28T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 9.8926 + }, + { + "Date+Time": "1997-05-29T00:00:00Z", + "Hs (total) (m)": 0.5814, + "Tp (total) (s)": 9.5523 + }, + { + "Date+Time": "1997-05-30T00:00:00Z", + "Hs (total) (m)": 0.5783, + "Tp (total) (s)": 9.5553 + }, + { + "Date+Time": "1997-05-31T00:00:00Z", + "Hs (total) (m)": 0.6737, + "Tp (total) (s)": 9.6057 + }, + { + "Date+Time": "1997-06-01T00:00:00Z", + "Hs (total) (m)": 0.8393, + "Tp (total) (s)": 9.6057 + }, + { + "Date+Time": "1997-06-02T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 12.0754 + }, + { + "Date+Time": "1997-06-03T00:00:00Z", + "Hs (total) (m)": 1.1093, + "Tp (total) (s)": 11.2064 + }, + { + "Date+Time": "1997-06-04T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 10.5228 + }, + { + "Date+Time": "1997-06-05T00:00:00Z", + "Hs (total) (m)": 0.4143, + "Tp (total) (s)": 8.6291 + }, + { + "Date+Time": "1997-06-06T00:00:00Z", + "Hs (total) (m)": 0.6432, + "Tp (total) (s)": 8.0134 + }, + { + "Date+Time": "1997-06-07T00:00:00Z", + "Hs (total) (m)": 0.7988, + "Tp (total) (s)": 10.2863 + }, + { + "Date+Time": "1997-06-08T00:00:00Z", + "Hs (total) (m)": 1.2955, + "Tp (total) (s)": 10.2908 + }, + { + "Date+Time": "1997-06-09T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 10.3961 + }, + { + "Date+Time": "1997-06-10T00:00:00Z", + "Hs (total) (m)": 1.6083, + "Tp (total) (s)": 13.4617 + }, + { + "Date+Time": "1997-06-11T00:00:00Z", + "Hs (total) (m)": 1.5961, + "Tp (total) (s)": 13.3412 + }, + { + "Date+Time": "1997-06-12T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 11.2865 + }, + { + "Date+Time": "1997-06-13T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 10.21 + }, + { + "Date+Time": "1997-06-14T00:00:00Z", + "Hs (total) (m)": 1.1124, + "Tp (total) (s)": 9.5622 + }, + { + "Date+Time": "1997-06-15T00:00:00Z", + "Hs (total) (m)": 0.9484, + "Tp (total) (s)": 9.6507 + }, + { + "Date+Time": "1997-06-16T00:00:00Z", + "Hs (total) (m)": 0.7927, + "Tp (total) (s)": 9.3226 + }, + { + "Date+Time": "1997-06-17T00:00:00Z", + "Hs (total) (m)": 0.6653, + "Tp (total) (s)": 7.8257 + }, + { + "Date+Time": "1997-06-18T00:00:00Z", + "Hs (total) (m)": 0.7012, + "Tp (total) (s)": 7.9333 + }, + { + "Date+Time": "1997-06-19T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 9.3875 + }, + { + "Date+Time": "1997-06-20T00:00:00Z", + "Hs (total) (m)": 1.6068, + "Tp (total) (s)": 9.3623 + }, + { + "Date+Time": "1997-06-21T00:00:00Z", + "Hs (total) (m)": 2.028, + "Tp (total) (s)": 12.6011 + }, + { + "Date+Time": "1997-06-22T00:00:00Z", + "Hs (total) (m)": 1.5496, + "Tp (total) (s)": 11.0828 + }, + { + "Date+Time": "1997-06-23T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 9.5828 + }, + { + "Date+Time": "1997-06-24T00:00:00Z", + "Hs (total) (m)": 1.2505, + "Tp (total) (s)": 10.3153 + }, + { + "Date+Time": "1997-06-25T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 7.8959 + }, + { + "Date+Time": "1997-06-26T00:00:00Z", + "Hs (total) (m)": 1.4969, + "Tp (total) (s)": 8.0393 + }, + { + "Date+Time": "1997-06-27T00:00:00Z", + "Hs (total) (m)": 1.4428, + "Tp (total) (s)": 7.9058 + }, + { + "Date+Time": "1997-06-28T00:00:00Z", + "Hs (total) (m)": 1.3268, + "Tp (total) (s)": 7.9218 + }, + { + "Date+Time": "1997-06-29T00:00:00Z", + "Hs (total) (m)": 1.1139, + "Tp (total) (s)": 6.9468 + }, + { + "Date+Time": "1997-06-30T00:00:00Z", + "Hs (total) (m)": 0.898, + "Tp (total) (s)": 7.4007 + }, + { + "Date+Time": "1997-07-01T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 7.5205 + }, + { + "Date+Time": "1997-07-02T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 7.5869 + }, + { + "Date+Time": "1997-07-03T00:00:00Z", + "Hs (total) (m)": 1.1353, + "Tp (total) (s)": 8.1057 + }, + { + "Date+Time": "1997-07-04T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 7.8738 + }, + { + "Date+Time": "1997-07-05T00:00:00Z", + "Hs (total) (m)": 0.7744, + "Tp (total) (s)": 7.1383 + }, + { + "Date+Time": "1997-07-06T00:00:00Z", + "Hs (total) (m)": 0.766, + "Tp (total) (s)": 7.2428 + }, + { + "Date+Time": "1997-07-07T00:00:00Z", + "Hs (total) (m)": 0.9308, + "Tp (total) (s)": 9.3966 + }, + { + "Date+Time": "1997-07-08T00:00:00Z", + "Hs (total) (m)": 1.059, + "Tp (total) (s)": 8.2652 + }, + { + "Date+Time": "1997-07-09T00:00:00Z", + "Hs (total) (m)": 1.014, + "Tp (total) (s)": 9.9094 + }, + { + "Date+Time": "1997-07-10T00:00:00Z", + "Hs (total) (m)": 0.9003, + "Tp (total) (s)": 8.4956 + }, + { + "Date+Time": "1997-07-11T00:00:00Z", + "Hs (total) (m)": 0.9949, + "Tp (total) (s)": 7.9005 + }, + { + "Date+Time": "1997-07-12T00:00:00Z", + "Hs (total) (m)": 1.0285, + "Tp (total) (s)": 8.1164 + }, + { + "Date+Time": "1997-07-13T00:00:00Z", + "Hs (total) (m)": 1.1155, + "Tp (total) (s)": 9.2814 + }, + { + "Date+Time": "1997-07-14T00:00:00Z", + "Hs (total) (m)": 0.998, + "Tp (total) (s)": 8.1088 + }, + { + "Date+Time": "1997-07-15T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 7.3138 + }, + { + "Date+Time": "1997-07-16T00:00:00Z", + "Hs (total) (m)": 1.5419, + "Tp (total) (s)": 6.8789 + }, + { + "Date+Time": "1997-07-17T00:00:00Z", + "Hs (total) (m)": 1.9555, + "Tp (total) (s)": 7.2428 + }, + { + "Date+Time": "1997-07-18T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 11.3079 + }, + { + "Date+Time": "1997-07-19T00:00:00Z", + "Hs (total) (m)": 1.0216, + "Tp (total) (s)": 9.3944 + }, + { + "Date+Time": "1997-07-20T00:00:00Z", + "Hs (total) (m)": 0.9049, + "Tp (total) (s)": 9.2357 + }, + { + "Date+Time": "1997-07-21T00:00:00Z", + "Hs (total) (m)": 1.3771, + "Tp (total) (s)": 11.2293 + }, + { + "Date+Time": "1997-07-22T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 10.3023 + }, + { + "Date+Time": "1997-07-23T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 8.9068 + }, + { + "Date+Time": "1997-07-24T00:00:00Z", + "Hs (total) (m)": 1.0552, + "Tp (total) (s)": 8.3972 + }, + { + "Date+Time": "1997-07-25T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 7.8997 + }, + { + "Date+Time": "1997-07-26T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 5.6681 + }, + { + "Date+Time": "1997-07-27T00:00:00Z", + "Hs (total) (m)": 1.101, + "Tp (total) (s)": 7.709 + }, + { + "Date+Time": "1997-07-28T00:00:00Z", + "Hs (total) (m)": 1.2192, + "Tp (total) (s)": 8.7657 + }, + { + "Date+Time": "1997-07-29T00:00:00Z", + "Hs (total) (m)": 1.3108, + "Tp (total) (s)": 8.282 + }, + { + "Date+Time": "1997-07-30T00:00:00Z", + "Hs (total) (m)": 1.9532, + "Tp (total) (s)": 7.2657 + }, + { + "Date+Time": "1997-07-31T00:00:00Z", + "Hs (total) (m)": 2.6475, + "Tp (total) (s)": 11.2827 + }, + { + "Date+Time": "1997-08-01T00:00:00Z", + "Hs (total) (m)": 3.2991, + "Tp (total) (s)": 12.6988 + }, + { + "Date+Time": "1997-08-02T00:00:00Z", + "Hs (total) (m)": 2.3476, + "Tp (total) (s)": 9.93 + }, + { + "Date+Time": "1997-08-03T00:00:00Z", + "Hs (total) (m)": 1.5114, + "Tp (total) (s)": 9.6782 + }, + { + "Date+Time": "1997-08-04T00:00:00Z", + "Hs (total) (m)": 1.5007, + "Tp (total) (s)": 10.3374 + }, + { + "Date+Time": "1997-08-05T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 9.6507 + }, + { + "Date+Time": "1997-08-06T00:00:00Z", + "Hs (total) (m)": 0.6012, + "Tp (total) (s)": 9.7095 + }, + { + "Date+Time": "1997-08-07T00:00:00Z", + "Hs (total) (m)": 0.5699, + "Tp (total) (s)": 9.4966 + }, + { + "Date+Time": "1997-08-08T00:00:00Z", + "Hs (total) (m)": 0.6684, + "Tp (total) (s)": 9.254 + }, + { + "Date+Time": "1997-08-09T00:00:00Z", + "Hs (total) (m)": 0.8263, + "Tp (total) (s)": 9.0175 + }, + { + "Date+Time": "1997-08-10T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 11.2064 + }, + { + "Date+Time": "1997-08-11T00:00:00Z", + "Hs (total) (m)": 1.4046, + "Tp (total) (s)": 10.4854 + }, + { + "Date+Time": "1997-08-12T00:00:00Z", + "Hs (total) (m)": 1.2528, + "Tp (total) (s)": 9.2151 + }, + { + "Date+Time": "1997-08-13T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 13.377 + }, + { + "Date+Time": "1997-08-14T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "1997-08-15T00:00:00Z", + "Hs (total) (m)": 1.5847, + "Tp (total) (s)": 11.0591 + }, + { + "Date+Time": "1997-08-16T00:00:00Z", + "Hs (total) (m)": 1.5236, + "Tp (total) (s)": 8.533 + }, + { + "Date+Time": "1997-08-17T00:00:00Z", + "Hs (total) (m)": 1.6625, + "Tp (total) (s)": 8.066 + }, + { + "Date+Time": "1997-08-18T00:00:00Z", + "Hs (total) (m)": 1.474, + "Tp (total) (s)": 9.2212 + }, + { + "Date+Time": "1997-08-19T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 9.3959 + }, + { + "Date+Time": "1997-08-20T00:00:00Z", + "Hs (total) (m)": 0.8003, + "Tp (total) (s)": 7.7349 + }, + { + "Date+Time": "1997-08-21T00:00:00Z", + "Hs (total) (m)": 1.0674, + "Tp (total) (s)": 7.7639 + }, + { + "Date+Time": "1997-08-22T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 6.8941 + }, + { + "Date+Time": "1997-08-23T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 9.0411 + }, + { + "Date+Time": "1997-08-24T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 9.8628 + }, + { + "Date+Time": "1997-08-25T00:00:00Z", + "Hs (total) (m)": 1.1719, + "Tp (total) (s)": 10.3854 + }, + { + "Date+Time": "1997-08-26T00:00:00Z", + "Hs (total) (m)": 1.2696, + "Tp (total) (s)": 9.8453 + }, + { + "Date+Time": "1997-08-27T00:00:00Z", + "Hs (total) (m)": 1.9494, + "Tp (total) (s)": 9.3799 + }, + { + "Date+Time": "1997-08-28T00:00:00Z", + "Hs (total) (m)": 2.2393, + "Tp (total) (s)": 5.9511 + }, + { + "Date+Time": "1997-08-29T00:00:00Z", + "Hs (total) (m)": 2.749, + "Tp (total) (s)": 9.7888 + }, + { + "Date+Time": "1997-08-30T00:00:00Z", + "Hs (total) (m)": 3.0114, + "Tp (total) (s)": 11.5596 + }, + { + "Date+Time": "1997-08-31T00:00:00Z", + "Hs (total) (m)": 1.5839, + "Tp (total) (s)": 9.2891 + }, + { + "Date+Time": "1997-09-01T00:00:00Z", + "Hs (total) (m)": 1.4283, + "Tp (total) (s)": 9.2441 + }, + { + "Date+Time": "1997-09-02T00:00:00Z", + "Hs (total) (m)": 1.0926, + "Tp (total) (s)": 8.7558 + }, + { + "Date+Time": "1997-09-03T00:00:00Z", + "Hs (total) (m)": 2.0753, + "Tp (total) (s)": 8.2781 + }, + { + "Date+Time": "1997-09-04T00:00:00Z", + "Hs (total) (m)": 2.2614, + "Tp (total) (s)": 9.389 + }, + { + "Date+Time": "1997-09-05T00:00:00Z", + "Hs (total) (m)": 2.7383, + "Tp (total) (s)": 8.6291 + }, + { + "Date+Time": "1997-09-06T00:00:00Z", + "Hs (total) (m)": 2.2629, + "Tp (total) (s)": 9.4455 + }, + { + "Date+Time": "1997-09-07T00:00:00Z", + "Hs (total) (m)": 1.8006, + "Tp (total) (s)": 10.4389 + }, + { + "Date+Time": "1997-09-08T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 9.621 + }, + { + "Date+Time": "1997-09-09T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 9.3585 + }, + { + "Date+Time": "1997-09-10T00:00:00Z", + "Hs (total) (m)": 1.3466, + "Tp (total) (s)": 10.4595 + }, + { + "Date+Time": "1997-09-11T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 11.9015 + }, + { + "Date+Time": "1997-09-12T00:00:00Z", + "Hs (total) (m)": 1.1673, + "Tp (total) (s)": 10.6006 + }, + { + "Date+Time": "1997-09-13T00:00:00Z", + "Hs (total) (m)": 1.1803, + "Tp (total) (s)": 4.7159 + }, + { + "Date+Time": "1997-09-14T00:00:00Z", + "Hs (total) (m)": 1.6602, + "Tp (total) (s)": 7.9058 + }, + { + "Date+Time": "1997-09-15T00:00:00Z", + "Hs (total) (m)": 1.8883, + "Tp (total) (s)": 11.2918 + }, + { + "Date+Time": "1997-09-16T00:00:00Z", + "Hs (total) (m)": 3.016, + "Tp (total) (s)": 8.7489 + }, + { + "Date+Time": "1997-09-17T00:00:00Z", + "Hs (total) (m)": 3.0595, + "Tp (total) (s)": 11.6619 + }, + { + "Date+Time": "1997-09-18T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 10.3519 + }, + { + "Date+Time": "1997-09-19T00:00:00Z", + "Hs (total) (m)": 1.5145, + "Tp (total) (s)": 11.4643 + }, + { + "Date+Time": "1997-09-20T00:00:00Z", + "Hs (total) (m)": 0.9796, + "Tp (total) (s)": 9.8315 + }, + { + "Date+Time": "1997-09-21T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 8.6673 + }, + { + "Date+Time": "1997-09-22T00:00:00Z", + "Hs (total) (m)": 0.7469, + "Tp (total) (s)": 4.2283 + }, + { + "Date+Time": "1997-09-23T00:00:00Z", + "Hs (total) (m)": 0.6493, + "Tp (total) (s)": 4.2573 + }, + { + "Date+Time": "1997-09-24T00:00:00Z", + "Hs (total) (m)": 0.7843, + "Tp (total) (s)": 4.0216 + }, + { + "Date+Time": "1997-09-25T00:00:00Z", + "Hs (total) (m)": 0.9209, + "Tp (total) (s)": 9.4584 + }, + { + "Date+Time": "1997-09-26T00:00:00Z", + "Hs (total) (m)": 0.6752, + "Tp (total) (s)": 8.7527 + }, + { + "Date+Time": "1997-09-27T00:00:00Z", + "Hs (total) (m)": 0.5791, + "Tp (total) (s)": 10.1459 + }, + { + "Date+Time": "1997-09-28T00:00:00Z", + "Hs (total) (m)": 0.689, + "Tp (total) (s)": 10.0963 + }, + { + "Date+Time": "1997-09-29T00:00:00Z", + "Hs (total) (m)": 2.0447, + "Tp (total) (s)": 11.5978 + }, + { + "Date+Time": "1997-09-30T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 8.6825 + }, + { + "Date+Time": "1997-10-01T00:00:00Z", + "Hs (total) (m)": 2.5506, + "Tp (total) (s)": 13.5632 + }, + { + "Date+Time": "1997-10-02T00:00:00Z", + "Hs (total) (m)": 2.0165, + "Tp (total) (s)": 12.0342 + }, + { + "Date+Time": "1997-10-03T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 11.3308 + }, + { + "Date+Time": "1997-10-04T00:00:00Z", + "Hs (total) (m)": 1.075, + "Tp (total) (s)": 10.5602 + }, + { + "Date+Time": "1997-10-05T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 9.7507 + }, + { + "Date+Time": "1997-10-06T00:00:00Z", + "Hs (total) (m)": 1.7411, + "Tp (total) (s)": 10.9867 + }, + { + "Date+Time": "1997-10-07T00:00:00Z", + "Hs (total) (m)": 2.3186, + "Tp (total) (s)": 11.5932 + }, + { + "Date+Time": "1997-10-08T00:00:00Z", + "Hs (total) (m)": 2.2446, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "1997-10-09T00:00:00Z", + "Hs (total) (m)": 2.4781, + "Tp (total) (s)": 11.4612 + }, + { + "Date+Time": "1997-10-10T00:00:00Z", + "Hs (total) (m)": 2.2462, + "Tp (total) (s)": 9.9284 + }, + { + "Date+Time": "1997-10-11T00:00:00Z", + "Hs (total) (m)": 2.0028, + "Tp (total) (s)": 9.4821 + }, + { + "Date+Time": "1997-10-12T00:00:00Z", + "Hs (total) (m)": 2.0135, + "Tp (total) (s)": 9.3905 + }, + { + "Date+Time": "1997-10-13T00:00:00Z", + "Hs (total) (m)": 0.9255, + "Tp (total) (s)": 9.3745 + }, + { + "Date+Time": "1997-10-14T00:00:00Z", + "Hs (total) (m)": 0.9224, + "Tp (total) (s)": 9.4424 + }, + { + "Date+Time": "1997-10-15T00:00:00Z", + "Hs (total) (m)": 1.6007, + "Tp (total) (s)": 9.4165 + }, + { + "Date+Time": "1997-10-16T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 8.2827 + }, + { + "Date+Time": "1997-10-17T00:00:00Z", + "Hs (total) (m)": 2.0173, + "Tp (total) (s)": 8.4155 + }, + { + "Date+Time": "1997-10-18T00:00:00Z", + "Hs (total) (m)": 1.78, + "Tp (total) (s)": 9.7766 + }, + { + "Date+Time": "1997-10-19T00:00:00Z", + "Hs (total) (m)": 1.503, + "Tp (total) (s)": 9.8796 + }, + { + "Date+Time": "1997-10-20T00:00:00Z", + "Hs (total) (m)": 0.8217, + "Tp (total) (s)": 8.3705 + }, + { + "Date+Time": "1997-10-21T00:00:00Z", + "Hs (total) (m)": 0.7736, + "Tp (total) (s)": 3.3074 + }, + { + "Date+Time": "1997-10-22T00:00:00Z", + "Hs (total) (m)": 0.8461, + "Tp (total) (s)": 4.6701 + }, + { + "Date+Time": "1997-10-23T00:00:00Z", + "Hs (total) (m)": 0.782, + "Tp (total) (s)": 11.9884 + }, + { + "Date+Time": "1997-10-24T00:00:00Z", + "Hs (total) (m)": 0.7523, + "Tp (total) (s)": 11.4383 + }, + { + "Date+Time": "1997-10-25T00:00:00Z", + "Hs (total) (m)": 1.1406, + "Tp (total) (s)": 17.4329 + }, + { + "Date+Time": "1997-10-26T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 17.114 + }, + { + "Date+Time": "1997-10-27T00:00:00Z", + "Hs (total) (m)": 1.6549, + "Tp (total) (s)": 16.4487 + }, + { + "Date+Time": "1997-10-28T00:00:00Z", + "Hs (total) (m)": 1.5778, + "Tp (total) (s)": 12.4042 + }, + { + "Date+Time": "1997-10-29T00:00:00Z", + "Hs (total) (m)": 1.1124, + "Tp (total) (s)": 4.68 + }, + { + "Date+Time": "1997-10-30T00:00:00Z", + "Hs (total) (m)": 1.6419, + "Tp (total) (s)": 11.5307 + }, + { + "Date+Time": "1997-10-31T00:00:00Z", + "Hs (total) (m)": 1.6976, + "Tp (total) (s)": 9.064 + }, + { + "Date+Time": "1997-11-01T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 11.9236 + }, + { + "Date+Time": "1997-11-02T00:00:00Z", + "Hs (total) (m)": 0.9964, + "Tp (total) (s)": 10.3847 + }, + { + "Date+Time": "1997-11-03T00:00:00Z", + "Hs (total) (m)": 1.2589, + "Tp (total) (s)": 13.8081 + }, + { + "Date+Time": "1997-11-04T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 12.3699 + }, + { + "Date+Time": "1997-11-05T00:00:00Z", + "Hs (total) (m)": 1.4542, + "Tp (total) (s)": 11.1118 + }, + { + "Date+Time": "1997-11-06T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 9.7766 + }, + { + "Date+Time": "1997-11-07T00:00:00Z", + "Hs (total) (m)": 0.6912, + "Tp (total) (s)": 8.4025 + }, + { + "Date+Time": "1997-11-08T00:00:00Z", + "Hs (total) (m)": 0.6859, + "Tp (total) (s)": 8.3354 + }, + { + "Date+Time": "1997-11-09T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 10.7746 + }, + { + "Date+Time": "1997-11-10T00:00:00Z", + "Hs (total) (m)": 1.9845, + "Tp (total) (s)": 11.5902 + }, + { + "Date+Time": "1997-11-11T00:00:00Z", + "Hs (total) (m)": 2.4247, + "Tp (total) (s)": 12.505 + }, + { + "Date+Time": "1997-11-12T00:00:00Z", + "Hs (total) (m)": 1.9585, + "Tp (total) (s)": 11.0492 + }, + { + "Date+Time": "1997-11-13T00:00:00Z", + "Hs (total) (m)": 1.6343, + "Tp (total) (s)": 10.3343 + }, + { + "Date+Time": "1997-11-14T00:00:00Z", + "Hs (total) (m)": 1.1422, + "Tp (total) (s)": 9.6149 + }, + { + "Date+Time": "1997-11-15T00:00:00Z", + "Hs (total) (m)": 1.6121, + "Tp (total) (s)": 7.9089 + }, + { + "Date+Time": "1997-11-16T00:00:00Z", + "Hs (total) (m)": 2.1332, + "Tp (total) (s)": 9.6232 + }, + { + "Date+Time": "1997-11-17T00:00:00Z", + "Hs (total) (m)": 3.1274, + "Tp (total) (s)": 10.8905 + }, + { + "Date+Time": "1997-11-18T00:00:00Z", + "Hs (total) (m)": 3.2647, + "Tp (total) (s)": 11.269 + }, + { + "Date+Time": "1997-11-19T00:00:00Z", + "Hs (total) (m)": 3.428, + "Tp (total) (s)": 12.5919 + }, + { + "Date+Time": "1997-11-20T00:00:00Z", + "Hs (total) (m)": 3.6294, + "Tp (total) (s)": 12.775 + }, + { + "Date+Time": "1997-11-21T00:00:00Z", + "Hs (total) (m)": 4.2787, + "Tp (total) (s)": 16.9065 + }, + { + "Date+Time": "1997-11-22T00:00:00Z", + "Hs (total) (m)": 4.0429, + "Tp (total) (s)": 14.6092 + }, + { + "Date+Time": "1997-11-23T00:00:00Z", + "Hs (total) (m)": 3.2449, + "Tp (total) (s)": 13.3793 + }, + { + "Date+Time": "1997-11-24T00:00:00Z", + "Hs (total) (m)": 2.1386, + "Tp (total) (s)": 19.0397 + }, + { + "Date+Time": "1997-11-25T00:00:00Z", + "Hs (total) (m)": 2.9092, + "Tp (total) (s)": 18.7712 + }, + { + "Date+Time": "1997-11-26T00:00:00Z", + "Hs (total) (m)": 3.2556, + "Tp (total) (s)": 18.0013 + }, + { + "Date+Time": "1997-11-27T00:00:00Z", + "Hs (total) (m)": 1.6778, + "Tp (total) (s)": 11.9144 + }, + { + "Date+Time": "1997-11-28T00:00:00Z", + "Hs (total) (m)": 2.0615, + "Tp (total) (s)": 13.0078 + }, + { + "Date+Time": "1997-11-29T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 16.4785 + }, + { + "Date+Time": "1997-11-30T00:00:00Z", + "Hs (total) (m)": 3.0595, + "Tp (total) (s)": 15.8368 + }, + { + "Date+Time": "1997-12-01T00:00:00Z", + "Hs (total) (m)": 2.3515, + "Tp (total) (s)": 14.008 + }, + { + "Date+Time": "1997-12-02T00:00:00Z", + "Hs (total) (m)": 1.561, + "Tp (total) (s)": 11.5139 + }, + { + "Date+Time": "1997-12-03T00:00:00Z", + "Hs (total) (m)": 1.5831, + "Tp (total) (s)": 15.4782 + }, + { + "Date+Time": "1997-12-04T00:00:00Z", + "Hs (total) (m)": 1.2986, + "Tp (total) (s)": 12.9917 + }, + { + "Date+Time": "1997-12-05T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 12.6125 + }, + { + "Date+Time": "1997-12-06T00:00:00Z", + "Hs (total) (m)": 2.1271, + "Tp (total) (s)": 11.5452 + }, + { + "Date+Time": "1997-12-07T00:00:00Z", + "Hs (total) (m)": 2.9771, + "Tp (total) (s)": 8.9343 + }, + { + "Date+Time": "1997-12-08T00:00:00Z", + "Hs (total) (m)": 3.5745, + "Tp (total) (s)": 10.3839 + }, + { + "Date+Time": "1997-12-09T00:00:00Z", + "Hs (total) (m)": 3.9491, + "Tp (total) (s)": 11.7504 + }, + { + "Date+Time": "1997-12-10T00:00:00Z", + "Hs (total) (m)": 3.7309, + "Tp (total) (s)": 12.534 + }, + { + "Date+Time": "1997-12-11T00:00:00Z", + "Hs (total) (m)": 3.2823, + "Tp (total) (s)": 9.9315 + }, + { + "Date+Time": "1997-12-12T00:00:00Z", + "Hs (total) (m)": 2.591, + "Tp (total) (s)": 10.7143 + }, + { + "Date+Time": "1997-12-13T00:00:00Z", + "Hs (total) (m)": 2.0493, + "Tp (total) (s)": 11.2911 + }, + { + "Date+Time": "1997-12-14T00:00:00Z", + "Hs (total) (m)": 2.3034, + "Tp (total) (s)": 12.4203 + }, + { + "Date+Time": "1997-12-15T00:00:00Z", + "Hs (total) (m)": 2.4239, + "Tp (total) (s)": 11.668 + }, + { + "Date+Time": "1997-12-16T00:00:00Z", + "Hs (total) (m)": 2.7161, + "Tp (total) (s)": 15.3935 + }, + { + "Date+Time": "1997-12-17T00:00:00Z", + "Hs (total) (m)": 2.0478, + "Tp (total) (s)": 13.8501 + }, + { + "Date+Time": "1997-12-18T00:00:00Z", + "Hs (total) (m)": 1.5213, + "Tp (total) (s)": 5.3133 + }, + { + "Date+Time": "1997-12-19T00:00:00Z", + "Hs (total) (m)": 2.4781, + "Tp (total) (s)": 18.7208 + }, + { + "Date+Time": "1997-12-20T00:00:00Z", + "Hs (total) (m)": 2.9115, + "Tp (total) (s)": 18.0555 + }, + { + "Date+Time": "1997-12-21T00:00:00Z", + "Hs (total) (m)": 2.5117, + "Tp (total) (s)": 15.4805 + }, + { + "Date+Time": "1997-12-22T00:00:00Z", + "Hs (total) (m)": 1.9814, + "Tp (total) (s)": 11.5825 + }, + { + "Date+Time": "1997-12-23T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 9.5088 + }, + { + "Date+Time": "1997-12-24T00:00:00Z", + "Hs (total) (m)": 2.5269, + "Tp (total) (s)": 9.2074 + }, + { + "Date+Time": "1997-12-25T00:00:00Z", + "Hs (total) (m)": 3.4089, + "Tp (total) (s)": 11.6207 + }, + { + "Date+Time": "1997-12-26T00:00:00Z", + "Hs (total) (m)": 3.9804, + "Tp (total) (s)": 11.9022 + }, + { + "Date+Time": "1997-12-27T00:00:00Z", + "Hs (total) (m)": 3.6981, + "Tp (total) (s)": 11.8297 + }, + { + "Date+Time": "1997-12-28T00:00:00Z", + "Hs (total) (m)": 3.2838, + "Tp (total) (s)": 13.8043 + }, + { + "Date+Time": "1997-12-29T00:00:00Z", + "Hs (total) (m)": 2.2118, + "Tp (total) (s)": 11.333 + }, + { + "Date+Time": "1997-12-30T00:00:00Z", + "Hs (total) (m)": 1.5435, + "Tp (total) (s)": 9.7476 + }, + { + "Date+Time": "1997-12-31T00:00:00Z", + "Hs (total) (m)": 2.5903, + "Tp (total) (s)": 9.3997 + }, + { + "Date+Time": "1998-01-01T00:00:00Z", + "Hs (total) (m)": 4.8128, + "Tp (total) (s)": 18.1295 + }, + { + "Date+Time": "1998-01-02T00:00:00Z", + "Hs (total) (m)": 4.828, + "Tp (total) (s)": 13.9058 + }, + { + "Date+Time": "1998-01-03T00:00:00Z", + "Hs (total) (m)": 5.8077, + "Tp (total) (s)": 15.8482 + }, + { + "Date+Time": "1998-01-04T00:00:00Z", + "Hs (total) (m)": 5.7598, + "Tp (total) (s)": 14.4001 + }, + { + "Date+Time": "1998-01-05T00:00:00Z", + "Hs (total) (m)": 4.5976, + "Tp (total) (s)": 15.1448 + }, + { + "Date+Time": "1998-01-06T00:00:00Z", + "Hs (total) (m)": 3.2144, + "Tp (total) (s)": 13.9554 + }, + { + "Date+Time": "1998-01-07T00:00:00Z", + "Hs (total) (m)": 5.9575, + "Tp (total) (s)": 15.306 + }, + { + "Date+Time": "1998-01-08T00:00:00Z", + "Hs (total) (m)": 5.7966, + "Tp (total) (s)": 15.9007 + }, + { + "Date+Time": "1998-01-09T00:00:00Z", + "Hs (total) (m)": 5.3404, + "Tp (total) (s)": 12.653 + }, + { + "Date+Time": "1998-01-10T00:00:00Z", + "Hs (total) (m)": 3.9888, + "Tp (total) (s)": 12.3051 + }, + { + "Date+Time": "1998-01-11T00:00:00Z", + "Hs (total) (m)": 2.9458, + "Tp (total) (s)": 10.6075 + }, + { + "Date+Time": "1998-01-12T00:00:00Z", + "Hs (total) (m)": 2.8977, + "Tp (total) (s)": 11.7733 + }, + { + "Date+Time": "1998-01-13T00:00:00Z", + "Hs (total) (m)": 2.1355, + "Tp (total) (s)": 9.8979 + }, + { + "Date+Time": "1998-01-14T00:00:00Z", + "Hs (total) (m)": 1.9181, + "Tp (total) (s)": 9.949 + }, + { + "Date+Time": "1998-01-15T00:00:00Z", + "Hs (total) (m)": 2.5307, + "Tp (total) (s)": 9.2311 + }, + { + "Date+Time": "1998-01-16T00:00:00Z", + "Hs (total) (m)": 3.1816, + "Tp (total) (s)": 11.5665 + }, + { + "Date+Time": "1998-01-17T00:00:00Z", + "Hs (total) (m)": 2.6383, + "Tp (total) (s)": 12.6095 + }, + { + "Date+Time": "1998-01-18T00:00:00Z", + "Hs (total) (m)": 2.5163, + "Tp (total) (s)": 9.3081 + }, + { + "Date+Time": "1998-01-19T00:00:00Z", + "Hs (total) (m)": 3.1404, + "Tp (total) (s)": 12.8628 + }, + { + "Date+Time": "1998-01-20T00:00:00Z", + "Hs (total) (m)": 1.9562, + "Tp (total) (s)": 12.582 + }, + { + "Date+Time": "1998-01-21T00:00:00Z", + "Hs (total) (m)": 2.8794, + "Tp (total) (s)": 11.5078 + }, + { + "Date+Time": "1998-01-22T00:00:00Z", + "Hs (total) (m)": 3.2167, + "Tp (total) (s)": 11.8145 + }, + { + "Date+Time": "1998-01-23T00:00:00Z", + "Hs (total) (m)": 2.6215, + "Tp (total) (s)": 11.9289 + }, + { + "Date+Time": "1998-01-24T00:00:00Z", + "Hs (total) (m)": 0.9484, + "Tp (total) (s)": 11.182 + }, + { + "Date+Time": "1998-01-25T00:00:00Z", + "Hs (total) (m)": 1.9585, + "Tp (total) (s)": 16.3907 + }, + { + "Date+Time": "1998-01-26T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 14.5329 + }, + { + "Date+Time": "1998-01-27T00:00:00Z", + "Hs (total) (m)": 1.2528, + "Tp (total) (s)": 13.5014 + }, + { + "Date+Time": "1998-01-28T00:00:00Z", + "Hs (total) (m)": 0.9262, + "Tp (total) (s)": 11.0179 + }, + { + "Date+Time": "1998-01-29T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 8.9572 + }, + { + "Date+Time": "1998-01-30T00:00:00Z", + "Hs (total) (m)": 0.9781, + "Tp (total) (s)": 12.7224 + }, + { + "Date+Time": "1998-01-31T00:00:00Z", + "Hs (total) (m)": 1.1818, + "Tp (total) (s)": 11.8435 + }, + { + "Date+Time": "1998-02-01T00:00:00Z", + "Hs (total) (m)": 0.8904, + "Tp (total) (s)": 10.6388 + }, + { + "Date+Time": "1998-02-02T00:00:00Z", + "Hs (total) (m)": 0.6241, + "Tp (total) (s)": 9.4569 + }, + { + "Date+Time": "1998-02-03T00:00:00Z", + "Hs (total) (m)": 0.6287, + "Tp (total) (s)": 7.6647 + }, + { + "Date+Time": "1998-02-04T00:00:00Z", + "Hs (total) (m)": 1.6335, + "Tp (total) (s)": 8.195 + }, + { + "Date+Time": "1998-02-05T00:00:00Z", + "Hs (total) (m)": 1.6533, + "Tp (total) (s)": 10.7891 + }, + { + "Date+Time": "1998-02-06T00:00:00Z", + "Hs (total) (m)": 3.177, + "Tp (total) (s)": 9.875 + }, + { + "Date+Time": "1998-02-07T00:00:00Z", + "Hs (total) (m)": 3.2426, + "Tp (total) (s)": 12.3898 + }, + { + "Date+Time": "1998-02-08T00:00:00Z", + "Hs (total) (m)": 3.1823, + "Tp (total) (s)": 12.4325 + }, + { + "Date+Time": "1998-02-09T00:00:00Z", + "Hs (total) (m)": 4.1108, + "Tp (total) (s)": 12.9498 + }, + { + "Date+Time": "1998-02-10T00:00:00Z", + "Hs (total) (m)": 2.636, + "Tp (total) (s)": 12.3745 + }, + { + "Date+Time": "1998-02-11T00:00:00Z", + "Hs (total) (m)": 3.605, + "Tp (total) (s)": 14.0042 + }, + { + "Date+Time": "1998-02-12T00:00:00Z", + "Hs (total) (m)": 3.6157, + "Tp (total) (s)": 12.2944 + }, + { + "Date+Time": "1998-02-13T00:00:00Z", + "Hs (total) (m)": 2.9168, + "Tp (total) (s)": 11.3422 + }, + { + "Date+Time": "1998-02-14T00:00:00Z", + "Hs (total) (m)": 2.8161, + "Tp (total) (s)": 12.5477 + }, + { + "Date+Time": "1998-02-15T00:00:00Z", + "Hs (total) (m)": 2.4659, + "Tp (total) (s)": 11.5978 + }, + { + "Date+Time": "1998-02-16T00:00:00Z", + "Hs (total) (m)": 2.9321, + "Tp (total) (s)": 8.8992 + }, + { + "Date+Time": "1998-02-17T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 8.9488 + }, + { + "Date+Time": "1998-02-18T00:00:00Z", + "Hs (total) (m)": 1.4023, + "Tp (total) (s)": 12.2333 + }, + { + "Date+Time": "1998-02-19T00:00:00Z", + "Hs (total) (m)": 2.5262, + "Tp (total) (s)": 14.629 + }, + { + "Date+Time": "1998-02-20T00:00:00Z", + "Hs (total) (m)": 2.9054, + "Tp (total) (s)": 11.7046 + }, + { + "Date+Time": "1998-02-21T00:00:00Z", + "Hs (total) (m)": 2.8382, + "Tp (total) (s)": 10.8875 + }, + { + "Date+Time": "1998-02-22T00:00:00Z", + "Hs (total) (m)": 2.0676, + "Tp (total) (s)": 11.4711 + }, + { + "Date+Time": "1998-02-23T00:00:00Z", + "Hs (total) (m)": 2.6177, + "Tp (total) (s)": 10.3084 + }, + { + "Date+Time": "1998-02-24T00:00:00Z", + "Hs (total) (m)": 2.5529, + "Tp (total) (s)": 12.186 + }, + { + "Date+Time": "1998-02-25T00:00:00Z", + "Hs (total) (m)": 2.5872, + "Tp (total) (s)": 13.9554 + }, + { + "Date+Time": "1998-02-26T00:00:00Z", + "Hs (total) (m)": 3.4249, + "Tp (total) (s)": 12.6476 + }, + { + "Date+Time": "1998-02-27T00:00:00Z", + "Hs (total) (m)": 4.0391, + "Tp (total) (s)": 16.2809 + }, + { + "Date+Time": "1998-02-28T00:00:00Z", + "Hs (total) (m)": 3.6653, + "Tp (total) (s)": 15.3615 + }, + { + "Date+Time": "1998-03-01T00:00:00Z", + "Hs (total) (m)": 2.3026, + "Tp (total) (s)": 13.5975 + }, + { + "Date+Time": "1998-03-02T00:00:00Z", + "Hs (total) (m)": 2.2378, + "Tp (total) (s)": 11.6817 + }, + { + "Date+Time": "1998-03-03T00:00:00Z", + "Hs (total) (m)": 2.0844, + "Tp (total) (s)": 12.2295 + }, + { + "Date+Time": "1998-03-04T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 10.3153 + }, + { + "Date+Time": "1998-03-05T00:00:00Z", + "Hs (total) (m)": 2.9031, + "Tp (total) (s)": 10.4358 + }, + { + "Date+Time": "1998-03-06T00:00:00Z", + "Hs (total) (m)": 1.7968, + "Tp (total) (s)": 9.5935 + }, + { + "Date+Time": "1998-03-07T00:00:00Z", + "Hs (total) (m)": 3.3616, + "Tp (total) (s)": 10.7967 + }, + { + "Date+Time": "1998-03-08T00:00:00Z", + "Hs (total) (m)": 3.0229, + "Tp (total) (s)": 12.727 + }, + { + "Date+Time": "1998-03-09T00:00:00Z", + "Hs (total) (m)": 1.8761, + "Tp (total) (s)": 12.4874 + }, + { + "Date+Time": "1998-03-10T00:00:00Z", + "Hs (total) (m)": 2.0341, + "Tp (total) (s)": 10.3603 + }, + { + "Date+Time": "1998-03-11T00:00:00Z", + "Hs (total) (m)": 2.3705, + "Tp (total) (s)": 10.1001 + }, + { + "Date+Time": "1998-03-12T00:00:00Z", + "Hs (total) (m)": 1.7869, + "Tp (total) (s)": 10.6265 + }, + { + "Date+Time": "1998-03-13T00:00:00Z", + "Hs (total) (m)": 1.8242, + "Tp (total) (s)": 12.3112 + }, + { + "Date+Time": "1998-03-14T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 12.3363 + }, + { + "Date+Time": "1998-03-15T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 9.5843 + }, + { + "Date+Time": "1998-03-16T00:00:00Z", + "Hs (total) (m)": 1.5198, + "Tp (total) (s)": 13.831 + }, + { + "Date+Time": "1998-03-17T00:00:00Z", + "Hs (total) (m)": 2.0112, + "Tp (total) (s)": 15.0067 + }, + { + "Date+Time": "1998-03-18T00:00:00Z", + "Hs (total) (m)": 1.7228, + "Tp (total) (s)": 13.3396 + }, + { + "Date+Time": "1998-03-19T00:00:00Z", + "Hs (total) (m)": 1.4847, + "Tp (total) (s)": 12.2539 + }, + { + "Date+Time": "1998-03-20T00:00:00Z", + "Hs (total) (m)": 0.9323, + "Tp (total) (s)": 10.4686 + }, + { + "Date+Time": "1998-03-21T00:00:00Z", + "Hs (total) (m)": 0.4814, + "Tp (total) (s)": 9.5676 + }, + { + "Date+Time": "1998-03-22T00:00:00Z", + "Hs (total) (m)": 0.7828, + "Tp (total) (s)": 13.5449 + }, + { + "Date+Time": "1998-03-23T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 12.4615 + }, + { + "Date+Time": "1998-03-24T00:00:00Z", + "Hs (total) (m)": 1.8807, + "Tp (total) (s)": 7.4473 + }, + { + "Date+Time": "1998-03-25T00:00:00Z", + "Hs (total) (m)": 2.208, + "Tp (total) (s)": 12.4744 + }, + { + "Date+Time": "1998-03-26T00:00:00Z", + "Hs (total) (m)": 2.5086, + "Tp (total) (s)": 11.5635 + }, + { + "Date+Time": "1998-03-27T00:00:00Z", + "Hs (total) (m)": 2.1332, + "Tp (total) (s)": 10.358 + }, + { + "Date+Time": "1998-03-28T00:00:00Z", + "Hs (total) (m)": 3.0091, + "Tp (total) (s)": 12.3051 + }, + { + "Date+Time": "1998-03-29T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 12.3798 + }, + { + "Date+Time": "1998-03-30T00:00:00Z", + "Hs (total) (m)": 1.2871, + "Tp (total) (s)": 10.8005 + }, + { + "Date+Time": "1998-03-31T00:00:00Z", + "Hs (total) (m)": 0.9926, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "1998-04-01T00:00:00Z", + "Hs (total) (m)": 1.8189, + "Tp (total) (s)": 11.4872 + }, + { + "Date+Time": "1998-04-02T00:00:00Z", + "Hs (total) (m)": 1.8326, + "Tp (total) (s)": 14.8663 + }, + { + "Date+Time": "1998-04-03T00:00:00Z", + "Hs (total) (m)": 1.9692, + "Tp (total) (s)": 13.422 + }, + { + "Date+Time": "1998-04-04T00:00:00Z", + "Hs (total) (m)": 2.4758, + "Tp (total) (s)": 12.6583 + }, + { + "Date+Time": "1998-04-05T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 11.697 + }, + { + "Date+Time": "1998-04-06T00:00:00Z", + "Hs (total) (m)": 1.323, + "Tp (total) (s)": 10.6426 + }, + { + "Date+Time": "1998-04-07T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 8.3422 + }, + { + "Date+Time": "1998-04-08T00:00:00Z", + "Hs (total) (m)": 1.0277, + "Tp (total) (s)": 8.0409 + }, + { + "Date+Time": "1998-04-09T00:00:00Z", + "Hs (total) (m)": 1.6381, + "Tp (total) (s)": 11.7428 + }, + { + "Date+Time": "1998-04-10T00:00:00Z", + "Hs (total) (m)": 1.3436, + "Tp (total) (s)": 4.0391 + }, + { + "Date+Time": "1998-04-11T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 11.2651 + }, + { + "Date+Time": "1998-04-12T00:00:00Z", + "Hs (total) (m)": 0.9621, + "Tp (total) (s)": 8.2163 + }, + { + "Date+Time": "1998-04-13T00:00:00Z", + "Hs (total) (m)": 0.808, + "Tp (total) (s)": 7.8326 + }, + { + "Date+Time": "1998-04-14T00:00:00Z", + "Hs (total) (m)": 0.5341, + "Tp (total) (s)": 9.032 + }, + { + "Date+Time": "1998-04-15T00:00:00Z", + "Hs (total) (m)": 1.2429, + "Tp (total) (s)": 12.6202 + }, + { + "Date+Time": "1998-04-16T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 12.3356 + }, + { + "Date+Time": "1998-04-17T00:00:00Z", + "Hs (total) (m)": 1.2375, + "Tp (total) (s)": 8.4773 + }, + { + "Date+Time": "1998-04-18T00:00:00Z", + "Hs (total) (m)": 1.0872, + "Tp (total) (s)": 9.4661 + }, + { + "Date+Time": "1998-04-19T00:00:00Z", + "Hs (total) (m)": 1.175, + "Tp (total) (s)": 6.4211 + }, + { + "Date+Time": "1998-04-20T00:00:00Z", + "Hs (total) (m)": 1.9303, + "Tp (total) (s)": 11.7832 + }, + { + "Date+Time": "1998-04-21T00:00:00Z", + "Hs (total) (m)": 2.1882, + "Tp (total) (s)": 11.7412 + }, + { + "Date+Time": "1998-04-22T00:00:00Z", + "Hs (total) (m)": 2.5231, + "Tp (total) (s)": 11.4834 + }, + { + "Date+Time": "1998-04-23T00:00:00Z", + "Hs (total) (m)": 2.9313, + "Tp (total) (s)": 13.876 + }, + { + "Date+Time": "1998-04-24T00:00:00Z", + "Hs (total) (m)": 1.8967, + "Tp (total) (s)": 10.6235 + }, + { + "Date+Time": "1998-04-25T00:00:00Z", + "Hs (total) (m)": 2.5246, + "Tp (total) (s)": 9.7545 + }, + { + "Date+Time": "1998-04-26T00:00:00Z", + "Hs (total) (m)": 2.2752, + "Tp (total) (s)": 12.3836 + }, + { + "Date+Time": "1998-04-27T00:00:00Z", + "Hs (total) (m)": 1.7151, + "Tp (total) (s)": 11.4078 + }, + { + "Date+Time": "1998-04-28T00:00:00Z", + "Hs (total) (m)": 1.6633, + "Tp (total) (s)": 9.9956 + }, + { + "Date+Time": "1998-04-29T00:00:00Z", + "Hs (total) (m)": 0.7805, + "Tp (total) (s)": 8.5093 + }, + { + "Date+Time": "1998-04-30T00:00:00Z", + "Hs (total) (m)": 1.8235, + "Tp (total) (s)": 13.5907 + }, + { + "Date+Time": "1998-05-01T00:00:00Z", + "Hs (total) (m)": 1.1879, + "Tp (total) (s)": 11.4734 + }, + { + "Date+Time": "1998-05-02T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 12.6522 + }, + { + "Date+Time": "1998-05-03T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 10.8715 + }, + { + "Date+Time": "1998-05-04T00:00:00Z", + "Hs (total) (m)": 1.1605, + "Tp (total) (s)": 12.9276 + }, + { + "Date+Time": "1998-05-05T00:00:00Z", + "Hs (total) (m)": 1.9158, + "Tp (total) (s)": 7.6952 + }, + { + "Date+Time": "1998-05-06T00:00:00Z", + "Hs (total) (m)": 2.8535, + "Tp (total) (s)": 10.6899 + }, + { + "Date+Time": "1998-05-07T00:00:00Z", + "Hs (total) (m)": 2.9458, + "Tp (total) (s)": 8.8679 + }, + { + "Date+Time": "1998-05-08T00:00:00Z", + "Hs (total) (m)": 1.9478, + "Tp (total) (s)": 9.0968 + }, + { + "Date+Time": "1998-05-09T00:00:00Z", + "Hs (total) (m)": 1.4222, + "Tp (total) (s)": 10.4083 + }, + { + "Date+Time": "1998-05-10T00:00:00Z", + "Hs (total) (m)": 0.7393, + "Tp (total) (s)": 8.1095 + }, + { + "Date+Time": "1998-05-11T00:00:00Z", + "Hs (total) (m)": 0.4837, + "Tp (total) (s)": 6.5851 + }, + { + "Date+Time": "1998-05-12T00:00:00Z", + "Hs (total) (m)": 0.5814, + "Tp (total) (s)": 9.5439 + }, + { + "Date+Time": "1998-05-13T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 9.2128 + }, + { + "Date+Time": "1998-05-14T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 8.6528 + }, + { + "Date+Time": "1998-05-15T00:00:00Z", + "Hs (total) (m)": 1.2574, + "Tp (total) (s)": 11.4498 + }, + { + "Date+Time": "1998-05-16T00:00:00Z", + "Hs (total) (m)": 1.3688, + "Tp (total) (s)": 12.1906 + }, + { + "Date+Time": "1998-05-17T00:00:00Z", + "Hs (total) (m)": 1.194, + "Tp (total) (s)": 11.2384 + }, + { + "Date+Time": "1998-05-18T00:00:00Z", + "Hs (total) (m)": 0.8614, + "Tp (total) (s)": 9.8659 + }, + { + "Date+Time": "1998-05-19T00:00:00Z", + "Hs (total) (m)": 0.6981, + "Tp (total) (s)": 11.2178 + }, + { + "Date+Time": "1998-05-20T00:00:00Z", + "Hs (total) (m)": 0.7279, + "Tp (total) (s)": 10.0879 + }, + { + "Date+Time": "1998-05-21T00:00:00Z", + "Hs (total) (m)": 0.7294, + "Tp (total) (s)": 8.5238 + }, + { + "Date+Time": "1998-05-22T00:00:00Z", + "Hs (total) (m)": 0.6142, + "Tp (total) (s)": 8.3178 + }, + { + "Date+Time": "1998-05-23T00:00:00Z", + "Hs (total) (m)": 0.7393, + "Tp (total) (s)": 9.3989 + }, + { + "Date+Time": "1998-05-24T00:00:00Z", + "Hs (total) (m)": 0.885, + "Tp (total) (s)": 9.022 + }, + { + "Date+Time": "1998-05-25T00:00:00Z", + "Hs (total) (m)": 0.9316, + "Tp (total) (s)": 8.3743 + }, + { + "Date+Time": "1998-05-26T00:00:00Z", + "Hs (total) (m)": 1.0689, + "Tp (total) (s)": 6.6172 + }, + { + "Date+Time": "1998-05-27T00:00:00Z", + "Hs (total) (m)": 0.7744, + "Tp (total) (s)": 7.3397 + }, + { + "Date+Time": "1998-05-28T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 3.2205 + }, + { + "Date+Time": "1998-05-29T00:00:00Z", + "Hs (total) (m)": 0.5348, + "Tp (total) (s)": 2.7734 + }, + { + "Date+Time": "1998-05-30T00:00:00Z", + "Hs (total) (m)": 0.4769, + "Tp (total) (s)": 2.353 + }, + { + "Date+Time": "1998-05-31T00:00:00Z", + "Hs (total) (m)": 0.5432, + "Tp (total) (s)": 9.3577 + }, + { + "Date+Time": "1998-06-01T00:00:00Z", + "Hs (total) (m)": 0.4753, + "Tp (total) (s)": 2.4972 + }, + { + "Date+Time": "1998-06-02T00:00:00Z", + "Hs (total) (m)": 1.1063, + "Tp (total) (s)": 10.3137 + }, + { + "Date+Time": "1998-06-03T00:00:00Z", + "Hs (total) (m)": 0.5654, + "Tp (total) (s)": 2.7764 + }, + { + "Date+Time": "1998-06-04T00:00:00Z", + "Hs (total) (m)": 0.6058, + "Tp (total) (s)": 8.4155 + }, + { + "Date+Time": "1998-06-05T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 8.6268 + }, + { + "Date+Time": "1998-06-06T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 8.0416 + }, + { + "Date+Time": "1998-06-07T00:00:00Z", + "Hs (total) (m)": 0.9964, + "Tp (total) (s)": 7.4763 + }, + { + "Date+Time": "1998-06-08T00:00:00Z", + "Hs (total) (m)": 0.8087, + "Tp (total) (s)": 10.2634 + }, + { + "Date+Time": "1998-06-09T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 8.5948 + }, + { + "Date+Time": "1998-06-10T00:00:00Z", + "Hs (total) (m)": 2.0264, + "Tp (total) (s)": 10.2184 + }, + { + "Date+Time": "1998-06-11T00:00:00Z", + "Hs (total) (m)": 1.6778, + "Tp (total) (s)": 8.9305 + }, + { + "Date+Time": "1998-06-12T00:00:00Z", + "Hs (total) (m)": 1.2886, + "Tp (total) (s)": 10.6807 + }, + { + "Date+Time": "1998-06-13T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 6.5577 + }, + { + "Date+Time": "1998-06-14T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 9.0602 + }, + { + "Date+Time": "1998-06-15T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 9.8796 + }, + { + "Date+Time": "1998-06-16T00:00:00Z", + "Hs (total) (m)": 0.9171, + "Tp (total) (s)": 9.2998 + }, + { + "Date+Time": "1998-06-17T00:00:00Z", + "Hs (total) (m)": 0.9949, + "Tp (total) (s)": 7.6907 + }, + { + "Date+Time": "1998-06-18T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 7.2924 + }, + { + "Date+Time": "1998-06-19T00:00:00Z", + "Hs (total) (m)": 1.7716, + "Tp (total) (s)": 9.4058 + }, + { + "Date+Time": "1998-06-20T00:00:00Z", + "Hs (total) (m)": 1.458, + "Tp (total) (s)": 9.0617 + }, + { + "Date+Time": "1998-06-21T00:00:00Z", + "Hs (total) (m)": 1.3771, + "Tp (total) (s)": 8.5185 + }, + { + "Date+Time": "1998-06-22T00:00:00Z", + "Hs (total) (m)": 1.7922, + "Tp (total) (s)": 7.0948 + }, + { + "Date+Time": "1998-06-23T00:00:00Z", + "Hs (total) (m)": 2.3392, + "Tp (total) (s)": 7.355 + }, + { + "Date+Time": "1998-06-24T00:00:00Z", + "Hs (total) (m)": 2.1836, + "Tp (total) (s)": 9.4394 + }, + { + "Date+Time": "1998-06-25T00:00:00Z", + "Hs (total) (m)": 2.1187, + "Tp (total) (s)": 10.4076 + }, + { + "Date+Time": "1998-06-26T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 10.4007 + }, + { + "Date+Time": "1998-06-27T00:00:00Z", + "Hs (total) (m)": 1.6274, + "Tp (total) (s)": 8.7199 + }, + { + "Date+Time": "1998-06-28T00:00:00Z", + "Hs (total) (m)": 1.1322, + "Tp (total) (s)": 9.4317 + }, + { + "Date+Time": "1998-06-29T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 7.6014 + }, + { + "Date+Time": "1998-06-30T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 7.3496 + }, + { + "Date+Time": "1998-07-01T00:00:00Z", + "Hs (total) (m)": 0.7431, + "Tp (total) (s)": 7.6258 + }, + { + "Date+Time": "1998-07-02T00:00:00Z", + "Hs (total) (m)": 0.6272, + "Tp (total) (s)": 7.8104 + }, + { + "Date+Time": "1998-07-03T00:00:00Z", + "Hs (total) (m)": 0.6943, + "Tp (total) (s)": 7.8051 + }, + { + "Date+Time": "1998-07-04T00:00:00Z", + "Hs (total) (m)": 0.9919, + "Tp (total) (s)": 10.8821 + }, + { + "Date+Time": "1998-07-05T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 5.6955 + }, + { + "Date+Time": "1998-07-06T00:00:00Z", + "Hs (total) (m)": 1.175, + "Tp (total) (s)": 8.5444 + }, + { + "Date+Time": "1998-07-07T00:00:00Z", + "Hs (total) (m)": 0.8263, + "Tp (total) (s)": 8.5818 + }, + { + "Date+Time": "1998-07-08T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 7.8059 + }, + { + "Date+Time": "1998-07-09T00:00:00Z", + "Hs (total) (m)": 1.6015, + "Tp (total) (s)": 7.6662 + }, + { + "Date+Time": "1998-07-10T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 7.9531 + }, + { + "Date+Time": "1998-07-11T00:00:00Z", + "Hs (total) (m)": 1.7464, + "Tp (total) (s)": 7.7334 + }, + { + "Date+Time": "1998-07-12T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 10.2092 + }, + { + "Date+Time": "1998-07-13T00:00:00Z", + "Hs (total) (m)": 1.8906, + "Tp (total) (s)": 10.3236 + }, + { + "Date+Time": "1998-07-14T00:00:00Z", + "Hs (total) (m)": 1.6404, + "Tp (total) (s)": 10.9584 + }, + { + "Date+Time": "1998-07-15T00:00:00Z", + "Hs (total) (m)": 1.6274, + "Tp (total) (s)": 7.9043 + }, + { + "Date+Time": "1998-07-16T00:00:00Z", + "Hs (total) (m)": 0.9705, + "Tp (total) (s)": 9.0609 + }, + { + "Date+Time": "1998-07-17T00:00:00Z", + "Hs (total) (m)": 1.5091, + "Tp (total) (s)": 6.3318 + }, + { + "Date+Time": "1998-07-18T00:00:00Z", + "Hs (total) (m)": 2.0486, + "Tp (total) (s)": 7.8753 + }, + { + "Date+Time": "1998-07-19T00:00:00Z", + "Hs (total) (m)": 1.0842, + "Tp (total) (s)": 8.6726 + }, + { + "Date+Time": "1998-07-20T00:00:00Z", + "Hs (total) (m)": 1.5572, + "Tp (total) (s)": 7.1818 + }, + { + "Date+Time": "1998-07-21T00:00:00Z", + "Hs (total) (m)": 2.3095, + "Tp (total) (s)": 7.6098 + }, + { + "Date+Time": "1998-07-22T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 7.7609 + }, + { + "Date+Time": "1998-07-23T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 9.508 + }, + { + "Date+Time": "1998-07-24T00:00:00Z", + "Hs (total) (m)": 1.3153, + "Tp (total) (s)": 10.2878 + }, + { + "Date+Time": "1998-07-25T00:00:00Z", + "Hs (total) (m)": 0.8797, + "Tp (total) (s)": 8.5658 + }, + { + "Date+Time": "1998-07-26T00:00:00Z", + "Hs (total) (m)": 2.1508, + "Tp (total) (s)": 7.7227 + }, + { + "Date+Time": "1998-07-27T00:00:00Z", + "Hs (total) (m)": 1.236, + "Tp (total) (s)": 8.2797 + }, + { + "Date+Time": "1998-07-28T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 8.4254 + }, + { + "Date+Time": "1998-07-29T00:00:00Z", + "Hs (total) (m)": 1.3512, + "Tp (total) (s)": 7.1772 + }, + { + "Date+Time": "1998-07-30T00:00:00Z", + "Hs (total) (m)": 1.9578, + "Tp (total) (s)": 8.1866 + }, + { + "Date+Time": "1998-07-31T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 9.3181 + }, + { + "Date+Time": "1998-08-01T00:00:00Z", + "Hs (total) (m)": 1.0002, + "Tp (total) (s)": 7.8921 + }, + { + "Date+Time": "1998-08-02T00:00:00Z", + "Hs (total) (m)": 0.6317, + "Tp (total) (s)": 6.5043 + }, + { + "Date+Time": "1998-08-03T00:00:00Z", + "Hs (total) (m)": 2.5307, + "Tp (total) (s)": 7.6815 + }, + { + "Date+Time": "1998-08-04T00:00:00Z", + "Hs (total) (m)": 1.7472, + "Tp (total) (s)": 8.3361 + }, + { + "Date+Time": "1998-08-05T00:00:00Z", + "Hs (total) (m)": 1.6495, + "Tp (total) (s)": 10.5716 + }, + { + "Date+Time": "1998-08-06T00:00:00Z", + "Hs (total) (m)": 2.1821, + "Tp (total) (s)": 9.3661 + }, + { + "Date+Time": "1998-08-07T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 8.9152 + }, + { + "Date+Time": "1998-08-08T00:00:00Z", + "Hs (total) (m)": 1.6709, + "Tp (total) (s)": 7.7265 + }, + { + "Date+Time": "1998-08-09T00:00:00Z", + "Hs (total) (m)": 0.9018, + "Tp (total) (s)": 8.4193 + }, + { + "Date+Time": "1998-08-10T00:00:00Z", + "Hs (total) (m)": 1.3321, + "Tp (total) (s)": 10.4297 + }, + { + "Date+Time": "1998-08-11T00:00:00Z", + "Hs (total) (m)": 1.3771, + "Tp (total) (s)": 9.2067 + }, + { + "Date+Time": "1998-08-12T00:00:00Z", + "Hs (total) (m)": 2.1035, + "Tp (total) (s)": 8.2736 + }, + { + "Date+Time": "1998-08-13T00:00:00Z", + "Hs (total) (m)": 1.3001, + "Tp (total) (s)": 8.6428 + }, + { + "Date+Time": "1998-08-14T00:00:00Z", + "Hs (total) (m)": 1.7251, + "Tp (total) (s)": 7.1986 + }, + { + "Date+Time": "1998-08-15T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 12.1464 + }, + { + "Date+Time": "1998-08-16T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 11.4589 + }, + { + "Date+Time": "1998-08-17T00:00:00Z", + "Hs (total) (m)": 2.4903, + "Tp (total) (s)": 8.8443 + }, + { + "Date+Time": "1998-08-18T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 8.5948 + }, + { + "Date+Time": "1998-08-19T00:00:00Z", + "Hs (total) (m)": 1.3085, + "Tp (total) (s)": 9.2853 + }, + { + "Date+Time": "1998-08-20T00:00:00Z", + "Hs (total) (m)": 1.9303, + "Tp (total) (s)": 11.4719 + }, + { + "Date+Time": "1998-08-21T00:00:00Z", + "Hs (total) (m)": 2.5559, + "Tp (total) (s)": 10.387 + }, + { + "Date+Time": "1998-08-22T00:00:00Z", + "Hs (total) (m)": 1.4344, + "Tp (total) (s)": 10.0658 + }, + { + "Date+Time": "1998-08-23T00:00:00Z", + "Hs (total) (m)": 1.6861, + "Tp (total) (s)": 9.1639 + }, + { + "Date+Time": "1998-08-24T00:00:00Z", + "Hs (total) (m)": 1.6045, + "Tp (total) (s)": 8.4399 + }, + { + "Date+Time": "1998-08-25T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 9.3265 + }, + { + "Date+Time": "1998-08-26T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 9.5187 + }, + { + "Date+Time": "1998-08-27T00:00:00Z", + "Hs (total) (m)": 0.7904, + "Tp (total) (s)": 8.6436 + }, + { + "Date+Time": "1998-08-28T00:00:00Z", + "Hs (total) (m)": 0.4898, + "Tp (total) (s)": 8.6444 + }, + { + "Date+Time": "1998-08-29T00:00:00Z", + "Hs (total) (m)": 0.5135, + "Tp (total) (s)": 8.7886 + }, + { + "Date+Time": "1998-08-30T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 6.6263 + }, + { + "Date+Time": "1998-08-31T00:00:00Z", + "Hs (total) (m)": 1.5656, + "Tp (total) (s)": 8.5765 + }, + { + "Date+Time": "1998-09-01T00:00:00Z", + "Hs (total) (m)": 1.7487, + "Tp (total) (s)": 9.1762 + }, + { + "Date+Time": "1998-09-02T00:00:00Z", + "Hs (total) (m)": 1.6457, + "Tp (total) (s)": 10.3404 + }, + { + "Date+Time": "1998-09-03T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 9.2242 + }, + { + "Date+Time": "1998-09-04T00:00:00Z", + "Hs (total) (m)": 0.9873, + "Tp (total) (s)": 11.5558 + }, + { + "Date+Time": "1998-09-05T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 10.8188 + }, + { + "Date+Time": "1998-09-06T00:00:00Z", + "Hs (total) (m)": 1.5465, + "Tp (total) (s)": 9.0297 + }, + { + "Date+Time": "1998-09-07T00:00:00Z", + "Hs (total) (m)": 4.0567, + "Tp (total) (s)": 13.9958 + }, + { + "Date+Time": "1998-09-08T00:00:00Z", + "Hs (total) (m)": 3.0305, + "Tp (total) (s)": 10.4038 + }, + { + "Date+Time": "1998-09-09T00:00:00Z", + "Hs (total) (m)": 2.0249, + "Tp (total) (s)": 8.4666 + }, + { + "Date+Time": "1998-09-10T00:00:00Z", + "Hs (total) (m)": 2.987, + "Tp (total) (s)": 13.9698 + }, + { + "Date+Time": "1998-09-11T00:00:00Z", + "Hs (total) (m)": 1.7472, + "Tp (total) (s)": 11.7244 + }, + { + "Date+Time": "1998-09-12T00:00:00Z", + "Hs (total) (m)": 2.1805, + "Tp (total) (s)": 9.2128 + }, + { + "Date+Time": "1998-09-13T00:00:00Z", + "Hs (total) (m)": 2.0531, + "Tp (total) (s)": 11.3498 + }, + { + "Date+Time": "1998-09-14T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 8.8214 + }, + { + "Date+Time": "1998-09-15T00:00:00Z", + "Hs (total) (m)": 1.5305, + "Tp (total) (s)": 9.386 + }, + { + "Date+Time": "1998-09-16T00:00:00Z", + "Hs (total) (m)": 1.6831, + "Tp (total) (s)": 9.2463 + }, + { + "Date+Time": "1998-09-17T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "1998-09-18T00:00:00Z", + "Hs (total) (m)": 2.1134, + "Tp (total) (s)": 10.5274 + }, + { + "Date+Time": "1998-09-19T00:00:00Z", + "Hs (total) (m)": 2.2721, + "Tp (total) (s)": 12.495 + }, + { + "Date+Time": "1998-09-20T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 10.5701 + }, + { + "Date+Time": "1998-09-21T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 10.6555 + }, + { + "Date+Time": "1998-09-22T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 11.1835 + }, + { + "Date+Time": "1998-09-23T00:00:00Z", + "Hs (total) (m)": 0.8583, + "Tp (total) (s)": 9.5225 + }, + { + "Date+Time": "1998-09-24T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 11.3735 + }, + { + "Date+Time": "1998-09-25T00:00:00Z", + "Hs (total) (m)": 1.6587, + "Tp (total) (s)": 10.8875 + }, + { + "Date+Time": "1998-09-26T00:00:00Z", + "Hs (total) (m)": 0.7454, + "Tp (total) (s)": 9.4821 + }, + { + "Date+Time": "1998-09-27T00:00:00Z", + "Hs (total) (m)": 0.5058, + "Tp (total) (s)": 2.6872 + }, + { + "Date+Time": "1998-09-28T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 11.7908 + }, + { + "Date+Time": "1998-09-29T00:00:00Z", + "Hs (total) (m)": 1.5778, + "Tp (total) (s)": 10.6075 + }, + { + "Date+Time": "1998-09-30T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 9.5927 + }, + { + "Date+Time": "1998-10-01T00:00:00Z", + "Hs (total) (m)": 1.1612, + "Tp (total) (s)": 6.3967 + }, + { + "Date+Time": "1998-10-02T00:00:00Z", + "Hs (total) (m)": 0.9262, + "Tp (total) (s)": 8.5307 + }, + { + "Date+Time": "1998-10-03T00:00:00Z", + "Hs (total) (m)": 0.7508, + "Tp (total) (s)": 10.6326 + }, + { + "Date+Time": "1998-10-04T00:00:00Z", + "Hs (total) (m)": 1.4313, + "Tp (total) (s)": 9.8834 + }, + { + "Date+Time": "1998-10-05T00:00:00Z", + "Hs (total) (m)": 1.0338, + "Tp (total) (s)": 10.3114 + }, + { + "Date+Time": "1998-10-06T00:00:00Z", + "Hs (total) (m)": 0.5737, + "Tp (total) (s)": 8.4452 + }, + { + "Date+Time": "1998-10-07T00:00:00Z", + "Hs (total) (m)": 0.8782, + "Tp (total) (s)": 10.4442 + }, + { + "Date+Time": "1998-10-08T00:00:00Z", + "Hs (total) (m)": 0.9133, + "Tp (total) (s)": 10.4114 + }, + { + "Date+Time": "1998-10-09T00:00:00Z", + "Hs (total) (m)": 1.5526, + "Tp (total) (s)": 9.7125 + }, + { + "Date+Time": "1998-10-10T00:00:00Z", + "Hs (total) (m)": 2.118, + "Tp (total) (s)": 11.5017 + }, + { + "Date+Time": "1998-10-11T00:00:00Z", + "Hs (total) (m)": 2.6177, + "Tp (total) (s)": 10.0414 + }, + { + "Date+Time": "1998-10-12T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 13.4304 + }, + { + "Date+Time": "1998-10-13T00:00:00Z", + "Hs (total) (m)": 1.9494, + "Tp (total) (s)": 12.5271 + }, + { + "Date+Time": "1998-10-14T00:00:00Z", + "Hs (total) (m)": 1.9631, + "Tp (total) (s)": 9.6515 + }, + { + "Date+Time": "1998-10-15T00:00:00Z", + "Hs (total) (m)": 2.3743, + "Tp (total) (s)": 11.8099 + }, + { + "Date+Time": "1998-10-16T00:00:00Z", + "Hs (total) (m)": 1.6778, + "Tp (total) (s)": 11.6024 + }, + { + "Date+Time": "1998-10-17T00:00:00Z", + "Hs (total) (m)": 2.3087, + "Tp (total) (s)": 8.6146 + }, + { + "Date+Time": "1998-10-18T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 10.9035 + }, + { + "Date+Time": "1998-10-19T00:00:00Z", + "Hs (total) (m)": 1.1093, + "Tp (total) (s)": 7.0284 + }, + { + "Date+Time": "1998-10-20T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 9.4356 + }, + { + "Date+Time": "1998-10-21T00:00:00Z", + "Hs (total) (m)": 4.6793, + "Tp (total) (s)": 11.3224 + }, + { + "Date+Time": "1998-10-22T00:00:00Z", + "Hs (total) (m)": 3.8079, + "Tp (total) (s)": 11.4406 + }, + { + "Date+Time": "1998-10-23T00:00:00Z", + "Hs (total) (m)": 2.7726, + "Tp (total) (s)": 11.3819 + }, + { + "Date+Time": "1998-10-24T00:00:00Z", + "Hs (total) (m)": 2.1233, + "Tp (total) (s)": 11.1652 + }, + { + "Date+Time": "1998-10-25T00:00:00Z", + "Hs (total) (m)": 3.7011, + "Tp (total) (s)": 12.6774 + }, + { + "Date+Time": "1998-10-26T00:00:00Z", + "Hs (total) (m)": 2.398, + "Tp (total) (s)": 10.5373 + }, + { + "Date+Time": "1998-10-27T00:00:00Z", + "Hs (total) (m)": 4.3077, + "Tp (total) (s)": 9.5309 + }, + { + "Date+Time": "1998-10-28T00:00:00Z", + "Hs (total) (m)": 4.8692, + "Tp (total) (s)": 13.8005 + }, + { + "Date+Time": "1998-10-29T00:00:00Z", + "Hs (total) (m)": 3.4661, + "Tp (total) (s)": 13.7471 + }, + { + "Date+Time": "1998-10-30T00:00:00Z", + "Hs (total) (m)": 3.4989, + "Tp (total) (s)": 11.3529 + }, + { + "Date+Time": "1998-10-31T00:00:00Z", + "Hs (total) (m)": 1.7808, + "Tp (total) (s)": 11.9533 + }, + { + "Date+Time": "1998-11-01T00:00:00Z", + "Hs (total) (m)": 1.9082, + "Tp (total) (s)": 14.1392 + }, + { + "Date+Time": "1998-11-02T00:00:00Z", + "Hs (total) (m)": 1.9044, + "Tp (total) (s)": 12.0586 + }, + { + "Date+Time": "1998-11-03T00:00:00Z", + "Hs (total) (m)": 1.2894, + "Tp (total) (s)": 8.6299 + }, + { + "Date+Time": "1998-11-04T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 10.1054 + }, + { + "Date+Time": "1998-11-05T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 6.5531 + }, + { + "Date+Time": "1998-11-06T00:00:00Z", + "Hs (total) (m)": 2.118, + "Tp (total) (s)": 10.9401 + }, + { + "Date+Time": "1998-11-07T00:00:00Z", + "Hs (total) (m)": 1.9066, + "Tp (total) (s)": 7.0933 + }, + { + "Date+Time": "1998-11-08T00:00:00Z", + "Hs (total) (m)": 4.3031, + "Tp (total) (s)": 12.5828 + }, + { + "Date+Time": "1998-11-09T00:00:00Z", + "Hs (total) (m)": 5.2135, + "Tp (total) (s)": 10.6307 + }, + { + "Date+Time": "1998-11-10T00:00:00Z", + "Hs (total) (m)": 4.2199, + "Tp (total) (s)": 13.7715 + }, + { + "Date+Time": "1998-11-11T00:00:00Z", + "Hs (total) (m)": 2.5704, + "Tp (total) (s)": 12.7491 + }, + { + "Date+Time": "1998-11-12T00:00:00Z", + "Hs (total) (m)": 6.8642, + "Tp (total) (s)": 12.8928 + }, + { + "Date+Time": "1998-11-13T00:00:00Z", + "Hs (total) (m)": 2.1363, + "Tp (total) (s)": 12.7712 + }, + { + "Date+Time": "1998-11-14T00:00:00Z", + "Hs (total) (m)": 2.5506, + "Tp (total) (s)": 10.2687 + }, + { + "Date+Time": "1998-11-15T00:00:00Z", + "Hs (total) (m)": 1.3161, + "Tp (total) (s)": 10.3397 + }, + { + "Date+Time": "1998-11-16T00:00:00Z", + "Hs (total) (m)": 0.763, + "Tp (total) (s)": 9.4234 + }, + { + "Date+Time": "1998-11-17T00:00:00Z", + "Hs (total) (m)": 1.7205, + "Tp (total) (s)": 8.6398 + }, + { + "Date+Time": "1998-11-18T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 9.3081 + }, + { + "Date+Time": "1998-11-19T00:00:00Z", + "Hs (total) (m)": 1.2467, + "Tp (total) (s)": 9.1609 + }, + { + "Date+Time": "1998-11-20T00:00:00Z", + "Hs (total) (m)": 2.1653, + "Tp (total) (s)": 15.363 + }, + { + "Date+Time": "1998-11-21T00:00:00Z", + "Hs (total) (m)": 2.8954, + "Tp (total) (s)": 12.3768 + }, + { + "Date+Time": "1998-11-22T00:00:00Z", + "Hs (total) (m)": 3.1785, + "Tp (total) (s)": 14.2476 + }, + { + "Date+Time": "1998-11-23T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 12.4683 + }, + { + "Date+Time": "1998-11-24T00:00:00Z", + "Hs (total) (m)": 3.3448, + "Tp (total) (s)": 12.5362 + }, + { + "Date+Time": "1998-11-25T00:00:00Z", + "Hs (total) (m)": 3.3151, + "Tp (total) (s)": 14.6275 + }, + { + "Date+Time": "1998-11-26T00:00:00Z", + "Hs (total) (m)": 2.7436, + "Tp (total) (s)": 12.4607 + }, + { + "Date+Time": "1998-11-27T00:00:00Z", + "Hs (total) (m)": 2.4125, + "Tp (total) (s)": 12.5347 + }, + { + "Date+Time": "1998-11-28T00:00:00Z", + "Hs (total) (m)": 3.2517, + "Tp (total) (s)": 14.9213 + }, + { + "Date+Time": "1998-11-29T00:00:00Z", + "Hs (total) (m)": 4.5907, + "Tp (total) (s)": 16.5548 + }, + { + "Date+Time": "1998-11-30T00:00:00Z", + "Hs (total) (m)": 2.3721, + "Tp (total) (s)": 14.259 + }, + { + "Date+Time": "1998-12-01T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 11.549 + }, + { + "Date+Time": "1998-12-02T00:00:00Z", + "Hs (total) (m)": 1.6915, + "Tp (total) (s)": 12.7201 + }, + { + "Date+Time": "1998-12-03T00:00:00Z", + "Hs (total) (m)": 1.2825, + "Tp (total) (s)": 11.2613 + }, + { + "Date+Time": "1998-12-04T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 11.8 + }, + { + "Date+Time": "1998-12-05T00:00:00Z", + "Hs (total) (m)": 1.0811, + "Tp (total) (s)": 11.1698 + }, + { + "Date+Time": "1998-12-06T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 11.5177 + }, + { + "Date+Time": "1998-12-07T00:00:00Z", + "Hs (total) (m)": 2.2256, + "Tp (total) (s)": 12.3554 + }, + { + "Date+Time": "1998-12-08T00:00:00Z", + "Hs (total) (m)": 4.4023, + "Tp (total) (s)": 16.789 + }, + { + "Date+Time": "1998-12-09T00:00:00Z", + "Hs (total) (m)": 3.1594, + "Tp (total) (s)": 13.5708 + }, + { + "Date+Time": "1998-12-10T00:00:00Z", + "Hs (total) (m)": 4.1536, + "Tp (total) (s)": 12.9604 + }, + { + "Date+Time": "1998-12-11T00:00:00Z", + "Hs (total) (m)": 4.2589, + "Tp (total) (s)": 16.5357 + }, + { + "Date+Time": "1998-12-12T00:00:00Z", + "Hs (total) (m)": 3.3372, + "Tp (total) (s)": 12.3844 + }, + { + "Date+Time": "1998-12-13T00:00:00Z", + "Hs (total) (m)": 3.7126, + "Tp (total) (s)": 10.5609 + }, + { + "Date+Time": "1998-12-14T00:00:00Z", + "Hs (total) (m)": 4.2512, + "Tp (total) (s)": 10.6357 + }, + { + "Date+Time": "1998-12-15T00:00:00Z", + "Hs (total) (m)": 4.1398, + "Tp (total) (s)": 14.9625 + }, + { + "Date+Time": "1998-12-16T00:00:00Z", + "Hs (total) (m)": 2.8924, + "Tp (total) (s)": 11.9228 + }, + { + "Date+Time": "1998-12-17T00:00:00Z", + "Hs (total) (m)": 4.8732, + "Tp (total) (s)": 15.374 + }, + { + "Date+Time": "1998-12-18T00:00:00Z", + "Hs (total) (m)": 3.4326, + "Tp (total) (s)": 13.8615 + }, + { + "Date+Time": "1998-12-19T00:00:00Z", + "Hs (total) (m)": 2.9588, + "Tp (total) (s)": 11.9297 + }, + { + "Date+Time": "1998-12-20T00:00:00Z", + "Hs (total) (m)": 1.5862, + "Tp (total) (s)": 11.3605 + }, + { + "Date+Time": "1998-12-21T00:00:00Z", + "Hs (total) (m)": 1.503, + "Tp (total) (s)": 10.3038 + }, + { + "Date+Time": "1998-12-22T00:00:00Z", + "Hs (total) (m)": 2.5559, + "Tp (total) (s)": 14.9876 + }, + { + "Date+Time": "1998-12-23T00:00:00Z", + "Hs (total) (m)": 3.7263, + "Tp (total) (s)": 14.877 + }, + { + "Date+Time": "1998-12-24T00:00:00Z", + "Hs (total) (m)": 3.7294, + "Tp (total) (s)": 15.2326 + }, + { + "Date+Time": "1998-12-25T00:00:00Z", + "Hs (total) (m)": 3.9155, + "Tp (total) (s)": 12.5973 + }, + { + "Date+Time": "1998-12-26T00:00:00Z", + "Hs (total) (m)": 5.9489, + "Tp (total) (s)": 18.2197 + }, + { + "Date+Time": "1998-12-27T00:00:00Z", + "Hs (total) (m)": 6.2443, + "Tp (total) (s)": 15.3759 + }, + { + "Date+Time": "1998-12-28T00:00:00Z", + "Hs (total) (m)": 3.267, + "Tp (total) (s)": 13.7501 + }, + { + "Date+Time": "1998-12-29T00:00:00Z", + "Hs (total) (m)": 3.6439, + "Tp (total) (s)": 15.9406 + }, + { + "Date+Time": "1998-12-30T00:00:00Z", + "Hs (total) (m)": 4.2489, + "Tp (total) (s)": 13.8791 + }, + { + "Date+Time": "1998-12-31T00:00:00Z", + "Hs (total) (m)": 3.4188, + "Tp (total) (s)": 12.4218 + }, + { + "Date+Time": "1999-01-01T00:00:00Z", + "Hs (total) (m)": 4.5091, + "Tp (total) (s)": 15.3073 + }, + { + "Date+Time": "1999-01-02T00:00:00Z", + "Hs (total) (m)": 4.7388, + "Tp (total) (s)": 14.938 + }, + { + "Date+Time": "1999-01-03T00:00:00Z", + "Hs (total) (m)": 5.0598, + "Tp (total) (s)": 14.9132 + }, + { + "Date+Time": "1999-01-04T00:00:00Z", + "Hs (total) (m)": 5.1398, + "Tp (total) (s)": 15.4832 + }, + { + "Date+Time": "1999-01-05T00:00:00Z", + "Hs (total) (m)": 4.8624, + "Tp (total) (s)": 14.9503 + }, + { + "Date+Time": "1999-01-06T00:00:00Z", + "Hs (total) (m)": 3.4623, + "Tp (total) (s)": 13.9393 + }, + { + "Date+Time": "1999-01-07T00:00:00Z", + "Hs (total) (m)": 2.3927, + "Tp (total) (s)": 12.1967 + }, + { + "Date+Time": "1999-01-08T00:00:00Z", + "Hs (total) (m)": 2.707, + "Tp (total) (s)": 10.7196 + }, + { + "Date+Time": "1999-01-09T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 11.5345 + }, + { + "Date+Time": "1999-01-10T00:00:00Z", + "Hs (total) (m)": 2.1722, + "Tp (total) (s)": 12.1715 + }, + { + "Date+Time": "1999-01-11T00:00:00Z", + "Hs (total) (m)": 1.9059, + "Tp (total) (s)": 12.3699 + }, + { + "Date+Time": "1999-01-12T00:00:00Z", + "Hs (total) (m)": 3.4692, + "Tp (total) (s)": 14.4536 + }, + { + "Date+Time": "1999-01-13T00:00:00Z", + "Hs (total) (m)": 2.7184, + "Tp (total) (s)": 14.1018 + }, + { + "Date+Time": "1999-01-14T00:00:00Z", + "Hs (total) (m)": 3.1648, + "Tp (total) (s)": 13.6387 + }, + { + "Date+Time": "1999-01-15T00:00:00Z", + "Hs (total) (m)": 4.0941, + "Tp (total) (s)": 13.3473 + }, + { + "Date+Time": "1999-01-16T00:00:00Z", + "Hs (total) (m)": 4.6518, + "Tp (total) (s)": 14.1232 + }, + { + "Date+Time": "1999-01-17T00:00:00Z", + "Hs (total) (m)": 4.9363, + "Tp (total) (s)": 14.2218 + }, + { + "Date+Time": "1999-01-18T00:00:00Z", + "Hs (total) (m)": 4.3054, + "Tp (total) (s)": 15.8673 + }, + { + "Date+Time": "1999-01-19T00:00:00Z", + "Hs (total) (m)": 4.3802, + "Tp (total) (s)": 15.3806 + }, + { + "Date+Time": "1999-01-20T00:00:00Z", + "Hs (total) (m)": 3.5348, + "Tp (total) (s)": 12.4912 + }, + { + "Date+Time": "1999-01-21T00:00:00Z", + "Hs (total) (m)": 2.7787, + "Tp (total) (s)": 12.6377 + }, + { + "Date+Time": "1999-01-22T00:00:00Z", + "Hs (total) (m)": 2.2576, + "Tp (total) (s)": 12.6148 + }, + { + "Date+Time": "1999-01-23T00:00:00Z", + "Hs (total) (m)": 2.897, + "Tp (total) (s)": 9.6927 + }, + { + "Date+Time": "1999-01-24T00:00:00Z", + "Hs (total) (m)": 2.4773, + "Tp (total) (s)": 9.5042 + }, + { + "Date+Time": "1999-01-25T00:00:00Z", + "Hs (total) (m)": 2.2797, + "Tp (total) (s)": 9.8834 + }, + { + "Date+Time": "1999-01-26T00:00:00Z", + "Hs (total) (m)": 2.913, + "Tp (total) (s)": 10.2512 + }, + { + "Date+Time": "1999-01-27T00:00:00Z", + "Hs (total) (m)": 2.6757, + "Tp (total) (s)": 10.8295 + }, + { + "Date+Time": "1999-01-28T00:00:00Z", + "Hs (total) (m)": 2.6643, + "Tp (total) (s)": 10.7028 + }, + { + "Date+Time": "1999-01-29T00:00:00Z", + "Hs (total) (m)": 2.4697, + "Tp (total) (s)": 11.2735 + }, + { + "Date+Time": "1999-01-30T00:00:00Z", + "Hs (total) (m)": 1.9974, + "Tp (total) (s)": 11.8236 + }, + { + "Date+Time": "1999-01-31T00:00:00Z", + "Hs (total) (m)": 1.5557, + "Tp (total) (s)": 11.5017 + }, + { + "Date+Time": "1999-02-01T00:00:00Z", + "Hs (total) (m)": 1.9265, + "Tp (total) (s)": 12.4393 + }, + { + "Date+Time": "1999-02-02T00:00:00Z", + "Hs (total) (m)": 2.2904, + "Tp (total) (s)": 15.2219 + }, + { + "Date+Time": "1999-02-03T00:00:00Z", + "Hs (total) (m)": 2.7123, + "Tp (total) (s)": 13.6502 + }, + { + "Date+Time": "1999-02-04T00:00:00Z", + "Hs (total) (m)": 3.0755, + "Tp (total) (s)": 12.3775 + }, + { + "Date+Time": "1999-02-05T00:00:00Z", + "Hs (total) (m)": 2.7871, + "Tp (total) (s)": 12.3562 + }, + { + "Date+Time": "1999-02-06T00:00:00Z", + "Hs (total) (m)": 2.6765, + "Tp (total) (s)": 15.1318 + }, + { + "Date+Time": "1999-02-07T00:00:00Z", + "Hs (total) (m)": 2.6078, + "Tp (total) (s)": 15.0861 + }, + { + "Date+Time": "1999-02-08T00:00:00Z", + "Hs (total) (m)": 1.9921, + "Tp (total) (s)": 14.3117 + }, + { + "Date+Time": "1999-02-09T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 11.5352 + }, + { + "Date+Time": "1999-02-10T00:00:00Z", + "Hs (total) (m)": 1.4046, + "Tp (total) (s)": 9.4256 + }, + { + "Date+Time": "1999-02-11T00:00:00Z", + "Hs (total) (m)": 1.091, + "Tp (total) (s)": 7.9424 + }, + { + "Date+Time": "1999-02-12T00:00:00Z", + "Hs (total) (m)": 1.6648, + "Tp (total) (s)": 7.8692 + }, + { + "Date+Time": "1999-02-13T00:00:00Z", + "Hs (total) (m)": 1.3176, + "Tp (total) (s)": 11.3544 + }, + { + "Date+Time": "1999-02-14T00:00:00Z", + "Hs (total) (m)": 1.6335, + "Tp (total) (s)": 11.1446 + }, + { + "Date+Time": "1999-02-15T00:00:00Z", + "Hs (total) (m)": 1.5664, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "1999-02-16T00:00:00Z", + "Hs (total) (m)": 1.8456, + "Tp (total) (s)": 12.5103 + }, + { + "Date+Time": "1999-02-17T00:00:00Z", + "Hs (total) (m)": 2.1226, + "Tp (total) (s)": 12.8346 + }, + { + "Date+Time": "1999-02-18T00:00:00Z", + "Hs (total) (m)": 2.2408, + "Tp (total) (s)": 12.7285 + }, + { + "Date+Time": "1999-02-19T00:00:00Z", + "Hs (total) (m)": 2.6612, + "Tp (total) (s)": 11.4147 + }, + { + "Date+Time": "1999-02-20T00:00:00Z", + "Hs (total) (m)": 2.1989, + "Tp (total) (s)": 10.1825 + }, + { + "Date+Time": "1999-02-21T00:00:00Z", + "Hs (total) (m)": 2.5742, + "Tp (total) (s)": 13.7257 + }, + { + "Date+Time": "1999-02-22T00:00:00Z", + "Hs (total) (m)": 3.1411, + "Tp (total) (s)": 13.0749 + }, + { + "Date+Time": "1999-02-23T00:00:00Z", + "Hs (total) (m)": 2.9, + "Tp (total) (s)": 12.5126 + }, + { + "Date+Time": "1999-02-24T00:00:00Z", + "Hs (total) (m)": 2.2973, + "Tp (total) (s)": 12.6453 + }, + { + "Date+Time": "1999-02-25T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 12.7346 + }, + { + "Date+Time": "1999-02-26T00:00:00Z", + "Hs (total) (m)": 2.6231, + "Tp (total) (s)": 13.551 + }, + { + "Date+Time": "1999-02-27T00:00:00Z", + "Hs (total) (m)": 3.2548, + "Tp (total) (s)": 13.9904 + }, + { + "Date+Time": "1999-02-28T00:00:00Z", + "Hs (total) (m)": 4.3001, + "Tp (total) (s)": 15.1196 + }, + { + "Date+Time": "1999-03-01T00:00:00Z", + "Hs (total) (m)": 4.461, + "Tp (total) (s)": 15.936 + }, + { + "Date+Time": "1999-03-02T00:00:00Z", + "Hs (total) (m)": 3.6828, + "Tp (total) (s)": 15.2974 + }, + { + "Date+Time": "1999-03-03T00:00:00Z", + "Hs (total) (m)": 4.0979, + "Tp (total) (s)": 12.5332 + }, + { + "Date+Time": "1999-03-04T00:00:00Z", + "Hs (total) (m)": 3.8026, + "Tp (total) (s)": 14.4246 + }, + { + "Date+Time": "1999-03-05T00:00:00Z", + "Hs (total) (m)": 2.5941, + "Tp (total) (s)": 14.3941 + }, + { + "Date+Time": "1999-03-06T00:00:00Z", + "Hs (total) (m)": 1.6419, + "Tp (total) (s)": 11.7718 + }, + { + "Date+Time": "1999-03-07T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 10.7265 + }, + { + "Date+Time": "1999-03-08T00:00:00Z", + "Hs (total) (m)": 1.0475, + "Tp (total) (s)": 10.5548 + }, + { + "Date+Time": "1999-03-09T00:00:00Z", + "Hs (total) (m)": 0.8972, + "Tp (total) (s)": 10.3008 + }, + { + "Date+Time": "1999-03-10T00:00:00Z", + "Hs (total) (m)": 0.7752, + "Tp (total) (s)": 9.9231 + }, + { + "Date+Time": "1999-03-11T00:00:00Z", + "Hs (total) (m)": 0.6218, + "Tp (total) (s)": 9.4806 + }, + { + "Date+Time": "1999-03-12T00:00:00Z", + "Hs (total) (m)": 1.1818, + "Tp (total) (s)": 11.4132 + }, + { + "Date+Time": "1999-03-13T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 11.6817 + }, + { + "Date+Time": "1999-03-14T00:00:00Z", + "Hs (total) (m)": 2.4751, + "Tp (total) (s)": 12.2921 + }, + { + "Date+Time": "1999-03-15T00:00:00Z", + "Hs (total) (m)": 2.7558, + "Tp (total) (s)": 11.5635 + }, + { + "Date+Time": "1999-03-16T00:00:00Z", + "Hs (total) (m)": 2.6894, + "Tp (total) (s)": 10.2794 + }, + { + "Date+Time": "1999-03-17T00:00:00Z", + "Hs (total) (m)": 2.208, + "Tp (total) (s)": 10.7669 + }, + { + "Date+Time": "1999-03-18T00:00:00Z", + "Hs (total) (m)": 2.1508, + "Tp (total) (s)": 11.3865 + }, + { + "Date+Time": "1999-03-19T00:00:00Z", + "Hs (total) (m)": 1.7785, + "Tp (total) (s)": 11.5146 + }, + { + "Date+Time": "1999-03-20T00:00:00Z", + "Hs (total) (m)": 1.6343, + "Tp (total) (s)": 11.8595 + }, + { + "Date+Time": "1999-03-21T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 11.8442 + }, + { + "Date+Time": "1999-03-22T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 11.0782 + }, + { + "Date+Time": "1999-03-23T00:00:00Z", + "Hs (total) (m)": 2.1821, + "Tp (total) (s)": 11.4185 + }, + { + "Date+Time": "1999-03-24T00:00:00Z", + "Hs (total) (m)": 2.3499, + "Tp (total) (s)": 8.8939 + }, + { + "Date+Time": "1999-03-25T00:00:00Z", + "Hs (total) (m)": 1.9036, + "Tp (total) (s)": 9.418 + }, + { + "Date+Time": "1999-03-26T00:00:00Z", + "Hs (total) (m)": 1.6953, + "Tp (total) (s)": 9.4226 + }, + { + "Date+Time": "1999-03-27T00:00:00Z", + "Hs (total) (m)": 1.5351, + "Tp (total) (s)": 9.8773 + }, + { + "Date+Time": "1999-03-28T00:00:00Z", + "Hs (total) (m)": 1.6594, + "Tp (total) (s)": 11.5001 + }, + { + "Date+Time": "1999-03-29T00:00:00Z", + "Hs (total) (m)": 2.7215, + "Tp (total) (s)": 9.5332 + }, + { + "Date+Time": "1999-03-30T00:00:00Z", + "Hs (total) (m)": 3.3715, + "Tp (total) (s)": 13.0596 + }, + { + "Date+Time": "1999-03-31T00:00:00Z", + "Hs (total) (m)": 2.5781, + "Tp (total) (s)": 12.8178 + }, + { + "Date+Time": "1999-04-01T00:00:00Z", + "Hs (total) (m)": 2.4415, + "Tp (total) (s)": 9.5141 + }, + { + "Date+Time": "1999-04-02T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 9.2837 + }, + { + "Date+Time": "1999-04-03T00:00:00Z", + "Hs (total) (m)": 1.2688, + "Tp (total) (s)": 8.6802 + }, + { + "Date+Time": "1999-04-04T00:00:00Z", + "Hs (total) (m)": 1.5236, + "Tp (total) (s)": 8.8015 + }, + { + "Date+Time": "1999-04-05T00:00:00Z", + "Hs (total) (m)": 2.1981, + "Tp (total) (s)": 10.9577 + }, + { + "Date+Time": "1999-04-06T00:00:00Z", + "Hs (total) (m)": 2.9283, + "Tp (total) (s)": 12.6209 + }, + { + "Date+Time": "1999-04-07T00:00:00Z", + "Hs (total) (m)": 2.4697, + "Tp (total) (s)": 10.4579 + }, + { + "Date+Time": "1999-04-08T00:00:00Z", + "Hs (total) (m)": 2.0554, + "Tp (total) (s)": 10.3946 + }, + { + "Date+Time": "1999-04-09T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 10.4358 + }, + { + "Date+Time": "1999-04-10T00:00:00Z", + "Hs (total) (m)": 2.5567, + "Tp (total) (s)": 10.8844 + }, + { + "Date+Time": "1999-04-11T00:00:00Z", + "Hs (total) (m)": 2.311, + "Tp (total) (s)": 11.2865 + }, + { + "Date+Time": "1999-04-12T00:00:00Z", + "Hs (total) (m)": 2.781, + "Tp (total) (s)": 10.4358 + }, + { + "Date+Time": "1999-04-13T00:00:00Z", + "Hs (total) (m)": 2.7039, + "Tp (total) (s)": 11.137 + }, + { + "Date+Time": "1999-04-14T00:00:00Z", + "Hs (total) (m)": 2.459, + "Tp (total) (s)": 11.2987 + }, + { + "Date+Time": "1999-04-15T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 10.8814 + }, + { + "Date+Time": "1999-04-16T00:00:00Z", + "Hs (total) (m)": 1.5358, + "Tp (total) (s)": 10.7051 + }, + { + "Date+Time": "1999-04-17T00:00:00Z", + "Hs (total) (m)": 1.1437, + "Tp (total) (s)": 11.626 + }, + { + "Date+Time": "1999-04-18T00:00:00Z", + "Hs (total) (m)": 1.0796, + "Tp (total) (s)": 11.1751 + }, + { + "Date+Time": "1999-04-19T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 11.5688 + }, + { + "Date+Time": "1999-04-20T00:00:00Z", + "Hs (total) (m)": 1.7167, + "Tp (total) (s)": 5.388 + }, + { + "Date+Time": "1999-04-21T00:00:00Z", + "Hs (total) (m)": 2.8893, + "Tp (total) (s)": 13.5739 + }, + { + "Date+Time": "1999-04-22T00:00:00Z", + "Hs (total) (m)": 2.3209, + "Tp (total) (s)": 12.9673 + }, + { + "Date+Time": "1999-04-23T00:00:00Z", + "Hs (total) (m)": 2.6391, + "Tp (total) (s)": 12.4996 + }, + { + "Date+Time": "1999-04-24T00:00:00Z", + "Hs (total) (m)": 2.4697, + "Tp (total) (s)": 12.241 + }, + { + "Date+Time": "1999-04-25T00:00:00Z", + "Hs (total) (m)": 2.517, + "Tp (total) (s)": 9.2563 + }, + { + "Date+Time": "1999-04-26T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 15.08 + }, + { + "Date+Time": "1999-04-27T00:00:00Z", + "Hs (total) (m)": 1.9288, + "Tp (total) (s)": 14.0187 + }, + { + "Date+Time": "1999-04-28T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 13.7432 + }, + { + "Date+Time": "1999-04-29T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 13.4297 + }, + { + "Date+Time": "1999-04-30T00:00:00Z", + "Hs (total) (m)": 1.1719, + "Tp (total) (s)": 12.8491 + }, + { + "Date+Time": "1999-05-01T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 12.0739 + }, + { + "Date+Time": "1999-05-02T00:00:00Z", + "Hs (total) (m)": 0.8065, + "Tp (total) (s)": 10.7288 + }, + { + "Date+Time": "1999-05-03T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 8.4933 + }, + { + "Date+Time": "1999-05-04T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 10.0703 + }, + { + "Date+Time": "1999-05-05T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 11.4864 + }, + { + "Date+Time": "1999-05-06T00:00:00Z", + "Hs (total) (m)": 1.5427, + "Tp (total) (s)": 12.8468 + }, + { + "Date+Time": "1999-05-07T00:00:00Z", + "Hs (total) (m)": 1.4519, + "Tp (total) (s)": 12.6209 + }, + { + "Date+Time": "1999-05-08T00:00:00Z", + "Hs (total) (m)": 1.8036, + "Tp (total) (s)": 9.3013 + }, + { + "Date+Time": "1999-05-09T00:00:00Z", + "Hs (total) (m)": 1.5702, + "Tp (total) (s)": 9.3638 + }, + { + "Date+Time": "1999-05-10T00:00:00Z", + "Hs (total) (m)": 2.8466, + "Tp (total) (s)": 11.9175 + }, + { + "Date+Time": "1999-05-11T00:00:00Z", + "Hs (total) (m)": 3.1297, + "Tp (total) (s)": 11.3865 + }, + { + "Date+Time": "1999-05-12T00:00:00Z", + "Hs (total) (m)": 2.5643, + "Tp (total) (s)": 10.654 + }, + { + "Date+Time": "1999-05-13T00:00:00Z", + "Hs (total) (m)": 1.9822, + "Tp (total) (s)": 8.1317 + }, + { + "Date+Time": "1999-05-14T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 7.9402 + }, + { + "Date+Time": "1999-05-15T00:00:00Z", + "Hs (total) (m)": 0.9087, + "Tp (total) (s)": 7.7868 + }, + { + "Date+Time": "1999-05-16T00:00:00Z", + "Hs (total) (m)": 0.7111, + "Tp (total) (s)": 7.3878 + }, + { + "Date+Time": "1999-05-17T00:00:00Z", + "Hs (total) (m)": 0.6493, + "Tp (total) (s)": 9.3791 + }, + { + "Date+Time": "1999-05-18T00:00:00Z", + "Hs (total) (m)": 0.8118, + "Tp (total) (s)": 9.4127 + }, + { + "Date+Time": "1999-05-19T00:00:00Z", + "Hs (total) (m)": 0.8957, + "Tp (total) (s)": 12.656 + }, + { + "Date+Time": "1999-05-20T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 11.0065 + }, + { + "Date+Time": "1999-05-21T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 9.5668 + }, + { + "Date+Time": "1999-05-22T00:00:00Z", + "Hs (total) (m)": 2.1744, + "Tp (total) (s)": 9.4562 + }, + { + "Date+Time": "1999-05-23T00:00:00Z", + "Hs (total) (m)": 2.6002, + "Tp (total) (s)": 12.7537 + }, + { + "Date+Time": "1999-05-24T00:00:00Z", + "Hs (total) (m)": 2.5643, + "Tp (total) (s)": 12.5416 + }, + { + "Date+Time": "1999-05-25T00:00:00Z", + "Hs (total) (m)": 2.2317, + "Tp (total) (s)": 11.9701 + }, + { + "Date+Time": "1999-05-26T00:00:00Z", + "Hs (total) (m)": 2.2462, + "Tp (total) (s)": 11.1866 + }, + { + "Date+Time": "1999-05-27T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 11.1034 + }, + { + "Date+Time": "1999-05-28T00:00:00Z", + "Hs (total) (m)": 1.3703, + "Tp (total) (s)": 10.0314 + }, + { + "Date+Time": "1999-05-29T00:00:00Z", + "Hs (total) (m)": 0.9507, + "Tp (total) (s)": 8.61 + }, + { + "Date+Time": "1999-05-30T00:00:00Z", + "Hs (total) (m)": 0.8904, + "Tp (total) (s)": 8.3605 + }, + { + "Date+Time": "1999-05-31T00:00:00Z", + "Hs (total) (m)": 0.5928, + "Tp (total) (s)": 7.7929 + }, + { + "Date+Time": "1999-06-01T00:00:00Z", + "Hs (total) (m)": 0.4845, + "Tp (total) (s)": 10.3175 + }, + { + "Date+Time": "1999-06-02T00:00:00Z", + "Hs (total) (m)": 0.6378, + "Tp (total) (s)": 9.2669 + }, + { + "Date+Time": "1999-06-03T00:00:00Z", + "Hs (total) (m)": 0.7523, + "Tp (total) (s)": 9.1853 + }, + { + "Date+Time": "1999-06-04T00:00:00Z", + "Hs (total) (m)": 1.5587, + "Tp (total) (s)": 11.1782 + }, + { + "Date+Time": "1999-06-05T00:00:00Z", + "Hs (total) (m)": 2.926, + "Tp (total) (s)": 12.4294 + }, + { + "Date+Time": "1999-06-06T00:00:00Z", + "Hs (total) (m)": 2.4506, + "Tp (total) (s)": 12.4729 + }, + { + "Date+Time": "1999-06-07T00:00:00Z", + "Hs (total) (m)": 1.9082, + "Tp (total) (s)": 12.4042 + }, + { + "Date+Time": "1999-06-08T00:00:00Z", + "Hs (total) (m)": 1.2604, + "Tp (total) (s)": 11.7374 + }, + { + "Date+Time": "1999-06-09T00:00:00Z", + "Hs (total) (m)": 0.9629, + "Tp (total) (s)": 10.1642 + }, + { + "Date+Time": "1999-06-10T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 8.8679 + }, + { + "Date+Time": "1999-06-11T00:00:00Z", + "Hs (total) (m)": 0.8133, + "Tp (total) (s)": 8.9885 + }, + { + "Date+Time": "1999-06-12T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 9.2364 + }, + { + "Date+Time": "1999-06-13T00:00:00Z", + "Hs (total) (m)": 1.0338, + "Tp (total) (s)": 11.3514 + }, + { + "Date+Time": "1999-06-14T00:00:00Z", + "Hs (total) (m)": 1.7502, + "Tp (total) (s)": 9.7652 + }, + { + "Date+Time": "1999-06-15T00:00:00Z", + "Hs (total) (m)": 1.5419, + "Tp (total) (s)": 8.8214 + }, + { + "Date+Time": "1999-06-16T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 8.652 + }, + { + "Date+Time": "1999-06-17T00:00:00Z", + "Hs (total) (m)": 1.5702, + "Tp (total) (s)": 8.7001 + }, + { + "Date+Time": "1999-06-18T00:00:00Z", + "Hs (total) (m)": 1.3474, + "Tp (total) (s)": 11.256 + }, + { + "Date+Time": "1999-06-19T00:00:00Z", + "Hs (total) (m)": 1.3001, + "Tp (total) (s)": 10.8074 + }, + { + "Date+Time": "1999-06-20T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 8.5337 + }, + { + "Date+Time": "1999-06-21T00:00:00Z", + "Hs (total) (m)": 1.6816, + "Tp (total) (s)": 9.4836 + }, + { + "Date+Time": "1999-06-22T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 9.518 + }, + { + "Date+Time": "1999-06-23T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 9.3646 + }, + { + "Date+Time": "1999-06-24T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 9.4028 + }, + { + "Date+Time": "1999-06-25T00:00:00Z", + "Hs (total) (m)": 1.0422, + "Tp (total) (s)": 8.8908 + }, + { + "Date+Time": "1999-06-26T00:00:00Z", + "Hs (total) (m)": 1.1429, + "Tp (total) (s)": 8.0889 + }, + { + "Date+Time": "1999-06-27T00:00:00Z", + "Hs (total) (m)": 1.2642, + "Tp (total) (s)": 11.568 + }, + { + "Date+Time": "1999-06-28T00:00:00Z", + "Hs (total) (m)": 1.6533, + "Tp (total) (s)": 11.4093 + }, + { + "Date+Time": "1999-06-29T00:00:00Z", + "Hs (total) (m)": 1.6449, + "Tp (total) (s)": 11.1484 + }, + { + "Date+Time": "1999-06-30T00:00:00Z", + "Hs (total) (m)": 1.4748, + "Tp (total) (s)": 9.4676 + }, + { + "Date+Time": "1999-07-01T00:00:00Z", + "Hs (total) (m)": 1.0781, + "Tp (total) (s)": 8.3354 + }, + { + "Date+Time": "1999-07-02T00:00:00Z", + "Hs (total) (m)": 1.0689, + "Tp (total) (s)": 7.783 + }, + { + "Date+Time": "1999-07-03T00:00:00Z", + "Hs (total) (m)": 1.6938, + "Tp (total) (s)": 9.302 + }, + { + "Date+Time": "1999-07-04T00:00:00Z", + "Hs (total) (m)": 2.0852, + "Tp (total) (s)": 10.3488 + }, + { + "Date+Time": "1999-07-05T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 9.4623 + }, + { + "Date+Time": "1999-07-06T00:00:00Z", + "Hs (total) (m)": 0.8713, + "Tp (total) (s)": 8.3514 + }, + { + "Date+Time": "1999-07-07T00:00:00Z", + "Hs (total) (m)": 0.9987, + "Tp (total) (s)": 9.3204 + }, + { + "Date+Time": "1999-07-08T00:00:00Z", + "Hs (total) (m)": 1.5236, + "Tp (total) (s)": 8.3361 + }, + { + "Date+Time": "1999-07-09T00:00:00Z", + "Hs (total) (m)": 1.6869, + "Tp (total) (s)": 10.8303 + }, + { + "Date+Time": "1999-07-10T00:00:00Z", + "Hs (total) (m)": 1.4931, + "Tp (total) (s)": 10.8051 + }, + { + "Date+Time": "1999-07-11T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 10.2474 + }, + { + "Date+Time": "1999-07-12T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 9.1464 + }, + { + "Date+Time": "1999-07-13T00:00:00Z", + "Hs (total) (m)": 0.7859, + "Tp (total) (s)": 8.7031 + }, + { + "Date+Time": "1999-07-14T00:00:00Z", + "Hs (total) (m)": 1.7251, + "Tp (total) (s)": 8.2965 + }, + { + "Date+Time": "1999-07-15T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 8.1965 + }, + { + "Date+Time": "1999-07-16T00:00:00Z", + "Hs (total) (m)": 1.7701, + "Tp (total) (s)": 8.5742 + }, + { + "Date+Time": "1999-07-17T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 8.6245 + }, + { + "Date+Time": "1999-07-18T00:00:00Z", + "Hs (total) (m)": 1.5809, + "Tp (total) (s)": 8.3003 + }, + { + "Date+Time": "1999-07-19T00:00:00Z", + "Hs (total) (m)": 1.5923, + "Tp (total) (s)": 8.8092 + }, + { + "Date+Time": "1999-07-20T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 6.5882 + }, + { + "Date+Time": "1999-07-21T00:00:00Z", + "Hs (total) (m)": 2.3881, + "Tp (total) (s)": 8.8015 + }, + { + "Date+Time": "1999-07-22T00:00:00Z", + "Hs (total) (m)": 1.9967, + "Tp (total) (s)": 9.2296 + }, + { + "Date+Time": "1999-07-23T00:00:00Z", + "Hs (total) (m)": 0.927, + "Tp (total) (s)": 9.2288 + }, + { + "Date+Time": "1999-07-24T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 7.7845 + }, + { + "Date+Time": "1999-07-25T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 8.4178 + }, + { + "Date+Time": "1999-07-26T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 9.2486 + }, + { + "Date+Time": "1999-07-27T00:00:00Z", + "Hs (total) (m)": 0.6081, + "Tp (total) (s)": 2.6666 + }, + { + "Date+Time": "1999-07-28T00:00:00Z", + "Hs (total) (m)": 0.4212, + "Tp (total) (s)": 2.7337 + }, + { + "Date+Time": "1999-07-29T00:00:00Z", + "Hs (total) (m)": 1.4451, + "Tp (total) (s)": 13.9004 + }, + { + "Date+Time": "1999-07-30T00:00:00Z", + "Hs (total) (m)": 1.5755, + "Tp (total) (s)": 12.4126 + }, + { + "Date+Time": "1999-07-31T00:00:00Z", + "Hs (total) (m)": 1.0956, + "Tp (total) (s)": 10.3214 + }, + { + "Date+Time": "1999-08-01T00:00:00Z", + "Hs (total) (m)": 0.8599, + "Tp (total) (s)": 8.7085 + }, + { + "Date+Time": "1999-08-02T00:00:00Z", + "Hs (total) (m)": 0.8713, + "Tp (total) (s)": 8.1187 + }, + { + "Date+Time": "1999-08-03T00:00:00Z", + "Hs (total) (m)": 1.1513, + "Tp (total) (s)": 7.7097 + }, + { + "Date+Time": "1999-08-04T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 8.5063 + }, + { + "Date+Time": "1999-08-05T00:00:00Z", + "Hs (total) (m)": 0.7614, + "Tp (total) (s)": 8.5185 + }, + { + "Date+Time": "1999-08-06T00:00:00Z", + "Hs (total) (m)": 0.7279, + "Tp (total) (s)": 10.1367 + }, + { + "Date+Time": "1999-08-07T00:00:00Z", + "Hs (total) (m)": 0.866, + "Tp (total) (s)": 9.4317 + }, + { + "Date+Time": "1999-08-08T00:00:00Z", + "Hs (total) (m)": 0.6882, + "Tp (total) (s)": 8.6665 + }, + { + "Date+Time": "1999-08-09T00:00:00Z", + "Hs (total) (m)": 0.4326, + "Tp (total) (s)": 2.6711 + }, + { + "Date+Time": "1999-08-10T00:00:00Z", + "Hs (total) (m)": 0.3914, + "Tp (total) (s)": 7.9882 + }, + { + "Date+Time": "1999-08-11T00:00:00Z", + "Hs (total) (m)": 0.4723, + "Tp (total) (s)": 8.2636 + }, + { + "Date+Time": "1999-08-12T00:00:00Z", + "Hs (total) (m)": 0.9293, + "Tp (total) (s)": 5.8123 + }, + { + "Date+Time": "1999-08-13T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 8.7077 + }, + { + "Date+Time": "1999-08-14T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 7.1001 + }, + { + "Date+Time": "1999-08-15T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 8.5719 + }, + { + "Date+Time": "1999-08-16T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 8.6108 + }, + { + "Date+Time": "1999-08-17T00:00:00Z", + "Hs (total) (m)": 1.1971, + "Tp (total) (s)": 8.5124 + }, + { + "Date+Time": "1999-08-18T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 9.2601 + }, + { + "Date+Time": "1999-08-19T00:00:00Z", + "Hs (total) (m)": 1.1788, + "Tp (total) (s)": 9.6622 + }, + { + "Date+Time": "1999-08-20T00:00:00Z", + "Hs (total) (m)": 0.6607, + "Tp (total) (s)": 8.5063 + }, + { + "Date+Time": "1999-08-21T00:00:00Z", + "Hs (total) (m)": 0.4379, + "Tp (total) (s)": 6.0305 + }, + { + "Date+Time": "1999-08-22T00:00:00Z", + "Hs (total) (m)": 0.6706, + "Tp (total) (s)": 3.0183 + }, + { + "Date+Time": "1999-08-23T00:00:00Z", + "Hs (total) (m)": 0.8209, + "Tp (total) (s)": 3.6004 + }, + { + "Date+Time": "1999-08-24T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 3.811 + }, + { + "Date+Time": "1999-08-25T00:00:00Z", + "Hs (total) (m)": 0.8667, + "Tp (total) (s)": 4.5671 + }, + { + "Date+Time": "1999-08-26T00:00:00Z", + "Hs (total) (m)": 0.9293, + "Tp (total) (s)": 9.8201 + }, + { + "Date+Time": "1999-08-27T00:00:00Z", + "Hs (total) (m)": 1.294, + "Tp (total) (s)": 6.7766 + }, + { + "Date+Time": "1999-08-28T00:00:00Z", + "Hs (total) (m)": 1.1475, + "Tp (total) (s)": 10.7486 + }, + { + "Date+Time": "1999-08-29T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 10.342 + }, + { + "Date+Time": "1999-08-30T00:00:00Z", + "Hs (total) (m)": 1.5763, + "Tp (total) (s)": 9.4172 + }, + { + "Date+Time": "1999-08-31T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 9.6164 + }, + { + "Date+Time": "1999-09-01T00:00:00Z", + "Hs (total) (m)": 1.5915, + "Tp (total) (s)": 9.8041 + }, + { + "Date+Time": "1999-09-02T00:00:00Z", + "Hs (total) (m)": 1.7052, + "Tp (total) (s)": 9.5447 + }, + { + "Date+Time": "1999-09-03T00:00:00Z", + "Hs (total) (m)": 2.0104, + "Tp (total) (s)": 11.2209 + }, + { + "Date+Time": "1999-09-04T00:00:00Z", + "Hs (total) (m)": 2.0356, + "Tp (total) (s)": 12.8597 + }, + { + "Date+Time": "1999-09-05T00:00:00Z", + "Hs (total) (m)": 1.7205, + "Tp (total) (s)": 12.3783 + }, + { + "Date+Time": "1999-09-06T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 10.8203 + }, + { + "Date+Time": "1999-09-07T00:00:00Z", + "Hs (total) (m)": 1.2078, + "Tp (total) (s)": 11.5116 + }, + { + "Date+Time": "1999-09-08T00:00:00Z", + "Hs (total) (m)": 1.7197, + "Tp (total) (s)": 10.0269 + }, + { + "Date+Time": "1999-09-09T00:00:00Z", + "Hs (total) (m)": 3.7378, + "Tp (total) (s)": 10.477 + }, + { + "Date+Time": "1999-09-10T00:00:00Z", + "Hs (total) (m)": 2.4705, + "Tp (total) (s)": 11.2682 + }, + { + "Date+Time": "1999-09-11T00:00:00Z", + "Hs (total) (m)": 3.048, + "Tp (total) (s)": 12.4462 + }, + { + "Date+Time": "1999-09-12T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 11.0691 + }, + { + "Date+Time": "1999-09-13T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 9.6522 + }, + { + "Date+Time": "1999-09-14T00:00:00Z", + "Hs (total) (m)": 1.1513, + "Tp (total) (s)": 9.9658 + }, + { + "Date+Time": "1999-09-15T00:00:00Z", + "Hs (total) (m)": 1.5519, + "Tp (total) (s)": 6.592 + }, + { + "Date+Time": "1999-09-16T00:00:00Z", + "Hs (total) (m)": 1.8502, + "Tp (total) (s)": 8.1889 + }, + { + "Date+Time": "1999-09-17T00:00:00Z", + "Hs (total) (m)": 2.7421, + "Tp (total) (s)": 13.8279 + }, + { + "Date+Time": "1999-09-18T00:00:00Z", + "Hs (total) (m)": 2.0211, + "Tp (total) (s)": 10.8913 + }, + { + "Date+Time": "1999-09-19T00:00:00Z", + "Hs (total) (m)": 3.4112, + "Tp (total) (s)": 11.2041 + }, + { + "Date+Time": "1999-09-20T00:00:00Z", + "Hs (total) (m)": 2.4026, + "Tp (total) (s)": 12.1975 + }, + { + "Date+Time": "1999-09-21T00:00:00Z", + "Hs (total) (m)": 1.7891, + "Tp (total) (s)": 9.212 + }, + { + "Date+Time": "1999-09-22T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 7.0894 + }, + { + "Date+Time": "1999-09-23T00:00:00Z", + "Hs (total) (m)": 1.4603, + "Tp (total) (s)": 11.1209 + }, + { + "Date+Time": "1999-09-24T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 9.447 + }, + { + "Date+Time": "1999-09-25T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 8.15 + }, + { + "Date+Time": "1999-09-26T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 17.0171 + }, + { + "Date+Time": "1999-09-27T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 13.0856 + }, + { + "Date+Time": "1999-09-28T00:00:00Z", + "Hs (total) (m)": 2.1851, + "Tp (total) (s)": 14.053 + }, + { + "Date+Time": "1999-09-29T00:00:00Z", + "Hs (total) (m)": 2.2469, + "Tp (total) (s)": 11.4223 + }, + { + "Date+Time": "1999-09-30T00:00:00Z", + "Hs (total) (m)": 2.4247, + "Tp (total) (s)": 11.6169 + }, + { + "Date+Time": "1999-10-01T00:00:00Z", + "Hs (total) (m)": 2.7329, + "Tp (total) (s)": 9.2959 + }, + { + "Date+Time": "1999-10-02T00:00:00Z", + "Hs (total) (m)": 3.3998, + "Tp (total) (s)": 12.328 + }, + { + "Date+Time": "1999-10-03T00:00:00Z", + "Hs (total) (m)": 2.839, + "Tp (total) (s)": 12.4653 + }, + { + "Date+Time": "1999-10-04T00:00:00Z", + "Hs (total) (m)": 1.384, + "Tp (total) (s)": 11.758 + }, + { + "Date+Time": "1999-10-05T00:00:00Z", + "Hs (total) (m)": 0.6294, + "Tp (total) (s)": 11.2209 + }, + { + "Date+Time": "1999-10-06T00:00:00Z", + "Hs (total) (m)": 1.2024, + "Tp (total) (s)": 9.283 + }, + { + "Date+Time": "1999-10-07T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 7.7212 + }, + { + "Date+Time": "1999-10-08T00:00:00Z", + "Hs (total) (m)": 2.2889, + "Tp (total) (s)": 7.7898 + }, + { + "Date+Time": "1999-10-09T00:00:00Z", + "Hs (total) (m)": 1.9066, + "Tp (total) (s)": 9.8315 + }, + { + "Date+Time": "1999-10-10T00:00:00Z", + "Hs (total) (m)": 1.764, + "Tp (total) (s)": 9.8308 + }, + { + "Date+Time": "1999-10-11T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "1999-10-12T00:00:00Z", + "Hs (total) (m)": 1.8952, + "Tp (total) (s)": 13.6967 + }, + { + "Date+Time": "1999-10-13T00:00:00Z", + "Hs (total) (m)": 1.5267, + "Tp (total) (s)": 11.0195 + }, + { + "Date+Time": "1999-10-14T00:00:00Z", + "Hs (total) (m)": 1.1788, + "Tp (total) (s)": 10.4785 + }, + { + "Date+Time": "1999-10-15T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 9.7118 + }, + { + "Date+Time": "1999-10-16T00:00:00Z", + "Hs (total) (m)": 1.4565, + "Tp (total) (s)": 11.6367 + }, + { + "Date+Time": "1999-10-17T00:00:00Z", + "Hs (total) (m)": 1.4702, + "Tp (total) (s)": 10.6632 + }, + { + "Date+Time": "1999-10-18T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 15.7132 + }, + { + "Date+Time": "1999-10-19T00:00:00Z", + "Hs (total) (m)": 2.3095, + "Tp (total) (s)": 15.3905 + }, + { + "Date+Time": "1999-10-20T00:00:00Z", + "Hs (total) (m)": 2.0447, + "Tp (total) (s)": 13.123 + }, + { + "Date+Time": "1999-10-21T00:00:00Z", + "Hs (total) (m)": 1.3596, + "Tp (total) (s)": 11.9785 + }, + { + "Date+Time": "1999-10-22T00:00:00Z", + "Hs (total) (m)": 4.1459, + "Tp (total) (s)": 18.2051 + }, + { + "Date+Time": "1999-10-23T00:00:00Z", + "Hs (total) (m)": 2.7779, + "Tp (total) (s)": 14.3307 + }, + { + "Date+Time": "1999-10-24T00:00:00Z", + "Hs (total) (m)": 2.2378, + "Tp (total) (s)": 12.653 + }, + { + "Date+Time": "1999-10-25T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 10.5205 + }, + { + "Date+Time": "1999-10-26T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 11.7695 + }, + { + "Date+Time": "1999-10-27T00:00:00Z", + "Hs (total) (m)": 1.7342, + "Tp (total) (s)": 10.2046 + }, + { + "Date+Time": "1999-10-28T00:00:00Z", + "Hs (total) (m)": 2.6841, + "Tp (total) (s)": 10.3977 + }, + { + "Date+Time": "1999-10-29T00:00:00Z", + "Hs (total) (m)": 2.4766, + "Tp (total) (s)": 15.215 + }, + { + "Date+Time": "1999-10-30T00:00:00Z", + "Hs (total) (m)": 2.5948, + "Tp (total) (s)": 13.4991 + }, + { + "Date+Time": "1999-10-31T00:00:00Z", + "Hs (total) (m)": 7.065, + "Tp (total) (s)": 14.5795 + }, + { + "Date+Time": "1999-11-01T00:00:00Z", + "Hs (total) (m)": 4.5495, + "Tp (total) (s)": 12.3028 + }, + { + "Date+Time": "1999-11-02T00:00:00Z", + "Hs (total) (m)": 3.1281, + "Tp (total) (s)": 10.963 + }, + { + "Date+Time": "1999-11-03T00:00:00Z", + "Hs (total) (m)": 2.7619, + "Tp (total) (s)": 10.4083 + }, + { + "Date+Time": "1999-11-04T00:00:00Z", + "Hs (total) (m)": 3.5142, + "Tp (total) (s)": 11.9259 + }, + { + "Date+Time": "1999-11-05T00:00:00Z", + "Hs (total) (m)": 3.5333, + "Tp (total) (s)": 12.2112 + }, + { + "Date+Time": "1999-11-06T00:00:00Z", + "Hs (total) (m)": 2.2988, + "Tp (total) (s)": 11.6214 + }, + { + "Date+Time": "1999-11-07T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 12.2532 + }, + { + "Date+Time": "1999-11-08T00:00:00Z", + "Hs (total) (m)": 1.7525, + "Tp (total) (s)": 10.3702 + }, + { + "Date+Time": "1999-11-09T00:00:00Z", + "Hs (total) (m)": 1.4161, + "Tp (total) (s)": 12.0838 + }, + { + "Date+Time": "1999-11-10T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 11.0538 + }, + { + "Date+Time": "1999-11-11T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 10.3099 + }, + { + "Date+Time": "1999-11-12T00:00:00Z", + "Hs (total) (m)": 0.6767, + "Tp (total) (s)": 9.7148 + }, + { + "Date+Time": "1999-11-13T00:00:00Z", + "Hs (total) (m)": 0.4814, + "Tp (total) (s)": 11.5841 + }, + { + "Date+Time": "1999-11-14T00:00:00Z", + "Hs (total) (m)": 0.8293, + "Tp (total) (s)": 11.4078 + }, + { + "Date+Time": "1999-11-15T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 11.7557 + }, + { + "Date+Time": "1999-11-16T00:00:00Z", + "Hs (total) (m)": 1.8342, + "Tp (total) (s)": 12.3417 + }, + { + "Date+Time": "1999-11-17T00:00:00Z", + "Hs (total) (m)": 2.3301, + "Tp (total) (s)": 11.5482 + }, + { + "Date+Time": "1999-11-18T00:00:00Z", + "Hs (total) (m)": 1.8426, + "Tp (total) (s)": 10.7364 + }, + { + "Date+Time": "1999-11-19T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 9.022 + }, + { + "Date+Time": "1999-11-20T00:00:00Z", + "Hs (total) (m)": 0.943, + "Tp (total) (s)": 9.6362 + }, + { + "Date+Time": "1999-11-21T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 12.55 + }, + { + "Date+Time": "1999-11-22T00:00:00Z", + "Hs (total) (m)": 1.6152, + "Tp (total) (s)": 12.5195 + }, + { + "Date+Time": "1999-11-23T00:00:00Z", + "Hs (total) (m)": 2.4354, + "Tp (total) (s)": 13.1977 + }, + { + "Date+Time": "1999-11-24T00:00:00Z", + "Hs (total) (m)": 3.5958, + "Tp (total) (s)": 12.1639 + }, + { + "Date+Time": "1999-11-25T00:00:00Z", + "Hs (total) (m)": 2.3309, + "Tp (total) (s)": 11.549 + }, + { + "Date+Time": "1999-11-26T00:00:00Z", + "Hs (total) (m)": 3.5859, + "Tp (total) (s)": 9.3623 + }, + { + "Date+Time": "1999-11-27T00:00:00Z", + "Hs (total) (m)": 3.4631, + "Tp (total) (s)": 11.3643 + }, + { + "Date+Time": "1999-11-28T00:00:00Z", + "Hs (total) (m)": 3.5546, + "Tp (total) (s)": 10.5747 + }, + { + "Date+Time": "1999-11-29T00:00:00Z", + "Hs (total) (m)": 2.9611, + "Tp (total) (s)": 11.6428 + }, + { + "Date+Time": "1999-11-30T00:00:00Z", + "Hs (total) (m)": 2.7993, + "Tp (total) (s)": 11.3895 + }, + { + "Date+Time": "1999-12-01T00:00:00Z", + "Hs (total) (m)": 3.6348, + "Tp (total) (s)": 14.4345 + }, + { + "Date+Time": "1999-12-02T00:00:00Z", + "Hs (total) (m)": 2.8863, + "Tp (total) (s)": 12.5072 + }, + { + "Date+Time": "1999-12-03T00:00:00Z", + "Hs (total) (m)": 3.6576, + "Tp (total) (s)": 12.4462 + }, + { + "Date+Time": "1999-12-04T00:00:00Z", + "Hs (total) (m)": 2.9061, + "Tp (total) (s)": 11.1583 + }, + { + "Date+Time": "1999-12-05T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 11.6031 + }, + { + "Date+Time": "1999-12-06T00:00:00Z", + "Hs (total) (m)": 2.9511, + "Tp (total) (s)": 8.3789 + }, + { + "Date+Time": "1999-12-07T00:00:00Z", + "Hs (total) (m)": 3.6172, + "Tp (total) (s)": 12.3623 + }, + { + "Date+Time": "1999-12-08T00:00:00Z", + "Hs (total) (m)": 3.8247, + "Tp (total) (s)": 14.3017 + }, + { + "Date+Time": "1999-12-09T00:00:00Z", + "Hs (total) (m)": 6.4342, + "Tp (total) (s)": 14.7939 + }, + { + "Date+Time": "1999-12-10T00:00:00Z", + "Hs (total) (m)": 3.1938, + "Tp (total) (s)": 13.8951 + }, + { + "Date+Time": "1999-12-11T00:00:00Z", + "Hs (total) (m)": 2.6879, + "Tp (total) (s)": 10.3702 + }, + { + "Date+Time": "1999-12-12T00:00:00Z", + "Hs (total) (m)": 2.4117, + "Tp (total) (s)": 10.5739 + }, + { + "Date+Time": "1999-12-13T00:00:00Z", + "Hs (total) (m)": 2.6543, + "Tp (total) (s)": 11.092 + }, + { + "Date+Time": "1999-12-14T00:00:00Z", + "Hs (total) (m)": 1.9929, + "Tp (total) (s)": 10.6655 + }, + { + "Date+Time": "1999-12-15T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 11.3353 + }, + { + "Date+Time": "1999-12-16T00:00:00Z", + "Hs (total) (m)": 1.516, + "Tp (total) (s)": 10.3763 + }, + { + "Date+Time": "1999-12-17T00:00:00Z", + "Hs (total) (m)": 4.4198, + "Tp (total) (s)": 10.1512 + }, + { + "Date+Time": "1999-12-18T00:00:00Z", + "Hs (total) (m)": 3.1373, + "Tp (total) (s)": 12.6148 + }, + { + "Date+Time": "1999-12-19T00:00:00Z", + "Hs (total) (m)": 2.398, + "Tp (total) (s)": 11.6634 + }, + { + "Date+Time": "1999-12-20T00:00:00Z", + "Hs (total) (m)": 2.0066, + "Tp (total) (s)": 11.5551 + }, + { + "Date+Time": "1999-12-21T00:00:00Z", + "Hs (total) (m)": 2.6185, + "Tp (total) (s)": 9.772 + }, + { + "Date+Time": "1999-12-22T00:00:00Z", + "Hs (total) (m)": 2.7116, + "Tp (total) (s)": 9.5233 + }, + { + "Date+Time": "1999-12-23T00:00:00Z", + "Hs (total) (m)": 2.955, + "Tp (total) (s)": 11.5513 + }, + { + "Date+Time": "1999-12-24T00:00:00Z", + "Hs (total) (m)": 5.1691, + "Tp (total) (s)": 11.6246 + }, + { + "Date+Time": "1999-12-25T00:00:00Z", + "Hs (total) (m)": 4.004, + "Tp (total) (s)": 12.5736 + }, + { + "Date+Time": "1999-12-26T00:00:00Z", + "Hs (total) (m)": 5.1121, + "Tp (total) (s)": 13.4477 + }, + { + "Date+Time": "1999-12-27T00:00:00Z", + "Hs (total) (m)": 3.9445, + "Tp (total) (s)": 14.024 + }, + { + "Date+Time": "1999-12-28T00:00:00Z", + "Hs (total) (m)": 2.6666, + "Tp (total) (s)": 12.3722 + }, + { + "Date+Time": "1999-12-29T00:00:00Z", + "Hs (total) (m)": 2.4369, + "Tp (total) (s)": 12.4844 + }, + { + "Date+Time": "1999-12-30T00:00:00Z", + "Hs (total) (m)": 2.1661, + "Tp (total) (s)": 10.699 + }, + { + "Date+Time": "1999-12-31T00:00:00Z", + "Hs (total) (m)": 2.7398, + "Tp (total) (s)": 11.4017 + }, + { + "Date+Time": "2000-01-01T00:00:00Z", + "Hs (total) (m)": 2.6612, + "Tp (total) (s)": 13.4098 + }, + { + "Date+Time": "2000-01-02T00:00:00Z", + "Hs (total) (m)": 3.6828, + "Tp (total) (s)": 15.4759 + }, + { + "Date+Time": "2000-01-03T00:00:00Z", + "Hs (total) (m)": 4.5633, + "Tp (total) (s)": 14.2712 + }, + { + "Date+Time": "2000-01-04T00:00:00Z", + "Hs (total) (m)": 3.3845, + "Tp (total) (s)": 13.7806 + }, + { + "Date+Time": "2000-01-05T00:00:00Z", + "Hs (total) (m)": 4.4321, + "Tp (total) (s)": 14.1217 + }, + { + "Date+Time": "2000-01-06T00:00:00Z", + "Hs (total) (m)": 5.8434, + "Tp (total) (s)": 14.0763 + }, + { + "Date+Time": "2000-01-07T00:00:00Z", + "Hs (total) (m)": 3.9926, + "Tp (total) (s)": 10.0475 + }, + { + "Date+Time": "2000-01-08T00:00:00Z", + "Hs (total) (m)": 5.6466, + "Tp (total) (s)": 13.8532 + }, + { + "Date+Time": "2000-01-09T00:00:00Z", + "Hs (total) (m)": 4.2009, + "Tp (total) (s)": 16.7035 + }, + { + "Date+Time": "2000-01-10T00:00:00Z", + "Hs (total) (m)": 3.1732, + "Tp (total) (s)": 13.0459 + }, + { + "Date+Time": "2000-01-11T00:00:00Z", + "Hs (total) (m)": 3.3639, + "Tp (total) (s)": 15.9513 + }, + { + "Date+Time": "2000-01-12T00:00:00Z", + "Hs (total) (m)": 2.8222, + "Tp (total) (s)": 14.1278 + }, + { + "Date+Time": "2000-01-13T00:00:00Z", + "Hs (total) (m)": 2.6109, + "Tp (total) (s)": 14.3376 + }, + { + "Date+Time": "2000-01-14T00:00:00Z", + "Hs (total) (m)": 1.5374, + "Tp (total) (s)": 11.5268 + }, + { + "Date+Time": "2000-01-15T00:00:00Z", + "Hs (total) (m)": 0.8484, + "Tp (total) (s)": 10.3328 + }, + { + "Date+Time": "2000-01-16T00:00:00Z", + "Hs (total) (m)": 0.6081, + "Tp (total) (s)": 11.4406 + }, + { + "Date+Time": "2000-01-17T00:00:00Z", + "Hs (total) (m)": 0.9133, + "Tp (total) (s)": 13.5914 + }, + { + "Date+Time": "2000-01-18T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 12.4775 + }, + { + "Date+Time": "2000-01-19T00:00:00Z", + "Hs (total) (m)": 0.8019, + "Tp (total) (s)": 12.0319 + }, + { + "Date+Time": "2000-01-20T00:00:00Z", + "Hs (total) (m)": 0.5455, + "Tp (total) (s)": 11.9037 + }, + { + "Date+Time": "2000-01-21T00:00:00Z", + "Hs (total) (m)": 0.6493, + "Tp (total) (s)": 5.858 + }, + { + "Date+Time": "2000-01-22T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 15.2921 + }, + { + "Date+Time": "2000-01-23T00:00:00Z", + "Hs (total) (m)": 1.0254, + "Tp (total) (s)": 11.4399 + }, + { + "Date+Time": "2000-01-24T00:00:00Z", + "Hs (total) (m)": 1.0903, + "Tp (total) (s)": 14.011 + }, + { + "Date+Time": "2000-01-25T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 12.0457 + }, + { + "Date+Time": "2000-01-26T00:00:00Z", + "Hs (total) (m)": 1.3047, + "Tp (total) (s)": 14.1964 + }, + { + "Date+Time": "2000-01-27T00:00:00Z", + "Hs (total) (m)": 1.117, + "Tp (total) (s)": 13.2466 + }, + { + "Date+Time": "2000-01-28T00:00:00Z", + "Hs (total) (m)": 1.6663, + "Tp (total) (s)": 10.9172 + }, + { + "Date+Time": "2000-01-29T00:00:00Z", + "Hs (total) (m)": 3.4204, + "Tp (total) (s)": 9.5958 + }, + { + "Date+Time": "2000-01-30T00:00:00Z", + "Hs (total) (m)": 3.4654, + "Tp (total) (s)": 13.5128 + }, + { + "Date+Time": "2000-01-31T00:00:00Z", + "Hs (total) (m)": 3.8514, + "Tp (total) (s)": 11.7565 + }, + { + "Date+Time": "2000-02-01T00:00:00Z", + "Hs (total) (m)": 3.3341, + "Tp (total) (s)": 11.3041 + }, + { + "Date+Time": "2000-02-02T00:00:00Z", + "Hs (total) (m)": 2.0524, + "Tp (total) (s)": 10.6243 + }, + { + "Date+Time": "2000-02-03T00:00:00Z", + "Hs (total) (m)": 2.1775, + "Tp (total) (s)": 13.5357 + }, + { + "Date+Time": "2000-02-04T00:00:00Z", + "Hs (total) (m)": 2.649, + "Tp (total) (s)": 7.857 + }, + { + "Date+Time": "2000-02-05T00:00:00Z", + "Hs (total) (m)": 2.7589, + "Tp (total) (s)": 9.1052 + }, + { + "Date+Time": "2000-02-06T00:00:00Z", + "Hs (total) (m)": 2.3049, + "Tp (total) (s)": 11.2178 + }, + { + "Date+Time": "2000-02-07T00:00:00Z", + "Hs (total) (m)": 4.0391, + "Tp (total) (s)": 13.5655 + }, + { + "Date+Time": "2000-02-08T00:00:00Z", + "Hs (total) (m)": 4.2161, + "Tp (total) (s)": 14.7496 + }, + { + "Date+Time": "2000-02-09T00:00:00Z", + "Hs (total) (m)": 5.9663, + "Tp (total) (s)": 15.5331 + }, + { + "Date+Time": "2000-02-10T00:00:00Z", + "Hs (total) (m)": 5.9458, + "Tp (total) (s)": 14.1531 + }, + { + "Date+Time": "2000-02-11T00:00:00Z", + "Hs (total) (m)": 3.9689, + "Tp (total) (s)": 13.5151 + }, + { + "Date+Time": "2000-02-12T00:00:00Z", + "Hs (total) (m)": 4.6358, + "Tp (total) (s)": 13.7738 + }, + { + "Date+Time": "2000-02-13T00:00:00Z", + "Hs (total) (m)": 3.9674, + "Tp (total) (s)": 15.5652 + }, + { + "Date+Time": "2000-02-14T00:00:00Z", + "Hs (total) (m)": 2.8695, + "Tp (total) (s)": 13.9622 + }, + { + "Date+Time": "2000-02-15T00:00:00Z", + "Hs (total) (m)": 2.8008, + "Tp (total) (s)": 11.2018 + }, + { + "Date+Time": "2000-02-16T00:00:00Z", + "Hs (total) (m)": 4.6747, + "Tp (total) (s)": 16.4472 + }, + { + "Date+Time": "2000-02-17T00:00:00Z", + "Hs (total) (m)": 3.8728, + "Tp (total) (s)": 16.3556 + }, + { + "Date+Time": "2000-02-18T00:00:00Z", + "Hs (total) (m)": 2.9298, + "Tp (total) (s)": 10.8013 + }, + { + "Date+Time": "2000-02-19T00:00:00Z", + "Hs (total) (m)": 3.0168, + "Tp (total) (s)": 13.6288 + }, + { + "Date+Time": "2000-02-20T00:00:00Z", + "Hs (total) (m)": 1.5854, + "Tp (total) (s)": 11.7313 + }, + { + "Date+Time": "2000-02-21T00:00:00Z", + "Hs (total) (m)": 3.235, + "Tp (total) (s)": 16.1184 + }, + { + "Date+Time": "2000-02-22T00:00:00Z", + "Hs (total) (m)": 3.1396, + "Tp (total) (s)": 14.8282 + }, + { + "Date+Time": "2000-02-23T00:00:00Z", + "Hs (total) (m)": 2.4232, + "Tp (total) (s)": 12.962 + }, + { + "Date+Time": "2000-02-24T00:00:00Z", + "Hs (total) (m)": 3.3448, + "Tp (total) (s)": 12.553 + }, + { + "Date+Time": "2000-02-25T00:00:00Z", + "Hs (total) (m)": 2.9695, + "Tp (total) (s)": 13.6982 + }, + { + "Date+Time": "2000-02-26T00:00:00Z", + "Hs (total) (m)": 2.8344, + "Tp (total) (s)": 13.5075 + }, + { + "Date+Time": "2000-02-27T00:00:00Z", + "Hs (total) (m)": 4.1673, + "Tp (total) (s)": 9.6248 + }, + { + "Date+Time": "2000-02-28T00:00:00Z", + "Hs (total) (m)": 3.6691, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "2000-02-29T00:00:00Z", + "Hs (total) (m)": 2.9969, + "Tp (total) (s)": 12.3234 + }, + { + "Date+Time": "2000-03-01T00:00:00Z", + "Hs (total) (m)": 2.3339, + "Tp (total) (s)": 11.7977 + }, + { + "Date+Time": "2000-03-02T00:00:00Z", + "Hs (total) (m)": 2.2088, + "Tp (total) (s)": 11.4689 + }, + { + "Date+Time": "2000-03-03T00:00:00Z", + "Hs (total) (m)": 2.7902, + "Tp (total) (s)": 10.3137 + }, + { + "Date+Time": "2000-03-04T00:00:00Z", + "Hs (total) (m)": 1.577, + "Tp (total) (s)": 11.549 + }, + { + "Date+Time": "2000-03-05T00:00:00Z", + "Hs (total) (m)": 1.2741, + "Tp (total) (s)": 10.3511 + }, + { + "Date+Time": "2000-03-06T00:00:00Z", + "Hs (total) (m)": 1.5824, + "Tp (total) (s)": 7.4412 + }, + { + "Date+Time": "2000-03-07T00:00:00Z", + "Hs (total) (m)": 2.2401, + "Tp (total) (s)": 7.7166 + }, + { + "Date+Time": "2000-03-08T00:00:00Z", + "Hs (total) (m)": 3.2144, + "Tp (total) (s)": 8.6589 + }, + { + "Date+Time": "2000-03-09T00:00:00Z", + "Hs (total) (m)": 3.135, + "Tp (total) (s)": 12.421 + }, + { + "Date+Time": "2000-03-10T00:00:00Z", + "Hs (total) (m)": 2.1729, + "Tp (total) (s)": 12.0479 + }, + { + "Date+Time": "2000-03-11T00:00:00Z", + "Hs (total) (m)": 1.8723, + "Tp (total) (s)": 11.124 + }, + { + "Date+Time": "2000-03-12T00:00:00Z", + "Hs (total) (m)": 1.487, + "Tp (total) (s)": 11.2011 + }, + { + "Date+Time": "2000-03-13T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 10.2649 + }, + { + "Date+Time": "2000-03-14T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 15.363 + }, + { + "Date+Time": "2000-03-15T00:00:00Z", + "Hs (total) (m)": 1.3184, + "Tp (total) (s)": 12.4622 + }, + { + "Date+Time": "2000-03-16T00:00:00Z", + "Hs (total) (m)": 0.9842, + "Tp (total) (s)": 11.0874 + }, + { + "Date+Time": "2000-03-17T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 9.6683 + }, + { + "Date+Time": "2000-03-18T00:00:00Z", + "Hs (total) (m)": 0.9285, + "Tp (total) (s)": 11.4765 + }, + { + "Date+Time": "2000-03-19T00:00:00Z", + "Hs (total) (m)": 1.2467, + "Tp (total) (s)": 13.4632 + }, + { + "Date+Time": "2000-03-20T00:00:00Z", + "Hs (total) (m)": 1.3108, + "Tp (total) (s)": 13.6677 + }, + { + "Date+Time": "2000-03-21T00:00:00Z", + "Hs (total) (m)": 1.3016, + "Tp (total) (s)": 13.9264 + }, + { + "Date+Time": "2000-03-22T00:00:00Z", + "Hs (total) (m)": 1.0811, + "Tp (total) (s)": 12.3653 + }, + { + "Date+Time": "2000-03-23T00:00:00Z", + "Hs (total) (m)": 0.9346, + "Tp (total) (s)": 11.3987 + }, + { + "Date+Time": "2000-03-24T00:00:00Z", + "Hs (total) (m)": 2.0493, + "Tp (total) (s)": 10.2245 + }, + { + "Date+Time": "2000-03-25T00:00:00Z", + "Hs (total) (m)": 2.8748, + "Tp (total) (s)": 13.9027 + }, + { + "Date+Time": "2000-03-26T00:00:00Z", + "Hs (total) (m)": 2.9572, + "Tp (total) (s)": 12.8567 + }, + { + "Date+Time": "2000-03-27T00:00:00Z", + "Hs (total) (m)": 1.2764, + "Tp (total) (s)": 9.9544 + }, + { + "Date+Time": "2000-03-28T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 9.3753 + }, + { + "Date+Time": "2000-03-29T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 12.6652 + }, + { + "Date+Time": "2000-03-30T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 12.5446 + }, + { + "Date+Time": "2000-03-31T00:00:00Z", + "Hs (total) (m)": 1.0132, + "Tp (total) (s)": 9.7896 + }, + { + "Date+Time": "2000-04-01T00:00:00Z", + "Hs (total) (m)": 0.9095, + "Tp (total) (s)": 10.6632 + }, + { + "Date+Time": "2000-04-02T00:00:00Z", + "Hs (total) (m)": 0.8744, + "Tp (total) (s)": 12.6003 + }, + { + "Date+Time": "2000-04-03T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 11.3491 + }, + { + "Date+Time": "2000-04-04T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 3.7866 + }, + { + "Date+Time": "2000-04-05T00:00:00Z", + "Hs (total) (m)": 0.5325, + "Tp (total) (s)": 2.9618 + }, + { + "Date+Time": "2000-04-06T00:00:00Z", + "Hs (total) (m)": 1.4946, + "Tp (total) (s)": 11.3964 + }, + { + "Date+Time": "2000-04-07T00:00:00Z", + "Hs (total) (m)": 1.7685, + "Tp (total) (s)": 10.3557 + }, + { + "Date+Time": "2000-04-08T00:00:00Z", + "Hs (total) (m)": 1.5961, + "Tp (total) (s)": 10.5983 + }, + { + "Date+Time": "2000-04-09T00:00:00Z", + "Hs (total) (m)": 0.9293, + "Tp (total) (s)": 9.5737 + }, + { + "Date+Time": "2000-04-10T00:00:00Z", + "Hs (total) (m)": 0.6981, + "Tp (total) (s)": 10.0322 + }, + { + "Date+Time": "2000-04-11T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 6.016 + }, + { + "Date+Time": "2000-04-12T00:00:00Z", + "Hs (total) (m)": 2.0058, + "Tp (total) (s)": 11.9152 + }, + { + "Date+Time": "2000-04-13T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 13.8623 + }, + { + "Date+Time": "2000-04-14T00:00:00Z", + "Hs (total) (m)": 1.1429, + "Tp (total) (s)": 12.5202 + }, + { + "Date+Time": "2000-04-15T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 11.3231 + }, + { + "Date+Time": "2000-04-16T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 10.4015 + }, + { + "Date+Time": "2000-04-17T00:00:00Z", + "Hs (total) (m)": 1.0338, + "Tp (total) (s)": 11.8801 + }, + { + "Date+Time": "2000-04-18T00:00:00Z", + "Hs (total) (m)": 0.6684, + "Tp (total) (s)": 11.6245 + }, + { + "Date+Time": "2000-04-19T00:00:00Z", + "Hs (total) (m)": 0.5005, + "Tp (total) (s)": 11.1019 + }, + { + "Date+Time": "2000-04-20T00:00:00Z", + "Hs (total) (m)": 3.3235, + "Tp (total) (s)": 17.2269 + }, + { + "Date+Time": "2000-04-21T00:00:00Z", + "Hs (total) (m)": 3.4577, + "Tp (total) (s)": 13.0581 + }, + { + "Date+Time": "2000-04-22T00:00:00Z", + "Hs (total) (m)": 2.6818, + "Tp (total) (s)": 10.4236 + }, + { + "Date+Time": "2000-04-23T00:00:00Z", + "Hs (total) (m)": 1.9807, + "Tp (total) (s)": 9.6652 + }, + { + "Date+Time": "2000-04-24T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 9.2944 + }, + { + "Date+Time": "2000-04-25T00:00:00Z", + "Hs (total) (m)": 0.6195, + "Tp (total) (s)": 9.9429 + }, + { + "Date+Time": "2000-04-26T00:00:00Z", + "Hs (total) (m)": 1.2116, + "Tp (total) (s)": 9.7789 + }, + { + "Date+Time": "2000-04-27T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 3.9926 + }, + { + "Date+Time": "2000-04-28T00:00:00Z", + "Hs (total) (m)": 0.7187, + "Tp (total) (s)": 9.7262 + }, + { + "Date+Time": "2000-04-29T00:00:00Z", + "Hs (total) (m)": 0.737, + "Tp (total) (s)": 9.4852 + }, + { + "Date+Time": "2000-04-30T00:00:00Z", + "Hs (total) (m)": 1.3688, + "Tp (total) (s)": 11.8793 + }, + { + "Date+Time": "2000-05-01T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 10.4556 + }, + { + "Date+Time": "2000-05-02T00:00:00Z", + "Hs (total) (m)": 0.8492, + "Tp (total) (s)": 9.1182 + }, + { + "Date+Time": "2000-05-03T00:00:00Z", + "Hs (total) (m)": 1.0918, + "Tp (total) (s)": 11.5169 + }, + { + "Date+Time": "2000-05-04T00:00:00Z", + "Hs (total) (m)": 0.7248, + "Tp (total) (s)": 10.3122 + }, + { + "Date+Time": "2000-05-05T00:00:00Z", + "Hs (total) (m)": 0.8621, + "Tp (total) (s)": 13.1489 + }, + { + "Date+Time": "2000-05-06T00:00:00Z", + "Hs (total) (m)": 0.9842, + "Tp (total) (s)": 10.6571 + }, + { + "Date+Time": "2000-05-07T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 12.9353 + }, + { + "Date+Time": "2000-05-08T00:00:00Z", + "Hs (total) (m)": 1.1254, + "Tp (total) (s)": 11.4971 + }, + { + "Date+Time": "2000-05-09T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 10.4503 + }, + { + "Date+Time": "2000-05-10T00:00:00Z", + "Hs (total) (m)": 0.8835, + "Tp (total) (s)": 10.6807 + }, + { + "Date+Time": "2000-05-11T00:00:00Z", + "Hs (total) (m)": 0.8034, + "Tp (total) (s)": 9.9025 + }, + { + "Date+Time": "2000-05-12T00:00:00Z", + "Hs (total) (m)": 0.6745, + "Tp (total) (s)": 2.7223 + }, + { + "Date+Time": "2000-05-13T00:00:00Z", + "Hs (total) (m)": 1.4153, + "Tp (total) (s)": 11.7664 + }, + { + "Date+Time": "2000-05-14T00:00:00Z", + "Hs (total) (m)": 1.8822, + "Tp (total) (s)": 10.4175 + }, + { + "Date+Time": "2000-05-15T00:00:00Z", + "Hs (total) (m)": 2.8771, + "Tp (total) (s)": 11.1431 + }, + { + "Date+Time": "2000-05-16T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 8.6726 + }, + { + "Date+Time": "2000-05-17T00:00:00Z", + "Hs (total) (m)": 1.8181, + "Tp (total) (s)": 10.4595 + }, + { + "Date+Time": "2000-05-18T00:00:00Z", + "Hs (total) (m)": 2.2935, + "Tp (total) (s)": 10.036 + }, + { + "Date+Time": "2000-05-19T00:00:00Z", + "Hs (total) (m)": 1.9143, + "Tp (total) (s)": 11.0172 + }, + { + "Date+Time": "2000-05-20T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 10.2405 + }, + { + "Date+Time": "2000-05-21T00:00:00Z", + "Hs (total) (m)": 1.8296, + "Tp (total) (s)": 9.7224 + }, + { + "Date+Time": "2000-05-22T00:00:00Z", + "Hs (total) (m)": 1.3611, + "Tp (total) (s)": 10.2184 + }, + { + "Date+Time": "2000-05-23T00:00:00Z", + "Hs (total) (m)": 2.8893, + "Tp (total) (s)": 13.0337 + }, + { + "Date+Time": "2000-05-24T00:00:00Z", + "Hs (total) (m)": 2.0058, + "Tp (total) (s)": 11.1034 + }, + { + "Date+Time": "2000-05-25T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 10.2283 + }, + { + "Date+Time": "2000-05-26T00:00:00Z", + "Hs (total) (m)": 1.8281, + "Tp (total) (s)": 10.0955 + }, + { + "Date+Time": "2000-05-27T00:00:00Z", + "Hs (total) (m)": 1.7891, + "Tp (total) (s)": 10.3626 + }, + { + "Date+Time": "2000-05-28T00:00:00Z", + "Hs (total) (m)": 1.5908, + "Tp (total) (s)": 9.5706 + }, + { + "Date+Time": "2000-05-29T00:00:00Z", + "Hs (total) (m)": 1.3039, + "Tp (total) (s)": 8.517 + }, + { + "Date+Time": "2000-05-30T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 8.5444 + }, + { + "Date+Time": "2000-05-31T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 9.521 + }, + { + "Date+Time": "2000-06-01T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 8.3384 + }, + { + "Date+Time": "2000-06-02T00:00:00Z", + "Hs (total) (m)": 2.279, + "Tp (total) (s)": 12.9833 + }, + { + "Date+Time": "2000-06-03T00:00:00Z", + "Hs (total) (m)": 0.8293, + "Tp (total) (s)": 11.9564 + }, + { + "Date+Time": "2000-06-04T00:00:00Z", + "Hs (total) (m)": 0.6417, + "Tp (total) (s)": 6.3555 + }, + { + "Date+Time": "2000-06-05T00:00:00Z", + "Hs (total) (m)": 0.6485, + "Tp (total) (s)": 10.5304 + }, + { + "Date+Time": "2000-06-06T00:00:00Z", + "Hs (total) (m)": 1.6831, + "Tp (total) (s)": 11.0736 + }, + { + "Date+Time": "2000-06-07T00:00:00Z", + "Hs (total) (m)": 2.8863, + "Tp (total) (s)": 14.1621 + }, + { + "Date+Time": "2000-06-08T00:00:00Z", + "Hs (total) (m)": 3.1678, + "Tp (total) (s)": 11.8458 + }, + { + "Date+Time": "2000-06-09T00:00:00Z", + "Hs (total) (m)": 2.0859, + "Tp (total) (s)": 10.3191 + }, + { + "Date+Time": "2000-06-10T00:00:00Z", + "Hs (total) (m)": 1.6266, + "Tp (total) (s)": 10.7341 + }, + { + "Date+Time": "2000-06-11T00:00:00Z", + "Hs (total) (m)": 2.266, + "Tp (total) (s)": 9.2875 + }, + { + "Date+Time": "2000-06-12T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 12.7285 + }, + { + "Date+Time": "2000-06-13T00:00:00Z", + "Hs (total) (m)": 3.3639, + "Tp (total) (s)": 11.4139 + }, + { + "Date+Time": "2000-06-14T00:00:00Z", + "Hs (total) (m)": 2.3019, + "Tp (total) (s)": 12.3829 + }, + { + "Date+Time": "2000-06-15T00:00:00Z", + "Hs (total) (m)": 1.5778, + "Tp (total) (s)": 10.5136 + }, + { + "Date+Time": "2000-06-16T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 9.2463 + }, + { + "Date+Time": "2000-06-17T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 13.493 + }, + { + "Date+Time": "2000-06-18T00:00:00Z", + "Hs (total) (m)": 1.3512, + "Tp (total) (s)": 11.362 + }, + { + "Date+Time": "2000-06-19T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 10.1207 + }, + { + "Date+Time": "2000-06-20T00:00:00Z", + "Hs (total) (m)": 1.4573, + "Tp (total) (s)": 8.7863 + }, + { + "Date+Time": "2000-06-21T00:00:00Z", + "Hs (total) (m)": 1.5328, + "Tp (total) (s)": 5.9656 + }, + { + "Date+Time": "2000-06-22T00:00:00Z", + "Hs (total) (m)": 2.9633, + "Tp (total) (s)": 11.5032 + }, + { + "Date+Time": "2000-06-23T00:00:00Z", + "Hs (total) (m)": 1.9211, + "Tp (total) (s)": 10.6761 + }, + { + "Date+Time": "2000-06-24T00:00:00Z", + "Hs (total) (m)": 1.2322, + "Tp (total) (s)": 9.3783 + }, + { + "Date+Time": "2000-06-25T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 8.1713 + }, + { + "Date+Time": "2000-06-26T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 7.5205 + }, + { + "Date+Time": "2000-06-27T00:00:00Z", + "Hs (total) (m)": 0.6623, + "Tp (total) (s)": 7.8654 + }, + { + "Date+Time": "2000-06-28T00:00:00Z", + "Hs (total) (m)": 0.6531, + "Tp (total) (s)": 7.9974 + }, + { + "Date+Time": "2000-06-29T00:00:00Z", + "Hs (total) (m)": 0.6668, + "Tp (total) (s)": 10.1596 + }, + { + "Date+Time": "2000-06-30T00:00:00Z", + "Hs (total) (m)": 0.6874, + "Tp (total) (s)": 8.919 + }, + { + "Date+Time": "2000-07-01T00:00:00Z", + "Hs (total) (m)": 0.9568, + "Tp (total) (s)": 8.7321 + }, + { + "Date+Time": "2000-07-02T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 8.6283 + }, + { + "Date+Time": "2000-07-03T00:00:00Z", + "Hs (total) (m)": 0.8148, + "Tp (total) (s)": 8.433 + }, + { + "Date+Time": "2000-07-04T00:00:00Z", + "Hs (total) (m)": 0.6035, + "Tp (total) (s)": 7.9478 + }, + { + "Date+Time": "2000-07-05T00:00:00Z", + "Hs (total) (m)": 0.5341, + "Tp (total) (s)": 7.7929 + }, + { + "Date+Time": "2000-07-06T00:00:00Z", + "Hs (total) (m)": 0.47, + "Tp (total) (s)": 5.8985 + }, + { + "Date+Time": "2000-07-07T00:00:00Z", + "Hs (total) (m)": 0.5409, + "Tp (total) (s)": 2.5086 + }, + { + "Date+Time": "2000-07-08T00:00:00Z", + "Hs (total) (m)": 0.5104, + "Tp (total) (s)": 2.794 + }, + { + "Date+Time": "2000-07-09T00:00:00Z", + "Hs (total) (m)": 1.1376, + "Tp (total) (s)": 6.2944 + }, + { + "Date+Time": "2000-07-10T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 6.5485 + }, + { + "Date+Time": "2000-07-11T00:00:00Z", + "Hs (total) (m)": 1.5427, + "Tp (total) (s)": 8.327 + }, + { + "Date+Time": "2000-07-12T00:00:00Z", + "Hs (total) (m)": 1.4916, + "Tp (total) (s)": 8.3216 + }, + { + "Date+Time": "2000-07-13T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 8.6253 + }, + { + "Date+Time": "2000-07-14T00:00:00Z", + "Hs (total) (m)": 1.355, + "Tp (total) (s)": 8.3789 + }, + { + "Date+Time": "2000-07-15T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 7.9257 + }, + { + "Date+Time": "2000-07-16T00:00:00Z", + "Hs (total) (m)": 1.3222, + "Tp (total) (s)": 8.343 + }, + { + "Date+Time": "2000-07-17T00:00:00Z", + "Hs (total) (m)": 1.2688, + "Tp (total) (s)": 8.6802 + }, + { + "Date+Time": "2000-07-18T00:00:00Z", + "Hs (total) (m)": 1.2169, + "Tp (total) (s)": 9.0205 + }, + { + "Date+Time": "2000-07-19T00:00:00Z", + "Hs (total) (m)": 1.0094, + "Tp (total) (s)": 9.685 + }, + { + "Date+Time": "2000-07-20T00:00:00Z", + "Hs (total) (m)": 0.9041, + "Tp (total) (s)": 9.9582 + }, + { + "Date+Time": "2000-07-21T00:00:00Z", + "Hs (total) (m)": 0.7935, + "Tp (total) (s)": 9.2639 + }, + { + "Date+Time": "2000-07-22T00:00:00Z", + "Hs (total) (m)": 0.6821, + "Tp (total) (s)": 8.623 + }, + { + "Date+Time": "2000-07-23T00:00:00Z", + "Hs (total) (m)": 0.8042, + "Tp (total) (s)": 8.5192 + }, + { + "Date+Time": "2000-07-24T00:00:00Z", + "Hs (total) (m)": 0.6882, + "Tp (total) (s)": 9.109 + }, + { + "Date+Time": "2000-07-25T00:00:00Z", + "Hs (total) (m)": 0.383, + "Tp (total) (s)": 8.7947 + }, + { + "Date+Time": "2000-07-26T00:00:00Z", + "Hs (total) (m)": 0.3403, + "Tp (total) (s)": 8.797 + }, + { + "Date+Time": "2000-07-27T00:00:00Z", + "Hs (total) (m)": 0.8019, + "Tp (total) (s)": 9.5408 + }, + { + "Date+Time": "2000-07-28T00:00:00Z", + "Hs (total) (m)": 0.7942, + "Tp (total) (s)": 9.6362 + }, + { + "Date+Time": "2000-07-29T00:00:00Z", + "Hs (total) (m)": 0.8316, + "Tp (total) (s)": 9.4607 + }, + { + "Date+Time": "2000-07-30T00:00:00Z", + "Hs (total) (m)": 0.8187, + "Tp (total) (s)": 9.0907 + }, + { + "Date+Time": "2000-07-31T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 6.3257 + }, + { + "Date+Time": "2000-08-01T00:00:00Z", + "Hs (total) (m)": 1.7693, + "Tp (total) (s)": 8.2659 + }, + { + "Date+Time": "2000-08-02T00:00:00Z", + "Hs (total) (m)": 1.8799, + "Tp (total) (s)": 8.6642 + }, + { + "Date+Time": "2000-08-03T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 8.6459 + }, + { + "Date+Time": "2000-08-04T00:00:00Z", + "Hs (total) (m)": 1.3451, + "Tp (total) (s)": 8.5414 + }, + { + "Date+Time": "2000-08-05T00:00:00Z", + "Hs (total) (m)": 1.1948, + "Tp (total) (s)": 7.7288 + }, + { + "Date+Time": "2000-08-06T00:00:00Z", + "Hs (total) (m)": 1.1422, + "Tp (total) (s)": 7.1886 + }, + { + "Date+Time": "2000-08-07T00:00:00Z", + "Hs (total) (m)": 1.1444, + "Tp (total) (s)": 9.5515 + }, + { + "Date+Time": "2000-08-08T00:00:00Z", + "Hs (total) (m)": 1.1719, + "Tp (total) (s)": 9.4607 + }, + { + "Date+Time": "2000-08-09T00:00:00Z", + "Hs (total) (m)": 1.9372, + "Tp (total) (s)": 8.2659 + }, + { + "Date+Time": "2000-08-10T00:00:00Z", + "Hs (total) (m)": 1.5557, + "Tp (total) (s)": 8.3651 + }, + { + "Date+Time": "2000-08-11T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 8.2789 + }, + { + "Date+Time": "2000-08-12T00:00:00Z", + "Hs (total) (m)": 1.6984, + "Tp (total) (s)": 7.831 + }, + { + "Date+Time": "2000-08-13T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 7.8906 + }, + { + "Date+Time": "2000-08-14T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 11.6253 + }, + { + "Date+Time": "2000-08-15T00:00:00Z", + "Hs (total) (m)": 1.5923, + "Tp (total) (s)": 11.5963 + }, + { + "Date+Time": "2000-08-16T00:00:00Z", + "Hs (total) (m)": 1.7647, + "Tp (total) (s)": 11.4399 + }, + { + "Date+Time": "2000-08-17T00:00:00Z", + "Hs (total) (m)": 1.6511, + "Tp (total) (s)": 8.9236 + }, + { + "Date+Time": "2000-08-18T00:00:00Z", + "Hs (total) (m)": 1.5267, + "Tp (total) (s)": 9.0587 + }, + { + "Date+Time": "2000-08-19T00:00:00Z", + "Hs (total) (m)": 1.3466, + "Tp (total) (s)": 9.1624 + }, + { + "Date+Time": "2000-08-20T00:00:00Z", + "Hs (total) (m)": 1.0727, + "Tp (total) (s)": 9.3959 + }, + { + "Date+Time": "2000-08-21T00:00:00Z", + "Hs (total) (m)": 0.7309, + "Tp (total) (s)": 11.1202 + }, + { + "Date+Time": "2000-08-22T00:00:00Z", + "Hs (total) (m)": 0.837, + "Tp (total) (s)": 8.9854 + }, + { + "Date+Time": "2000-08-23T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 8.5345 + }, + { + "Date+Time": "2000-08-24T00:00:00Z", + "Hs (total) (m)": 0.4128, + "Tp (total) (s)": 13.6326 + }, + { + "Date+Time": "2000-08-25T00:00:00Z", + "Hs (total) (m)": 0.5234, + "Tp (total) (s)": 13.6593 + }, + { + "Date+Time": "2000-08-26T00:00:00Z", + "Hs (total) (m)": 0.8003, + "Tp (total) (s)": 13.9325 + }, + { + "Date+Time": "2000-08-27T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 13.5258 + }, + { + "Date+Time": "2000-08-28T00:00:00Z", + "Hs (total) (m)": 1.2078, + "Tp (total) (s)": 13.3755 + }, + { + "Date+Time": "2000-08-29T00:00:00Z", + "Hs (total) (m)": 1.1551, + "Tp (total) (s)": 9.315 + }, + { + "Date+Time": "2000-08-30T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 8.9167 + }, + { + "Date+Time": "2000-08-31T00:00:00Z", + "Hs (total) (m)": 1.8487, + "Tp (total) (s)": 5.7787 + }, + { + "Date+Time": "2000-09-01T00:00:00Z", + "Hs (total) (m)": 1.503, + "Tp (total) (s)": 7.3107 + }, + { + "Date+Time": "2000-09-02T00:00:00Z", + "Hs (total) (m)": 1.8731, + "Tp (total) (s)": 10.2412 + }, + { + "Date+Time": "2000-09-03T00:00:00Z", + "Hs (total) (m)": 1.8532, + "Tp (total) (s)": 10.2718 + }, + { + "Date+Time": "2000-09-04T00:00:00Z", + "Hs (total) (m)": 1.2581, + "Tp (total) (s)": 10.1451 + }, + { + "Date+Time": "2000-09-05T00:00:00Z", + "Hs (total) (m)": 1.3184, + "Tp (total) (s)": 9.9231 + }, + { + "Date+Time": "2000-09-06T00:00:00Z", + "Hs (total) (m)": 2.0814, + "Tp (total) (s)": 11.7931 + }, + { + "Date+Time": "2000-09-07T00:00:00Z", + "Hs (total) (m)": 2.1432, + "Tp (total) (s)": 11.7374 + }, + { + "Date+Time": "2000-09-08T00:00:00Z", + "Hs (total) (m)": 2.1531, + "Tp (total) (s)": 11.5642 + }, + { + "Date+Time": "2000-09-09T00:00:00Z", + "Hs (total) (m)": 2.3057, + "Tp (total) (s)": 12.2997 + }, + { + "Date+Time": "2000-09-10T00:00:00Z", + "Hs (total) (m)": 2.1973, + "Tp (total) (s)": 12.4058 + }, + { + "Date+Time": "2000-09-11T00:00:00Z", + "Hs (total) (m)": 2.0791, + "Tp (total) (s)": 12.421 + }, + { + "Date+Time": "2000-09-12T00:00:00Z", + "Hs (total) (m)": 1.471, + "Tp (total) (s)": 10.8715 + }, + { + "Date+Time": "2000-09-13T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 9.6057 + }, + { + "Date+Time": "2000-09-14T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 9.7293 + }, + { + "Date+Time": "2000-09-15T00:00:00Z", + "Hs (total) (m)": 1.1589, + "Tp (total) (s)": 9.4218 + }, + { + "Date+Time": "2000-09-16T00:00:00Z", + "Hs (total) (m)": 1.0498, + "Tp (total) (s)": 9.0442 + }, + { + "Date+Time": "2000-09-17T00:00:00Z", + "Hs (total) (m)": 1.0552, + "Tp (total) (s)": 8.726 + }, + { + "Date+Time": "2000-09-18T00:00:00Z", + "Hs (total) (m)": 1.3138, + "Tp (total) (s)": 8.5734 + }, + { + "Date+Time": "2000-09-19T00:00:00Z", + "Hs (total) (m)": 1.3321, + "Tp (total) (s)": 8.5498 + }, + { + "Date+Time": "2000-09-20T00:00:00Z", + "Hs (total) (m)": 1.4367, + "Tp (total) (s)": 8.7443 + }, + { + "Date+Time": "2000-09-21T00:00:00Z", + "Hs (total) (m)": 1.8311, + "Tp (total) (s)": 10.7425 + }, + { + "Date+Time": "2000-09-22T00:00:00Z", + "Hs (total) (m)": 1.8494, + "Tp (total) (s)": 13.02 + }, + { + "Date+Time": "2000-09-23T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 9.2524 + }, + { + "Date+Time": "2000-09-24T00:00:00Z", + "Hs (total) (m)": 1.8235, + "Tp (total) (s)": 8.6665 + }, + { + "Date+Time": "2000-09-25T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 8.5284 + }, + { + "Date+Time": "2000-09-26T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 8.076 + }, + { + "Date+Time": "2000-09-27T00:00:00Z", + "Hs (total) (m)": 1.2642, + "Tp (total) (s)": 11.5993 + }, + { + "Date+Time": "2000-09-28T00:00:00Z", + "Hs (total) (m)": 2.1363, + "Tp (total) (s)": 11.1942 + }, + { + "Date+Time": "2000-09-29T00:00:00Z", + "Hs (total) (m)": 2.8565, + "Tp (total) (s)": 15.2562 + }, + { + "Date+Time": "2000-09-30T00:00:00Z", + "Hs (total) (m)": 3.029, + "Tp (total) (s)": 15.4027 + }, + { + "Date+Time": "2000-10-01T00:00:00Z", + "Hs (total) (m)": 2.3446, + "Tp (total) (s)": 15.1135 + }, + { + "Date+Time": "2000-10-02T00:00:00Z", + "Hs (total) (m)": 3.3555, + "Tp (total) (s)": 11.7092 + }, + { + "Date+Time": "2000-10-03T00:00:00Z", + "Hs (total) (m)": 4.0323, + "Tp (total) (s)": 13.9103 + }, + { + "Date+Time": "2000-10-04T00:00:00Z", + "Hs (total) (m)": 3.0076, + "Tp (total) (s)": 12.4256 + }, + { + "Date+Time": "2000-10-05T00:00:00Z", + "Hs (total) (m)": 3.0816, + "Tp (total) (s)": 10.9241 + }, + { + "Date+Time": "2000-10-06T00:00:00Z", + "Hs (total) (m)": 2.7741, + "Tp (total) (s)": 11.288 + }, + { + "Date+Time": "2000-10-07T00:00:00Z", + "Hs (total) (m)": 2.5925, + "Tp (total) (s)": 11.3575 + }, + { + "Date+Time": "2000-10-08T00:00:00Z", + "Hs (total) (m)": 2.3019, + "Tp (total) (s)": 11.7405 + }, + { + "Date+Time": "2000-10-09T00:00:00Z", + "Hs (total) (m)": 2.2805, + "Tp (total) (s)": 12.1036 + }, + { + "Date+Time": "2000-10-10T00:00:00Z", + "Hs (total) (m)": 2.2729, + "Tp (total) (s)": 12.6698 + }, + { + "Date+Time": "2000-10-11T00:00:00Z", + "Hs (total) (m)": 2.3911, + "Tp (total) (s)": 12.4699 + }, + { + "Date+Time": "2000-10-12T00:00:00Z", + "Hs (total) (m)": 2.4651, + "Tp (total) (s)": 12.1464 + }, + { + "Date+Time": "2000-10-13T00:00:00Z", + "Hs (total) (m)": 2.121, + "Tp (total) (s)": 11.5864 + }, + { + "Date+Time": "2000-10-14T00:00:00Z", + "Hs (total) (m)": 2.2393, + "Tp (total) (s)": 11.3384 + }, + { + "Date+Time": "2000-10-15T00:00:00Z", + "Hs (total) (m)": 1.912, + "Tp (total) (s)": 9.9902 + }, + { + "Date+Time": "2000-10-16T00:00:00Z", + "Hs (total) (m)": 2.646, + "Tp (total) (s)": 14.5848 + }, + { + "Date+Time": "2000-10-17T00:00:00Z", + "Hs (total) (m)": 2.6864, + "Tp (total) (s)": 13.8867 + }, + { + "Date+Time": "2000-10-18T00:00:00Z", + "Hs (total) (m)": 2.8336, + "Tp (total) (s)": 11.7725 + }, + { + "Date+Time": "2000-10-19T00:00:00Z", + "Hs (total) (m)": 3.5936, + "Tp (total) (s)": 16.7859 + }, + { + "Date+Time": "2000-10-20T00:00:00Z", + "Hs (total) (m)": 3.8659, + "Tp (total) (s)": 16.3381 + }, + { + "Date+Time": "2000-10-21T00:00:00Z", + "Hs (total) (m)": 3.5424, + "Tp (total) (s)": 15.7315 + }, + { + "Date+Time": "2000-10-22T00:00:00Z", + "Hs (total) (m)": 2.8611, + "Tp (total) (s)": 14.3353 + }, + { + "Date+Time": "2000-10-23T00:00:00Z", + "Hs (total) (m)": 2.6826, + "Tp (total) (s)": 11.288 + }, + { + "Date+Time": "2000-10-24T00:00:00Z", + "Hs (total) (m)": 2.8611, + "Tp (total) (s)": 13.7791 + }, + { + "Date+Time": "2000-10-25T00:00:00Z", + "Hs (total) (m)": 3.4005, + "Tp (total) (s)": 13.1085 + }, + { + "Date+Time": "2000-10-26T00:00:00Z", + "Hs (total) (m)": 2.9153, + "Tp (total) (s)": 12.4966 + }, + { + "Date+Time": "2000-10-27T00:00:00Z", + "Hs (total) (m)": 2.9344, + "Tp (total) (s)": 10.5411 + }, + { + "Date+Time": "2000-10-28T00:00:00Z", + "Hs (total) (m)": 2.7429, + "Tp (total) (s)": 10.9935 + }, + { + "Date+Time": "2000-10-29T00:00:00Z", + "Hs (total) (m)": 2.971, + "Tp (total) (s)": 13.6639 + }, + { + "Date+Time": "2000-10-30T00:00:00Z", + "Hs (total) (m)": 3.7347, + "Tp (total) (s)": 13.9073 + }, + { + "Date+Time": "2000-10-31T00:00:00Z", + "Hs (total) (m)": 3.8141, + "Tp (total) (s)": 14.0263 + }, + { + "Date+Time": "2000-11-01T00:00:00Z", + "Hs (total) (m)": 3.4433, + "Tp (total) (s)": 13.1016 + }, + { + "Date+Time": "2000-11-02T00:00:00Z", + "Hs (total) (m)": 3.367, + "Tp (total) (s)": 11.9572 + }, + { + "Date+Time": "2000-11-03T00:00:00Z", + "Hs (total) (m)": 2.8588, + "Tp (total) (s)": 11.71 + }, + { + "Date+Time": "2000-11-04T00:00:00Z", + "Hs (total) (m)": 2.4407, + "Tp (total) (s)": 11.4345 + }, + { + "Date+Time": "2000-11-05T00:00:00Z", + "Hs (total) (m)": 2.0135, + "Tp (total) (s)": 11.6626 + }, + { + "Date+Time": "2000-11-06T00:00:00Z", + "Hs (total) (m)": 1.9379, + "Tp (total) (s)": 11.5123 + }, + { + "Date+Time": "2000-11-07T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 11.2362 + }, + { + "Date+Time": "2000-11-08T00:00:00Z", + "Hs (total) (m)": 1.3817, + "Tp (total) (s)": 4.3626 + }, + { + "Date+Time": "2000-11-09T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 4.3931 + }, + { + "Date+Time": "2000-11-10T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 10.7662 + }, + { + "Date+Time": "2000-11-11T00:00:00Z", + "Hs (total) (m)": 1.5374, + "Tp (total) (s)": 8.2034 + }, + { + "Date+Time": "2000-11-12T00:00:00Z", + "Hs (total) (m)": 2.5651, + "Tp (total) (s)": 9.5485 + }, + { + "Date+Time": "2000-11-13T00:00:00Z", + "Hs (total) (m)": 2.4483, + "Tp (total) (s)": 11.6672 + }, + { + "Date+Time": "2000-11-14T00:00:00Z", + "Hs (total) (m)": 1.9875, + "Tp (total) (s)": 11.9495 + }, + { + "Date+Time": "2000-11-15T00:00:00Z", + "Hs (total) (m)": 1.6282, + "Tp (total) (s)": 12.5553 + }, + { + "Date+Time": "2000-11-16T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 11.6733 + }, + { + "Date+Time": "2000-11-17T00:00:00Z", + "Hs (total) (m)": 1.8242, + "Tp (total) (s)": 9.9452 + }, + { + "Date+Time": "2000-11-18T00:00:00Z", + "Hs (total) (m)": 2.1203, + "Tp (total) (s)": 12.7949 + }, + { + "Date+Time": "2000-11-19T00:00:00Z", + "Hs (total) (m)": 2.3675, + "Tp (total) (s)": 12.9948 + }, + { + "Date+Time": "2000-11-20T00:00:00Z", + "Hs (total) (m)": 2.2774, + "Tp (total) (s)": 12.7392 + }, + { + "Date+Time": "2000-11-21T00:00:00Z", + "Hs (total) (m)": 2.0188, + "Tp (total) (s)": 11.3079 + }, + { + "Date+Time": "2000-11-22T00:00:00Z", + "Hs (total) (m)": 2.0516, + "Tp (total) (s)": 10.9996 + }, + { + "Date+Time": "2000-11-23T00:00:00Z", + "Hs (total) (m)": 2.0249, + "Tp (total) (s)": 12.2539 + }, + { + "Date+Time": "2000-11-24T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 12.1235 + }, + { + "Date+Time": "2000-11-25T00:00:00Z", + "Hs (total) (m)": 2.1905, + "Tp (total) (s)": 11.4574 + }, + { + "Date+Time": "2000-11-26T00:00:00Z", + "Hs (total) (m)": 2.8947, + "Tp (total) (s)": 13.4793 + }, + { + "Date+Time": "2000-11-27T00:00:00Z", + "Hs (total) (m)": 3.7492, + "Tp (total) (s)": 13.8119 + }, + { + "Date+Time": "2000-11-28T00:00:00Z", + "Hs (total) (m)": 3.5859, + "Tp (total) (s)": 13.8707 + }, + { + "Date+Time": "2000-11-29T00:00:00Z", + "Hs (total) (m)": 3.4989, + "Tp (total) (s)": 13.1588 + }, + { + "Date+Time": "2000-11-30T00:00:00Z", + "Hs (total) (m)": 2.7581, + "Tp (total) (s)": 11.3666 + }, + { + "Date+Time": "2000-12-01T00:00:00Z", + "Hs (total) (m)": 2.9237, + "Tp (total) (s)": 10.4801 + }, + { + "Date+Time": "2000-12-02T00:00:00Z", + "Hs (total) (m)": 4.4221, + "Tp (total) (s)": 12.814 + }, + { + "Date+Time": "2000-12-03T00:00:00Z", + "Hs (total) (m)": 3.5691, + "Tp (total) (s)": 12.6003 + }, + { + "Date+Time": "2000-12-04T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 12.1616 + }, + { + "Date+Time": "2000-12-05T00:00:00Z", + "Hs (total) (m)": 3.6721, + "Tp (total) (s)": 18.5347 + }, + { + "Date+Time": "2000-12-06T00:00:00Z", + "Hs (total) (m)": 3.9132, + "Tp (total) (s)": 17.1964 + }, + { + "Date+Time": "2000-12-07T00:00:00Z", + "Hs (total) (m)": 3.9308, + "Tp (total) (s)": 14.7626 + }, + { + "Date+Time": "2000-12-08T00:00:00Z", + "Hs (total) (m)": 3.016, + "Tp (total) (s)": 14.2163 + }, + { + "Date+Time": "2000-12-09T00:00:00Z", + "Hs (total) (m)": 2.2561, + "Tp (total) (s)": 13.7341 + }, + { + "Date+Time": "2000-12-10T00:00:00Z", + "Hs (total) (m)": 2.0936, + "Tp (total) (s)": 10.4183 + }, + { + "Date+Time": "2000-12-11T00:00:00Z", + "Hs (total) (m)": 3.2029, + "Tp (total) (s)": 16.5349 + }, + { + "Date+Time": "2000-12-12T00:00:00Z", + "Hs (total) (m)": 3.7721, + "Tp (total) (s)": 15.8864 + }, + { + "Date+Time": "2000-12-13T00:00:00Z", + "Hs (total) (m)": 3.5737, + "Tp (total) (s)": 15.0861 + }, + { + "Date+Time": "2000-12-14T00:00:00Z", + "Hs (total) (m)": 3.1716, + "Tp (total) (s)": 12.7361 + }, + { + "Date+Time": "2000-12-15T00:00:00Z", + "Hs (total) (m)": 2.5788, + "Tp (total) (s)": 12.4966 + }, + { + "Date+Time": "2000-12-16T00:00:00Z", + "Hs (total) (m)": 1.8029, + "Tp (total) (s)": 12.3478 + }, + { + "Date+Time": "2000-12-17T00:00:00Z", + "Hs (total) (m)": 1.9852, + "Tp (total) (s)": 15.801 + }, + { + "Date+Time": "2000-12-18T00:00:00Z", + "Hs (total) (m)": 2.9992, + "Tp (total) (s)": 15.2989 + }, + { + "Date+Time": "2000-12-19T00:00:00Z", + "Hs (total) (m)": 3.6271, + "Tp (total) (s)": 16.3259 + }, + { + "Date+Time": "2000-12-20T00:00:00Z", + "Hs (total) (m)": 3.5157, + "Tp (total) (s)": 15.7865 + }, + { + "Date+Time": "2000-12-21T00:00:00Z", + "Hs (total) (m)": 2.9733, + "Tp (total) (s)": 15.3821 + }, + { + "Date+Time": "2000-12-22T00:00:00Z", + "Hs (total) (m)": 2.5292, + "Tp (total) (s)": 14.655 + }, + { + "Date+Time": "2000-12-23T00:00:00Z", + "Hs (total) (m)": 2.0432, + "Tp (total) (s)": 12.6362 + }, + { + "Date+Time": "2000-12-24T00:00:00Z", + "Hs (total) (m)": 1.0453, + "Tp (total) (s)": 12.4523 + }, + { + "Date+Time": "2000-12-25T00:00:00Z", + "Hs (total) (m)": 0.9011, + "Tp (total) (s)": 3.4272 + }, + { + "Date+Time": "2000-12-26T00:00:00Z", + "Hs (total) (m)": 0.8957, + "Tp (total) (s)": 3.3471 + }, + { + "Date+Time": "2000-12-27T00:00:00Z", + "Hs (total) (m)": 0.4761, + "Tp (total) (s)": 15.4263 + }, + { + "Date+Time": "2000-12-28T00:00:00Z", + "Hs (total) (m)": 1.3718, + "Tp (total) (s)": 15.508 + }, + { + "Date+Time": "2000-12-29T00:00:00Z", + "Hs (total) (m)": 1.6076, + "Tp (total) (s)": 15.2333 + }, + { + "Date+Time": "2000-12-30T00:00:00Z", + "Hs (total) (m)": 1.5793, + "Tp (total) (s)": 14.4345 + }, + { + "Date+Time": "2000-12-31T00:00:00Z", + "Hs (total) (m)": 2.0951, + "Tp (total) (s)": 12.756 + }, + { + "Date+Time": "2001-01-01T00:00:00Z", + "Hs (total) (m)": 4.429, + "Tp (total) (s)": 15.5255 + }, + { + "Date+Time": "2001-01-02T00:00:00Z", + "Hs (total) (m)": 4.4687, + "Tp (total) (s)": 15.5126 + }, + { + "Date+Time": "2001-01-03T00:00:00Z", + "Hs (total) (m)": 4.1963, + "Tp (total) (s)": 15.4668 + }, + { + "Date+Time": "2001-01-04T00:00:00Z", + "Hs (total) (m)": 3.122, + "Tp (total) (s)": 15.2127 + }, + { + "Date+Time": "2001-01-05T00:00:00Z", + "Hs (total) (m)": 2.34, + "Tp (total) (s)": 12.405 + }, + { + "Date+Time": "2001-01-06T00:00:00Z", + "Hs (total) (m)": 1.8059, + "Tp (total) (s)": 12.7377 + }, + { + "Date+Time": "2001-01-07T00:00:00Z", + "Hs (total) (m)": 2.3843, + "Tp (total) (s)": 13.805 + }, + { + "Date+Time": "2001-01-08T00:00:00Z", + "Hs (total) (m)": 2.0936, + "Tp (total) (s)": 12.8834 + }, + { + "Date+Time": "2001-01-09T00:00:00Z", + "Hs (total) (m)": 1.8021, + "Tp (total) (s)": 10.989 + }, + { + "Date+Time": "2001-01-10T00:00:00Z", + "Hs (total) (m)": 1.5076, + "Tp (total) (s)": 9.5553 + }, + { + "Date+Time": "2001-01-11T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 11.5833 + }, + { + "Date+Time": "2001-01-12T00:00:00Z", + "Hs (total) (m)": 0.8248, + "Tp (total) (s)": 3.3853 + }, + { + "Date+Time": "2001-01-13T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 13.4518 + }, + { + "Date+Time": "2001-01-14T00:00:00Z", + "Hs (total) (m)": 1.0651, + "Tp (total) (s)": 12.4004 + }, + { + "Date+Time": "2001-01-15T00:00:00Z", + "Hs (total) (m)": 1.9578, + "Tp (total) (s)": 15.9436 + }, + { + "Date+Time": "2001-01-16T00:00:00Z", + "Hs (total) (m)": 2.71, + "Tp (total) (s)": 15.2013 + }, + { + "Date+Time": "2001-01-17T00:00:00Z", + "Hs (total) (m)": 2.2767, + "Tp (total) (s)": 13.9248 + }, + { + "Date+Time": "2001-01-18T00:00:00Z", + "Hs (total) (m)": 1.9593, + "Tp (total) (s)": 12.9742 + }, + { + "Date+Time": "2001-01-19T00:00:00Z", + "Hs (total) (m)": 1.6762, + "Tp (total) (s)": 12.3051 + }, + { + "Date+Time": "2001-01-20T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 11.607 + }, + { + "Date+Time": "2001-01-21T00:00:00Z", + "Hs (total) (m)": 2.0859, + "Tp (total) (s)": 11.4711 + }, + { + "Date+Time": "2001-01-22T00:00:00Z", + "Hs (total) (m)": 1.677, + "Tp (total) (s)": 11.4978 + }, + { + "Date+Time": "2001-01-23T00:00:00Z", + "Hs (total) (m)": 2.855, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "2001-01-24T00:00:00Z", + "Hs (total) (m)": 3.9735, + "Tp (total) (s)": 16.9141 + }, + { + "Date+Time": "2001-01-25T00:00:00Z", + "Hs (total) (m)": 4.4778, + "Tp (total) (s)": 16.0321 + }, + { + "Date+Time": "2001-01-26T00:00:00Z", + "Hs (total) (m)": 4.1208, + "Tp (total) (s)": 12.9933 + }, + { + "Date+Time": "2001-01-27T00:00:00Z", + "Hs (total) (m)": 4.9058, + "Tp (total) (s)": 16.3442 + }, + { + "Date+Time": "2001-01-28T00:00:00Z", + "Hs (total) (m)": 3.048, + "Tp (total) (s)": 14.0576 + }, + { + "Date+Time": "2001-01-29T00:00:00Z", + "Hs (total) (m)": 2.4949, + "Tp (total) (s)": 12.3066 + }, + { + "Date+Time": "2001-01-30T00:00:00Z", + "Hs (total) (m)": 2.1905, + "Tp (total) (s)": 12.5797 + }, + { + "Date+Time": "2001-01-31T00:00:00Z", + "Hs (total) (m)": 2.1355, + "Tp (total) (s)": 12.0281 + }, + { + "Date+Time": "2001-02-01T00:00:00Z", + "Hs (total) (m)": 2.0165, + "Tp (total) (s)": 15.0006 + }, + { + "Date+Time": "2001-02-02T00:00:00Z", + "Hs (total) (m)": 2.3766, + "Tp (total) (s)": 14.3368 + }, + { + "Date+Time": "2001-02-03T00:00:00Z", + "Hs (total) (m)": 2.1043, + "Tp (total) (s)": 12.7033 + }, + { + "Date+Time": "2001-02-04T00:00:00Z", + "Hs (total) (m)": 2.1645, + "Tp (total) (s)": 11.681 + }, + { + "Date+Time": "2001-02-05T00:00:00Z", + "Hs (total) (m)": 2.2721, + "Tp (total) (s)": 12.6843 + }, + { + "Date+Time": "2001-02-06T00:00:00Z", + "Hs (total) (m)": 2.2614, + "Tp (total) (s)": 12.5095 + }, + { + "Date+Time": "2001-02-07T00:00:00Z", + "Hs (total) (m)": 4.7105, + "Tp (total) (s)": 16.3686 + }, + { + "Date+Time": "2001-02-08T00:00:00Z", + "Hs (total) (m)": 3.708, + "Tp (total) (s)": 14.9518 + }, + { + "Date+Time": "2001-02-09T00:00:00Z", + "Hs (total) (m)": 2.1096, + "Tp (total) (s)": 12.7384 + }, + { + "Date+Time": "2001-02-10T00:00:00Z", + "Hs (total) (m)": 2.1355, + "Tp (total) (s)": 10.4915 + }, + { + "Date+Time": "2001-02-11T00:00:00Z", + "Hs (total) (m)": 2.4262, + "Tp (total) (s)": 9.5073 + }, + { + "Date+Time": "2001-02-12T00:00:00Z", + "Hs (total) (m)": 2.8878, + "Tp (total) (s)": 9.7362 + }, + { + "Date+Time": "2001-02-13T00:00:00Z", + "Hs (total) (m)": 2.9695, + "Tp (total) (s)": 12.1853 + }, + { + "Date+Time": "2001-02-14T00:00:00Z", + "Hs (total) (m)": 2.1798, + "Tp (total) (s)": 11.4742 + }, + { + "Date+Time": "2001-02-15T00:00:00Z", + "Hs (total) (m)": 2.1203, + "Tp (total) (s)": 13.4816 + }, + { + "Date+Time": "2001-02-16T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 15.0403 + }, + { + "Date+Time": "2001-02-17T00:00:00Z", + "Hs (total) (m)": 2.4667, + "Tp (total) (s)": 14.8175 + }, + { + "Date+Time": "2001-02-18T00:00:00Z", + "Hs (total) (m)": 1.8342, + "Tp (total) (s)": 12.9902 + }, + { + "Date+Time": "2001-02-19T00:00:00Z", + "Hs (total) (m)": 1.8036, + "Tp (total) (s)": 12.463 + }, + { + "Date+Time": "2001-02-20T00:00:00Z", + "Hs (total) (m)": 2.0409, + "Tp (total) (s)": 12.5324 + }, + { + "Date+Time": "2001-02-21T00:00:00Z", + "Hs (total) (m)": 2.1531, + "Tp (total) (s)": 15.2142 + }, + { + "Date+Time": "2001-02-22T00:00:00Z", + "Hs (total) (m)": 1.7388, + "Tp (total) (s)": 13.3015 + }, + { + "Date+Time": "2001-02-23T00:00:00Z", + "Hs (total) (m)": 1.7632, + "Tp (total) (s)": 14.848 + }, + { + "Date+Time": "2001-02-24T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 12.6011 + }, + { + "Date+Time": "2001-02-25T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 11.3193 + }, + { + "Date+Time": "2001-02-26T00:00:00Z", + "Hs (total) (m)": 1.0125, + "Tp (total) (s)": 11.4406 + }, + { + "Date+Time": "2001-02-27T00:00:00Z", + "Hs (total) (m)": 1.719, + "Tp (total) (s)": 4.3504 + }, + { + "Date+Time": "2001-02-28T00:00:00Z", + "Hs (total) (m)": 1.7174, + "Tp (total) (s)": 9.2204 + }, + { + "Date+Time": "2001-03-01T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "2001-03-02T00:00:00Z", + "Hs (total) (m)": 0.499, + "Tp (total) (s)": 10.7044 + }, + { + "Date+Time": "2001-03-03T00:00:00Z", + "Hs (total) (m)": 0.5402, + "Tp (total) (s)": 11.2888 + }, + { + "Date+Time": "2001-03-04T00:00:00Z", + "Hs (total) (m)": 0.6729, + "Tp (total) (s)": 10.9432 + }, + { + "Date+Time": "2001-03-05T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 12.4859 + }, + { + "Date+Time": "2001-03-06T00:00:00Z", + "Hs (total) (m)": 1.9738, + "Tp (total) (s)": 14.0843 + }, + { + "Date+Time": "2001-03-07T00:00:00Z", + "Hs (total) (m)": 2.8123, + "Tp (total) (s)": 5.9885 + }, + { + "Date+Time": "2001-03-08T00:00:00Z", + "Hs (total) (m)": 3.2922, + "Tp (total) (s)": 12.4027 + }, + { + "Date+Time": "2001-03-09T00:00:00Z", + "Hs (total) (m)": 3.6538, + "Tp (total) (s)": 12.4821 + }, + { + "Date+Time": "2001-03-10T00:00:00Z", + "Hs (total) (m)": 3.0084, + "Tp (total) (s)": 13.4548 + }, + { + "Date+Time": "2001-03-11T00:00:00Z", + "Hs (total) (m)": 2.2004, + "Tp (total) (s)": 11.3254 + }, + { + "Date+Time": "2001-03-12T00:00:00Z", + "Hs (total) (m)": 2.1813, + "Tp (total) (s)": 13.4465 + }, + { + "Date+Time": "2001-03-13T00:00:00Z", + "Hs (total) (m)": 2.6795, + "Tp (total) (s)": 13.8546 + }, + { + "Date+Time": "2001-03-14T00:00:00Z", + "Hs (total) (m)": 3.2785, + "Tp (total) (s)": 13.0833 + }, + { + "Date+Time": "2001-03-15T00:00:00Z", + "Hs (total) (m)": 2.2828, + "Tp (total) (s)": 12.4653 + }, + { + "Date+Time": "2001-03-16T00:00:00Z", + "Hs (total) (m)": 2.1729, + "Tp (total) (s)": 11.4818 + }, + { + "Date+Time": "2001-03-17T00:00:00Z", + "Hs (total) (m)": 2.0745, + "Tp (total) (s)": 13.1573 + }, + { + "Date+Time": "2001-03-18T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 5.1668 + }, + { + "Date+Time": "2001-03-19T00:00:00Z", + "Hs (total) (m)": 0.6005, + "Tp (total) (s)": 2.7993 + }, + { + "Date+Time": "2001-03-20T00:00:00Z", + "Hs (total) (m)": 1.4412, + "Tp (total) (s)": 14.436 + }, + { + "Date+Time": "2001-03-21T00:00:00Z", + "Hs (total) (m)": 2.2904, + "Tp (total) (s)": 14.0599 + }, + { + "Date+Time": "2001-03-22T00:00:00Z", + "Hs (total) (m)": 1.017, + "Tp (total) (s)": 11.6794 + }, + { + "Date+Time": "2001-03-23T00:00:00Z", + "Hs (total) (m)": 1.3604, + "Tp (total) (s)": 11.6695 + }, + { + "Date+Time": "2001-03-24T00:00:00Z", + "Hs (total) (m)": 1.8586, + "Tp (total) (s)": 12.3104 + }, + { + "Date+Time": "2001-03-25T00:00:00Z", + "Hs (total) (m)": 1.8738, + "Tp (total) (s)": 12.421 + }, + { + "Date+Time": "2001-03-26T00:00:00Z", + "Hs (total) (m)": 1.6594, + "Tp (total) (s)": 11.4681 + }, + { + "Date+Time": "2001-03-27T00:00:00Z", + "Hs (total) (m)": 1.3604, + "Tp (total) (s)": 10.1718 + }, + { + "Date+Time": "2001-03-28T00:00:00Z", + "Hs (total) (m)": 0.7508, + "Tp (total) (s)": 9.6339 + }, + { + "Date+Time": "2001-03-29T00:00:00Z", + "Hs (total) (m)": 1.2543, + "Tp (total) (s)": 8.7451 + }, + { + "Date+Time": "2001-03-30T00:00:00Z", + "Hs (total) (m)": 1.5046, + "Tp (total) (s)": 11.0187 + }, + { + "Date+Time": "2001-03-31T00:00:00Z", + "Hs (total) (m)": 1.9639, + "Tp (total) (s)": 10.3656 + }, + { + "Date+Time": "2001-04-01T00:00:00Z", + "Hs (total) (m)": 2.5781, + "Tp (total) (s)": 15.4271 + }, + { + "Date+Time": "2001-04-02T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 15.2058 + }, + { + "Date+Time": "2001-04-03T00:00:00Z", + "Hs (total) (m)": 3.3715, + "Tp (total) (s)": 13.332 + }, + { + "Date+Time": "2001-04-04T00:00:00Z", + "Hs (total) (m)": 2.6063, + "Tp (total) (s)": 10.3519 + }, + { + "Date+Time": "2001-04-05T00:00:00Z", + "Hs (total) (m)": 1.9486, + "Tp (total) (s)": 10.1939 + }, + { + "Date+Time": "2001-04-06T00:00:00Z", + "Hs (total) (m)": 2.5277, + "Tp (total) (s)": 11.8564 + }, + { + "Date+Time": "2001-04-07T00:00:00Z", + "Hs (total) (m)": 3.1571, + "Tp (total) (s)": 10.3648 + }, + { + "Date+Time": "2001-04-08T00:00:00Z", + "Hs (total) (m)": 3.1755, + "Tp (total) (s)": 13.3366 + }, + { + "Date+Time": "2001-04-09T00:00:00Z", + "Hs (total) (m)": 2.871, + "Tp (total) (s)": 14.3864 + }, + { + "Date+Time": "2001-04-10T00:00:00Z", + "Hs (total) (m)": 2.2347, + "Tp (total) (s)": 9.6576 + }, + { + "Date+Time": "2001-04-11T00:00:00Z", + "Hs (total) (m)": 2.8283, + "Tp (total) (s)": 13.3244 + }, + { + "Date+Time": "2001-04-12T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 12.6217 + }, + { + "Date+Time": "2001-04-13T00:00:00Z", + "Hs (total) (m)": 1.352, + "Tp (total) (s)": 10.548 + }, + { + "Date+Time": "2001-04-14T00:00:00Z", + "Hs (total) (m)": 1.5961, + "Tp (total) (s)": 12.9788 + }, + { + "Date+Time": "2001-04-15T00:00:00Z", + "Hs (total) (m)": 1.6755, + "Tp (total) (s)": 12.7117 + }, + { + "Date+Time": "2001-04-16T00:00:00Z", + "Hs (total) (m)": 1.5526, + "Tp (total) (s)": 11.7183 + }, + { + "Date+Time": "2001-04-17T00:00:00Z", + "Hs (total) (m)": 1.4046, + "Tp (total) (s)": 11.4162 + }, + { + "Date+Time": "2001-04-18T00:00:00Z", + "Hs (total) (m)": 1.3985, + "Tp (total) (s)": 11.0355 + }, + { + "Date+Time": "2001-04-19T00:00:00Z", + "Hs (total) (m)": 1.0582, + "Tp (total) (s)": 9.5561 + }, + { + "Date+Time": "2001-04-20T00:00:00Z", + "Hs (total) (m)": 0.8698, + "Tp (total) (s)": 9.6828 + }, + { + "Date+Time": "2001-04-21T00:00:00Z", + "Hs (total) (m)": 0.602, + "Tp (total) (s)": 7.0833 + }, + { + "Date+Time": "2001-04-22T00:00:00Z", + "Hs (total) (m)": 1.0514, + "Tp (total) (s)": 11.1789 + }, + { + "Date+Time": "2001-04-23T00:00:00Z", + "Hs (total) (m)": 1.3131, + "Tp (total) (s)": 10.8058 + }, + { + "Date+Time": "2001-04-24T00:00:00Z", + "Hs (total) (m)": 1.529, + "Tp (total) (s)": 10.7044 + }, + { + "Date+Time": "2001-04-25T00:00:00Z", + "Hs (total) (m)": 1.7052, + "Tp (total) (s)": 11.7145 + }, + { + "Date+Time": "2001-04-26T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 10.9157 + }, + { + "Date+Time": "2001-04-27T00:00:00Z", + "Hs (total) (m)": 1.1734, + "Tp (total) (s)": 10.033 + }, + { + "Date+Time": "2001-04-28T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 8.7603 + }, + { + "Date+Time": "2001-04-29T00:00:00Z", + "Hs (total) (m)": 1.3924, + "Tp (total) (s)": 8.2415 + }, + { + "Date+Time": "2001-04-30T00:00:00Z", + "Hs (total) (m)": 1.9173, + "Tp (total) (s)": 8.6306 + }, + { + "Date+Time": "2001-05-01T00:00:00Z", + "Hs (total) (m)": 2.3827, + "Tp (total) (s)": 13.6998 + }, + { + "Date+Time": "2001-05-02T00:00:00Z", + "Hs (total) (m)": 1.4214, + "Tp (total) (s)": 11.8702 + }, + { + "Date+Time": "2001-05-03T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 10.1527 + }, + { + "Date+Time": "2001-05-04T00:00:00Z", + "Hs (total) (m)": 1.0865, + "Tp (total) (s)": 13.2282 + }, + { + "Date+Time": "2001-05-05T00:00:00Z", + "Hs (total) (m)": 1.3306, + "Tp (total) (s)": 11.7771 + }, + { + "Date+Time": "2001-05-06T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 10.551 + }, + { + "Date+Time": "2001-05-07T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 9.5141 + }, + { + "Date+Time": "2001-05-08T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 11.037 + }, + { + "Date+Time": "2001-05-09T00:00:00Z", + "Hs (total) (m)": 1.1711, + "Tp (total) (s)": 11.3712 + }, + { + "Date+Time": "2001-05-10T00:00:00Z", + "Hs (total) (m)": 1.2215, + "Tp (total) (s)": 10.5281 + }, + { + "Date+Time": "2001-05-11T00:00:00Z", + "Hs (total) (m)": 1.1353, + "Tp (total) (s)": 10.0383 + }, + { + "Date+Time": "2001-05-12T00:00:00Z", + "Hs (total) (m)": 1.1902, + "Tp (total) (s)": 11.1057 + }, + { + "Date+Time": "2001-05-13T00:00:00Z", + "Hs (total) (m)": 1.2108, + "Tp (total) (s)": 10.7311 + }, + { + "Date+Time": "2001-05-14T00:00:00Z", + "Hs (total) (m)": 0.9163, + "Tp (total) (s)": 9.3303 + }, + { + "Date+Time": "2001-05-15T00:00:00Z", + "Hs (total) (m)": 0.7744, + "Tp (total) (s)": 8.7611 + }, + { + "Date+Time": "2001-05-16T00:00:00Z", + "Hs (total) (m)": 0.6592, + "Tp (total) (s)": 8.3506 + }, + { + "Date+Time": "2001-05-17T00:00:00Z", + "Hs (total) (m)": 1.0346, + "Tp (total) (s)": 7.8059 + }, + { + "Date+Time": "2001-05-18T00:00:00Z", + "Hs (total) (m)": 0.9774, + "Tp (total) (s)": 7.4175 + }, + { + "Date+Time": "2001-05-19T00:00:00Z", + "Hs (total) (m)": 1.0086, + "Tp (total) (s)": 9.2334 + }, + { + "Date+Time": "2001-05-20T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 9.5721 + }, + { + "Date+Time": "2001-05-21T00:00:00Z", + "Hs (total) (m)": 0.9568, + "Tp (total) (s)": 7.7784 + }, + { + "Date+Time": "2001-05-22T00:00:00Z", + "Hs (total) (m)": 0.8156, + "Tp (total) (s)": 7.7166 + }, + { + "Date+Time": "2001-05-23T00:00:00Z", + "Hs (total) (m)": 0.8942, + "Tp (total) (s)": 10.3458 + }, + { + "Date+Time": "2001-05-24T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 9.9864 + }, + { + "Date+Time": "2001-05-25T00:00:00Z", + "Hs (total) (m)": 0.8095, + "Tp (total) (s)": 9.376 + }, + { + "Date+Time": "2001-05-26T00:00:00Z", + "Hs (total) (m)": 1.4489, + "Tp (total) (s)": 13.3282 + }, + { + "Date+Time": "2001-05-27T00:00:00Z", + "Hs (total) (m)": 1.5458, + "Tp (total) (s)": 11.6749 + }, + { + "Date+Time": "2001-05-28T00:00:00Z", + "Hs (total) (m)": 1.5725, + "Tp (total) (s)": 10.432 + }, + { + "Date+Time": "2001-05-29T00:00:00Z", + "Hs (total) (m)": 1.9822, + "Tp (total) (s)": 10.1604 + }, + { + "Date+Time": "2001-05-30T00:00:00Z", + "Hs (total) (m)": 2.2248, + "Tp (total) (s)": 9.2128 + }, + { + "Date+Time": "2001-05-31T00:00:00Z", + "Hs (total) (m)": 2.1004, + "Tp (total) (s)": 8.7466 + }, + { + "Date+Time": "2001-06-01T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 8.6657 + }, + { + "Date+Time": "2001-06-02T00:00:00Z", + "Hs (total) (m)": 1.3771, + "Tp (total) (s)": 8.5894 + }, + { + "Date+Time": "2001-06-03T00:00:00Z", + "Hs (total) (m)": 1.3634, + "Tp (total) (s)": 7.59 + }, + { + "Date+Time": "2001-06-04T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 9.7598 + }, + { + "Date+Time": "2001-06-05T00:00:00Z", + "Hs (total) (m)": 0.7485, + "Tp (total) (s)": 9.83 + }, + { + "Date+Time": "2001-06-06T00:00:00Z", + "Hs (total) (m)": 0.808, + "Tp (total) (s)": 9.5065 + }, + { + "Date+Time": "2001-06-07T00:00:00Z", + "Hs (total) (m)": 1.0361, + "Tp (total) (s)": 10.4709 + }, + { + "Date+Time": "2001-06-08T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 9.5286 + }, + { + "Date+Time": "2001-06-09T00:00:00Z", + "Hs (total) (m)": 1.1811, + "Tp (total) (s)": 9.3043 + }, + { + "Date+Time": "2001-06-10T00:00:00Z", + "Hs (total) (m)": 1.0735, + "Tp (total) (s)": 10.4709 + }, + { + "Date+Time": "2001-06-11T00:00:00Z", + "Hs (total) (m)": 0.8728, + "Tp (total) (s)": 10.2077 + }, + { + "Date+Time": "2001-06-12T00:00:00Z", + "Hs (total) (m)": 0.8599, + "Tp (total) (s)": 8.5162 + }, + { + "Date+Time": "2001-06-13T00:00:00Z", + "Hs (total) (m)": 0.7004, + "Tp (total) (s)": 8.5238 + }, + { + "Date+Time": "2001-06-14T00:00:00Z", + "Hs (total) (m)": 0.9957, + "Tp (total) (s)": 9.6438 + }, + { + "Date+Time": "2001-06-15T00:00:00Z", + "Hs (total) (m)": 1.5748, + "Tp (total) (s)": 9.6126 + }, + { + "Date+Time": "2001-06-16T00:00:00Z", + "Hs (total) (m)": 1.1681, + "Tp (total) (s)": 10.5152 + }, + { + "Date+Time": "2001-06-17T00:00:00Z", + "Hs (total) (m)": 1.3024, + "Tp (total) (s)": 10.3862 + }, + { + "Date+Time": "2001-06-18T00:00:00Z", + "Hs (total) (m)": 0.589, + "Tp (total) (s)": 7.9943 + }, + { + "Date+Time": "2001-06-19T00:00:00Z", + "Hs (total) (m)": 1.1841, + "Tp (total) (s)": 4.5877 + }, + { + "Date+Time": "2001-06-20T00:00:00Z", + "Hs (total) (m)": 2.0951, + "Tp (total) (s)": 10.2176 + }, + { + "Date+Time": "2001-06-21T00:00:00Z", + "Hs (total) (m)": 2.4766, + "Tp (total) (s)": 10.4366 + }, + { + "Date+Time": "2001-06-22T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 10.3679 + }, + { + "Date+Time": "2001-06-23T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 10.2512 + }, + { + "Date+Time": "2001-06-24T00:00:00Z", + "Hs (total) (m)": 0.9438, + "Tp (total) (s)": 9.4386 + }, + { + "Date+Time": "2001-06-25T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 8.5475 + }, + { + "Date+Time": "2001-06-26T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 8.5314 + }, + { + "Date+Time": "2001-06-27T00:00:00Z", + "Hs (total) (m)": 1.3726, + "Tp (total) (s)": 10.7761 + }, + { + "Date+Time": "2001-06-28T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 10.4884 + }, + { + "Date+Time": "2001-06-29T00:00:00Z", + "Hs (total) (m)": 1.1284, + "Tp (total) (s)": 8.5513 + }, + { + "Date+Time": "2001-06-30T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 10.3427 + }, + { + "Date+Time": "2001-07-01T00:00:00Z", + "Hs (total) (m)": 1.8899, + "Tp (total) (s)": 9.7995 + }, + { + "Date+Time": "2001-07-02T00:00:00Z", + "Hs (total) (m)": 1.5488, + "Tp (total) (s)": 9.2326 + }, + { + "Date+Time": "2001-07-03T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 9.3745 + }, + { + "Date+Time": "2001-07-04T00:00:00Z", + "Hs (total) (m)": 1.1658, + "Tp (total) (s)": 9.5019 + }, + { + "Date+Time": "2001-07-05T00:00:00Z", + "Hs (total) (m)": 1.2024, + "Tp (total) (s)": 9.4844 + }, + { + "Date+Time": "2001-07-06T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 8.8603 + }, + { + "Date+Time": "2001-07-07T00:00:00Z", + "Hs (total) (m)": 0.8301, + "Tp (total) (s)": 8.6818 + }, + { + "Date+Time": "2001-07-08T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 8.5887 + }, + { + "Date+Time": "2001-07-09T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 9.2921 + }, + { + "Date+Time": "2001-07-10T00:00:00Z", + "Hs (total) (m)": 1.5267, + "Tp (total) (s)": 7.4107 + }, + { + "Date+Time": "2001-07-11T00:00:00Z", + "Hs (total) (m)": 3.3433, + "Tp (total) (s)": 10.6716 + }, + { + "Date+Time": "2001-07-12T00:00:00Z", + "Hs (total) (m)": 2.6193, + "Tp (total) (s)": 10.5152 + }, + { + "Date+Time": "2001-07-13T00:00:00Z", + "Hs (total) (m)": 1.8632, + "Tp (total) (s)": 9.3341 + }, + { + "Date+Time": "2001-07-14T00:00:00Z", + "Hs (total) (m)": 1.1505, + "Tp (total) (s)": 8.9228 + }, + { + "Date+Time": "2001-07-15T00:00:00Z", + "Hs (total) (m)": 0.94, + "Tp (total) (s)": 8.739 + }, + { + "Date+Time": "2001-07-16T00:00:00Z", + "Hs (total) (m)": 0.8736, + "Tp (total) (s)": 7.4808 + }, + { + "Date+Time": "2001-07-17T00:00:00Z", + "Hs (total) (m)": 1.3703, + "Tp (total) (s)": 9.5012 + }, + { + "Date+Time": "2001-07-18T00:00:00Z", + "Hs (total) (m)": 0.9133, + "Tp (total) (s)": 10.548 + }, + { + "Date+Time": "2001-07-19T00:00:00Z", + "Hs (total) (m)": 1.3634, + "Tp (total) (s)": 10.744 + }, + { + "Date+Time": "2001-07-20T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 10.255 + }, + { + "Date+Time": "2001-07-21T00:00:00Z", + "Hs (total) (m)": 1.3436, + "Tp (total) (s)": 7.2695 + }, + { + "Date+Time": "2001-07-22T00:00:00Z", + "Hs (total) (m)": 1.6465, + "Tp (total) (s)": 10.3572 + }, + { + "Date+Time": "2001-07-23T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 9.756 + }, + { + "Date+Time": "2001-07-24T00:00:00Z", + "Hs (total) (m)": 1.5481, + "Tp (total) (s)": 7.6769 + }, + { + "Date+Time": "2001-07-25T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 8.1523 + }, + { + "Date+Time": "2001-07-26T00:00:00Z", + "Hs (total) (m)": 1.1475, + "Tp (total) (s)": 7.8394 + }, + { + "Date+Time": "2001-07-27T00:00:00Z", + "Hs (total) (m)": 1.0811, + "Tp (total) (s)": 7.87 + }, + { + "Date+Time": "2001-07-28T00:00:00Z", + "Hs (total) (m)": 0.7538, + "Tp (total) (s)": 8.4826 + }, + { + "Date+Time": "2001-07-29T00:00:00Z", + "Hs (total) (m)": 1.2299, + "Tp (total) (s)": 9.7598 + }, + { + "Date+Time": "2001-07-30T00:00:00Z", + "Hs (total) (m)": 1.0994, + "Tp (total) (s)": 10.2466 + }, + { + "Date+Time": "2001-07-31T00:00:00Z", + "Hs (total) (m)": 1.5763, + "Tp (total) (s)": 10.1398 + }, + { + "Date+Time": "2001-08-01T00:00:00Z", + "Hs (total) (m)": 1.2551, + "Tp (total) (s)": 9.5195 + }, + { + "Date+Time": "2001-08-02T00:00:00Z", + "Hs (total) (m)": 1.352, + "Tp (total) (s)": 8.8633 + }, + { + "Date+Time": "2001-08-03T00:00:00Z", + "Hs (total) (m)": 1.0903, + "Tp (total) (s)": 8.5284 + }, + { + "Date+Time": "2001-08-04T00:00:00Z", + "Hs (total) (m)": 1.1101, + "Tp (total) (s)": 8.449 + }, + { + "Date+Time": "2001-08-05T00:00:00Z", + "Hs (total) (m)": 1.0292, + "Tp (total) (s)": 7.8661 + }, + { + "Date+Time": "2001-08-06T00:00:00Z", + "Hs (total) (m)": 0.969, + "Tp (total) (s)": 7.2764 + }, + { + "Date+Time": "2001-08-07T00:00:00Z", + "Hs (total) (m)": 1.5061, + "Tp (total) (s)": 7.5991 + }, + { + "Date+Time": "2001-08-08T00:00:00Z", + "Hs (total) (m)": 1.4969, + "Tp (total) (s)": 11.1438 + }, + { + "Date+Time": "2001-08-09T00:00:00Z", + "Hs (total) (m)": 1.31, + "Tp (total) (s)": 10.744 + }, + { + "Date+Time": "2001-08-10T00:00:00Z", + "Hs (total) (m)": 1.1216, + "Tp (total) (s)": 7.5198 + }, + { + "Date+Time": "2001-08-11T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 5.9839 + }, + { + "Date+Time": "2001-08-12T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 6.5294 + }, + { + "Date+Time": "2001-08-13T00:00:00Z", + "Hs (total) (m)": 2.0257, + "Tp (total) (s)": 8.0134 + }, + { + "Date+Time": "2001-08-14T00:00:00Z", + "Hs (total) (m)": 2.0295, + "Tp (total) (s)": 9.1815 + }, + { + "Date+Time": "2001-08-15T00:00:00Z", + "Hs (total) (m)": 1.5954, + "Tp (total) (s)": 10.3488 + }, + { + "Date+Time": "2001-08-16T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 10.2641 + }, + { + "Date+Time": "2001-08-17T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 9.6202 + }, + { + "Date+Time": "2001-08-18T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 9.035 + }, + { + "Date+Time": "2001-08-19T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 8.5986 + }, + { + "Date+Time": "2001-08-20T00:00:00Z", + "Hs (total) (m)": 1.384, + "Tp (total) (s)": 6.3028 + }, + { + "Date+Time": "2001-08-21T00:00:00Z", + "Hs (total) (m)": 2.8405, + "Tp (total) (s)": 11.3109 + }, + { + "Date+Time": "2001-08-22T00:00:00Z", + "Hs (total) (m)": 2.694, + "Tp (total) (s)": 10.4175 + }, + { + "Date+Time": "2001-08-23T00:00:00Z", + "Hs (total) (m)": 2.1455, + "Tp (total) (s)": 10.5564 + }, + { + "Date+Time": "2001-08-24T00:00:00Z", + "Hs (total) (m)": 1.9654, + "Tp (total) (s)": 11.4772 + }, + { + "Date+Time": "2001-08-25T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 10.9035 + }, + { + "Date+Time": "2001-08-26T00:00:00Z", + "Hs (total) (m)": 1.2192, + "Tp (total) (s)": 9.8102 + }, + { + "Date+Time": "2001-08-27T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 8.9961 + }, + { + "Date+Time": "2001-08-28T00:00:00Z", + "Hs (total) (m)": 0.7675, + "Tp (total) (s)": 8.0134 + }, + { + "Date+Time": "2001-08-29T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 13.847 + }, + { + "Date+Time": "2001-08-30T00:00:00Z", + "Hs (total) (m)": 1.4824, + "Tp (total) (s)": 11.8473 + }, + { + "Date+Time": "2001-08-31T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 8.9869 + }, + { + "Date+Time": "2001-09-01T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 8.3766 + }, + { + "Date+Time": "2001-09-02T00:00:00Z", + "Hs (total) (m)": 1.4451, + "Tp (total) (s)": 7.255 + }, + { + "Date+Time": "2001-09-03T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 8.7428 + }, + { + "Date+Time": "2001-09-04T00:00:00Z", + "Hs (total) (m)": 1.2215, + "Tp (total) (s)": 9.6965 + }, + { + "Date+Time": "2001-09-05T00:00:00Z", + "Hs (total) (m)": 1.1376, + "Tp (total) (s)": 8.9259 + }, + { + "Date+Time": "2001-09-06T00:00:00Z", + "Hs (total) (m)": 1.1628, + "Tp (total) (s)": 6.7629 + }, + { + "Date+Time": "2001-09-07T00:00:00Z", + "Hs (total) (m)": 1.1361, + "Tp (total) (s)": 11.4544 + }, + { + "Date+Time": "2001-09-08T00:00:00Z", + "Hs (total) (m)": 1.6938, + "Tp (total) (s)": 8.7649 + }, + { + "Date+Time": "2001-09-09T00:00:00Z", + "Hs (total) (m)": 1.368, + "Tp (total) (s)": 9.4363 + }, + { + "Date+Time": "2001-09-10T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 9.3226 + }, + { + "Date+Time": "2001-09-11T00:00:00Z", + "Hs (total) (m)": 0.824, + "Tp (total) (s)": 9.6225 + }, + { + "Date+Time": "2001-09-12T00:00:00Z", + "Hs (total) (m)": 1.5275, + "Tp (total) (s)": 5.8771 + }, + { + "Date+Time": "2001-09-13T00:00:00Z", + "Hs (total) (m)": 2.0196, + "Tp (total) (s)": 8.5284 + }, + { + "Date+Time": "2001-09-14T00:00:00Z", + "Hs (total) (m)": 2.0371, + "Tp (total) (s)": 10.593 + }, + { + "Date+Time": "2001-09-15T00:00:00Z", + "Hs (total) (m)": 1.6831, + "Tp (total) (s)": 10.0841 + }, + { + "Date+Time": "2001-09-16T00:00:00Z", + "Hs (total) (m)": 1.677, + "Tp (total) (s)": 10.2527 + }, + { + "Date+Time": "2001-09-17T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 10.5586 + }, + { + "Date+Time": "2001-09-18T00:00:00Z", + "Hs (total) (m)": 0.9827, + "Tp (total) (s)": 9.9506 + }, + { + "Date+Time": "2001-09-19T00:00:00Z", + "Hs (total) (m)": 1.165, + "Tp (total) (s)": 12.6858 + }, + { + "Date+Time": "2001-09-20T00:00:00Z", + "Hs (total) (m)": 1.1734, + "Tp (total) (s)": 11.4437 + }, + { + "Date+Time": "2001-09-21T00:00:00Z", + "Hs (total) (m)": 1.0147, + "Tp (total) (s)": 10.2046 + }, + { + "Date+Time": "2001-09-22T00:00:00Z", + "Hs (total) (m)": 0.7668, + "Tp (total) (s)": 8.6131 + }, + { + "Date+Time": "2001-09-23T00:00:00Z", + "Hs (total) (m)": 1.5259, + "Tp (total) (s)": 14.9998 + }, + { + "Date+Time": "2001-09-24T00:00:00Z", + "Hs (total) (m)": 1.5671, + "Tp (total) (s)": 13.4945 + }, + { + "Date+Time": "2001-09-25T00:00:00Z", + "Hs (total) (m)": 1.3283, + "Tp (total) (s)": 12.4393 + }, + { + "Date+Time": "2001-09-26T00:00:00Z", + "Hs (total) (m)": 1.5007, + "Tp (total) (s)": 10.5449 + }, + { + "Date+Time": "2001-09-27T00:00:00Z", + "Hs (total) (m)": 1.3565, + "Tp (total) (s)": 8.3911 + }, + { + "Date+Time": "2001-09-28T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 9.2471 + }, + { + "Date+Time": "2001-09-29T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 9.1342 + }, + { + "Date+Time": "2001-09-30T00:00:00Z", + "Hs (total) (m)": 2.8542, + "Tp (total) (s)": 8.9511 + }, + { + "Date+Time": "2001-10-01T00:00:00Z", + "Hs (total) (m)": 3.7133, + "Tp (total) (s)": 9.8148 + }, + { + "Date+Time": "2001-10-02T00:00:00Z", + "Hs (total) (m)": 5.3188, + "Tp (total) (s)": 13.1912 + }, + { + "Date+Time": "2001-10-03T00:00:00Z", + "Hs (total) (m)": 3.0732, + "Tp (total) (s)": 12.2394 + }, + { + "Date+Time": "2001-10-04T00:00:00Z", + "Hs (total) (m)": 2.1584, + "Tp (total) (s)": 10.1962 + }, + { + "Date+Time": "2001-10-05T00:00:00Z", + "Hs (total) (m)": 2.2568, + "Tp (total) (s)": 9.2631 + }, + { + "Date+Time": "2001-10-06T00:00:00Z", + "Hs (total) (m)": 2.7665, + "Tp (total) (s)": 10.4625 + }, + { + "Date+Time": "2001-10-07T00:00:00Z", + "Hs (total) (m)": 4.1009, + "Tp (total) (s)": 14.0271 + }, + { + "Date+Time": "2001-10-08T00:00:00Z", + "Hs (total) (m)": 2.3652, + "Tp (total) (s)": 12.4866 + }, + { + "Date+Time": "2001-10-09T00:00:00Z", + "Hs (total) (m)": 2.0081, + "Tp (total) (s)": 12.5378 + }, + { + "Date+Time": "2001-10-10T00:00:00Z", + "Hs (total) (m)": 2.2095, + "Tp (total) (s)": 9.7385 + }, + { + "Date+Time": "2001-10-11T00:00:00Z", + "Hs (total) (m)": 2.1249, + "Tp (total) (s)": 12.656 + }, + { + "Date+Time": "2001-10-12T00:00:00Z", + "Hs (total) (m)": 3.2464, + "Tp (total) (s)": 12.6652 + }, + { + "Date+Time": "2001-10-13T00:00:00Z", + "Hs (total) (m)": 2.1393, + "Tp (total) (s)": 11.7977 + }, + { + "Date+Time": "2001-10-14T00:00:00Z", + "Hs (total) (m)": 1.5526, + "Tp (total) (s)": 11.3636 + }, + { + "Date+Time": "2001-10-15T00:00:00Z", + "Hs (total) (m)": 2.0859, + "Tp (total) (s)": 11.0317 + }, + { + "Date+Time": "2001-10-16T00:00:00Z", + "Hs (total) (m)": 3.3807, + "Tp (total) (s)": 14.0172 + }, + { + "Date+Time": "2001-10-17T00:00:00Z", + "Hs (total) (m)": 2.9725, + "Tp (total) (s)": 12.3875 + }, + { + "Date+Time": "2001-10-18T00:00:00Z", + "Hs (total) (m)": 3.1884, + "Tp (total) (s)": 12.6118 + }, + { + "Date+Time": "2001-10-19T00:00:00Z", + "Hs (total) (m)": 2.6719, + "Tp (total) (s)": 10.7967 + }, + { + "Date+Time": "2001-10-20T00:00:00Z", + "Hs (total) (m)": 1.5427, + "Tp (total) (s)": 10.0764 + }, + { + "Date+Time": "2001-10-21T00:00:00Z", + "Hs (total) (m)": 1.2238, + "Tp (total) (s)": 9.6545 + }, + { + "Date+Time": "2001-10-22T00:00:00Z", + "Hs (total) (m)": 1.0109, + "Tp (total) (s)": 9.0136 + }, + { + "Date+Time": "2001-10-23T00:00:00Z", + "Hs (total) (m)": 0.9774, + "Tp (total) (s)": 11.2384 + }, + { + "Date+Time": "2001-10-24T00:00:00Z", + "Hs (total) (m)": 1.4199, + "Tp (total) (s)": 7.8784 + }, + { + "Date+Time": "2001-10-25T00:00:00Z", + "Hs (total) (m)": 2.8306, + "Tp (total) (s)": 12.5484 + }, + { + "Date+Time": "2001-10-26T00:00:00Z", + "Hs (total) (m)": 3.4608, + "Tp (total) (s)": 11.1461 + }, + { + "Date+Time": "2001-10-27T00:00:00Z", + "Hs (total) (m)": 2.9069, + "Tp (total) (s)": 12.3272 + }, + { + "Date+Time": "2001-10-28T00:00:00Z", + "Hs (total) (m)": 1.693, + "Tp (total) (s)": 11.0065 + }, + { + "Date+Time": "2001-10-29T00:00:00Z", + "Hs (total) (m)": 1.2162, + "Tp (total) (s)": 10.2954 + }, + { + "Date+Time": "2001-10-30T00:00:00Z", + "Hs (total) (m)": 2.3881, + "Tp (total) (s)": 10.3969 + }, + { + "Date+Time": "2001-10-31T00:00:00Z", + "Hs (total) (m)": 2.1508, + "Tp (total) (s)": 9.1845 + }, + { + "Date+Time": "2001-11-01T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 10.3488 + }, + { + "Date+Time": "2001-11-02T00:00:00Z", + "Hs (total) (m)": 2.1195, + "Tp (total) (s)": 9.8033 + }, + { + "Date+Time": "2001-11-03T00:00:00Z", + "Hs (total) (m)": 2.2553, + "Tp (total) (s)": 12.8773 + }, + { + "Date+Time": "2001-11-04T00:00:00Z", + "Hs (total) (m)": 2.0768, + "Tp (total) (s)": 14.4108 + }, + { + "Date+Time": "2001-11-05T00:00:00Z", + "Hs (total) (m)": 2.2591, + "Tp (total) (s)": 13.9035 + }, + { + "Date+Time": "2001-11-06T00:00:00Z", + "Hs (total) (m)": 2.4277, + "Tp (total) (s)": 12.3363 + }, + { + "Date+Time": "2001-11-07T00:00:00Z", + "Hs (total) (m)": 2.4285, + "Tp (total) (s)": 10.6128 + }, + { + "Date+Time": "2001-11-08T00:00:00Z", + "Hs (total) (m)": 2.7352, + "Tp (total) (s)": 10.2992 + }, + { + "Date+Time": "2001-11-09T00:00:00Z", + "Hs (total) (m)": 2.018, + "Tp (total) (s)": 10.1657 + }, + { + "Date+Time": "2001-11-10T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 10.5426 + }, + { + "Date+Time": "2001-11-11T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 10.593 + }, + { + "Date+Time": "2001-11-12T00:00:00Z", + "Hs (total) (m)": 2.2515, + "Tp (total) (s)": 14.0652 + }, + { + "Date+Time": "2001-11-13T00:00:00Z", + "Hs (total) (m)": 1.6694, + "Tp (total) (s)": 12.1204 + }, + { + "Date+Time": "2001-11-14T00:00:00Z", + "Hs (total) (m)": 1.1757, + "Tp (total) (s)": 11.4185 + }, + { + "Date+Time": "2001-11-15T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 11.2125 + }, + { + "Date+Time": "2001-11-16T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 7.9226 + }, + { + "Date+Time": "2001-11-17T00:00:00Z", + "Hs (total) (m)": 1.3512, + "Tp (total) (s)": 12.8842 + }, + { + "Date+Time": "2001-11-18T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 12.8521 + }, + { + "Date+Time": "2001-11-19T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 11.4765 + }, + { + "Date+Time": "2001-11-20T00:00:00Z", + "Hs (total) (m)": 1.1551, + "Tp (total) (s)": 10.0581 + }, + { + "Date+Time": "2001-11-21T00:00:00Z", + "Hs (total) (m)": 2.3423, + "Tp (total) (s)": 14.0744 + }, + { + "Date+Time": "2001-11-22T00:00:00Z", + "Hs (total) (m)": 2.4308, + "Tp (total) (s)": 12.5713 + }, + { + "Date+Time": "2001-11-23T00:00:00Z", + "Hs (total) (m)": 1.7647, + "Tp (total) (s)": 12.1975 + }, + { + "Date+Time": "2001-11-24T00:00:00Z", + "Hs (total) (m)": 1.9829, + "Tp (total) (s)": 10.2451 + }, + { + "Date+Time": "2001-11-25T00:00:00Z", + "Hs (total) (m)": 2.5628, + "Tp (total) (s)": 9.0175 + }, + { + "Date+Time": "2001-11-26T00:00:00Z", + "Hs (total) (m)": 2.5109, + "Tp (total) (s)": 12.2448 + }, + { + "Date+Time": "2001-11-27T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 13.1283 + }, + { + "Date+Time": "2001-11-28T00:00:00Z", + "Hs (total) (m)": 3.3639, + "Tp (total) (s)": 13.8936 + }, + { + "Date+Time": "2001-11-29T00:00:00Z", + "Hs (total) (m)": 3.3319, + "Tp (total) (s)": 13.6235 + }, + { + "Date+Time": "2001-11-30T00:00:00Z", + "Hs (total) (m)": 2.4636, + "Tp (total) (s)": 12.0174 + }, + { + "Date+Time": "2001-12-01T00:00:00Z", + "Hs (total) (m)": 2.7474, + "Tp (total) (s)": 11.3704 + }, + { + "Date+Time": "2001-12-02T00:00:00Z", + "Hs (total) (m)": 2.2675, + "Tp (total) (s)": 11.4223 + }, + { + "Date+Time": "2001-12-03T00:00:00Z", + "Hs (total) (m)": 2.7787, + "Tp (total) (s)": 11.7862 + }, + { + "Date+Time": "2001-12-04T00:00:00Z", + "Hs (total) (m)": 3.4631, + "Tp (total) (s)": 11.7557 + }, + { + "Date+Time": "2001-12-05T00:00:00Z", + "Hs (total) (m)": 2.8275, + "Tp (total) (s)": 12.2021 + }, + { + "Date+Time": "2001-12-06T00:00:00Z", + "Hs (total) (m)": 2.1752, + "Tp (total) (s)": 11.2064 + }, + { + "Date+Time": "2001-12-07T00:00:00Z", + "Hs (total) (m)": 2.6612, + "Tp (total) (s)": 9.7476 + }, + { + "Date+Time": "2001-12-08T00:00:00Z", + "Hs (total) (m)": 2.646, + "Tp (total) (s)": 10.6288 + }, + { + "Date+Time": "2001-12-09T00:00:00Z", + "Hs (total) (m)": 1.9807, + "Tp (total) (s)": 11.5932 + }, + { + "Date+Time": "2001-12-10T00:00:00Z", + "Hs (total) (m)": 1.9463, + "Tp (total) (s)": 11.2377 + }, + { + "Date+Time": "2001-12-11T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 11.565 + }, + { + "Date+Time": "2001-12-12T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 12.3859 + }, + { + "Date+Time": "2001-12-13T00:00:00Z", + "Hs (total) (m)": 1.0849, + "Tp (total) (s)": 11.8 + }, + { + "Date+Time": "2001-12-14T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 14.6619 + }, + { + "Date+Time": "2001-12-15T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 13.8226 + }, + { + "Date+Time": "2001-12-16T00:00:00Z", + "Hs (total) (m)": 1.5481, + "Tp (total) (s)": 13.8524 + }, + { + "Date+Time": "2001-12-17T00:00:00Z", + "Hs (total) (m)": 0.6157, + "Tp (total) (s)": 2.8619 + }, + { + "Date+Time": "2001-12-18T00:00:00Z", + "Hs (total) (m)": 0.6294, + "Tp (total) (s)": 11.3575 + }, + { + "Date+Time": "2001-12-19T00:00:00Z", + "Hs (total) (m)": 0.4265, + "Tp (total) (s)": 12.7895 + }, + { + "Date+Time": "2001-12-20T00:00:00Z", + "Hs (total) (m)": 0.631, + "Tp (total) (s)": 12.7049 + }, + { + "Date+Time": "2001-12-21T00:00:00Z", + "Hs (total) (m)": 0.7218, + "Tp (total) (s)": 12.5263 + }, + { + "Date+Time": "2001-12-22T00:00:00Z", + "Hs (total) (m)": 1.2055, + "Tp (total) (s)": 5.1492 + }, + { + "Date+Time": "2001-12-23T00:00:00Z", + "Hs (total) (m)": 1.0979, + "Tp (total) (s)": 10.0772 + }, + { + "Date+Time": "2001-12-24T00:00:00Z", + "Hs (total) (m)": 1.2917, + "Tp (total) (s)": 13.9653 + }, + { + "Date+Time": "2001-12-25T00:00:00Z", + "Hs (total) (m)": 1.7655, + "Tp (total) (s)": 8.581 + }, + { + "Date+Time": "2001-12-26T00:00:00Z", + "Hs (total) (m)": 1.5244, + "Tp (total) (s)": 9.5515 + }, + { + "Date+Time": "2001-12-27T00:00:00Z", + "Hs (total) (m)": 1.822, + "Tp (total) (s)": 10.165 + }, + { + "Date+Time": "2001-12-28T00:00:00Z", + "Hs (total) (m)": 2.5163, + "Tp (total) (s)": 9.5943 + }, + { + "Date+Time": "2001-12-29T00:00:00Z", + "Hs (total) (m)": 1.7235, + "Tp (total) (s)": 10.8242 + }, + { + "Date+Time": "2001-12-30T00:00:00Z", + "Hs (total) (m)": 1.3176, + "Tp (total) (s)": 11.7504 + }, + { + "Date+Time": "2001-12-31T00:00:00Z", + "Hs (total) (m)": 1.2024, + "Tp (total) (s)": 11.3842 + }, + { + "Date+Time": "2002-01-01T00:00:00Z", + "Hs (total) (m)": 0.7248, + "Tp (total) (s)": 4.4176 + }, + { + "Date+Time": "2002-01-02T00:00:00Z", + "Hs (total) (m)": 1.1826, + "Tp (total) (s)": 4.7472 + }, + { + "Date+Time": "2002-01-03T00:00:00Z", + "Hs (total) (m)": 1.8868, + "Tp (total) (s)": 6.3326 + }, + { + "Date+Time": "2002-01-04T00:00:00Z", + "Hs (total) (m)": 2.0447, + "Tp (total) (s)": 11.9732 + }, + { + "Date+Time": "2002-01-05T00:00:00Z", + "Hs (total) (m)": 2.5575, + "Tp (total) (s)": 11.7901 + }, + { + "Date+Time": "2002-01-06T00:00:00Z", + "Hs (total) (m)": 3.1358, + "Tp (total) (s)": 14.8709 + }, + { + "Date+Time": "2002-01-07T00:00:00Z", + "Hs (total) (m)": 2.6543, + "Tp (total) (s)": 13.5907 + }, + { + "Date+Time": "2002-01-08T00:00:00Z", + "Hs (total) (m)": 3.4501, + "Tp (total) (s)": 15.347 + }, + { + "Date+Time": "2002-01-09T00:00:00Z", + "Hs (total) (m)": 2.4499, + "Tp (total) (s)": 13.6258 + }, + { + "Date+Time": "2002-01-10T00:00:00Z", + "Hs (total) (m)": 1.635, + "Tp (total) (s)": 12.4149 + }, + { + "Date+Time": "2002-01-11T00:00:00Z", + "Hs (total) (m)": 1.9433, + "Tp (total) (s)": 13.905 + }, + { + "Date+Time": "2002-01-12T00:00:00Z", + "Hs (total) (m)": 2.5506, + "Tp (total) (s)": 13.5334 + }, + { + "Date+Time": "2002-01-13T00:00:00Z", + "Hs (total) (m)": 3.1816, + "Tp (total) (s)": 11.9266 + }, + { + "Date+Time": "2002-01-14T00:00:00Z", + "Hs (total) (m)": 2.3751, + "Tp (total) (s)": 11.24 + }, + { + "Date+Time": "2002-01-15T00:00:00Z", + "Hs (total) (m)": 3.7469, + "Tp (total) (s)": 12.5149 + }, + { + "Date+Time": "2002-01-16T00:00:00Z", + "Hs (total) (m)": 3.4776, + "Tp (total) (s)": 13.9706 + }, + { + "Date+Time": "2002-01-17T00:00:00Z", + "Hs (total) (m)": 2.752, + "Tp (total) (s)": 12.7613 + }, + { + "Date+Time": "2002-01-18T00:00:00Z", + "Hs (total) (m)": 3.5127, + "Tp (total) (s)": 15.643 + }, + { + "Date+Time": "2002-01-19T00:00:00Z", + "Hs (total) (m)": 4.1177, + "Tp (total) (s)": 14.14 + }, + { + "Date+Time": "2002-01-20T00:00:00Z", + "Hs (total) (m)": 5.5816, + "Tp (total) (s)": 15.8573 + }, + { + "Date+Time": "2002-01-21T00:00:00Z", + "Hs (total) (m)": 4.6014, + "Tp (total) (s)": 14.3994 + }, + { + "Date+Time": "2002-01-22T00:00:00Z", + "Hs (total) (m)": 4.2756, + "Tp (total) (s)": 13.1077 + }, + { + "Date+Time": "2002-01-23T00:00:00Z", + "Hs (total) (m)": 4.1429, + "Tp (total) (s)": 13.9492 + }, + { + "Date+Time": "2002-01-24T00:00:00Z", + "Hs (total) (m)": 3.5012, + "Tp (total) (s)": 19.7493 + }, + { + "Date+Time": "2002-01-25T00:00:00Z", + "Hs (total) (m)": 1.896, + "Tp (total) (s)": 11.4826 + }, + { + "Date+Time": "2002-01-26T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 9.9635 + }, + { + "Date+Time": "2002-01-27T00:00:00Z", + "Hs (total) (m)": 5.5059, + "Tp (total) (s)": 12.8809 + }, + { + "Date+Time": "2002-01-28T00:00:00Z", + "Hs (total) (m)": 5.3397, + "Tp (total) (s)": 12.8967 + }, + { + "Date+Time": "2002-01-29T00:00:00Z", + "Hs (total) (m)": 5.8193, + "Tp (total) (s)": 14.3449 + }, + { + "Date+Time": "2002-01-30T00:00:00Z", + "Hs (total) (m)": 4.6274, + "Tp (total) (s)": 13.7776 + }, + { + "Date+Time": "2002-01-31T00:00:00Z", + "Hs (total) (m)": 3.4715, + "Tp (total) (s)": 13.8165 + }, + { + "Date+Time": "2002-02-01T00:00:00Z", + "Hs (total) (m)": 3.9468, + "Tp (total) (s)": 12.788 + }, + { + "Date+Time": "2002-02-02T00:00:00Z", + "Hs (total) (m)": 6.1679, + "Tp (total) (s)": 13.8989 + }, + { + "Date+Time": "2002-02-03T00:00:00Z", + "Hs (total) (m)": 5.6314, + "Tp (total) (s)": 13.9724 + }, + { + "Date+Time": "2002-02-04T00:00:00Z", + "Hs (total) (m)": 3.4913, + "Tp (total) (s)": 15.1006 + }, + { + "Date+Time": "2002-02-05T00:00:00Z", + "Hs (total) (m)": 3.4776, + "Tp (total) (s)": 12.5408 + }, + { + "Date+Time": "2002-02-06T00:00:00Z", + "Hs (total) (m)": 3.988, + "Tp (total) (s)": 14.1247 + }, + { + "Date+Time": "2002-02-07T00:00:00Z", + "Hs (total) (m)": 3.0213, + "Tp (total) (s)": 15.0731 + }, + { + "Date+Time": "2002-02-08T00:00:00Z", + "Hs (total) (m)": 2.9794, + "Tp (total) (s)": 9.2372 + }, + { + "Date+Time": "2002-02-09T00:00:00Z", + "Hs (total) (m)": 4.474, + "Tp (total) (s)": 17.2605 + }, + { + "Date+Time": "2002-02-10T00:00:00Z", + "Hs (total) (m)": 4.8273, + "Tp (total) (s)": 13.7837 + }, + { + "Date+Time": "2002-02-11T00:00:00Z", + "Hs (total) (m)": 4.0956, + "Tp (total) (s)": 13.9958 + }, + { + "Date+Time": "2002-02-12T00:00:00Z", + "Hs (total) (m)": 4.4481, + "Tp (total) (s)": 12.5484 + }, + { + "Date+Time": "2002-02-13T00:00:00Z", + "Hs (total) (m)": 3.3639, + "Tp (total) (s)": 13.7616 + }, + { + "Date+Time": "2002-02-14T00:00:00Z", + "Hs (total) (m)": 1.6671, + "Tp (total) (s)": 12.2868 + }, + { + "Date+Time": "2002-02-15T00:00:00Z", + "Hs (total) (m)": 1.8288, + "Tp (total) (s)": 15.2089 + }, + { + "Date+Time": "2002-02-16T00:00:00Z", + "Hs (total) (m)": 1.9745, + "Tp (total) (s)": 13.8707 + }, + { + "Date+Time": "2002-02-17T00:00:00Z", + "Hs (total) (m)": 2.2271, + "Tp (total) (s)": 11.8328 + }, + { + "Date+Time": "2002-02-18T00:00:00Z", + "Hs (total) (m)": 2.443, + "Tp (total) (s)": 13.8371 + }, + { + "Date+Time": "2002-02-19T00:00:00Z", + "Hs (total) (m)": 3.1266, + "Tp (total) (s)": 13.0924 + }, + { + "Date+Time": "2002-02-20T00:00:00Z", + "Hs (total) (m)": 3.6042, + "Tp (total) (s)": 12.2646 + }, + { + "Date+Time": "2002-02-21T00:00:00Z", + "Hs (total) (m)": 3.2617, + "Tp (total) (s)": 13.8638 + }, + { + "Date+Time": "2002-02-22T00:00:00Z", + "Hs (total) (m)": 2.913, + "Tp (total) (s)": 13.4556 + }, + { + "Date+Time": "2002-02-23T00:00:00Z", + "Hs (total) (m)": 4.3054, + "Tp (total) (s)": 12.7857 + }, + { + "Date+Time": "2002-02-24T00:00:00Z", + "Hs (total) (m)": 3.9247, + "Tp (total) (s)": 15.4248 + }, + { + "Date+Time": "2002-02-25T00:00:00Z", + "Hs (total) (m)": 2.6833, + "Tp (total) (s)": 12.7544 + }, + { + "Date+Time": "2002-02-26T00:00:00Z", + "Hs (total) (m)": 3.3914, + "Tp (total) (s)": 10.6014 + }, + { + "Date+Time": "2002-02-27T00:00:00Z", + "Hs (total) (m)": 4.7777, + "Tp (total) (s)": 11.8221 + }, + { + "Date+Time": "2002-02-28T00:00:00Z", + "Hs (total) (m)": 4.9703, + "Tp (total) (s)": 13.7199 + }, + { + "Date+Time": "2002-03-01T00:00:00Z", + "Hs (total) (m)": 1.2261, + "Tp (total) (s)": 12.4073 + }, + { + "Date+Time": "2002-03-02T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 12.4432 + }, + { + "Date+Time": "2002-03-03T00:00:00Z", + "Hs (total) (m)": 1.0155, + "Tp (total) (s)": 9.5859 + }, + { + "Date+Time": "2002-03-04T00:00:00Z", + "Hs (total) (m)": 1.1727, + "Tp (total) (s)": 9.8491 + }, + { + "Date+Time": "2002-03-05T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 12.2417 + }, + { + "Date+Time": "2002-03-06T00:00:00Z", + "Hs (total) (m)": 2.9183, + "Tp (total) (s)": 12.9543 + }, + { + "Date+Time": "2002-03-07T00:00:00Z", + "Hs (total) (m)": 3.9071, + "Tp (total) (s)": 13.6677 + }, + { + "Date+Time": "2002-03-08T00:00:00Z", + "Hs (total) (m)": 3.061, + "Tp (total) (s)": 13.8722 + }, + { + "Date+Time": "2002-03-09T00:00:00Z", + "Hs (total) (m)": 2.6933, + "Tp (total) (s)": 12.3241 + }, + { + "Date+Time": "2002-03-10T00:00:00Z", + "Hs (total) (m)": 2.5132, + "Tp (total) (s)": 11.3308 + }, + { + "Date+Time": "2002-03-11T00:00:00Z", + "Hs (total) (m)": 5.1585, + "Tp (total) (s)": 11.6979 + }, + { + "Date+Time": "2002-03-12T00:00:00Z", + "Hs (total) (m)": 4.0742, + "Tp (total) (s)": 13.6456 + }, + { + "Date+Time": "2002-03-13T00:00:00Z", + "Hs (total) (m)": 1.0804, + "Tp (total) (s)": 12.3623 + }, + { + "Date+Time": "2002-03-14T00:00:00Z", + "Hs (total) (m)": 0.7431, + "Tp (total) (s)": 3.2853 + }, + { + "Date+Time": "2002-03-15T00:00:00Z", + "Hs (total) (m)": 0.9049, + "Tp (total) (s)": 4.001 + }, + { + "Date+Time": "2002-03-16T00:00:00Z", + "Hs (total) (m)": 1.0186, + "Tp (total) (s)": 12.2005 + }, + { + "Date+Time": "2002-03-17T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 11.3834 + }, + { + "Date+Time": "2002-03-18T00:00:00Z", + "Hs (total) (m)": 2.4422, + "Tp (total) (s)": 15.006 + }, + { + "Date+Time": "2002-03-19T00:00:00Z", + "Hs (total) (m)": 2.6994, + "Tp (total) (s)": 15.228 + }, + { + "Date+Time": "2002-03-20T00:00:00Z", + "Hs (total) (m)": 2.1737, + "Tp (total) (s)": 12.7377 + }, + { + "Date+Time": "2002-03-21T00:00:00Z", + "Hs (total) (m)": 2.2828, + "Tp (total) (s)": 11.3399 + }, + { + "Date+Time": "2002-03-22T00:00:00Z", + "Hs (total) (m)": 2.2546, + "Tp (total) (s)": 11.0996 + }, + { + "Date+Time": "2002-03-23T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 11.5055 + }, + { + "Date+Time": "2002-03-24T00:00:00Z", + "Hs (total) (m)": 2.3057, + "Tp (total) (s)": 10.7349 + }, + { + "Date+Time": "2002-03-25T00:00:00Z", + "Hs (total) (m)": 2.8832, + "Tp (total) (s)": 14.7244 + }, + { + "Date+Time": "2002-03-26T00:00:00Z", + "Hs (total) (m)": 1.8387, + "Tp (total) (s)": 10.8333 + }, + { + "Date+Time": "2002-03-27T00:00:00Z", + "Hs (total) (m)": 2.1218, + "Tp (total) (s)": 13.4671 + }, + { + "Date+Time": "2002-03-28T00:00:00Z", + "Hs (total) (m)": 2.5208, + "Tp (total) (s)": 12.6949 + }, + { + "Date+Time": "2002-03-29T00:00:00Z", + "Hs (total) (m)": 2.2576, + "Tp (total) (s)": 12.775 + }, + { + "Date+Time": "2002-03-30T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 12.495 + }, + { + "Date+Time": "2002-03-31T00:00:00Z", + "Hs (total) (m)": 2.0646, + "Tp (total) (s)": 11.6909 + }, + { + "Date+Time": "2002-04-01T00:00:00Z", + "Hs (total) (m)": 2.3537, + "Tp (total) (s)": 10.6441 + }, + { + "Date+Time": "2002-04-02T00:00:00Z", + "Hs (total) (m)": 2.3537, + "Tp (total) (s)": 10.7814 + }, + { + "Date+Time": "2002-04-03T00:00:00Z", + "Hs (total) (m)": 2.53, + "Tp (total) (s)": 11.2217 + }, + { + "Date+Time": "2002-04-04T00:00:00Z", + "Hs (total) (m)": 3.3937, + "Tp (total) (s)": 11.8511 + }, + { + "Date+Time": "2002-04-05T00:00:00Z", + "Hs (total) (m)": 1.738, + "Tp (total) (s)": 10.9348 + }, + { + "Date+Time": "2002-04-06T00:00:00Z", + "Hs (total) (m)": 1.9578, + "Tp (total) (s)": 9.6057 + }, + { + "Date+Time": "2002-04-07T00:00:00Z", + "Hs (total) (m)": 2.3041, + "Tp (total) (s)": 14.7389 + }, + { + "Date+Time": "2002-04-08T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 11.4689 + }, + { + "Date+Time": "2002-04-09T00:00:00Z", + "Hs (total) (m)": 1.0369, + "Tp (total) (s)": 12.8101 + }, + { + "Date+Time": "2002-04-10T00:00:00Z", + "Hs (total) (m)": 1.0376, + "Tp (total) (s)": 11.9861 + }, + { + "Date+Time": "2002-04-11T00:00:00Z", + "Hs (total) (m)": 0.7988, + "Tp (total) (s)": 10.6754 + }, + { + "Date+Time": "2002-04-12T00:00:00Z", + "Hs (total) (m)": 1.4931, + "Tp (total) (s)": 13.2832 + }, + { + "Date+Time": "2002-04-13T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 11.8503 + }, + { + "Date+Time": "2002-04-14T00:00:00Z", + "Hs (total) (m)": 1.0857, + "Tp (total) (s)": 11.4063 + }, + { + "Date+Time": "2002-04-15T00:00:00Z", + "Hs (total) (m)": 1.6953, + "Tp (total) (s)": 13.0451 + }, + { + "Date+Time": "2002-04-16T00:00:00Z", + "Hs (total) (m)": 2.2858, + "Tp (total) (s)": 12.3035 + }, + { + "Date+Time": "2002-04-17T00:00:00Z", + "Hs (total) (m)": 3.0702, + "Tp (total) (s)": 13.0642 + }, + { + "Date+Time": "2002-04-18T00:00:00Z", + "Hs (total) (m)": 2.591, + "Tp (total) (s)": 14.1423 + }, + { + "Date+Time": "2002-04-19T00:00:00Z", + "Hs (total) (m)": 1.5435, + "Tp (total) (s)": 11.568 + }, + { + "Date+Time": "2002-04-20T00:00:00Z", + "Hs (total) (m)": 1.513, + "Tp (total) (s)": 9.4592 + }, + { + "Date+Time": "2002-04-21T00:00:00Z", + "Hs (total) (m)": 2.5445, + "Tp (total) (s)": 11.0485 + }, + { + "Date+Time": "2002-04-22T00:00:00Z", + "Hs (total) (m)": 2.8031, + "Tp (total) (s)": 12.328 + }, + { + "Date+Time": "2002-04-23T00:00:00Z", + "Hs (total) (m)": 3.1938, + "Tp (total) (s)": 12.3394 + }, + { + "Date+Time": "2002-04-24T00:00:00Z", + "Hs (total) (m)": 2.0882, + "Tp (total) (s)": 11.3201 + }, + { + "Date+Time": "2002-04-25T00:00:00Z", + "Hs (total) (m)": 2.7345, + "Tp (total) (s)": 11.2346 + }, + { + "Date+Time": "2002-04-26T00:00:00Z", + "Hs (total) (m)": 2.5224, + "Tp (total) (s)": 11.0721 + }, + { + "Date+Time": "2002-04-27T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 10.3229 + }, + { + "Date+Time": "2002-04-28T00:00:00Z", + "Hs (total) (m)": 2.4483, + "Tp (total) (s)": 9.9178 + }, + { + "Date+Time": "2002-04-29T00:00:00Z", + "Hs (total) (m)": 4.2085, + "Tp (total) (s)": 11.5665 + }, + { + "Date+Time": "2002-04-30T00:00:00Z", + "Hs (total) (m)": 1.8258, + "Tp (total) (s)": 11.5276 + }, + { + "Date+Time": "2002-05-01T00:00:00Z", + "Hs (total) (m)": 2.7978, + "Tp (total) (s)": 10.2954 + }, + { + "Date+Time": "2002-05-02T00:00:00Z", + "Hs (total) (m)": 1.9936, + "Tp (total) (s)": 11.9007 + }, + { + "Date+Time": "2002-05-03T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 10.3481 + }, + { + "Date+Time": "2002-05-04T00:00:00Z", + "Hs (total) (m)": 0.9308, + "Tp (total) (s)": 9.7331 + }, + { + "Date+Time": "2002-05-05T00:00:00Z", + "Hs (total) (m)": 0.8866, + "Tp (total) (s)": 10.0833 + }, + { + "Date+Time": "2002-05-06T00:00:00Z", + "Hs (total) (m)": 1.2299, + "Tp (total) (s)": 10.1787 + }, + { + "Date+Time": "2002-05-07T00:00:00Z", + "Hs (total) (m)": 1.2215, + "Tp (total) (s)": 10.5327 + }, + { + "Date+Time": "2002-05-08T00:00:00Z", + "Hs (total) (m)": 1.7342, + "Tp (total) (s)": 14.3521 + }, + { + "Date+Time": "2002-05-09T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 11.8175 + }, + { + "Date+Time": "2002-05-10T00:00:00Z", + "Hs (total) (m)": 0.8385, + "Tp (total) (s)": 10.3549 + }, + { + "Date+Time": "2002-05-11T00:00:00Z", + "Hs (total) (m)": 0.9224, + "Tp (total) (s)": 9.5759 + }, + { + "Date+Time": "2002-05-12T00:00:00Z", + "Hs (total) (m)": 0.5715, + "Tp (total) (s)": 7.2634 + }, + { + "Date+Time": "2002-05-13T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 3.3288 + }, + { + "Date+Time": "2002-05-14T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 11.5467 + }, + { + "Date+Time": "2002-05-15T00:00:00Z", + "Hs (total) (m)": 2.134, + "Tp (total) (s)": 8.2743 + }, + { + "Date+Time": "2002-05-16T00:00:00Z", + "Hs (total) (m)": 1.5816, + "Tp (total) (s)": 11.4399 + }, + { + "Date+Time": "2002-05-17T00:00:00Z", + "Hs (total) (m)": 2.0013, + "Tp (total) (s)": 9.9963 + }, + { + "Date+Time": "2002-05-18T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 10.3389 + }, + { + "Date+Time": "2002-05-19T00:00:00Z", + "Hs (total) (m)": 1.6869, + "Tp (total) (s)": 10.4442 + }, + { + "Date+Time": "2002-05-20T00:00:00Z", + "Hs (total) (m)": 2.5933, + "Tp (total) (s)": 8.1545 + }, + { + "Date+Time": "2002-05-21T00:00:00Z", + "Hs (total) (m)": 3.7446, + "Tp (total) (s)": 8.8809 + }, + { + "Date+Time": "2002-05-22T00:00:00Z", + "Hs (total) (m)": 1.9837, + "Tp (total) (s)": 10.8898 + }, + { + "Date+Time": "2002-05-23T00:00:00Z", + "Hs (total) (m)": 2.8153, + "Tp (total) (s)": 14.2132 + }, + { + "Date+Time": "2002-05-24T00:00:00Z", + "Hs (total) (m)": 2.3041, + "Tp (total) (s)": 11.3422 + }, + { + "Date+Time": "2002-05-25T00:00:00Z", + "Hs (total) (m)": 4.7548, + "Tp (total) (s)": 11.7946 + }, + { + "Date+Time": "2002-05-26T00:00:00Z", + "Hs (total) (m)": 2.5056, + "Tp (total) (s)": 10.7639 + }, + { + "Date+Time": "2002-05-27T00:00:00Z", + "Hs (total) (m)": 2.4171, + "Tp (total) (s)": 11.9839 + }, + { + "Date+Time": "2002-05-28T00:00:00Z", + "Hs (total) (m)": 1.3894, + "Tp (total) (s)": 10.6998 + }, + { + "Date+Time": "2002-05-29T00:00:00Z", + "Hs (total) (m)": 2.5277, + "Tp (total) (s)": 11.7183 + }, + { + "Date+Time": "2002-05-30T00:00:00Z", + "Hs (total) (m)": 2.311, + "Tp (total) (s)": 12.5782 + }, + { + "Date+Time": "2002-05-31T00:00:00Z", + "Hs (total) (m)": 2.0333, + "Tp (total) (s)": 10.3229 + }, + { + "Date+Time": "2002-06-01T00:00:00Z", + "Hs (total) (m)": 1.5816, + "Tp (total) (s)": 9.6095 + }, + { + "Date+Time": "2002-06-02T00:00:00Z", + "Hs (total) (m)": 1.6579, + "Tp (total) (s)": 8.3132 + }, + { + "Date+Time": "2002-06-03T00:00:00Z", + "Hs (total) (m)": 1.3504, + "Tp (total) (s)": 8.3583 + }, + { + "Date+Time": "2002-06-04T00:00:00Z", + "Hs (total) (m)": 1.9601, + "Tp (total) (s)": 7.5182 + }, + { + "Date+Time": "2002-06-05T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 8.7741 + }, + { + "Date+Time": "2002-06-06T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 9.4859 + }, + { + "Date+Time": "2002-06-07T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 9.4317 + }, + { + "Date+Time": "2002-06-08T00:00:00Z", + "Hs (total) (m)": 1.3253, + "Tp (total) (s)": 10.3259 + }, + { + "Date+Time": "2002-06-09T00:00:00Z", + "Hs (total) (m)": 1.5336, + "Tp (total) (s)": 9.2288 + }, + { + "Date+Time": "2002-06-10T00:00:00Z", + "Hs (total) (m)": 3.0641, + "Tp (total) (s)": 11.507 + }, + { + "Date+Time": "2002-06-11T00:00:00Z", + "Hs (total) (m)": 3.3265, + "Tp (total) (s)": 11.7847 + }, + { + "Date+Time": "2002-06-12T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 9.7034 + }, + { + "Date+Time": "2002-06-13T00:00:00Z", + "Hs (total) (m)": 2.1813, + "Tp (total) (s)": 9.2105 + }, + { + "Date+Time": "2002-06-14T00:00:00Z", + "Hs (total) (m)": 1.207, + "Tp (total) (s)": 8.4895 + }, + { + "Date+Time": "2002-06-15T00:00:00Z", + "Hs (total) (m)": 1.484, + "Tp (total) (s)": 7.7074 + }, + { + "Date+Time": "2002-06-16T00:00:00Z", + "Hs (total) (m)": 1.8532, + "Tp (total) (s)": 12.4111 + }, + { + "Date+Time": "2002-06-17T00:00:00Z", + "Hs (total) (m)": 2.3507, + "Tp (total) (s)": 10.5747 + }, + { + "Date+Time": "2002-06-18T00:00:00Z", + "Hs (total) (m)": 4.3535, + "Tp (total) (s)": 11.0881 + }, + { + "Date+Time": "2002-06-19T00:00:00Z", + "Hs (total) (m)": 2.6025, + "Tp (total) (s)": 9.3005 + }, + { + "Date+Time": "2002-06-20T00:00:00Z", + "Hs (total) (m)": 1.8433, + "Tp (total) (s)": 9.3394 + }, + { + "Date+Time": "2002-06-21T00:00:00Z", + "Hs (total) (m)": 1.6037, + "Tp (total) (s)": 9.3493 + }, + { + "Date+Time": "2002-06-22T00:00:00Z", + "Hs (total) (m)": 1.5595, + "Tp (total) (s)": 7.7563 + }, + { + "Date+Time": "2002-06-23T00:00:00Z", + "Hs (total) (m)": 1.3398, + "Tp (total) (s)": 7.9501 + }, + { + "Date+Time": "2002-06-24T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 7.6647 + }, + { + "Date+Time": "2002-06-25T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 7.3016 + }, + { + "Date+Time": "2002-06-26T00:00:00Z", + "Hs (total) (m)": 1.59, + "Tp (total) (s)": 11.803 + }, + { + "Date+Time": "2002-06-27T00:00:00Z", + "Hs (total) (m)": 1.6419, + "Tp (total) (s)": 10.5724 + }, + { + "Date+Time": "2002-06-28T00:00:00Z", + "Hs (total) (m)": 0.9674, + "Tp (total) (s)": 8.9228 + }, + { + "Date+Time": "2002-06-29T00:00:00Z", + "Hs (total) (m)": 0.8042, + "Tp (total) (s)": 8.2553 + }, + { + "Date+Time": "2002-06-30T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 9.505 + }, + { + "Date+Time": "2002-07-01T00:00:00Z", + "Hs (total) (m)": 2.1889, + "Tp (total) (s)": 9.3478 + }, + { + "Date+Time": "2002-07-02T00:00:00Z", + "Hs (total) (m)": 2.7047, + "Tp (total) (s)": 12.3859 + }, + { + "Date+Time": "2002-07-03T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 10.6052 + }, + { + "Date+Time": "2002-07-04T00:00:00Z", + "Hs (total) (m)": 1.5099, + "Tp (total) (s)": 10.387 + }, + { + "Date+Time": "2002-07-05T00:00:00Z", + "Hs (total) (m)": 1.4801, + "Tp (total) (s)": 9.1433 + }, + { + "Date+Time": "2002-07-06T00:00:00Z", + "Hs (total) (m)": 1.1528, + "Tp (total) (s)": 8.9007 + }, + { + "Date+Time": "2002-07-07T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 8.1812 + }, + { + "Date+Time": "2002-07-08T00:00:00Z", + "Hs (total) (m)": 2.2279, + "Tp (total) (s)": 11.005 + }, + { + "Date+Time": "2002-07-09T00:00:00Z", + "Hs (total) (m)": 1.3787, + "Tp (total) (s)": 8.932 + }, + { + "Date+Time": "2002-07-10T00:00:00Z", + "Hs (total) (m)": 1.088, + "Tp (total) (s)": 8.6497 + }, + { + "Date+Time": "2002-07-11T00:00:00Z", + "Hs (total) (m)": 0.853, + "Tp (total) (s)": 9.1823 + }, + { + "Date+Time": "2002-07-12T00:00:00Z", + "Hs (total) (m)": 0.7149, + "Tp (total) (s)": 9.0136 + }, + { + "Date+Time": "2002-07-13T00:00:00Z", + "Hs (total) (m)": 0.6691, + "Tp (total) (s)": 7.3397 + }, + { + "Date+Time": "2002-07-14T00:00:00Z", + "Hs (total) (m)": 0.8972, + "Tp (total) (s)": 5.298 + }, + { + "Date+Time": "2002-07-15T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 8.61 + }, + { + "Date+Time": "2002-07-16T00:00:00Z", + "Hs (total) (m)": 1.0178, + "Tp (total) (s)": 9.3158 + }, + { + "Date+Time": "2002-07-17T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 8.623 + }, + { + "Date+Time": "2002-07-18T00:00:00Z", + "Hs (total) (m)": 0.6233, + "Tp (total) (s)": 7.7921 + }, + { + "Date+Time": "2002-07-19T00:00:00Z", + "Hs (total) (m)": 0.7157, + "Tp (total) (s)": 8.9877 + }, + { + "Date+Time": "2002-07-20T00:00:00Z", + "Hs (total) (m)": 1.0086, + "Tp (total) (s)": 8.4864 + }, + { + "Date+Time": "2002-07-21T00:00:00Z", + "Hs (total) (m)": 0.6752, + "Tp (total) (s)": 5.6543 + }, + { + "Date+Time": "2002-07-22T00:00:00Z", + "Hs (total) (m)": 1.1177, + "Tp (total) (s)": 4.9516 + }, + { + "Date+Time": "2002-07-23T00:00:00Z", + "Hs (total) (m)": 1.7655, + "Tp (total) (s)": 5.9862 + }, + { + "Date+Time": "2002-07-24T00:00:00Z", + "Hs (total) (m)": 1.2139, + "Tp (total) (s)": 8.5383 + }, + { + "Date+Time": "2002-07-25T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 8.1309 + }, + { + "Date+Time": "2002-07-26T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 7.3237 + }, + { + "Date+Time": "2002-07-27T00:00:00Z", + "Hs (total) (m)": 1.3306, + "Tp (total) (s)": 9.6599 + }, + { + "Date+Time": "2002-07-28T00:00:00Z", + "Hs (total) (m)": 2.0646, + "Tp (total) (s)": 11.7695 + }, + { + "Date+Time": "2002-07-29T00:00:00Z", + "Hs (total) (m)": 0.9537, + "Tp (total) (s)": 10.4656 + }, + { + "Date+Time": "2002-07-30T00:00:00Z", + "Hs (total) (m)": 0.9629, + "Tp (total) (s)": 8.6962 + }, + { + "Date+Time": "2002-07-31T00:00:00Z", + "Hs (total) (m)": 0.9468, + "Tp (total) (s)": 5.2011 + }, + { + "Date+Time": "2002-08-01T00:00:00Z", + "Hs (total) (m)": 0.943, + "Tp (total) (s)": 7.7288 + }, + { + "Date+Time": "2002-08-02T00:00:00Z", + "Hs (total) (m)": 0.7035, + "Tp (total) (s)": 7.9684 + }, + { + "Date+Time": "2002-08-03T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 9.5187 + }, + { + "Date+Time": "2002-08-04T00:00:00Z", + "Hs (total) (m)": 0.6302, + "Tp (total) (s)": 8.4307 + }, + { + "Date+Time": "2002-08-05T00:00:00Z", + "Hs (total) (m)": 0.5333, + "Tp (total) (s)": 7.7105 + }, + { + "Date+Time": "2002-08-06T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 9.5882 + }, + { + "Date+Time": "2002-08-07T00:00:00Z", + "Hs (total) (m)": 1.0674, + "Tp (total) (s)": 8.9351 + }, + { + "Date+Time": "2002-08-08T00:00:00Z", + "Hs (total) (m)": 0.8461, + "Tp (total) (s)": 6.9094 + }, + { + "Date+Time": "2002-08-09T00:00:00Z", + "Hs (total) (m)": 1.2894, + "Tp (total) (s)": 8.8687 + }, + { + "Date+Time": "2002-08-10T00:00:00Z", + "Hs (total) (m)": 0.8492, + "Tp (total) (s)": 8.2072 + }, + { + "Date+Time": "2002-08-11T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 5.768 + }, + { + "Date+Time": "2002-08-12T00:00:00Z", + "Hs (total) (m)": 1.6099, + "Tp (total) (s)": 9.3257 + }, + { + "Date+Time": "2002-08-13T00:00:00Z", + "Hs (total) (m)": 1.8487, + "Tp (total) (s)": 9.0411 + }, + { + "Date+Time": "2002-08-14T00:00:00Z", + "Hs (total) (m)": 1.1284, + "Tp (total) (s)": 8.6398 + }, + { + "Date+Time": "2002-08-15T00:00:00Z", + "Hs (total) (m)": 2.0394, + "Tp (total) (s)": 7.7494 + }, + { + "Date+Time": "2002-08-16T00:00:00Z", + "Hs (total) (m)": 1.7968, + "Tp (total) (s)": 10.3626 + }, + { + "Date+Time": "2002-08-17T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 8.4017 + }, + { + "Date+Time": "2002-08-18T00:00:00Z", + "Hs (total) (m)": 2.7223, + "Tp (total) (s)": 10.5373 + }, + { + "Date+Time": "2002-08-19T00:00:00Z", + "Hs (total) (m)": 1.1368, + "Tp (total) (s)": 8.7794 + }, + { + "Date+Time": "2002-08-20T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 8.9496 + }, + { + "Date+Time": "2002-08-21T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 7.7883 + }, + { + "Date+Time": "2002-08-22T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 7.0582 + }, + { + "Date+Time": "2002-08-23T00:00:00Z", + "Hs (total) (m)": 0.663, + "Tp (total) (s)": 8.7268 + }, + { + "Date+Time": "2002-08-24T00:00:00Z", + "Hs (total) (m)": 0.837, + "Tp (total) (s)": 8.9007 + }, + { + "Date+Time": "2002-08-25T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 10.7356 + }, + { + "Date+Time": "2002-08-26T00:00:00Z", + "Hs (total) (m)": 0.6806, + "Tp (total) (s)": 9.4996 + }, + { + "Date+Time": "2002-08-27T00:00:00Z", + "Hs (total) (m)": 0.6073, + "Tp (total) (s)": 8.0851 + }, + { + "Date+Time": "2002-08-28T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 11.6398 + }, + { + "Date+Time": "2002-08-29T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 8.6634 + }, + { + "Date+Time": "2002-08-30T00:00:00Z", + "Hs (total) (m)": 1.693, + "Tp (total) (s)": 12.363 + }, + { + "Date+Time": "2002-08-31T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 9.1411 + }, + { + "Date+Time": "2002-09-01T00:00:00Z", + "Hs (total) (m)": 1.0224, + "Tp (total) (s)": 9.6438 + }, + { + "Date+Time": "2002-09-02T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 12.2311 + }, + { + "Date+Time": "2002-09-03T00:00:00Z", + "Hs (total) (m)": 1.7075, + "Tp (total) (s)": 12.3135 + }, + { + "Date+Time": "2002-09-04T00:00:00Z", + "Hs (total) (m)": 1.0819, + "Tp (total) (s)": 10.1772 + }, + { + "Date+Time": "2002-09-05T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 9.8376 + }, + { + "Date+Time": "2002-09-06T00:00:00Z", + "Hs (total) (m)": 1.6045, + "Tp (total) (s)": 9.6095 + }, + { + "Date+Time": "2002-09-07T00:00:00Z", + "Hs (total) (m)": 2.385, + "Tp (total) (s)": 11.3147 + }, + { + "Date+Time": "2002-09-08T00:00:00Z", + "Hs (total) (m)": 1.2139, + "Tp (total) (s)": 9.9918 + }, + { + "Date+Time": "2002-09-09T00:00:00Z", + "Hs (total) (m)": 0.6058, + "Tp (total) (s)": 8.5841 + }, + { + "Date+Time": "2002-09-10T00:00:00Z", + "Hs (total) (m)": 0.412, + "Tp (total) (s)": 7.8959 + }, + { + "Date+Time": "2002-09-11T00:00:00Z", + "Hs (total) (m)": 1.5999, + "Tp (total) (s)": 7.5861 + }, + { + "Date+Time": "2002-09-12T00:00:00Z", + "Hs (total) (m)": 1.7693, + "Tp (total) (s)": 9.2692 + }, + { + "Date+Time": "2002-09-13T00:00:00Z", + "Hs (total) (m)": 2.208, + "Tp (total) (s)": 12.6911 + }, + { + "Date+Time": "2002-09-14T00:00:00Z", + "Hs (total) (m)": 1.5145, + "Tp (total) (s)": 10.9699 + }, + { + "Date+Time": "2002-09-15T00:00:00Z", + "Hs (total) (m)": 1.0117, + "Tp (total) (s)": 10.1215 + }, + { + "Date+Time": "2002-09-16T00:00:00Z", + "Hs (total) (m)": 0.9323, + "Tp (total) (s)": 14.1392 + }, + { + "Date+Time": "2002-09-17T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 12.2303 + }, + { + "Date+Time": "2002-09-18T00:00:00Z", + "Hs (total) (m)": 0.8042, + "Tp (total) (s)": 10.5167 + }, + { + "Date+Time": "2002-09-19T00:00:00Z", + "Hs (total) (m)": 0.6432, + "Tp (total) (s)": 9.6965 + }, + { + "Date+Time": "2002-09-20T00:00:00Z", + "Hs (total) (m)": 0.5394, + "Tp (total) (s)": 8.6108 + }, + { + "Date+Time": "2002-09-21T00:00:00Z", + "Hs (total) (m)": 0.5875, + "Tp (total) (s)": 10.3397 + }, + { + "Date+Time": "2002-09-22T00:00:00Z", + "Hs (total) (m)": 0.5318, + "Tp (total) (s)": 7.8837 + }, + { + "Date+Time": "2002-09-23T00:00:00Z", + "Hs (total) (m)": 0.631, + "Tp (total) (s)": 9.5126 + }, + { + "Date+Time": "2002-09-24T00:00:00Z", + "Hs (total) (m)": 1.0353, + "Tp (total) (s)": 9.3394 + }, + { + "Date+Time": "2002-09-25T00:00:00Z", + "Hs (total) (m)": 0.9659, + "Tp (total) (s)": 11.2636 + }, + { + "Date+Time": "2002-09-26T00:00:00Z", + "Hs (total) (m)": 0.898, + "Tp (total) (s)": 8.9274 + }, + { + "Date+Time": "2002-09-27T00:00:00Z", + "Hs (total) (m)": 0.4822, + "Tp (total) (s)": 7.7952 + }, + { + "Date+Time": "2002-09-28T00:00:00Z", + "Hs (total) (m)": 0.6096, + "Tp (total) (s)": 7.4213 + }, + { + "Date+Time": "2002-09-29T00:00:00Z", + "Hs (total) (m)": 1.0887, + "Tp (total) (s)": 9.2586 + }, + { + "Date+Time": "2002-09-30T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 10.4373 + }, + { + "Date+Time": "2002-10-01T00:00:00Z", + "Hs (total) (m)": 1.3604, + "Tp (total) (s)": 8.8816 + }, + { + "Date+Time": "2002-10-02T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 7.8257 + }, + { + "Date+Time": "2002-10-03T00:00:00Z", + "Hs (total) (m)": 2.5437, + "Tp (total) (s)": 13.8577 + }, + { + "Date+Time": "2002-10-04T00:00:00Z", + "Hs (total) (m)": 1.944, + "Tp (total) (s)": 12.1601 + }, + { + "Date+Time": "2002-10-05T00:00:00Z", + "Hs (total) (m)": 2.0409, + "Tp (total) (s)": 11.2743 + }, + { + "Date+Time": "2002-10-06T00:00:00Z", + "Hs (total) (m)": 1.3535, + "Tp (total) (s)": 10.5159 + }, + { + "Date+Time": "2002-10-07T00:00:00Z", + "Hs (total) (m)": 1.5786, + "Tp (total) (s)": 12.5713 + }, + { + "Date+Time": "2002-10-08T00:00:00Z", + "Hs (total) (m)": 1.9158, + "Tp (total) (s)": 11.6787 + }, + { + "Date+Time": "2002-10-09T00:00:00Z", + "Hs (total) (m)": 1.8426, + "Tp (total) (s)": 13.3755 + }, + { + "Date+Time": "2002-10-10T00:00:00Z", + "Hs (total) (m)": 2.3896, + "Tp (total) (s)": 14.7511 + }, + { + "Date+Time": "2002-10-11T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 11.4788 + }, + { + "Date+Time": "2002-10-12T00:00:00Z", + "Hs (total) (m)": 2.2156, + "Tp (total) (s)": 12.7949 + }, + { + "Date+Time": "2002-10-13T00:00:00Z", + "Hs (total) (m)": 1.9723, + "Tp (total) (s)": 12.5736 + }, + { + "Date+Time": "2002-10-14T00:00:00Z", + "Hs (total) (m)": 1.371, + "Tp (total) (s)": 11.1782 + }, + { + "Date+Time": "2002-10-15T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 10.371 + }, + { + "Date+Time": "2002-10-16T00:00:00Z", + "Hs (total) (m)": 0.7622, + "Tp (total) (s)": 9.6431 + }, + { + "Date+Time": "2002-10-17T00:00:00Z", + "Hs (total) (m)": 0.7073, + "Tp (total) (s)": 8.665 + }, + { + "Date+Time": "2002-10-18T00:00:00Z", + "Hs (total) (m)": 0.5379, + "Tp (total) (s)": 8.1721 + }, + { + "Date+Time": "2002-10-19T00:00:00Z", + "Hs (total) (m)": 0.4769, + "Tp (total) (s)": 9.8514 + }, + { + "Date+Time": "2002-10-20T00:00:00Z", + "Hs (total) (m)": 0.4509, + "Tp (total) (s)": 2.295 + }, + { + "Date+Time": "2002-10-21T00:00:00Z", + "Hs (total) (m)": 1.352, + "Tp (total) (s)": 4.2428 + }, + { + "Date+Time": "2002-10-22T00:00:00Z", + "Hs (total) (m)": 2.5315, + "Tp (total) (s)": 12.5683 + }, + { + "Date+Time": "2002-10-23T00:00:00Z", + "Hs (total) (m)": 1.3985, + "Tp (total) (s)": 9.6095 + }, + { + "Date+Time": "2002-10-24T00:00:00Z", + "Hs (total) (m)": 0.7424, + "Tp (total) (s)": 10.2962 + }, + { + "Date+Time": "2002-10-25T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 7.6098 + }, + { + "Date+Time": "2002-10-26T00:00:00Z", + "Hs (total) (m)": 4.3291, + "Tp (total) (s)": 10.4091 + }, + { + "Date+Time": "2002-10-27T00:00:00Z", + "Hs (total) (m)": 3.6973, + "Tp (total) (s)": 9.5851 + }, + { + "Date+Time": "2002-10-28T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 10.0009 + }, + { + "Date+Time": "2002-10-29T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 8.8427 + }, + { + "Date+Time": "2002-10-30T00:00:00Z", + "Hs (total) (m)": 1.3871, + "Tp (total) (s)": 11.6184 + }, + { + "Date+Time": "2002-10-31T00:00:00Z", + "Hs (total) (m)": 1.1185, + "Tp (total) (s)": 10.6395 + }, + { + "Date+Time": "2002-11-01T00:00:00Z", + "Hs (total) (m)": 1.6251, + "Tp (total) (s)": 13.6868 + }, + { + "Date+Time": "2002-11-02T00:00:00Z", + "Hs (total) (m)": 1.719, + "Tp (total) (s)": 11.5047 + }, + { + "Date+Time": "2002-11-03T00:00:00Z", + "Hs (total) (m)": 5.009, + "Tp (total) (s)": 11.5091 + }, + { + "Date+Time": "2002-11-04T00:00:00Z", + "Hs (total) (m)": 4.0033, + "Tp (total) (s)": 13.1947 + }, + { + "Date+Time": "2002-11-05T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 11.42 + }, + { + "Date+Time": "2002-11-06T00:00:00Z", + "Hs (total) (m)": 2.2568, + "Tp (total) (s)": 10.3282 + }, + { + "Date+Time": "2002-11-07T00:00:00Z", + "Hs (total) (m)": 3.312, + "Tp (total) (s)": 12.4706 + }, + { + "Date+Time": "2002-11-08T00:00:00Z", + "Hs (total) (m)": 2.5651, + "Tp (total) (s)": 13.9958 + }, + { + "Date+Time": "2002-11-09T00:00:00Z", + "Hs (total) (m)": 2.102, + "Tp (total) (s)": 10.5007 + }, + { + "Date+Time": "2002-11-10T00:00:00Z", + "Hs (total) (m)": 2.8207, + "Tp (total) (s)": 13.4945 + }, + { + "Date+Time": "2002-11-11T00:00:00Z", + "Hs (total) (m)": 4.1643, + "Tp (total) (s)": 14.3109 + }, + { + "Date+Time": "2002-11-12T00:00:00Z", + "Hs (total) (m)": 4.8555, + "Tp (total) (s)": 14.3246 + }, + { + "Date+Time": "2002-11-13T00:00:00Z", + "Hs (total) (m)": 3.6935, + "Tp (total) (s)": 14.3406 + }, + { + "Date+Time": "2002-11-14T00:00:00Z", + "Hs (total) (m)": 2.3461, + "Tp (total) (s)": 11.5642 + }, + { + "Date+Time": "2002-11-15T00:00:00Z", + "Hs (total) (m)": 0.9102, + "Tp (total) (s)": 3.2891 + }, + { + "Date+Time": "2002-11-16T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 9.4752 + }, + { + "Date+Time": "2002-11-17T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 10.3862 + }, + { + "Date+Time": "2002-11-18T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 7.8845 + }, + { + "Date+Time": "2002-11-19T00:00:00Z", + "Hs (total) (m)": 2.4827, + "Tp (total) (s)": 14.2514 + }, + { + "Date+Time": "2002-11-20T00:00:00Z", + "Hs (total) (m)": 2.427, + "Tp (total) (s)": 15.1952 + }, + { + "Date+Time": "2002-11-21T00:00:00Z", + "Hs (total) (m)": 2.7642, + "Tp (total) (s)": 11.5696 + }, + { + "Date+Time": "2002-11-22T00:00:00Z", + "Hs (total) (m)": 4.0559, + "Tp (total) (s)": 17.0125 + }, + { + "Date+Time": "2002-11-23T00:00:00Z", + "Hs (total) (m)": 3.3395, + "Tp (total) (s)": 14.3269 + }, + { + "Date+Time": "2002-11-24T00:00:00Z", + "Hs (total) (m)": 2.8321, + "Tp (total) (s)": 13.3923 + }, + { + "Date+Time": "2002-11-25T00:00:00Z", + "Hs (total) (m)": 2.5834, + "Tp (total) (s)": 12.5332 + }, + { + "Date+Time": "2002-11-26T00:00:00Z", + "Hs (total) (m)": 1.8128, + "Tp (total) (s)": 10.3412 + }, + { + "Date+Time": "2002-11-27T00:00:00Z", + "Hs (total) (m)": 2.4331, + "Tp (total) (s)": 9.3524 + }, + { + "Date+Time": "2002-11-28T00:00:00Z", + "Hs (total) (m)": 3.5859, + "Tp (total) (s)": 10.4373 + }, + { + "Date+Time": "2002-11-29T00:00:00Z", + "Hs (total) (m)": 3.5157, + "Tp (total) (s)": 14.037 + }, + { + "Date+Time": "2002-11-30T00:00:00Z", + "Hs (total) (m)": 2.5353, + "Tp (total) (s)": 12.7331 + }, + { + "Date+Time": "2002-12-01T00:00:00Z", + "Hs (total) (m)": 2.7116, + "Tp (total) (s)": 11.5848 + }, + { + "Date+Time": "2002-12-02T00:00:00Z", + "Hs (total) (m)": 5.6944, + "Tp (total) (s)": 15.017 + }, + { + "Date+Time": "2002-12-03T00:00:00Z", + "Hs (total) (m)": 2.6078, + "Tp (total) (s)": 13.213 + }, + { + "Date+Time": "2002-12-04T00:00:00Z", + "Hs (total) (m)": 2.2454, + "Tp (total) (s)": 11.2476 + }, + { + "Date+Time": "2002-12-05T00:00:00Z", + "Hs (total) (m)": 2.723, + "Tp (total) (s)": 14.0843 + }, + { + "Date+Time": "2002-12-06T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 13.6067 + }, + { + "Date+Time": "2002-12-07T00:00:00Z", + "Hs (total) (m)": 2.7543, + "Tp (total) (s)": 15.4592 + }, + { + "Date+Time": "2002-12-08T00:00:00Z", + "Hs (total) (m)": 2.205, + "Tp (total) (s)": 13.9294 + }, + { + "Date+Time": "2002-12-09T00:00:00Z", + "Hs (total) (m)": 1.3642, + "Tp (total) (s)": 11.6611 + }, + { + "Date+Time": "2002-12-10T00:00:00Z", + "Hs (total) (m)": 2.5422, + "Tp (total) (s)": 15.9139 + }, + { + "Date+Time": "2002-12-11T00:00:00Z", + "Hs (total) (m)": 1.5107, + "Tp (total) (s)": 13.699 + }, + { + "Date+Time": "2002-12-12T00:00:00Z", + "Hs (total) (m)": 0.8919, + "Tp (total) (s)": 3.3471 + }, + { + "Date+Time": "2002-12-13T00:00:00Z", + "Hs (total) (m)": 2.0196, + "Tp (total) (s)": 16.0756 + }, + { + "Date+Time": "2002-12-14T00:00:00Z", + "Hs (total) (m)": 1.3039, + "Tp (total) (s)": 12.4836 + }, + { + "Date+Time": "2002-12-15T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 10.6944 + }, + { + "Date+Time": "2002-12-16T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 10.9935 + }, + { + "Date+Time": "2002-12-17T00:00:00Z", + "Hs (total) (m)": 0.8065, + "Tp (total) (s)": 9.125 + }, + { + "Date+Time": "2002-12-18T00:00:00Z", + "Hs (total) (m)": 0.5051, + "Tp (total) (s)": 2.6383 + }, + { + "Date+Time": "2002-12-19T00:00:00Z", + "Hs (total) (m)": 0.8286, + "Tp (total) (s)": 3.2998 + }, + { + "Date+Time": "2002-12-20T00:00:00Z", + "Hs (total) (m)": 1.6404, + "Tp (total) (s)": 13.0505 + }, + { + "Date+Time": "2002-12-21T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 15.5141 + }, + { + "Date+Time": "2002-12-22T00:00:00Z", + "Hs (total) (m)": 1.9387, + "Tp (total) (s)": 12.8628 + }, + { + "Date+Time": "2002-12-23T00:00:00Z", + "Hs (total) (m)": 1.5694, + "Tp (total) (s)": 10.152 + }, + { + "Date+Time": "2002-12-24T00:00:00Z", + "Hs (total) (m)": 3.0694, + "Tp (total) (s)": 11.8381 + }, + { + "Date+Time": "2002-12-25T00:00:00Z", + "Hs (total) (m)": 2.5613, + "Tp (total) (s)": 12.6339 + }, + { + "Date+Time": "2002-12-26T00:00:00Z", + "Hs (total) (m)": 2.15, + "Tp (total) (s)": 11.3071 + }, + { + "Date+Time": "2002-12-27T00:00:00Z", + "Hs (total) (m)": 2.002, + "Tp (total) (s)": 11.5261 + }, + { + "Date+Time": "2002-12-28T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 15.1044 + }, + { + "Date+Time": "2002-12-29T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 12.4531 + }, + { + "Date+Time": "2002-12-30T00:00:00Z", + "Hs (total) (m)": 2.6414, + "Tp (total) (s)": 14.1659 + }, + { + "Date+Time": "2002-12-31T00:00:00Z", + "Hs (total) (m)": 2.8474, + "Tp (total) (s)": 15.315 + }, + { + "Date+Time": "2003-01-01T00:00:00Z", + "Hs (total) (m)": 2.5475, + "Tp (total) (s)": 12.8803 + }, + { + "Date+Time": "2003-01-02T00:00:00Z", + "Hs (total) (m)": 2.6978, + "Tp (total) (s)": 15.3302 + }, + { + "Date+Time": "2003-01-03T00:00:00Z", + "Hs (total) (m)": 2.2782, + "Tp (total) (s)": 13.435 + }, + { + "Date+Time": "2003-01-04T00:00:00Z", + "Hs (total) (m)": 1.8944, + "Tp (total) (s)": 11.6428 + }, + { + "Date+Time": "2003-01-05T00:00:00Z", + "Hs (total) (m)": 1.9585, + "Tp (total) (s)": 11.2094 + }, + { + "Date+Time": "2003-01-06T00:00:00Z", + "Hs (total) (m)": 2.224, + "Tp (total) (s)": 16.5723 + }, + { + "Date+Time": "2003-01-07T00:00:00Z", + "Hs (total) (m)": 3.3799, + "Tp (total) (s)": 14.9426 + }, + { + "Date+Time": "2003-01-08T00:00:00Z", + "Hs (total) (m)": 2.9847, + "Tp (total) (s)": 14.4337 + }, + { + "Date+Time": "2003-01-09T00:00:00Z", + "Hs (total) (m)": 1.9967, + "Tp (total) (s)": 14.0912 + }, + { + "Date+Time": "2003-01-10T00:00:00Z", + "Hs (total) (m)": 1.706, + "Tp (total) (s)": 13.8363 + }, + { + "Date+Time": "2003-01-11T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 13.5403 + }, + { + "Date+Time": "2003-01-12T00:00:00Z", + "Hs (total) (m)": 1.8868, + "Tp (total) (s)": 13.1764 + }, + { + "Date+Time": "2003-01-13T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 14.9159 + }, + { + "Date+Time": "2003-01-14T00:00:00Z", + "Hs (total) (m)": 3.4104, + "Tp (total) (s)": 13.5434 + }, + { + "Date+Time": "2003-01-15T00:00:00Z", + "Hs (total) (m)": 4.2329, + "Tp (total) (s)": 12.682 + }, + { + "Date+Time": "2003-01-16T00:00:00Z", + "Hs (total) (m)": 4.3283, + "Tp (total) (s)": 15.3294 + }, + { + "Date+Time": "2003-01-17T00:00:00Z", + "Hs (total) (m)": 5.2548, + "Tp (total) (s)": 11.7205 + }, + { + "Date+Time": "2003-01-18T00:00:00Z", + "Hs (total) (m)": 3.8423, + "Tp (total) (s)": 13.8974 + }, + { + "Date+Time": "2003-01-19T00:00:00Z", + "Hs (total) (m)": 3.2685, + "Tp (total) (s)": 13.5891 + }, + { + "Date+Time": "2003-01-20T00:00:00Z", + "Hs (total) (m)": 3.9521, + "Tp (total) (s)": 16.8355 + }, + { + "Date+Time": "2003-01-21T00:00:00Z", + "Hs (total) (m)": 3.9254, + "Tp (total) (s)": 16.834 + }, + { + "Date+Time": "2003-01-22T00:00:00Z", + "Hs (total) (m)": 2.6376, + "Tp (total) (s)": 15.511 + }, + { + "Date+Time": "2003-01-23T00:00:00Z", + "Hs (total) (m)": 1.6747, + "Tp (total) (s)": 14.0378 + }, + { + "Date+Time": "2003-01-24T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 7.6624 + }, + { + "Date+Time": "2003-01-25T00:00:00Z", + "Hs (total) (m)": 3.2212, + "Tp (total) (s)": 12.7392 + }, + { + "Date+Time": "2003-01-26T00:00:00Z", + "Hs (total) (m)": 2.8878, + "Tp (total) (s)": 13.683 + }, + { + "Date+Time": "2003-01-27T00:00:00Z", + "Hs (total) (m)": 2.7978, + "Tp (total) (s)": 12.9261 + }, + { + "Date+Time": "2003-01-28T00:00:00Z", + "Hs (total) (m)": 3.235, + "Tp (total) (s)": 14.9564 + }, + { + "Date+Time": "2003-01-29T00:00:00Z", + "Hs (total) (m)": 3.6248, + "Tp (total) (s)": 13.8165 + }, + { + "Date+Time": "2003-01-30T00:00:00Z", + "Hs (total) (m)": 3.1671, + "Tp (total) (s)": 14.1133 + }, + { + "Date+Time": "2003-01-31T00:00:00Z", + "Hs (total) (m)": 2.0981, + "Tp (total) (s)": 12.7216 + }, + { + "Date+Time": "2003-02-01T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 10.7456 + }, + { + "Date+Time": "2003-02-02T00:00:00Z", + "Hs (total) (m)": 2.2111, + "Tp (total) (s)": 14.1469 + }, + { + "Date+Time": "2003-02-03T00:00:00Z", + "Hs (total) (m)": 3.9964, + "Tp (total) (s)": 15.2707 + }, + { + "Date+Time": "2003-02-04T00:00:00Z", + "Hs (total) (m)": 3.4661, + "Tp (total) (s)": 15.0807 + }, + { + "Date+Time": "2003-02-05T00:00:00Z", + "Hs (total) (m)": 2.1882, + "Tp (total) (s)": 13.628 + }, + { + "Date+Time": "2003-02-06T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 11.3811 + }, + { + "Date+Time": "2003-02-07T00:00:00Z", + "Hs (total) (m)": 1.925, + "Tp (total) (s)": 11.1034 + }, + { + "Date+Time": "2003-02-08T00:00:00Z", + "Hs (total) (m)": 2.7596, + "Tp (total) (s)": 13.2389 + }, + { + "Date+Time": "2003-02-09T00:00:00Z", + "Hs (total) (m)": 2.723, + "Tp (total) (s)": 12.9963 + }, + { + "Date+Time": "2003-02-10T00:00:00Z", + "Hs (total) (m)": 3.0656, + "Tp (total) (s)": 14.0133 + }, + { + "Date+Time": "2003-02-11T00:00:00Z", + "Hs (total) (m)": 3.7408, + "Tp (total) (s)": 14.3796 + }, + { + "Date+Time": "2003-02-12T00:00:00Z", + "Hs (total) (m)": 3.5867, + "Tp (total) (s)": 16.4083 + }, + { + "Date+Time": "2003-02-13T00:00:00Z", + "Hs (total) (m)": 2.9145, + "Tp (total) (s)": 16.2229 + }, + { + "Date+Time": "2003-02-14T00:00:00Z", + "Hs (total) (m)": 3.119, + "Tp (total) (s)": 19.4914 + }, + { + "Date+Time": "2003-02-15T00:00:00Z", + "Hs (total) (m)": 3.1098, + "Tp (total) (s)": 17.6939 + }, + { + "Date+Time": "2003-02-16T00:00:00Z", + "Hs (total) (m)": 3.4555, + "Tp (total) (s)": 14.1324 + }, + { + "Date+Time": "2003-02-17T00:00:00Z", + "Hs (total) (m)": 2.8008, + "Tp (total) (s)": 12.5851 + }, + { + "Date+Time": "2003-02-18T00:00:00Z", + "Hs (total) (m)": 3.8995, + "Tp (total) (s)": 12.5401 + }, + { + "Date+Time": "2003-02-19T00:00:00Z", + "Hs (total) (m)": 3.8903, + "Tp (total) (s)": 14.3422 + }, + { + "Date+Time": "2003-02-20T00:00:00Z", + "Hs (total) (m)": 2.3751, + "Tp (total) (s)": 14.6283 + }, + { + "Date+Time": "2003-02-21T00:00:00Z", + "Hs (total) (m)": 2.0241, + "Tp (total) (s)": 13.7547 + }, + { + "Date+Time": "2003-02-22T00:00:00Z", + "Hs (total) (m)": 2.4049, + "Tp (total) (s)": 12.2303 + }, + { + "Date+Time": "2003-02-23T00:00:00Z", + "Hs (total) (m)": 2.3141, + "Tp (total) (s)": 12.2868 + }, + { + "Date+Time": "2003-02-24T00:00:00Z", + "Hs (total) (m)": 2.3545, + "Tp (total) (s)": 11.3659 + }, + { + "Date+Time": "2003-02-25T00:00:00Z", + "Hs (total) (m)": 2.5124, + "Tp (total) (s)": 12.4821 + }, + { + "Date+Time": "2003-02-26T00:00:00Z", + "Hs (total) (m)": 2.2774, + "Tp (total) (s)": 13.9088 + }, + { + "Date+Time": "2003-02-27T00:00:00Z", + "Hs (total) (m)": 1.9883, + "Tp (total) (s)": 18.7925 + }, + { + "Date+Time": "2003-02-28T00:00:00Z", + "Hs (total) (m)": 3.6164, + "Tp (total) (s)": 17.2109 + }, + { + "Date+Time": "2003-03-01T00:00:00Z", + "Hs (total) (m)": 3.3151, + "Tp (total) (s)": 15.3729 + }, + { + "Date+Time": "2003-03-02T00:00:00Z", + "Hs (total) (m)": 3.0831, + "Tp (total) (s)": 14.9831 + }, + { + "Date+Time": "2003-03-03T00:00:00Z", + "Hs (total) (m)": 2.8611, + "Tp (total) (s)": 14.143 + }, + { + "Date+Time": "2003-03-04T00:00:00Z", + "Hs (total) (m)": 2.855, + "Tp (total) (s)": 12.8399 + }, + { + "Date+Time": "2003-03-05T00:00:00Z", + "Hs (total) (m)": 3.0679, + "Tp (total) (s)": 13.7532 + }, + { + "Date+Time": "2003-03-06T00:00:00Z", + "Hs (total) (m)": 2.7543, + "Tp (total) (s)": 11.8152 + }, + { + "Date+Time": "2003-03-07T00:00:00Z", + "Hs (total) (m)": 3.1327, + "Tp (total) (s)": 10.5144 + }, + { + "Date+Time": "2003-03-08T00:00:00Z", + "Hs (total) (m)": 2.6521, + "Tp (total) (s)": 11.4635 + }, + { + "Date+Time": "2003-03-09T00:00:00Z", + "Hs (total) (m)": 4.268, + "Tp (total) (s)": 12.2097 + }, + { + "Date+Time": "2003-03-10T00:00:00Z", + "Hs (total) (m)": 5.4319, + "Tp (total) (s)": 18.5614 + }, + { + "Date+Time": "2003-03-11T00:00:00Z", + "Hs (total) (m)": 6.2266, + "Tp (total) (s)": 17.2296 + }, + { + "Date+Time": "2003-03-12T00:00:00Z", + "Hs (total) (m)": 4.0841, + "Tp (total) (s)": 16.5044 + }, + { + "Date+Time": "2003-03-13T00:00:00Z", + "Hs (total) (m)": 2.3797, + "Tp (total) (s)": 15.3104 + }, + { + "Date+Time": "2003-03-14T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 12.6553 + }, + { + "Date+Time": "2003-03-15T00:00:00Z", + "Hs (total) (m)": 1.6511, + "Tp (total) (s)": 12.7331 + }, + { + "Date+Time": "2003-03-16T00:00:00Z", + "Hs (total) (m)": 1.3535, + "Tp (total) (s)": 12.3829 + }, + { + "Date+Time": "2003-03-17T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 12.3661 + }, + { + "Date+Time": "2003-03-18T00:00:00Z", + "Hs (total) (m)": 1.6053, + "Tp (total) (s)": 15.5225 + }, + { + "Date+Time": "2003-03-19T00:00:00Z", + "Hs (total) (m)": 1.7266, + "Tp (total) (s)": 14.0439 + }, + { + "Date+Time": "2003-03-20T00:00:00Z", + "Hs (total) (m)": 1.606, + "Tp (total) (s)": 12.7247 + }, + { + "Date+Time": "2003-03-21T00:00:00Z", + "Hs (total) (m)": 1.4451, + "Tp (total) (s)": 11.491 + }, + { + "Date+Time": "2003-03-22T00:00:00Z", + "Hs (total) (m)": 2.4247, + "Tp (total) (s)": 14.2026 + }, + { + "Date+Time": "2003-03-23T00:00:00Z", + "Hs (total) (m)": 2.2912, + "Tp (total) (s)": 13.7226 + }, + { + "Date+Time": "2003-03-24T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 12.9009 + }, + { + "Date+Time": "2003-03-25T00:00:00Z", + "Hs (total) (m)": 1.6144, + "Tp (total) (s)": 12.5927 + }, + { + "Date+Time": "2003-03-26T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 12.3508 + }, + { + "Date+Time": "2003-03-27T00:00:00Z", + "Hs (total) (m)": 1.4908, + "Tp (total) (s)": 11.8305 + }, + { + "Date+Time": "2003-03-28T00:00:00Z", + "Hs (total) (m)": 1.4321, + "Tp (total) (s)": 13.5914 + }, + { + "Date+Time": "2003-03-29T00:00:00Z", + "Hs (total) (m)": 1.3932, + "Tp (total) (s)": 13.6166 + }, + { + "Date+Time": "2003-03-30T00:00:00Z", + "Hs (total) (m)": 1.2314, + "Tp (total) (s)": 12.0556 + }, + { + "Date+Time": "2003-03-31T00:00:00Z", + "Hs (total) (m)": 1.2879, + "Tp (total) (s)": 13.6341 + }, + { + "Date+Time": "2003-04-01T00:00:00Z", + "Hs (total) (m)": 2.8077, + "Tp (total) (s)": 7.0666 + }, + { + "Date+Time": "2003-04-02T00:00:00Z", + "Hs (total) (m)": 2.4201, + "Tp (total) (s)": 11.6916 + }, + { + "Date+Time": "2003-04-03T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 11.5604 + }, + { + "Date+Time": "2003-04-04T00:00:00Z", + "Hs (total) (m)": 1.4351, + "Tp (total) (s)": 11.2728 + }, + { + "Date+Time": "2003-04-05T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 11.1026 + }, + { + "Date+Time": "2003-04-06T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 11.2133 + }, + { + "Date+Time": "2003-04-07T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 13.8089 + }, + { + "Date+Time": "2003-04-08T00:00:00Z", + "Hs (total) (m)": 1.9463, + "Tp (total) (s)": 12.2257 + }, + { + "Date+Time": "2003-04-09T00:00:00Z", + "Hs (total) (m)": 1.8769, + "Tp (total) (s)": 12.6598 + }, + { + "Date+Time": "2003-04-10T00:00:00Z", + "Hs (total) (m)": 1.8502, + "Tp (total) (s)": 13.287 + }, + { + "Date+Time": "2003-04-11T00:00:00Z", + "Hs (total) (m)": 1.8647, + "Tp (total) (s)": 12.9185 + }, + { + "Date+Time": "2003-04-12T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 13.5128 + }, + { + "Date+Time": "2003-04-13T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 12.8361 + }, + { + "Date+Time": "2003-04-14T00:00:00Z", + "Hs (total) (m)": 1.7479, + "Tp (total) (s)": 10.8539 + }, + { + "Date+Time": "2003-04-15T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 10.9004 + }, + { + "Date+Time": "2003-04-16T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 10.564 + }, + { + "Date+Time": "2003-04-17T00:00:00Z", + "Hs (total) (m)": 1.8975, + "Tp (total) (s)": 14.3498 + }, + { + "Date+Time": "2003-04-18T00:00:00Z", + "Hs (total) (m)": 1.6739, + "Tp (total) (s)": 13.2054 + }, + { + "Date+Time": "2003-04-19T00:00:00Z", + "Hs (total) (m)": 1.5458, + "Tp (total) (s)": 11.33 + }, + { + "Date+Time": "2003-04-20T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 11.2278 + }, + { + "Date+Time": "2003-04-21T00:00:00Z", + "Hs (total) (m)": 1.2749, + "Tp (total) (s)": 11.4635 + }, + { + "Date+Time": "2003-04-22T00:00:00Z", + "Hs (total) (m)": 1.1277, + "Tp (total) (s)": 11.4017 + }, + { + "Date+Time": "2003-04-23T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 11.0981 + }, + { + "Date+Time": "2003-04-24T00:00:00Z", + "Hs (total) (m)": 0.9247, + "Tp (total) (s)": 10.4106 + }, + { + "Date+Time": "2003-04-25T00:00:00Z", + "Hs (total) (m)": 0.8957, + "Tp (total) (s)": 8.002 + }, + { + "Date+Time": "2003-04-26T00:00:00Z", + "Hs (total) (m)": 2.5575, + "Tp (total) (s)": 9.0793 + }, + { + "Date+Time": "2003-04-27T00:00:00Z", + "Hs (total) (m)": 2.2881, + "Tp (total) (s)": 8.7008 + }, + { + "Date+Time": "2003-04-28T00:00:00Z", + "Hs (total) (m)": 1.7159, + "Tp (total) (s)": 8.6879 + }, + { + "Date+Time": "2003-04-29T00:00:00Z", + "Hs (total) (m)": 1.2841, + "Tp (total) (s)": 8.552 + }, + { + "Date+Time": "2003-04-30T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 9.431 + }, + { + "Date+Time": "2003-05-01T00:00:00Z", + "Hs (total) (m)": 1.2185, + "Tp (total) (s)": 9.3951 + }, + { + "Date+Time": "2003-05-02T00:00:00Z", + "Hs (total) (m)": 1.075, + "Tp (total) (s)": 9.3158 + }, + { + "Date+Time": "2003-05-03T00:00:00Z", + "Hs (total) (m)": 1.0933, + "Tp (total) (s)": 8.6062 + }, + { + "Date+Time": "2003-05-04T00:00:00Z", + "Hs (total) (m)": 2.8161, + "Tp (total) (s)": 8.9671 + }, + { + "Date+Time": "2003-05-05T00:00:00Z", + "Hs (total) (m)": 1.6213, + "Tp (total) (s)": 9.3242 + }, + { + "Date+Time": "2003-05-06T00:00:00Z", + "Hs (total) (m)": 1.4245, + "Tp (total) (s)": 9.4653 + }, + { + "Date+Time": "2003-05-07T00:00:00Z", + "Hs (total) (m)": 1.5915, + "Tp (total) (s)": 11.8351 + }, + { + "Date+Time": "2003-05-08T00:00:00Z", + "Hs (total) (m)": 3.0091, + "Tp (total) (s)": 11.6237 + }, + { + "Date+Time": "2003-05-09T00:00:00Z", + "Hs (total) (m)": 2.781, + "Tp (total) (s)": 12.5393 + }, + { + "Date+Time": "2003-05-10T00:00:00Z", + "Hs (total) (m)": 2.4827, + "Tp (total) (s)": 12.0121 + }, + { + "Date+Time": "2003-05-11T00:00:00Z", + "Hs (total) (m)": 2.3591, + "Tp (total) (s)": 10.5823 + }, + { + "Date+Time": "2003-05-12T00:00:00Z", + "Hs (total) (m)": 2.195, + "Tp (total) (s)": 9.9643 + }, + { + "Date+Time": "2003-05-13T00:00:00Z", + "Hs (total) (m)": 1.8952, + "Tp (total) (s)": 9.4874 + }, + { + "Date+Time": "2003-05-14T00:00:00Z", + "Hs (total) (m)": 1.5809, + "Tp (total) (s)": 8.916 + }, + { + "Date+Time": "2003-05-15T00:00:00Z", + "Hs (total) (m)": 1.0468, + "Tp (total) (s)": 8.7344 + }, + { + "Date+Time": "2003-05-16T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 10.3038 + }, + { + "Date+Time": "2003-05-17T00:00:00Z", + "Hs (total) (m)": 1.4542, + "Tp (total) (s)": 10.2351 + }, + { + "Date+Time": "2003-05-18T00:00:00Z", + "Hs (total) (m)": 2.0142, + "Tp (total) (s)": 8.8565 + }, + { + "Date+Time": "2003-05-19T00:00:00Z", + "Hs (total) (m)": 3.0282, + "Tp (total) (s)": 9.4676 + }, + { + "Date+Time": "2003-05-20T00:00:00Z", + "Hs (total) (m)": 2.7154, + "Tp (total) (s)": 9.4684 + }, + { + "Date+Time": "2003-05-21T00:00:00Z", + "Hs (total) (m)": 2.4186, + "Tp (total) (s)": 9.5988 + }, + { + "Date+Time": "2003-05-22T00:00:00Z", + "Hs (total) (m)": 2.3415, + "Tp (total) (s)": 8.8282 + }, + { + "Date+Time": "2003-05-23T00:00:00Z", + "Hs (total) (m)": 2.6421, + "Tp (total) (s)": 9.4203 + }, + { + "Date+Time": "2003-05-24T00:00:00Z", + "Hs (total) (m)": 2.234, + "Tp (total) (s)": 9.8148 + }, + { + "Date+Time": "2003-05-25T00:00:00Z", + "Hs (total) (m)": 1.6854, + "Tp (total) (s)": 9.6599 + }, + { + "Date+Time": "2003-05-26T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 9.2029 + }, + { + "Date+Time": "2003-05-27T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 9.1693 + }, + { + "Date+Time": "2003-05-28T00:00:00Z", + "Hs (total) (m)": 1.4412, + "Tp (total) (s)": 9.4897 + }, + { + "Date+Time": "2003-05-29T00:00:00Z", + "Hs (total) (m)": 1.6747, + "Tp (total) (s)": 10.094 + }, + { + "Date+Time": "2003-05-30T00:00:00Z", + "Hs (total) (m)": 1.1696, + "Tp (total) (s)": 9.4928 + }, + { + "Date+Time": "2003-05-31T00:00:00Z", + "Hs (total) (m)": 0.9507, + "Tp (total) (s)": 9.1884 + }, + { + "Date+Time": "2003-06-01T00:00:00Z", + "Hs (total) (m)": 1.3077, + "Tp (total) (s)": 9.6255 + }, + { + "Date+Time": "2003-06-02T00:00:00Z", + "Hs (total) (m)": 1.7434, + "Tp (total) (s)": 10.5144 + }, + { + "Date+Time": "2003-06-03T00:00:00Z", + "Hs (total) (m)": 2.1577, + "Tp (total) (s)": 10.1108 + }, + { + "Date+Time": "2003-06-04T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 9.3326 + }, + { + "Date+Time": "2003-06-05T00:00:00Z", + "Hs (total) (m)": 1.5587, + "Tp (total) (s)": 8.3773 + }, + { + "Date+Time": "2003-06-06T00:00:00Z", + "Hs (total) (m)": 1.783, + "Tp (total) (s)": 7.7128 + }, + { + "Date+Time": "2003-06-07T00:00:00Z", + "Hs (total) (m)": 2.327, + "Tp (total) (s)": 10.3534 + }, + { + "Date+Time": "2003-06-08T00:00:00Z", + "Hs (total) (m)": 1.9852, + "Tp (total) (s)": 11.2392 + }, + { + "Date+Time": "2003-06-09T00:00:00Z", + "Hs (total) (m)": 1.6984, + "Tp (total) (s)": 10.6693 + }, + { + "Date+Time": "2003-06-10T00:00:00Z", + "Hs (total) (m)": 1.8334, + "Tp (total) (s)": 9.3959 + }, + { + "Date+Time": "2003-06-11T00:00:00Z", + "Hs (total) (m)": 1.9189, + "Tp (total) (s)": 8.7016 + }, + { + "Date+Time": "2003-06-12T00:00:00Z", + "Hs (total) (m)": 1.9631, + "Tp (total) (s)": 9.2975 + }, + { + "Date+Time": "2003-06-13T00:00:00Z", + "Hs (total) (m)": 2.015, + "Tp (total) (s)": 9.6126 + }, + { + "Date+Time": "2003-06-14T00:00:00Z", + "Hs (total) (m)": 1.397, + "Tp (total) (s)": 9.2677 + }, + { + "Date+Time": "2003-06-15T00:00:00Z", + "Hs (total) (m)": 1.4527, + "Tp (total) (s)": 9.3196 + }, + { + "Date+Time": "2003-06-16T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 9.431 + }, + { + "Date+Time": "2003-06-17T00:00:00Z", + "Hs (total) (m)": 1.3558, + "Tp (total) (s)": 10.0352 + }, + { + "Date+Time": "2003-06-18T00:00:00Z", + "Hs (total) (m)": 2.0707, + "Tp (total) (s)": 10.5296 + }, + { + "Date+Time": "2003-06-19T00:00:00Z", + "Hs (total) (m)": 2.1165, + "Tp (total) (s)": 9.7064 + }, + { + "Date+Time": "2003-06-20T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "2003-06-21T00:00:00Z", + "Hs (total) (m)": 1.6671, + "Tp (total) (s)": 9.489 + }, + { + "Date+Time": "2003-06-22T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 9.3455 + }, + { + "Date+Time": "2003-06-23T00:00:00Z", + "Hs (total) (m)": 1.2955, + "Tp (total) (s)": 9.4043 + }, + { + "Date+Time": "2003-06-24T00:00:00Z", + "Hs (total) (m)": 1.1063, + "Tp (total) (s)": 9.2586 + }, + { + "Date+Time": "2003-06-25T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 8.0424 + }, + { + "Date+Time": "2003-06-26T00:00:00Z", + "Hs (total) (m)": 1.3657, + "Tp (total) (s)": 8.8649 + }, + { + "Date+Time": "2003-06-27T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 8.4941 + }, + { + "Date+Time": "2003-06-28T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 8.6497 + }, + { + "Date+Time": "2003-06-29T00:00:00Z", + "Hs (total) (m)": 2.2034, + "Tp (total) (s)": 11.3384 + }, + { + "Date+Time": "2003-06-30T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 10.8089 + }, + { + "Date+Time": "2003-07-01T00:00:00Z", + "Hs (total) (m)": 0.4448, + "Tp (total) (s)": 7.6075 + }, + { + "Date+Time": "2003-07-02T00:00:00Z", + "Hs (total) (m)": 0.7233, + "Tp (total) (s)": 7.3359 + }, + { + "Date+Time": "2003-07-03T00:00:00Z", + "Hs (total) (m)": 0.7027, + "Tp (total) (s)": 7.2932 + }, + { + "Date+Time": "2003-07-04T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 7.2352 + }, + { + "Date+Time": "2003-07-05T00:00:00Z", + "Hs (total) (m)": 0.65, + "Tp (total) (s)": 7.1818 + }, + { + "Date+Time": "2003-07-06T00:00:00Z", + "Hs (total) (m)": 0.705, + "Tp (total) (s)": 5.694 + }, + { + "Date+Time": "2003-07-07T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 5.1759 + }, + { + "Date+Time": "2003-07-08T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 6.1106 + }, + { + "Date+Time": "2003-07-09T00:00:00Z", + "Hs (total) (m)": 0.9651, + "Tp (total) (s)": 6.444 + }, + { + "Date+Time": "2003-07-10T00:00:00Z", + "Hs (total) (m)": 1.2551, + "Tp (total) (s)": 7.5587 + }, + { + "Date+Time": "2003-07-11T00:00:00Z", + "Hs (total) (m)": 1.2925, + "Tp (total) (s)": 7.3733 + }, + { + "Date+Time": "2003-07-12T00:00:00Z", + "Hs (total) (m)": 1.3604, + "Tp (total) (s)": 7.5076 + }, + { + "Date+Time": "2003-07-13T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 10.6243 + }, + { + "Date+Time": "2003-07-14T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 10.1405 + }, + { + "Date+Time": "2003-07-15T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 9.0724 + }, + { + "Date+Time": "2003-07-16T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 8.8656 + }, + { + "Date+Time": "2003-07-17T00:00:00Z", + "Hs (total) (m)": 1.0369, + "Tp (total) (s)": 9.9178 + }, + { + "Date+Time": "2003-07-18T00:00:00Z", + "Hs (total) (m)": 1.0033, + "Tp (total) (s)": 10.2 + }, + { + "Date+Time": "2003-07-19T00:00:00Z", + "Hs (total) (m)": 1.0582, + "Tp (total) (s)": 9.2036 + }, + { + "Date+Time": "2003-07-20T00:00:00Z", + "Hs (total) (m)": 1.3848, + "Tp (total) (s)": 9.3204 + }, + { + "Date+Time": "2003-07-21T00:00:00Z", + "Hs (total) (m)": 1.3359, + "Tp (total) (s)": 9.2982 + }, + { + "Date+Time": "2003-07-22T00:00:00Z", + "Hs (total) (m)": 1.1925, + "Tp (total) (s)": 9.0739 + }, + { + "Date+Time": "2003-07-23T00:00:00Z", + "Hs (total) (m)": 1.2917, + "Tp (total) (s)": 7.9836 + }, + { + "Date+Time": "2003-07-24T00:00:00Z", + "Hs (total) (m)": 1.3153, + "Tp (total) (s)": 7.2718 + }, + { + "Date+Time": "2003-07-25T00:00:00Z", + "Hs (total) (m)": 1.426, + "Tp (total) (s)": 7.5793 + }, + { + "Date+Time": "2003-07-26T00:00:00Z", + "Hs (total) (m)": 1.4809, + "Tp (total) (s)": 7.635 + }, + { + "Date+Time": "2003-07-27T00:00:00Z", + "Hs (total) (m)": 1.4321, + "Tp (total) (s)": 7.8372 + }, + { + "Date+Time": "2003-07-28T00:00:00Z", + "Hs (total) (m)": 1.5069, + "Tp (total) (s)": 7.757 + }, + { + "Date+Time": "2003-07-29T00:00:00Z", + "Hs (total) (m)": 1.4519, + "Tp (total) (s)": 7.7609 + }, + { + "Date+Time": "2003-07-30T00:00:00Z", + "Hs (total) (m)": 1.5412, + "Tp (total) (s)": 8.2247 + }, + { + "Date+Time": "2003-07-31T00:00:00Z", + "Hs (total) (m)": 1.6594, + "Tp (total) (s)": 8.1416 + }, + { + "Date+Time": "2003-08-01T00:00:00Z", + "Hs (total) (m)": 1.5854, + "Tp (total) (s)": 7.7319 + }, + { + "Date+Time": "2003-08-02T00:00:00Z", + "Hs (total) (m)": 1.6518, + "Tp (total) (s)": 8.9709 + }, + { + "Date+Time": "2003-08-03T00:00:00Z", + "Hs (total) (m)": 1.8891, + "Tp (total) (s)": 11.6184 + }, + { + "Date+Time": "2003-08-04T00:00:00Z", + "Hs (total) (m)": 1.973, + "Tp (total) (s)": 11.4834 + }, + { + "Date+Time": "2003-08-05T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 10.5831 + }, + { + "Date+Time": "2003-08-06T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 9.2708 + }, + { + "Date+Time": "2003-08-07T00:00:00Z", + "Hs (total) (m)": 0.9156, + "Tp (total) (s)": 8.4689 + }, + { + "Date+Time": "2003-08-08T00:00:00Z", + "Hs (total) (m)": 0.7622, + "Tp (total) (s)": 7.8753 + }, + { + "Date+Time": "2003-08-09T00:00:00Z", + "Hs (total) (m)": 0.7431, + "Tp (total) (s)": 7.8394 + }, + { + "Date+Time": "2003-08-10T00:00:00Z", + "Hs (total) (m)": 0.7851, + "Tp (total) (s)": 8.0744 + }, + { + "Date+Time": "2003-08-11T00:00:00Z", + "Hs (total) (m)": 0.7462, + "Tp (total) (s)": 8.021 + }, + { + "Date+Time": "2003-08-12T00:00:00Z", + "Hs (total) (m)": 0.7447, + "Tp (total) (s)": 7.7525 + }, + { + "Date+Time": "2003-08-13T00:00:00Z", + "Hs (total) (m)": 0.7881, + "Tp (total) (s)": 7.4992 + }, + { + "Date+Time": "2003-08-14T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 7.7021 + }, + { + "Date+Time": "2003-08-15T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 8.269 + }, + { + "Date+Time": "2003-08-16T00:00:00Z", + "Hs (total) (m)": 0.7904, + "Tp (total) (s)": 8.4651 + }, + { + "Date+Time": "2003-08-17T00:00:00Z", + "Hs (total) (m)": 0.7035, + "Tp (total) (s)": 8.1912 + }, + { + "Date+Time": "2003-08-18T00:00:00Z", + "Hs (total) (m)": 1.1505, + "Tp (total) (s)": 6.6538 + }, + { + "Date+Time": "2003-08-19T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 7.2054 + }, + { + "Date+Time": "2003-08-20T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 7.2802 + }, + { + "Date+Time": "2003-08-21T00:00:00Z", + "Hs (total) (m)": 1.3649, + "Tp (total) (s)": 8.2675 + }, + { + "Date+Time": "2003-08-22T00:00:00Z", + "Hs (total) (m)": 1.6999, + "Tp (total) (s)": 8.0905 + }, + { + "Date+Time": "2003-08-23T00:00:00Z", + "Hs (total) (m)": 1.7457, + "Tp (total) (s)": 8.5597 + }, + { + "Date+Time": "2003-08-24T00:00:00Z", + "Hs (total) (m)": 1.6343, + "Tp (total) (s)": 8.6612 + }, + { + "Date+Time": "2003-08-25T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 8.9305 + }, + { + "Date+Time": "2003-08-26T00:00:00Z", + "Hs (total) (m)": 1.4084, + "Tp (total) (s)": 9.0434 + }, + { + "Date+Time": "2003-08-27T00:00:00Z", + "Hs (total) (m)": 0.8377, + "Tp (total) (s)": 8.52 + }, + { + "Date+Time": "2003-08-28T00:00:00Z", + "Hs (total) (m)": 0.4257, + "Tp (total) (s)": 2.5636 + }, + { + "Date+Time": "2003-08-29T00:00:00Z", + "Hs (total) (m)": 0.4669, + "Tp (total) (s)": 2.6391 + }, + { + "Date+Time": "2003-08-30T00:00:00Z", + "Hs (total) (m)": 0.4227, + "Tp (total) (s)": 2.7108 + }, + { + "Date+Time": "2003-08-31T00:00:00Z", + "Hs (total) (m)": 0.3281, + "Tp (total) (s)": 2.9069 + }, + { + "Date+Time": "2003-09-01T00:00:00Z", + "Hs (total) (m)": 0.4418, + "Tp (total) (s)": 2.6681 + }, + { + "Date+Time": "2003-09-02T00:00:00Z", + "Hs (total) (m)": 0.5005, + "Tp (total) (s)": 6.3005 + }, + { + "Date+Time": "2003-09-03T00:00:00Z", + "Hs (total) (m)": 0.4997, + "Tp (total) (s)": 9.2784 + }, + { + "Date+Time": "2003-09-04T00:00:00Z", + "Hs (total) (m)": 0.5211, + "Tp (total) (s)": 6.4081 + }, + { + "Date+Time": "2003-09-05T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 8.6558 + }, + { + "Date+Time": "2003-09-06T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 10.2084 + }, + { + "Date+Time": "2003-09-07T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 10.4343 + }, + { + "Date+Time": "2003-09-08T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 11.1034 + }, + { + "Date+Time": "2003-09-09T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 11.1713 + }, + { + "Date+Time": "2003-09-10T00:00:00Z", + "Hs (total) (m)": 1.68, + "Tp (total) (s)": 10.7219 + }, + { + "Date+Time": "2003-09-11T00:00:00Z", + "Hs (total) (m)": 1.8265, + "Tp (total) (s)": 9.1845 + }, + { + "Date+Time": "2003-09-12T00:00:00Z", + "Hs (total) (m)": 2.4583, + "Tp (total) (s)": 14.2949 + }, + { + "Date+Time": "2003-09-13T00:00:00Z", + "Hs (total) (m)": 2.7451, + "Tp (total) (s)": 10.4404 + }, + { + "Date+Time": "2003-09-14T00:00:00Z", + "Hs (total) (m)": 2.7146, + "Tp (total) (s)": 10.3488 + }, + { + "Date+Time": "2003-09-15T00:00:00Z", + "Hs (total) (m)": 2.4545, + "Tp (total) (s)": 12.3524 + }, + { + "Date+Time": "2003-09-16T00:00:00Z", + "Hs (total) (m)": 2.0974, + "Tp (total) (s)": 11.9381 + }, + { + "Date+Time": "2003-09-17T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 11.2926 + }, + { + "Date+Time": "2003-09-18T00:00:00Z", + "Hs (total) (m)": 1.7182, + "Tp (total) (s)": 10.3145 + }, + { + "Date+Time": "2003-09-19T00:00:00Z", + "Hs (total) (m)": 1.545, + "Tp (total) (s)": 9.6339 + }, + { + "Date+Time": "2003-09-20T00:00:00Z", + "Hs (total) (m)": 1.3405, + "Tp (total) (s)": 7.8173 + }, + { + "Date+Time": "2003-09-21T00:00:00Z", + "Hs (total) (m)": 1.0254, + "Tp (total) (s)": 7.5182 + }, + { + "Date+Time": "2003-09-22T00:00:00Z", + "Hs (total) (m)": 0.9095, + "Tp (total) (s)": 12.3432 + }, + { + "Date+Time": "2003-09-23T00:00:00Z", + "Hs (total) (m)": 1.2307, + "Tp (total) (s)": 12.2188 + }, + { + "Date+Time": "2003-09-24T00:00:00Z", + "Hs (total) (m)": 1.2535, + "Tp (total) (s)": 12.2776 + }, + { + "Date+Time": "2003-09-25T00:00:00Z", + "Hs (total) (m)": 1.6434, + "Tp (total) (s)": 13.1939 + }, + { + "Date+Time": "2003-09-26T00:00:00Z", + "Hs (total) (m)": 1.6381, + "Tp (total) (s)": 11.6123 + }, + { + "Date+Time": "2003-09-27T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 7.017 + }, + { + "Date+Time": "2003-09-28T00:00:00Z", + "Hs (total) (m)": 0.7859, + "Tp (total) (s)": 6.1953 + }, + { + "Date+Time": "2003-09-29T00:00:00Z", + "Hs (total) (m)": 0.8751, + "Tp (total) (s)": 8.4849 + }, + { + "Date+Time": "2003-09-30T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 8.4765 + }, + { + "Date+Time": "2003-10-01T00:00:00Z", + "Hs (total) (m)": 1.017, + "Tp (total) (s)": 7.8646 + }, + { + "Date+Time": "2003-10-02T00:00:00Z", + "Hs (total) (m)": 1.0857, + "Tp (total) (s)": 7.0307 + }, + { + "Date+Time": "2003-10-03T00:00:00Z", + "Hs (total) (m)": 0.9117, + "Tp (total) (s)": 10.081 + }, + { + "Date+Time": "2003-10-04T00:00:00Z", + "Hs (total) (m)": 0.9079, + "Tp (total) (s)": 10.4083 + }, + { + "Date+Time": "2003-10-05T00:00:00Z", + "Hs (total) (m)": 0.8049, + "Tp (total) (s)": 3.0808 + }, + { + "Date+Time": "2003-10-06T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 3.6393 + }, + { + "Date+Time": "2003-10-07T00:00:00Z", + "Hs (total) (m)": 1.5366, + "Tp (total) (s)": 8.4086 + }, + { + "Date+Time": "2003-10-08T00:00:00Z", + "Hs (total) (m)": 1.8448, + "Tp (total) (s)": 10.8219 + }, + { + "Date+Time": "2003-10-09T00:00:00Z", + "Hs (total) (m)": 2.2683, + "Tp (total) (s)": 12.7712 + }, + { + "Date+Time": "2003-10-10T00:00:00Z", + "Hs (total) (m)": 2.224, + "Tp (total) (s)": 11.1827 + }, + { + "Date+Time": "2003-10-11T00:00:00Z", + "Hs (total) (m)": 2.1325, + "Tp (total) (s)": 10.2573 + }, + { + "Date+Time": "2003-10-12T00:00:00Z", + "Hs (total) (m)": 2.2774, + "Tp (total) (s)": 15.1105 + }, + { + "Date+Time": "2003-10-13T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 13.4251 + }, + { + "Date+Time": "2003-10-14T00:00:00Z", + "Hs (total) (m)": 1.6739, + "Tp (total) (s)": 10.8386 + }, + { + "Date+Time": "2003-10-15T00:00:00Z", + "Hs (total) (m)": 1.6617, + "Tp (total) (s)": 11.8053 + }, + { + "Date+Time": "2003-10-16T00:00:00Z", + "Hs (total) (m)": 1.7815, + "Tp (total) (s)": 11.668 + }, + { + "Date+Time": "2003-10-17T00:00:00Z", + "Hs (total) (m)": 1.8143, + "Tp (total) (s)": 11.2857 + }, + { + "Date+Time": "2003-10-18T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 11.0004 + }, + { + "Date+Time": "2003-10-19T00:00:00Z", + "Hs (total) (m)": 0.9209, + "Tp (total) (s)": 13.0261 + }, + { + "Date+Time": "2003-10-20T00:00:00Z", + "Hs (total) (m)": 0.8583, + "Tp (total) (s)": 12.5835 + }, + { + "Date+Time": "2003-10-21T00:00:00Z", + "Hs (total) (m)": 0.5554, + "Tp (total) (s)": 11.2255 + }, + { + "Date+Time": "2003-10-22T00:00:00Z", + "Hs (total) (m)": 0.6119, + "Tp (total) (s)": 2.6292 + }, + { + "Date+Time": "2003-10-23T00:00:00Z", + "Hs (total) (m)": 0.5516, + "Tp (total) (s)": 2.7436 + }, + { + "Date+Time": "2003-10-24T00:00:00Z", + "Hs (total) (m)": 0.3571, + "Tp (total) (s)": 2.9817 + }, + { + "Date+Time": "2003-10-25T00:00:00Z", + "Hs (total) (m)": 0.5783, + "Tp (total) (s)": 7.5312 + }, + { + "Date+Time": "2003-10-26T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 2.7764 + }, + { + "Date+Time": "2003-10-27T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 10.3587 + }, + { + "Date+Time": "2003-10-28T00:00:00Z", + "Hs (total) (m)": 0.7576, + "Tp (total) (s)": 5.9496 + }, + { + "Date+Time": "2003-10-29T00:00:00Z", + "Hs (total) (m)": 0.9011, + "Tp (total) (s)": 8.0584 + }, + { + "Date+Time": "2003-10-30T00:00:00Z", + "Hs (total) (m)": 1.2276, + "Tp (total) (s)": 12.7018 + }, + { + "Date+Time": "2003-10-31T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 11.9236 + }, + { + "Date+Time": "2003-11-01T00:00:00Z", + "Hs (total) (m)": 2.5079, + "Tp (total) (s)": 11.4727 + }, + { + "Date+Time": "2003-11-02T00:00:00Z", + "Hs (total) (m)": 2.5857, + "Tp (total) (s)": 15.3401 + }, + { + "Date+Time": "2003-11-03T00:00:00Z", + "Hs (total) (m)": 2.4934, + "Tp (total) (s)": 12.6743 + }, + { + "Date+Time": "2003-11-04T00:00:00Z", + "Hs (total) (m)": 2.7306, + "Tp (total) (s)": 12.8132 + }, + { + "Date+Time": "2003-11-05T00:00:00Z", + "Hs (total) (m)": 3.6325, + "Tp (total) (s)": 12.6263 + }, + { + "Date+Time": "2003-11-06T00:00:00Z", + "Hs (total) (m)": 3.6157, + "Tp (total) (s)": 12.0518 + }, + { + "Date+Time": "2003-11-07T00:00:00Z", + "Hs (total) (m)": 3.2975, + "Tp (total) (s)": 11.6451 + }, + { + "Date+Time": "2003-11-08T00:00:00Z", + "Hs (total) (m)": 3.1175, + "Tp (total) (s)": 15.0708 + }, + { + "Date+Time": "2003-11-09T00:00:00Z", + "Hs (total) (m)": 3.1243, + "Tp (total) (s)": 14.9182 + }, + { + "Date+Time": "2003-11-10T00:00:00Z", + "Hs (total) (m)": 1.7518, + "Tp (total) (s)": 13.7928 + }, + { + "Date+Time": "2003-11-11T00:00:00Z", + "Hs (total) (m)": 1.706, + "Tp (total) (s)": 12.8292 + }, + { + "Date+Time": "2003-11-12T00:00:00Z", + "Hs (total) (m)": 1.9936, + "Tp (total) (s)": 12.5614 + }, + { + "Date+Time": "2003-11-13T00:00:00Z", + "Hs (total) (m)": 2.4697, + "Tp (total) (s)": 16.2442 + }, + { + "Date+Time": "2003-11-14T00:00:00Z", + "Hs (total) (m)": 3.1617, + "Tp (total) (s)": 15.5843 + }, + { + "Date+Time": "2003-11-15T00:00:00Z", + "Hs (total) (m)": 3.0816, + "Tp (total) (s)": 14.6908 + }, + { + "Date+Time": "2003-11-16T00:00:00Z", + "Hs (total) (m)": 2.768, + "Tp (total) (s)": 10.7578 + }, + { + "Date+Time": "2003-11-17T00:00:00Z", + "Hs (total) (m)": 2.5674, + "Tp (total) (s)": 10.6853 + }, + { + "Date+Time": "2003-11-18T00:00:00Z", + "Hs (total) (m)": 2.2225, + "Tp (total) (s)": 10.4106 + }, + { + "Date+Time": "2003-11-19T00:00:00Z", + "Hs (total) (m)": 2.3377, + "Tp (total) (s)": 10.4099 + }, + { + "Date+Time": "2003-11-20T00:00:00Z", + "Hs (total) (m)": 2.4178, + "Tp (total) (s)": 11.0775 + }, + { + "Date+Time": "2003-11-21T00:00:00Z", + "Hs (total) (m)": 2.3507, + "Tp (total) (s)": 11.3376 + }, + { + "Date+Time": "2003-11-22T00:00:00Z", + "Hs (total) (m)": 2.1836, + "Tp (total) (s)": 11.4284 + }, + { + "Date+Time": "2003-11-23T00:00:00Z", + "Hs (total) (m)": 1.793, + "Tp (total) (s)": 11.3124 + }, + { + "Date+Time": "2003-11-24T00:00:00Z", + "Hs (total) (m)": 1.4267, + "Tp (total) (s)": 10.5182 + }, + { + "Date+Time": "2003-11-25T00:00:00Z", + "Hs (total) (m)": 1.4603, + "Tp (total) (s)": 10.0589 + }, + { + "Date+Time": "2003-11-26T00:00:00Z", + "Hs (total) (m)": 1.6617, + "Tp (total) (s)": 8.8534 + }, + { + "Date+Time": "2003-11-27T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 12.8056 + }, + { + "Date+Time": "2003-11-28T00:00:00Z", + "Hs (total) (m)": 2.6307, + "Tp (total) (s)": 13.731 + }, + { + "Date+Time": "2003-11-29T00:00:00Z", + "Hs (total) (m)": 2.7024, + "Tp (total) (s)": 13.8867 + }, + { + "Date+Time": "2003-11-30T00:00:00Z", + "Hs (total) (m)": 2.3614, + "Tp (total) (s)": 13.4899 + }, + { + "Date+Time": "2003-12-01T00:00:00Z", + "Hs (total) (m)": 2.0363, + "Tp (total) (s)": 11.4475 + }, + { + "Date+Time": "2003-12-02T00:00:00Z", + "Hs (total) (m)": 1.9654, + "Tp (total) (s)": 10.4144 + }, + { + "Date+Time": "2003-12-03T00:00:00Z", + "Hs (total) (m)": 1.7968, + "Tp (total) (s)": 9.0335 + }, + { + "Date+Time": "2003-12-04T00:00:00Z", + "Hs (total) (m)": 1.5397, + "Tp (total) (s)": 12.2814 + }, + { + "Date+Time": "2003-12-05T00:00:00Z", + "Hs (total) (m)": 1.2177, + "Tp (total) (s)": 11.6276 + }, + { + "Date+Time": "2003-12-06T00:00:00Z", + "Hs (total) (m)": 1.0681, + "Tp (total) (s)": 12.5561 + }, + { + "Date+Time": "2003-12-07T00:00:00Z", + "Hs (total) (m)": 1.4954, + "Tp (total) (s)": 12.6965 + }, + { + "Date+Time": "2003-12-08T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 12.8712 + }, + { + "Date+Time": "2003-12-09T00:00:00Z", + "Hs (total) (m)": 1.8174, + "Tp (total) (s)": 12.1059 + }, + { + "Date+Time": "2003-12-10T00:00:00Z", + "Hs (total) (m)": 1.5893, + "Tp (total) (s)": 12.6049 + }, + { + "Date+Time": "2003-12-11T00:00:00Z", + "Hs (total) (m)": 1.4687, + "Tp (total) (s)": 11.2262 + }, + { + "Date+Time": "2003-12-12T00:00:00Z", + "Hs (total) (m)": 1.603, + "Tp (total) (s)": 10.6861 + }, + { + "Date+Time": "2003-12-13T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 12.4714 + }, + { + "Date+Time": "2003-12-14T00:00:00Z", + "Hs (total) (m)": 2.1264, + "Tp (total) (s)": 12.2135 + }, + { + "Date+Time": "2003-12-15T00:00:00Z", + "Hs (total) (m)": 2.0035, + "Tp (total) (s)": 11.7275 + }, + { + "Date+Time": "2003-12-16T00:00:00Z", + "Hs (total) (m)": 2.092, + "Tp (total) (s)": 10.11 + }, + { + "Date+Time": "2003-12-17T00:00:00Z", + "Hs (total) (m)": 2.3919, + "Tp (total) (s)": 9.8613 + }, + { + "Date+Time": "2003-12-18T00:00:00Z", + "Hs (total) (m)": 2.0867, + "Tp (total) (s)": 11.0271 + }, + { + "Date+Time": "2003-12-19T00:00:00Z", + "Hs (total) (m)": 1.7891, + "Tp (total) (s)": 10.9691 + }, + { + "Date+Time": "2003-12-20T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 12.2066 + }, + { + "Date+Time": "2003-12-21T00:00:00Z", + "Hs (total) (m)": 1.7098, + "Tp (total) (s)": 11.8274 + }, + { + "Date+Time": "2003-12-22T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 10.6975 + }, + { + "Date+Time": "2003-12-23T00:00:00Z", + "Hs (total) (m)": 1.9189, + "Tp (total) (s)": 10.4015 + }, + { + "Date+Time": "2003-12-24T00:00:00Z", + "Hs (total) (m)": 1.4946, + "Tp (total) (s)": 11.3521 + }, + { + "Date+Time": "2003-12-25T00:00:00Z", + "Hs (total) (m)": 2.0775, + "Tp (total) (s)": 10.1741 + }, + { + "Date+Time": "2003-12-26T00:00:00Z", + "Hs (total) (m)": 2.4392, + "Tp (total) (s)": 10.1726 + }, + { + "Date+Time": "2003-12-27T00:00:00Z", + "Hs (total) (m)": 2.4812, + "Tp (total) (s)": 10.4183 + }, + { + "Date+Time": "2003-12-28T00:00:00Z", + "Hs (total) (m)": 2.4537, + "Tp (total) (s)": 13.4236 + }, + { + "Date+Time": "2003-12-29T00:00:00Z", + "Hs (total) (m)": 2.1294, + "Tp (total) (s)": 11.8511 + }, + { + "Date+Time": "2003-12-30T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 11.4864 + }, + { + "Date+Time": "2003-12-31T00:00:00Z", + "Hs (total) (m)": 1.722, + "Tp (total) (s)": 11.1881 + }, + { + "Date+Time": "2004-01-01T00:00:00Z", + "Hs (total) (m)": 2.5536, + "Tp (total) (s)": 9.6721 + }, + { + "Date+Time": "2004-01-02T00:00:00Z", + "Hs (total) (m)": 2.5018, + "Tp (total) (s)": 9.7316 + }, + { + "Date+Time": "2004-01-03T00:00:00Z", + "Hs (total) (m)": 2.4056, + "Tp (total) (s)": 10.1894 + }, + { + "Date+Time": "2004-01-04T00:00:00Z", + "Hs (total) (m)": 2.2904, + "Tp (total) (s)": 12.4531 + }, + { + "Date+Time": "2004-01-05T00:00:00Z", + "Hs (total) (m)": 1.9745, + "Tp (total) (s)": 12.3844 + }, + { + "Date+Time": "2004-01-06T00:00:00Z", + "Hs (total) (m)": 2.2172, + "Tp (total) (s)": 12.389 + }, + { + "Date+Time": "2004-01-07T00:00:00Z", + "Hs (total) (m)": 2.7902, + "Tp (total) (s)": 11.6817 + }, + { + "Date+Time": "2004-01-08T00:00:00Z", + "Hs (total) (m)": 3.1327, + "Tp (total) (s)": 11.6695 + }, + { + "Date+Time": "2004-01-09T00:00:00Z", + "Hs (total) (m)": 3.2884, + "Tp (total) (s)": 13.4854 + }, + { + "Date+Time": "2004-01-10T00:00:00Z", + "Hs (total) (m)": 3.6508, + "Tp (total) (s)": 13.3221 + }, + { + "Date+Time": "2004-01-11T00:00:00Z", + "Hs (total) (m)": 3.9247, + "Tp (total) (s)": 12.9925 + }, + { + "Date+Time": "2004-01-12T00:00:00Z", + "Hs (total) (m)": 4.3672, + "Tp (total) (s)": 12.9009 + }, + { + "Date+Time": "2004-01-13T00:00:00Z", + "Hs (total) (m)": 4.5167, + "Tp (total) (s)": 13.5571 + }, + { + "Date+Time": "2004-01-14T00:00:00Z", + "Hs (total) (m)": 4.2673, + "Tp (total) (s)": 13.686 + }, + { + "Date+Time": "2004-01-15T00:00:00Z", + "Hs (total) (m)": 3.5234, + "Tp (total) (s)": 13.3908 + }, + { + "Date+Time": "2004-01-16T00:00:00Z", + "Hs (total) (m)": 3.3036, + "Tp (total) (s)": 12.2364 + }, + { + "Date+Time": "2004-01-17T00:00:00Z", + "Hs (total) (m)": 2.8985, + "Tp (total) (s)": 11.7328 + }, + { + "Date+Time": "2004-01-18T00:00:00Z", + "Hs (total) (m)": 2.5384, + "Tp (total) (s)": 11.9327 + }, + { + "Date+Time": "2004-01-19T00:00:00Z", + "Hs (total) (m)": 2.2591, + "Tp (total) (s)": 11.8107 + }, + { + "Date+Time": "2004-01-20T00:00:00Z", + "Hs (total) (m)": 2.2362, + "Tp (total) (s)": 12.3295 + }, + { + "Date+Time": "2004-01-21T00:00:00Z", + "Hs (total) (m)": 2.3286, + "Tp (total) (s)": 13.0123 + }, + { + "Date+Time": "2004-01-22T00:00:00Z", + "Hs (total) (m)": 2.8085, + "Tp (total) (s)": 13.0856 + }, + { + "Date+Time": "2004-01-23T00:00:00Z", + "Hs (total) (m)": 2.3293, + "Tp (total) (s)": 13.0039 + }, + { + "Date+Time": "2004-01-24T00:00:00Z", + "Hs (total) (m)": 2.0577, + "Tp (total) (s)": 12.5675 + }, + { + "Date+Time": "2004-01-25T00:00:00Z", + "Hs (total) (m)": 2.2935, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "2004-01-26T00:00:00Z", + "Hs (total) (m)": 2.4819, + "Tp (total) (s)": 12.8948 + }, + { + "Date+Time": "2004-01-27T00:00:00Z", + "Hs (total) (m)": 2.2546, + "Tp (total) (s)": 12.9788 + }, + { + "Date+Time": "2004-01-28T00:00:00Z", + "Hs (total) (m)": 1.5549, + "Tp (total) (s)": 12.8445 + }, + { + "Date+Time": "2004-01-29T00:00:00Z", + "Hs (total) (m)": 1.1353, + "Tp (total) (s)": 11.6932 + }, + { + "Date+Time": "2004-01-30T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 13.7829 + }, + { + "Date+Time": "2004-01-31T00:00:00Z", + "Hs (total) (m)": 1.8319, + "Tp (total) (s)": 13.7417 + }, + { + "Date+Time": "2004-02-01T00:00:00Z", + "Hs (total) (m)": 2.1973, + "Tp (total) (s)": 10.2123 + }, + { + "Date+Time": "2004-02-02T00:00:00Z", + "Hs (total) (m)": 3.1762, + "Tp (total) (s)": 14.1812 + }, + { + "Date+Time": "2004-02-03T00:00:00Z", + "Hs (total) (m)": 3.9743, + "Tp (total) (s)": 14.0027 + }, + { + "Date+Time": "2004-02-04T00:00:00Z", + "Hs (total) (m)": 4.3146, + "Tp (total) (s)": 13.5647 + }, + { + "Date+Time": "2004-02-05T00:00:00Z", + "Hs (total) (m)": 4.03, + "Tp (total) (s)": 12.7964 + }, + { + "Date+Time": "2004-02-06T00:00:00Z", + "Hs (total) (m)": 3.9171, + "Tp (total) (s)": 11.8221 + }, + { + "Date+Time": "2004-02-07T00:00:00Z", + "Hs (total) (m)": 3.1678, + "Tp (total) (s)": 11.5711 + }, + { + "Date+Time": "2004-02-08T00:00:00Z", + "Hs (total) (m)": 2.617, + "Tp (total) (s)": 11.4254 + }, + { + "Date+Time": "2004-02-09T00:00:00Z", + "Hs (total) (m)": 2.0104, + "Tp (total) (s)": 9.8903 + }, + { + "Date+Time": "2004-02-10T00:00:00Z", + "Hs (total) (m)": 2.308, + "Tp (total) (s)": 11.7786 + }, + { + "Date+Time": "2004-02-11T00:00:00Z", + "Hs (total) (m)": 1.9013, + "Tp (total) (s)": 10.976 + }, + { + "Date+Time": "2004-02-12T00:00:00Z", + "Hs (total) (m)": 1.925, + "Tp (total) (s)": 13.9599 + }, + { + "Date+Time": "2004-02-13T00:00:00Z", + "Hs (total) (m)": 2.1546, + "Tp (total) (s)": 14.2209 + }, + { + "Date+Time": "2004-02-14T00:00:00Z", + "Hs (total) (m)": 1.9608, + "Tp (total) (s)": 14.1255 + }, + { + "Date+Time": "2004-02-15T00:00:00Z", + "Hs (total) (m)": 1.8799, + "Tp (total) (s)": 13.9004 + }, + { + "Date+Time": "2004-02-16T00:00:00Z", + "Hs (total) (m)": 2.0234, + "Tp (total) (s)": 13.8508 + }, + { + "Date+Time": "2004-02-17T00:00:00Z", + "Hs (total) (m)": 1.8418, + "Tp (total) (s)": 13.6883 + }, + { + "Date+Time": "2004-02-18T00:00:00Z", + "Hs (total) (m)": 1.6968, + "Tp (total) (s)": 13.4968 + }, + { + "Date+Time": "2004-02-19T00:00:00Z", + "Hs (total) (m)": 1.4687, + "Tp (total) (s)": 11.5741 + }, + { + "Date+Time": "2004-02-20T00:00:00Z", + "Hs (total) (m)": 1.249, + "Tp (total) (s)": 12.344 + }, + { + "Date+Time": "2004-02-21T00:00:00Z", + "Hs (total) (m)": 1.12, + "Tp (total) (s)": 12.6637 + }, + { + "Date+Time": "2004-02-22T00:00:00Z", + "Hs (total) (m)": 1.0735, + "Tp (total) (s)": 12.3959 + }, + { + "Date+Time": "2004-02-23T00:00:00Z", + "Hs (total) (m)": 0.7729, + "Tp (total) (s)": 11.6039 + }, + { + "Date+Time": "2004-02-24T00:00:00Z", + "Hs (total) (m)": 0.6142, + "Tp (total) (s)": 15.7277 + }, + { + "Date+Time": "2004-02-25T00:00:00Z", + "Hs (total) (m)": 1.0865, + "Tp (total) (s)": 15.4843 + }, + { + "Date+Time": "2004-02-26T00:00:00Z", + "Hs (total) (m)": 1.2146, + "Tp (total) (s)": 15.2257 + }, + { + "Date+Time": "2004-02-27T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 14.4444 + }, + { + "Date+Time": "2004-02-28T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 9.5386 + }, + { + "Date+Time": "2004-02-29T00:00:00Z", + "Hs (total) (m)": 1.0018, + "Tp (total) (s)": 11.6054 + }, + { + "Date+Time": "2004-03-01T00:00:00Z", + "Hs (total) (m)": 1.1696, + "Tp (total) (s)": 13.3648 + }, + { + "Date+Time": "2004-03-02T00:00:00Z", + "Hs (total) (m)": 1.8914, + "Tp (total) (s)": 10.2626 + }, + { + "Date+Time": "2004-03-03T00:00:00Z", + "Hs (total) (m)": 3.0168, + "Tp (total) (s)": 12.7323 + }, + { + "Date+Time": "2004-03-04T00:00:00Z", + "Hs (total) (m)": 2.6025, + "Tp (total) (s)": 12.5645 + }, + { + "Date+Time": "2004-03-05T00:00:00Z", + "Hs (total) (m)": 2.3095, + "Tp (total) (s)": 11.9617 + }, + { + "Date+Time": "2004-03-06T00:00:00Z", + "Hs (total) (m)": 1.9044, + "Tp (total) (s)": 11.5795 + }, + { + "Date+Time": "2004-03-07T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 11.362 + }, + { + "Date+Time": "2004-03-08T00:00:00Z", + "Hs (total) (m)": 1.3085, + "Tp (total) (s)": 11.2171 + }, + { + "Date+Time": "2004-03-09T00:00:00Z", + "Hs (total) (m)": 2.0402, + "Tp (total) (s)": 10.6922 + }, + { + "Date+Time": "2004-03-10T00:00:00Z", + "Hs (total) (m)": 2.1737, + "Tp (total) (s)": 10.8867 + }, + { + "Date+Time": "2004-03-11T00:00:00Z", + "Hs (total) (m)": 2.9366, + "Tp (total) (s)": 15.4408 + }, + { + "Date+Time": "2004-03-12T00:00:00Z", + "Hs (total) (m)": 2.4094, + "Tp (total) (s)": 12.6453 + }, + { + "Date+Time": "2004-03-13T00:00:00Z", + "Hs (total) (m)": 1.9044, + "Tp (total) (s)": 13.6937 + }, + { + "Date+Time": "2004-03-14T00:00:00Z", + "Hs (total) (m)": 2.414, + "Tp (total) (s)": 14.2361 + }, + { + "Date+Time": "2004-03-15T00:00:00Z", + "Hs (total) (m)": 3.0862, + "Tp (total) (s)": 14.0797 + }, + { + "Date+Time": "2004-03-16T00:00:00Z", + "Hs (total) (m)": 3.2952, + "Tp (total) (s)": 13.5479 + }, + { + "Date+Time": "2004-03-17T00:00:00Z", + "Hs (total) (m)": 3.5577, + "Tp (total) (s)": 11.8473 + }, + { + "Date+Time": "2004-03-18T00:00:00Z", + "Hs (total) (m)": 3.2739, + "Tp (total) (s)": 11.7641 + }, + { + "Date+Time": "2004-03-19T00:00:00Z", + "Hs (total) (m)": 3.0053, + "Tp (total) (s)": 11.4544 + }, + { + "Date+Time": "2004-03-20T00:00:00Z", + "Hs (total) (m)": 2.9809, + "Tp (total) (s)": 12.3096 + }, + { + "Date+Time": "2004-03-21T00:00:00Z", + "Hs (total) (m)": 4.2932, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "2004-03-22T00:00:00Z", + "Hs (total) (m)": 4.4221, + "Tp (total) (s)": 12.9788 + }, + { + "Date+Time": "2004-03-23T00:00:00Z", + "Hs (total) (m)": 3.7973, + "Tp (total) (s)": 13.5151 + }, + { + "Date+Time": "2004-03-24T00:00:00Z", + "Hs (total) (m)": 2.7573, + "Tp (total) (s)": 13.5258 + }, + { + "Date+Time": "2004-03-25T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 12.273 + }, + { + "Date+Time": "2004-03-26T00:00:00Z", + "Hs (total) (m)": 1.3222, + "Tp (total) (s)": 10.9043 + }, + { + "Date+Time": "2004-03-27T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 12.2349 + }, + { + "Date+Time": "2004-03-28T00:00:00Z", + "Hs (total) (m)": 1.0628, + "Tp (total) (s)": 12.5988 + }, + { + "Date+Time": "2004-03-29T00:00:00Z", + "Hs (total) (m)": 1.0666, + "Tp (total) (s)": 10.3999 + }, + { + "Date+Time": "2004-03-30T00:00:00Z", + "Hs (total) (m)": 1.1208, + "Tp (total) (s)": 10.8142 + }, + { + "Date+Time": "2004-03-31T00:00:00Z", + "Hs (total) (m)": 1.5076, + "Tp (total) (s)": 11.2941 + }, + { + "Date+Time": "2004-04-01T00:00:00Z", + "Hs (total) (m)": 1.7167, + "Tp (total) (s)": 12.0968 + }, + { + "Date+Time": "2004-04-02T00:00:00Z", + "Hs (total) (m)": 1.886, + "Tp (total) (s)": 11.9091 + }, + { + "Date+Time": "2004-04-03T00:00:00Z", + "Hs (total) (m)": 1.8242, + "Tp (total) (s)": 12.3081 + }, + { + "Date+Time": "2004-04-04T00:00:00Z", + "Hs (total) (m)": 1.8128, + "Tp (total) (s)": 9.3875 + }, + { + "Date+Time": "2004-04-05T00:00:00Z", + "Hs (total) (m)": 2.1065, + "Tp (total) (s)": 9.1227 + }, + { + "Date+Time": "2004-04-06T00:00:00Z", + "Hs (total) (m)": 2.3843, + "Tp (total) (s)": 10.213 + }, + { + "Date+Time": "2004-04-07T00:00:00Z", + "Hs (total) (m)": 2.3789, + "Tp (total) (s)": 11.1545 + }, + { + "Date+Time": "2004-04-08T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 11.5154 + }, + { + "Date+Time": "2004-04-09T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 10.7463 + }, + { + "Date+Time": "2004-04-10T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 10.0208 + }, + { + "Date+Time": "2004-04-11T00:00:00Z", + "Hs (total) (m)": 0.8393, + "Tp (total) (s)": 9.4867 + }, + { + "Date+Time": "2004-04-12T00:00:00Z", + "Hs (total) (m)": 0.7706, + "Tp (total) (s)": 8.8389 + }, + { + "Date+Time": "2004-04-13T00:00:00Z", + "Hs (total) (m)": 0.8049, + "Tp (total) (s)": 7.7448 + }, + { + "Date+Time": "2004-04-14T00:00:00Z", + "Hs (total) (m)": 1.1811, + "Tp (total) (s)": 9.4829 + }, + { + "Date+Time": "2004-04-15T00:00:00Z", + "Hs (total) (m)": 2.1111, + "Tp (total) (s)": 13.7364 + }, + { + "Date+Time": "2004-04-16T00:00:00Z", + "Hs (total) (m)": 2.2034, + "Tp (total) (s)": 13.5952 + }, + { + "Date+Time": "2004-04-17T00:00:00Z", + "Hs (total) (m)": 1.9929, + "Tp (total) (s)": 12.4256 + }, + { + "Date+Time": "2004-04-18T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 11.5162 + }, + { + "Date+Time": "2004-04-19T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 11.4483 + }, + { + "Date+Time": "2004-04-20T00:00:00Z", + "Hs (total) (m)": 2.3911, + "Tp (total) (s)": 14.3651 + }, + { + "Date+Time": "2004-04-21T00:00:00Z", + "Hs (total) (m)": 3.4539, + "Tp (total) (s)": 14.05 + }, + { + "Date+Time": "2004-04-22T00:00:00Z", + "Hs (total) (m)": 3.0274, + "Tp (total) (s)": 12.1662 + }, + { + "Date+Time": "2004-04-23T00:00:00Z", + "Hs (total) (m)": 2.6177, + "Tp (total) (s)": 12.4981 + }, + { + "Date+Time": "2004-04-24T00:00:00Z", + "Hs (total) (m)": 2.5422, + "Tp (total) (s)": 12.4042 + }, + { + "Date+Time": "2004-04-25T00:00:00Z", + "Hs (total) (m)": 2.2645, + "Tp (total) (s)": 11.3865 + }, + { + "Date+Time": "2004-04-26T00:00:00Z", + "Hs (total) (m)": 1.9837, + "Tp (total) (s)": 10.9447 + }, + { + "Date+Time": "2004-04-27T00:00:00Z", + "Hs (total) (m)": 1.7159, + "Tp (total) (s)": 11.0775 + }, + { + "Date+Time": "2004-04-28T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 11.0607 + }, + { + "Date+Time": "2004-04-29T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 11.359 + }, + { + "Date+Time": "2004-04-30T00:00:00Z", + "Hs (total) (m)": 1.4985, + "Tp (total) (s)": 11.3094 + }, + { + "Date+Time": "2004-05-01T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 11.5841 + }, + { + "Date+Time": "2004-05-02T00:00:00Z", + "Hs (total) (m)": 1.0216, + "Tp (total) (s)": 7.8356 + }, + { + "Date+Time": "2004-05-03T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 7.3832 + }, + { + "Date+Time": "2004-05-04T00:00:00Z", + "Hs (total) (m)": 1.2406, + "Tp (total) (s)": 3.4822 + }, + { + "Date+Time": "2004-05-05T00:00:00Z", + "Hs (total) (m)": 2.6139, + "Tp (total) (s)": 11.5261 + }, + { + "Date+Time": "2004-05-06T00:00:00Z", + "Hs (total) (m)": 3.1945, + "Tp (total) (s)": 12.8346 + }, + { + "Date+Time": "2004-05-07T00:00:00Z", + "Hs (total) (m)": 2.2454, + "Tp (total) (s)": 12.447 + }, + { + "Date+Time": "2004-05-08T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 10.7936 + }, + { + "Date+Time": "2004-05-09T00:00:00Z", + "Hs (total) (m)": 1.426, + "Tp (total) (s)": 10.2481 + }, + { + "Date+Time": "2004-05-10T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 10.0826 + }, + { + "Date+Time": "2004-05-11T00:00:00Z", + "Hs (total) (m)": 1.1406, + "Tp (total) (s)": 9.5408 + }, + { + "Date+Time": "2004-05-12T00:00:00Z", + "Hs (total) (m)": 1.0025, + "Tp (total) (s)": 8.9976 + }, + { + "Date+Time": "2004-05-13T00:00:00Z", + "Hs (total) (m)": 0.956, + "Tp (total) (s)": 9.3715 + }, + { + "Date+Time": "2004-05-14T00:00:00Z", + "Hs (total) (m)": 0.9377, + "Tp (total) (s)": 11.2796 + }, + { + "Date+Time": "2004-05-15T00:00:00Z", + "Hs (total) (m)": 1.1017, + "Tp (total) (s)": 10.7387 + }, + { + "Date+Time": "2004-05-16T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 10.5533 + }, + { + "Date+Time": "2004-05-17T00:00:00Z", + "Hs (total) (m)": 1.368, + "Tp (total) (s)": 10.6532 + }, + { + "Date+Time": "2004-05-18T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 10.7898 + }, + { + "Date+Time": "2004-05-19T00:00:00Z", + "Hs (total) (m)": 1.4969, + "Tp (total) (s)": 10.6632 + }, + { + "Date+Time": "2004-05-20T00:00:00Z", + "Hs (total) (m)": 1.3558, + "Tp (total) (s)": 10.3465 + }, + { + "Date+Time": "2004-05-21T00:00:00Z", + "Hs (total) (m)": 1.3199, + "Tp (total) (s)": 10.2115 + }, + { + "Date+Time": "2004-05-22T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 11.1454 + }, + { + "Date+Time": "2004-05-23T00:00:00Z", + "Hs (total) (m)": 0.9568, + "Tp (total) (s)": 11.1675 + }, + { + "Date+Time": "2004-05-24T00:00:00Z", + "Hs (total) (m)": 0.7385, + "Tp (total) (s)": 8.4399 + }, + { + "Date+Time": "2004-05-25T00:00:00Z", + "Hs (total) (m)": 0.6027, + "Tp (total) (s)": 8.2873 + }, + { + "Date+Time": "2004-05-26T00:00:00Z", + "Hs (total) (m)": 0.4357, + "Tp (total) (s)": 8.1797 + }, + { + "Date+Time": "2004-05-27T00:00:00Z", + "Hs (total) (m)": 0.5577, + "Tp (total) (s)": 12.2089 + }, + { + "Date+Time": "2004-05-28T00:00:00Z", + "Hs (total) (m)": 1.6816, + "Tp (total) (s)": 13.432 + }, + { + "Date+Time": "2004-05-29T00:00:00Z", + "Hs (total) (m)": 2.1569, + "Tp (total) (s)": 12.8964 + }, + { + "Date+Time": "2004-05-30T00:00:00Z", + "Hs (total) (m)": 2.3774, + "Tp (total) (s)": 12.2585 + }, + { + "Date+Time": "2004-05-31T00:00:00Z", + "Hs (total) (m)": 2.1325, + "Tp (total) (s)": 11.4589 + }, + { + "Date+Time": "2004-06-01T00:00:00Z", + "Hs (total) (m)": 1.4748, + "Tp (total) (s)": 10.6342 + }, + { + "Date+Time": "2004-06-02T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 8.5101 + }, + { + "Date+Time": "2004-06-03T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 8.7275 + }, + { + "Date+Time": "2004-06-04T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 8.7313 + }, + { + "Date+Time": "2004-06-05T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 8.9061 + }, + { + "Date+Time": "2004-06-06T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 9.2334 + }, + { + "Date+Time": "2004-06-07T00:00:00Z", + "Hs (total) (m)": 1.2734, + "Tp (total) (s)": 11.3964 + }, + { + "Date+Time": "2004-06-08T00:00:00Z", + "Hs (total) (m)": 1.3848, + "Tp (total) (s)": 11.5177 + }, + { + "Date+Time": "2004-06-09T00:00:00Z", + "Hs (total) (m)": 1.5366, + "Tp (total) (s)": 11.3712 + }, + { + "Date+Time": "2004-06-10T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 10.139 + }, + { + "Date+Time": "2004-06-11T00:00:00Z", + "Hs (total) (m)": 1.9066, + "Tp (total) (s)": 8.6329 + }, + { + "Date+Time": "2004-06-12T00:00:00Z", + "Hs (total) (m)": 1.7716, + "Tp (total) (s)": 8.562 + }, + { + "Date+Time": "2004-06-13T00:00:00Z", + "Hs (total) (m)": 1.561, + "Tp (total) (s)": 8.3621 + }, + { + "Date+Time": "2004-06-14T00:00:00Z", + "Hs (total) (m)": 1.4855, + "Tp (total) (s)": 8.4422 + }, + { + "Date+Time": "2004-06-15T00:00:00Z", + "Hs (total) (m)": 1.2726, + "Tp (total) (s)": 7.6434 + }, + { + "Date+Time": "2004-06-16T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 7.342 + }, + { + "Date+Time": "2004-06-17T00:00:00Z", + "Hs (total) (m)": 1.3558, + "Tp (total) (s)": 8.3796 + }, + { + "Date+Time": "2004-06-18T00:00:00Z", + "Hs (total) (m)": 1.4695, + "Tp (total) (s)": 8.2759 + }, + { + "Date+Time": "2004-06-19T00:00:00Z", + "Hs (total) (m)": 1.4534, + "Tp (total) (s)": 8.5444 + }, + { + "Date+Time": "2004-06-20T00:00:00Z", + "Hs (total) (m)": 1.4359, + "Tp (total) (s)": 8.594 + }, + { + "Date+Time": "2004-06-21T00:00:00Z", + "Hs (total) (m)": 1.0422, + "Tp (total) (s)": 8.919 + }, + { + "Date+Time": "2004-06-22T00:00:00Z", + "Hs (total) (m)": 0.8347, + "Tp (total) (s)": 6.4417 + }, + { + "Date+Time": "2004-06-23T00:00:00Z", + "Hs (total) (m)": 0.9537, + "Tp (total) (s)": 7.8623 + }, + { + "Date+Time": "2004-06-24T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 3.5989 + }, + { + "Date+Time": "2004-06-25T00:00:00Z", + "Hs (total) (m)": 0.7401, + "Tp (total) (s)": 3.9193 + }, + { + "Date+Time": "2004-06-26T00:00:00Z", + "Hs (total) (m)": 1.664, + "Tp (total) (s)": 5.4224 + }, + { + "Date+Time": "2004-06-27T00:00:00Z", + "Hs (total) (m)": 2.0211, + "Tp (total) (s)": 9.682 + }, + { + "Date+Time": "2004-06-28T00:00:00Z", + "Hs (total) (m)": 1.9494, + "Tp (total) (s)": 10.3938 + }, + { + "Date+Time": "2004-06-29T00:00:00Z", + "Hs (total) (m)": 2.0432, + "Tp (total) (s)": 10.2786 + }, + { + "Date+Time": "2004-06-30T00:00:00Z", + "Hs (total) (m)": 2.5636, + "Tp (total) (s)": 9.8071 + }, + { + "Date+Time": "2004-07-01T00:00:00Z", + "Hs (total) (m)": 2.62, + "Tp (total) (s)": 11.1484 + }, + { + "Date+Time": "2004-07-02T00:00:00Z", + "Hs (total) (m)": 3.0602, + "Tp (total) (s)": 12.0846 + }, + { + "Date+Time": "2004-07-03T00:00:00Z", + "Hs (total) (m)": 2.6154, + "Tp (total) (s)": 9.8018 + }, + { + "Date+Time": "2004-07-04T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 8.7016 + }, + { + "Date+Time": "2004-07-05T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 7.9569 + }, + { + "Date+Time": "2004-07-06T00:00:00Z", + "Hs (total) (m)": 0.7149, + "Tp (total) (s)": 6.5661 + }, + { + "Date+Time": "2004-07-07T00:00:00Z", + "Hs (total) (m)": 0.6005, + "Tp (total) (s)": 6.4257 + }, + { + "Date+Time": "2004-07-08T00:00:00Z", + "Hs (total) (m)": 0.6134, + "Tp (total) (s)": 7.1566 + }, + { + "Date+Time": "2004-07-09T00:00:00Z", + "Hs (total) (m)": 0.6516, + "Tp (total) (s)": 3.1312 + }, + { + "Date+Time": "2004-07-10T00:00:00Z", + "Hs (total) (m)": 0.7912, + "Tp (total) (s)": 4.928 + }, + { + "Date+Time": "2004-07-11T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 8.7619 + }, + { + "Date+Time": "2004-07-12T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 6.8789 + }, + { + "Date+Time": "2004-07-13T00:00:00Z", + "Hs (total) (m)": 0.9125, + "Tp (total) (s)": 11.0187 + }, + { + "Date+Time": "2004-07-14T00:00:00Z", + "Hs (total) (m)": 1.3466, + "Tp (total) (s)": 8.9412 + }, + { + "Date+Time": "2004-07-15T00:00:00Z", + "Hs (total) (m)": 1.1284, + "Tp (total) (s)": 8.7077 + }, + { + "Date+Time": "2004-07-16T00:00:00Z", + "Hs (total) (m)": 1.22, + "Tp (total) (s)": 8.607 + }, + { + "Date+Time": "2004-07-17T00:00:00Z", + "Hs (total) (m)": 1.6297, + "Tp (total) (s)": 10.0261 + }, + { + "Date+Time": "2004-07-18T00:00:00Z", + "Hs (total) (m)": 1.3855, + "Tp (total) (s)": 9.0983 + }, + { + "Date+Time": "2004-07-19T00:00:00Z", + "Hs (total) (m)": 0.9842, + "Tp (total) (s)": 7.8265 + }, + { + "Date+Time": "2004-07-20T00:00:00Z", + "Hs (total) (m)": 0.8332, + "Tp (total) (s)": 6.3387 + }, + { + "Date+Time": "2004-07-21T00:00:00Z", + "Hs (total) (m)": 1.3321, + "Tp (total) (s)": 6.3097 + }, + { + "Date+Time": "2004-07-22T00:00:00Z", + "Hs (total) (m)": 2.0219, + "Tp (total) (s)": 9.518 + }, + { + "Date+Time": "2004-07-23T00:00:00Z", + "Hs (total) (m)": 1.7075, + "Tp (total) (s)": 9.4859 + }, + { + "Date+Time": "2004-07-24T00:00:00Z", + "Hs (total) (m)": 1.3718, + "Tp (total) (s)": 8.7947 + }, + { + "Date+Time": "2004-07-25T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 7.8646 + }, + { + "Date+Time": "2004-07-26T00:00:00Z", + "Hs (total) (m)": 1.59, + "Tp (total) (s)": 8.8496 + }, + { + "Date+Time": "2004-07-27T00:00:00Z", + "Hs (total) (m)": 1.0506, + "Tp (total) (s)": 8.5437 + }, + { + "Date+Time": "2004-07-28T00:00:00Z", + "Hs (total) (m)": 0.7263, + "Tp (total) (s)": 8.2049 + }, + { + "Date+Time": "2004-07-29T00:00:00Z", + "Hs (total) (m)": 1.5221, + "Tp (total) (s)": 9.8811 + }, + { + "Date+Time": "2004-07-30T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 10.213 + }, + { + "Date+Time": "2004-07-31T00:00:00Z", + "Hs (total) (m)": 1.2627, + "Tp (total) (s)": 10.361 + }, + { + "Date+Time": "2004-08-01T00:00:00Z", + "Hs (total) (m)": 1.1727, + "Tp (total) (s)": 10.7028 + }, + { + "Date+Time": "2004-08-02T00:00:00Z", + "Hs (total) (m)": 1.0674, + "Tp (total) (s)": 10.6532 + }, + { + "Date+Time": "2004-08-03T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 9.5248 + }, + { + "Date+Time": "2004-08-04T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 8.6261 + }, + { + "Date+Time": "2004-08-05T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 7.9318 + }, + { + "Date+Time": "2004-08-06T00:00:00Z", + "Hs (total) (m)": 1.455, + "Tp (total) (s)": 8.3499 + }, + { + "Date+Time": "2004-08-07T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 8.8023 + }, + { + "Date+Time": "2004-08-08T00:00:00Z", + "Hs (total) (m)": 1.4023, + "Tp (total) (s)": 5.6864 + }, + { + "Date+Time": "2004-08-09T00:00:00Z", + "Hs (total) (m)": 2.736, + "Tp (total) (s)": 9.6667 + }, + { + "Date+Time": "2004-08-10T00:00:00Z", + "Hs (total) (m)": 1.7418, + "Tp (total) (s)": 11.6131 + }, + { + "Date+Time": "2004-08-11T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 10.7517 + }, + { + "Date+Time": "2004-08-12T00:00:00Z", + "Hs (total) (m)": 0.9148, + "Tp (total) (s)": 8.6688 + }, + { + "Date+Time": "2004-08-13T00:00:00Z", + "Hs (total) (m)": 0.7431, + "Tp (total) (s)": 7.9966 + }, + { + "Date+Time": "2004-08-14T00:00:00Z", + "Hs (total) (m)": 0.8583, + "Tp (total) (s)": 10.4068 + }, + { + "Date+Time": "2004-08-15T00:00:00Z", + "Hs (total) (m)": 1.0399, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "2004-08-16T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 7.6647 + }, + { + "Date+Time": "2004-08-17T00:00:00Z", + "Hs (total) (m)": 0.8065, + "Tp (total) (s)": 6.7949 + }, + { + "Date+Time": "2004-08-18T00:00:00Z", + "Hs (total) (m)": 0.7179, + "Tp (total) (s)": 6.8186 + }, + { + "Date+Time": "2004-08-19T00:00:00Z", + "Hs (total) (m)": 1.0796, + "Tp (total) (s)": 10.4534 + }, + { + "Date+Time": "2004-08-20T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 10.0261 + }, + { + "Date+Time": "2004-08-21T00:00:00Z", + "Hs (total) (m)": 1.0537, + "Tp (total) (s)": 8.9579 + }, + { + "Date+Time": "2004-08-22T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 8.7161 + }, + { + "Date+Time": "2004-08-23T00:00:00Z", + "Hs (total) (m)": 1.3108, + "Tp (total) (s)": 8.6314 + }, + { + "Date+Time": "2004-08-24T00:00:00Z", + "Hs (total) (m)": 0.8957, + "Tp (total) (s)": 8.346 + }, + { + "Date+Time": "2004-08-25T00:00:00Z", + "Hs (total) (m)": 1.2535, + "Tp (total) (s)": 7.8608 + }, + { + "Date+Time": "2004-08-26T00:00:00Z", + "Hs (total) (m)": 1.7441, + "Tp (total) (s)": 11.4086 + }, + { + "Date+Time": "2004-08-27T00:00:00Z", + "Hs (total) (m)": 2.1935, + "Tp (total) (s)": 8.52 + }, + { + "Date+Time": "2004-08-28T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 8.4574 + }, + { + "Date+Time": "2004-08-29T00:00:00Z", + "Hs (total) (m)": 1.9395, + "Tp (total) (s)": 7.2367 + }, + { + "Date+Time": "2004-08-30T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 11.7901 + }, + { + "Date+Time": "2004-08-31T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 9.8544 + }, + { + "Date+Time": "2004-09-01T00:00:00Z", + "Hs (total) (m)": 1.3352, + "Tp (total) (s)": 6.8979 + }, + { + "Date+Time": "2004-09-02T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 12.4577 + }, + { + "Date+Time": "2004-09-03T00:00:00Z", + "Hs (total) (m)": 2.7024, + "Tp (total) (s)": 12.6682 + }, + { + "Date+Time": "2004-09-04T00:00:00Z", + "Hs (total) (m)": 2.3148, + "Tp (total) (s)": 10.3397 + }, + { + "Date+Time": "2004-09-05T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 10.7006 + }, + { + "Date+Time": "2004-09-06T00:00:00Z", + "Hs (total) (m)": 1.2818, + "Tp (total) (s)": 10.7639 + }, + { + "Date+Time": "2004-09-07T00:00:00Z", + "Hs (total) (m)": 0.9743, + "Tp (total) (s)": 10.213 + }, + { + "Date+Time": "2004-09-08T00:00:00Z", + "Hs (total) (m)": 0.7813, + "Tp (total) (s)": 9.1144 + }, + { + "Date+Time": "2004-09-09T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 11.3163 + }, + { + "Date+Time": "2004-09-10T00:00:00Z", + "Hs (total) (m)": 0.9659, + "Tp (total) (s)": 9.9467 + }, + { + "Date+Time": "2004-09-11T00:00:00Z", + "Hs (total) (m)": 2.607, + "Tp (total) (s)": 6.9948 + }, + { + "Date+Time": "2004-09-12T00:00:00Z", + "Hs (total) (m)": 2.7558, + "Tp (total) (s)": 10.2634 + }, + { + "Date+Time": "2004-09-13T00:00:00Z", + "Hs (total) (m)": 3.3677, + "Tp (total) (s)": 10.6143 + }, + { + "Date+Time": "2004-09-14T00:00:00Z", + "Hs (total) (m)": 4.4542, + "Tp (total) (s)": 12.5935 + }, + { + "Date+Time": "2004-09-15T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 11.6741 + }, + { + "Date+Time": "2004-09-16T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 7.0345 + }, + { + "Date+Time": "2004-09-17T00:00:00Z", + "Hs (total) (m)": 3.0183, + "Tp (total) (s)": 11.1652 + }, + { + "Date+Time": "2004-09-18T00:00:00Z", + "Hs (total) (m)": 3.9384, + "Tp (total) (s)": 11.8831 + }, + { + "Date+Time": "2004-09-19T00:00:00Z", + "Hs (total) (m)": 2.6666, + "Tp (total) (s)": 10.5182 + }, + { + "Date+Time": "2004-09-20T00:00:00Z", + "Hs (total) (m)": 3.901, + "Tp (total) (s)": 10.4503 + }, + { + "Date+Time": "2004-09-21T00:00:00Z", + "Hs (total) (m)": 3.5188, + "Tp (total) (s)": 12.801 + }, + { + "Date+Time": "2004-09-22T00:00:00Z", + "Hs (total) (m)": 2.5307, + "Tp (total) (s)": 12.2745 + }, + { + "Date+Time": "2004-09-23T00:00:00Z", + "Hs (total) (m)": 2.3751, + "Tp (total) (s)": 9.8056 + }, + { + "Date+Time": "2004-09-24T00:00:00Z", + "Hs (total) (m)": 1.355, + "Tp (total) (s)": 9.2532 + }, + { + "Date+Time": "2004-09-25T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 10.1199 + }, + { + "Date+Time": "2004-09-26T00:00:00Z", + "Hs (total) (m)": 1.6228, + "Tp (total) (s)": 10.5068 + }, + { + "Date+Time": "2004-09-27T00:00:00Z", + "Hs (total) (m)": 2.8054, + "Tp (total) (s)": 15.1578 + }, + { + "Date+Time": "2004-09-28T00:00:00Z", + "Hs (total) (m)": 2.0707, + "Tp (total) (s)": 11.5703 + }, + { + "Date+Time": "2004-09-29T00:00:00Z", + "Hs (total) (m)": 1.191, + "Tp (total) (s)": 9.5378 + }, + { + "Date+Time": "2004-09-30T00:00:00Z", + "Hs (total) (m)": 1.2612, + "Tp (total) (s)": 7.2016 + }, + { + "Date+Time": "2004-10-01T00:00:00Z", + "Hs (total) (m)": 1.7678, + "Tp (total) (s)": 9.7751 + }, + { + "Date+Time": "2004-10-02T00:00:00Z", + "Hs (total) (m)": 5.0121, + "Tp (total) (s)": 14.2357 + }, + { + "Date+Time": "2004-10-03T00:00:00Z", + "Hs (total) (m)": 3.1739, + "Tp (total) (s)": 12.45 + }, + { + "Date+Time": "2004-10-04T00:00:00Z", + "Hs (total) (m)": 2.0569, + "Tp (total) (s)": 11.5535 + }, + { + "Date+Time": "2004-10-05T00:00:00Z", + "Hs (total) (m)": 3.6012, + "Tp (total) (s)": 10.4854 + }, + { + "Date+Time": "2004-10-06T00:00:00Z", + "Hs (total) (m)": 2.1828, + "Tp (total) (s)": 11.4856 + }, + { + "Date+Time": "2004-10-07T00:00:00Z", + "Hs (total) (m)": 1.7335, + "Tp (total) (s)": 14.3933 + }, + { + "Date+Time": "2004-10-08T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 12.8986 + }, + { + "Date+Time": "2004-10-09T00:00:00Z", + "Hs (total) (m)": 0.8545, + "Tp (total) (s)": 12.0067 + }, + { + "Date+Time": "2004-10-10T00:00:00Z", + "Hs (total) (m)": 0.737, + "Tp (total) (s)": 2.7406 + }, + { + "Date+Time": "2004-10-11T00:00:00Z", + "Hs (total) (m)": 0.5989, + "Tp (total) (s)": 3.1106 + }, + { + "Date+Time": "2004-10-12T00:00:00Z", + "Hs (total) (m)": 0.5486, + "Tp (total) (s)": 9.1197 + }, + { + "Date+Time": "2004-10-13T00:00:00Z", + "Hs (total) (m)": 1.3085, + "Tp (total) (s)": 6.1853 + }, + { + "Date+Time": "2004-10-14T00:00:00Z", + "Hs (total) (m)": 1.9738, + "Tp (total) (s)": 12.1426 + }, + { + "Date+Time": "2004-10-15T00:00:00Z", + "Hs (total) (m)": 1.8639, + "Tp (total) (s)": 10.7387 + }, + { + "Date+Time": "2004-10-16T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 10.7204 + }, + { + "Date+Time": "2004-10-17T00:00:00Z", + "Hs (total) (m)": 0.8805, + "Tp (total) (s)": 9.4867 + }, + { + "Date+Time": "2004-10-18T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 8.2789 + }, + { + "Date+Time": "2004-10-19T00:00:00Z", + "Hs (total) (m)": 1.3062, + "Tp (total) (s)": 6.0396 + }, + { + "Date+Time": "2004-10-20T00:00:00Z", + "Hs (total) (m)": 1.3108, + "Tp (total) (s)": 12.8437 + }, + { + "Date+Time": "2004-10-21T00:00:00Z", + "Hs (total) (m)": 1.101, + "Tp (total) (s)": 12.2921 + }, + { + "Date+Time": "2004-10-22T00:00:00Z", + "Hs (total) (m)": 2.3385, + "Tp (total) (s)": 10.2939 + }, + { + "Date+Time": "2004-10-23T00:00:00Z", + "Hs (total) (m)": 0.9301, + "Tp (total) (s)": 10.081 + }, + { + "Date+Time": "2004-10-24T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 10.799 + }, + { + "Date+Time": "2004-10-25T00:00:00Z", + "Hs (total) (m)": 1.5435, + "Tp (total) (s)": 7.992 + }, + { + "Date+Time": "2004-10-26T00:00:00Z", + "Hs (total) (m)": 1.194, + "Tp (total) (s)": 9.1556 + }, + { + "Date+Time": "2004-10-27T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 6.5249 + }, + { + "Date+Time": "2004-10-28T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 3.4524 + }, + { + "Date+Time": "2004-10-29T00:00:00Z", + "Hs (total) (m)": 0.9827, + "Tp (total) (s)": 5.3522 + }, + { + "Date+Time": "2004-10-30T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 3.1983 + }, + { + "Date+Time": "2004-10-31T00:00:00Z", + "Hs (total) (m)": 0.7797, + "Tp (total) (s)": 7.8188 + }, + { + "Date+Time": "2004-11-01T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 9.4989 + }, + { + "Date+Time": "2004-11-02T00:00:00Z", + "Hs (total) (m)": 1.9616, + "Tp (total) (s)": 14.9121 + }, + { + "Date+Time": "2004-11-03T00:00:00Z", + "Hs (total) (m)": 2.0333, + "Tp (total) (s)": 13.0299 + }, + { + "Date+Time": "2004-11-04T00:00:00Z", + "Hs (total) (m)": 1.6854, + "Tp (total) (s)": 9.8895 + }, + { + "Date+Time": "2004-11-05T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 11.462 + }, + { + "Date+Time": "2004-11-06T00:00:00Z", + "Hs (total) (m)": 1.442, + "Tp (total) (s)": 10.6998 + }, + { + "Date+Time": "2004-11-07T00:00:00Z", + "Hs (total) (m)": 1.7182, + "Tp (total) (s)": 12.8483 + }, + { + "Date+Time": "2004-11-08T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 14.3429 + }, + { + "Date+Time": "2004-11-09T00:00:00Z", + "Hs (total) (m)": 1.5595, + "Tp (total) (s)": 12.2921 + }, + { + "Date+Time": "2004-11-10T00:00:00Z", + "Hs (total) (m)": 2.4018, + "Tp (total) (s)": 12.8918 + }, + { + "Date+Time": "2004-11-11T00:00:00Z", + "Hs (total) (m)": 1.7678, + "Tp (total) (s)": 12.7918 + }, + { + "Date+Time": "2004-11-12T00:00:00Z", + "Hs (total) (m)": 1.5893, + "Tp (total) (s)": 11.433 + }, + { + "Date+Time": "2004-11-13T00:00:00Z", + "Hs (total) (m)": 1.5526, + "Tp (total) (s)": 11.597 + }, + { + "Date+Time": "2004-11-14T00:00:00Z", + "Hs (total) (m)": 1.1261, + "Tp (total) (s)": 11.6428 + }, + { + "Date+Time": "2004-11-15T00:00:00Z", + "Hs (total) (m)": 1.7991, + "Tp (total) (s)": 8.1538 + }, + { + "Date+Time": "2004-11-16T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 12.7132 + }, + { + "Date+Time": "2004-11-17T00:00:00Z", + "Hs (total) (m)": 2.3217, + "Tp (total) (s)": 8.6955 + }, + { + "Date+Time": "2004-11-18T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 8.6779 + }, + { + "Date+Time": "2004-11-19T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 12.3661 + }, + { + "Date+Time": "2004-11-20T00:00:00Z", + "Hs (total) (m)": 1.7281, + "Tp (total) (s)": 10.3313 + }, + { + "Date+Time": "2004-11-21T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 12.7758 + }, + { + "Date+Time": "2004-11-22T00:00:00Z", + "Hs (total) (m)": 2.4964, + "Tp (total) (s)": 10.6899 + }, + { + "Date+Time": "2004-11-23T00:00:00Z", + "Hs (total) (m)": 1.9768, + "Tp (total) (s)": 11.8336 + }, + { + "Date+Time": "2004-11-24T00:00:00Z", + "Hs (total) (m)": 2.1393, + "Tp (total) (s)": 10.1894 + }, + { + "Date+Time": "2004-11-25T00:00:00Z", + "Hs (total) (m)": 2.0455, + "Tp (total) (s)": 10.2199 + }, + { + "Date+Time": "2004-11-26T00:00:00Z", + "Hs (total) (m)": 1.3443, + "Tp (total) (s)": 9.4089 + }, + { + "Date+Time": "2004-11-27T00:00:00Z", + "Hs (total) (m)": 1.1856, + "Tp (total) (s)": 10.4823 + }, + { + "Date+Time": "2004-11-28T00:00:00Z", + "Hs (total) (m)": 1.2787, + "Tp (total) (s)": 10.2931 + }, + { + "Date+Time": "2004-11-29T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 8.4086 + }, + { + "Date+Time": "2004-11-30T00:00:00Z", + "Hs (total) (m)": 2.3583, + "Tp (total) (s)": 7.0696 + }, + { + "Date+Time": "2004-12-01T00:00:00Z", + "Hs (total) (m)": 2.2477, + "Tp (total) (s)": 14.404 + }, + { + "Date+Time": "2004-12-02T00:00:00Z", + "Hs (total) (m)": 1.8532, + "Tp (total) (s)": 13.5907 + }, + { + "Date+Time": "2004-12-03T00:00:00Z", + "Hs (total) (m)": 1.3894, + "Tp (total) (s)": 10.5342 + }, + { + "Date+Time": "2004-12-04T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 10.4755 + }, + { + "Date+Time": "2004-12-05T00:00:00Z", + "Hs (total) (m)": 2.5643, + "Tp (total) (s)": 12.2471 + }, + { + "Date+Time": "2004-12-06T00:00:00Z", + "Hs (total) (m)": 3.2159, + "Tp (total) (s)": 15.5713 + }, + { + "Date+Time": "2004-12-07T00:00:00Z", + "Hs (total) (m)": 3.0908, + "Tp (total) (s)": 15.5049 + }, + { + "Date+Time": "2004-12-08T00:00:00Z", + "Hs (total) (m)": 2.9221, + "Tp (total) (s)": 13.1504 + }, + { + "Date+Time": "2004-12-09T00:00:00Z", + "Hs (total) (m)": 3.3151, + "Tp (total) (s)": 16.4663 + }, + { + "Date+Time": "2004-12-10T00:00:00Z", + "Hs (total) (m)": 3.5943, + "Tp (total) (s)": 14.4017 + }, + { + "Date+Time": "2004-12-11T00:00:00Z", + "Hs (total) (m)": 1.7846, + "Tp (total) (s)": 12.8246 + }, + { + "Date+Time": "2004-12-12T00:00:00Z", + "Hs (total) (m)": 1.7495, + "Tp (total) (s)": 11.6802 + }, + { + "Date+Time": "2004-12-13T00:00:00Z", + "Hs (total) (m)": 1.8967, + "Tp (total) (s)": 11.5978 + }, + { + "Date+Time": "2004-12-14T00:00:00Z", + "Hs (total) (m)": 2.7856, + "Tp (total) (s)": 7.2161 + }, + { + "Date+Time": "2004-12-15T00:00:00Z", + "Hs (total) (m)": 3.3639, + "Tp (total) (s)": 11.3529 + }, + { + "Date+Time": "2004-12-16T00:00:00Z", + "Hs (total) (m)": 3.3059, + "Tp (total) (s)": 8.3995 + }, + { + "Date+Time": "2004-12-17T00:00:00Z", + "Hs (total) (m)": 4.4359, + "Tp (total) (s)": 15.2249 + }, + { + "Date+Time": "2004-12-18T00:00:00Z", + "Hs (total) (m)": 3.061, + "Tp (total) (s)": 12.7743 + }, + { + "Date+Time": "2004-12-19T00:00:00Z", + "Hs (total) (m)": 1.8288, + "Tp (total) (s)": 11.8358 + }, + { + "Date+Time": "2004-12-20T00:00:00Z", + "Hs (total) (m)": 2.356, + "Tp (total) (s)": 12.74 + }, + { + "Date+Time": "2004-12-21T00:00:00Z", + "Hs (total) (m)": 2.3644, + "Tp (total) (s)": 11.2384 + }, + { + "Date+Time": "2004-12-22T00:00:00Z", + "Hs (total) (m)": 3.0099, + "Tp (total) (s)": 10.6319 + }, + { + "Date+Time": "2004-12-23T00:00:00Z", + "Hs (total) (m)": 3.5165, + "Tp (total) (s)": 13.5411 + }, + { + "Date+Time": "2004-12-24T00:00:00Z", + "Hs (total) (m)": 4.0735, + "Tp (total) (s)": 13.7295 + }, + { + "Date+Time": "2004-12-25T00:00:00Z", + "Hs (total) (m)": 3.3944, + "Tp (total) (s)": 12.8689 + }, + { + "Date+Time": "2004-12-26T00:00:00Z", + "Hs (total) (m)": 2.9794, + "Tp (total) (s)": 13.908 + }, + { + "Date+Time": "2004-12-27T00:00:00Z", + "Hs (total) (m)": 1.6511, + "Tp (total) (s)": 12.6606 + }, + { + "Date+Time": "2004-12-28T00:00:00Z", + "Hs (total) (m)": 3.2281, + "Tp (total) (s)": 11.729 + }, + { + "Date+Time": "2004-12-29T00:00:00Z", + "Hs (total) (m)": 3.341, + "Tp (total) (s)": 15.405 + }, + { + "Date+Time": "2004-12-30T00:00:00Z", + "Hs (total) (m)": 2.9534, + "Tp (total) (s)": 12.6644 + }, + { + "Date+Time": "2004-12-31T00:00:00Z", + "Hs (total) (m)": 3.2838, + "Tp (total) (s)": 14.4002 + }, + { + "Date+Time": "2005-01-01T00:00:00Z", + "Hs (total) (m)": 2.81, + "Tp (total) (s)": 12.7598 + }, + { + "Date+Time": "2005-01-02T00:00:00Z", + "Hs (total) (m)": 4.4351, + "Tp (total) (s)": 12.9643 + }, + { + "Date+Time": "2005-01-03T00:00:00Z", + "Hs (total) (m)": 3.431, + "Tp (total) (s)": 14.0629 + }, + { + "Date+Time": "2005-01-04T00:00:00Z", + "Hs (total) (m)": 4.7021, + "Tp (total) (s)": 10.9027 + }, + { + "Date+Time": "2005-01-05T00:00:00Z", + "Hs (total) (m)": 4.017, + "Tp (total) (s)": 13.3709 + }, + { + "Date+Time": "2005-01-06T00:00:00Z", + "Hs (total) (m)": 3.6851, + "Tp (total) (s)": 14.6359 + }, + { + "Date+Time": "2005-01-07T00:00:00Z", + "Hs (total) (m)": 5.1805, + "Tp (total) (s)": 12.55 + }, + { + "Date+Time": "2005-01-08T00:00:00Z", + "Hs (total) (m)": 3.4486, + "Tp (total) (s)": 12.3264 + }, + { + "Date+Time": "2005-01-09T00:00:00Z", + "Hs (total) (m)": 4.6205, + "Tp (total) (s)": 12.8979 + }, + { + "Date+Time": "2005-01-10T00:00:00Z", + "Hs (total) (m)": 5.6661, + "Tp (total) (s)": 11.4236 + }, + { + "Date+Time": "2005-01-11T00:00:00Z", + "Hs (total) (m)": 3.3326, + "Tp (total) (s)": 12.2517 + }, + { + "Date+Time": "2005-01-12T00:00:00Z", + "Hs (total) (m)": 6.521, + "Tp (total) (s)": 14.0858 + }, + { + "Date+Time": "2005-01-13T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 13.4655 + }, + { + "Date+Time": "2005-01-14T00:00:00Z", + "Hs (total) (m)": 2.8047, + "Tp (total) (s)": 10.9684 + }, + { + "Date+Time": "2005-01-15T00:00:00Z", + "Hs (total) (m)": 3.2487, + "Tp (total) (s)": 15.6583 + }, + { + "Date+Time": "2005-01-16T00:00:00Z", + "Hs (total) (m)": 2.6032, + "Tp (total) (s)": 14.2186 + }, + { + "Date+Time": "2005-01-17T00:00:00Z", + "Hs (total) (m)": 2.7413, + "Tp (total) (s)": 10.1711 + }, + { + "Date+Time": "2005-01-18T00:00:00Z", + "Hs (total) (m)": 5.1373, + "Tp (total) (s)": 16.8117 + }, + { + "Date+Time": "2005-01-19T00:00:00Z", + "Hs (total) (m)": 4.9443, + "Tp (total) (s)": 17.3225 + }, + { + "Date+Time": "2005-01-20T00:00:00Z", + "Hs (total) (m)": 3.779, + "Tp (total) (s)": 12.701 + }, + { + "Date+Time": "2005-01-21T00:00:00Z", + "Hs (total) (m)": 3.1045, + "Tp (total) (s)": 13.7379 + }, + { + "Date+Time": "2005-01-22T00:00:00Z", + "Hs (total) (m)": 2.2835, + "Tp (total) (s)": 12.7773 + }, + { + "Date+Time": "2005-01-23T00:00:00Z", + "Hs (total) (m)": 1.001, + "Tp (total) (s)": 11.3201 + }, + { + "Date+Time": "2005-01-24T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 10.4541 + }, + { + "Date+Time": "2005-01-25T00:00:00Z", + "Hs (total) (m)": 0.531, + "Tp (total) (s)": 10.165 + }, + { + "Date+Time": "2005-01-26T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 5.9816 + }, + { + "Date+Time": "2005-01-27T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 7.5732 + }, + { + "Date+Time": "2005-01-28T00:00:00Z", + "Hs (total) (m)": 0.7424, + "Tp (total) (s)": 7.5335 + }, + { + "Date+Time": "2005-01-29T00:00:00Z", + "Hs (total) (m)": 1.017, + "Tp (total) (s)": 7.8066 + }, + { + "Date+Time": "2005-01-30T00:00:00Z", + "Hs (total) (m)": 0.8431, + "Tp (total) (s)": 12.7041 + }, + { + "Date+Time": "2005-01-31T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 11.6703 + }, + { + "Date+Time": "2005-02-01T00:00:00Z", + "Hs (total) (m)": 1.0323, + "Tp (total) (s)": 10.8226 + }, + { + "Date+Time": "2005-02-02T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 8.623 + }, + { + "Date+Time": "2005-02-03T00:00:00Z", + "Hs (total) (m)": 1.1971, + "Tp (total) (s)": 14.0049 + }, + { + "Date+Time": "2005-02-04T00:00:00Z", + "Hs (total) (m)": 2.1958, + "Tp (total) (s)": 11.9228 + }, + { + "Date+Time": "2005-02-05T00:00:00Z", + "Hs (total) (m)": 1.9807, + "Tp (total) (s)": 12.5706 + }, + { + "Date+Time": "2005-02-06T00:00:00Z", + "Hs (total) (m)": 1.5236, + "Tp (total) (s)": 11.7031 + }, + { + "Date+Time": "2005-02-07T00:00:00Z", + "Hs (total) (m)": 0.8515, + "Tp (total) (s)": 10.6258 + }, + { + "Date+Time": "2005-02-08T00:00:00Z", + "Hs (total) (m)": 2.0577, + "Tp (total) (s)": 9.0571 + }, + { + "Date+Time": "2005-02-09T00:00:00Z", + "Hs (total) (m)": 3.0824, + "Tp (total) (s)": 15.3348 + }, + { + "Date+Time": "2005-02-10T00:00:00Z", + "Hs (total) (m)": 3.6767, + "Tp (total) (s)": 14.9998 + }, + { + "Date+Time": "2005-02-11T00:00:00Z", + "Hs (total) (m)": 2.5277, + "Tp (total) (s)": 15.1975 + }, + { + "Date+Time": "2005-02-12T00:00:00Z", + "Hs (total) (m)": 3.6409, + "Tp (total) (s)": 10.3687 + }, + { + "Date+Time": "2005-02-13T00:00:00Z", + "Hs (total) (m)": 2.813, + "Tp (total) (s)": 10.9378 + }, + { + "Date+Time": "2005-02-14T00:00:00Z", + "Hs (total) (m)": 1.9181, + "Tp (total) (s)": 12.7667 + }, + { + "Date+Time": "2005-02-15T00:00:00Z", + "Hs (total) (m)": 1.0872, + "Tp (total) (s)": 11.0752 + }, + { + "Date+Time": "2005-02-16T00:00:00Z", + "Hs (total) (m)": 1.0926, + "Tp (total) (s)": 12.6148 + }, + { + "Date+Time": "2005-02-17T00:00:00Z", + "Hs (total) (m)": 1.5275, + "Tp (total) (s)": 12.9627 + }, + { + "Date+Time": "2005-02-18T00:00:00Z", + "Hs (total) (m)": 1.5259, + "Tp (total) (s)": 13.6235 + }, + { + "Date+Time": "2005-02-19T00:00:00Z", + "Hs (total) (m)": 1.4496, + "Tp (total) (s)": 12.1242 + }, + { + "Date+Time": "2005-02-20T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 11.4368 + }, + { + "Date+Time": "2005-02-21T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 10.2878 + }, + { + "Date+Time": "2005-02-22T00:00:00Z", + "Hs (total) (m)": 0.7683, + "Tp (total) (s)": 7.561 + }, + { + "Date+Time": "2005-02-23T00:00:00Z", + "Hs (total) (m)": 0.6005, + "Tp (total) (s)": 3.0351 + }, + { + "Date+Time": "2005-02-24T00:00:00Z", + "Hs (total) (m)": 0.5699, + "Tp (total) (s)": 2.4941 + }, + { + "Date+Time": "2005-02-25T00:00:00Z", + "Hs (total) (m)": 0.5936, + "Tp (total) (s)": 3.0229 + }, + { + "Date+Time": "2005-02-26T00:00:00Z", + "Hs (total) (m)": 0.4997, + "Tp (total) (s)": 2.5895 + }, + { + "Date+Time": "2005-02-27T00:00:00Z", + "Hs (total) (m)": 0.4906, + "Tp (total) (s)": 15.3394 + }, + { + "Date+Time": "2005-02-28T00:00:00Z", + "Hs (total) (m)": 1.0109, + "Tp (total) (s)": 13.4945 + }, + { + "Date+Time": "2005-03-01T00:00:00Z", + "Hs (total) (m)": 1.2429, + "Tp (total) (s)": 12.6751 + }, + { + "Date+Time": "2005-03-02T00:00:00Z", + "Hs (total) (m)": 0.8835, + "Tp (total) (s)": 8.227 + }, + { + "Date+Time": "2005-03-03T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 10.2786 + }, + { + "Date+Time": "2005-03-04T00:00:00Z", + "Hs (total) (m)": 1.0147, + "Tp (total) (s)": 12.1967 + }, + { + "Date+Time": "2005-03-05T00:00:00Z", + "Hs (total) (m)": 1.3421, + "Tp (total) (s)": 10.5342 + }, + { + "Date+Time": "2005-03-06T00:00:00Z", + "Hs (total) (m)": 1.0399, + "Tp (total) (s)": 10.136 + }, + { + "Date+Time": "2005-03-07T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 14.5833 + }, + { + "Date+Time": "2005-03-08T00:00:00Z", + "Hs (total) (m)": 1.2368, + "Tp (total) (s)": 13.0451 + }, + { + "Date+Time": "2005-03-09T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 12.3516 + }, + { + "Date+Time": "2005-03-10T00:00:00Z", + "Hs (total) (m)": 0.8515, + "Tp (total) (s)": 11.4315 + }, + { + "Date+Time": "2005-03-11T00:00:00Z", + "Hs (total) (m)": 0.8728, + "Tp (total) (s)": 9.8407 + }, + { + "Date+Time": "2005-03-12T00:00:00Z", + "Hs (total) (m)": 1.2246, + "Tp (total) (s)": 10.3877 + }, + { + "Date+Time": "2005-03-13T00:00:00Z", + "Hs (total) (m)": 0.8538, + "Tp (total) (s)": 12.6698 + }, + { + "Date+Time": "2005-03-14T00:00:00Z", + "Hs (total) (m)": 0.9201, + "Tp (total) (s)": 13.6845 + }, + { + "Date+Time": "2005-03-15T00:00:00Z", + "Hs (total) (m)": 3.2357, + "Tp (total) (s)": 15.347 + }, + { + "Date+Time": "2005-03-16T00:00:00Z", + "Hs (total) (m)": 3.6256, + "Tp (total) (s)": 11.4437 + }, + { + "Date+Time": "2005-03-17T00:00:00Z", + "Hs (total) (m)": 3.901, + "Tp (total) (s)": 11.5558 + }, + { + "Date+Time": "2005-03-18T00:00:00Z", + "Hs (total) (m)": 3.2556, + "Tp (total) (s)": 13.2298 + }, + { + "Date+Time": "2005-03-19T00:00:00Z", + "Hs (total) (m)": 1.9517, + "Tp (total) (s)": 11.9106 + }, + { + "Date+Time": "2005-03-20T00:00:00Z", + "Hs (total) (m)": 1.8624, + "Tp (total) (s)": 11.404 + }, + { + "Date+Time": "2005-03-21T00:00:00Z", + "Hs (total) (m)": 1.9753, + "Tp (total) (s)": 11.5482 + }, + { + "Date+Time": "2005-03-22T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 11.8305 + }, + { + "Date+Time": "2005-03-23T00:00:00Z", + "Hs (total) (m)": 2.4323, + "Tp (total) (s)": 10.5335 + }, + { + "Date+Time": "2005-03-24T00:00:00Z", + "Hs (total) (m)": 2.3309, + "Tp (total) (s)": 11.4376 + }, + { + "Date+Time": "2005-03-25T00:00:00Z", + "Hs (total) (m)": 2.1455, + "Tp (total) (s)": 12.8391 + }, + { + "Date+Time": "2005-03-26T00:00:00Z", + "Hs (total) (m)": 1.925, + "Tp (total) (s)": 11.1896 + }, + { + "Date+Time": "2005-03-27T00:00:00Z", + "Hs (total) (m)": 1.6655, + "Tp (total) (s)": 12.6072 + }, + { + "Date+Time": "2005-03-28T00:00:00Z", + "Hs (total) (m)": 1.236, + "Tp (total) (s)": 10.3847 + }, + { + "Date+Time": "2005-03-29T00:00:00Z", + "Hs (total) (m)": 0.9865, + "Tp (total) (s)": 9.3974 + }, + { + "Date+Time": "2005-03-30T00:00:00Z", + "Hs (total) (m)": 0.8538, + "Tp (total) (s)": 8.6932 + }, + { + "Date+Time": "2005-03-31T00:00:00Z", + "Hs (total) (m)": 0.9697, + "Tp (total) (s)": 11.3796 + }, + { + "Date+Time": "2005-04-01T00:00:00Z", + "Hs (total) (m)": 1.8677, + "Tp (total) (s)": 7.8173 + }, + { + "Date+Time": "2005-04-02T00:00:00Z", + "Hs (total) (m)": 1.1635, + "Tp (total) (s)": 9.2753 + }, + { + "Date+Time": "2005-04-03T00:00:00Z", + "Hs (total) (m)": 1.1261, + "Tp (total) (s)": 12.4958 + }, + { + "Date+Time": "2005-04-04T00:00:00Z", + "Hs (total) (m)": 1.9715, + "Tp (total) (s)": 11.642 + }, + { + "Date+Time": "2005-04-05T00:00:00Z", + "Hs (total) (m)": 2.8527, + "Tp (total) (s)": 12.3417 + }, + { + "Date+Time": "2005-04-06T00:00:00Z", + "Hs (total) (m)": 1.9982, + "Tp (total) (s)": 9.5614 + }, + { + "Date+Time": "2005-04-07T00:00:00Z", + "Hs (total) (m)": 3.3433, + "Tp (total) (s)": 12.2509 + }, + { + "Date+Time": "2005-04-08T00:00:00Z", + "Hs (total) (m)": 1.7769, + "Tp (total) (s)": 12.5057 + }, + { + "Date+Time": "2005-04-09T00:00:00Z", + "Hs (total) (m)": 1.046, + "Tp (total) (s)": 11.713 + }, + { + "Date+Time": "2005-04-10T00:00:00Z", + "Hs (total) (m)": 1.4962, + "Tp (total) (s)": 8.6093 + }, + { + "Date+Time": "2005-04-11T00:00:00Z", + "Hs (total) (m)": 1.4847, + "Tp (total) (s)": 9.6385 + }, + { + "Date+Time": "2005-04-12T00:00:00Z", + "Hs (total) (m)": 2.2164, + "Tp (total) (s)": 11.6016 + }, + { + "Date+Time": "2005-04-13T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 10.3465 + }, + { + "Date+Time": "2005-04-14T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 10.4015 + }, + { + "Date+Time": "2005-04-15T00:00:00Z", + "Hs (total) (m)": 1.3138, + "Tp (total) (s)": 9.2296 + }, + { + "Date+Time": "2005-04-16T00:00:00Z", + "Hs (total) (m)": 1.0224, + "Tp (total) (s)": 8.4849 + }, + { + "Date+Time": "2005-04-17T00:00:00Z", + "Hs (total) (m)": 2.1043, + "Tp (total) (s)": 14.0919 + }, + { + "Date+Time": "2005-04-18T00:00:00Z", + "Hs (total) (m)": 2.5002, + "Tp (total) (s)": 13.1901 + }, + { + "Date+Time": "2005-04-19T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 11.916 + }, + { + "Date+Time": "2005-04-20T00:00:00Z", + "Hs (total) (m)": 1.6053, + "Tp (total) (s)": 11.4116 + }, + { + "Date+Time": "2005-04-21T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 9.6156 + }, + { + "Date+Time": "2005-04-22T00:00:00Z", + "Hs (total) (m)": 1.2078, + "Tp (total) (s)": 10.39 + }, + { + "Date+Time": "2005-04-23T00:00:00Z", + "Hs (total) (m)": 2.2797, + "Tp (total) (s)": 15.1318 + }, + { + "Date+Time": "2005-04-24T00:00:00Z", + "Hs (total) (m)": 1.6129, + "Tp (total) (s)": 12.2402 + }, + { + "Date+Time": "2005-04-25T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 10.4663 + }, + { + "Date+Time": "2005-04-26T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 9.5882 + }, + { + "Date+Time": "2005-04-27T00:00:00Z", + "Hs (total) (m)": 2.0371, + "Tp (total) (s)": 10.2824 + }, + { + "Date+Time": "2005-04-28T00:00:00Z", + "Hs (total) (m)": 1.8944, + "Tp (total) (s)": 10.1772 + }, + { + "Date+Time": "2005-04-29T00:00:00Z", + "Hs (total) (m)": 2.2362, + "Tp (total) (s)": 10.2496 + }, + { + "Date+Time": "2005-04-30T00:00:00Z", + "Hs (total) (m)": 1.471, + "Tp (total) (s)": 10.1886 + }, + { + "Date+Time": "2005-05-01T00:00:00Z", + "Hs (total) (m)": 0.9491, + "Tp (total) (s)": 9.904 + }, + { + "Date+Time": "2005-05-02T00:00:00Z", + "Hs (total) (m)": 2.1897, + "Tp (total) (s)": 8.5582 + }, + { + "Date+Time": "2005-05-03T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 8.5215 + }, + { + "Date+Time": "2005-05-04T00:00:00Z", + "Hs (total) (m)": 1.1597, + "Tp (total) (s)": 7.6846 + }, + { + "Date+Time": "2005-05-05T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 9.6561 + }, + { + "Date+Time": "2005-05-06T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 8.8977 + }, + { + "Date+Time": "2005-05-07T00:00:00Z", + "Hs (total) (m)": 1.6434, + "Tp (total) (s)": 8.668 + }, + { + "Date+Time": "2005-05-08T00:00:00Z", + "Hs (total) (m)": 1.2024, + "Tp (total) (s)": 9.2219 + }, + { + "Date+Time": "2005-05-09T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 8.5063 + }, + { + "Date+Time": "2005-05-10T00:00:00Z", + "Hs (total) (m)": 0.692, + "Tp (total) (s)": 8.4895 + }, + { + "Date+Time": "2005-05-11T00:00:00Z", + "Hs (total) (m)": 0.618, + "Tp (total) (s)": 10.3938 + }, + { + "Date+Time": "2005-05-12T00:00:00Z", + "Hs (total) (m)": 0.6676, + "Tp (total) (s)": 9.608 + }, + { + "Date+Time": "2005-05-13T00:00:00Z", + "Hs (total) (m)": 0.6531, + "Tp (total) (s)": 8.7916 + }, + { + "Date+Time": "2005-05-14T00:00:00Z", + "Hs (total) (m)": 0.6737, + "Tp (total) (s)": 2.7612 + }, + { + "Date+Time": "2005-05-15T00:00:00Z", + "Hs (total) (m)": 0.6806, + "Tp (total) (s)": 3.0862 + }, + { + "Date+Time": "2005-05-16T00:00:00Z", + "Hs (total) (m)": 0.5516, + "Tp (total) (s)": 3.9743 + }, + { + "Date+Time": "2005-05-17T00:00:00Z", + "Hs (total) (m)": 0.6088, + "Tp (total) (s)": 2.7261 + }, + { + "Date+Time": "2005-05-18T00:00:00Z", + "Hs (total) (m)": 0.547, + "Tp (total) (s)": 12.2662 + }, + { + "Date+Time": "2005-05-19T00:00:00Z", + "Hs (total) (m)": 1.4534, + "Tp (total) (s)": 5.8405 + }, + { + "Date+Time": "2005-05-20T00:00:00Z", + "Hs (total) (m)": 2.2248, + "Tp (total) (s)": 11.5032 + }, + { + "Date+Time": "2005-05-21T00:00:00Z", + "Hs (total) (m)": 2.002, + "Tp (total) (s)": 9.463 + }, + { + "Date+Time": "2005-05-22T00:00:00Z", + "Hs (total) (m)": 1.487, + "Tp (total) (s)": 9.666 + }, + { + "Date+Time": "2005-05-23T00:00:00Z", + "Hs (total) (m)": 2.9603, + "Tp (total) (s)": 9.4829 + }, + { + "Date+Time": "2005-05-24T00:00:00Z", + "Hs (total) (m)": 1.062, + "Tp (total) (s)": 8.5963 + }, + { + "Date+Time": "2005-05-25T00:00:00Z", + "Hs (total) (m)": 1.6106, + "Tp (total) (s)": 10.3053 + }, + { + "Date+Time": "2005-05-26T00:00:00Z", + "Hs (total) (m)": 1.8509, + "Tp (total) (s)": 8.9099 + }, + { + "Date+Time": "2005-05-27T00:00:00Z", + "Hs (total) (m)": 1.4832, + "Tp (total) (s)": 9.3379 + }, + { + "Date+Time": "2005-05-28T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 2.9908 + }, + { + "Date+Time": "2005-05-29T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 10.3771 + }, + { + "Date+Time": "2005-05-30T00:00:00Z", + "Hs (total) (m)": 0.6256, + "Tp (total) (s)": 9.5607 + }, + { + "Date+Time": "2005-05-31T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 8.9831 + }, + { + "Date+Time": "2005-06-01T00:00:00Z", + "Hs (total) (m)": 1.1223, + "Tp (total) (s)": 5.1286 + }, + { + "Date+Time": "2005-06-02T00:00:00Z", + "Hs (total) (m)": 1.9898, + "Tp (total) (s)": 8.4063 + }, + { + "Date+Time": "2005-06-03T00:00:00Z", + "Hs (total) (m)": 2.0768, + "Tp (total) (s)": 9.0854 + }, + { + "Date+Time": "2005-06-04T00:00:00Z", + "Hs (total) (m)": 2.2752, + "Tp (total) (s)": 9.4584 + }, + { + "Date+Time": "2005-06-05T00:00:00Z", + "Hs (total) (m)": 1.5534, + "Tp (total) (s)": 8.6894 + }, + { + "Date+Time": "2005-06-06T00:00:00Z", + "Hs (total) (m)": 1.0063, + "Tp (total) (s)": 7.68 + }, + { + "Date+Time": "2005-06-07T00:00:00Z", + "Hs (total) (m)": 1.178, + "Tp (total) (s)": 10.4785 + }, + { + "Date+Time": "2005-06-08T00:00:00Z", + "Hs (total) (m)": 1.1521, + "Tp (total) (s)": 9.415 + }, + { + "Date+Time": "2005-06-09T00:00:00Z", + "Hs (total) (m)": 0.8057, + "Tp (total) (s)": 10.7234 + }, + { + "Date+Time": "2005-06-10T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 10.5525 + }, + { + "Date+Time": "2005-06-11T00:00:00Z", + "Hs (total) (m)": 0.6684, + "Tp (total) (s)": 8.6314 + }, + { + "Date+Time": "2005-06-12T00:00:00Z", + "Hs (total) (m)": 0.5539, + "Tp (total) (s)": 11.568 + }, + { + "Date+Time": "2005-06-13T00:00:00Z", + "Hs (total) (m)": 0.6798, + "Tp (total) (s)": 11.1393 + }, + { + "Date+Time": "2005-06-14T00:00:00Z", + "Hs (total) (m)": 0.927, + "Tp (total) (s)": 9.7308 + }, + { + "Date+Time": "2005-06-15T00:00:00Z", + "Hs (total) (m)": 0.9445, + "Tp (total) (s)": 8.8023 + }, + { + "Date+Time": "2005-06-16T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 8.7016 + }, + { + "Date+Time": "2005-06-17T00:00:00Z", + "Hs (total) (m)": 2.0501, + "Tp (total) (s)": 9.2135 + }, + { + "Date+Time": "2005-06-18T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 10.3053 + }, + { + "Date+Time": "2005-06-19T00:00:00Z", + "Hs (total) (m)": 1.5725, + "Tp (total) (s)": 10.2886 + }, + { + "Date+Time": "2005-06-20T00:00:00Z", + "Hs (total) (m)": 1.7998, + "Tp (total) (s)": 10.1169 + }, + { + "Date+Time": "2005-06-21T00:00:00Z", + "Hs (total) (m)": 2.0966, + "Tp (total) (s)": 6.8499 + }, + { + "Date+Time": "2005-06-22T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 7.1596 + }, + { + "Date+Time": "2005-06-23T00:00:00Z", + "Hs (total) (m)": 2.4232, + "Tp (total) (s)": 9.5889 + }, + { + "Date+Time": "2005-06-24T00:00:00Z", + "Hs (total) (m)": 1.5458, + "Tp (total) (s)": 9.6873 + }, + { + "Date+Time": "2005-06-25T00:00:00Z", + "Hs (total) (m)": 0.7729, + "Tp (total) (s)": 8.4834 + }, + { + "Date+Time": "2005-06-26T00:00:00Z", + "Hs (total) (m)": 0.6584, + "Tp (total) (s)": 6.5752 + }, + { + "Date+Time": "2005-06-27T00:00:00Z", + "Hs (total) (m)": 0.6333, + "Tp (total) (s)": 8.0363 + }, + { + "Date+Time": "2005-06-28T00:00:00Z", + "Hs (total) (m)": 0.7057, + "Tp (total) (s)": 8.5849 + }, + { + "Date+Time": "2005-06-29T00:00:00Z", + "Hs (total) (m)": 0.7149, + "Tp (total) (s)": 8.5437 + }, + { + "Date+Time": "2005-06-30T00:00:00Z", + "Hs (total) (m)": 1.1109, + "Tp (total) (s)": 11.5772 + }, + { + "Date+Time": "2005-07-01T00:00:00Z", + "Hs (total) (m)": 1.5038, + "Tp (total) (s)": 10.2367 + }, + { + "Date+Time": "2005-07-02T00:00:00Z", + "Hs (total) (m)": 1.5488, + "Tp (total) (s)": 10.2412 + }, + { + "Date+Time": "2005-07-03T00:00:00Z", + "Hs (total) (m)": 2.2271, + "Tp (total) (s)": 10.0955 + }, + { + "Date+Time": "2005-07-04T00:00:00Z", + "Hs (total) (m)": 2.5933, + "Tp (total) (s)": 9.7064 + }, + { + "Date+Time": "2005-07-05T00:00:00Z", + "Hs (total) (m)": 2.5018, + "Tp (total) (s)": 10.2321 + }, + { + "Date+Time": "2005-07-06T00:00:00Z", + "Hs (total) (m)": 1.9288, + "Tp (total) (s)": 10.2603 + }, + { + "Date+Time": "2005-07-07T00:00:00Z", + "Hs (total) (m)": 1.793, + "Tp (total) (s)": 10.1856 + }, + { + "Date+Time": "2005-07-08T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 9.4584 + }, + { + "Date+Time": "2005-07-09T00:00:00Z", + "Hs (total) (m)": 1.3993, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "2005-07-10T00:00:00Z", + "Hs (total) (m)": 1.0605, + "Tp (total) (s)": 8.8107 + }, + { + "Date+Time": "2005-07-11T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 8.5383 + }, + { + "Date+Time": "2005-07-12T00:00:00Z", + "Hs (total) (m)": 0.8911, + "Tp (total) (s)": 8.9976 + }, + { + "Date+Time": "2005-07-13T00:00:00Z", + "Hs (total) (m)": 0.9049, + "Tp (total) (s)": 8.7512 + }, + { + "Date+Time": "2005-07-14T00:00:00Z", + "Hs (total) (m)": 0.8461, + "Tp (total) (s)": 8.7672 + }, + { + "Date+Time": "2005-07-15T00:00:00Z", + "Hs (total) (m)": 0.9369, + "Tp (total) (s)": 9.1891 + }, + { + "Date+Time": "2005-07-16T00:00:00Z", + "Hs (total) (m)": 0.9163, + "Tp (total) (s)": 8.6505 + }, + { + "Date+Time": "2005-07-17T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 7.8372 + }, + { + "Date+Time": "2005-07-18T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 7.2855 + }, + { + "Date+Time": "2005-07-19T00:00:00Z", + "Hs (total) (m)": 1.2886, + "Tp (total) (s)": 8.6322 + }, + { + "Date+Time": "2005-07-20T00:00:00Z", + "Hs (total) (m)": 1.5191, + "Tp (total) (s)": 12.2448 + }, + { + "Date+Time": "2005-07-21T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 11.6626 + }, + { + "Date+Time": "2005-07-22T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 8.6634 + }, + { + "Date+Time": "2005-07-23T00:00:00Z", + "Hs (total) (m)": 0.8789, + "Tp (total) (s)": 7.8852 + }, + { + "Date+Time": "2005-07-24T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 8.4742 + }, + { + "Date+Time": "2005-07-25T00:00:00Z", + "Hs (total) (m)": 0.9156, + "Tp (total) (s)": 8.517 + }, + { + "Date+Time": "2005-07-26T00:00:00Z", + "Hs (total) (m)": 0.5341, + "Tp (total) (s)": 2.7207 + }, + { + "Date+Time": "2005-07-27T00:00:00Z", + "Hs (total) (m)": 0.4967, + "Tp (total) (s)": 6.2227 + }, + { + "Date+Time": "2005-07-28T00:00:00Z", + "Hs (total) (m)": 0.5028, + "Tp (total) (s)": 6.1937 + }, + { + "Date+Time": "2005-07-29T00:00:00Z", + "Hs (total) (m)": 0.5112, + "Tp (total) (s)": 2.7589 + }, + { + "Date+Time": "2005-07-30T00:00:00Z", + "Hs (total) (m)": 0.6104, + "Tp (total) (s)": 3.016 + }, + { + "Date+Time": "2005-07-31T00:00:00Z", + "Hs (total) (m)": 0.6188, + "Tp (total) (s)": 7.6533 + }, + { + "Date+Time": "2005-08-01T00:00:00Z", + "Hs (total) (m)": 0.4936, + "Tp (total) (s)": 6.283 + }, + { + "Date+Time": "2005-08-02T00:00:00Z", + "Hs (total) (m)": 0.4814, + "Tp (total) (s)": 6.1266 + }, + { + "Date+Time": "2005-08-03T00:00:00Z", + "Hs (total) (m)": 0.956, + "Tp (total) (s)": 9.0594 + }, + { + "Date+Time": "2005-08-04T00:00:00Z", + "Hs (total) (m)": 1.1284, + "Tp (total) (s)": 9.0991 + }, + { + "Date+Time": "2005-08-05T00:00:00Z", + "Hs (total) (m)": 1.3169, + "Tp (total) (s)": 5.6909 + }, + { + "Date+Time": "2005-08-06T00:00:00Z", + "Hs (total) (m)": 1.8067, + "Tp (total) (s)": 10.5655 + }, + { + "Date+Time": "2005-08-07T00:00:00Z", + "Hs (total) (m)": 1.3695, + "Tp (total) (s)": 9.2998 + }, + { + "Date+Time": "2005-08-08T00:00:00Z", + "Hs (total) (m)": 0.9995, + "Tp (total) (s)": 7.9485 + }, + { + "Date+Time": "2005-08-09T00:00:00Z", + "Hs (total) (m)": 0.8965, + "Tp (total) (s)": 7.3969 + }, + { + "Date+Time": "2005-08-10T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 10.3008 + }, + { + "Date+Time": "2005-08-11T00:00:00Z", + "Hs (total) (m)": 1.0125, + "Tp (total) (s)": 10.2405 + }, + { + "Date+Time": "2005-08-12T00:00:00Z", + "Hs (total) (m)": 1.0392, + "Tp (total) (s)": 9.9239 + }, + { + "Date+Time": "2005-08-13T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 9.2502 + }, + { + "Date+Time": "2005-08-14T00:00:00Z", + "Hs (total) (m)": 1.1437, + "Tp (total) (s)": 8.5917 + }, + { + "Date+Time": "2005-08-15T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 12.3157 + }, + { + "Date+Time": "2005-08-16T00:00:00Z", + "Hs (total) (m)": 1.1956, + "Tp (total) (s)": 12.3753 + }, + { + "Date+Time": "2005-08-17T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 7.0147 + }, + { + "Date+Time": "2005-08-18T00:00:00Z", + "Hs (total) (m)": 1.307, + "Tp (total) (s)": 7.757 + }, + { + "Date+Time": "2005-08-19T00:00:00Z", + "Hs (total) (m)": 1.3268, + "Tp (total) (s)": 8.581 + }, + { + "Date+Time": "2005-08-20T00:00:00Z", + "Hs (total) (m)": 1.3497, + "Tp (total) (s)": 8.758 + }, + { + "Date+Time": "2005-08-21T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 11.3124 + }, + { + "Date+Time": "2005-08-22T00:00:00Z", + "Hs (total) (m)": 1.4359, + "Tp (total) (s)": 10.2725 + }, + { + "Date+Time": "2005-08-23T00:00:00Z", + "Hs (total) (m)": 1.6404, + "Tp (total) (s)": 12.215 + }, + { + "Date+Time": "2005-08-24T00:00:00Z", + "Hs (total) (m)": 2.2538, + "Tp (total) (s)": 11.7199 + }, + { + "Date+Time": "2005-08-25T00:00:00Z", + "Hs (total) (m)": 2.9366, + "Tp (total) (s)": 11.3964 + }, + { + "Date+Time": "2005-08-26T00:00:00Z", + "Hs (total) (m)": 2.5834, + "Tp (total) (s)": 10.3732 + }, + { + "Date+Time": "2005-08-27T00:00:00Z", + "Hs (total) (m)": 2.2019, + "Tp (total) (s)": 10.3732 + }, + { + "Date+Time": "2005-08-28T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 10.3313 + }, + { + "Date+Time": "2005-08-29T00:00:00Z", + "Hs (total) (m)": 2.0051, + "Tp (total) (s)": 11.1225 + }, + { + "Date+Time": "2005-08-30T00:00:00Z", + "Hs (total) (m)": 1.9471, + "Tp (total) (s)": 8.3422 + }, + { + "Date+Time": "2005-08-31T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 8.9816 + }, + { + "Date+Time": "2005-09-01T00:00:00Z", + "Hs (total) (m)": 1.8181, + "Tp (total) (s)": 9.9155 + }, + { + "Date+Time": "2005-09-02T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 10.3717 + }, + { + "Date+Time": "2005-09-03T00:00:00Z", + "Hs (total) (m)": 1.458, + "Tp (total) (s)": 10.5007 + }, + { + "Date+Time": "2005-09-04T00:00:00Z", + "Hs (total) (m)": 1.5496, + "Tp (total) (s)": 9.2853 + }, + { + "Date+Time": "2005-09-05T00:00:00Z", + "Hs (total) (m)": 1.3817, + "Tp (total) (s)": 9.2639 + }, + { + "Date+Time": "2005-09-06T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 9.2677 + }, + { + "Date+Time": "2005-09-07T00:00:00Z", + "Hs (total) (m)": 0.8377, + "Tp (total) (s)": 8.5765 + }, + { + "Date+Time": "2005-09-08T00:00:00Z", + "Hs (total) (m)": 1.2238, + "Tp (total) (s)": 8.2942 + }, + { + "Date+Time": "2005-09-09T00:00:00Z", + "Hs (total) (m)": 1.3726, + "Tp (total) (s)": 7.9997 + }, + { + "Date+Time": "2005-09-10T00:00:00Z", + "Hs (total) (m)": 1.4512, + "Tp (total) (s)": 7.741 + }, + { + "Date+Time": "2005-09-11T00:00:00Z", + "Hs (total) (m)": 0.6912, + "Tp (total) (s)": 8.5414 + }, + { + "Date+Time": "2005-09-12T00:00:00Z", + "Hs (total) (m)": 0.3014, + "Tp (total) (s)": 8.0348 + }, + { + "Date+Time": "2005-09-13T00:00:00Z", + "Hs (total) (m)": 1.075, + "Tp (total) (s)": 15.199 + }, + { + "Date+Time": "2005-09-14T00:00:00Z", + "Hs (total) (m)": 1.8258, + "Tp (total) (s)": 15.054 + }, + { + "Date+Time": "2005-09-15T00:00:00Z", + "Hs (total) (m)": 2.4323, + "Tp (total) (s)": 13.8791 + }, + { + "Date+Time": "2005-09-16T00:00:00Z", + "Hs (total) (m)": 2.0905, + "Tp (total) (s)": 10.8448 + }, + { + "Date+Time": "2005-09-17T00:00:00Z", + "Hs (total) (m)": 1.1345, + "Tp (total) (s)": 9.5592 + }, + { + "Date+Time": "2005-09-18T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 8.8832 + }, + { + "Date+Time": "2005-09-19T00:00:00Z", + "Hs (total) (m)": 1.3993, + "Tp (total) (s)": 11.8618 + }, + { + "Date+Time": "2005-09-20T00:00:00Z", + "Hs (total) (m)": 2.208, + "Tp (total) (s)": 9.3356 + }, + { + "Date+Time": "2005-09-21T00:00:00Z", + "Hs (total) (m)": 1.8464, + "Tp (total) (s)": 9.3562 + }, + { + "Date+Time": "2005-09-22T00:00:00Z", + "Hs (total) (m)": 1.9066, + "Tp (total) (s)": 9.5904 + }, + { + "Date+Time": "2005-09-23T00:00:00Z", + "Hs (total) (m)": 2.0898, + "Tp (total) (s)": 8.6581 + }, + { + "Date+Time": "2005-09-24T00:00:00Z", + "Hs (total) (m)": 2.015, + "Tp (total) (s)": 8.4292 + }, + { + "Date+Time": "2005-09-25T00:00:00Z", + "Hs (total) (m)": 2.3789, + "Tp (total) (s)": 11.2194 + }, + { + "Date+Time": "2005-09-26T00:00:00Z", + "Hs (total) (m)": 2.4064, + "Tp (total) (s)": 11.2575 + }, + { + "Date+Time": "2005-09-27T00:00:00Z", + "Hs (total) (m)": 2.5681, + "Tp (total) (s)": 9.5485 + }, + { + "Date+Time": "2005-09-28T00:00:00Z", + "Hs (total) (m)": 3.0038, + "Tp (total) (s)": 11.2827 + }, + { + "Date+Time": "2005-09-29T00:00:00Z", + "Hs (total) (m)": 3.4036, + "Tp (total) (s)": 13.5754 + }, + { + "Date+Time": "2005-09-30T00:00:00Z", + "Hs (total) (m)": 3.4524, + "Tp (total) (s)": 13.7326 + }, + { + "Date+Time": "2005-10-01T00:00:00Z", + "Hs (total) (m)": 2.6635, + "Tp (total) (s)": 10.9088 + }, + { + "Date+Time": "2005-10-02T00:00:00Z", + "Hs (total) (m)": 2.823, + "Tp (total) (s)": 14.1118 + }, + { + "Date+Time": "2005-10-03T00:00:00Z", + "Hs (total) (m)": 3.4333, + "Tp (total) (s)": 14.9976 + }, + { + "Date+Time": "2005-10-04T00:00:00Z", + "Hs (total) (m)": 1.6724, + "Tp (total) (s)": 12.4279 + }, + { + "Date+Time": "2005-10-05T00:00:00Z", + "Hs (total) (m)": 1.7144, + "Tp (total) (s)": 11.3041 + }, + { + "Date+Time": "2005-10-06T00:00:00Z", + "Hs (total) (m)": 1.8746, + "Tp (total) (s)": 11.0523 + }, + { + "Date+Time": "2005-10-07T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 10.2947 + }, + { + "Date+Time": "2005-10-08T00:00:00Z", + "Hs (total) (m)": 2.0226, + "Tp (total) (s)": 8.4117 + }, + { + "Date+Time": "2005-10-09T00:00:00Z", + "Hs (total) (m)": 1.8632, + "Tp (total) (s)": 8.1751 + }, + { + "Date+Time": "2005-10-10T00:00:00Z", + "Hs (total) (m)": 2.6681, + "Tp (total) (s)": 13.6471 + }, + { + "Date+Time": "2005-10-11T00:00:00Z", + "Hs (total) (m)": 3.7446, + "Tp (total) (s)": 12.9513 + }, + { + "Date+Time": "2005-10-12T00:00:00Z", + "Hs (total) (m)": 3.3792, + "Tp (total) (s)": 12.5744 + }, + { + "Date+Time": "2005-10-13T00:00:00Z", + "Hs (total) (m)": 2.53, + "Tp (total) (s)": 11.8854 + }, + { + "Date+Time": "2005-10-14T00:00:00Z", + "Hs (total) (m)": 1.4222, + "Tp (total) (s)": 11.3475 + }, + { + "Date+Time": "2005-10-15T00:00:00Z", + "Hs (total) (m)": 1.5671, + "Tp (total) (s)": 14.51 + }, + { + "Date+Time": "2005-10-16T00:00:00Z", + "Hs (total) (m)": 2.6582, + "Tp (total) (s)": 14.491 + }, + { + "Date+Time": "2005-10-17T00:00:00Z", + "Hs (total) (m)": 2.5254, + "Tp (total) (s)": 13.4762 + }, + { + "Date+Time": "2005-10-18T00:00:00Z", + "Hs (total) (m)": 1.8426, + "Tp (total) (s)": 10.7189 + }, + { + "Date+Time": "2005-10-19T00:00:00Z", + "Hs (total) (m)": 1.7388, + "Tp (total) (s)": 10.0314 + }, + { + "Date+Time": "2005-10-20T00:00:00Z", + "Hs (total) (m)": 1.1681, + "Tp (total) (s)": 9.5767 + }, + { + "Date+Time": "2005-10-21T00:00:00Z", + "Hs (total) (m)": 1.4138, + "Tp (total) (s)": 9.3692 + }, + { + "Date+Time": "2005-10-22T00:00:00Z", + "Hs (total) (m)": 1.1948, + "Tp (total) (s)": 7.0795 + }, + { + "Date+Time": "2005-10-23T00:00:00Z", + "Hs (total) (m)": 0.7332, + "Tp (total) (s)": 11.2644 + }, + { + "Date+Time": "2005-10-24T00:00:00Z", + "Hs (total) (m)": 1.0331, + "Tp (total) (s)": 11.5963 + }, + { + "Date+Time": "2005-10-25T00:00:00Z", + "Hs (total) (m)": 1.6526, + "Tp (total) (s)": 11.0538 + }, + { + "Date+Time": "2005-10-26T00:00:00Z", + "Hs (total) (m)": 2.205, + "Tp (total) (s)": 9.7903 + }, + { + "Date+Time": "2005-10-27T00:00:00Z", + "Hs (total) (m)": 2.6856, + "Tp (total) (s)": 10.3595 + }, + { + "Date+Time": "2005-10-28T00:00:00Z", + "Hs (total) (m)": 3.1442, + "Tp (total) (s)": 10.6761 + }, + { + "Date+Time": "2005-10-29T00:00:00Z", + "Hs (total) (m)": 3.3616, + "Tp (total) (s)": 11.4582 + }, + { + "Date+Time": "2005-10-30T00:00:00Z", + "Hs (total) (m)": 2.8176, + "Tp (total) (s)": 11.2774 + }, + { + "Date+Time": "2005-10-31T00:00:00Z", + "Hs (total) (m)": 3.0572, + "Tp (total) (s)": 10.7181 + }, + { + "Date+Time": "2005-11-01T00:00:00Z", + "Hs (total) (m)": 2.8253, + "Tp (total) (s)": 11.2697 + }, + { + "Date+Time": "2005-11-02T00:00:00Z", + "Hs (total) (m)": 2.6658, + "Tp (total) (s)": 11.391 + }, + { + "Date+Time": "2005-11-03T00:00:00Z", + "Hs (total) (m)": 2.2233, + "Tp (total) (s)": 11.0515 + }, + { + "Date+Time": "2005-11-04T00:00:00Z", + "Hs (total) (m)": 2.5185, + "Tp (total) (s)": 13.8981 + }, + { + "Date+Time": "2005-11-05T00:00:00Z", + "Hs (total) (m)": 2.5376, + "Tp (total) (s)": 13.8493 + }, + { + "Date+Time": "2005-11-06T00:00:00Z", + "Hs (total) (m)": 2.3766, + "Tp (total) (s)": 10.6258 + }, + { + "Date+Time": "2005-11-07T00:00:00Z", + "Hs (total) (m)": 2.9145, + "Tp (total) (s)": 14.288 + }, + { + "Date+Time": "2005-11-08T00:00:00Z", + "Hs (total) (m)": 4.1353, + "Tp (total) (s)": 14.1392 + }, + { + "Date+Time": "2005-11-09T00:00:00Z", + "Hs (total) (m)": 4.2138, + "Tp (total) (s)": 13.5372 + }, + { + "Date+Time": "2005-11-10T00:00:00Z", + "Hs (total) (m)": 3.2929, + "Tp (total) (s)": 12.1616 + }, + { + "Date+Time": "2005-11-11T00:00:00Z", + "Hs (total) (m)": 3.1404, + "Tp (total) (s)": 11.8549 + }, + { + "Date+Time": "2005-11-12T00:00:00Z", + "Hs (total) (m)": 3.8392, + "Tp (total) (s)": 12.8727 + }, + { + "Date+Time": "2005-11-13T00:00:00Z", + "Hs (total) (m)": 4.0544, + "Tp (total) (s)": 12.9986 + }, + { + "Date+Time": "2005-11-14T00:00:00Z", + "Hs (total) (m)": 3.1915, + "Tp (total) (s)": 13.8447 + }, + { + "Date+Time": "2005-11-15T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 12.8964 + }, + { + "Date+Time": "2005-11-16T00:00:00Z", + "Hs (total) (m)": 1.6465, + "Tp (total) (s)": 10.1756 + }, + { + "Date+Time": "2005-11-17T00:00:00Z", + "Hs (total) (m)": 1.5168, + "Tp (total) (s)": 10.8638 + }, + { + "Date+Time": "2005-11-18T00:00:00Z", + "Hs (total) (m)": 1.2162, + "Tp (total) (s)": 9.595 + }, + { + "Date+Time": "2005-11-19T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 10.2412 + }, + { + "Date+Time": "2005-11-20T00:00:00Z", + "Hs (total) (m)": 1.719, + "Tp (total) (s)": 13.8249 + }, + { + "Date+Time": "2005-11-21T00:00:00Z", + "Hs (total) (m)": 1.9791, + "Tp (total) (s)": 13.8874 + }, + { + "Date+Time": "2005-11-22T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 13.464 + }, + { + "Date+Time": "2005-11-23T00:00:00Z", + "Hs (total) (m)": 1.2871, + "Tp (total) (s)": 11.375 + }, + { + "Date+Time": "2005-11-24T00:00:00Z", + "Hs (total) (m)": 1.0117, + "Tp (total) (s)": 10.3282 + }, + { + "Date+Time": "2005-11-25T00:00:00Z", + "Hs (total) (m)": 1.6778, + "Tp (total) (s)": 12.6156 + }, + { + "Date+Time": "2005-11-26T00:00:00Z", + "Hs (total) (m)": 1.8326, + "Tp (total) (s)": 11.5192 + }, + { + "Date+Time": "2005-11-27T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 10.3793 + }, + { + "Date+Time": "2005-11-28T00:00:00Z", + "Hs (total) (m)": 1.5969, + "Tp (total) (s)": 11.9083 + }, + { + "Date+Time": "2005-11-29T00:00:00Z", + "Hs (total) (m)": 0.9926, + "Tp (total) (s)": 12.6835 + }, + { + "Date+Time": "2005-11-30T00:00:00Z", + "Hs (total) (m)": 0.8629, + "Tp (total) (s)": 7.8036 + }, + { + "Date+Time": "2005-12-01T00:00:00Z", + "Hs (total) (m)": 0.9743, + "Tp (total) (s)": 7.9493 + }, + { + "Date+Time": "2005-12-02T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 7.7792 + }, + { + "Date+Time": "2005-12-03T00:00:00Z", + "Hs (total) (m)": 1.6778, + "Tp (total) (s)": 7.77 + }, + { + "Date+Time": "2005-12-04T00:00:00Z", + "Hs (total) (m)": 1.4428, + "Tp (total) (s)": 12.6087 + }, + { + "Date+Time": "2005-12-05T00:00:00Z", + "Hs (total) (m)": 1.6717, + "Tp (total) (s)": 9.8804 + }, + { + "Date+Time": "2005-12-06T00:00:00Z", + "Hs (total) (m)": 1.6869, + "Tp (total) (s)": 9.7095 + }, + { + "Date+Time": "2005-12-07T00:00:00Z", + "Hs (total) (m)": 1.4298, + "Tp (total) (s)": 8.6886 + }, + { + "Date+Time": "2005-12-08T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 9.5637 + }, + { + "Date+Time": "2005-12-09T00:00:00Z", + "Hs (total) (m)": 1.3176, + "Tp (total) (s)": 7.1139 + }, + { + "Date+Time": "2005-12-10T00:00:00Z", + "Hs (total) (m)": 1.8738, + "Tp (total) (s)": 14.1362 + }, + { + "Date+Time": "2005-12-11T00:00:00Z", + "Hs (total) (m)": 2.7085, + "Tp (total) (s)": 14.6199 + }, + { + "Date+Time": "2005-12-12T00:00:00Z", + "Hs (total) (m)": 3.0801, + "Tp (total) (s)": 14.8785 + }, + { + "Date+Time": "2005-12-13T00:00:00Z", + "Hs (total) (m)": 2.2904, + "Tp (total) (s)": 12.627 + }, + { + "Date+Time": "2005-12-14T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 11.8381 + }, + { + "Date+Time": "2005-12-15T00:00:00Z", + "Hs (total) (m)": 1.1223, + "Tp (total) (s)": 10.2512 + }, + { + "Date+Time": "2005-12-16T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 14.1781 + }, + { + "Date+Time": "2005-12-17T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 12.4691 + }, + { + "Date+Time": "2005-12-18T00:00:00Z", + "Hs (total) (m)": 1.3512, + "Tp (total) (s)": 8.903 + }, + { + "Date+Time": "2005-12-19T00:00:00Z", + "Hs (total) (m)": 1.3825, + "Tp (total) (s)": 9.7163 + }, + { + "Date+Time": "2005-12-20T00:00:00Z", + "Hs (total) (m)": 1.3451, + "Tp (total) (s)": 9.9658 + }, + { + "Date+Time": "2005-12-21T00:00:00Z", + "Hs (total) (m)": 1.7006, + "Tp (total) (s)": 11.2888 + }, + { + "Date+Time": "2005-12-22T00:00:00Z", + "Hs (total) (m)": 2.2706, + "Tp (total) (s)": 11.0378 + }, + { + "Date+Time": "2005-12-23T00:00:00Z", + "Hs (total) (m)": 2.3438, + "Tp (total) (s)": 10.8806 + }, + { + "Date+Time": "2005-12-24T00:00:00Z", + "Hs (total) (m)": 2.646, + "Tp (total) (s)": 11.2766 + }, + { + "Date+Time": "2005-12-25T00:00:00Z", + "Hs (total) (m)": 2.4071, + "Tp (total) (s)": 12.0327 + }, + { + "Date+Time": "2005-12-26T00:00:00Z", + "Hs (total) (m)": 2.0051, + "Tp (total) (s)": 12.434 + }, + { + "Date+Time": "2005-12-27T00:00:00Z", + "Hs (total) (m)": 1.3665, + "Tp (total) (s)": 10.5365 + }, + { + "Date+Time": "2005-12-28T00:00:00Z", + "Hs (total) (m)": 1.0849, + "Tp (total) (s)": 11.8114 + }, + { + "Date+Time": "2005-12-29T00:00:00Z", + "Hs (total) (m)": 1.8212, + "Tp (total) (s)": 12.6789 + }, + { + "Date+Time": "2005-12-30T00:00:00Z", + "Hs (total) (m)": 2.3949, + "Tp (total) (s)": 11.4521 + }, + { + "Date+Time": "2005-12-31T00:00:00Z", + "Hs (total) (m)": 2.2996, + "Tp (total) (s)": 10.7585 + }, + { + "Date+Time": "2006-01-01T00:00:00Z", + "Hs (total) (m)": 4.0353, + "Tp (total) (s)": 13.979 + }, + { + "Date+Time": "2006-01-02T00:00:00Z", + "Hs (total) (m)": 2.5758, + "Tp (total) (s)": 13.1291 + }, + { + "Date+Time": "2006-01-03T00:00:00Z", + "Hs (total) (m)": 2.195, + "Tp (total) (s)": 10.3778 + }, + { + "Date+Time": "2006-01-04T00:00:00Z", + "Hs (total) (m)": 2.0287, + "Tp (total) (s)": 12.8666 + }, + { + "Date+Time": "2006-01-05T00:00:00Z", + "Hs (total) (m)": 2.43, + "Tp (total) (s)": 12.7331 + }, + { + "Date+Time": "2006-01-06T00:00:00Z", + "Hs (total) (m)": 2.5628, + "Tp (total) (s)": 13.1855 + }, + { + "Date+Time": "2006-01-07T00:00:00Z", + "Hs (total) (m)": 1.8326, + "Tp (total) (s)": 12.5935 + }, + { + "Date+Time": "2006-01-08T00:00:00Z", + "Hs (total) (m)": 2.2538, + "Tp (total) (s)": 12.7384 + }, + { + "Date+Time": "2006-01-09T00:00:00Z", + "Hs (total) (m)": 2.3164, + "Tp (total) (s)": 13.2733 + }, + { + "Date+Time": "2006-01-10T00:00:00Z", + "Hs (total) (m)": 2.4255, + "Tp (total) (s)": 12.6728 + }, + { + "Date+Time": "2006-01-11T00:00:00Z", + "Hs (total) (m)": 3.4265, + "Tp (total) (s)": 11.9251 + }, + { + "Date+Time": "2006-01-12T00:00:00Z", + "Hs (total) (m)": 3.4104, + "Tp (total) (s)": 12.3684 + }, + { + "Date+Time": "2006-01-13T00:00:00Z", + "Hs (total) (m)": 3.4715, + "Tp (total) (s)": 13.245 + }, + { + "Date+Time": "2006-01-14T00:00:00Z", + "Hs (total) (m)": 2.9214, + "Tp (total) (s)": 13.3984 + }, + { + "Date+Time": "2006-01-15T00:00:00Z", + "Hs (total) (m)": 3.634, + "Tp (total) (s)": 12.389 + }, + { + "Date+Time": "2006-01-16T00:00:00Z", + "Hs (total) (m)": 2.6254, + "Tp (total) (s)": 13.8821 + }, + { + "Date+Time": "2006-01-17T00:00:00Z", + "Hs (total) (m)": 2.443, + "Tp (total) (s)": 12.479 + }, + { + "Date+Time": "2006-01-18T00:00:00Z", + "Hs (total) (m)": 2.4796, + "Tp (total) (s)": 11.5932 + }, + { + "Date+Time": "2006-01-19T00:00:00Z", + "Hs (total) (m)": 2.53, + "Tp (total) (s)": 11.0324 + }, + { + "Date+Time": "2006-01-20T00:00:00Z", + "Hs (total) (m)": 3.7812, + "Tp (total) (s)": 13.9302 + }, + { + "Date+Time": "2006-01-21T00:00:00Z", + "Hs (total) (m)": 3.28, + "Tp (total) (s)": 13.8195 + }, + { + "Date+Time": "2006-01-22T00:00:00Z", + "Hs (total) (m)": 2.3896, + "Tp (total) (s)": 13.6021 + }, + { + "Date+Time": "2006-01-23T00:00:00Z", + "Hs (total) (m)": 2.1729, + "Tp (total) (s)": 12.9231 + }, + { + "Date+Time": "2006-01-24T00:00:00Z", + "Hs (total) (m)": 2.3064, + "Tp (total) (s)": 12.4943 + }, + { + "Date+Time": "2006-01-25T00:00:00Z", + "Hs (total) (m)": 1.8159, + "Tp (total) (s)": 19.2335 + }, + { + "Date+Time": "2006-01-26T00:00:00Z", + "Hs (total) (m)": 2.2073, + "Tp (total) (s)": 16.1443 + }, + { + "Date+Time": "2006-01-27T00:00:00Z", + "Hs (total) (m)": 1.6999, + "Tp (total) (s)": 13.8981 + }, + { + "Date+Time": "2006-01-28T00:00:00Z", + "Hs (total) (m)": 1.1155, + "Tp (total) (s)": 12.2951 + }, + { + "Date+Time": "2006-01-29T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 10.8295 + }, + { + "Date+Time": "2006-01-30T00:00:00Z", + "Hs (total) (m)": 1.1864, + "Tp (total) (s)": 12.7895 + }, + { + "Date+Time": "2006-01-31T00:00:00Z", + "Hs (total) (m)": 1.6381, + "Tp (total) (s)": 13.0169 + }, + { + "Date+Time": "2006-02-01T00:00:00Z", + "Hs (total) (m)": 1.9974, + "Tp (total) (s)": 12.5492 + }, + { + "Date+Time": "2006-02-02T00:00:00Z", + "Hs (total) (m)": 1.9089, + "Tp (total) (s)": 10.9493 + }, + { + "Date+Time": "2006-02-03T00:00:00Z", + "Hs (total) (m)": 1.545, + "Tp (total) (s)": 10.5388 + }, + { + "Date+Time": "2006-02-04T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 12.9849 + }, + { + "Date+Time": "2006-02-05T00:00:00Z", + "Hs (total) (m)": 1.5046, + "Tp (total) (s)": 18.0883 + }, + { + "Date+Time": "2006-02-06T00:00:00Z", + "Hs (total) (m)": 1.9822, + "Tp (total) (s)": 15.2913 + }, + { + "Date+Time": "2006-02-07T00:00:00Z", + "Hs (total) (m)": 2.0257, + "Tp (total) (s)": 11.5665 + }, + { + "Date+Time": "2006-02-08T00:00:00Z", + "Hs (total) (m)": 2.0363, + "Tp (total) (s)": 8.4483 + }, + { + "Date+Time": "2006-02-09T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "2006-02-10T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 8.7115 + }, + { + "Date+Time": "2006-02-11T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 6.2014 + }, + { + "Date+Time": "2006-02-12T00:00:00Z", + "Hs (total) (m)": 1.9791, + "Tp (total) (s)": 9.2402 + }, + { + "Date+Time": "2006-02-13T00:00:00Z", + "Hs (total) (m)": 2.6391, + "Tp (total) (s)": 10.9943 + }, + { + "Date+Time": "2006-02-14T00:00:00Z", + "Hs (total) (m)": 4.1612, + "Tp (total) (s)": 17.1384 + }, + { + "Date+Time": "2006-02-15T00:00:00Z", + "Hs (total) (m)": 4.0796, + "Tp (total) (s)": 14.864 + }, + { + "Date+Time": "2006-02-16T00:00:00Z", + "Hs (total) (m)": 4.4679, + "Tp (total) (s)": 14.1125 + }, + { + "Date+Time": "2006-02-17T00:00:00Z", + "Hs (total) (m)": 4.9736, + "Tp (total) (s)": 16.3764 + }, + { + "Date+Time": "2006-02-18T00:00:00Z", + "Hs (total) (m)": 3.5554, + "Tp (total) (s)": 14.7946 + }, + { + "Date+Time": "2006-02-19T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 13.2565 + }, + { + "Date+Time": "2006-02-20T00:00:00Z", + "Hs (total) (m)": 1.9509, + "Tp (total) (s)": 12.2913 + }, + { + "Date+Time": "2006-02-21T00:00:00Z", + "Hs (total) (m)": 1.5007, + "Tp (total) (s)": 11.8091 + }, + { + "Date+Time": "2006-02-22T00:00:00Z", + "Hs (total) (m)": 1.1742, + "Tp (total) (s)": 11.5543 + }, + { + "Date+Time": "2006-02-23T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 12.2723 + }, + { + "Date+Time": "2006-02-24T00:00:00Z", + "Hs (total) (m)": 0.869, + "Tp (total) (s)": 11.5925 + }, + { + "Date+Time": "2006-02-25T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 11.5246 + }, + { + "Date+Time": "2006-02-26T00:00:00Z", + "Hs (total) (m)": 0.853, + "Tp (total) (s)": 3.3242 + }, + { + "Date+Time": "2006-02-27T00:00:00Z", + "Hs (total) (m)": 0.5005, + "Tp (total) (s)": 2.8817 + }, + { + "Date+Time": "2006-02-28T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 15.8429 + }, + { + "Date+Time": "2006-03-01T00:00:00Z", + "Hs (total) (m)": 1.1994, + "Tp (total) (s)": 15.1296 + }, + { + "Date+Time": "2006-03-02T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 12.418 + }, + { + "Date+Time": "2006-03-03T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 12.3875 + }, + { + "Date+Time": "2006-03-04T00:00:00Z", + "Hs (total) (m)": 2.0547, + "Tp (total) (s)": 12.8964 + }, + { + "Date+Time": "2006-03-05T00:00:00Z", + "Hs (total) (m)": 1.3947, + "Tp (total) (s)": 12.1815 + }, + { + "Date+Time": "2006-03-06T00:00:00Z", + "Hs (total) (m)": 1.4084, + "Tp (total) (s)": 11.6222 + }, + { + "Date+Time": "2006-03-07T00:00:00Z", + "Hs (total) (m)": 1.854, + "Tp (total) (s)": 12.6614 + }, + { + "Date+Time": "2006-03-08T00:00:00Z", + "Hs (total) (m)": 2.2568, + "Tp (total) (s)": 11.4872 + }, + { + "Date+Time": "2006-03-09T00:00:00Z", + "Hs (total) (m)": 2.5567, + "Tp (total) (s)": 13.0116 + }, + { + "Date+Time": "2006-03-10T00:00:00Z", + "Hs (total) (m)": 4.3291, + "Tp (total) (s)": 13.1581 + }, + { + "Date+Time": "2006-03-11T00:00:00Z", + "Hs (total) (m)": 3.3044, + "Tp (total) (s)": 13.4388 + }, + { + "Date+Time": "2006-03-12T00:00:00Z", + "Hs (total) (m)": 2.4941, + "Tp (total) (s)": 12.3379 + }, + { + "Date+Time": "2006-03-13T00:00:00Z", + "Hs (total) (m)": 2.8878, + "Tp (total) (s)": 11.0248 + }, + { + "Date+Time": "2006-03-14T00:00:00Z", + "Hs (total) (m)": 2.9321, + "Tp (total) (s)": 11.8664 + }, + { + "Date+Time": "2006-03-15T00:00:00Z", + "Hs (total) (m)": 1.783, + "Tp (total) (s)": 10.8539 + }, + { + "Date+Time": "2006-03-16T00:00:00Z", + "Hs (total) (m)": 1.3436, + "Tp (total) (s)": 12.5378 + }, + { + "Date+Time": "2006-03-17T00:00:00Z", + "Hs (total) (m)": 0.959, + "Tp (total) (s)": 3.3403 + }, + { + "Date+Time": "2006-03-18T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 3.6012 + }, + { + "Date+Time": "2006-03-19T00:00:00Z", + "Hs (total) (m)": 0.9293, + "Tp (total) (s)": 4.7098 + }, + { + "Date+Time": "2006-03-20T00:00:00Z", + "Hs (total) (m)": 0.6363, + "Tp (total) (s)": 3.122 + }, + { + "Date+Time": "2006-03-21T00:00:00Z", + "Hs (total) (m)": 0.5387, + "Tp (total) (s)": 2.8207 + }, + { + "Date+Time": "2006-03-22T00:00:00Z", + "Hs (total) (m)": 0.5936, + "Tp (total) (s)": 3.0488 + }, + { + "Date+Time": "2006-03-23T00:00:00Z", + "Hs (total) (m)": 1.0384, + "Tp (total) (s)": 10.464 + }, + { + "Date+Time": "2006-03-24T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 4.3832 + }, + { + "Date+Time": "2006-03-25T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 11.4277 + }, + { + "Date+Time": "2006-03-26T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 11.7489 + }, + { + "Date+Time": "2006-03-27T00:00:00Z", + "Hs (total) (m)": 2.382, + "Tp (total) (s)": 10.6174 + }, + { + "Date+Time": "2006-03-28T00:00:00Z", + "Hs (total) (m)": 2.9946, + "Tp (total) (s)": 9.7873 + }, + { + "Date+Time": "2006-03-29T00:00:00Z", + "Hs (total) (m)": 2.0867, + "Tp (total) (s)": 11.1705 + }, + { + "Date+Time": "2006-03-30T00:00:00Z", + "Hs (total) (m)": 1.3779, + "Tp (total) (s)": 10.6647 + }, + { + "Date+Time": "2006-03-31T00:00:00Z", + "Hs (total) (m)": 2.6292, + "Tp (total) (s)": 9.7308 + }, + { + "Date+Time": "2006-04-01T00:00:00Z", + "Hs (total) (m)": 2.5063, + "Tp (total) (s)": 11.7794 + }, + { + "Date+Time": "2006-04-02T00:00:00Z", + "Hs (total) (m)": 3.7637, + "Tp (total) (s)": 10.4266 + }, + { + "Date+Time": "2006-04-03T00:00:00Z", + "Hs (total) (m)": 1.6816, + "Tp (total) (s)": 10.3183 + }, + { + "Date+Time": "2006-04-04T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 9.4966 + }, + { + "Date+Time": "2006-04-05T00:00:00Z", + "Hs (total) (m)": 0.9499, + "Tp (total) (s)": 8.8237 + }, + { + "Date+Time": "2006-04-06T00:00:00Z", + "Hs (total) (m)": 0.8446, + "Tp (total) (s)": 3.6599 + }, + { + "Date+Time": "2006-04-07T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 10.5777 + }, + { + "Date+Time": "2006-04-08T00:00:00Z", + "Hs (total) (m)": 1.4595, + "Tp (total) (s)": 11.5169 + }, + { + "Date+Time": "2006-04-09T00:00:00Z", + "Hs (total) (m)": 1.471, + "Tp (total) (s)": 10.844 + }, + { + "Date+Time": "2006-04-10T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 10.6464 + }, + { + "Date+Time": "2006-04-11T00:00:00Z", + "Hs (total) (m)": 1.8281, + "Tp (total) (s)": 5.5071 + }, + { + "Date+Time": "2006-04-12T00:00:00Z", + "Hs (total) (m)": 2.1165, + "Tp (total) (s)": 11.4643 + }, + { + "Date+Time": "2006-04-13T00:00:00Z", + "Hs (total) (m)": 2.53, + "Tp (total) (s)": 12.7003 + }, + { + "Date+Time": "2006-04-14T00:00:00Z", + "Hs (total) (m)": 2.3225, + "Tp (total) (s)": 12.9963 + }, + { + "Date+Time": "2006-04-15T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 11.5223 + }, + { + "Date+Time": "2006-04-16T00:00:00Z", + "Hs (total) (m)": 1.1979, + "Tp (total) (s)": 10.332 + }, + { + "Date+Time": "2006-04-17T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 10.2557 + }, + { + "Date+Time": "2006-04-18T00:00:00Z", + "Hs (total) (m)": 1.603, + "Tp (total) (s)": 10.2412 + }, + { + "Date+Time": "2006-04-19T00:00:00Z", + "Hs (total) (m)": 1.3009, + "Tp (total) (s)": 9.7499 + }, + { + "Date+Time": "2006-04-20T00:00:00Z", + "Hs (total) (m)": 1.0727, + "Tp (total) (s)": 9.3776 + }, + { + "Date+Time": "2006-04-21T00:00:00Z", + "Hs (total) (m)": 0.6508, + "Tp (total) (s)": 7.9463 + }, + { + "Date+Time": "2006-04-22T00:00:00Z", + "Hs (total) (m)": 0.6333, + "Tp (total) (s)": 9.5027 + }, + { + "Date+Time": "2006-04-23T00:00:00Z", + "Hs (total) (m)": 1.5954, + "Tp (total) (s)": 10.4236 + }, + { + "Date+Time": "2006-04-24T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 11.2934 + }, + { + "Date+Time": "2006-04-25T00:00:00Z", + "Hs (total) (m)": 2.5163, + "Tp (total) (s)": 13.4487 + }, + { + "Date+Time": "2006-04-26T00:00:00Z", + "Hs (total) (m)": 2.7223, + "Tp (total) (s)": 13.9828 + }, + { + "Date+Time": "2006-04-27T00:00:00Z", + "Hs (total) (m)": 2.1424, + "Tp (total) (s)": 13.5617 + }, + { + "Date+Time": "2006-04-28T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 11.5909 + }, + { + "Date+Time": "2006-04-29T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 9.4996 + }, + { + "Date+Time": "2006-04-30T00:00:00Z", + "Hs (total) (m)": 0.8026, + "Tp (total) (s)": 8.4185 + }, + { + "Date+Time": "2006-05-01T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 6.1243 + }, + { + "Date+Time": "2006-05-02T00:00:00Z", + "Hs (total) (m)": 2.0531, + "Tp (total) (s)": 11.4254 + }, + { + "Date+Time": "2006-05-03T00:00:00Z", + "Hs (total) (m)": 3.0587, + "Tp (total) (s)": 9.6561 + }, + { + "Date+Time": "2006-05-04T00:00:00Z", + "Hs (total) (m)": 2.62, + "Tp (total) (s)": 10.5281 + }, + { + "Date+Time": "2006-05-05T00:00:00Z", + "Hs (total) (m)": 2.2134, + "Tp (total) (s)": 11.6688 + }, + { + "Date+Time": "2006-05-06T00:00:00Z", + "Hs (total) (m)": 2.0356, + "Tp (total) (s)": 9.4157 + }, + { + "Date+Time": "2006-05-07T00:00:00Z", + "Hs (total) (m)": 2.1256, + "Tp (total) (s)": 9.9101 + }, + { + "Date+Time": "2006-05-08T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 9.2174 + }, + { + "Date+Time": "2006-05-09T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 9.0289 + }, + { + "Date+Time": "2006-05-10T00:00:00Z", + "Hs (total) (m)": 0.7424, + "Tp (total) (s)": 7.3534 + }, + { + "Date+Time": "2006-05-11T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 11.0401 + }, + { + "Date+Time": "2006-05-12T00:00:00Z", + "Hs (total) (m)": 0.7538, + "Tp (total) (s)": 8.8481 + }, + { + "Date+Time": "2006-05-13T00:00:00Z", + "Hs (total) (m)": 0.5158, + "Tp (total) (s)": 7.8265 + }, + { + "Date+Time": "2006-05-14T00:00:00Z", + "Hs (total) (m)": 0.425, + "Tp (total) (s)": 6.4791 + }, + { + "Date+Time": "2006-05-15T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 8.1896 + }, + { + "Date+Time": "2006-05-16T00:00:00Z", + "Hs (total) (m)": 1.5175, + "Tp (total) (s)": 9.0106 + }, + { + "Date+Time": "2006-05-17T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 8.5276 + }, + { + "Date+Time": "2006-05-18T00:00:00Z", + "Hs (total) (m)": 3.7431, + "Tp (total) (s)": 9.1578 + }, + { + "Date+Time": "2006-05-19T00:00:00Z", + "Hs (total) (m)": 2.6826, + "Tp (total) (s)": 10.5487 + }, + { + "Date+Time": "2006-05-20T00:00:00Z", + "Hs (total) (m)": 2.0325, + "Tp (total) (s)": 11.1614 + }, + { + "Date+Time": "2006-05-21T00:00:00Z", + "Hs (total) (m)": 1.8807, + "Tp (total) (s)": 11.4666 + }, + { + "Date+Time": "2006-05-22T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 11.1934 + }, + { + "Date+Time": "2006-05-23T00:00:00Z", + "Hs (total) (m)": 0.9865, + "Tp (total) (s)": 9.7087 + }, + { + "Date+Time": "2006-05-24T00:00:00Z", + "Hs (total) (m)": 2.0341, + "Tp (total) (s)": 9.2936 + }, + { + "Date+Time": "2006-05-25T00:00:00Z", + "Hs (total) (m)": 1.5435, + "Tp (total) (s)": 9.5859 + }, + { + "Date+Time": "2006-05-26T00:00:00Z", + "Hs (total) (m)": 1.5732, + "Tp (total) (s)": 8.8649 + }, + { + "Date+Time": "2006-05-27T00:00:00Z", + "Hs (total) (m)": 1.693, + "Tp (total) (s)": 8.5849 + }, + { + "Date+Time": "2006-05-28T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 9.7919 + }, + { + "Date+Time": "2006-05-29T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 10.2 + }, + { + "Date+Time": "2006-05-30T00:00:00Z", + "Hs (total) (m)": 1.2528, + "Tp (total) (s)": 9.0197 + }, + { + "Date+Time": "2006-05-31T00:00:00Z", + "Hs (total) (m)": 0.9987, + "Tp (total) (s)": 8.6146 + }, + { + "Date+Time": "2006-06-01T00:00:00Z", + "Hs (total) (m)": 0.795, + "Tp (total) (s)": 8.269 + }, + { + "Date+Time": "2006-06-02T00:00:00Z", + "Hs (total) (m)": 0.8576, + "Tp (total) (s)": 8.6352 + }, + { + "Date+Time": "2006-06-03T00:00:00Z", + "Hs (total) (m)": 0.8698, + "Tp (total) (s)": 10.1932 + }, + { + "Date+Time": "2006-06-04T00:00:00Z", + "Hs (total) (m)": 0.8049, + "Tp (total) (s)": 10.1566 + }, + { + "Date+Time": "2006-06-05T00:00:00Z", + "Hs (total) (m)": 0.6676, + "Tp (total) (s)": 9.6072 + }, + { + "Date+Time": "2006-06-06T00:00:00Z", + "Hs (total) (m)": 0.5486, + "Tp (total) (s)": 8.9129 + }, + { + "Date+Time": "2006-06-07T00:00:00Z", + "Hs (total) (m)": 0.6195, + "Tp (total) (s)": 8.2713 + }, + { + "Date+Time": "2006-06-08T00:00:00Z", + "Hs (total) (m)": 0.5425, + "Tp (total) (s)": 8.2385 + }, + { + "Date+Time": "2006-06-09T00:00:00Z", + "Hs (total) (m)": 0.7935, + "Tp (total) (s)": 11.3315 + }, + { + "Date+Time": "2006-06-10T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 9.5882 + }, + { + "Date+Time": "2006-06-11T00:00:00Z", + "Hs (total) (m)": 2.5704, + "Tp (total) (s)": 9.3089 + }, + { + "Date+Time": "2006-06-12T00:00:00Z", + "Hs (total) (m)": 2.4735, + "Tp (total) (s)": 10.2496 + }, + { + "Date+Time": "2006-06-13T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 9.6858 + }, + { + "Date+Time": "2006-06-14T00:00:00Z", + "Hs (total) (m)": 1.3649, + "Tp (total) (s)": 9.5614 + }, + { + "Date+Time": "2006-06-15T00:00:00Z", + "Hs (total) (m)": 0.9865, + "Tp (total) (s)": 9.6889 + }, + { + "Date+Time": "2006-06-16T00:00:00Z", + "Hs (total) (m)": 0.9651, + "Tp (total) (s)": 9.1418 + }, + { + "Date+Time": "2006-06-17T00:00:00Z", + "Hs (total) (m)": 0.9514, + "Tp (total) (s)": 9.3554 + }, + { + "Date+Time": "2006-06-18T00:00:00Z", + "Hs (total) (m)": 1.3016, + "Tp (total) (s)": 9.5325 + }, + { + "Date+Time": "2006-06-19T00:00:00Z", + "Hs (total) (m)": 1.6587, + "Tp (total) (s)": 8.4536 + }, + { + "Date+Time": "2006-06-20T00:00:00Z", + "Hs (total) (m)": 1.6694, + "Tp (total) (s)": 9.8621 + }, + { + "Date+Time": "2006-06-21T00:00:00Z", + "Hs (total) (m)": 2.2622, + "Tp (total) (s)": 8.9961 + }, + { + "Date+Time": "2006-06-22T00:00:00Z", + "Hs (total) (m)": 2.5307, + "Tp (total) (s)": 11.8709 + }, + { + "Date+Time": "2006-06-23T00:00:00Z", + "Hs (total) (m)": 1.7739, + "Tp (total) (s)": 11.3132 + }, + { + "Date+Time": "2006-06-24T00:00:00Z", + "Hs (total) (m)": 1.072, + "Tp (total) (s)": 9.7728 + }, + { + "Date+Time": "2006-06-25T00:00:00Z", + "Hs (total) (m)": 0.8675, + "Tp (total) (s)": 8.8687 + }, + { + "Date+Time": "2006-06-26T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 8.62 + }, + { + "Date+Time": "2006-06-27T00:00:00Z", + "Hs (total) (m)": 0.6455, + "Tp (total) (s)": 8.3247 + }, + { + "Date+Time": "2006-06-28T00:00:00Z", + "Hs (total) (m)": 0.631, + "Tp (total) (s)": 7.8532 + }, + { + "Date+Time": "2006-06-29T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 6.6927 + }, + { + "Date+Time": "2006-06-30T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 9.4996 + }, + { + "Date+Time": "2006-07-01T00:00:00Z", + "Hs (total) (m)": 1.5481, + "Tp (total) (s)": 11.2911 + }, + { + "Date+Time": "2006-07-02T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 8.9335 + }, + { + "Date+Time": "2006-07-03T00:00:00Z", + "Hs (total) (m)": 0.7584, + "Tp (total) (s)": 7.741 + }, + { + "Date+Time": "2006-07-04T00:00:00Z", + "Hs (total) (m)": 0.5608, + "Tp (total) (s)": 4.796 + }, + { + "Date+Time": "2006-07-05T00:00:00Z", + "Hs (total) (m)": 0.5791, + "Tp (total) (s)": 7.3519 + }, + { + "Date+Time": "2006-07-06T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 7.3153 + }, + { + "Date+Time": "2006-07-07T00:00:00Z", + "Hs (total) (m)": 1.6488, + "Tp (total) (s)": 8.1515 + }, + { + "Date+Time": "2006-07-08T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 8.6756 + }, + { + "Date+Time": "2006-07-09T00:00:00Z", + "Hs (total) (m)": 2.9595, + "Tp (total) (s)": 8.6947 + }, + { + "Date+Time": "2006-07-10T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 9.9162 + }, + { + "Date+Time": "2006-07-11T00:00:00Z", + "Hs (total) (m)": 1.9234, + "Tp (total) (s)": 8.9496 + }, + { + "Date+Time": "2006-07-12T00:00:00Z", + "Hs (total) (m)": 1.812, + "Tp (total) (s)": 10.918 + }, + { + "Date+Time": "2006-07-13T00:00:00Z", + "Hs (total) (m)": 1.6991, + "Tp (total) (s)": 14.2506 + }, + { + "Date+Time": "2006-07-14T00:00:00Z", + "Hs (total) (m)": 1.2825, + "Tp (total) (s)": 11.8191 + }, + { + "Date+Time": "2006-07-15T00:00:00Z", + "Hs (total) (m)": 0.6943, + "Tp (total) (s)": 9.4073 + }, + { + "Date+Time": "2006-07-16T00:00:00Z", + "Hs (total) (m)": 0.6127, + "Tp (total) (s)": 8.3628 + }, + { + "Date+Time": "2006-07-17T00:00:00Z", + "Hs (total) (m)": 1.0063, + "Tp (total) (s)": 11.2438 + }, + { + "Date+Time": "2006-07-18T00:00:00Z", + "Hs (total) (m)": 1.0155, + "Tp (total) (s)": 9.772 + }, + { + "Date+Time": "2006-07-19T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 9.4241 + }, + { + "Date+Time": "2006-07-20T00:00:00Z", + "Hs (total) (m)": 1.1299, + "Tp (total) (s)": 9.991 + }, + { + "Date+Time": "2006-07-21T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 8.8389 + }, + { + "Date+Time": "2006-07-22T00:00:00Z", + "Hs (total) (m)": 0.8995, + "Tp (total) (s)": 7.7319 + }, + { + "Date+Time": "2006-07-23T00:00:00Z", + "Hs (total) (m)": 1.8303, + "Tp (total) (s)": 8.4681 + }, + { + "Date+Time": "2006-07-24T00:00:00Z", + "Hs (total) (m)": 1.2535, + "Tp (total) (s)": 7.7563 + }, + { + "Date+Time": "2006-07-25T00:00:00Z", + "Hs (total) (m)": 0.9865, + "Tp (total) (s)": 6.5126 + }, + { + "Date+Time": "2006-07-26T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 7.1291 + }, + { + "Date+Time": "2006-07-27T00:00:00Z", + "Hs (total) (m)": 0.6905, + "Tp (total) (s)": 6.4203 + }, + { + "Date+Time": "2006-07-28T00:00:00Z", + "Hs (total) (m)": 1.3688, + "Tp (total) (s)": 12.7941 + }, + { + "Date+Time": "2006-07-29T00:00:00Z", + "Hs (total) (m)": 1.8097, + "Tp (total) (s)": 12.9765 + }, + { + "Date+Time": "2006-07-30T00:00:00Z", + "Hs (total) (m)": 2.4628, + "Tp (total) (s)": 8.6856 + }, + { + "Date+Time": "2006-07-31T00:00:00Z", + "Hs (total) (m)": 3.1167, + "Tp (total) (s)": 10.1436 + }, + { + "Date+Time": "2006-08-01T00:00:00Z", + "Hs (total) (m)": 2.3484, + "Tp (total) (s)": 10.1451 + }, + { + "Date+Time": "2006-08-02T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 8.401 + }, + { + "Date+Time": "2006-08-03T00:00:00Z", + "Hs (total) (m)": 0.8492, + "Tp (total) (s)": 6.1983 + }, + { + "Date+Time": "2006-08-04T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 8.61 + }, + { + "Date+Time": "2006-08-05T00:00:00Z", + "Hs (total) (m)": 1.1185, + "Tp (total) (s)": 8.6154 + }, + { + "Date+Time": "2006-08-06T00:00:00Z", + "Hs (total) (m)": 1.7945, + "Tp (total) (s)": 8.6383 + }, + { + "Date+Time": "2006-08-07T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 9.64 + }, + { + "Date+Time": "2006-08-08T00:00:00Z", + "Hs (total) (m)": 1.0186, + "Tp (total) (s)": 9.3699 + }, + { + "Date+Time": "2006-08-09T00:00:00Z", + "Hs (total) (m)": 1.0048, + "Tp (total) (s)": 6.4867 + }, + { + "Date+Time": "2006-08-10T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 9.547 + }, + { + "Date+Time": "2006-08-11T00:00:00Z", + "Hs (total) (m)": 1.1063, + "Tp (total) (s)": 8.15 + }, + { + "Date+Time": "2006-08-12T00:00:00Z", + "Hs (total) (m)": 0.8271, + "Tp (total) (s)": 8.3331 + }, + { + "Date+Time": "2006-08-13T00:00:00Z", + "Hs (total) (m)": 0.8103, + "Tp (total) (s)": 5.8649 + }, + { + "Date+Time": "2006-08-14T00:00:00Z", + "Hs (total) (m)": 0.6066, + "Tp (total) (s)": 6.2609 + }, + { + "Date+Time": "2006-08-15T00:00:00Z", + "Hs (total) (m)": 0.6447, + "Tp (total) (s)": 7.2649 + }, + { + "Date+Time": "2006-08-16T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 8.2072 + }, + { + "Date+Time": "2006-08-17T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 10.1337 + }, + { + "Date+Time": "2006-08-18T00:00:00Z", + "Hs (total) (m)": 0.8209, + "Tp (total) (s)": 9.7812 + }, + { + "Date+Time": "2006-08-19T00:00:00Z", + "Hs (total) (m)": 0.8332, + "Tp (total) (s)": 8.2904 + }, + { + "Date+Time": "2006-08-20T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 5.7878 + }, + { + "Date+Time": "2006-08-21T00:00:00Z", + "Hs (total) (m)": 0.8675, + "Tp (total) (s)": 5.295 + }, + { + "Date+Time": "2006-08-22T00:00:00Z", + "Hs (total) (m)": 0.8538, + "Tp (total) (s)": 7.1314 + }, + { + "Date+Time": "2006-08-23T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 7.989 + }, + { + "Date+Time": "2006-08-24T00:00:00Z", + "Hs (total) (m)": 1.3062, + "Tp (total) (s)": 8.739 + }, + { + "Date+Time": "2006-08-25T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 8.7245 + }, + { + "Date+Time": "2006-08-26T00:00:00Z", + "Hs (total) (m)": 1.7029, + "Tp (total) (s)": 7.9943 + }, + { + "Date+Time": "2006-08-27T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 10.1871 + }, + { + "Date+Time": "2006-08-28T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 8.4811 + }, + { + "Date+Time": "2006-08-29T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 8.3117 + }, + { + "Date+Time": "2006-08-30T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 8.0294 + }, + { + "Date+Time": "2006-08-31T00:00:00Z", + "Hs (total) (m)": 1.7792, + "Tp (total) (s)": 7.609 + }, + { + "Date+Time": "2006-09-01T00:00:00Z", + "Hs (total) (m)": 2.7841, + "Tp (total) (s)": 11.7512 + }, + { + "Date+Time": "2006-09-02T00:00:00Z", + "Hs (total) (m)": 2.3446, + "Tp (total) (s)": 10.5327 + }, + { + "Date+Time": "2006-09-03T00:00:00Z", + "Hs (total) (m)": 2.1676, + "Tp (total) (s)": 9.0312 + }, + { + "Date+Time": "2006-09-04T00:00:00Z", + "Hs (total) (m)": 1.7579, + "Tp (total) (s)": 9.3455 + }, + { + "Date+Time": "2006-09-05T00:00:00Z", + "Hs (total) (m)": 1.9005, + "Tp (total) (s)": 9.4478 + }, + { + "Date+Time": "2006-09-06T00:00:00Z", + "Hs (total) (m)": 1.4695, + "Tp (total) (s)": 7.8532 + }, + { + "Date+Time": "2006-09-07T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 7.6609 + }, + { + "Date+Time": "2006-09-08T00:00:00Z", + "Hs (total) (m)": 0.5242, + "Tp (total) (s)": 6.2769 + }, + { + "Date+Time": "2006-09-09T00:00:00Z", + "Hs (total) (m)": 0.6043, + "Tp (total) (s)": 3.9483 + }, + { + "Date+Time": "2006-09-10T00:00:00Z", + "Hs (total) (m)": 1.2665, + "Tp (total) (s)": 10.9447 + }, + { + "Date+Time": "2006-09-11T00:00:00Z", + "Hs (total) (m)": 1.5282, + "Tp (total) (s)": 7.8669 + }, + { + "Date+Time": "2006-09-12T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 9.1556 + }, + { + "Date+Time": "2006-09-13T00:00:00Z", + "Hs (total) (m)": 2.1363, + "Tp (total) (s)": 11.7756 + }, + { + "Date+Time": "2006-09-14T00:00:00Z", + "Hs (total) (m)": 3.7141, + "Tp (total) (s)": 14.1453 + }, + { + "Date+Time": "2006-09-15T00:00:00Z", + "Hs (total) (m)": 2.4827, + "Tp (total) (s)": 13.493 + }, + { + "Date+Time": "2006-09-16T00:00:00Z", + "Hs (total) (m)": 1.9921, + "Tp (total) (s)": 10.8631 + }, + { + "Date+Time": "2006-09-17T00:00:00Z", + "Hs (total) (m)": 2.3408, + "Tp (total) (s)": 14.2155 + }, + { + "Date+Time": "2006-09-18T00:00:00Z", + "Hs (total) (m)": 2.2912, + "Tp (total) (s)": 11.7473 + }, + { + "Date+Time": "2006-09-19T00:00:00Z", + "Hs (total) (m)": 3.0473, + "Tp (total) (s)": 9.4867 + }, + { + "Date+Time": "2006-09-20T00:00:00Z", + "Hs (total) (m)": 3.3418, + "Tp (total) (s)": 8.9488 + }, + { + "Date+Time": "2006-09-21T00:00:00Z", + "Hs (total) (m)": 3.3441, + "Tp (total) (s)": 13.6166 + }, + { + "Date+Time": "2006-09-22T00:00:00Z", + "Hs (total) (m)": 2.8344, + "Tp (total) (s)": 12.4538 + }, + { + "Date+Time": "2006-09-23T00:00:00Z", + "Hs (total) (m)": 1.8166, + "Tp (total) (s)": 10.8844 + }, + { + "Date+Time": "2006-09-24T00:00:00Z", + "Hs (total) (m)": 1.2886, + "Tp (total) (s)": 9.1319 + }, + { + "Date+Time": "2006-09-25T00:00:00Z", + "Hs (total) (m)": 0.9964, + "Tp (total) (s)": 8.0912 + }, + { + "Date+Time": "2006-09-26T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 15.585 + }, + { + "Date+Time": "2006-09-27T00:00:00Z", + "Hs (total) (m)": 2.6307, + "Tp (total) (s)": 16.1908 + }, + { + "Date+Time": "2006-09-28T00:00:00Z", + "Hs (total) (m)": 3.0259, + "Tp (total) (s)": 11.7283 + }, + { + "Date+Time": "2006-09-29T00:00:00Z", + "Hs (total) (m)": 2.1432, + "Tp (total) (s)": 9.8903 + }, + { + "Date+Time": "2006-09-30T00:00:00Z", + "Hs (total) (m)": 2.4453, + "Tp (total) (s)": 11.903 + }, + { + "Date+Time": "2006-10-01T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 11.2186 + }, + { + "Date+Time": "2006-10-02T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 9.238 + }, + { + "Date+Time": "2006-10-03T00:00:00Z", + "Hs (total) (m)": 0.8911, + "Tp (total) (s)": 7.9409 + }, + { + "Date+Time": "2006-10-04T00:00:00Z", + "Hs (total) (m)": 0.5562, + "Tp (total) (s)": 8.0164 + }, + { + "Date+Time": "2006-10-05T00:00:00Z", + "Hs (total) (m)": 1.5709, + "Tp (total) (s)": 10.7044 + }, + { + "Date+Time": "2006-10-06T00:00:00Z", + "Hs (total) (m)": 3.2807, + "Tp (total) (s)": 9.4089 + }, + { + "Date+Time": "2006-10-07T00:00:00Z", + "Hs (total) (m)": 2.6391, + "Tp (total) (s)": 10.6296 + }, + { + "Date+Time": "2006-10-08T00:00:00Z", + "Hs (total) (m)": 2.559, + "Tp (total) (s)": 9.8224 + }, + { + "Date+Time": "2006-10-09T00:00:00Z", + "Hs (total) (m)": 2.3141, + "Tp (total) (s)": 11.916 + }, + { + "Date+Time": "2006-10-10T00:00:00Z", + "Hs (total) (m)": 1.7685, + "Tp (total) (s)": 10.2283 + }, + { + "Date+Time": "2006-10-11T00:00:00Z", + "Hs (total) (m)": 2.0981, + "Tp (total) (s)": 10.5518 + }, + { + "Date+Time": "2006-10-12T00:00:00Z", + "Hs (total) (m)": 3.2975, + "Tp (total) (s)": 10.5098 + }, + { + "Date+Time": "2006-10-13T00:00:00Z", + "Hs (total) (m)": 2.4812, + "Tp (total) (s)": 11.1995 + }, + { + "Date+Time": "2006-10-14T00:00:00Z", + "Hs (total) (m)": 2.5445, + "Tp (total) (s)": 10.8425 + }, + { + "Date+Time": "2006-10-15T00:00:00Z", + "Hs (total) (m)": 1.9364, + "Tp (total) (s)": 10.9172 + }, + { + "Date+Time": "2006-10-16T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 10.4907 + }, + { + "Date+Time": "2006-10-17T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 9.3348 + }, + { + "Date+Time": "2006-10-18T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 10.9615 + }, + { + "Date+Time": "2006-10-19T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 11.6039 + }, + { + "Date+Time": "2006-10-20T00:00:00Z", + "Hs (total) (m)": 0.8431, + "Tp (total) (s)": 10.5861 + }, + { + "Date+Time": "2006-10-21T00:00:00Z", + "Hs (total) (m)": 1.1353, + "Tp (total) (s)": 13.255 + }, + { + "Date+Time": "2006-10-22T00:00:00Z", + "Hs (total) (m)": 2.1317, + "Tp (total) (s)": 11.6512 + }, + { + "Date+Time": "2006-10-23T00:00:00Z", + "Hs (total) (m)": 1.6335, + "Tp (total) (s)": 10.0887 + }, + { + "Date+Time": "2006-10-24T00:00:00Z", + "Hs (total) (m)": 0.8576, + "Tp (total) (s)": 10.4457 + }, + { + "Date+Time": "2006-10-25T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 9.5553 + }, + { + "Date+Time": "2006-10-26T00:00:00Z", + "Hs (total) (m)": 0.94, + "Tp (total) (s)": 3.1701 + }, + { + "Date+Time": "2006-10-27T00:00:00Z", + "Hs (total) (m)": 1.5786, + "Tp (total) (s)": 8.6001 + }, + { + "Date+Time": "2006-10-28T00:00:00Z", + "Hs (total) (m)": 2.0981, + "Tp (total) (s)": 9.5317 + }, + { + "Date+Time": "2006-10-29T00:00:00Z", + "Hs (total) (m)": 1.6137, + "Tp (total) (s)": 12.7819 + }, + { + "Date+Time": "2006-10-30T00:00:00Z", + "Hs (total) (m)": 1.8426, + "Tp (total) (s)": 11.2072 + }, + { + "Date+Time": "2006-10-31T00:00:00Z", + "Hs (total) (m)": 2.6147, + "Tp (total) (s)": 8.5726 + }, + { + "Date+Time": "2006-11-01T00:00:00Z", + "Hs (total) (m)": 1.4092, + "Tp (total) (s)": 11.6192 + }, + { + "Date+Time": "2006-11-02T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 10.2649 + }, + { + "Date+Time": "2006-11-03T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 12.5744 + }, + { + "Date+Time": "2006-11-04T00:00:00Z", + "Hs (total) (m)": 1.0788, + "Tp (total) (s)": 12.6873 + }, + { + "Date+Time": "2006-11-05T00:00:00Z", + "Hs (total) (m)": 1.2162, + "Tp (total) (s)": 11.1522 + }, + { + "Date+Time": "2006-11-06T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 11.8114 + }, + { + "Date+Time": "2006-11-07T00:00:00Z", + "Hs (total) (m)": 1.5145, + "Tp (total) (s)": 12.4081 + }, + { + "Date+Time": "2006-11-08T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 11.6131 + }, + { + "Date+Time": "2006-11-09T00:00:00Z", + "Hs (total) (m)": 1.3375, + "Tp (total) (s)": 10.0261 + }, + { + "Date+Time": "2006-11-10T00:00:00Z", + "Hs (total) (m)": 1.8784, + "Tp (total) (s)": 9.608 + }, + { + "Date+Time": "2006-11-11T00:00:00Z", + "Hs (total) (m)": 2.0402, + "Tp (total) (s)": 12.6972 + }, + { + "Date+Time": "2006-11-12T00:00:00Z", + "Hs (total) (m)": 2.8245, + "Tp (total) (s)": 14.2529 + }, + { + "Date+Time": "2006-11-13T00:00:00Z", + "Hs (total) (m)": 3.0786, + "Tp (total) (s)": 8.7443 + }, + { + "Date+Time": "2006-11-14T00:00:00Z", + "Hs (total) (m)": 3.1632, + "Tp (total) (s)": 13.5922 + }, + { + "Date+Time": "2006-11-15T00:00:00Z", + "Hs (total) (m)": 2.607, + "Tp (total) (s)": 13.4762 + }, + { + "Date+Time": "2006-11-16T00:00:00Z", + "Hs (total) (m)": 1.9837, + "Tp (total) (s)": 13.5189 + }, + { + "Date+Time": "2006-11-17T00:00:00Z", + "Hs (total) (m)": 1.5946, + "Tp (total) (s)": 12.0556 + }, + { + "Date+Time": "2006-11-18T00:00:00Z", + "Hs (total) (m)": 3.5035, + "Tp (total) (s)": 11.6199 + }, + { + "Date+Time": "2006-11-19T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 11.5337 + }, + { + "Date+Time": "2006-11-20T00:00:00Z", + "Hs (total) (m)": 3.8598, + "Tp (total) (s)": 11.4116 + }, + { + "Date+Time": "2006-11-21T00:00:00Z", + "Hs (total) (m)": 3.7309, + "Tp (total) (s)": 14.9464 + }, + { + "Date+Time": "2006-11-22T00:00:00Z", + "Hs (total) (m)": 2.0226, + "Tp (total) (s)": 11.8854 + }, + { + "Date+Time": "2006-11-23T00:00:00Z", + "Hs (total) (m)": 2.5033, + "Tp (total) (s)": 10.2824 + }, + { + "Date+Time": "2006-11-24T00:00:00Z", + "Hs (total) (m)": 3.7118, + "Tp (total) (s)": 13.6143 + }, + { + "Date+Time": "2006-11-25T00:00:00Z", + "Hs (total) (m)": 3.5249, + "Tp (total) (s)": 12.3363 + }, + { + "Date+Time": "2006-11-26T00:00:00Z", + "Hs (total) (m)": 2.8069, + "Tp (total) (s)": 14.9342 + }, + { + "Date+Time": "2006-11-27T00:00:00Z", + "Hs (total) (m)": 3.1098, + "Tp (total) (s)": 10.4602 + }, + { + "Date+Time": "2006-11-28T00:00:00Z", + "Hs (total) (m)": 4.9185, + "Tp (total) (s)": 14.3378 + }, + { + "Date+Time": "2006-11-29T00:00:00Z", + "Hs (total) (m)": 4.3771, + "Tp (total) (s)": 14.3437 + }, + { + "Date+Time": "2006-11-30T00:00:00Z", + "Hs (total) (m)": 3.9743, + "Tp (total) (s)": 12.3638 + }, + { + "Date+Time": "2006-12-01T00:00:00Z", + "Hs (total) (m)": 4.3352, + "Tp (total) (s)": 13.7776 + }, + { + "Date+Time": "2006-12-02T00:00:00Z", + "Hs (total) (m)": 4.1009, + "Tp (total) (s)": 10.683 + }, + { + "Date+Time": "2006-12-03T00:00:00Z", + "Hs (total) (m)": 4.519, + "Tp (total) (s)": 11.4391 + }, + { + "Date+Time": "2006-12-04T00:00:00Z", + "Hs (total) (m)": 5.2301, + "Tp (total) (s)": 14.2032 + }, + { + "Date+Time": "2006-12-05T00:00:00Z", + "Hs (total) (m)": 4.0078, + "Tp (total) (s)": 11.6184 + }, + { + "Date+Time": "2006-12-06T00:00:00Z", + "Hs (total) (m)": 4.4862, + "Tp (total) (s)": 13.2099 + }, + { + "Date+Time": "2006-12-07T00:00:00Z", + "Hs (total) (m)": 4.696, + "Tp (total) (s)": 10.4495 + }, + { + "Date+Time": "2006-12-08T00:00:00Z", + "Hs (total) (m)": 4.6037, + "Tp (total) (s)": 15.4347 + }, + { + "Date+Time": "2006-12-09T00:00:00Z", + "Hs (total) (m)": 2.781, + "Tp (total) (s)": 12.6888 + }, + { + "Date+Time": "2006-12-10T00:00:00Z", + "Hs (total) (m)": 2.9305, + "Tp (total) (s)": 11.1263 + }, + { + "Date+Time": "2006-12-11T00:00:00Z", + "Hs (total) (m)": 4.5793, + "Tp (total) (s)": 14.4719 + }, + { + "Date+Time": "2006-12-12T00:00:00Z", + "Hs (total) (m)": 4.8296, + "Tp (total) (s)": 15.4889 + }, + { + "Date+Time": "2006-12-13T00:00:00Z", + "Hs (total) (m)": 3.7149, + "Tp (total) (s)": 14.3651 + }, + { + "Date+Time": "2006-12-14T00:00:00Z", + "Hs (total) (m)": 5.3546, + "Tp (total) (s)": 13.2051 + }, + { + "Date+Time": "2006-12-15T00:00:00Z", + "Hs (total) (m)": 3.1152, + "Tp (total) (s)": 12.4058 + }, + { + "Date+Time": "2006-12-16T00:00:00Z", + "Hs (total) (m)": 2.2752, + "Tp (total) (s)": 11.4582 + }, + { + "Date+Time": "2006-12-17T00:00:00Z", + "Hs (total) (m)": 1.7891, + "Tp (total) (s)": 9.9055 + }, + { + "Date+Time": "2006-12-18T00:00:00Z", + "Hs (total) (m)": 1.7396, + "Tp (total) (s)": 8.9969 + }, + { + "Date+Time": "2006-12-19T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 10.1131 + }, + { + "Date+Time": "2006-12-20T00:00:00Z", + "Hs (total) (m)": 1.0002, + "Tp (total) (s)": 8.9381 + }, + { + "Date+Time": "2006-12-21T00:00:00Z", + "Hs (total) (m)": 2.1477, + "Tp (total) (s)": 11.063 + }, + { + "Date+Time": "2006-12-22T00:00:00Z", + "Hs (total) (m)": 2.0142, + "Tp (total) (s)": 10.6548 + }, + { + "Date+Time": "2006-12-23T00:00:00Z", + "Hs (total) (m)": 2.2973, + "Tp (total) (s)": 15.3546 + }, + { + "Date+Time": "2006-12-24T00:00:00Z", + "Hs (total) (m)": 2.3957, + "Tp (total) (s)": 14.0606 + }, + { + "Date+Time": "2006-12-25T00:00:00Z", + "Hs (total) (m)": 2.1065, + "Tp (total) (s)": 12.1151 + }, + { + "Date+Time": "2006-12-26T00:00:00Z", + "Hs (total) (m)": 2.2668, + "Tp (total) (s)": 13.9218 + }, + { + "Date+Time": "2006-12-27T00:00:00Z", + "Hs (total) (m)": 2.2546, + "Tp (total) (s)": 11.8107 + }, + { + "Date+Time": "2006-12-28T00:00:00Z", + "Hs (total) (m)": 1.4252, + "Tp (total) (s)": 9.5714 + }, + { + "Date+Time": "2006-12-29T00:00:00Z", + "Hs (total) (m)": 3.2846, + "Tp (total) (s)": 11.7611 + }, + { + "Date+Time": "2006-12-30T00:00:00Z", + "Hs (total) (m)": 4.2268, + "Tp (total) (s)": 12.2631 + }, + { + "Date+Time": "2006-12-31T00:00:00Z", + "Hs (total) (m)": 4.0155, + "Tp (total) (s)": 11.6184 + }, + { + "Date+Time": "2007-01-01T00:00:00Z", + "Hs (total) (m)": 4.2192, + "Tp (total) (s)": 13.0245 + }, + { + "Date+Time": "2007-01-02T00:00:00Z", + "Hs (total) (m)": 4.2947, + "Tp (total) (s)": 12.5568 + }, + { + "Date+Time": "2007-01-03T00:00:00Z", + "Hs (total) (m)": 3.4524, + "Tp (total) (s)": 13.7402 + }, + { + "Date+Time": "2007-01-04T00:00:00Z", + "Hs (total) (m)": 3.9796, + "Tp (total) (s)": 12.0838 + }, + { + "Date+Time": "2007-01-05T00:00:00Z", + "Hs (total) (m)": 3.0282, + "Tp (total) (s)": 12.0388 + }, + { + "Date+Time": "2007-01-06T00:00:00Z", + "Hs (total) (m)": 3.1014, + "Tp (total) (s)": 14.2293 + }, + { + "Date+Time": "2007-01-07T00:00:00Z", + "Hs (total) (m)": 3.6676, + "Tp (total) (s)": 12.8582 + }, + { + "Date+Time": "2007-01-08T00:00:00Z", + "Hs (total) (m)": 2.6811, + "Tp (total) (s)": 12.5805 + }, + { + "Date+Time": "2007-01-09T00:00:00Z", + "Hs (total) (m)": 5.3176, + "Tp (total) (s)": 11.6183 + }, + { + "Date+Time": "2007-01-10T00:00:00Z", + "Hs (total) (m)": 3.2037, + "Tp (total) (s)": 13.6876 + }, + { + "Date+Time": "2007-01-11T00:00:00Z", + "Hs (total) (m)": 5.9523, + "Tp (total) (s)": 10.6971 + }, + { + "Date+Time": "2007-01-12T00:00:00Z", + "Hs (total) (m)": 4.6495, + "Tp (total) (s)": 15.4592 + }, + { + "Date+Time": "2007-01-13T00:00:00Z", + "Hs (total) (m)": 4.0002, + "Tp (total) (s)": 15.1013 + }, + { + "Date+Time": "2007-01-14T00:00:00Z", + "Hs (total) (m)": 3.5592, + "Tp (total) (s)": 13.7684 + }, + { + "Date+Time": "2007-01-15T00:00:00Z", + "Hs (total) (m)": 3.8972, + "Tp (total) (s)": 11.3414 + }, + { + "Date+Time": "2007-01-16T00:00:00Z", + "Hs (total) (m)": 2.9244, + "Tp (total) (s)": 12.6431 + }, + { + "Date+Time": "2007-01-17T00:00:00Z", + "Hs (total) (m)": 3.1823, + "Tp (total) (s)": 9.83 + }, + { + "Date+Time": "2007-01-18T00:00:00Z", + "Hs (total) (m)": 3.8827, + "Tp (total) (s)": 13.7242 + }, + { + "Date+Time": "2007-01-19T00:00:00Z", + "Hs (total) (m)": 4.7372, + "Tp (total) (s)": 13.596 + }, + { + "Date+Time": "2007-01-20T00:00:00Z", + "Hs (total) (m)": 5.1538, + "Tp (total) (s)": 11.5116 + }, + { + "Date+Time": "2007-01-21T00:00:00Z", + "Hs (total) (m)": 4.4656, + "Tp (total) (s)": 14.0728 + }, + { + "Date+Time": "2007-01-22T00:00:00Z", + "Hs (total) (m)": 2.3782, + "Tp (total) (s)": 12.5973 + }, + { + "Date+Time": "2007-01-23T00:00:00Z", + "Hs (total) (m)": 1.062, + "Tp (total) (s)": 11.3498 + }, + { + "Date+Time": "2007-01-24T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 7.783 + }, + { + "Date+Time": "2007-01-25T00:00:00Z", + "Hs (total) (m)": 1.0613, + "Tp (total) (s)": 11.3521 + }, + { + "Date+Time": "2007-01-26T00:00:00Z", + "Hs (total) (m)": 0.9117, + "Tp (total) (s)": 10.6685 + }, + { + "Date+Time": "2007-01-27T00:00:00Z", + "Hs (total) (m)": 0.8316, + "Tp (total) (s)": 10.2992 + }, + { + "Date+Time": "2007-01-28T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 14.0584 + }, + { + "Date+Time": "2007-01-29T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 10.3664 + }, + { + "Date+Time": "2007-01-30T00:00:00Z", + "Hs (total) (m)": 1.4611, + "Tp (total) (s)": 14.9449 + }, + { + "Date+Time": "2007-01-31T00:00:00Z", + "Hs (total) (m)": 2.752, + "Tp (total) (s)": 15.286 + }, + { + "Date+Time": "2007-02-01T00:00:00Z", + "Hs (total) (m)": 1.9761, + "Tp (total) (s)": 12.7552 + }, + { + "Date+Time": "2007-02-02T00:00:00Z", + "Hs (total) (m)": 2.9466, + "Tp (total) (s)": 16.4853 + }, + { + "Date+Time": "2007-02-03T00:00:00Z", + "Hs (total) (m)": 2.337, + "Tp (total) (s)": 14.0233 + }, + { + "Date+Time": "2007-02-04T00:00:00Z", + "Hs (total) (m)": 1.6495, + "Tp (total) (s)": 13.2458 + }, + { + "Date+Time": "2007-02-05T00:00:00Z", + "Hs (total) (m)": 1.6259, + "Tp (total) (s)": 13.5449 + }, + { + "Date+Time": "2007-02-06T00:00:00Z", + "Hs (total) (m)": 1.1238, + "Tp (total) (s)": 11.9358 + }, + { + "Date+Time": "2007-02-07T00:00:00Z", + "Hs (total) (m)": 0.8164, + "Tp (total) (s)": 14.0675 + }, + { + "Date+Time": "2007-02-08T00:00:00Z", + "Hs (total) (m)": 1.6228, + "Tp (total) (s)": 6.8255 + }, + { + "Date+Time": "2007-02-09T00:00:00Z", + "Hs (total) (m)": 3.2983, + "Tp (total) (s)": 12.4134 + }, + { + "Date+Time": "2007-02-10T00:00:00Z", + "Hs (total) (m)": 2.3545, + "Tp (total) (s)": 12.6606 + }, + { + "Date+Time": "2007-02-11T00:00:00Z", + "Hs (total) (m)": 4.2085, + "Tp (total) (s)": 16.113 + }, + { + "Date+Time": "2007-02-12T00:00:00Z", + "Hs (total) (m)": 4.3466, + "Tp (total) (s)": 17.0835 + }, + { + "Date+Time": "2007-02-13T00:00:00Z", + "Hs (total) (m)": 3.766, + "Tp (total) (s)": 12.5904 + }, + { + "Date+Time": "2007-02-14T00:00:00Z", + "Hs (total) (m)": 2.5445, + "Tp (total) (s)": 12.4645 + }, + { + "Date+Time": "2007-02-15T00:00:00Z", + "Hs (total) (m)": 4.3825, + "Tp (total) (s)": 11.8152 + }, + { + "Date+Time": "2007-02-16T00:00:00Z", + "Hs (total) (m)": 4.6678, + "Tp (total) (s)": 12.8849 + }, + { + "Date+Time": "2007-02-17T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 13.4762 + }, + { + "Date+Time": "2007-02-18T00:00:00Z", + "Hs (total) (m)": 1.8998, + "Tp (total) (s)": 12.7255 + }, + { + "Date+Time": "2007-02-19T00:00:00Z", + "Hs (total) (m)": 2.6719, + "Tp (total) (s)": 10.3099 + }, + { + "Date+Time": "2007-02-20T00:00:00Z", + "Hs (total) (m)": 3.9956, + "Tp (total) (s)": 12.5301 + }, + { + "Date+Time": "2007-02-21T00:00:00Z", + "Hs (total) (m)": 2.7787, + "Tp (total) (s)": 13.6845 + }, + { + "Date+Time": "2007-02-22T00:00:00Z", + "Hs (total) (m)": 2.9328, + "Tp (total) (s)": 11.7595 + }, + { + "Date+Time": "2007-02-23T00:00:00Z", + "Hs (total) (m)": 4.6144, + "Tp (total) (s)": 18.3813 + }, + { + "Date+Time": "2007-02-24T00:00:00Z", + "Hs (total) (m)": 3.6737, + "Tp (total) (s)": 15.8216 + }, + { + "Date+Time": "2007-02-25T00:00:00Z", + "Hs (total) (m)": 2.3301, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "2007-02-26T00:00:00Z", + "Hs (total) (m)": 2.2561, + "Tp (total) (s)": 11.6337 + }, + { + "Date+Time": "2007-02-27T00:00:00Z", + "Hs (total) (m)": 1.9189, + "Tp (total) (s)": 10.2824 + }, + { + "Date+Time": "2007-02-28T00:00:00Z", + "Hs (total) (m)": 4.8082, + "Tp (total) (s)": 12.4653 + }, + { + "Date+Time": "2007-03-01T00:00:00Z", + "Hs (total) (m)": 3.2434, + "Tp (total) (s)": 12.6698 + }, + { + "Date+Time": "2007-03-02T00:00:00Z", + "Hs (total) (m)": 2.5521, + "Tp (total) (s)": 13.2618 + }, + { + "Date+Time": "2007-03-03T00:00:00Z", + "Hs (total) (m)": 2.1821, + "Tp (total) (s)": 11.5543 + }, + { + "Date+Time": "2007-03-04T00:00:00Z", + "Hs (total) (m)": 1.9845, + "Tp (total) (s)": 10.2153 + }, + { + "Date+Time": "2007-03-05T00:00:00Z", + "Hs (total) (m)": 5.9924, + "Tp (total) (s)": 13.7124 + }, + { + "Date+Time": "2007-03-06T00:00:00Z", + "Hs (total) (m)": 4.6449, + "Tp (total) (s)": 12.804 + }, + { + "Date+Time": "2007-03-07T00:00:00Z", + "Hs (total) (m)": 3.6225, + "Tp (total) (s)": 12.785 + }, + { + "Date+Time": "2007-03-08T00:00:00Z", + "Hs (total) (m)": 2.8459, + "Tp (total) (s)": 12.6576 + }, + { + "Date+Time": "2007-03-09T00:00:00Z", + "Hs (total) (m)": 3.1526, + "Tp (total) (s)": 11.0408 + }, + { + "Date+Time": "2007-03-10T00:00:00Z", + "Hs (total) (m)": 3.9583, + "Tp (total) (s)": 16.1512 + }, + { + "Date+Time": "2007-03-11T00:00:00Z", + "Hs (total) (m)": 4.0414, + "Tp (total) (s)": 13.4495 + }, + { + "Date+Time": "2007-03-12T00:00:00Z", + "Hs (total) (m)": 3.486, + "Tp (total) (s)": 15.5629 + }, + { + "Date+Time": "2007-03-13T00:00:00Z", + "Hs (total) (m)": 3.106, + "Tp (total) (s)": 13.9607 + }, + { + "Date+Time": "2007-03-14T00:00:00Z", + "Hs (total) (m)": 2.2858, + "Tp (total) (s)": 13.1352 + }, + { + "Date+Time": "2007-03-15T00:00:00Z", + "Hs (total) (m)": 2.7894, + "Tp (total) (s)": 13.5418 + }, + { + "Date+Time": "2007-03-16T00:00:00Z", + "Hs (total) (m)": 2.3698, + "Tp (total) (s)": 13.7036 + }, + { + "Date+Time": "2007-03-17T00:00:00Z", + "Hs (total) (m)": 2.9794, + "Tp (total) (s)": 13.0345 + }, + { + "Date+Time": "2007-03-18T00:00:00Z", + "Hs (total) (m)": 3.2914, + "Tp (total) (s)": 11.1843 + }, + { + "Date+Time": "2007-03-19T00:00:00Z", + "Hs (total) (m)": 4.1887, + "Tp (total) (s)": 14.613 + }, + { + "Date+Time": "2007-03-20T00:00:00Z", + "Hs (total) (m)": 2.3598, + "Tp (total) (s)": 13.9897 + }, + { + "Date+Time": "2007-03-21T00:00:00Z", + "Hs (total) (m)": 1.149, + "Tp (total) (s)": 12.508 + }, + { + "Date+Time": "2007-03-22T00:00:00Z", + "Hs (total) (m)": 1.249, + "Tp (total) (s)": 7.8639 + }, + { + "Date+Time": "2007-03-23T00:00:00Z", + "Hs (total) (m)": 1.1826, + "Tp (total) (s)": 10.5243 + }, + { + "Date+Time": "2007-03-24T00:00:00Z", + "Hs (total) (m)": 1.2406, + "Tp (total) (s)": 10.4541 + }, + { + "Date+Time": "2007-03-25T00:00:00Z", + "Hs (total) (m)": 1.7006, + "Tp (total) (s)": 12.6446 + }, + { + "Date+Time": "2007-03-26T00:00:00Z", + "Hs (total) (m)": 1.6823, + "Tp (total) (s)": 12.7255 + }, + { + "Date+Time": "2007-03-27T00:00:00Z", + "Hs (total) (m)": 1.3443, + "Tp (total) (s)": 11.7161 + }, + { + "Date+Time": "2007-03-28T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 12.3074 + }, + { + "Date+Time": "2007-03-29T00:00:00Z", + "Hs (total) (m)": 1.3276, + "Tp (total) (s)": 10.8364 + }, + { + "Date+Time": "2007-03-30T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 9.6232 + }, + { + "Date+Time": "2007-03-31T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 12.0533 + }, + { + "Date+Time": "2007-04-01T00:00:00Z", + "Hs (total) (m)": 1.3497, + "Tp (total) (s)": 11.5543 + }, + { + "Date+Time": "2007-04-02T00:00:00Z", + "Hs (total) (m)": 0.969, + "Tp (total) (s)": 11.1759 + }, + { + "Date+Time": "2007-04-03T00:00:00Z", + "Hs (total) (m)": 0.8324, + "Tp (total) (s)": 11.2941 + }, + { + "Date+Time": "2007-04-04T00:00:00Z", + "Hs (total) (m)": 0.7767, + "Tp (total) (s)": 14.7351 + }, + { + "Date+Time": "2007-04-05T00:00:00Z", + "Hs (total) (m)": 0.763, + "Tp (total) (s)": 12.3859 + }, + { + "Date+Time": "2007-04-06T00:00:00Z", + "Hs (total) (m)": 0.5943, + "Tp (total) (s)": 10.8638 + }, + { + "Date+Time": "2007-04-07T00:00:00Z", + "Hs (total) (m)": 0.5615, + "Tp (total) (s)": 13.461 + }, + { + "Date+Time": "2007-04-08T00:00:00Z", + "Hs (total) (m)": 0.8911, + "Tp (total) (s)": 11.1393 + }, + { + "Date+Time": "2007-04-09T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 10.5136 + }, + { + "Date+Time": "2007-04-10T00:00:00Z", + "Hs (total) (m)": 1.1437, + "Tp (total) (s)": 10.4869 + }, + { + "Date+Time": "2007-04-11T00:00:00Z", + "Hs (total) (m)": 1.0155, + "Tp (total) (s)": 8.1645 + }, + { + "Date+Time": "2007-04-12T00:00:00Z", + "Hs (total) (m)": 0.8423, + "Tp (total) (s)": 11.4086 + }, + { + "Date+Time": "2007-04-13T00:00:00Z", + "Hs (total) (m)": 1.545, + "Tp (total) (s)": 11.4879 + }, + { + "Date+Time": "2007-04-14T00:00:00Z", + "Hs (total) (m)": 1.4962, + "Tp (total) (s)": 10.6487 + }, + { + "Date+Time": "2007-04-15T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 12.7117 + }, + { + "Date+Time": "2007-04-16T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 9.772 + }, + { + "Date+Time": "2007-04-17T00:00:00Z", + "Hs (total) (m)": 1.3489, + "Tp (total) (s)": 10.4205 + }, + { + "Date+Time": "2007-04-18T00:00:00Z", + "Hs (total) (m)": 1.0582, + "Tp (total) (s)": 9.4394 + }, + { + "Date+Time": "2007-04-19T00:00:00Z", + "Hs (total) (m)": 0.9316, + "Tp (total) (s)": 9.9643 + }, + { + "Date+Time": "2007-04-20T00:00:00Z", + "Hs (total) (m)": 0.7355, + "Tp (total) (s)": 10.3198 + }, + { + "Date+Time": "2007-04-21T00:00:00Z", + "Hs (total) (m)": 1.4466, + "Tp (total) (s)": 9.3326 + }, + { + "Date+Time": "2007-04-22T00:00:00Z", + "Hs (total) (m)": 2.0363, + "Tp (total) (s)": 8.5429 + }, + { + "Date+Time": "2007-04-23T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 8.7298 + }, + { + "Date+Time": "2007-04-24T00:00:00Z", + "Hs (total) (m)": 2.4514, + "Tp (total) (s)": 10.2634 + }, + { + "Date+Time": "2007-04-25T00:00:00Z", + "Hs (total) (m)": 2.1676, + "Tp (total) (s)": 12.3257 + }, + { + "Date+Time": "2007-04-26T00:00:00Z", + "Hs (total) (m)": 2.1218, + "Tp (total) (s)": 12.9292 + }, + { + "Date+Time": "2007-04-27T00:00:00Z", + "Hs (total) (m)": 1.5625, + "Tp (total) (s)": 11.4757 + }, + { + "Date+Time": "2007-04-28T00:00:00Z", + "Hs (total) (m)": 1.22, + "Tp (total) (s)": 10.3374 + }, + { + "Date+Time": "2007-04-29T00:00:00Z", + "Hs (total) (m)": 1.2284, + "Tp (total) (s)": 11.8229 + }, + { + "Date+Time": "2007-04-30T00:00:00Z", + "Hs (total) (m)": 1.2764, + "Tp (total) (s)": 10.4297 + }, + { + "Date+Time": "2007-05-01T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 10.5579 + }, + { + "Date+Time": "2007-05-02T00:00:00Z", + "Hs (total) (m)": 1.1414, + "Tp (total) (s)": 9.7758 + }, + { + "Date+Time": "2007-05-03T00:00:00Z", + "Hs (total) (m)": 1.0582, + "Tp (total) (s)": 10.7662 + }, + { + "Date+Time": "2007-05-04T00:00:00Z", + "Hs (total) (m)": 0.7538, + "Tp (total) (s)": 9.7385 + }, + { + "Date+Time": "2007-05-05T00:00:00Z", + "Hs (total) (m)": 0.6523, + "Tp (total) (s)": 8.8969 + }, + { + "Date+Time": "2007-05-06T00:00:00Z", + "Hs (total) (m)": 2.134, + "Tp (total) (s)": 6.7087 + }, + { + "Date+Time": "2007-05-07T00:00:00Z", + "Hs (total) (m)": 2.1447, + "Tp (total) (s)": 10.8928 + }, + { + "Date+Time": "2007-05-08T00:00:00Z", + "Hs (total) (m)": 2.9382, + "Tp (total) (s)": 10.9073 + }, + { + "Date+Time": "2007-05-09T00:00:00Z", + "Hs (total) (m)": 1.8921, + "Tp (total) (s)": 9.6461 + }, + { + "Date+Time": "2007-05-10T00:00:00Z", + "Hs (total) (m)": 3.9514, + "Tp (total) (s)": 9.4096 + }, + { + "Date+Time": "2007-05-11T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 9.7667 + }, + { + "Date+Time": "2007-05-12T00:00:00Z", + "Hs (total) (m)": 1.5267, + "Tp (total) (s)": 8.7687 + }, + { + "Date+Time": "2007-05-13T00:00:00Z", + "Hs (total) (m)": 1.87, + "Tp (total) (s)": 11.7779 + }, + { + "Date+Time": "2007-05-14T00:00:00Z", + "Hs (total) (m)": 1.1475, + "Tp (total) (s)": 10.9859 + }, + { + "Date+Time": "2007-05-15T00:00:00Z", + "Hs (total) (m)": 1.4023, + "Tp (total) (s)": 6.9811 + }, + { + "Date+Time": "2007-05-16T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 8.4223 + }, + { + "Date+Time": "2007-05-17T00:00:00Z", + "Hs (total) (m)": 2.1897, + "Tp (total) (s)": 7.976 + }, + { + "Date+Time": "2007-05-18T00:00:00Z", + "Hs (total) (m)": 2.4163, + "Tp (total) (s)": 9.1632 + }, + { + "Date+Time": "2007-05-19T00:00:00Z", + "Hs (total) (m)": 5.5737, + "Tp (total) (s)": 14.777 + }, + { + "Date+Time": "2007-05-20T00:00:00Z", + "Hs (total) (m)": 2.8222, + "Tp (total) (s)": 13.0154 + }, + { + "Date+Time": "2007-05-21T00:00:00Z", + "Hs (total) (m)": 1.5946, + "Tp (total) (s)": 11.3514 + }, + { + "Date+Time": "2007-05-22T00:00:00Z", + "Hs (total) (m)": 2.1737, + "Tp (total) (s)": 9.4508 + }, + { + "Date+Time": "2007-05-23T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 13.8127 + }, + { + "Date+Time": "2007-05-24T00:00:00Z", + "Hs (total) (m)": 1.4893, + "Tp (total) (s)": 11.3483 + }, + { + "Date+Time": "2007-05-25T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 10.2847 + }, + { + "Date+Time": "2007-05-26T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 10.0589 + }, + { + "Date+Time": "2007-05-27T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 9.4043 + }, + { + "Date+Time": "2007-05-28T00:00:00Z", + "Hs (total) (m)": 0.9781, + "Tp (total) (s)": 8.7962 + }, + { + "Date+Time": "2007-05-29T00:00:00Z", + "Hs (total) (m)": 0.8736, + "Tp (total) (s)": 8.6787 + }, + { + "Date+Time": "2007-05-30T00:00:00Z", + "Hs (total) (m)": 0.856, + "Tp (total) (s)": 8.7992 + }, + { + "Date+Time": "2007-05-31T00:00:00Z", + "Hs (total) (m)": 1.8357, + "Tp (total) (s)": 12.9429 + }, + { + "Date+Time": "2007-06-01T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 10.6037 + }, + { + "Date+Time": "2007-06-02T00:00:00Z", + "Hs (total) (m)": 1.632, + "Tp (total) (s)": 5.4376 + }, + { + "Date+Time": "2007-06-03T00:00:00Z", + "Hs (total) (m)": 1.7396, + "Tp (total) (s)": 10.0673 + }, + { + "Date+Time": "2007-06-04T00:00:00Z", + "Hs (total) (m)": 1.5404, + "Tp (total) (s)": 10.3282 + }, + { + "Date+Time": "2007-06-05T00:00:00Z", + "Hs (total) (m)": 1.2246, + "Tp (total) (s)": 9.7964 + }, + { + "Date+Time": "2007-06-06T00:00:00Z", + "Hs (total) (m)": 1.5656, + "Tp (total) (s)": 13.4739 + }, + { + "Date+Time": "2007-06-07T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 11.4261 + }, + { + "Date+Time": "2007-06-08T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 9.9116 + }, + { + "Date+Time": "2007-06-09T00:00:00Z", + "Hs (total) (m)": 0.6516, + "Tp (total) (s)": 8.4849 + }, + { + "Date+Time": "2007-06-10T00:00:00Z", + "Hs (total) (m)": 0.5638, + "Tp (total) (s)": 7.5472 + }, + { + "Date+Time": "2007-06-11T00:00:00Z", + "Hs (total) (m)": 0.6752, + "Tp (total) (s)": 9.5515 + }, + { + "Date+Time": "2007-06-12T00:00:00Z", + "Hs (total) (m)": 0.66, + "Tp (total) (s)": 7.8639 + }, + { + "Date+Time": "2007-06-13T00:00:00Z", + "Hs (total) (m)": 0.6874, + "Tp (total) (s)": 8.1866 + }, + { + "Date+Time": "2007-06-14T00:00:00Z", + "Hs (total) (m)": 0.8698, + "Tp (total) (s)": 8.1668 + }, + { + "Date+Time": "2007-06-15T00:00:00Z", + "Hs (total) (m)": 0.5753, + "Tp (total) (s)": 7.8303 + }, + { + "Date+Time": "2007-06-16T00:00:00Z", + "Hs (total) (m)": 0.5448, + "Tp (total) (s)": 2.8275 + }, + { + "Date+Time": "2007-06-17T00:00:00Z", + "Hs (total) (m)": 0.5562, + "Tp (total) (s)": 9.3974 + }, + { + "Date+Time": "2007-06-18T00:00:00Z", + "Hs (total) (m)": 0.5425, + "Tp (total) (s)": 8.6047 + }, + { + "Date+Time": "2007-06-19T00:00:00Z", + "Hs (total) (m)": 0.7073, + "Tp (total) (s)": 7.9707 + }, + { + "Date+Time": "2007-06-20T00:00:00Z", + "Hs (total) (m)": 0.8957, + "Tp (total) (s)": 8.8794 + }, + { + "Date+Time": "2007-06-21T00:00:00Z", + "Hs (total) (m)": 0.8209, + "Tp (total) (s)": 8.5421 + }, + { + "Date+Time": "2007-06-22T00:00:00Z", + "Hs (total) (m)": 0.5127, + "Tp (total) (s)": 7.9722 + }, + { + "Date+Time": "2007-06-23T00:00:00Z", + "Hs (total) (m)": 0.634, + "Tp (total) (s)": 5.7459 + }, + { + "Date+Time": "2007-06-24T00:00:00Z", + "Hs (total) (m)": 0.7889, + "Tp (total) (s)": 5.8016 + }, + { + "Date+Time": "2007-06-25T00:00:00Z", + "Hs (total) (m)": 0.7935, + "Tp (total) (s)": 5.942 + }, + { + "Date+Time": "2007-06-26T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 7.7815 + }, + { + "Date+Time": "2007-06-27T00:00:00Z", + "Hs (total) (m)": 1.323, + "Tp (total) (s)": 6.5874 + }, + { + "Date+Time": "2007-06-28T00:00:00Z", + "Hs (total) (m)": 0.9537, + "Tp (total) (s)": 7.0421 + }, + { + "Date+Time": "2007-06-29T00:00:00Z", + "Hs (total) (m)": 1.3474, + "Tp (total) (s)": 7.0482 + }, + { + "Date+Time": "2007-06-30T00:00:00Z", + "Hs (total) (m)": 1.1216, + "Tp (total) (s)": 6.6912 + }, + { + "Date+Time": "2007-07-01T00:00:00Z", + "Hs (total) (m)": 2.7467, + "Tp (total) (s)": 13.3106 + }, + { + "Date+Time": "2007-07-02T00:00:00Z", + "Hs (total) (m)": 2.1805, + "Tp (total) (s)": 12.9017 + }, + { + "Date+Time": "2007-07-03T00:00:00Z", + "Hs (total) (m)": 1.9524, + "Tp (total) (s)": 8.8481 + }, + { + "Date+Time": "2007-07-04T00:00:00Z", + "Hs (total) (m)": 2.1752, + "Tp (total) (s)": 7.6739 + }, + { + "Date+Time": "2007-07-05T00:00:00Z", + "Hs (total) (m)": 2.0753, + "Tp (total) (s)": 9.3989 + }, + { + "Date+Time": "2007-07-06T00:00:00Z", + "Hs (total) (m)": 2.5773, + "Tp (total) (s)": 7.8333 + }, + { + "Date+Time": "2007-07-07T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 8.7001 + }, + { + "Date+Time": "2007-07-08T00:00:00Z", + "Hs (total) (m)": 1.0369, + "Tp (total) (s)": 8.639 + }, + { + "Date+Time": "2007-07-09T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 7.947 + }, + { + "Date+Time": "2007-07-10T00:00:00Z", + "Hs (total) (m)": 1.8044, + "Tp (total) (s)": 7.2588 + }, + { + "Date+Time": "2007-07-11T00:00:00Z", + "Hs (total) (m)": 0.8179, + "Tp (total) (s)": 7.5526 + }, + { + "Date+Time": "2007-07-12T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 9.8369 + }, + { + "Date+Time": "2007-07-13T00:00:00Z", + "Hs (total) (m)": 1.1505, + "Tp (total) (s)": 9.7537 + }, + { + "Date+Time": "2007-07-14T00:00:00Z", + "Hs (total) (m)": 1.4039, + "Tp (total) (s)": 11.2156 + }, + { + "Date+Time": "2007-07-15T00:00:00Z", + "Hs (total) (m)": 1.0575, + "Tp (total) (s)": 9.5477 + }, + { + "Date+Time": "2007-07-16T00:00:00Z", + "Hs (total) (m)": 0.9651, + "Tp (total) (s)": 8.3476 + }, + { + "Date+Time": "2007-07-17T00:00:00Z", + "Hs (total) (m)": 0.7851, + "Tp (total) (s)": 7.0154 + }, + { + "Date+Time": "2007-07-18T00:00:00Z", + "Hs (total) (m)": 1.1017, + "Tp (total) (s)": 6.3845 + }, + { + "Date+Time": "2007-07-19T00:00:00Z", + "Hs (total) (m)": 0.75, + "Tp (total) (s)": 6.6736 + }, + { + "Date+Time": "2007-07-20T00:00:00Z", + "Hs (total) (m)": 0.4967, + "Tp (total) (s)": 5.1729 + }, + { + "Date+Time": "2007-07-21T00:00:00Z", + "Hs (total) (m)": 0.428, + "Tp (total) (s)": 8.3644 + }, + { + "Date+Time": "2007-07-22T00:00:00Z", + "Hs (total) (m)": 0.4761, + "Tp (total) (s)": 7.2573 + }, + { + "Date+Time": "2007-07-23T00:00:00Z", + "Hs (total) (m)": 0.6912, + "Tp (total) (s)": 6.5363 + }, + { + "Date+Time": "2007-07-24T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 9.6202 + }, + { + "Date+Time": "2007-07-25T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 5.903 + }, + { + "Date+Time": "2007-07-26T00:00:00Z", + "Hs (total) (m)": 2.3667, + "Tp (total) (s)": 8.0035 + }, + { + "Date+Time": "2007-07-27T00:00:00Z", + "Hs (total) (m)": 2.3812, + "Tp (total) (s)": 11.2423 + }, + { + "Date+Time": "2007-07-28T00:00:00Z", + "Hs (total) (m)": 1.4435, + "Tp (total) (s)": 9.4943 + }, + { + "Date+Time": "2007-07-29T00:00:00Z", + "Hs (total) (m)": 0.8629, + "Tp (total) (s)": 8.5162 + }, + { + "Date+Time": "2007-07-30T00:00:00Z", + "Hs (total) (m)": 0.8873, + "Tp (total) (s)": 7.8455 + }, + { + "Date+Time": "2007-07-31T00:00:00Z", + "Hs (total) (m)": 0.7553, + "Tp (total) (s)": 7.8928 + }, + { + "Date+Time": "2007-08-01T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 8.6917 + }, + { + "Date+Time": "2007-08-02T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 8.594 + }, + { + "Date+Time": "2007-08-03T00:00:00Z", + "Hs (total) (m)": 0.9743, + "Tp (total) (s)": 9.2486 + }, + { + "Date+Time": "2007-08-04T00:00:00Z", + "Hs (total) (m)": 2.5765, + "Tp (total) (s)": 7.8341 + }, + { + "Date+Time": "2007-08-05T00:00:00Z", + "Hs (total) (m)": 2.8382, + "Tp (total) (s)": 14.1423 + }, + { + "Date+Time": "2007-08-06T00:00:00Z", + "Hs (total) (m)": 1.8143, + "Tp (total) (s)": 11.7641 + }, + { + "Date+Time": "2007-08-07T00:00:00Z", + "Hs (total) (m)": 1.4428, + "Tp (total) (s)": 9.4562 + }, + { + "Date+Time": "2007-08-08T00:00:00Z", + "Hs (total) (m)": 0.763, + "Tp (total) (s)": 8.6024 + }, + { + "Date+Time": "2007-08-09T00:00:00Z", + "Hs (total) (m)": 1.1109, + "Tp (total) (s)": 8.3277 + }, + { + "Date+Time": "2007-08-10T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 7.2977 + }, + { + "Date+Time": "2007-08-11T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 9.4615 + }, + { + "Date+Time": "2007-08-12T00:00:00Z", + "Hs (total) (m)": 0.9812, + "Tp (total) (s)": 8.0271 + }, + { + "Date+Time": "2007-08-13T00:00:00Z", + "Hs (total) (m)": 0.9774, + "Tp (total) (s)": 6.1502 + }, + { + "Date+Time": "2007-08-14T00:00:00Z", + "Hs (total) (m)": 0.7134, + "Tp (total) (s)": 11.5207 + }, + { + "Date+Time": "2007-08-15T00:00:00Z", + "Hs (total) (m)": 0.8736, + "Tp (total) (s)": 3.2861 + }, + { + "Date+Time": "2007-08-16T00:00:00Z", + "Hs (total) (m)": 1.3466, + "Tp (total) (s)": 10.123 + }, + { + "Date+Time": "2007-08-17T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 9.4302 + }, + { + "Date+Time": "2007-08-18T00:00:00Z", + "Hs (total) (m)": 1.7769, + "Tp (total) (s)": 7.3763 + }, + { + "Date+Time": "2007-08-19T00:00:00Z", + "Hs (total) (m)": 1.9158, + "Tp (total) (s)": 8.6146 + }, + { + "Date+Time": "2007-08-20T00:00:00Z", + "Hs (total) (m)": 1.1238, + "Tp (total) (s)": 10.1833 + }, + { + "Date+Time": "2007-08-21T00:00:00Z", + "Hs (total) (m)": 1.1635, + "Tp (total) (s)": 7.7639 + }, + { + "Date+Time": "2007-08-22T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 7.7349 + }, + { + "Date+Time": "2007-08-23T00:00:00Z", + "Hs (total) (m)": 0.8095, + "Tp (total) (s)": 11.3002 + }, + { + "Date+Time": "2007-08-24T00:00:00Z", + "Hs (total) (m)": 0.8591, + "Tp (total) (s)": 10.474 + }, + { + "Date+Time": "2007-08-25T00:00:00Z", + "Hs (total) (m)": 0.9873, + "Tp (total) (s)": 9.228 + }, + { + "Date+Time": "2007-08-26T00:00:00Z", + "Hs (total) (m)": 1.2322, + "Tp (total) (s)": 9.8888 + }, + { + "Date+Time": "2007-08-27T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 10.271 + }, + { + "Date+Time": "2007-08-28T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 8.7489 + }, + { + "Date+Time": "2007-08-29T00:00:00Z", + "Hs (total) (m)": 0.618, + "Tp (total) (s)": 7.7754 + }, + { + "Date+Time": "2007-08-30T00:00:00Z", + "Hs (total) (m)": 0.7149, + "Tp (total) (s)": 10.4541 + }, + { + "Date+Time": "2007-08-31T00:00:00Z", + "Hs (total) (m)": 0.9163, + "Tp (total) (s)": 6.5813 + }, + { + "Date+Time": "2007-09-01T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 7.696 + }, + { + "Date+Time": "2007-09-02T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 7.8196 + }, + { + "Date+Time": "2007-09-03T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 7.5755 + }, + { + "Date+Time": "2007-09-04T00:00:00Z", + "Hs (total) (m)": 0.8332, + "Tp (total) (s)": 8.9198 + }, + { + "Date+Time": "2007-09-05T00:00:00Z", + "Hs (total) (m)": 0.7378, + "Tp (total) (s)": 7.8776 + }, + { + "Date+Time": "2007-09-06T00:00:00Z", + "Hs (total) (m)": 0.7851, + "Tp (total) (s)": 12.8063 + }, + { + "Date+Time": "2007-09-07T00:00:00Z", + "Hs (total) (m)": 0.8263, + "Tp (total) (s)": 11.4399 + }, + { + "Date+Time": "2007-09-08T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 11.565 + }, + { + "Date+Time": "2007-09-09T00:00:00Z", + "Hs (total) (m)": 0.6699, + "Tp (total) (s)": 9.4203 + }, + { + "Date+Time": "2007-09-10T00:00:00Z", + "Hs (total) (m)": 0.8431, + "Tp (total) (s)": 8.1835 + }, + { + "Date+Time": "2007-09-11T00:00:00Z", + "Hs (total) (m)": 0.6767, + "Tp (total) (s)": 7.2787 + }, + { + "Date+Time": "2007-09-12T00:00:00Z", + "Hs (total) (m)": 0.5493, + "Tp (total) (s)": 7.7944 + }, + { + "Date+Time": "2007-09-13T00:00:00Z", + "Hs (total) (m)": 0.5615, + "Tp (total) (s)": 11.2056 + }, + { + "Date+Time": "2007-09-14T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 6.9102 + }, + { + "Date+Time": "2007-09-15T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 12.4744 + }, + { + "Date+Time": "2007-09-16T00:00:00Z", + "Hs (total) (m)": 2.0112, + "Tp (total) (s)": 10.815 + }, + { + "Date+Time": "2007-09-17T00:00:00Z", + "Hs (total) (m)": 2.0333, + "Tp (total) (s)": 7.8532 + }, + { + "Date+Time": "2007-09-18T00:00:00Z", + "Hs (total) (m)": 1.0453, + "Tp (total) (s)": 11.0401 + }, + { + "Date+Time": "2007-09-19T00:00:00Z", + "Hs (total) (m)": 1.9745, + "Tp (total) (s)": 7.7136 + }, + { + "Date+Time": "2007-09-20T00:00:00Z", + "Hs (total) (m)": 2.2523, + "Tp (total) (s)": 9.5996 + }, + { + "Date+Time": "2007-09-21T00:00:00Z", + "Hs (total) (m)": 2.1882, + "Tp (total) (s)": 11.3521 + }, + { + "Date+Time": "2007-09-22T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 12.4187 + }, + { + "Date+Time": "2007-09-23T00:00:00Z", + "Hs (total) (m)": 2.1676, + "Tp (total) (s)": 10.3587 + }, + { + "Date+Time": "2007-09-24T00:00:00Z", + "Hs (total) (m)": 2.884, + "Tp (total) (s)": 12.5584 + }, + { + "Date+Time": "2007-09-25T00:00:00Z", + "Hs (total) (m)": 3.4097, + "Tp (total) (s)": 12.6293 + }, + { + "Date+Time": "2007-09-26T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 11.1751 + }, + { + "Date+Time": "2007-09-27T00:00:00Z", + "Hs (total) (m)": 0.6539, + "Tp (total) (s)": 10.3191 + }, + { + "Date+Time": "2007-09-28T00:00:00Z", + "Hs (total) (m)": 0.8843, + "Tp (total) (s)": 11.2362 + }, + { + "Date+Time": "2007-09-29T00:00:00Z", + "Hs (total) (m)": 1.4374, + "Tp (total) (s)": 11.536 + }, + { + "Date+Time": "2007-09-30T00:00:00Z", + "Hs (total) (m)": 1.1681, + "Tp (total) (s)": 10.5731 + }, + { + "Date+Time": "2007-10-01T00:00:00Z", + "Hs (total) (m)": 0.9438, + "Tp (total) (s)": 12.2906 + }, + { + "Date+Time": "2007-10-02T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 10.3809 + }, + { + "Date+Time": "2007-10-03T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 10.6906 + }, + { + "Date+Time": "2007-10-04T00:00:00Z", + "Hs (total) (m)": 1.6343, + "Tp (total) (s)": 11.6039 + }, + { + "Date+Time": "2007-10-05T00:00:00Z", + "Hs (total) (m)": 1.2101, + "Tp (total) (s)": 10.3336 + }, + { + "Date+Time": "2007-10-06T00:00:00Z", + "Hs (total) (m)": 1.574, + "Tp (total) (s)": 9.5981 + }, + { + "Date+Time": "2007-10-07T00:00:00Z", + "Hs (total) (m)": 1.6053, + "Tp (total) (s)": 10.8776 + }, + { + "Date+Time": "2007-10-08T00:00:00Z", + "Hs (total) (m)": 1.0613, + "Tp (total) (s)": 9.5889 + }, + { + "Date+Time": "2007-10-09T00:00:00Z", + "Hs (total) (m)": 1.6053, + "Tp (total) (s)": 9.9178 + }, + { + "Date+Time": "2007-10-10T00:00:00Z", + "Hs (total) (m)": 1.4771, + "Tp (total) (s)": 9.6744 + }, + { + "Date+Time": "2007-10-11T00:00:00Z", + "Hs (total) (m)": 1.7312, + "Tp (total) (s)": 11.7267 + }, + { + "Date+Time": "2007-10-12T00:00:00Z", + "Hs (total) (m)": 2.0386, + "Tp (total) (s)": 12.0518 + }, + { + "Date+Time": "2007-10-13T00:00:00Z", + "Hs (total) (m)": 2.3247, + "Tp (total) (s)": 13.9569 + }, + { + "Date+Time": "2007-10-14T00:00:00Z", + "Hs (total) (m)": 2.3141, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "2007-10-15T00:00:00Z", + "Hs (total) (m)": 1.8784, + "Tp (total) (s)": 11.52 + }, + { + "Date+Time": "2007-10-16T00:00:00Z", + "Hs (total) (m)": 2.5063, + "Tp (total) (s)": 12.5301 + }, + { + "Date+Time": "2007-10-17T00:00:00Z", + "Hs (total) (m)": 1.5992, + "Tp (total) (s)": 10.0513 + }, + { + "Date+Time": "2007-10-18T00:00:00Z", + "Hs (total) (m)": 1.0269, + "Tp (total) (s)": 9.7522 + }, + { + "Date+Time": "2007-10-19T00:00:00Z", + "Hs (total) (m)": 1.3474, + "Tp (total) (s)": 8.3735 + }, + { + "Date+Time": "2007-10-20T00:00:00Z", + "Hs (total) (m)": 1.735, + "Tp (total) (s)": 10.3954 + }, + { + "Date+Time": "2007-10-21T00:00:00Z", + "Hs (total) (m)": 1.7335, + "Tp (total) (s)": 9.9223 + }, + { + "Date+Time": "2007-10-22T00:00:00Z", + "Hs (total) (m)": 2.0928, + "Tp (total) (s)": 12.1342 + }, + { + "Date+Time": "2007-10-23T00:00:00Z", + "Hs (total) (m)": 1.6839, + "Tp (total) (s)": 10.873 + }, + { + "Date+Time": "2007-10-24T00:00:00Z", + "Hs (total) (m)": 1.6221, + "Tp (total) (s)": 13.2443 + }, + { + "Date+Time": "2007-10-25T00:00:00Z", + "Hs (total) (m)": 1.6465, + "Tp (total) (s)": 12.2005 + }, + { + "Date+Time": "2007-10-26T00:00:00Z", + "Hs (total) (m)": 2.1783, + "Tp (total) (s)": 12.9116 + }, + { + "Date+Time": "2007-10-27T00:00:00Z", + "Hs (total) (m)": 2.2858, + "Tp (total) (s)": 12.7178 + }, + { + "Date+Time": "2007-10-28T00:00:00Z", + "Hs (total) (m)": 3.6157, + "Tp (total) (s)": 13.9134 + }, + { + "Date+Time": "2007-10-29T00:00:00Z", + "Hs (total) (m)": 2.8092, + "Tp (total) (s)": 10.4511 + }, + { + "Date+Time": "2007-10-30T00:00:00Z", + "Hs (total) (m)": 2.2629, + "Tp (total) (s)": 11.5322 + }, + { + "Date+Time": "2007-10-31T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 11.3262 + }, + { + "Date+Time": "2007-11-01T00:00:00Z", + "Hs (total) (m)": 2.0394, + "Tp (total) (s)": 10.4511 + }, + { + "Date+Time": "2007-11-02T00:00:00Z", + "Hs (total) (m)": 2.2217, + "Tp (total) (s)": 10.2733 + }, + { + "Date+Time": "2007-11-03T00:00:00Z", + "Hs (total) (m)": 1.7357, + "Tp (total) (s)": 9.8109 + }, + { + "Date+Time": "2007-11-04T00:00:00Z", + "Hs (total) (m)": 1.7182, + "Tp (total) (s)": 11.7435 + }, + { + "Date+Time": "2007-11-05T00:00:00Z", + "Hs (total) (m)": 1.1101, + "Tp (total) (s)": 9.669 + }, + { + "Date+Time": "2007-11-06T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 11.7046 + }, + { + "Date+Time": "2007-11-07T00:00:00Z", + "Hs (total) (m)": 1.5519, + "Tp (total) (s)": 12.2158 + }, + { + "Date+Time": "2007-11-08T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 13.5205 + }, + { + "Date+Time": "2007-11-09T00:00:00Z", + "Hs (total) (m)": 1.7708, + "Tp (total) (s)": 12.2105 + }, + { + "Date+Time": "2007-11-10T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 11.504 + }, + { + "Date+Time": "2007-11-11T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 9.0289 + }, + { + "Date+Time": "2007-11-12T00:00:00Z", + "Hs (total) (m)": 0.811, + "Tp (total) (s)": 9.856 + }, + { + "Date+Time": "2007-11-13T00:00:00Z", + "Hs (total) (m)": 1.0651, + "Tp (total) (s)": 8.4422 + }, + { + "Date+Time": "2007-11-14T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 11.9625 + }, + { + "Date+Time": "2007-11-15T00:00:00Z", + "Hs (total) (m)": 1.0269, + "Tp (total) (s)": 10.3366 + }, + { + "Date+Time": "2007-11-16T00:00:00Z", + "Hs (total) (m)": 0.6211, + "Tp (total) (s)": 8.0668 + }, + { + "Date+Time": "2007-11-17T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 6.2372 + }, + { + "Date+Time": "2007-11-18T00:00:00Z", + "Hs (total) (m)": 2.2904, + "Tp (total) (s)": 8.1622 + }, + { + "Date+Time": "2007-11-19T00:00:00Z", + "Hs (total) (m)": 1.5412, + "Tp (total) (s)": 9.4249 + }, + { + "Date+Time": "2007-11-20T00:00:00Z", + "Hs (total) (m)": 1.0689, + "Tp (total) (s)": 3.431 + }, + { + "Date+Time": "2007-11-21T00:00:00Z", + "Hs (total) (m)": 0.6539, + "Tp (total) (s)": 3.1602 + }, + { + "Date+Time": "2007-11-22T00:00:00Z", + "Hs (total) (m)": 0.7126, + "Tp (total) (s)": 11.6878 + }, + { + "Date+Time": "2007-11-23T00:00:00Z", + "Hs (total) (m)": 0.8423, + "Tp (total) (s)": 9.7079 + }, + { + "Date+Time": "2007-11-24T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 9.2509 + }, + { + "Date+Time": "2007-11-25T00:00:00Z", + "Hs (total) (m)": 2.2126, + "Tp (total) (s)": 14.2064 + }, + { + "Date+Time": "2007-11-26T00:00:00Z", + "Hs (total) (m)": 1.3604, + "Tp (total) (s)": 13.1001 + }, + { + "Date+Time": "2007-11-27T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 11.726 + }, + { + "Date+Time": "2007-11-28T00:00:00Z", + "Hs (total) (m)": 2.179, + "Tp (total) (s)": 11.8656 + }, + { + "Date+Time": "2007-11-29T00:00:00Z", + "Hs (total) (m)": 2.4255, + "Tp (total) (s)": 12.55 + }, + { + "Date+Time": "2007-11-30T00:00:00Z", + "Hs (total) (m)": 2.3927, + "Tp (total) (s)": 10.7105 + }, + { + "Date+Time": "2007-12-01T00:00:00Z", + "Hs (total) (m)": 3.7736, + "Tp (total) (s)": 15.6713 + }, + { + "Date+Time": "2007-12-02T00:00:00Z", + "Hs (total) (m)": 6.0766, + "Tp (total) (s)": 16.2467 + }, + { + "Date+Time": "2007-12-03T00:00:00Z", + "Hs (total) (m)": 4.4465, + "Tp (total) (s)": 12.8086 + }, + { + "Date+Time": "2007-12-04T00:00:00Z", + "Hs (total) (m)": 2.8413, + "Tp (total) (s)": 12.801 + }, + { + "Date+Time": "2007-12-05T00:00:00Z", + "Hs (total) (m)": 3.7378, + "Tp (total) (s)": 10.3381 + }, + { + "Date+Time": "2007-12-06T00:00:00Z", + "Hs (total) (m)": 5.3529, + "Tp (total) (s)": 14.4018 + }, + { + "Date+Time": "2007-12-07T00:00:00Z", + "Hs (total) (m)": 4.1345, + "Tp (total) (s)": 12.5103 + }, + { + "Date+Time": "2007-12-08T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 12.4447 + }, + { + "Date+Time": "2007-12-09T00:00:00Z", + "Hs (total) (m)": 5.278, + "Tp (total) (s)": 12.5744 + }, + { + "Date+Time": "2007-12-10T00:00:00Z", + "Hs (total) (m)": 4.0063, + "Tp (total) (s)": 15.5164 + }, + { + "Date+Time": "2007-12-11T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 12.244 + }, + { + "Date+Time": "2007-12-12T00:00:00Z", + "Hs (total) (m)": 2.504, + "Tp (total) (s)": 11.1881 + }, + { + "Date+Time": "2007-12-13T00:00:00Z", + "Hs (total) (m)": 3.5272, + "Tp (total) (s)": 15.2501 + }, + { + "Date+Time": "2007-12-14T00:00:00Z", + "Hs (total) (m)": 3.4715, + "Tp (total) (s)": 11.6321 + }, + { + "Date+Time": "2007-12-15T00:00:00Z", + "Hs (total) (m)": 2.7573, + "Tp (total) (s)": 10.5594 + }, + { + "Date+Time": "2007-12-16T00:00:00Z", + "Hs (total) (m)": 3.7049, + "Tp (total) (s)": 15.3897 + }, + { + "Date+Time": "2007-12-17T00:00:00Z", + "Hs (total) (m)": 2.9664, + "Tp (total) (s)": 13.9576 + }, + { + "Date+Time": "2007-12-18T00:00:00Z", + "Hs (total) (m)": 2.2645, + "Tp (total) (s)": 12.8071 + }, + { + "Date+Time": "2007-12-19T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 12.1403 + }, + { + "Date+Time": "2007-12-20T00:00:00Z", + "Hs (total) (m)": 1.307, + "Tp (total) (s)": 11.5307 + }, + { + "Date+Time": "2007-12-21T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 13.9477 + }, + { + "Date+Time": "2007-12-22T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 13.599 + }, + { + "Date+Time": "2007-12-23T00:00:00Z", + "Hs (total) (m)": 1.8952, + "Tp (total) (s)": 10.9073 + }, + { + "Date+Time": "2007-12-24T00:00:00Z", + "Hs (total) (m)": 3.8179, + "Tp (total) (s)": 10.8997 + }, + { + "Date+Time": "2007-12-25T00:00:00Z", + "Hs (total) (m)": 2.7863, + "Tp (total) (s)": 13.5411 + }, + { + "Date+Time": "2007-12-26T00:00:00Z", + "Hs (total) (m)": 3.0099, + "Tp (total) (s)": 10.0375 + }, + { + "Date+Time": "2007-12-27T00:00:00Z", + "Hs (total) (m)": 3.6882, + "Tp (total) (s)": 12.6034 + }, + { + "Date+Time": "2007-12-28T00:00:00Z", + "Hs (total) (m)": 3.4982, + "Tp (total) (s)": 13.6372 + }, + { + "Date+Time": "2007-12-29T00:00:00Z", + "Hs (total) (m)": 4.0017, + "Tp (total) (s)": 11.9205 + }, + { + "Date+Time": "2007-12-30T00:00:00Z", + "Hs (total) (m)": 4.7723, + "Tp (total) (s)": 14.449 + }, + { + "Date+Time": "2007-12-31T00:00:00Z", + "Hs (total) (m)": 2.1783, + "Tp (total) (s)": 12.7056 + }, + { + "Date+Time": "2008-01-01T00:00:00Z", + "Hs (total) (m)": 2.8199, + "Tp (total) (s)": 13.757 + }, + { + "Date+Time": "2008-01-02T00:00:00Z", + "Hs (total) (m)": 2.5407, + "Tp (total) (s)": 14.3635 + }, + { + "Date+Time": "2008-01-03T00:00:00Z", + "Hs (total) (m)": 2.6254, + "Tp (total) (s)": 15.0586 + }, + { + "Date+Time": "2008-01-04T00:00:00Z", + "Hs (total) (m)": 4.1589, + "Tp (total) (s)": 18.2577 + }, + { + "Date+Time": "2008-01-05T00:00:00Z", + "Hs (total) (m)": 5.0414, + "Tp (total) (s)": 12.8432 + }, + { + "Date+Time": "2008-01-06T00:00:00Z", + "Hs (total) (m)": 3.4577, + "Tp (total) (s)": 13.7631 + }, + { + "Date+Time": "2008-01-07T00:00:00Z", + "Hs (total) (m)": 4.7395, + "Tp (total) (s)": 11.034 + }, + { + "Date+Time": "2008-01-08T00:00:00Z", + "Hs (total) (m)": 3.28, + "Tp (total) (s)": 11.3903 + }, + { + "Date+Time": "2008-01-09T00:00:00Z", + "Hs (total) (m)": 4.8896, + "Tp (total) (s)": 11.9197 + }, + { + "Date+Time": "2008-01-10T00:00:00Z", + "Hs (total) (m)": 2.9992, + "Tp (total) (s)": 11.6146 + }, + { + "Date+Time": "2008-01-11T00:00:00Z", + "Hs (total) (m)": 2.2423, + "Tp (total) (s)": 10.7006 + }, + { + "Date+Time": "2008-01-12T00:00:00Z", + "Hs (total) (m)": 2.073, + "Tp (total) (s)": 11.3308 + }, + { + "Date+Time": "2008-01-13T00:00:00Z", + "Hs (total) (m)": 2.9374, + "Tp (total) (s)": 9.3699 + }, + { + "Date+Time": "2008-01-14T00:00:00Z", + "Hs (total) (m)": 2.7299, + "Tp (total) (s)": 10.9119 + }, + { + "Date+Time": "2008-01-15T00:00:00Z", + "Hs (total) (m)": 2.1218, + "Tp (total) (s)": 12.7262 + }, + { + "Date+Time": "2008-01-16T00:00:00Z", + "Hs (total) (m)": 2.7551, + "Tp (total) (s)": 10.036 + }, + { + "Date+Time": "2008-01-17T00:00:00Z", + "Hs (total) (m)": 2.8039, + "Tp (total) (s)": 13.9424 + }, + { + "Date+Time": "2008-01-18T00:00:00Z", + "Hs (total) (m)": 3.9232, + "Tp (total) (s)": 13.0924 + }, + { + "Date+Time": "2008-01-19T00:00:00Z", + "Hs (total) (m)": 3.399, + "Tp (total) (s)": 11.6451 + }, + { + "Date+Time": "2008-01-20T00:00:00Z", + "Hs (total) (m)": 3.0961, + "Tp (total) (s)": 12.5355 + }, + { + "Date+Time": "2008-01-21T00:00:00Z", + "Hs (total) (m)": 2.0569, + "Tp (total) (s)": 11.9984 + }, + { + "Date+Time": "2008-01-22T00:00:00Z", + "Hs (total) (m)": 2.2256, + "Tp (total) (s)": 9.5752 + }, + { + "Date+Time": "2008-01-23T00:00:00Z", + "Hs (total) (m)": 3.0648, + "Tp (total) (s)": 16.5853 + }, + { + "Date+Time": "2008-01-24T00:00:00Z", + "Hs (total) (m)": 3.9964, + "Tp (total) (s)": 14.1079 + }, + { + "Date+Time": "2008-01-25T00:00:00Z", + "Hs (total) (m)": 4.8736, + "Tp (total) (s)": 14.0248 + }, + { + "Date+Time": "2008-01-26T00:00:00Z", + "Hs (total) (m)": 4.6365, + "Tp (total) (s)": 15.0876 + }, + { + "Date+Time": "2008-01-27T00:00:00Z", + "Hs (total) (m)": 3.0572, + "Tp (total) (s)": 13.7417 + }, + { + "Date+Time": "2008-01-28T00:00:00Z", + "Hs (total) (m)": 2.4583, + "Tp (total) (s)": 13.0734 + }, + { + "Date+Time": "2008-01-29T00:00:00Z", + "Hs (total) (m)": 2.9046, + "Tp (total) (s)": 13.7371 + }, + { + "Date+Time": "2008-01-30T00:00:00Z", + "Hs (total) (m)": 2.2065, + "Tp (total) (s)": 11.7565 + }, + { + "Date+Time": "2008-01-31T00:00:00Z", + "Hs (total) (m)": 4.9815, + "Tp (total) (s)": 11.2436 + }, + { + "Date+Time": "2008-02-01T00:00:00Z", + "Hs (total) (m)": 3.4906, + "Tp (total) (s)": 12.8719 + }, + { + "Date+Time": "2008-02-02T00:00:00Z", + "Hs (total) (m)": 2.018, + "Tp (total) (s)": 13.9058 + }, + { + "Date+Time": "2008-02-03T00:00:00Z", + "Hs (total) (m)": 4.4305, + "Tp (total) (s)": 10.3633 + }, + { + "Date+Time": "2008-02-04T00:00:00Z", + "Hs (total) (m)": 3.2197, + "Tp (total) (s)": 11.4238 + }, + { + "Date+Time": "2008-02-05T00:00:00Z", + "Hs (total) (m)": 2.5002, + "Tp (total) (s)": 12.9696 + }, + { + "Date+Time": "2008-02-06T00:00:00Z", + "Hs (total) (m)": 2.7345, + "Tp (total) (s)": 11.2789 + }, + { + "Date+Time": "2008-02-07T00:00:00Z", + "Hs (total) (m)": 2.9931, + "Tp (total) (s)": 9.4531 + }, + { + "Date+Time": "2008-02-08T00:00:00Z", + "Hs (total) (m)": 3.1686, + "Tp (total) (s)": 10.7479 + }, + { + "Date+Time": "2008-02-09T00:00:00Z", + "Hs (total) (m)": 2.6887, + "Tp (total) (s)": 10.9493 + }, + { + "Date+Time": "2008-02-10T00:00:00Z", + "Hs (total) (m)": 3.1175, + "Tp (total) (s)": 14.9289 + }, + { + "Date+Time": "2008-02-11T00:00:00Z", + "Hs (total) (m)": 2.3354, + "Tp (total) (s)": 15.9665 + }, + { + "Date+Time": "2008-02-12T00:00:00Z", + "Hs (total) (m)": 1.6793, + "Tp (total) (s)": 12.302 + }, + { + "Date+Time": "2008-02-13T00:00:00Z", + "Hs (total) (m)": 1.6739, + "Tp (total) (s)": 12.8056 + }, + { + "Date+Time": "2008-02-14T00:00:00Z", + "Hs (total) (m)": 1.2612, + "Tp (total) (s)": 11.3201 + }, + { + "Date+Time": "2008-02-15T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 15.247 + }, + { + "Date+Time": "2008-02-16T00:00:00Z", + "Hs (total) (m)": 1.8677, + "Tp (total) (s)": 14.0194 + }, + { + "Date+Time": "2008-02-17T00:00:00Z", + "Hs (total) (m)": 1.2543, + "Tp (total) (s)": 11.8892 + }, + { + "Date+Time": "2008-02-18T00:00:00Z", + "Hs (total) (m)": 1.1864, + "Tp (total) (s)": 13.8401 + }, + { + "Date+Time": "2008-02-19T00:00:00Z", + "Hs (total) (m)": 1.1277, + "Tp (total) (s)": 12.7667 + }, + { + "Date+Time": "2008-02-20T00:00:00Z", + "Hs (total) (m)": 1.2642, + "Tp (total) (s)": 11.8793 + }, + { + "Date+Time": "2008-02-21T00:00:00Z", + "Hs (total) (m)": 2.4987, + "Tp (total) (s)": 10.5373 + }, + { + "Date+Time": "2008-02-22T00:00:00Z", + "Hs (total) (m)": 3.795, + "Tp (total) (s)": 13.9195 + }, + { + "Date+Time": "2008-02-23T00:00:00Z", + "Hs (total) (m)": 3.0335, + "Tp (total) (s)": 14.8427 + }, + { + "Date+Time": "2008-02-24T00:00:00Z", + "Hs (total) (m)": 3.5195, + "Tp (total) (s)": 12.8323 + }, + { + "Date+Time": "2008-02-25T00:00:00Z", + "Hs (total) (m)": 2.8214, + "Tp (total) (s)": 12.3264 + }, + { + "Date+Time": "2008-02-26T00:00:00Z", + "Hs (total) (m)": 4.6892, + "Tp (total) (s)": 13.834 + }, + { + "Date+Time": "2008-02-27T00:00:00Z", + "Hs (total) (m)": 3.0854, + "Tp (total) (s)": 13.5014 + }, + { + "Date+Time": "2008-02-28T00:00:00Z", + "Hs (total) (m)": 1.6717, + "Tp (total) (s)": 11.4399 + }, + { + "Date+Time": "2008-02-29T00:00:00Z", + "Hs (total) (m)": 1.7701, + "Tp (total) (s)": 11.2247 + }, + { + "Date+Time": "2008-03-01T00:00:00Z", + "Hs (total) (m)": 4.2718, + "Tp (total) (s)": 12.5866 + }, + { + "Date+Time": "2008-03-02T00:00:00Z", + "Hs (total) (m)": 3.4425, + "Tp (total) (s)": 11.5314 + }, + { + "Date+Time": "2008-03-03T00:00:00Z", + "Hs (total) (m)": 3.399, + "Tp (total) (s)": 11.1972 + }, + { + "Date+Time": "2008-03-04T00:00:00Z", + "Hs (total) (m)": 3.6615, + "Tp (total) (s)": 15.3974 + }, + { + "Date+Time": "2008-03-05T00:00:00Z", + "Hs (total) (m)": 1.5687, + "Tp (total) (s)": 11.9732 + }, + { + "Date+Time": "2008-03-06T00:00:00Z", + "Hs (total) (m)": 2.543, + "Tp (total) (s)": 9.6118 + }, + { + "Date+Time": "2008-03-07T00:00:00Z", + "Hs (total) (m)": 3.5432, + "Tp (total) (s)": 11.4345 + }, + { + "Date+Time": "2008-03-08T00:00:00Z", + "Hs (total) (m)": 3.7484, + "Tp (total) (s)": 14.9228 + }, + { + "Date+Time": "2008-03-09T00:00:00Z", + "Hs (total) (m)": 3.3425, + "Tp (total) (s)": 13.4632 + }, + { + "Date+Time": "2008-03-10T00:00:00Z", + "Hs (total) (m)": 4.0742, + "Tp (total) (s)": 13.8462 + }, + { + "Date+Time": "2008-03-11T00:00:00Z", + "Hs (total) (m)": 4.1406, + "Tp (total) (s)": 15.1677 + }, + { + "Date+Time": "2008-03-12T00:00:00Z", + "Hs (total) (m)": 6.6916, + "Tp (total) (s)": 14.543 + }, + { + "Date+Time": "2008-03-13T00:00:00Z", + "Hs (total) (m)": 3.3494, + "Tp (total) (s)": 12.8468 + }, + { + "Date+Time": "2008-03-14T00:00:00Z", + "Hs (total) (m)": 1.8479, + "Tp (total) (s)": 11.9663 + }, + { + "Date+Time": "2008-03-15T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 10.0139 + }, + { + "Date+Time": "2008-03-16T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 9.46 + }, + { + "Date+Time": "2008-03-17T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 15.199 + }, + { + "Date+Time": "2008-03-18T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 3.1114 + }, + { + "Date+Time": "2008-03-19T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 12.0785 + }, + { + "Date+Time": "2008-03-20T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 10.8501 + }, + { + "Date+Time": "2008-03-21T00:00:00Z", + "Hs (total) (m)": 2.6658, + "Tp (total) (s)": 9.4249 + }, + { + "Date+Time": "2008-03-22T00:00:00Z", + "Hs (total) (m)": 1.5816, + "Tp (total) (s)": 12.5126 + }, + { + "Date+Time": "2008-03-23T00:00:00Z", + "Hs (total) (m)": 1.2482, + "Tp (total) (s)": 10.5121 + }, + { + "Date+Time": "2008-03-24T00:00:00Z", + "Hs (total) (m)": 0.9827, + "Tp (total) (s)": 9.2151 + }, + { + "Date+Time": "2008-03-25T00:00:00Z", + "Hs (total) (m)": 1.1299, + "Tp (total) (s)": 9.5676 + }, + { + "Date+Time": "2008-03-26T00:00:00Z", + "Hs (total) (m)": 1.6213, + "Tp (total) (s)": 7.5365 + }, + { + "Date+Time": "2008-03-27T00:00:00Z", + "Hs (total) (m)": 2.0852, + "Tp (total) (s)": 11.8694 + }, + { + "Date+Time": "2008-03-28T00:00:00Z", + "Hs (total) (m)": 2.9138, + "Tp (total) (s)": 11.3933 + }, + { + "Date+Time": "2008-03-29T00:00:00Z", + "Hs (total) (m)": 3.8873, + "Tp (total) (s)": 12.1593 + }, + { + "Date+Time": "2008-03-30T00:00:00Z", + "Hs (total) (m)": 3.1594, + "Tp (total) (s)": 12.5622 + }, + { + "Date+Time": "2008-03-31T00:00:00Z", + "Hs (total) (m)": 2.7696, + "Tp (total) (s)": 12.7575 + }, + { + "Date+Time": "2008-04-01T00:00:00Z", + "Hs (total) (m)": 3.6836, + "Tp (total) (s)": 9.1052 + }, + { + "Date+Time": "2008-04-02T00:00:00Z", + "Hs (total) (m)": 2.6811, + "Tp (total) (s)": 12.6522 + }, + { + "Date+Time": "2008-04-03T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "2008-04-04T00:00:00Z", + "Hs (total) (m)": 1.4733, + "Tp (total) (s)": 10.4709 + }, + { + "Date+Time": "2008-04-05T00:00:00Z", + "Hs (total) (m)": 1.2421, + "Tp (total) (s)": 10.332 + }, + { + "Date+Time": "2008-04-06T00:00:00Z", + "Hs (total) (m)": 0.8278, + "Tp (total) (s)": 9.9239 + }, + { + "Date+Time": "2008-04-07T00:00:00Z", + "Hs (total) (m)": 0.9079, + "Tp (total) (s)": 11.5902 + }, + { + "Date+Time": "2008-04-08T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 11.5932 + }, + { + "Date+Time": "2008-04-09T00:00:00Z", + "Hs (total) (m)": 0.6127, + "Tp (total) (s)": 10.3877 + }, + { + "Date+Time": "2008-04-10T00:00:00Z", + "Hs (total) (m)": 1.001, + "Tp (total) (s)": 6.6874 + }, + { + "Date+Time": "2008-04-11T00:00:00Z", + "Hs (total) (m)": 2.8359, + "Tp (total) (s)": 13.6998 + }, + { + "Date+Time": "2008-04-12T00:00:00Z", + "Hs (total) (m)": 1.7388, + "Tp (total) (s)": 10.3359 + }, + { + "Date+Time": "2008-04-13T00:00:00Z", + "Hs (total) (m)": 1.0269, + "Tp (total) (s)": 11.2957 + }, + { + "Date+Time": "2008-04-14T00:00:00Z", + "Hs (total) (m)": 0.8057, + "Tp (total) (s)": 9.5889 + }, + { + "Date+Time": "2008-04-15T00:00:00Z", + "Hs (total) (m)": 0.5097, + "Tp (total) (s)": 8.3087 + }, + { + "Date+Time": "2008-04-16T00:00:00Z", + "Hs (total) (m)": 1.0193, + "Tp (total) (s)": 10.4839 + }, + { + "Date+Time": "2008-04-17T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 5.7817 + }, + { + "Date+Time": "2008-04-18T00:00:00Z", + "Hs (total) (m)": 1.5656, + "Tp (total) (s)": 13.9149 + }, + { + "Date+Time": "2008-04-19T00:00:00Z", + "Hs (total) (m)": 1.5862, + "Tp (total) (s)": 12.9391 + }, + { + "Date+Time": "2008-04-20T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 11.7069 + }, + { + "Date+Time": "2008-04-21T00:00:00Z", + "Hs (total) (m)": 0.8904, + "Tp (total) (s)": 10.2618 + }, + { + "Date+Time": "2008-04-22T00:00:00Z", + "Hs (total) (m)": 0.7767, + "Tp (total) (s)": 9.283 + }, + { + "Date+Time": "2008-04-23T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 10.3801 + }, + { + "Date+Time": "2008-04-24T00:00:00Z", + "Hs (total) (m)": 2.7169, + "Tp (total) (s)": 12.4363 + }, + { + "Date+Time": "2008-04-25T00:00:00Z", + "Hs (total) (m)": 2.4613, + "Tp (total) (s)": 11.9083 + }, + { + "Date+Time": "2008-04-26T00:00:00Z", + "Hs (total) (m)": 2.9672, + "Tp (total) (s)": 10.4732 + }, + { + "Date+Time": "2008-04-27T00:00:00Z", + "Hs (total) (m)": 2.1004, + "Tp (total) (s)": 10.5533 + }, + { + "Date+Time": "2008-04-28T00:00:00Z", + "Hs (total) (m)": 1.5893, + "Tp (total) (s)": 9.9208 + }, + { + "Date+Time": "2008-04-29T00:00:00Z", + "Hs (total) (m)": 1.2749, + "Tp (total) (s)": 9.2959 + }, + { + "Date+Time": "2008-04-30T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 11.1332 + }, + { + "Date+Time": "2008-05-01T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 10.271 + }, + { + "Date+Time": "2008-05-02T00:00:00Z", + "Hs (total) (m)": 0.9468, + "Tp (total) (s)": 10.2794 + }, + { + "Date+Time": "2008-05-03T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 10.3053 + }, + { + "Date+Time": "2008-05-04T00:00:00Z", + "Hs (total) (m)": 2.205, + "Tp (total) (s)": 10.2306 + }, + { + "Date+Time": "2008-05-05T00:00:00Z", + "Hs (total) (m)": 1.7785, + "Tp (total) (s)": 9.3463 + }, + { + "Date+Time": "2008-05-06T00:00:00Z", + "Hs (total) (m)": 1.4954, + "Tp (total) (s)": 9.3692 + }, + { + "Date+Time": "2008-05-07T00:00:00Z", + "Hs (total) (m)": 1.4542, + "Tp (total) (s)": 10.1588 + }, + { + "Date+Time": "2008-05-08T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 8.5696 + }, + { + "Date+Time": "2008-05-09T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 8.6001 + }, + { + "Date+Time": "2008-05-10T00:00:00Z", + "Hs (total) (m)": 0.9278, + "Tp (total) (s)": 8.3209 + }, + { + "Date+Time": "2008-05-11T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 8.1698 + }, + { + "Date+Time": "2008-05-12T00:00:00Z", + "Hs (total) (m)": 0.8034, + "Tp (total) (s)": 8.2408 + }, + { + "Date+Time": "2008-05-13T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 11.0652 + }, + { + "Date+Time": "2008-05-14T00:00:00Z", + "Hs (total) (m)": 1.1757, + "Tp (total) (s)": 10.3931 + }, + { + "Date+Time": "2008-05-15T00:00:00Z", + "Hs (total) (m)": 0.9491, + "Tp (total) (s)": 9.022 + }, + { + "Date+Time": "2008-05-16T00:00:00Z", + "Hs (total) (m)": 0.7042, + "Tp (total) (s)": 11.8404 + }, + { + "Date+Time": "2008-05-17T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 10.5258 + }, + { + "Date+Time": "2008-05-18T00:00:00Z", + "Hs (total) (m)": 0.6584, + "Tp (total) (s)": 9.4806 + }, + { + "Date+Time": "2008-05-19T00:00:00Z", + "Hs (total) (m)": 0.9316, + "Tp (total) (s)": 8.7069 + }, + { + "Date+Time": "2008-05-20T00:00:00Z", + "Hs (total) (m)": 1.3283, + "Tp (total) (s)": 7.7082 + }, + { + "Date+Time": "2008-05-21T00:00:00Z", + "Hs (total) (m)": 1.5671, + "Tp (total) (s)": 9.2326 + }, + { + "Date+Time": "2008-05-22T00:00:00Z", + "Hs (total) (m)": 1.6709, + "Tp (total) (s)": 8.71 + }, + { + "Date+Time": "2008-05-23T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 12.5378 + }, + { + "Date+Time": "2008-05-24T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 9.4722 + }, + { + "Date+Time": "2008-05-25T00:00:00Z", + "Hs (total) (m)": 0.589, + "Tp (total) (s)": 2.9901 + }, + { + "Date+Time": "2008-05-26T00:00:00Z", + "Hs (total) (m)": 0.586, + "Tp (total) (s)": 2.7871 + }, + { + "Date+Time": "2008-05-27T00:00:00Z", + "Hs (total) (m)": 0.576, + "Tp (total) (s)": 2.9138 + }, + { + "Date+Time": "2008-05-28T00:00:00Z", + "Hs (total) (m)": 0.6302, + "Tp (total) (s)": 10.1802 + }, + { + "Date+Time": "2008-05-29T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 12.6553 + }, + { + "Date+Time": "2008-05-30T00:00:00Z", + "Hs (total) (m)": 1.413, + "Tp (total) (s)": 11.4696 + }, + { + "Date+Time": "2008-05-31T00:00:00Z", + "Hs (total) (m)": 0.9774, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "2008-06-01T00:00:00Z", + "Hs (total) (m)": 0.8003, + "Tp (total) (s)": 9.5073 + }, + { + "Date+Time": "2008-06-02T00:00:00Z", + "Hs (total) (m)": 0.6905, + "Tp (total) (s)": 9.7369 + }, + { + "Date+Time": "2008-06-03T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 5.9427 + }, + { + "Date+Time": "2008-06-04T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 10.1093 + }, + { + "Date+Time": "2008-06-05T00:00:00Z", + "Hs (total) (m)": 1.8342, + "Tp (total) (s)": 10.6952 + }, + { + "Date+Time": "2008-06-06T00:00:00Z", + "Hs (total) (m)": 1.3771, + "Tp (total) (s)": 10.2664 + }, + { + "Date+Time": "2008-06-07T00:00:00Z", + "Hs (total) (m)": 0.9568, + "Tp (total) (s)": 8.6772 + }, + { + "Date+Time": "2008-06-08T00:00:00Z", + "Hs (total) (m)": 1.3359, + "Tp (total) (s)": 7.5877 + }, + { + "Date+Time": "2008-06-09T00:00:00Z", + "Hs (total) (m)": 0.9964, + "Tp (total) (s)": 8.446 + }, + { + "Date+Time": "2008-06-10T00:00:00Z", + "Hs (total) (m)": 2.0524, + "Tp (total) (s)": 12.7636 + }, + { + "Date+Time": "2008-06-11T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 11.0317 + }, + { + "Date+Time": "2008-06-12T00:00:00Z", + "Hs (total) (m)": 1.0727, + "Tp (total) (s)": 7.8394 + }, + { + "Date+Time": "2008-06-13T00:00:00Z", + "Hs (total) (m)": 1.0323, + "Tp (total) (s)": 11.7779 + }, + { + "Date+Time": "2008-06-14T00:00:00Z", + "Hs (total) (m)": 0.7645, + "Tp (total) (s)": 9.6347 + }, + { + "Date+Time": "2008-06-15T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 8.861 + }, + { + "Date+Time": "2008-06-16T00:00:00Z", + "Hs (total) (m)": 0.7424, + "Tp (total) (s)": 9.5927 + }, + { + "Date+Time": "2008-06-17T00:00:00Z", + "Hs (total) (m)": 1.133, + "Tp (total) (s)": 5.8939 + }, + { + "Date+Time": "2008-06-18T00:00:00Z", + "Hs (total) (m)": 2.2103, + "Tp (total) (s)": 8.7939 + }, + { + "Date+Time": "2008-06-19T00:00:00Z", + "Hs (total) (m)": 1.5618, + "Tp (total) (s)": 8.4483 + }, + { + "Date+Time": "2008-06-20T00:00:00Z", + "Hs (total) (m)": 0.9606, + "Tp (total) (s)": 9.3066 + }, + { + "Date+Time": "2008-06-21T00:00:00Z", + "Hs (total) (m)": 0.6355, + "Tp (total) (s)": 8.3926 + }, + { + "Date+Time": "2008-06-22T00:00:00Z", + "Hs (total) (m)": 0.8225, + "Tp (total) (s)": 6.0854 + }, + { + "Date+Time": "2008-06-23T00:00:00Z", + "Hs (total) (m)": 0.8835, + "Tp (total) (s)": 8.8992 + }, + { + "Date+Time": "2008-06-24T00:00:00Z", + "Hs (total) (m)": 0.7797, + "Tp (total) (s)": 8.0073 + }, + { + "Date+Time": "2008-06-25T00:00:00Z", + "Hs (total) (m)": 2.5796, + "Tp (total) (s)": 9.5241 + }, + { + "Date+Time": "2008-06-26T00:00:00Z", + "Hs (total) (m)": 3.1144, + "Tp (total) (s)": 10.4335 + }, + { + "Date+Time": "2008-06-27T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 8.7001 + }, + { + "Date+Time": "2008-06-28T00:00:00Z", + "Hs (total) (m)": 2.0684, + "Tp (total) (s)": 8.7245 + }, + { + "Date+Time": "2008-06-29T00:00:00Z", + "Hs (total) (m)": 2.2141, + "Tp (total) (s)": 10.4495 + }, + { + "Date+Time": "2008-06-30T00:00:00Z", + "Hs (total) (m)": 2.0264, + "Tp (total) (s)": 9.7339 + }, + { + "Date+Time": "2008-07-01T00:00:00Z", + "Hs (total) (m)": 2.5628, + "Tp (total) (s)": 7.6601 + }, + { + "Date+Time": "2008-07-02T00:00:00Z", + "Hs (total) (m)": 3.2861, + "Tp (total) (s)": 11.7153 + }, + { + "Date+Time": "2008-07-03T00:00:00Z", + "Hs (total) (m)": 1.6549, + "Tp (total) (s)": 10.2184 + }, + { + "Date+Time": "2008-07-04T00:00:00Z", + "Hs (total) (m)": 1.1956, + "Tp (total) (s)": 9.6896 + }, + { + "Date+Time": "2008-07-05T00:00:00Z", + "Hs (total) (m)": 0.7805, + "Tp (total) (s)": 2.7123 + }, + { + "Date+Time": "2008-07-06T00:00:00Z", + "Hs (total) (m)": 0.8179, + "Tp (total) (s)": 6.2418 + }, + { + "Date+Time": "2008-07-07T00:00:00Z", + "Hs (total) (m)": 0.9529, + "Tp (total) (s)": 7.2848 + }, + { + "Date+Time": "2008-07-08T00:00:00Z", + "Hs (total) (m)": 1.0552, + "Tp (total) (s)": 7.8677 + }, + { + "Date+Time": "2008-07-09T00:00:00Z", + "Hs (total) (m)": 0.5287, + "Tp (total) (s)": 8.2835 + }, + { + "Date+Time": "2008-07-10T00:00:00Z", + "Hs (total) (m)": 1.0788, + "Tp (total) (s)": 7.5533 + }, + { + "Date+Time": "2008-07-11T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 7.8608 + }, + { + "Date+Time": "2008-07-12T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 6.4005 + }, + { + "Date+Time": "2008-07-13T00:00:00Z", + "Hs (total) (m)": 0.6058, + "Tp (total) (s)": 6.37 + }, + { + "Date+Time": "2008-07-14T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 8.0218 + }, + { + "Date+Time": "2008-07-15T00:00:00Z", + "Hs (total) (m)": 1.4412, + "Tp (total) (s)": 7.9325 + }, + { + "Date+Time": "2008-07-16T00:00:00Z", + "Hs (total) (m)": 1.4901, + "Tp (total) (s)": 9.5416 + }, + { + "Date+Time": "2008-07-17T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 9.9254 + }, + { + "Date+Time": "2008-07-18T00:00:00Z", + "Hs (total) (m)": 1.3886, + "Tp (total) (s)": 9.2502 + }, + { + "Date+Time": "2008-07-19T00:00:00Z", + "Hs (total) (m)": 1.7151, + "Tp (total) (s)": 7.6197 + }, + { + "Date+Time": "2008-07-20T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 8.5849 + }, + { + "Date+Time": "2008-07-21T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 8.1431 + }, + { + "Date+Time": "2008-07-22T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 16.4327 + }, + { + "Date+Time": "2008-07-23T00:00:00Z", + "Hs (total) (m)": 1.6572, + "Tp (total) (s)": 11.8381 + }, + { + "Date+Time": "2008-07-24T00:00:00Z", + "Hs (total) (m)": 1.2513, + "Tp (total) (s)": 9.312 + }, + { + "Date+Time": "2008-07-25T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 8.52 + }, + { + "Date+Time": "2008-07-26T00:00:00Z", + "Hs (total) (m)": 1.1116, + "Tp (total) (s)": 9.2471 + }, + { + "Date+Time": "2008-07-27T00:00:00Z", + "Hs (total) (m)": 1.3024, + "Tp (total) (s)": 9.5523 + }, + { + "Date+Time": "2008-07-28T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 8.517 + }, + { + "Date+Time": "2008-07-29T00:00:00Z", + "Hs (total) (m)": 0.9285, + "Tp (total) (s)": 8.5963 + }, + { + "Date+Time": "2008-07-30T00:00:00Z", + "Hs (total) (m)": 1.0659, + "Tp (total) (s)": 7.9035 + }, + { + "Date+Time": "2008-07-31T00:00:00Z", + "Hs (total) (m)": 1.2947, + "Tp (total) (s)": 7.5266 + }, + { + "Date+Time": "2008-08-01T00:00:00Z", + "Hs (total) (m)": 1.2421, + "Tp (total) (s)": 8.2202 + }, + { + "Date+Time": "2008-08-02T00:00:00Z", + "Hs (total) (m)": 1.2673, + "Tp (total) (s)": 8.0714 + }, + { + "Date+Time": "2008-08-03T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 7.0582 + }, + { + "Date+Time": "2008-08-04T00:00:00Z", + "Hs (total) (m)": 1.532, + "Tp (total) (s)": 7.7845 + }, + { + "Date+Time": "2008-08-05T00:00:00Z", + "Hs (total) (m)": 0.7469, + "Tp (total) (s)": 7.7158 + }, + { + "Date+Time": "2008-08-06T00:00:00Z", + "Hs (total) (m)": 1.4702, + "Tp (total) (s)": 9.6034 + }, + { + "Date+Time": "2008-08-07T00:00:00Z", + "Hs (total) (m)": 1.268, + "Tp (total) (s)": 9.2563 + }, + { + "Date+Time": "2008-08-08T00:00:00Z", + "Hs (total) (m)": 0.8003, + "Tp (total) (s)": 6.3242 + }, + { + "Date+Time": "2008-08-09T00:00:00Z", + "Hs (total) (m)": 1.2391, + "Tp (total) (s)": 5.3194 + }, + { + "Date+Time": "2008-08-10T00:00:00Z", + "Hs (total) (m)": 2.4834, + "Tp (total) (s)": 8.24 + }, + { + "Date+Time": "2008-08-11T00:00:00Z", + "Hs (total) (m)": 3.1075, + "Tp (total) (s)": 11.5444 + }, + { + "Date+Time": "2008-08-12T00:00:00Z", + "Hs (total) (m)": 1.6694, + "Tp (total) (s)": 9.4981 + }, + { + "Date+Time": "2008-08-13T00:00:00Z", + "Hs (total) (m)": 2.0684, + "Tp (total) (s)": 8.5742 + }, + { + "Date+Time": "2008-08-14T00:00:00Z", + "Hs (total) (m)": 1.6488, + "Tp (total) (s)": 8.1095 + }, + { + "Date+Time": "2008-08-15T00:00:00Z", + "Hs (total) (m)": 1.2604, + "Tp (total) (s)": 8.4193 + }, + { + "Date+Time": "2008-08-16T00:00:00Z", + "Hs (total) (m)": 0.9919, + "Tp (total) (s)": 4.9677 + }, + { + "Date+Time": "2008-08-17T00:00:00Z", + "Hs (total) (m)": 1.7869, + "Tp (total) (s)": 7.5884 + }, + { + "Date+Time": "2008-08-18T00:00:00Z", + "Hs (total) (m)": 2.0356, + "Tp (total) (s)": 12.8025 + }, + { + "Date+Time": "2008-08-19T00:00:00Z", + "Hs (total) (m)": 2.2637, + "Tp (total) (s)": 13.3595 + }, + { + "Date+Time": "2008-08-20T00:00:00Z", + "Hs (total) (m)": 1.5725, + "Tp (total) (s)": 11.2743 + }, + { + "Date+Time": "2008-08-21T00:00:00Z", + "Hs (total) (m)": 1.0758, + "Tp (total) (s)": 11.3964 + }, + { + "Date+Time": "2008-08-22T00:00:00Z", + "Hs (total) (m)": 1.1956, + "Tp (total) (s)": 10.3023 + }, + { + "Date+Time": "2008-08-23T00:00:00Z", + "Hs (total) (m)": 1.0292, + "Tp (total) (s)": 9.4249 + }, + { + "Date+Time": "2008-08-24T00:00:00Z", + "Hs (total) (m)": 2.2706, + "Tp (total) (s)": 8.5223 + }, + { + "Date+Time": "2008-08-25T00:00:00Z", + "Hs (total) (m)": 2.5613, + "Tp (total) (s)": 8.887 + }, + { + "Date+Time": "2008-08-26T00:00:00Z", + "Hs (total) (m)": 2.3682, + "Tp (total) (s)": 12.4638 + }, + { + "Date+Time": "2008-08-27T00:00:00Z", + "Hs (total) (m)": 2.4125, + "Tp (total) (s)": 11.507 + }, + { + "Date+Time": "2008-08-28T00:00:00Z", + "Hs (total) (m)": 1.5206, + "Tp (total) (s)": 9.7072 + }, + { + "Date+Time": "2008-08-29T00:00:00Z", + "Hs (total) (m)": 1.1368, + "Tp (total) (s)": 9.3341 + }, + { + "Date+Time": "2008-08-30T00:00:00Z", + "Hs (total) (m)": 1.3947, + "Tp (total) (s)": 10.6716 + }, + { + "Date+Time": "2008-08-31T00:00:00Z", + "Hs (total) (m)": 1.2566, + "Tp (total) (s)": 10.3481 + }, + { + "Date+Time": "2008-09-01T00:00:00Z", + "Hs (total) (m)": 2.0013, + "Tp (total) (s)": 10.0581 + }, + { + "Date+Time": "2008-09-02T00:00:00Z", + "Hs (total) (m)": 2.6307, + "Tp (total) (s)": 9.5119 + }, + { + "Date+Time": "2008-09-03T00:00:00Z", + "Hs (total) (m)": 1.9471, + "Tp (total) (s)": 8.7832 + }, + { + "Date+Time": "2008-09-04T00:00:00Z", + "Hs (total) (m)": 1.5725, + "Tp (total) (s)": 9.6713 + }, + { + "Date+Time": "2008-09-05T00:00:00Z", + "Hs (total) (m)": 0.6447, + "Tp (total) (s)": 8.0004 + }, + { + "Date+Time": "2008-09-06T00:00:00Z", + "Hs (total) (m)": 1.0689, + "Tp (total) (s)": 3.8469 + }, + { + "Date+Time": "2008-09-07T00:00:00Z", + "Hs (total) (m)": 0.8133, + "Tp (total) (s)": 3.5478 + }, + { + "Date+Time": "2008-09-08T00:00:00Z", + "Hs (total) (m)": 0.5882, + "Tp (total) (s)": 7.9104 + }, + { + "Date+Time": "2008-09-09T00:00:00Z", + "Hs (total) (m)": 1.9433, + "Tp (total) (s)": 13.393 + }, + { + "Date+Time": "2008-09-10T00:00:00Z", + "Hs (total) (m)": 1.9799, + "Tp (total) (s)": 12.5919 + }, + { + "Date+Time": "2008-09-11T00:00:00Z", + "Hs (total) (m)": 3.3303, + "Tp (total) (s)": 9.344 + }, + { + "Date+Time": "2008-09-12T00:00:00Z", + "Hs (total) (m)": 2.8077, + "Tp (total) (s)": 12.4676 + }, + { + "Date+Time": "2008-09-13T00:00:00Z", + "Hs (total) (m)": 1.4603, + "Tp (total) (s)": 10.58 + }, + { + "Date+Time": "2008-09-14T00:00:00Z", + "Hs (total) (m)": 1.9738, + "Tp (total) (s)": 13.844 + }, + { + "Date+Time": "2008-09-15T00:00:00Z", + "Hs (total) (m)": 1.7113, + "Tp (total) (s)": 12.7132 + }, + { + "Date+Time": "2008-09-16T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 11.404 + }, + { + "Date+Time": "2008-09-17T00:00:00Z", + "Hs (total) (m)": 0.8751, + "Tp (total) (s)": 9.5576 + }, + { + "Date+Time": "2008-09-18T00:00:00Z", + "Hs (total) (m)": 0.7179, + "Tp (total) (s)": 7.8394 + }, + { + "Date+Time": "2008-09-19T00:00:00Z", + "Hs (total) (m)": 2.6429, + "Tp (total) (s)": 14.7206 + }, + { + "Date+Time": "2008-09-20T00:00:00Z", + "Hs (total) (m)": 1.7525, + "Tp (total) (s)": 12.9955 + }, + { + "Date+Time": "2008-09-21T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 8.5887 + }, + { + "Date+Time": "2008-09-22T00:00:00Z", + "Hs (total) (m)": 1.1422, + "Tp (total) (s)": 12.6209 + }, + { + "Date+Time": "2008-09-23T00:00:00Z", + "Hs (total) (m)": 1.529, + "Tp (total) (s)": 12.8788 + }, + { + "Date+Time": "2008-09-24T00:00:00Z", + "Hs (total) (m)": 1.2017, + "Tp (total) (s)": 11.5162 + }, + { + "Date+Time": "2008-09-25T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 12.4256 + }, + { + "Date+Time": "2008-09-26T00:00:00Z", + "Hs (total) (m)": 1.1444, + "Tp (total) (s)": 11.5055 + }, + { + "Date+Time": "2008-09-27T00:00:00Z", + "Hs (total) (m)": 1.0636, + "Tp (total) (s)": 9.6713 + }, + { + "Date+Time": "2008-09-28T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 9.3997 + }, + { + "Date+Time": "2008-09-29T00:00:00Z", + "Hs (total) (m)": 1.1826, + "Tp (total) (s)": 8.8008 + }, + { + "Date+Time": "2008-09-30T00:00:00Z", + "Hs (total) (m)": 2.3263, + "Tp (total) (s)": 9.7064 + }, + { + "Date+Time": "2008-10-01T00:00:00Z", + "Hs (total) (m)": 2.7924, + "Tp (total) (s)": 10.2435 + }, + { + "Date+Time": "2008-10-02T00:00:00Z", + "Hs (total) (m)": 2.308, + "Tp (total) (s)": 10.9813 + }, + { + "Date+Time": "2008-10-03T00:00:00Z", + "Hs (total) (m)": 1.4855, + "Tp (total) (s)": 11.0858 + }, + { + "Date+Time": "2008-10-04T00:00:00Z", + "Hs (total) (m)": 1.9349, + "Tp (total) (s)": 10.2893 + }, + { + "Date+Time": "2008-10-05T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 8.5734 + }, + { + "Date+Time": "2008-10-06T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 11.848 + }, + { + "Date+Time": "2008-10-07T00:00:00Z", + "Hs (total) (m)": 1.7762, + "Tp (total) (s)": 8.5757 + }, + { + "Date+Time": "2008-10-08T00:00:00Z", + "Hs (total) (m)": 2.134, + "Tp (total) (s)": 11.6466 + }, + { + "Date+Time": "2008-10-09T00:00:00Z", + "Hs (total) (m)": 1.7655, + "Tp (total) (s)": 10.9104 + }, + { + "Date+Time": "2008-10-10T00:00:00Z", + "Hs (total) (m)": 3.8682, + "Tp (total) (s)": 16.3297 + }, + { + "Date+Time": "2008-10-11T00:00:00Z", + "Hs (total) (m)": 2.9374, + "Tp (total) (s)": 13.9622 + }, + { + "Date+Time": "2008-10-12T00:00:00Z", + "Hs (total) (m)": 2.0447, + "Tp (total) (s)": 11.8244 + }, + { + "Date+Time": "2008-10-13T00:00:00Z", + "Hs (total) (m)": 2.1249, + "Tp (total) (s)": 11.285 + }, + { + "Date+Time": "2008-10-14T00:00:00Z", + "Hs (total) (m)": 1.606, + "Tp (total) (s)": 11.1965 + }, + { + "Date+Time": "2008-10-15T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 12.0975 + }, + { + "Date+Time": "2008-10-16T00:00:00Z", + "Hs (total) (m)": 1.8387, + "Tp (total) (s)": 11.877 + }, + { + "Date+Time": "2008-10-17T00:00:00Z", + "Hs (total) (m)": 1.2543, + "Tp (total) (s)": 10.0398 + }, + { + "Date+Time": "2008-10-18T00:00:00Z", + "Hs (total) (m)": 1.7045, + "Tp (total) (s)": 8.8878 + }, + { + "Date+Time": "2008-10-19T00:00:00Z", + "Hs (total) (m)": 2.546, + "Tp (total) (s)": 14.1469 + }, + { + "Date+Time": "2008-10-20T00:00:00Z", + "Hs (total) (m)": 4.2383, + "Tp (total) (s)": 10.9531 + }, + { + "Date+Time": "2008-10-21T00:00:00Z", + "Hs (total) (m)": 3.4967, + "Tp (total) (s)": 12.8765 + }, + { + "Date+Time": "2008-10-22T00:00:00Z", + "Hs (total) (m)": 2.6208, + "Tp (total) (s)": 11.8442 + }, + { + "Date+Time": "2008-10-23T00:00:00Z", + "Hs (total) (m)": 3.5165, + "Tp (total) (s)": 9.6034 + }, + { + "Date+Time": "2008-10-24T00:00:00Z", + "Hs (total) (m)": 4.3123, + "Tp (total) (s)": 12.5004 + }, + { + "Date+Time": "2008-10-25T00:00:00Z", + "Hs (total) (m)": 3.8743, + "Tp (total) (s)": 13.9828 + }, + { + "Date+Time": "2008-10-26T00:00:00Z", + "Hs (total) (m)": 3.3616, + "Tp (total) (s)": 13.3358 + }, + { + "Date+Time": "2008-10-27T00:00:00Z", + "Hs (total) (m)": 2.9206, + "Tp (total) (s)": 13.3267 + }, + { + "Date+Time": "2008-10-28T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 11.4834 + }, + { + "Date+Time": "2008-10-29T00:00:00Z", + "Hs (total) (m)": 1.294, + "Tp (total) (s)": 11.1103 + }, + { + "Date+Time": "2008-10-30T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 10.638 + }, + { + "Date+Time": "2008-10-31T00:00:00Z", + "Hs (total) (m)": 1.1025, + "Tp (total) (s)": 10.77 + }, + { + "Date+Time": "2008-11-01T00:00:00Z", + "Hs (total) (m)": 0.7622, + "Tp (total) (s)": 9.6644 + }, + { + "Date+Time": "2008-11-02T00:00:00Z", + "Hs (total) (m)": 0.5524, + "Tp (total) (s)": 8.3163 + }, + { + "Date+Time": "2008-11-03T00:00:00Z", + "Hs (total) (m)": 0.6531, + "Tp (total) (s)": 11.198 + }, + { + "Date+Time": "2008-11-04T00:00:00Z", + "Hs (total) (m)": 0.7797, + "Tp (total) (s)": 10.229 + }, + { + "Date+Time": "2008-11-05T00:00:00Z", + "Hs (total) (m)": 0.9178, + "Tp (total) (s)": 9.6133 + }, + { + "Date+Time": "2008-11-06T00:00:00Z", + "Hs (total) (m)": 2.237, + "Tp (total) (s)": 14.8869 + }, + { + "Date+Time": "2008-11-07T00:00:00Z", + "Hs (total) (m)": 2.3919, + "Tp (total) (s)": 11.0591 + }, + { + "Date+Time": "2008-11-08T00:00:00Z", + "Hs (total) (m)": 2.3568, + "Tp (total) (s)": 11.3742 + }, + { + "Date+Time": "2008-11-09T00:00:00Z", + "Hs (total) (m)": 4.4816, + "Tp (total) (s)": 12.0731 + }, + { + "Date+Time": "2008-11-10T00:00:00Z", + "Hs (total) (m)": 4.458, + "Tp (total) (s)": 11.5818 + }, + { + "Date+Time": "2008-11-11T00:00:00Z", + "Hs (total) (m)": 3.2289, + "Tp (total) (s)": 12.5172 + }, + { + "Date+Time": "2008-11-12T00:00:00Z", + "Hs (total) (m)": 1.8433, + "Tp (total) (s)": 11.5238 + }, + { + "Date+Time": "2008-11-13T00:00:00Z", + "Hs (total) (m)": 1.7594, + "Tp (total) (s)": 10.3282 + }, + { + "Date+Time": "2008-11-14T00:00:00Z", + "Hs (total) (m)": 1.8097, + "Tp (total) (s)": 8.3171 + }, + { + "Date+Time": "2008-11-15T00:00:00Z", + "Hs (total) (m)": 3.135, + "Tp (total) (s)": 10.4411 + }, + { + "Date+Time": "2008-11-16T00:00:00Z", + "Hs (total) (m)": 1.7884, + "Tp (total) (s)": 10.5495 + }, + { + "Date+Time": "2008-11-17T00:00:00Z", + "Hs (total) (m)": 1.5587, + "Tp (total) (s)": 10.2229 + }, + { + "Date+Time": "2008-11-18T00:00:00Z", + "Hs (total) (m)": 2.2881, + "Tp (total) (s)": 9.4317 + }, + { + "Date+Time": "2008-11-19T00:00:00Z", + "Hs (total) (m)": 1.5641, + "Tp (total) (s)": 11.639 + }, + { + "Date+Time": "2008-11-20T00:00:00Z", + "Hs (total) (m)": 1.9402, + "Tp (total) (s)": 10.6853 + }, + { + "Date+Time": "2008-11-21T00:00:00Z", + "Hs (total) (m)": 2.0882, + "Tp (total) (s)": 10.181 + }, + { + "Date+Time": "2008-11-22T00:00:00Z", + "Hs (total) (m)": 1.4451, + "Tp (total) (s)": 10.4625 + }, + { + "Date+Time": "2008-11-23T00:00:00Z", + "Hs (total) (m)": 1.5374, + "Tp (total) (s)": 9.4638 + }, + { + "Date+Time": "2008-11-24T00:00:00Z", + "Hs (total) (m)": 3.1144, + "Tp (total) (s)": 12.5179 + }, + { + "Date+Time": "2008-11-25T00:00:00Z", + "Hs (total) (m)": 1.6144, + "Tp (total) (s)": 12.5835 + }, + { + "Date+Time": "2008-11-26T00:00:00Z", + "Hs (total) (m)": 1.1101, + "Tp (total) (s)": 10.49 + }, + { + "Date+Time": "2008-11-27T00:00:00Z", + "Hs (total) (m)": 2.4583, + "Tp (total) (s)": 7.2893 + }, + { + "Date+Time": "2008-11-28T00:00:00Z", + "Hs (total) (m)": 2.6223, + "Tp (total) (s)": 12.3562 + }, + { + "Date+Time": "2008-11-29T00:00:00Z", + "Hs (total) (m)": 1.8525, + "Tp (total) (s)": 12.7674 + }, + { + "Date+Time": "2008-11-30T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 11.697 + }, + { + "Date+Time": "2008-12-01T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 11.3552 + }, + { + "Date+Time": "2008-12-02T00:00:00Z", + "Hs (total) (m)": 1.3695, + "Tp (total) (s)": 11.0485 + }, + { + "Date+Time": "2008-12-03T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 11.0385 + }, + { + "Date+Time": "2008-12-04T00:00:00Z", + "Hs (total) (m)": 2.9939, + "Tp (total) (s)": 8.5086 + }, + { + "Date+Time": "2008-12-05T00:00:00Z", + "Hs (total) (m)": 4.371, + "Tp (total) (s)": 13.6715 + }, + { + "Date+Time": "2008-12-06T00:00:00Z", + "Hs (total) (m)": 2.1332, + "Tp (total) (s)": 12.9635 + }, + { + "Date+Time": "2008-12-07T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 11.1614 + }, + { + "Date+Time": "2008-12-08T00:00:00Z", + "Hs (total) (m)": 2.2248, + "Tp (total) (s)": 9.6812 + }, + { + "Date+Time": "2008-12-09T00:00:00Z", + "Hs (total) (m)": 1.7472, + "Tp (total) (s)": 11.0034 + }, + { + "Date+Time": "2008-12-10T00:00:00Z", + "Hs (total) (m)": 1.4359, + "Tp (total) (s)": 11.4002 + }, + { + "Date+Time": "2008-12-11T00:00:00Z", + "Hs (total) (m)": 0.956, + "Tp (total) (s)": 12.3165 + }, + { + "Date+Time": "2008-12-12T00:00:00Z", + "Hs (total) (m)": 2.5269, + "Tp (total) (s)": 14.0904 + }, + { + "Date+Time": "2008-12-13T00:00:00Z", + "Hs (total) (m)": 3.1579, + "Tp (total) (s)": 13.5594 + }, + { + "Date+Time": "2008-12-14T00:00:00Z", + "Hs (total) (m)": 3.6706, + "Tp (total) (s)": 15.8605 + }, + { + "Date+Time": "2008-12-15T00:00:00Z", + "Hs (total) (m)": 2.2126, + "Tp (total) (s)": 14.4612 + }, + { + "Date+Time": "2008-12-16T00:00:00Z", + "Hs (total) (m)": 2.5536, + "Tp (total) (s)": 11.2011 + }, + { + "Date+Time": "2008-12-17T00:00:00Z", + "Hs (total) (m)": 3.0389, + "Tp (total) (s)": 12.582 + }, + { + "Date+Time": "2008-12-18T00:00:00Z", + "Hs (total) (m)": 3.8682, + "Tp (total) (s)": 14.1247 + }, + { + "Date+Time": "2008-12-19T00:00:00Z", + "Hs (total) (m)": 3.7408, + "Tp (total) (s)": 14.3483 + }, + { + "Date+Time": "2008-12-20T00:00:00Z", + "Hs (total) (m)": 4.0963, + "Tp (total) (s)": 15.2234 + }, + { + "Date+Time": "2008-12-21T00:00:00Z", + "Hs (total) (m)": 3.7088, + "Tp (total) (s)": 12.4683 + }, + { + "Date+Time": "2008-12-22T00:00:00Z", + "Hs (total) (m)": 2.9015, + "Tp (total) (s)": 12.9376 + }, + { + "Date+Time": "2008-12-23T00:00:00Z", + "Hs (total) (m)": 2.765, + "Tp (total) (s)": 13.1443 + }, + { + "Date+Time": "2008-12-24T00:00:00Z", + "Hs (total) (m)": 2.6574, + "Tp (total) (s)": 14.0973 + }, + { + "Date+Time": "2008-12-25T00:00:00Z", + "Hs (total) (m)": 1.8967, + "Tp (total) (s)": 13.789 + }, + { + "Date+Time": "2008-12-26T00:00:00Z", + "Hs (total) (m)": 2.3576, + "Tp (total) (s)": 15.1051 + }, + { + "Date+Time": "2008-12-27T00:00:00Z", + "Hs (total) (m)": 1.7548, + "Tp (total) (s)": 13.2473 + }, + { + "Date+Time": "2008-12-28T00:00:00Z", + "Hs (total) (m)": 0.7759, + "Tp (total) (s)": 2.7482 + }, + { + "Date+Time": "2008-12-29T00:00:00Z", + "Hs (total) (m)": 0.6584, + "Tp (total) (s)": 3.016 + }, + { + "Date+Time": "2008-12-30T00:00:00Z", + "Hs (total) (m)": 0.9514, + "Tp (total) (s)": 13.0322 + }, + { + "Date+Time": "2008-12-31T00:00:00Z", + "Hs (total) (m)": 1.2947, + "Tp (total) (s)": 5.3026 + }, + { + "Date+Time": "2009-01-01T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 5.3163 + }, + { + "Date+Time": "2009-01-02T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 11.71 + }, + { + "Date+Time": "2009-01-03T00:00:00Z", + "Hs (total) (m)": 1.2566, + "Tp (total) (s)": 16.7257 + }, + { + "Date+Time": "2009-01-04T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 15.7109 + }, + { + "Date+Time": "2009-01-05T00:00:00Z", + "Hs (total) (m)": 1.5709, + "Tp (total) (s)": 15.051 + }, + { + "Date+Time": "2009-01-06T00:00:00Z", + "Hs (total) (m)": 1.7457, + "Tp (total) (s)": 14.7832 + }, + { + "Date+Time": "2009-01-07T00:00:00Z", + "Hs (total) (m)": 1.7075, + "Tp (total) (s)": 14.2819 + }, + { + "Date+Time": "2009-01-08T00:00:00Z", + "Hs (total) (m)": 1.6793, + "Tp (total) (s)": 13.7051 + }, + { + "Date+Time": "2009-01-09T00:00:00Z", + "Hs (total) (m)": 2.0814, + "Tp (total) (s)": 13.0047 + }, + { + "Date+Time": "2009-01-10T00:00:00Z", + "Hs (total) (m)": 2.636, + "Tp (total) (s)": 12.3661 + }, + { + "Date+Time": "2009-01-11T00:00:00Z", + "Hs (total) (m)": 3.7164, + "Tp (total) (s)": 11.2545 + }, + { + "Date+Time": "2009-01-12T00:00:00Z", + "Hs (total) (m)": 4.3954, + "Tp (total) (s)": 15.5835 + }, + { + "Date+Time": "2009-01-13T00:00:00Z", + "Hs (total) (m)": 4.2291, + "Tp (total) (s)": 15.1234 + }, + { + "Date+Time": "2009-01-14T00:00:00Z", + "Hs (total) (m)": 3.5104, + "Tp (total) (s)": 15.1921 + }, + { + "Date+Time": "2009-01-15T00:00:00Z", + "Hs (total) (m)": 3.4433, + "Tp (total) (s)": 13.2214 + }, + { + "Date+Time": "2009-01-16T00:00:00Z", + "Hs (total) (m)": 3.4318, + "Tp (total) (s)": 12.6759 + }, + { + "Date+Time": "2009-01-17T00:00:00Z", + "Hs (total) (m)": 3.5257, + "Tp (total) (s)": 14.8137 + }, + { + "Date+Time": "2009-01-18T00:00:00Z", + "Hs (total) (m)": 4.2703, + "Tp (total) (s)": 14.4406 + }, + { + "Date+Time": "2009-01-19T00:00:00Z", + "Hs (total) (m)": 5.0078, + "Tp (total) (s)": 16.7241 + }, + { + "Date+Time": "2009-01-20T00:00:00Z", + "Hs (total) (m)": 5.4996, + "Tp (total) (s)": 16.6097 + }, + { + "Date+Time": "2009-01-21T00:00:00Z", + "Hs (total) (m)": 5.3519, + "Tp (total) (s)": 16.5205 + }, + { + "Date+Time": "2009-01-22T00:00:00Z", + "Hs (total) (m)": 4.7143, + "Tp (total) (s)": 16.1596 + }, + { + "Date+Time": "2009-01-23T00:00:00Z", + "Hs (total) (m)": 4.223, + "Tp (total) (s)": 15.627 + }, + { + "Date+Time": "2009-01-24T00:00:00Z", + "Hs (total) (m)": 3.872, + "Tp (total) (s)": 15.6789 + }, + { + "Date+Time": "2009-01-25T00:00:00Z", + "Hs (total) (m)": 3.4738, + "Tp (total) (s)": 13.9279 + }, + { + "Date+Time": "2009-01-26T00:00:00Z", + "Hs (total) (m)": 3.621, + "Tp (total) (s)": 13.8859 + }, + { + "Date+Time": "2009-01-27T00:00:00Z", + "Hs (total) (m)": 3.2777, + "Tp (total) (s)": 14.6626 + }, + { + "Date+Time": "2009-01-28T00:00:00Z", + "Hs (total) (m)": 3.2754, + "Tp (total) (s)": 15.4592 + }, + { + "Date+Time": "2009-01-29T00:00:00Z", + "Hs (total) (m)": 2.8817, + "Tp (total) (s)": 15.3996 + }, + { + "Date+Time": "2009-01-30T00:00:00Z", + "Hs (total) (m)": 3.8263, + "Tp (total) (s)": 15.6957 + }, + { + "Date+Time": "2009-01-31T00:00:00Z", + "Hs (total) (m)": 3.4158, + "Tp (total) (s)": 14.4719 + }, + { + "Date+Time": "2009-02-01T00:00:00Z", + "Hs (total) (m)": 2.4094, + "Tp (total) (s)": 12.0968 + }, + { + "Date+Time": "2009-02-02T00:00:00Z", + "Hs (total) (m)": 2.0363, + "Tp (total) (s)": 11.4475 + }, + { + "Date+Time": "2009-02-03T00:00:00Z", + "Hs (total) (m)": 1.9036, + "Tp (total) (s)": 11.2186 + }, + { + "Date+Time": "2009-02-04T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 14.6542 + }, + { + "Date+Time": "2009-02-05T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 16.8317 + }, + { + "Date+Time": "2009-02-06T00:00:00Z", + "Hs (total) (m)": 2.3431, + "Tp (total) (s)": 16.7646 + }, + { + "Date+Time": "2009-02-07T00:00:00Z", + "Hs (total) (m)": 2.0486, + "Tp (total) (s)": 16.3915 + }, + { + "Date+Time": "2009-02-08T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 14.7572 + }, + { + "Date+Time": "2009-02-09T00:00:00Z", + "Hs (total) (m)": 1.4351, + "Tp (total) (s)": 12.479 + }, + { + "Date+Time": "2009-02-10T00:00:00Z", + "Hs (total) (m)": 1.7106, + "Tp (total) (s)": 10.596 + }, + { + "Date+Time": "2009-02-11T00:00:00Z", + "Hs (total) (m)": 2.0615, + "Tp (total) (s)": 13.4236 + }, + { + "Date+Time": "2009-02-12T00:00:00Z", + "Hs (total) (m)": 2.0631, + "Tp (total) (s)": 12.9902 + }, + { + "Date+Time": "2009-02-13T00:00:00Z", + "Hs (total) (m)": 1.9089, + "Tp (total) (s)": 11.5413 + }, + { + "Date+Time": "2009-02-14T00:00:00Z", + "Hs (total) (m)": 2.0157, + "Tp (total) (s)": 12.5538 + }, + { + "Date+Time": "2009-02-15T00:00:00Z", + "Hs (total) (m)": 2.1203, + "Tp (total) (s)": 12.5622 + }, + { + "Date+Time": "2009-02-16T00:00:00Z", + "Hs (total) (m)": 1.9814, + "Tp (total) (s)": 12.1654 + }, + { + "Date+Time": "2009-02-17T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 11.4772 + }, + { + "Date+Time": "2009-02-18T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 11.3742 + }, + { + "Date+Time": "2009-02-19T00:00:00Z", + "Hs (total) (m)": 1.6961, + "Tp (total) (s)": 11.8168 + }, + { + "Date+Time": "2009-02-20T00:00:00Z", + "Hs (total) (m)": 1.6671, + "Tp (total) (s)": 12.5416 + }, + { + "Date+Time": "2009-02-21T00:00:00Z", + "Hs (total) (m)": 1.6846, + "Tp (total) (s)": 12.8811 + }, + { + "Date+Time": "2009-02-22T00:00:00Z", + "Hs (total) (m)": 1.7937, + "Tp (total) (s)": 13.4266 + }, + { + "Date+Time": "2009-02-23T00:00:00Z", + "Hs (total) (m)": 1.9784, + "Tp (total) (s)": 14.0645 + }, + { + "Date+Time": "2009-02-24T00:00:00Z", + "Hs (total) (m)": 1.8792, + "Tp (total) (s)": 14.6695 + }, + { + "Date+Time": "2009-02-25T00:00:00Z", + "Hs (total) (m)": 1.6099, + "Tp (total) (s)": 13.0734 + }, + { + "Date+Time": "2009-02-26T00:00:00Z", + "Hs (total) (m)": 1.4031, + "Tp (total) (s)": 11.2804 + }, + { + "Date+Time": "2009-02-27T00:00:00Z", + "Hs (total) (m)": 1.5137, + "Tp (total) (s)": 11.5619 + }, + { + "Date+Time": "2009-02-28T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 11.1698 + }, + { + "Date+Time": "2009-03-01T00:00:00Z", + "Hs (total) (m)": 2.1249, + "Tp (total) (s)": 11.1896 + }, + { + "Date+Time": "2009-03-02T00:00:00Z", + "Hs (total) (m)": 2.1043, + "Tp (total) (s)": 12.157 + }, + { + "Date+Time": "2009-03-03T00:00:00Z", + "Hs (total) (m)": 2.1256, + "Tp (total) (s)": 12.5935 + }, + { + "Date+Time": "2009-03-04T00:00:00Z", + "Hs (total) (m)": 2.179, + "Tp (total) (s)": 12.2555 + }, + { + "Date+Time": "2009-03-05T00:00:00Z", + "Hs (total) (m)": 2.3507, + "Tp (total) (s)": 11.6192 + }, + { + "Date+Time": "2009-03-06T00:00:00Z", + "Hs (total) (m)": 2.9641, + "Tp (total) (s)": 15.4607 + }, + { + "Date+Time": "2009-03-07T00:00:00Z", + "Hs (total) (m)": 3.3189, + "Tp (total) (s)": 15.5072 + }, + { + "Date+Time": "2009-03-08T00:00:00Z", + "Hs (total) (m)": 2.8199, + "Tp (total) (s)": 13.8318 + }, + { + "Date+Time": "2009-03-09T00:00:00Z", + "Hs (total) (m)": 3.1564, + "Tp (total) (s)": 11.4544 + }, + { + "Date+Time": "2009-03-10T00:00:00Z", + "Hs (total) (m)": 3.5577, + "Tp (total) (s)": 12.4554 + }, + { + "Date+Time": "2009-03-11T00:00:00Z", + "Hs (total) (m)": 3.3219, + "Tp (total) (s)": 12.7934 + }, + { + "Date+Time": "2009-03-12T00:00:00Z", + "Hs (total) (m)": 2.6925, + "Tp (total) (s)": 11.5696 + }, + { + "Date+Time": "2009-03-13T00:00:00Z", + "Hs (total) (m)": 2.4384, + "Tp (total) (s)": 11.8664 + }, + { + "Date+Time": "2009-03-14T00:00:00Z", + "Hs (total) (m)": 2.9633, + "Tp (total) (s)": 12.8376 + }, + { + "Date+Time": "2009-03-15T00:00:00Z", + "Hs (total) (m)": 2.9061, + "Tp (total) (s)": 11.8824 + }, + { + "Date+Time": "2009-03-16T00:00:00Z", + "Hs (total) (m)": 2.7825, + "Tp (total) (s)": 12.1288 + }, + { + "Date+Time": "2009-03-17T00:00:00Z", + "Hs (total) (m)": 2.5636, + "Tp (total) (s)": 12.2433 + }, + { + "Date+Time": "2009-03-18T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 11.3514 + }, + { + "Date+Time": "2009-03-19T00:00:00Z", + "Hs (total) (m)": 1.9692, + "Tp (total) (s)": 12.6316 + }, + { + "Date+Time": "2009-03-20T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 12.6019 + }, + { + "Date+Time": "2009-03-21T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 11.8068 + }, + { + "Date+Time": "2009-03-22T00:00:00Z", + "Hs (total) (m)": 0.9438, + "Tp (total) (s)": 11.5215 + }, + { + "Date+Time": "2009-03-23T00:00:00Z", + "Hs (total) (m)": 0.8751, + "Tp (total) (s)": 12.1364 + }, + { + "Date+Time": "2009-03-24T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 12.1357 + }, + { + "Date+Time": "2009-03-25T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 12.3157 + }, + { + "Date+Time": "2009-03-26T00:00:00Z", + "Hs (total) (m)": 2.0615, + "Tp (total) (s)": 12.1929 + }, + { + "Date+Time": "2009-03-27T00:00:00Z", + "Hs (total) (m)": 2.221, + "Tp (total) (s)": 11.5787 + }, + { + "Date+Time": "2009-03-28T00:00:00Z", + "Hs (total) (m)": 2.4361, + "Tp (total) (s)": 11.5711 + }, + { + "Date+Time": "2009-03-29T00:00:00Z", + "Hs (total) (m)": 2.0577, + "Tp (total) (s)": 11.3887 + }, + { + "Date+Time": "2009-03-30T00:00:00Z", + "Hs (total) (m)": 1.5847, + "Tp (total) (s)": 11.0294 + }, + { + "Date+Time": "2009-03-31T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 9.7026 + }, + { + "Date+Time": "2009-04-01T00:00:00Z", + "Hs (total) (m)": 1.4489, + "Tp (total) (s)": 9.36 + }, + { + "Date+Time": "2009-04-02T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 9.6881 + }, + { + "Date+Time": "2009-04-03T00:00:00Z", + "Hs (total) (m)": 1.7045, + "Tp (total) (s)": 10.3397 + }, + { + "Date+Time": "2009-04-04T00:00:00Z", + "Hs (total) (m)": 1.7991, + "Tp (total) (s)": 10.3893 + }, + { + "Date+Time": "2009-04-05T00:00:00Z", + "Hs (total) (m)": 1.7396, + "Tp (total) (s)": 10.1535 + }, + { + "Date+Time": "2009-04-06T00:00:00Z", + "Hs (total) (m)": 1.9486, + "Tp (total) (s)": 10.0192 + }, + { + "Date+Time": "2009-04-07T00:00:00Z", + "Hs (total) (m)": 2.2538, + "Tp (total) (s)": 10.2924 + }, + { + "Date+Time": "2009-04-08T00:00:00Z", + "Hs (total) (m)": 2.2805, + "Tp (total) (s)": 10.229 + }, + { + "Date+Time": "2009-04-09T00:00:00Z", + "Hs (total) (m)": 2.0814, + "Tp (total) (s)": 9.9979 + }, + { + "Date+Time": "2009-04-10T00:00:00Z", + "Hs (total) (m)": 2.1714, + "Tp (total) (s)": 9.3242 + }, + { + "Date+Time": "2009-04-11T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 9.3646 + }, + { + "Date+Time": "2009-04-12T00:00:00Z", + "Hs (total) (m)": 1.6823, + "Tp (total) (s)": 11.6581 + }, + { + "Date+Time": "2009-04-13T00:00:00Z", + "Hs (total) (m)": 1.9463, + "Tp (total) (s)": 11.375 + }, + { + "Date+Time": "2009-04-14T00:00:00Z", + "Hs (total) (m)": 1.6343, + "Tp (total) (s)": 10.0253 + }, + { + "Date+Time": "2009-04-15T00:00:00Z", + "Hs (total) (m)": 1.9013, + "Tp (total) (s)": 13.8043 + }, + { + "Date+Time": "2009-04-16T00:00:00Z", + "Hs (total) (m)": 1.9562, + "Tp (total) (s)": 13.6433 + }, + { + "Date+Time": "2009-04-17T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 12.0441 + }, + { + "Date+Time": "2009-04-18T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 10.0742 + }, + { + "Date+Time": "2009-04-19T00:00:00Z", + "Hs (total) (m)": 0.5257, + "Tp (total) (s)": 10.5914 + }, + { + "Date+Time": "2009-04-20T00:00:00Z", + "Hs (total) (m)": 0.8713, + "Tp (total) (s)": 10.39 + }, + { + "Date+Time": "2009-04-21T00:00:00Z", + "Hs (total) (m)": 1.1979, + "Tp (total) (s)": 10.461 + }, + { + "Date+Time": "2009-04-22T00:00:00Z", + "Hs (total) (m)": 1.2688, + "Tp (total) (s)": 10.4366 + }, + { + "Date+Time": "2009-04-23T00:00:00Z", + "Hs (total) (m)": 1.7609, + "Tp (total) (s)": 10.4823 + }, + { + "Date+Time": "2009-04-24T00:00:00Z", + "Hs (total) (m)": 1.764, + "Tp (total) (s)": 10.506 + }, + { + "Date+Time": "2009-04-25T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 10.8905 + }, + { + "Date+Time": "2009-04-26T00:00:00Z", + "Hs (total) (m)": 1.9227, + "Tp (total) (s)": 13.0909 + }, + { + "Date+Time": "2009-04-27T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 12.8117 + }, + { + "Date+Time": "2009-04-28T00:00:00Z", + "Hs (total) (m)": 1.5412, + "Tp (total) (s)": 10.1794 + }, + { + "Date+Time": "2009-04-29T00:00:00Z", + "Hs (total) (m)": 1.8075, + "Tp (total) (s)": 11.1744 + }, + { + "Date+Time": "2009-04-30T00:00:00Z", + "Hs (total) (m)": 1.9402, + "Tp (total) (s)": 11.4368 + }, + { + "Date+Time": "2009-05-01T00:00:00Z", + "Hs (total) (m)": 1.8975, + "Tp (total) (s)": 10.6471 + }, + { + "Date+Time": "2009-05-02T00:00:00Z", + "Hs (total) (m)": 2.2034, + "Tp (total) (s)": 13.5289 + }, + { + "Date+Time": "2009-05-03T00:00:00Z", + "Hs (total) (m)": 2.739, + "Tp (total) (s)": 14.6496 + }, + { + "Date+Time": "2009-05-04T00:00:00Z", + "Hs (total) (m)": 3.0282, + "Tp (total) (s)": 14.5459 + }, + { + "Date+Time": "2009-05-05T00:00:00Z", + "Hs (total) (m)": 2.5941, + "Tp (total) (s)": 13.9447 + }, + { + "Date+Time": "2009-05-06T00:00:00Z", + "Hs (total) (m)": 2.3881, + "Tp (total) (s)": 11.2552 + }, + { + "Date+Time": "2009-05-07T00:00:00Z", + "Hs (total) (m)": 2.7947, + "Tp (total) (s)": 10.8814 + }, + { + "Date+Time": "2009-05-08T00:00:00Z", + "Hs (total) (m)": 3.3113, + "Tp (total) (s)": 11.2903 + }, + { + "Date+Time": "2009-05-09T00:00:00Z", + "Hs (total) (m)": 3.8255, + "Tp (total) (s)": 12.5378 + }, + { + "Date+Time": "2009-05-10T00:00:00Z", + "Hs (total) (m)": 3.5669, + "Tp (total) (s)": 12.8681 + }, + { + "Date+Time": "2009-05-11T00:00:00Z", + "Hs (total) (m)": 2.3324, + "Tp (total) (s)": 12.804 + }, + { + "Date+Time": "2009-05-12T00:00:00Z", + "Hs (total) (m)": 1.5297, + "Tp (total) (s)": 11.2941 + }, + { + "Date+Time": "2009-05-13T00:00:00Z", + "Hs (total) (m)": 0.885, + "Tp (total) (s)": 10.538 + }, + { + "Date+Time": "2009-05-14T00:00:00Z", + "Hs (total) (m)": 0.6767, + "Tp (total) (s)": 10.3122 + }, + { + "Date+Time": "2009-05-15T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 13.7898 + }, + { + "Date+Time": "2009-05-16T00:00:00Z", + "Hs (total) (m)": 1.381, + "Tp (total) (s)": 13.3061 + }, + { + "Date+Time": "2009-05-17T00:00:00Z", + "Hs (total) (m)": 2.298, + "Tp (total) (s)": 12.5248 + }, + { + "Date+Time": "2009-05-18T00:00:00Z", + "Hs (total) (m)": 2.1805, + "Tp (total) (s)": 10.8608 + }, + { + "Date+Time": "2009-05-19T00:00:00Z", + "Hs (total) (m)": 1.9929, + "Tp (total) (s)": 10.4801 + }, + { + "Date+Time": "2009-05-20T00:00:00Z", + "Hs (total) (m)": 1.6564, + "Tp (total) (s)": 10.2374 + }, + { + "Date+Time": "2009-05-21T00:00:00Z", + "Hs (total) (m)": 1.4199, + "Tp (total) (s)": 10.0558 + }, + { + "Date+Time": "2009-05-22T00:00:00Z", + "Hs (total) (m)": 1.2566, + "Tp (total) (s)": 9.7316 + }, + { + "Date+Time": "2009-05-23T00:00:00Z", + "Hs (total) (m)": 1.3138, + "Tp (total) (s)": 8.6322 + }, + { + "Date+Time": "2009-05-24T00:00:00Z", + "Hs (total) (m)": 1.1727, + "Tp (total) (s)": 6.6584 + }, + { + "Date+Time": "2009-05-25T00:00:00Z", + "Hs (total) (m)": 1.8075, + "Tp (total) (s)": 11.6993 + }, + { + "Date+Time": "2009-05-26T00:00:00Z", + "Hs (total) (m)": 1.9921, + "Tp (total) (s)": 11.7176 + }, + { + "Date+Time": "2009-05-27T00:00:00Z", + "Hs (total) (m)": 2.1187, + "Tp (total) (s)": 11.5192 + }, + { + "Date+Time": "2009-05-28T00:00:00Z", + "Hs (total) (m)": 2.3553, + "Tp (total) (s)": 11.285 + }, + { + "Date+Time": "2009-05-29T00:00:00Z", + "Hs (total) (m)": 2.4323, + "Tp (total) (s)": 10.9699 + }, + { + "Date+Time": "2009-05-30T00:00:00Z", + "Hs (total) (m)": 2.237, + "Tp (total) (s)": 10.6319 + }, + { + "Date+Time": "2009-05-31T00:00:00Z", + "Hs (total) (m)": 1.896, + "Tp (total) (s)": 11.3788 + }, + { + "Date+Time": "2009-06-01T00:00:00Z", + "Hs (total) (m)": 1.6259, + "Tp (total) (s)": 11.465 + }, + { + "Date+Time": "2009-06-02T00:00:00Z", + "Hs (total) (m)": 1.2734, + "Tp (total) (s)": 11.2186 + }, + { + "Date+Time": "2009-06-03T00:00:00Z", + "Hs (total) (m)": 1.0384, + "Tp (total) (s)": 10.3778 + }, + { + "Date+Time": "2009-06-04T00:00:00Z", + "Hs (total) (m)": 0.8965, + "Tp (total) (s)": 9.3211 + }, + { + "Date+Time": "2009-06-05T00:00:00Z", + "Hs (total) (m)": 0.66, + "Tp (total) (s)": 8.3628 + }, + { + "Date+Time": "2009-06-06T00:00:00Z", + "Hs (total) (m)": 0.7202, + "Tp (total) (s)": 2.9107 + }, + { + "Date+Time": "2009-06-07T00:00:00Z", + "Hs (total) (m)": 0.6882, + "Tp (total) (s)": 3.0702 + }, + { + "Date+Time": "2009-06-08T00:00:00Z", + "Hs (total) (m)": 0.5516, + "Tp (total) (s)": 3.5463 + }, + { + "Date+Time": "2009-06-09T00:00:00Z", + "Hs (total) (m)": 0.4746, + "Tp (total) (s)": 6.3257 + }, + { + "Date+Time": "2009-06-10T00:00:00Z", + "Hs (total) (m)": 0.4753, + "Tp (total) (s)": 7.2466 + }, + { + "Date+Time": "2009-06-11T00:00:00Z", + "Hs (total) (m)": 0.4166, + "Tp (total) (s)": 2.4339 + }, + { + "Date+Time": "2009-06-12T00:00:00Z", + "Hs (total) (m)": 0.7752, + "Tp (total) (s)": 11.5131 + }, + { + "Date+Time": "2009-06-13T00:00:00Z", + "Hs (total) (m)": 0.9949, + "Tp (total) (s)": 9.8376 + }, + { + "Date+Time": "2009-06-14T00:00:00Z", + "Hs (total) (m)": 1.2543, + "Tp (total) (s)": 10.0284 + }, + { + "Date+Time": "2009-06-15T00:00:00Z", + "Hs (total) (m)": 1.3092, + "Tp (total) (s)": 10.0246 + }, + { + "Date+Time": "2009-06-16T00:00:00Z", + "Hs (total) (m)": 1.307, + "Tp (total) (s)": 9.8544 + }, + { + "Date+Time": "2009-06-17T00:00:00Z", + "Hs (total) (m)": 1.6816, + "Tp (total) (s)": 9.6042 + }, + { + "Date+Time": "2009-06-18T00:00:00Z", + "Hs (total) (m)": 1.4428, + "Tp (total) (s)": 10.2237 + }, + { + "Date+Time": "2009-06-19T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 10.7654 + }, + { + "Date+Time": "2009-06-20T00:00:00Z", + "Hs (total) (m)": 2.1264, + "Tp (total) (s)": 11.2407 + }, + { + "Date+Time": "2009-06-21T00:00:00Z", + "Hs (total) (m)": 2.2332, + "Tp (total) (s)": 11.3826 + }, + { + "Date+Time": "2009-06-22T00:00:00Z", + "Hs (total) (m)": 1.6099, + "Tp (total) (s)": 10.3412 + }, + { + "Date+Time": "2009-06-23T00:00:00Z", + "Hs (total) (m)": 1.0582, + "Tp (total) (s)": 8.4803 + }, + { + "Date+Time": "2009-06-24T00:00:00Z", + "Hs (total) (m)": 0.8263, + "Tp (total) (s)": 7.9005 + }, + { + "Date+Time": "2009-06-25T00:00:00Z", + "Hs (total) (m)": 0.8339, + "Tp (total) (s)": 8.0027 + }, + { + "Date+Time": "2009-06-26T00:00:00Z", + "Hs (total) (m)": 0.7706, + "Tp (total) (s)": 8.8672 + }, + { + "Date+Time": "2009-06-27T00:00:00Z", + "Hs (total) (m)": 0.4913, + "Tp (total) (s)": 8.3026 + }, + { + "Date+Time": "2009-06-28T00:00:00Z", + "Hs (total) (m)": 0.7591, + "Tp (total) (s)": 7.6571 + }, + { + "Date+Time": "2009-06-29T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 10.3977 + }, + { + "Date+Time": "2009-06-30T00:00:00Z", + "Hs (total) (m)": 0.9339, + "Tp (total) (s)": 10.2763 + }, + { + "Date+Time": "2009-07-01T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 9.4111 + }, + { + "Date+Time": "2009-07-02T00:00:00Z", + "Hs (total) (m)": 0.8194, + "Tp (total) (s)": 8.7977 + }, + { + "Date+Time": "2009-07-03T00:00:00Z", + "Hs (total) (m)": 0.766, + "Tp (total) (s)": 8.5139 + }, + { + "Date+Time": "2009-07-04T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 6.4219 + }, + { + "Date+Time": "2009-07-05T00:00:00Z", + "Hs (total) (m)": 1.6633, + "Tp (total) (s)": 8.5932 + }, + { + "Date+Time": "2009-07-06T00:00:00Z", + "Hs (total) (m)": 1.2307, + "Tp (total) (s)": 9.3486 + }, + { + "Date+Time": "2009-07-07T00:00:00Z", + "Hs (total) (m)": 1.2284, + "Tp (total) (s)": 9.3921 + }, + { + "Date+Time": "2009-07-08T00:00:00Z", + "Hs (total) (m)": 1.2017, + "Tp (total) (s)": 9.2311 + }, + { + "Date+Time": "2009-07-09T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 7.7334 + }, + { + "Date+Time": "2009-07-10T00:00:00Z", + "Hs (total) (m)": 0.7698, + "Tp (total) (s)": 6.5081 + }, + { + "Date+Time": "2009-07-11T00:00:00Z", + "Hs (total) (m)": 1.2146, + "Tp (total) (s)": 8.6589 + }, + { + "Date+Time": "2009-07-12T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 8.5871 + }, + { + "Date+Time": "2009-07-13T00:00:00Z", + "Hs (total) (m)": 2.4483, + "Tp (total) (s)": 9.4874 + }, + { + "Date+Time": "2009-07-14T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 9.4127 + }, + { + "Date+Time": "2009-07-15T00:00:00Z", + "Hs (total) (m)": 1.7289, + "Tp (total) (s)": 10.0177 + }, + { + "Date+Time": "2009-07-16T00:00:00Z", + "Hs (total) (m)": 1.2429, + "Tp (total) (s)": 9.7011 + }, + { + "Date+Time": "2009-07-17T00:00:00Z", + "Hs (total) (m)": 1.0323, + "Tp (total) (s)": 9.5058 + }, + { + "Date+Time": "2009-07-18T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 8.8137 + }, + { + "Date+Time": "2009-07-19T00:00:00Z", + "Hs (total) (m)": 1.22, + "Tp (total) (s)": 7.8516 + }, + { + "Date+Time": "2009-07-20T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 9.3112 + }, + { + "Date+Time": "2009-07-21T00:00:00Z", + "Hs (total) (m)": 1.3657, + "Tp (total) (s)": 8.462 + }, + { + "Date+Time": "2009-07-22T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 7.8623 + }, + { + "Date+Time": "2009-07-23T00:00:00Z", + "Hs (total) (m)": 1.3131, + "Tp (total) (s)": 8.3369 + }, + { + "Date+Time": "2009-07-24T00:00:00Z", + "Hs (total) (m)": 1.0849, + "Tp (total) (s)": 8.3354 + }, + { + "Date+Time": "2009-07-25T00:00:00Z", + "Hs (total) (m)": 0.8591, + "Tp (total) (s)": 8.0523 + }, + { + "Date+Time": "2009-07-26T00:00:00Z", + "Hs (total) (m)": 2.0768, + "Tp (total) (s)": 6.7766 + }, + { + "Date+Time": "2009-07-27T00:00:00Z", + "Hs (total) (m)": 3.0007, + "Tp (total) (s)": 11.4994 + }, + { + "Date+Time": "2009-07-28T00:00:00Z", + "Hs (total) (m)": 2.7757, + "Tp (total) (s)": 9.9277 + }, + { + "Date+Time": "2009-07-29T00:00:00Z", + "Hs (total) (m)": 2.5155, + "Tp (total) (s)": 9.4012 + }, + { + "Date+Time": "2009-07-30T00:00:00Z", + "Hs (total) (m)": 1.9593, + "Tp (total) (s)": 9.4928 + }, + { + "Date+Time": "2009-07-31T00:00:00Z", + "Hs (total) (m)": 2.1744, + "Tp (total) (s)": 8.7359 + }, + { + "Date+Time": "2009-08-01T00:00:00Z", + "Hs (total) (m)": 2.5071, + "Tp (total) (s)": 9.4943 + }, + { + "Date+Time": "2009-08-02T00:00:00Z", + "Hs (total) (m)": 1.9761, + "Tp (total) (s)": 9.5317 + }, + { + "Date+Time": "2009-08-03T00:00:00Z", + "Hs (total) (m)": 2.0997, + "Tp (total) (s)": 8.9419 + }, + { + "Date+Time": "2009-08-04T00:00:00Z", + "Hs (total) (m)": 2.0989, + "Tp (total) (s)": 9.5645 + }, + { + "Date+Time": "2009-08-05T00:00:00Z", + "Hs (total) (m)": 3.0068, + "Tp (total) (s)": 10.0398 + }, + { + "Date+Time": "2009-08-06T00:00:00Z", + "Hs (total) (m)": 2.7848, + "Tp (total) (s)": 11.359 + }, + { + "Date+Time": "2009-08-07T00:00:00Z", + "Hs (total) (m)": 1.9822, + "Tp (total) (s)": 10.3107 + }, + { + "Date+Time": "2009-08-08T00:00:00Z", + "Hs (total) (m)": 2.1653, + "Tp (total) (s)": 8.9106 + }, + { + "Date+Time": "2009-08-09T00:00:00Z", + "Hs (total) (m)": 1.413, + "Tp (total) (s)": 8.7092 + }, + { + "Date+Time": "2009-08-10T00:00:00Z", + "Hs (total) (m)": 1.7632, + "Tp (total) (s)": 6.2708 + }, + { + "Date+Time": "2009-08-11T00:00:00Z", + "Hs (total) (m)": 1.2101, + "Tp (total) (s)": 8.2423 + }, + { + "Date+Time": "2009-08-12T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 8.1248 + }, + { + "Date+Time": "2009-08-13T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 8.0187 + }, + { + "Date+Time": "2009-08-14T00:00:00Z", + "Hs (total) (m)": 0.9087, + "Tp (total) (s)": 8.0386 + }, + { + "Date+Time": "2009-08-15T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 7.1703 + }, + { + "Date+Time": "2009-08-16T00:00:00Z", + "Hs (total) (m)": 1.6511, + "Tp (total) (s)": 7.622 + }, + { + "Date+Time": "2009-08-17T00:00:00Z", + "Hs (total) (m)": 1.9219, + "Tp (total) (s)": 8.047 + }, + { + "Date+Time": "2009-08-18T00:00:00Z", + "Hs (total) (m)": 1.6396, + "Tp (total) (s)": 8.4437 + }, + { + "Date+Time": "2009-08-19T00:00:00Z", + "Hs (total) (m)": 1.8235, + "Tp (total) (s)": 7.2306 + }, + { + "Date+Time": "2009-08-20T00:00:00Z", + "Hs (total) (m)": 1.5946, + "Tp (total) (s)": 10.889 + }, + { + "Date+Time": "2009-08-21T00:00:00Z", + "Hs (total) (m)": 2.4773, + "Tp (total) (s)": 10.2702 + }, + { + "Date+Time": "2009-08-22T00:00:00Z", + "Hs (total) (m)": 2.1943, + "Tp (total) (s)": 10.5174 + }, + { + "Date+Time": "2009-08-23T00:00:00Z", + "Hs (total) (m)": 2.3179, + "Tp (total) (s)": 8.8 + }, + { + "Date+Time": "2009-08-24T00:00:00Z", + "Hs (total) (m)": 2.0478, + "Tp (total) (s)": 8.9663 + }, + { + "Date+Time": "2009-08-25T00:00:00Z", + "Hs (total) (m)": 2.6368, + "Tp (total) (s)": 12.2463 + }, + { + "Date+Time": "2009-08-26T00:00:00Z", + "Hs (total) (m)": 2.6093, + "Tp (total) (s)": 11.3582 + }, + { + "Date+Time": "2009-08-27T00:00:00Z", + "Hs (total) (m)": 1.8777, + "Tp (total) (s)": 9.4806 + }, + { + "Date+Time": "2009-08-28T00:00:00Z", + "Hs (total) (m)": 2.6002, + "Tp (total) (s)": 8.7519 + }, + { + "Date+Time": "2009-08-29T00:00:00Z", + "Hs (total) (m)": 2.5613, + "Tp (total) (s)": 11.1881 + }, + { + "Date+Time": "2009-08-30T00:00:00Z", + "Hs (total) (m)": 2.2561, + "Tp (total) (s)": 11.2598 + }, + { + "Date+Time": "2009-08-31T00:00:00Z", + "Hs (total) (m)": 2.031, + "Tp (total) (s)": 11.1263 + }, + { + "Date+Time": "2009-09-01T00:00:00Z", + "Hs (total) (m)": 2.1142, + "Tp (total) (s)": 7.5472 + }, + { + "Date+Time": "2009-09-02T00:00:00Z", + "Hs (total) (m)": 2.0531, + "Tp (total) (s)": 11.5024 + }, + { + "Date+Time": "2009-09-03T00:00:00Z", + "Hs (total) (m)": 1.7197, + "Tp (total) (s)": 11.285 + }, + { + "Date+Time": "2009-09-04T00:00:00Z", + "Hs (total) (m)": 1.7022, + "Tp (total) (s)": 7.992 + }, + { + "Date+Time": "2009-09-05T00:00:00Z", + "Hs (total) (m)": 1.9112, + "Tp (total) (s)": 8.4758 + }, + { + "Date+Time": "2009-09-06T00:00:00Z", + "Hs (total) (m)": 2.2164, + "Tp (total) (s)": 9.299 + }, + { + "Date+Time": "2009-09-07T00:00:00Z", + "Hs (total) (m)": 2.253, + "Tp (total) (s)": 9.1769 + }, + { + "Date+Time": "2009-09-08T00:00:00Z", + "Hs (total) (m)": 2.7749, + "Tp (total) (s)": 7.6907 + }, + { + "Date+Time": "2009-09-09T00:00:00Z", + "Hs (total) (m)": 2.2492, + "Tp (total) (s)": 10.1032 + }, + { + "Date+Time": "2009-09-10T00:00:00Z", + "Hs (total) (m)": 1.8777, + "Tp (total) (s)": 10.3824 + }, + { + "Date+Time": "2009-09-11T00:00:00Z", + "Hs (total) (m)": 1.5778, + "Tp (total) (s)": 10.2565 + }, + { + "Date+Time": "2009-09-12T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 9.9483 + }, + { + "Date+Time": "2009-09-13T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 9.785 + }, + { + "Date+Time": "2009-09-14T00:00:00Z", + "Hs (total) (m)": 0.8972, + "Tp (total) (s)": 10.2161 + }, + { + "Date+Time": "2009-09-15T00:00:00Z", + "Hs (total) (m)": 0.7561, + "Tp (total) (s)": 10.3229 + }, + { + "Date+Time": "2009-09-16T00:00:00Z", + "Hs (total) (m)": 0.782, + "Tp (total) (s)": 9.9734 + }, + { + "Date+Time": "2009-09-17T00:00:00Z", + "Hs (total) (m)": 1.0033, + "Tp (total) (s)": 13.5319 + }, + { + "Date+Time": "2009-09-18T00:00:00Z", + "Hs (total) (m)": 1.0971, + "Tp (total) (s)": 12.8758 + }, + { + "Date+Time": "2009-09-19T00:00:00Z", + "Hs (total) (m)": 1.7136, + "Tp (total) (s)": 10.3793 + }, + { + "Date+Time": "2009-09-20T00:00:00Z", + "Hs (total) (m)": 1.4832, + "Tp (total) (s)": 12.6583 + }, + { + "Date+Time": "2009-09-21T00:00:00Z", + "Hs (total) (m)": 2.1363, + "Tp (total) (s)": 9.4958 + }, + { + "Date+Time": "2009-09-22T00:00:00Z", + "Hs (total) (m)": 3.0869, + "Tp (total) (s)": 13.1329 + }, + { + "Date+Time": "2009-09-23T00:00:00Z", + "Hs (total) (m)": 2.7703, + "Tp (total) (s)": 12.9261 + }, + { + "Date+Time": "2009-09-24T00:00:00Z", + "Hs (total) (m)": 2.2828, + "Tp (total) (s)": 12.6003 + }, + { + "Date+Time": "2009-09-25T00:00:00Z", + "Hs (total) (m)": 1.9059, + "Tp (total) (s)": 11.4917 + }, + { + "Date+Time": "2009-09-26T00:00:00Z", + "Hs (total) (m)": 1.7365, + "Tp (total) (s)": 10.5251 + }, + { + "Date+Time": "2009-09-27T00:00:00Z", + "Hs (total) (m)": 1.6053, + "Tp (total) (s)": 10.5289 + }, + { + "Date+Time": "2009-09-28T00:00:00Z", + "Hs (total) (m)": 1.5435, + "Tp (total) (s)": 10.6761 + }, + { + "Date+Time": "2009-09-29T00:00:00Z", + "Hs (total) (m)": 1.4672, + "Tp (total) (s)": 11.1682 + }, + { + "Date+Time": "2009-09-30T00:00:00Z", + "Hs (total) (m)": 1.3443, + "Tp (total) (s)": 11.3018 + }, + { + "Date+Time": "2009-10-01T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 11.1797 + }, + { + "Date+Time": "2009-10-02T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 10.4976 + }, + { + "Date+Time": "2009-10-03T00:00:00Z", + "Hs (total) (m)": 1.6556, + "Tp (total) (s)": 5.8374 + }, + { + "Date+Time": "2009-10-04T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 7.2779 + }, + { + "Date+Time": "2009-10-05T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 12.6415 + }, + { + "Date+Time": "2009-10-06T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 12.4073 + }, + { + "Date+Time": "2009-10-07T00:00:00Z", + "Hs (total) (m)": 0.9346, + "Tp (total) (s)": 9.5141 + }, + { + "Date+Time": "2009-10-08T00:00:00Z", + "Hs (total) (m)": 0.6821, + "Tp (total) (s)": 8.3499 + }, + { + "Date+Time": "2009-10-09T00:00:00Z", + "Hs (total) (m)": 1.664, + "Tp (total) (s)": 8.7458 + }, + { + "Date+Time": "2009-10-10T00:00:00Z", + "Hs (total) (m)": 1.7258, + "Tp (total) (s)": 9.6866 + }, + { + "Date+Time": "2009-10-11T00:00:00Z", + "Hs (total) (m)": 1.4702, + "Tp (total) (s)": 9.6339 + }, + { + "Date+Time": "2009-10-12T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 11.5833 + }, + { + "Date+Time": "2009-10-13T00:00:00Z", + "Hs (total) (m)": 1.5053, + "Tp (total) (s)": 11.3872 + }, + { + "Date+Time": "2009-10-14T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 11.1072 + }, + { + "Date+Time": "2009-10-15T00:00:00Z", + "Hs (total) (m)": 1.3894, + "Tp (total) (s)": 10.9073 + }, + { + "Date+Time": "2009-10-16T00:00:00Z", + "Hs (total) (m)": 1.1994, + "Tp (total) (s)": 11.4956 + }, + { + "Date+Time": "2009-10-17T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 11.2972 + }, + { + "Date+Time": "2009-10-18T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 14.2903 + }, + { + "Date+Time": "2009-10-19T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 12.8529 + }, + { + "Date+Time": "2009-10-20T00:00:00Z", + "Hs (total) (m)": 2.504, + "Tp (total) (s)": 8.8816 + }, + { + "Date+Time": "2009-10-21T00:00:00Z", + "Hs (total) (m)": 2.7139, + "Tp (total) (s)": 14.7565 + }, + { + "Date+Time": "2009-10-22T00:00:00Z", + "Hs (total) (m)": 2.7863, + "Tp (total) (s)": 13.7928 + }, + { + "Date+Time": "2009-10-23T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 12.698 + }, + { + "Date+Time": "2009-10-24T00:00:00Z", + "Hs (total) (m)": 1.4435, + "Tp (total) (s)": 8.8755 + }, + { + "Date+Time": "2009-10-25T00:00:00Z", + "Hs (total) (m)": 3.0503, + "Tp (total) (s)": 9.3928 + }, + { + "Date+Time": "2009-10-26T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 10.3328 + }, + { + "Date+Time": "2009-10-27T00:00:00Z", + "Hs (total) (m)": 2.4216, + "Tp (total) (s)": 10.4862 + }, + { + "Date+Time": "2009-10-28T00:00:00Z", + "Hs (total) (m)": 2.8191, + "Tp (total) (s)": 11.6321 + }, + { + "Date+Time": "2009-10-29T00:00:00Z", + "Hs (total) (m)": 2.234, + "Tp (total) (s)": 9.7194 + }, + { + "Date+Time": "2009-10-30T00:00:00Z", + "Hs (total) (m)": 2.2523, + "Tp (total) (s)": 10.2748 + }, + { + "Date+Time": "2009-10-31T00:00:00Z", + "Hs (total) (m)": 2.3782, + "Tp (total) (s)": 10.464 + }, + { + "Date+Time": "2009-11-01T00:00:00Z", + "Hs (total) (m)": 2.308, + "Tp (total) (s)": 11.0111 + }, + { + "Date+Time": "2009-11-02T00:00:00Z", + "Hs (total) (m)": 1.9356, + "Tp (total) (s)": 10.432 + }, + { + "Date+Time": "2009-11-03T00:00:00Z", + "Hs (total) (m)": 2.5346, + "Tp (total) (s)": 10.5983 + }, + { + "Date+Time": "2009-11-04T00:00:00Z", + "Hs (total) (m)": 3.4783, + "Tp (total) (s)": 12.3486 + }, + { + "Date+Time": "2009-11-05T00:00:00Z", + "Hs (total) (m)": 3.9033, + "Tp (total) (s)": 14.1392 + }, + { + "Date+Time": "2009-11-06T00:00:00Z", + "Hs (total) (m)": 3.309, + "Tp (total) (s)": 14.2499 + }, + { + "Date+Time": "2009-11-07T00:00:00Z", + "Hs (total) (m)": 3.0755, + "Tp (total) (s)": 12.5057 + }, + { + "Date+Time": "2009-11-08T00:00:00Z", + "Hs (total) (m)": 4.0437, + "Tp (total) (s)": 15.3478 + }, + { + "Date+Time": "2009-11-09T00:00:00Z", + "Hs (total) (m)": 3.3517, + "Tp (total) (s)": 15.231 + }, + { + "Date+Time": "2009-11-10T00:00:00Z", + "Hs (total) (m)": 1.8128, + "Tp (total) (s)": 12.8933 + }, + { + "Date+Time": "2009-11-11T00:00:00Z", + "Hs (total) (m)": 1.6747, + "Tp (total) (s)": 12.6469 + }, + { + "Date+Time": "2009-11-12T00:00:00Z", + "Hs (total) (m)": 2.2126, + "Tp (total) (s)": 11.6771 + }, + { + "Date+Time": "2009-11-13T00:00:00Z", + "Hs (total) (m)": 3.3509, + "Tp (total) (s)": 11.9182 + }, + { + "Date+Time": "2009-11-14T00:00:00Z", + "Hs (total) (m)": 2.4941, + "Tp (total) (s)": 12.4233 + }, + { + "Date+Time": "2009-11-15T00:00:00Z", + "Hs (total) (m)": 2.4377, + "Tp (total) (s)": 12.756 + }, + { + "Date+Time": "2009-11-16T00:00:00Z", + "Hs (total) (m)": 2.6757, + "Tp (total) (s)": 10.902 + }, + { + "Date+Time": "2009-11-17T00:00:00Z", + "Hs (total) (m)": 2.0493, + "Tp (total) (s)": 10.1825 + }, + { + "Date+Time": "2009-11-18T00:00:00Z", + "Hs (total) (m)": 2.2126, + "Tp (total) (s)": 8.4109 + }, + { + "Date+Time": "2009-11-19T00:00:00Z", + "Hs (total) (m)": 4.0353, + "Tp (total) (s)": 10.741 + }, + { + "Date+Time": "2009-11-20T00:00:00Z", + "Hs (total) (m)": 4.0376, + "Tp (total) (s)": 13.9737 + }, + { + "Date+Time": "2009-11-21T00:00:00Z", + "Hs (total) (m)": 3.1259, + "Tp (total) (s)": 12.6087 + }, + { + "Date+Time": "2009-11-22T00:00:00Z", + "Hs (total) (m)": 4.4465, + "Tp (total) (s)": 11.5596 + }, + { + "Date+Time": "2009-11-23T00:00:00Z", + "Hs (total) (m)": 5.5161, + "Tp (total) (s)": 15.2937 + }, + { + "Date+Time": "2009-11-24T00:00:00Z", + "Hs (total) (m)": 4.3573, + "Tp (total) (s)": 14.9739 + }, + { + "Date+Time": "2009-11-25T00:00:00Z", + "Hs (total) (m)": 4.6365, + "Tp (total) (s)": 11.5482 + }, + { + "Date+Time": "2009-11-26T00:00:00Z", + "Hs (total) (m)": 4.0689, + "Tp (total) (s)": 12.228 + }, + { + "Date+Time": "2009-11-27T00:00:00Z", + "Hs (total) (m)": 3.4082, + "Tp (total) (s)": 11.877 + }, + { + "Date+Time": "2009-11-28T00:00:00Z", + "Hs (total) (m)": 2.6681, + "Tp (total) (s)": 11.7145 + }, + { + "Date+Time": "2009-11-29T00:00:00Z", + "Hs (total) (m)": 2.1233, + "Tp (total) (s)": 11.4765 + }, + { + "Date+Time": "2009-11-30T00:00:00Z", + "Hs (total) (m)": 1.6137, + "Tp (total) (s)": 11.3865 + }, + { + "Date+Time": "2009-12-01T00:00:00Z", + "Hs (total) (m)": 1.4245, + "Tp (total) (s)": 10.3557 + }, + { + "Date+Time": "2009-12-02T00:00:00Z", + "Hs (total) (m)": 2.5086, + "Tp (total) (s)": 8.7924 + }, + { + "Date+Time": "2009-12-03T00:00:00Z", + "Hs (total) (m)": 2.8893, + "Tp (total) (s)": 14.8099 + }, + { + "Date+Time": "2009-12-04T00:00:00Z", + "Hs (total) (m)": 2.7123, + "Tp (total) (s)": 13.9126 + }, + { + "Date+Time": "2009-12-05T00:00:00Z", + "Hs (total) (m)": 2.2164, + "Tp (total) (s)": 11.8496 + }, + { + "Date+Time": "2009-12-06T00:00:00Z", + "Hs (total) (m)": 4.0857, + "Tp (total) (s)": 11.9556 + }, + { + "Date+Time": "2009-12-07T00:00:00Z", + "Hs (total) (m)": 4.4679, + "Tp (total) (s)": 12.9307 + }, + { + "Date+Time": "2009-12-08T00:00:00Z", + "Hs (total) (m)": 3.4547, + "Tp (total) (s)": 12.7949 + }, + { + "Date+Time": "2009-12-09T00:00:00Z", + "Hs (total) (m)": 4.0979, + "Tp (total) (s)": 13.3732 + }, + { + "Date+Time": "2009-12-10T00:00:00Z", + "Hs (total) (m)": 4.2711, + "Tp (total) (s)": 15.8078 + }, + { + "Date+Time": "2009-12-11T00:00:00Z", + "Hs (total) (m)": 3.4097, + "Tp (total) (s)": 15.2066 + }, + { + "Date+Time": "2009-12-12T00:00:00Z", + "Hs (total) (m)": 2.8283, + "Tp (total) (s)": 13.3023 + }, + { + "Date+Time": "2009-12-13T00:00:00Z", + "Hs (total) (m)": 1.9341, + "Tp (total) (s)": 11.7656 + }, + { + "Date+Time": "2009-12-14T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 10.4541 + }, + { + "Date+Time": "2009-12-15T00:00:00Z", + "Hs (total) (m)": 0.7767, + "Tp (total) (s)": 13.8997 + }, + { + "Date+Time": "2009-12-16T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 14.214 + }, + { + "Date+Time": "2009-12-17T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 14.0858 + }, + { + "Date+Time": "2009-12-18T00:00:00Z", + "Hs (total) (m)": 0.9568, + "Tp (total) (s)": 13.7356 + }, + { + "Date+Time": "2009-12-19T00:00:00Z", + "Hs (total) (m)": 0.6623, + "Tp (total) (s)": 12.7918 + }, + { + "Date+Time": "2009-12-20T00:00:00Z", + "Hs (total) (m)": 0.7248, + "Tp (total) (s)": 9.4462 + }, + { + "Date+Time": "2009-12-21T00:00:00Z", + "Hs (total) (m)": 0.9102, + "Tp (total) (s)": 3.7225 + }, + { + "Date+Time": "2009-12-22T00:00:00Z", + "Hs (total) (m)": 0.8637, + "Tp (total) (s)": 6.0389 + }, + { + "Date+Time": "2009-12-23T00:00:00Z", + "Hs (total) (m)": 0.9919, + "Tp (total) (s)": 14.3109 + }, + { + "Date+Time": "2009-12-24T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 14.1057 + }, + { + "Date+Time": "2009-12-25T00:00:00Z", + "Hs (total) (m)": 0.9629, + "Tp (total) (s)": 13.6395 + }, + { + "Date+Time": "2009-12-26T00:00:00Z", + "Hs (total) (m)": 2.382, + "Tp (total) (s)": 9.3959 + }, + { + "Date+Time": "2009-12-27T00:00:00Z", + "Hs (total) (m)": 2.3423, + "Tp (total) (s)": 10.3465 + }, + { + "Date+Time": "2009-12-28T00:00:00Z", + "Hs (total) (m)": 1.822, + "Tp (total) (s)": 10.1878 + }, + { + "Date+Time": "2009-12-29T00:00:00Z", + "Hs (total) (m)": 1.6236, + "Tp (total) (s)": 9.9551 + }, + { + "Date+Time": "2009-12-30T00:00:00Z", + "Hs (total) (m)": 1.4931, + "Tp (total) (s)": 9.492 + }, + { + "Date+Time": "2009-12-31T00:00:00Z", + "Hs (total) (m)": 1.5458, + "Tp (total) (s)": 4.1887 + }, + { + "Date+Time": "2010-01-01T00:00:00Z", + "Hs (total) (m)": 0.5417, + "Tp (total) (s)": 10.1642 + }, + { + "Date+Time": "2010-01-02T00:00:00Z", + "Hs (total) (m)": 0.4372, + "Tp (total) (s)": 10.226 + }, + { + "Date+Time": "2010-01-03T00:00:00Z", + "Hs (total) (m)": 0.8354, + "Tp (total) (s)": 3.103 + }, + { + "Date+Time": "2010-01-04T00:00:00Z", + "Hs (total) (m)": 1.0308, + "Tp (total) (s)": 14.7191 + }, + { + "Date+Time": "2010-01-05T00:00:00Z", + "Hs (total) (m)": 0.8637, + "Tp (total) (s)": 11.2026 + }, + { + "Date+Time": "2010-01-06T00:00:00Z", + "Hs (total) (m)": 1.0392, + "Tp (total) (s)": 10.6311 + }, + { + "Date+Time": "2010-01-07T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 10.3809 + }, + { + "Date+Time": "2010-01-08T00:00:00Z", + "Hs (total) (m)": 0.8072, + "Tp (total) (s)": 6.4882 + }, + { + "Date+Time": "2010-01-09T00:00:00Z", + "Hs (total) (m)": 0.705, + "Tp (total) (s)": 11.5146 + }, + { + "Date+Time": "2010-01-10T00:00:00Z", + "Hs (total) (m)": 1.2116, + "Tp (total) (s)": 13.6723 + }, + { + "Date+Time": "2010-01-11T00:00:00Z", + "Hs (total) (m)": 1.1216, + "Tp (total) (s)": 11.8816 + }, + { + "Date+Time": "2010-01-12T00:00:00Z", + "Hs (total) (m)": 1.5374, + "Tp (total) (s)": 13.8485 + }, + { + "Date+Time": "2010-01-13T00:00:00Z", + "Hs (total) (m)": 2.1149, + "Tp (total) (s)": 7.9493 + }, + { + "Date+Time": "2010-01-14T00:00:00Z", + "Hs (total) (m)": 2.0722, + "Tp (total) (s)": 15.0044 + }, + { + "Date+Time": "2010-01-15T00:00:00Z", + "Hs (total) (m)": 2.6131, + "Tp (total) (s)": 12.9261 + }, + { + "Date+Time": "2010-01-16T00:00:00Z", + "Hs (total) (m)": 2.9199, + "Tp (total) (s)": 12.302 + }, + { + "Date+Time": "2010-01-17T00:00:00Z", + "Hs (total) (m)": 3.0519, + "Tp (total) (s)": 11.269 + }, + { + "Date+Time": "2010-01-18T00:00:00Z", + "Hs (total) (m)": 3.0999, + "Tp (total) (s)": 11.6878 + }, + { + "Date+Time": "2010-01-19T00:00:00Z", + "Hs (total) (m)": 3.1312, + "Tp (total) (s)": 12.0586 + }, + { + "Date+Time": "2010-01-20T00:00:00Z", + "Hs (total) (m)": 2.6605, + "Tp (total) (s)": 11.2636 + }, + { + "Date+Time": "2010-01-21T00:00:00Z", + "Hs (total) (m)": 1.8921, + "Tp (total) (s)": 12.1998 + }, + { + "Date+Time": "2010-01-22T00:00:00Z", + "Hs (total) (m)": 2.4735, + "Tp (total) (s)": 13.9851 + }, + { + "Date+Time": "2010-01-23T00:00:00Z", + "Hs (total) (m)": 2.9412, + "Tp (total) (s)": 13.1153 + }, + { + "Date+Time": "2010-01-24T00:00:00Z", + "Hs (total) (m)": 2.6627, + "Tp (total) (s)": 12.6873 + }, + { + "Date+Time": "2010-01-25T00:00:00Z", + "Hs (total) (m)": 2.3255, + "Tp (total) (s)": 12.3821 + }, + { + "Date+Time": "2010-01-26T00:00:00Z", + "Hs (total) (m)": 2.131, + "Tp (total) (s)": 12.0243 + }, + { + "Date+Time": "2010-01-27T00:00:00Z", + "Hs (total) (m)": 2.0562, + "Tp (total) (s)": 13.5769 + }, + { + "Date+Time": "2010-01-28T00:00:00Z", + "Hs (total) (m)": 2.1989, + "Tp (total) (s)": 13.876 + }, + { + "Date+Time": "2010-01-29T00:00:00Z", + "Hs (total) (m)": 2.1981, + "Tp (total) (s)": 13.8272 + }, + { + "Date+Time": "2010-01-30T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 13.0749 + }, + { + "Date+Time": "2010-01-31T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 8.7794 + }, + { + "Date+Time": "2010-02-01T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 10.4923 + }, + { + "Date+Time": "2010-02-02T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 10.1772 + }, + { + "Date+Time": "2010-02-03T00:00:00Z", + "Hs (total) (m)": 1.2459, + "Tp (total) (s)": 9.962 + }, + { + "Date+Time": "2010-02-04T00:00:00Z", + "Hs (total) (m)": 1.4763, + "Tp (total) (s)": 7.6548 + }, + { + "Date+Time": "2010-02-05T00:00:00Z", + "Hs (total) (m)": 2.1767, + "Tp (total) (s)": 13.3374 + }, + { + "Date+Time": "2010-02-06T00:00:00Z", + "Hs (total) (m)": 2.6162, + "Tp (total) (s)": 13.0184 + }, + { + "Date+Time": "2010-02-07T00:00:00Z", + "Hs (total) (m)": 2.8802, + "Tp (total) (s)": 14.8999 + }, + { + "Date+Time": "2010-02-08T00:00:00Z", + "Hs (total) (m)": 2.8504, + "Tp (total) (s)": 15.0395 + }, + { + "Date+Time": "2010-02-09T00:00:00Z", + "Hs (total) (m)": 2.6635, + "Tp (total) (s)": 18.3454 + }, + { + "Date+Time": "2010-02-10T00:00:00Z", + "Hs (total) (m)": 2.4804, + "Tp (total) (s)": 16.9317 + }, + { + "Date+Time": "2010-02-11T00:00:00Z", + "Hs (total) (m)": 2.205, + "Tp (total) (s)": 15.5736 + }, + { + "Date+Time": "2010-02-12T00:00:00Z", + "Hs (total) (m)": 1.7846, + "Tp (total) (s)": 14.8778 + }, + { + "Date+Time": "2010-02-13T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 12.9872 + }, + { + "Date+Time": "2010-02-14T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 12.8773 + }, + { + "Date+Time": "2010-02-15T00:00:00Z", + "Hs (total) (m)": 0.9445, + "Tp (total) (s)": 12.0319 + }, + { + "Date+Time": "2010-02-16T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 11.4231 + }, + { + "Date+Time": "2010-02-17T00:00:00Z", + "Hs (total) (m)": 1.1811, + "Tp (total) (s)": 17.4474 + }, + { + "Date+Time": "2010-02-18T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 16.8386 + }, + { + "Date+Time": "2010-02-19T00:00:00Z", + "Hs (total) (m)": 1.5847, + "Tp (total) (s)": 11.0958 + }, + { + "Date+Time": "2010-02-20T00:00:00Z", + "Hs (total) (m)": 1.5404, + "Tp (total) (s)": 15.8986 + }, + { + "Date+Time": "2010-02-21T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 15.0693 + }, + { + "Date+Time": "2010-02-22T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 13.8722 + }, + { + "Date+Time": "2010-02-23T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 13.3892 + }, + { + "Date+Time": "2010-02-24T00:00:00Z", + "Hs (total) (m)": 1.4092, + "Tp (total) (s)": 11.7046 + }, + { + "Date+Time": "2010-02-25T00:00:00Z", + "Hs (total) (m)": 1.957, + "Tp (total) (s)": 13.9302 + }, + { + "Date+Time": "2010-02-26T00:00:00Z", + "Hs (total) (m)": 1.6129, + "Tp (total) (s)": 13.0612 + }, + { + "Date+Time": "2010-02-27T00:00:00Z", + "Hs (total) (m)": 1.3871, + "Tp (total) (s)": 12.0212 + }, + { + "Date+Time": "2010-02-28T00:00:00Z", + "Hs (total) (m)": 1.0979, + "Tp (total) (s)": 11.536 + }, + { + "Date+Time": "2010-03-01T00:00:00Z", + "Hs (total) (m)": 1.175, + "Tp (total) (s)": 10.8425 + }, + { + "Date+Time": "2010-03-02T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 9.5622 + }, + { + "Date+Time": "2010-03-03T00:00:00Z", + "Hs (total) (m)": 1.4092, + "Tp (total) (s)": 9.4646 + }, + { + "Date+Time": "2010-03-04T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 8.8878 + }, + { + "Date+Time": "2010-03-05T00:00:00Z", + "Hs (total) (m)": 0.8263, + "Tp (total) (s)": 8.4002 + }, + { + "Date+Time": "2010-03-06T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 7.9119 + }, + { + "Date+Time": "2010-03-07T00:00:00Z", + "Hs (total) (m)": 1.0247, + "Tp (total) (s)": 12.4104 + }, + { + "Date+Time": "2010-03-08T00:00:00Z", + "Hs (total) (m)": 1.3558, + "Tp (total) (s)": 11.6894 + }, + { + "Date+Time": "2010-03-09T00:00:00Z", + "Hs (total) (m)": 1.3131, + "Tp (total) (s)": 14.5825 + }, + { + "Date+Time": "2010-03-10T00:00:00Z", + "Hs (total) (m)": 1.0369, + "Tp (total) (s)": 15.2577 + }, + { + "Date+Time": "2010-03-11T00:00:00Z", + "Hs (total) (m)": 0.8805, + "Tp (total) (s)": 15.2356 + }, + { + "Date+Time": "2010-03-12T00:00:00Z", + "Hs (total) (m)": 0.9842, + "Tp (total) (s)": 14.3529 + }, + { + "Date+Time": "2010-03-13T00:00:00Z", + "Hs (total) (m)": 1.0781, + "Tp (total) (s)": 13.6845 + }, + { + "Date+Time": "2010-03-14T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 12.0861 + }, + { + "Date+Time": "2010-03-15T00:00:00Z", + "Hs (total) (m)": 0.8675, + "Tp (total) (s)": 10.3122 + }, + { + "Date+Time": "2010-03-16T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 8.7184 + }, + { + "Date+Time": "2010-03-17T00:00:00Z", + "Hs (total) (m)": 1.6732, + "Tp (total) (s)": 12.5713 + }, + { + "Date+Time": "2010-03-18T00:00:00Z", + "Hs (total) (m)": 2.3087, + "Tp (total) (s)": 11.4856 + }, + { + "Date+Time": "2010-03-19T00:00:00Z", + "Hs (total) (m)": 2.8382, + "Tp (total) (s)": 10.538 + }, + { + "Date+Time": "2010-03-20T00:00:00Z", + "Hs (total) (m)": 3.0549, + "Tp (total) (s)": 12.0518 + }, + { + "Date+Time": "2010-03-21T00:00:00Z", + "Hs (total) (m)": 2.7055, + "Tp (total) (s)": 11.9922 + }, + { + "Date+Time": "2010-03-22T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 10.3755 + }, + { + "Date+Time": "2010-03-23T00:00:00Z", + "Hs (total) (m)": 2.6315, + "Tp (total) (s)": 10.2611 + }, + { + "Date+Time": "2010-03-24T00:00:00Z", + "Hs (total) (m)": 2.6315, + "Tp (total) (s)": 10.358 + }, + { + "Date+Time": "2010-03-25T00:00:00Z", + "Hs (total) (m)": 2.6788, + "Tp (total) (s)": 10.4808 + }, + { + "Date+Time": "2010-03-26T00:00:00Z", + "Hs (total) (m)": 2.3736, + "Tp (total) (s)": 10.5358 + }, + { + "Date+Time": "2010-03-27T00:00:00Z", + "Hs (total) (m)": 1.9127, + "Tp (total) (s)": 10.9516 + }, + { + "Date+Time": "2010-03-28T00:00:00Z", + "Hs (total) (m)": 1.6541, + "Tp (total) (s)": 10.7898 + }, + { + "Date+Time": "2010-03-29T00:00:00Z", + "Hs (total) (m)": 1.2719, + "Tp (total) (s)": 10.3786 + }, + { + "Date+Time": "2010-03-30T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 9.7942 + }, + { + "Date+Time": "2010-03-31T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 4.0162 + }, + { + "Date+Time": "2010-04-01T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 4.4916 + }, + { + "Date+Time": "2010-04-02T00:00:00Z", + "Hs (total) (m)": 1.2391, + "Tp (total) (s)": 9.1746 + }, + { + "Date+Time": "2010-04-03T00:00:00Z", + "Hs (total) (m)": 1.455, + "Tp (total) (s)": 8.7107 + }, + { + "Date+Time": "2010-04-04T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 12.833 + }, + { + "Date+Time": "2010-04-05T00:00:00Z", + "Hs (total) (m)": 1.7472, + "Tp (total) (s)": 7.9379 + }, + { + "Date+Time": "2010-04-06T00:00:00Z", + "Hs (total) (m)": 2.8138, + "Tp (total) (s)": 8.3743 + }, + { + "Date+Time": "2010-04-07T00:00:00Z", + "Hs (total) (m)": 3.3067, + "Tp (total) (s)": 11.4864 + }, + { + "Date+Time": "2010-04-08T00:00:00Z", + "Hs (total) (m)": 3.1373, + "Tp (total) (s)": 11.7672 + }, + { + "Date+Time": "2010-04-09T00:00:00Z", + "Hs (total) (m)": 2.6795, + "Tp (total) (s)": 11.7496 + }, + { + "Date+Time": "2010-04-10T00:00:00Z", + "Hs (total) (m)": 1.9318, + "Tp (total) (s)": 11.565 + }, + { + "Date+Time": "2010-04-11T00:00:00Z", + "Hs (total) (m)": 1.8067, + "Tp (total) (s)": 10.242 + }, + { + "Date+Time": "2010-04-12T00:00:00Z", + "Hs (total) (m)": 1.5, + "Tp (total) (s)": 10.0101 + }, + { + "Date+Time": "2010-04-13T00:00:00Z", + "Hs (total) (m)": 1.2017, + "Tp (total) (s)": 11.269 + }, + { + "Date+Time": "2010-04-14T00:00:00Z", + "Hs (total) (m)": 1.0971, + "Tp (total) (s)": 11.2156 + }, + { + "Date+Time": "2010-04-15T00:00:00Z", + "Hs (total) (m)": 0.9033, + "Tp (total) (s)": 10.2756 + }, + { + "Date+Time": "2010-04-16T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 9.6202 + }, + { + "Date+Time": "2010-04-17T00:00:00Z", + "Hs (total) (m)": 0.5287, + "Tp (total) (s)": 9.1372 + }, + { + "Date+Time": "2010-04-18T00:00:00Z", + "Hs (total) (m)": 0.4181, + "Tp (total) (s)": 9.5538 + }, + { + "Date+Time": "2010-04-19T00:00:00Z", + "Hs (total) (m)": 0.457, + "Tp (total) (s)": 10.3374 + }, + { + "Date+Time": "2010-04-20T00:00:00Z", + "Hs (total) (m)": 0.6699, + "Tp (total) (s)": 10.0528 + }, + { + "Date+Time": "2010-04-21T00:00:00Z", + "Hs (total) (m)": 0.8271, + "Tp (total) (s)": 9.6599 + }, + { + "Date+Time": "2010-04-22T00:00:00Z", + "Hs (total) (m)": 0.6577, + "Tp (total) (s)": 9.5325 + }, + { + "Date+Time": "2010-04-23T00:00:00Z", + "Hs (total) (m)": 0.5264, + "Tp (total) (s)": 9.2502 + }, + { + "Date+Time": "2010-04-24T00:00:00Z", + "Hs (total) (m)": 0.7614, + "Tp (total) (s)": 10.2626 + }, + { + "Date+Time": "2010-04-25T00:00:00Z", + "Hs (total) (m)": 1.0849, + "Tp (total) (s)": 9.4813 + }, + { + "Date+Time": "2010-04-26T00:00:00Z", + "Hs (total) (m)": 1.1597, + "Tp (total) (s)": 9.6477 + }, + { + "Date+Time": "2010-04-27T00:00:00Z", + "Hs (total) (m)": 1.2185, + "Tp (total) (s)": 10.3267 + }, + { + "Date+Time": "2010-04-28T00:00:00Z", + "Hs (total) (m)": 1.9707, + "Tp (total) (s)": 10.5266 + }, + { + "Date+Time": "2010-04-29T00:00:00Z", + "Hs (total) (m)": 2.3064, + "Tp (total) (s)": 9.8796 + }, + { + "Date+Time": "2010-04-30T00:00:00Z", + "Hs (total) (m)": 1.9951, + "Tp (total) (s)": 10.0414 + }, + { + "Date+Time": "2010-05-01T00:00:00Z", + "Hs (total) (m)": 1.7533, + "Tp (total) (s)": 10.4549 + }, + { + "Date+Time": "2010-05-02T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 10.1566 + }, + { + "Date+Time": "2010-05-03T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 9.4317 + }, + { + "Date+Time": "2010-05-04T00:00:00Z", + "Hs (total) (m)": 1.088, + "Tp (total) (s)": 9.2013 + }, + { + "Date+Time": "2010-05-05T00:00:00Z", + "Hs (total) (m)": 0.9026, + "Tp (total) (s)": 9.0991 + }, + { + "Date+Time": "2010-05-06T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 6.7812 + }, + { + "Date+Time": "2010-05-07T00:00:00Z", + "Hs (total) (m)": 0.9865, + "Tp (total) (s)": 10.4961 + }, + { + "Date+Time": "2010-05-08T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 10.4877 + }, + { + "Date+Time": "2010-05-09T00:00:00Z", + "Hs (total) (m)": 0.9224, + "Tp (total) (s)": 10.8341 + }, + { + "Date+Time": "2010-05-10T00:00:00Z", + "Hs (total) (m)": 0.6943, + "Tp (total) (s)": 6.3868 + }, + { + "Date+Time": "2010-05-11T00:00:00Z", + "Hs (total) (m)": 0.8164, + "Tp (total) (s)": 13.5357 + }, + { + "Date+Time": "2010-05-12T00:00:00Z", + "Hs (total) (m)": 0.6867, + "Tp (total) (s)": 11.7252 + }, + { + "Date+Time": "2010-05-13T00:00:00Z", + "Hs (total) (m)": 0.5333, + "Tp (total) (s)": 10.1901 + }, + { + "Date+Time": "2010-05-14T00:00:00Z", + "Hs (total) (m)": 0.7332, + "Tp (total) (s)": 3.074 + }, + { + "Date+Time": "2010-05-15T00:00:00Z", + "Hs (total) (m)": 0.869, + "Tp (total) (s)": 9.5096 + }, + { + "Date+Time": "2010-05-16T00:00:00Z", + "Hs (total) (m)": 1.2444, + "Tp (total) (s)": 9.3249 + }, + { + "Date+Time": "2010-05-17T00:00:00Z", + "Hs (total) (m)": 1.4702, + "Tp (total) (s)": 10.4572 + }, + { + "Date+Time": "2010-05-18T00:00:00Z", + "Hs (total) (m)": 1.3237, + "Tp (total) (s)": 10.4053 + }, + { + "Date+Time": "2010-05-19T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 9.7705 + }, + { + "Date+Time": "2010-05-20T00:00:00Z", + "Hs (total) (m)": 1.5938, + "Tp (total) (s)": 12.3447 + }, + { + "Date+Time": "2010-05-21T00:00:00Z", + "Hs (total) (m)": 1.6282, + "Tp (total) (s)": 11.8717 + }, + { + "Date+Time": "2010-05-22T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 11.4933 + }, + { + "Date+Time": "2010-05-23T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 11.2896 + }, + { + "Date+Time": "2010-05-24T00:00:00Z", + "Hs (total) (m)": 1.3359, + "Tp (total) (s)": 10.9401 + }, + { + "Date+Time": "2010-05-25T00:00:00Z", + "Hs (total) (m)": 1.0651, + "Tp (total) (s)": 10.5068 + }, + { + "Date+Time": "2010-05-26T00:00:00Z", + "Hs (total) (m)": 0.7782, + "Tp (total) (s)": 8.5856 + }, + { + "Date+Time": "2010-05-27T00:00:00Z", + "Hs (total) (m)": 0.4677, + "Tp (total) (s)": 3.074 + }, + { + "Date+Time": "2010-05-28T00:00:00Z", + "Hs (total) (m)": 0.6073, + "Tp (total) (s)": 11.0607 + }, + { + "Date+Time": "2010-05-29T00:00:00Z", + "Hs (total) (m)": 1.1116, + "Tp (total) (s)": 12.2654 + }, + { + "Date+Time": "2010-05-30T00:00:00Z", + "Hs (total) (m)": 1.2482, + "Tp (total) (s)": 10.5876 + }, + { + "Date+Time": "2010-05-31T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 9.1777 + }, + { + "Date+Time": "2010-06-01T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 10.065 + }, + { + "Date+Time": "2010-06-02T00:00:00Z", + "Hs (total) (m)": 1.5046, + "Tp (total) (s)": 10.3626 + }, + { + "Date+Time": "2010-06-03T00:00:00Z", + "Hs (total) (m)": 1.7251, + "Tp (total) (s)": 12.7056 + }, + { + "Date+Time": "2010-06-04T00:00:00Z", + "Hs (total) (m)": 2.073, + "Tp (total) (s)": 12.7293 + }, + { + "Date+Time": "2010-06-05T00:00:00Z", + "Hs (total) (m)": 1.9845, + "Tp (total) (s)": 12.669 + }, + { + "Date+Time": "2010-06-06T00:00:00Z", + "Hs (total) (m)": 1.6297, + "Tp (total) (s)": 11.7992 + }, + { + "Date+Time": "2010-06-07T00:00:00Z", + "Hs (total) (m)": 1.352, + "Tp (total) (s)": 10.416 + }, + { + "Date+Time": "2010-06-08T00:00:00Z", + "Hs (total) (m)": 1.5137, + "Tp (total) (s)": 10.0482 + }, + { + "Date+Time": "2010-06-09T00:00:00Z", + "Hs (total) (m)": 1.252, + "Tp (total) (s)": 9.5904 + }, + { + "Date+Time": "2010-06-10T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 11.4589 + }, + { + "Date+Time": "2010-06-11T00:00:00Z", + "Hs (total) (m)": 0.8522, + "Tp (total) (s)": 6.3227 + }, + { + "Date+Time": "2010-06-12T00:00:00Z", + "Hs (total) (m)": 0.7324, + "Tp (total) (s)": 6.2449 + }, + { + "Date+Time": "2010-06-13T00:00:00Z", + "Hs (total) (m)": 0.5608, + "Tp (total) (s)": 7.5755 + }, + { + "Date+Time": "2010-06-14T00:00:00Z", + "Hs (total) (m)": 0.9629, + "Tp (total) (s)": 9.1426 + }, + { + "Date+Time": "2010-06-15T00:00:00Z", + "Hs (total) (m)": 1.0834, + "Tp (total) (s)": 6.7545 + }, + { + "Date+Time": "2010-06-16T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 10.2039 + }, + { + "Date+Time": "2010-06-17T00:00:00Z", + "Hs (total) (m)": 1.0147, + "Tp (total) (s)": 10.3854 + }, + { + "Date+Time": "2010-06-18T00:00:00Z", + "Hs (total) (m)": 0.8744, + "Tp (total) (s)": 9.4371 + }, + { + "Date+Time": "2010-06-19T00:00:00Z", + "Hs (total) (m)": 1.043, + "Tp (total) (s)": 10.0917 + }, + { + "Date+Time": "2010-06-20T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 10.0925 + }, + { + "Date+Time": "2010-06-21T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 9.4661 + }, + { + "Date+Time": "2010-06-22T00:00:00Z", + "Hs (total) (m)": 1.0056, + "Tp (total) (s)": 11.4246 + }, + { + "Date+Time": "2010-06-23T00:00:00Z", + "Hs (total) (m)": 1.3405, + "Tp (total) (s)": 11.3895 + }, + { + "Date+Time": "2010-06-24T00:00:00Z", + "Hs (total) (m)": 1.4779, + "Tp (total) (s)": 10.8074 + }, + { + "Date+Time": "2010-06-25T00:00:00Z", + "Hs (total) (m)": 1.339, + "Tp (total) (s)": 10.303 + }, + { + "Date+Time": "2010-06-26T00:00:00Z", + "Hs (total) (m)": 1.2673, + "Tp (total) (s)": 10.1512 + }, + { + "Date+Time": "2010-06-27T00:00:00Z", + "Hs (total) (m)": 1.4214, + "Tp (total) (s)": 8.9579 + }, + { + "Date+Time": "2010-06-28T00:00:00Z", + "Hs (total) (m)": 1.8975, + "Tp (total) (s)": 10.6388 + }, + { + "Date+Time": "2010-06-29T00:00:00Z", + "Hs (total) (m)": 1.9227, + "Tp (total) (s)": 10.2817 + }, + { + "Date+Time": "2010-06-30T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 9.4874 + }, + { + "Date+Time": "2010-07-01T00:00:00Z", + "Hs (total) (m)": 2.4751, + "Tp (total) (s)": 7.8547 + }, + { + "Date+Time": "2010-07-02T00:00:00Z", + "Hs (total) (m)": 2.7932, + "Tp (total) (s)": 8.62 + }, + { + "Date+Time": "2010-07-03T00:00:00Z", + "Hs (total) (m)": 2.9077, + "Tp (total) (s)": 10.2756 + }, + { + "Date+Time": "2010-07-04T00:00:00Z", + "Hs (total) (m)": 2.8947, + "Tp (total) (s)": 12.1242 + }, + { + "Date+Time": "2010-07-05T00:00:00Z", + "Hs (total) (m)": 3.2014, + "Tp (total) (s)": 10.445 + }, + { + "Date+Time": "2010-07-06T00:00:00Z", + "Hs (total) (m)": 2.0959, + "Tp (total) (s)": 9.5096 + }, + { + "Date+Time": "2010-07-07T00:00:00Z", + "Hs (total) (m)": 1.957, + "Tp (total) (s)": 9.595 + }, + { + "Date+Time": "2010-07-08T00:00:00Z", + "Hs (total) (m)": 2.9252, + "Tp (total) (s)": 9.608 + }, + { + "Date+Time": "2010-07-09T00:00:00Z", + "Hs (total) (m)": 2.5643, + "Tp (total) (s)": 12.2494 + }, + { + "Date+Time": "2010-07-10T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 10.3801 + }, + { + "Date+Time": "2010-07-11T00:00:00Z", + "Hs (total) (m)": 1.4046, + "Tp (total) (s)": 7.9844 + }, + { + "Date+Time": "2010-07-12T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 6.6599 + }, + { + "Date+Time": "2010-07-13T00:00:00Z", + "Hs (total) (m)": 0.795, + "Tp (total) (s)": 6.872 + }, + { + "Date+Time": "2010-07-14T00:00:00Z", + "Hs (total) (m)": 1.1666, + "Tp (total) (s)": 9.154 + }, + { + "Date+Time": "2010-07-15T00:00:00Z", + "Hs (total) (m)": 1.3634, + "Tp (total) (s)": 11.8183 + }, + { + "Date+Time": "2010-07-16T00:00:00Z", + "Hs (total) (m)": 1.3825, + "Tp (total) (s)": 9.4264 + }, + { + "Date+Time": "2010-07-17T00:00:00Z", + "Hs (total) (m)": 1.2818, + "Tp (total) (s)": 7.6304 + }, + { + "Date+Time": "2010-07-18T00:00:00Z", + "Hs (total) (m)": 1.4084, + "Tp (total) (s)": 9.6583 + }, + { + "Date+Time": "2010-07-19T00:00:00Z", + "Hs (total) (m)": 1.5755, + "Tp (total) (s)": 7.7204 + }, + { + "Date+Time": "2010-07-20T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 11.623 + }, + { + "Date+Time": "2010-07-21T00:00:00Z", + "Hs (total) (m)": 1.9044, + "Tp (total) (s)": 11.491 + }, + { + "Date+Time": "2010-07-22T00:00:00Z", + "Hs (total) (m)": 1.4542, + "Tp (total) (s)": 7.9493 + }, + { + "Date+Time": "2010-07-23T00:00:00Z", + "Hs (total) (m)": 0.576, + "Tp (total) (s)": 6.4028 + }, + { + "Date+Time": "2010-07-24T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 6.4302 + }, + { + "Date+Time": "2010-07-25T00:00:00Z", + "Hs (total) (m)": 1.1368, + "Tp (total) (s)": 5.3842 + }, + { + "Date+Time": "2010-07-26T00:00:00Z", + "Hs (total) (m)": 1.3634, + "Tp (total) (s)": 11.6008 + }, + { + "Date+Time": "2010-07-27T00:00:00Z", + "Hs (total) (m)": 1.1757, + "Tp (total) (s)": 9.4386 + }, + { + "Date+Time": "2010-07-28T00:00:00Z", + "Hs (total) (m)": 1.2963, + "Tp (total) (s)": 8.4529 + }, + { + "Date+Time": "2010-07-29T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 9.8476 + }, + { + "Date+Time": "2010-07-30T00:00:00Z", + "Hs (total) (m)": 0.9438, + "Tp (total) (s)": 8.9038 + }, + { + "Date+Time": "2010-07-31T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 7.8013 + }, + { + "Date+Time": "2010-08-01T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 6.6385 + }, + { + "Date+Time": "2010-08-02T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 8.7291 + }, + { + "Date+Time": "2010-08-03T00:00:00Z", + "Hs (total) (m)": 1.0537, + "Tp (total) (s)": 8.6619 + }, + { + "Date+Time": "2010-08-04T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 8.9038 + }, + { + "Date+Time": "2010-08-05T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 8.7046 + }, + { + "Date+Time": "2010-08-06T00:00:00Z", + "Hs (total) (m)": 1.3077, + "Tp (total) (s)": 8.5734 + }, + { + "Date+Time": "2010-08-07T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 8.2018 + }, + { + "Date+Time": "2010-08-08T00:00:00Z", + "Hs (total) (m)": 1.3627, + "Tp (total) (s)": 9.7369 + }, + { + "Date+Time": "2010-08-09T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 8.5154 + }, + { + "Date+Time": "2010-08-10T00:00:00Z", + "Hs (total) (m)": 1.2413, + "Tp (total) (s)": 6.5317 + }, + { + "Date+Time": "2010-08-11T00:00:00Z", + "Hs (total) (m)": 0.9995, + "Tp (total) (s)": 7.7532 + }, + { + "Date+Time": "2010-08-12T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 6.975 + }, + { + "Date+Time": "2010-08-13T00:00:00Z", + "Hs (total) (m)": 0.7645, + "Tp (total) (s)": 5.9519 + }, + { + "Date+Time": "2010-08-14T00:00:00Z", + "Hs (total) (m)": 0.5959, + "Tp (total) (s)": 5.8535 + }, + { + "Date+Time": "2010-08-15T00:00:00Z", + "Hs (total) (m)": 0.4479, + "Tp (total) (s)": 7.4343 + }, + { + "Date+Time": "2010-08-16T00:00:00Z", + "Hs (total) (m)": 0.5646, + "Tp (total) (s)": 7.7998 + }, + { + "Date+Time": "2010-08-17T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 4.3298 + }, + { + "Date+Time": "2010-08-18T00:00:00Z", + "Hs (total) (m)": 0.9827, + "Tp (total) (s)": 6.238 + }, + { + "Date+Time": "2010-08-19T00:00:00Z", + "Hs (total) (m)": 1.4374, + "Tp (total) (s)": 8.475 + }, + { + "Date+Time": "2010-08-20T00:00:00Z", + "Hs (total) (m)": 1.426, + "Tp (total) (s)": 9.1792 + }, + { + "Date+Time": "2010-08-21T00:00:00Z", + "Hs (total) (m)": 2.3751, + "Tp (total) (s)": 7.1162 + }, + { + "Date+Time": "2010-08-22T00:00:00Z", + "Hs (total) (m)": 1.854, + "Tp (total) (s)": 7.7403 + }, + { + "Date+Time": "2010-08-23T00:00:00Z", + "Hs (total) (m)": 1.3924, + "Tp (total) (s)": 8.5482 + }, + { + "Date+Time": "2010-08-24T00:00:00Z", + "Hs (total) (m)": 1.5847, + "Tp (total) (s)": 6.5249 + }, + { + "Date+Time": "2010-08-25T00:00:00Z", + "Hs (total) (m)": 1.2429, + "Tp (total) (s)": 9.0869 + }, + { + "Date+Time": "2010-08-26T00:00:00Z", + "Hs (total) (m)": 0.8179, + "Tp (total) (s)": 8.4452 + }, + { + "Date+Time": "2010-08-27T00:00:00Z", + "Hs (total) (m)": 0.7935, + "Tp (total) (s)": 8.6467 + }, + { + "Date+Time": "2010-08-28T00:00:00Z", + "Hs (total) (m)": 0.6668, + "Tp (total) (s)": 7.8814 + }, + { + "Date+Time": "2010-08-29T00:00:00Z", + "Hs (total) (m)": 1.0895, + "Tp (total) (s)": 7.0414 + }, + { + "Date+Time": "2010-08-30T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 7.8707 + }, + { + "Date+Time": "2010-08-31T00:00:00Z", + "Hs (total) (m)": 0.9781, + "Tp (total) (s)": 11.4521 + }, + { + "Date+Time": "2010-09-01T00:00:00Z", + "Hs (total) (m)": 1.0567, + "Tp (total) (s)": 10.2481 + }, + { + "Date+Time": "2010-09-02T00:00:00Z", + "Hs (total) (m)": 1.0445, + "Tp (total) (s)": 9.36 + }, + { + "Date+Time": "2010-09-03T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 18.2569 + }, + { + "Date+Time": "2010-09-04T00:00:00Z", + "Hs (total) (m)": 1.6953, + "Tp (total) (s)": 15.5828 + }, + { + "Date+Time": "2010-09-05T00:00:00Z", + "Hs (total) (m)": 1.719, + "Tp (total) (s)": 11.5963 + }, + { + "Date+Time": "2010-09-06T00:00:00Z", + "Hs (total) (m)": 1.6228, + "Tp (total) (s)": 9.3303 + }, + { + "Date+Time": "2010-09-07T00:00:00Z", + "Hs (total) (m)": 1.3947, + "Tp (total) (s)": 8.7947 + }, + { + "Date+Time": "2010-09-08T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 8.6596 + }, + { + "Date+Time": "2010-09-09T00:00:00Z", + "Hs (total) (m)": 1.7167, + "Tp (total) (s)": 8.9351 + }, + { + "Date+Time": "2010-09-10T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 8.5696 + }, + { + "Date+Time": "2010-09-11T00:00:00Z", + "Hs (total) (m)": 1.6083, + "Tp (total) (s)": 8.6062 + }, + { + "Date+Time": "2010-09-12T00:00:00Z", + "Hs (total) (m)": 1.6221, + "Tp (total) (s)": 8.4834 + }, + { + "Date+Time": "2010-09-13T00:00:00Z", + "Hs (total) (m)": 1.7075, + "Tp (total) (s)": 9.4859 + }, + { + "Date+Time": "2010-09-14T00:00:00Z", + "Hs (total) (m)": 2.9626, + "Tp (total) (s)": 9.1914 + }, + { + "Date+Time": "2010-09-15T00:00:00Z", + "Hs (total) (m)": 2.842, + "Tp (total) (s)": 10.8295 + }, + { + "Date+Time": "2010-09-16T00:00:00Z", + "Hs (total) (m)": 2.4804, + "Tp (total) (s)": 12.4783 + }, + { + "Date+Time": "2010-09-17T00:00:00Z", + "Hs (total) (m)": 1.5908, + "Tp (total) (s)": 11.507 + }, + { + "Date+Time": "2010-09-18T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 11.2331 + }, + { + "Date+Time": "2010-09-19T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 11.6527 + }, + { + "Date+Time": "2010-09-20T00:00:00Z", + "Hs (total) (m)": 1.7396, + "Tp (total) (s)": 6.7507 + }, + { + "Date+Time": "2010-09-21T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 7.4122 + }, + { + "Date+Time": "2010-09-22T00:00:00Z", + "Hs (total) (m)": 2.0066, + "Tp (total) (s)": 11.0736 + }, + { + "Date+Time": "2010-09-23T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 10.5808 + }, + { + "Date+Time": "2010-09-24T00:00:00Z", + "Hs (total) (m)": 1.0346, + "Tp (total) (s)": 9.0907 + }, + { + "Date+Time": "2010-09-25T00:00:00Z", + "Hs (total) (m)": 1.2581, + "Tp (total) (s)": 15.614 + }, + { + "Date+Time": "2010-09-26T00:00:00Z", + "Hs (total) (m)": 1.5343, + "Tp (total) (s)": 14.0728 + }, + { + "Date+Time": "2010-09-27T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 12.3234 + }, + { + "Date+Time": "2010-09-28T00:00:00Z", + "Hs (total) (m)": 1.6976, + "Tp (total) (s)": 10.4213 + }, + { + "Date+Time": "2010-09-29T00:00:00Z", + "Hs (total) (m)": 1.7678, + "Tp (total) (s)": 9.7873 + }, + { + "Date+Time": "2010-09-30T00:00:00Z", + "Hs (total) (m)": 1.7594, + "Tp (total) (s)": 11.5818 + }, + { + "Date+Time": "2010-10-01T00:00:00Z", + "Hs (total) (m)": 2.0569, + "Tp (total) (s)": 12.5324 + }, + { + "Date+Time": "2010-10-02T00:00:00Z", + "Hs (total) (m)": 2.6521, + "Tp (total) (s)": 10.2695 + }, + { + "Date+Time": "2010-10-03T00:00:00Z", + "Hs (total) (m)": 3.0435, + "Tp (total) (s)": 10.4617 + }, + { + "Date+Time": "2010-10-04T00:00:00Z", + "Hs (total) (m)": 2.7604, + "Tp (total) (s)": 13.1481 + }, + { + "Date+Time": "2010-10-05T00:00:00Z", + "Hs (total) (m)": 3.1388, + "Tp (total) (s)": 10.6647 + }, + { + "Date+Time": "2010-10-06T00:00:00Z", + "Hs (total) (m)": 4.7411, + "Tp (total) (s)": 14.7954 + }, + { + "Date+Time": "2010-10-07T00:00:00Z", + "Hs (total) (m)": 2.9809, + "Tp (total) (s)": 13.464 + }, + { + "Date+Time": "2010-10-08T00:00:00Z", + "Hs (total) (m)": 2.3995, + "Tp (total) (s)": 10.5136 + }, + { + "Date+Time": "2010-10-09T00:00:00Z", + "Hs (total) (m)": 2.2027, + "Tp (total) (s)": 11.4925 + }, + { + "Date+Time": "2010-10-10T00:00:00Z", + "Hs (total) (m)": 2.2095, + "Tp (total) (s)": 12.7064 + }, + { + "Date+Time": "2010-10-11T00:00:00Z", + "Hs (total) (m)": 1.4901, + "Tp (total) (s)": 10.9409 + }, + { + "Date+Time": "2010-10-12T00:00:00Z", + "Hs (total) (m)": 1.0361, + "Tp (total) (s)": 10.1657 + }, + { + "Date+Time": "2010-10-13T00:00:00Z", + "Hs (total) (m)": 0.7752, + "Tp (total) (s)": 9.0945 + }, + { + "Date+Time": "2010-10-14T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 9.6019 + }, + { + "Date+Time": "2010-10-15T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 11.3689 + }, + { + "Date+Time": "2010-10-16T00:00:00Z", + "Hs (total) (m)": 1.2192, + "Tp (total) (s)": 11.507 + }, + { + "Date+Time": "2010-10-17T00:00:00Z", + "Hs (total) (m)": 0.8026, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "2010-10-18T00:00:00Z", + "Hs (total) (m)": 1.1078, + "Tp (total) (s)": 11.668 + }, + { + "Date+Time": "2010-10-19T00:00:00Z", + "Hs (total) (m)": 1.912, + "Tp (total) (s)": 11.7168 + }, + { + "Date+Time": "2010-10-20T00:00:00Z", + "Hs (total) (m)": 1.561, + "Tp (total) (s)": 11.2201 + }, + { + "Date+Time": "2010-10-21T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 10.2847 + }, + { + "Date+Time": "2010-10-22T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 11.8931 + }, + { + "Date+Time": "2010-10-23T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 12.5492 + }, + { + "Date+Time": "2010-10-24T00:00:00Z", + "Hs (total) (m)": 1.5213, + "Tp (total) (s)": 8.5124 + }, + { + "Date+Time": "2010-10-25T00:00:00Z", + "Hs (total) (m)": 0.8683, + "Tp (total) (s)": 9.4584 + }, + { + "Date+Time": "2010-10-26T00:00:00Z", + "Hs (total) (m)": 1.8967, + "Tp (total) (s)": 7.8921 + }, + { + "Date+Time": "2010-10-27T00:00:00Z", + "Hs (total) (m)": 2.5201, + "Tp (total) (s)": 9.1258 + }, + { + "Date+Time": "2010-10-28T00:00:00Z", + "Hs (total) (m)": 2.8878, + "Tp (total) (s)": 9.3112 + }, + { + "Date+Time": "2010-10-29T00:00:00Z", + "Hs (total) (m)": 3.1945, + "Tp (total) (s)": 11.465 + }, + { + "Date+Time": "2010-10-30T00:00:00Z", + "Hs (total) (m)": 3.811, + "Tp (total) (s)": 12.3852 + }, + { + "Date+Time": "2010-10-31T00:00:00Z", + "Hs (total) (m)": 1.78, + "Tp (total) (s)": 10.3519 + }, + { + "Date+Time": "2010-11-01T00:00:00Z", + "Hs (total) (m)": 1.2101, + "Tp (total) (s)": 12.8498 + }, + { + "Date+Time": "2010-11-02T00:00:00Z", + "Hs (total) (m)": 2.9382, + "Tp (total) (s)": 11.8221 + }, + { + "Date+Time": "2010-11-03T00:00:00Z", + "Hs (total) (m)": 4.4992, + "Tp (total) (s)": 15.1311 + }, + { + "Date+Time": "2010-11-04T00:00:00Z", + "Hs (total) (m)": 2.8649, + "Tp (total) (s)": 13.8829 + }, + { + "Date+Time": "2010-11-05T00:00:00Z", + "Hs (total) (m)": 3.1266, + "Tp (total) (s)": 10.4244 + }, + { + "Date+Time": "2010-11-06T00:00:00Z", + "Hs (total) (m)": 2.1157, + "Tp (total) (s)": 10.3809 + }, + { + "Date+Time": "2010-11-07T00:00:00Z", + "Hs (total) (m)": 1.8242, + "Tp (total) (s)": 10.0803 + }, + { + "Date+Time": "2010-11-08T00:00:00Z", + "Hs (total) (m)": 2.4644, + "Tp (total) (s)": 7.0139 + }, + { + "Date+Time": "2010-11-09T00:00:00Z", + "Hs (total) (m)": 4.5366, + "Tp (total) (s)": 15.6606 + }, + { + "Date+Time": "2010-11-10T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 13.5449 + }, + { + "Date+Time": "2010-11-11T00:00:00Z", + "Hs (total) (m)": 1.7968, + "Tp (total) (s)": 11.3521 + }, + { + "Date+Time": "2010-11-12T00:00:00Z", + "Hs (total) (m)": 5.2521, + "Tp (total) (s)": 12.0749 + }, + { + "Date+Time": "2010-11-13T00:00:00Z", + "Hs (total) (m)": 3.7027, + "Tp (total) (s)": 13.0291 + }, + { + "Date+Time": "2010-11-14T00:00:00Z", + "Hs (total) (m)": 2.2637, + "Tp (total) (s)": 11.3796 + }, + { + "Date+Time": "2010-11-15T00:00:00Z", + "Hs (total) (m)": 1.9158, + "Tp (total) (s)": 10.3641 + }, + { + "Date+Time": "2010-11-16T00:00:00Z", + "Hs (total) (m)": 1.4733, + "Tp (total) (s)": 10.1482 + }, + { + "Date+Time": "2010-11-17T00:00:00Z", + "Hs (total) (m)": 2.3865, + "Tp (total) (s)": 8.3941 + }, + { + "Date+Time": "2010-11-18T00:00:00Z", + "Hs (total) (m)": 4.1162, + "Tp (total) (s)": 11.5696 + }, + { + "Date+Time": "2010-11-19T00:00:00Z", + "Hs (total) (m)": 3.8003, + "Tp (total) (s)": 13.3114 + }, + { + "Date+Time": "2010-11-20T00:00:00Z", + "Hs (total) (m)": 1.6213, + "Tp (total) (s)": 10.3511 + }, + { + "Date+Time": "2010-11-21T00:00:00Z", + "Hs (total) (m)": 1.0834, + "Tp (total) (s)": 9.0838 + }, + { + "Date+Time": "2010-11-22T00:00:00Z", + "Hs (total) (m)": 0.6996, + "Tp (total) (s)": 8.5726 + }, + { + "Date+Time": "2010-11-23T00:00:00Z", + "Hs (total) (m)": 0.586, + "Tp (total) (s)": 7.9661 + }, + { + "Date+Time": "2010-11-24T00:00:00Z", + "Hs (total) (m)": 0.5715, + "Tp (total) (s)": 7.6365 + }, + { + "Date+Time": "2010-11-25T00:00:00Z", + "Hs (total) (m)": 1.1093, + "Tp (total) (s)": 14.0706 + }, + { + "Date+Time": "2010-11-26T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 12.6171 + }, + { + "Date+Time": "2010-11-27T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 8.5757 + }, + { + "Date+Time": "2010-11-28T00:00:00Z", + "Hs (total) (m)": 0.9026, + "Tp (total) (s)": 11.4879 + }, + { + "Date+Time": "2010-11-29T00:00:00Z", + "Hs (total) (m)": 0.5837, + "Tp (total) (s)": 10.2954 + }, + { + "Date+Time": "2010-11-30T00:00:00Z", + "Hs (total) (m)": 0.6561, + "Tp (total) (s)": 2.7024 + }, + { + "Date+Time": "2010-12-01T00:00:00Z", + "Hs (total) (m)": 0.6829, + "Tp (total) (s)": 3.1335 + }, + { + "Date+Time": "2010-12-02T00:00:00Z", + "Hs (total) (m)": 0.5783, + "Tp (total) (s)": 4.8654 + }, + { + "Date+Time": "2010-12-03T00:00:00Z", + "Hs (total) (m)": 0.3838, + "Tp (total) (s)": 8.1194 + }, + { + "Date+Time": "2010-12-04T00:00:00Z", + "Hs (total) (m)": 1.5076, + "Tp (total) (s)": 6.972 + }, + { + "Date+Time": "2010-12-05T00:00:00Z", + "Hs (total) (m)": 0.8911, + "Tp (total) (s)": 8.8382 + }, + { + "Date+Time": "2010-12-06T00:00:00Z", + "Hs (total) (m)": 0.5493, + "Tp (total) (s)": 9.8163 + }, + { + "Date+Time": "2010-12-07T00:00:00Z", + "Hs (total) (m)": 0.9583, + "Tp (total) (s)": 12.4752 + }, + { + "Date+Time": "2010-12-08T00:00:00Z", + "Hs (total) (m)": 0.7851, + "Tp (total) (s)": 11.9984 + }, + { + "Date+Time": "2010-12-09T00:00:00Z", + "Hs (total) (m)": 0.6088, + "Tp (total) (s)": 6.3662 + }, + { + "Date+Time": "2010-12-10T00:00:00Z", + "Hs (total) (m)": 0.7897, + "Tp (total) (s)": 6.7164 + }, + { + "Date+Time": "2010-12-11T00:00:00Z", + "Hs (total) (m)": 0.8614, + "Tp (total) (s)": 7.9562 + }, + { + "Date+Time": "2010-12-12T00:00:00Z", + "Hs (total) (m)": 1.1505, + "Tp (total) (s)": 11.6214 + }, + { + "Date+Time": "2010-12-13T00:00:00Z", + "Hs (total) (m)": 0.7302, + "Tp (total) (s)": 3.2449 + }, + { + "Date+Time": "2010-12-14T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 5.1149 + }, + { + "Date+Time": "2010-12-15T00:00:00Z", + "Hs (total) (m)": 1.3619, + "Tp (total) (s)": 12.9139 + }, + { + "Date+Time": "2010-12-16T00:00:00Z", + "Hs (total) (m)": 1.3695, + "Tp (total) (s)": 11.5703 + }, + { + "Date+Time": "2010-12-17T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 8.3575 + }, + { + "Date+Time": "2010-12-18T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 13.8775 + }, + { + "Date+Time": "2010-12-19T00:00:00Z", + "Hs (total) (m)": 1.0063, + "Tp (total) (s)": 13.0787 + }, + { + "Date+Time": "2010-12-20T00:00:00Z", + "Hs (total) (m)": 0.7393, + "Tp (total) (s)": 3.3265 + }, + { + "Date+Time": "2010-12-21T00:00:00Z", + "Hs (total) (m)": 0.5318, + "Tp (total) (s)": 12.8681 + }, + { + "Date+Time": "2010-12-22T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 11.6642 + }, + { + "Date+Time": "2010-12-23T00:00:00Z", + "Hs (total) (m)": 0.4585, + "Tp (total) (s)": 10.95 + }, + { + "Date+Time": "2010-12-24T00:00:00Z", + "Hs (total) (m)": 0.5432, + "Tp (total) (s)": 11.7588 + }, + { + "Date+Time": "2010-12-25T00:00:00Z", + "Hs (total) (m)": 0.5097, + "Tp (total) (s)": 10.3671 + }, + { + "Date+Time": "2010-12-26T00:00:00Z", + "Hs (total) (m)": 1.5709, + "Tp (total) (s)": 16.6013 + }, + { + "Date+Time": "2010-12-27T00:00:00Z", + "Hs (total) (m)": 3.2014, + "Tp (total) (s)": 10.493 + }, + { + "Date+Time": "2010-12-28T00:00:00Z", + "Hs (total) (m)": 3.193, + "Tp (total) (s)": 12.7644 + }, + { + "Date+Time": "2010-12-29T00:00:00Z", + "Hs (total) (m)": 2.6376, + "Tp (total) (s)": 12.3783 + }, + { + "Date+Time": "2010-12-30T00:00:00Z", + "Hs (total) (m)": 2.5544, + "Tp (total) (s)": 12.2959 + }, + { + "Date+Time": "2010-12-31T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 11.7862 + }, + { + "Date+Time": "2011-01-01T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 15.3325 + }, + { + "Date+Time": "2011-01-02T00:00:00Z", + "Hs (total) (m)": 1.3764, + "Tp (total) (s)": 15.3012 + }, + { + "Date+Time": "2011-01-03T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 15.1753 + }, + { + "Date+Time": "2011-01-04T00:00:00Z", + "Hs (total) (m)": 1.2352, + "Tp (total) (s)": 14.4276 + }, + { + "Date+Time": "2011-01-05T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 12.4149 + }, + { + "Date+Time": "2011-01-06T00:00:00Z", + "Hs (total) (m)": 1.3543, + "Tp (total) (s)": 7.8478 + }, + { + "Date+Time": "2011-01-07T00:00:00Z", + "Hs (total) (m)": 1.4946, + "Tp (total) (s)": 7.8936 + }, + { + "Date+Time": "2011-01-08T00:00:00Z", + "Hs (total) (m)": 1.4351, + "Tp (total) (s)": 12.4844 + }, + { + "Date+Time": "2011-01-09T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 13.2649 + }, + { + "Date+Time": "2011-01-10T00:00:00Z", + "Hs (total) (m)": 1.9387, + "Tp (total) (s)": 14.079 + }, + { + "Date+Time": "2011-01-11T00:00:00Z", + "Hs (total) (m)": 2.1157, + "Tp (total) (s)": 11.8686 + }, + { + "Date+Time": "2011-01-12T00:00:00Z", + "Hs (total) (m)": 1.8777, + "Tp (total) (s)": 11.6047 + }, + { + "Date+Time": "2011-01-13T00:00:00Z", + "Hs (total) (m)": 1.9501, + "Tp (total) (s)": 12.1838 + }, + { + "Date+Time": "2011-01-14T00:00:00Z", + "Hs (total) (m)": 2.1798, + "Tp (total) (s)": 11.7603 + }, + { + "Date+Time": "2011-01-15T00:00:00Z", + "Hs (total) (m)": 2.8542, + "Tp (total) (s)": 12.3783 + }, + { + "Date+Time": "2011-01-16T00:00:00Z", + "Hs (total) (m)": 3.4783, + "Tp (total) (s)": 11.9846 + }, + { + "Date+Time": "2011-01-17T00:00:00Z", + "Hs (total) (m)": 3.8072, + "Tp (total) (s)": 12.4218 + }, + { + "Date+Time": "2011-01-18T00:00:00Z", + "Hs (total) (m)": 3.6142, + "Tp (total) (s)": 12.8216 + }, + { + "Date+Time": "2011-01-19T00:00:00Z", + "Hs (total) (m)": 2.8581, + "Tp (total) (s)": 13.345 + }, + { + "Date+Time": "2011-01-20T00:00:00Z", + "Hs (total) (m)": 1.8983, + "Tp (total) (s)": 12.7544 + }, + { + "Date+Time": "2011-01-21T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 14.8236 + }, + { + "Date+Time": "2011-01-22T00:00:00Z", + "Hs (total) (m)": 2.0531, + "Tp (total) (s)": 14.8556 + }, + { + "Date+Time": "2011-01-23T00:00:00Z", + "Hs (total) (m)": 1.5282, + "Tp (total) (s)": 13.4327 + }, + { + "Date+Time": "2011-01-24T00:00:00Z", + "Hs (total) (m)": 1.0659, + "Tp (total) (s)": 11.6794 + }, + { + "Date+Time": "2011-01-25T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 13.7944 + }, + { + "Date+Time": "2011-01-26T00:00:00Z", + "Hs (total) (m)": 1.1536, + "Tp (total) (s)": 13.7028 + }, + { + "Date+Time": "2011-01-27T00:00:00Z", + "Hs (total) (m)": 1.0949, + "Tp (total) (s)": 12.7018 + }, + { + "Date+Time": "2011-01-28T00:00:00Z", + "Hs (total) (m)": 1.0468, + "Tp (total) (s)": 11.9922 + }, + { + "Date+Time": "2011-01-29T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 7.1085 + }, + { + "Date+Time": "2011-01-30T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 13.8256 + }, + { + "Date+Time": "2011-01-31T00:00:00Z", + "Hs (total) (m)": 1.3047, + "Tp (total) (s)": 13.7043 + }, + { + "Date+Time": "2011-02-01T00:00:00Z", + "Hs (total) (m)": 1.7281, + "Tp (total) (s)": 13.1603 + }, + { + "Date+Time": "2011-02-02T00:00:00Z", + "Hs (total) (m)": 2.3453, + "Tp (total) (s)": 14.0599 + }, + { + "Date+Time": "2011-02-03T00:00:00Z", + "Hs (total) (m)": 3.3555, + "Tp (total) (s)": 13.6128 + }, + { + "Date+Time": "2011-02-04T00:00:00Z", + "Hs (total) (m)": 4.2825, + "Tp (total) (s)": 13.8157 + }, + { + "Date+Time": "2011-02-05T00:00:00Z", + "Hs (total) (m)": 5.4719, + "Tp (total) (s)": 14.3555 + }, + { + "Date+Time": "2011-02-06T00:00:00Z", + "Hs (total) (m)": 5.3625, + "Tp (total) (s)": 14.4426 + }, + { + "Date+Time": "2011-02-07T00:00:00Z", + "Hs (total) (m)": 4.1375, + "Tp (total) (s)": 14.256 + }, + { + "Date+Time": "2011-02-08T00:00:00Z", + "Hs (total) (m)": 3.4745, + "Tp (total) (s)": 13.8546 + }, + { + "Date+Time": "2011-02-09T00:00:00Z", + "Hs (total) (m)": 2.9901, + "Tp (total) (s)": 12.4798 + }, + { + "Date+Time": "2011-02-10T00:00:00Z", + "Hs (total) (m)": 2.6757, + "Tp (total) (s)": 11.726 + }, + { + "Date+Time": "2011-02-11T00:00:00Z", + "Hs (total) (m)": 2.7047, + "Tp (total) (s)": 16.5922 + }, + { + "Date+Time": "2011-02-12T00:00:00Z", + "Hs (total) (m)": 2.9183, + "Tp (total) (s)": 16.2778 + }, + { + "Date+Time": "2011-02-13T00:00:00Z", + "Hs (total) (m)": 3.4097, + "Tp (total) (s)": 16.1847 + }, + { + "Date+Time": "2011-02-14T00:00:00Z", + "Hs (total) (m)": 3.6676, + "Tp (total) (s)": 16.2976 + }, + { + "Date+Time": "2011-02-15T00:00:00Z", + "Hs (total) (m)": 3.7362, + "Tp (total) (s)": 16.551 + }, + { + "Date+Time": "2011-02-16T00:00:00Z", + "Hs (total) (m)": 3.9781, + "Tp (total) (s)": 16.8226 + }, + { + "Date+Time": "2011-02-17T00:00:00Z", + "Hs (total) (m)": 4.2207, + "Tp (total) (s)": 17.4085 + }, + { + "Date+Time": "2011-02-18T00:00:00Z", + "Hs (total) (m)": 3.7278, + "Tp (total) (s)": 17.0415 + }, + { + "Date+Time": "2011-02-19T00:00:00Z", + "Hs (total) (m)": 2.5063, + "Tp (total) (s)": 14.8869 + }, + { + "Date+Time": "2011-02-20T00:00:00Z", + "Hs (total) (m)": 2.2118, + "Tp (total) (s)": 12.286 + }, + { + "Date+Time": "2011-02-21T00:00:00Z", + "Hs (total) (m)": 2.7329, + "Tp (total) (s)": 14.9411 + }, + { + "Date+Time": "2011-02-22T00:00:00Z", + "Hs (total) (m)": 2.7299, + "Tp (total) (s)": 14.0454 + }, + { + "Date+Time": "2011-02-23T00:00:00Z", + "Hs (total) (m)": 2.3721, + "Tp (total) (s)": 12.7628 + }, + { + "Date+Time": "2011-02-24T00:00:00Z", + "Hs (total) (m)": 2.4728, + "Tp (total) (s)": 11.8145 + }, + { + "Date+Time": "2011-02-25T00:00:00Z", + "Hs (total) (m)": 2.9962, + "Tp (total) (s)": 13.4236 + }, + { + "Date+Time": "2011-02-26T00:00:00Z", + "Hs (total) (m)": 3.3876, + "Tp (total) (s)": 13.5846 + }, + { + "Date+Time": "2011-02-27T00:00:00Z", + "Hs (total) (m)": 3.5096, + "Tp (total) (s)": 13.8318 + }, + { + "Date+Time": "2011-02-28T00:00:00Z", + "Hs (total) (m)": 3.1755, + "Tp (total) (s)": 13.9843 + }, + { + "Date+Time": "2011-03-01T00:00:00Z", + "Hs (total) (m)": 2.7406, + "Tp (total) (s)": 14.0126 + }, + { + "Date+Time": "2011-03-02T00:00:00Z", + "Hs (total) (m)": 2.2736, + "Tp (total) (s)": 13.2817 + }, + { + "Date+Time": "2011-03-03T00:00:00Z", + "Hs (total) (m)": 2.102, + "Tp (total) (s)": 14.9388 + }, + { + "Date+Time": "2011-03-04T00:00:00Z", + "Hs (total) (m)": 2.1661, + "Tp (total) (s)": 15.0273 + }, + { + "Date+Time": "2011-03-05T00:00:00Z", + "Hs (total) (m)": 1.6556, + "Tp (total) (s)": 13.4716 + }, + { + "Date+Time": "2011-03-06T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 11.5398 + }, + { + "Date+Time": "2011-03-07T00:00:00Z", + "Hs (total) (m)": 0.9453, + "Tp (total) (s)": 12.2188 + }, + { + "Date+Time": "2011-03-08T00:00:00Z", + "Hs (total) (m)": 0.9949, + "Tp (total) (s)": 11.1499 + }, + { + "Date+Time": "2011-03-09T00:00:00Z", + "Hs (total) (m)": 1.4153, + "Tp (total) (s)": 14.8305 + }, + { + "Date+Time": "2011-03-10T00:00:00Z", + "Hs (total) (m)": 2.0837, + "Tp (total) (s)": 13.7883 + }, + { + "Date+Time": "2011-03-11T00:00:00Z", + "Hs (total) (m)": 2.9283, + "Tp (total) (s)": 13.744 + }, + { + "Date+Time": "2011-03-12T00:00:00Z", + "Hs (total) (m)": 3.4516, + "Tp (total) (s)": 13.9882 + }, + { + "Date+Time": "2011-03-13T00:00:00Z", + "Hs (total) (m)": 3.2197, + "Tp (total) (s)": 13.7806 + }, + { + "Date+Time": "2011-03-14T00:00:00Z", + "Hs (total) (m)": 2.7909, + "Tp (total) (s)": 13.2305 + }, + { + "Date+Time": "2011-03-15T00:00:00Z", + "Hs (total) (m)": 1.6068, + "Tp (total) (s)": 13.0512 + }, + { + "Date+Time": "2011-03-16T00:00:00Z", + "Hs (total) (m)": 0.8515, + "Tp (total) (s)": 11.401 + }, + { + "Date+Time": "2011-03-17T00:00:00Z", + "Hs (total) (m)": 1.207, + "Tp (total) (s)": 15.4256 + }, + { + "Date+Time": "2011-03-18T00:00:00Z", + "Hs (total) (m)": 1.7357, + "Tp (total) (s)": 15.2852 + }, + { + "Date+Time": "2011-03-19T00:00:00Z", + "Hs (total) (m)": 1.9875, + "Tp (total) (s)": 13.2183 + }, + { + "Date+Time": "2011-03-20T00:00:00Z", + "Hs (total) (m)": 2.1218, + "Tp (total) (s)": 12.4706 + }, + { + "Date+Time": "2011-03-21T00:00:00Z", + "Hs (total) (m)": 1.677, + "Tp (total) (s)": 10.3084 + }, + { + "Date+Time": "2011-03-22T00:00:00Z", + "Hs (total) (m)": 1.6236, + "Tp (total) (s)": 10.9012 + }, + { + "Date+Time": "2011-03-23T00:00:00Z", + "Hs (total) (m)": 1.5641, + "Tp (total) (s)": 11.0179 + }, + { + "Date+Time": "2011-03-24T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 10.6532 + }, + { + "Date+Time": "2011-03-25T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 10.6418 + }, + { + "Date+Time": "2011-03-26T00:00:00Z", + "Hs (total) (m)": 1.0422, + "Tp (total) (s)": 10.5274 + }, + { + "Date+Time": "2011-03-27T00:00:00Z", + "Hs (total) (m)": 0.8217, + "Tp (total) (s)": 10.3336 + }, + { + "Date+Time": "2011-03-28T00:00:00Z", + "Hs (total) (m)": 0.7912, + "Tp (total) (s)": 13.551 + }, + { + "Date+Time": "2011-03-29T00:00:00Z", + "Hs (total) (m)": 0.9354, + "Tp (total) (s)": 13.3358 + }, + { + "Date+Time": "2011-03-30T00:00:00Z", + "Hs (total) (m)": 1.1864, + "Tp (total) (s)": 13.5128 + }, + { + "Date+Time": "2011-03-31T00:00:00Z", + "Hs (total) (m)": 1.7624, + "Tp (total) (s)": 12.6614 + }, + { + "Date+Time": "2011-04-01T00:00:00Z", + "Hs (total) (m)": 2.5262, + "Tp (total) (s)": 10.551 + }, + { + "Date+Time": "2011-04-02T00:00:00Z", + "Hs (total) (m)": 3.2868, + "Tp (total) (s)": 10.8974 + }, + { + "Date+Time": "2011-04-03T00:00:00Z", + "Hs (total) (m)": 3.0519, + "Tp (total) (s)": 11.0858 + }, + { + "Date+Time": "2011-04-04T00:00:00Z", + "Hs (total) (m)": 2.3392, + "Tp (total) (s)": 11.1156 + }, + { + "Date+Time": "2011-04-05T00:00:00Z", + "Hs (total) (m)": 3.019, + "Tp (total) (s)": 11.359 + }, + { + "Date+Time": "2011-04-06T00:00:00Z", + "Hs (total) (m)": 3.3212, + "Tp (total) (s)": 11.2133 + }, + { + "Date+Time": "2011-04-07T00:00:00Z", + "Hs (total) (m)": 3.0984, + "Tp (total) (s)": 11.298 + }, + { + "Date+Time": "2011-04-08T00:00:00Z", + "Hs (total) (m)": 2.5254, + "Tp (total) (s)": 11.8488 + }, + { + "Date+Time": "2011-04-09T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 12.2677 + }, + { + "Date+Time": "2011-04-10T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 12.6255 + }, + { + "Date+Time": "2011-04-11T00:00:00Z", + "Hs (total) (m)": 1.68, + "Tp (total) (s)": 12.6194 + }, + { + "Date+Time": "2011-04-12T00:00:00Z", + "Hs (total) (m)": 1.5221, + "Tp (total) (s)": 11.7695 + }, + { + "Date+Time": "2011-04-13T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 11.4933 + }, + { + "Date+Time": "2011-04-14T00:00:00Z", + "Hs (total) (m)": 2.237, + "Tp (total) (s)": 12.8002 + }, + { + "Date+Time": "2011-04-15T00:00:00Z", + "Hs (total) (m)": 2.6734, + "Tp (total) (s)": 13.3274 + }, + { + "Date+Time": "2011-04-16T00:00:00Z", + "Hs (total) (m)": 2.2553, + "Tp (total) (s)": 13.0474 + }, + { + "Date+Time": "2011-04-17T00:00:00Z", + "Hs (total) (m)": 1.9555, + "Tp (total) (s)": 14.1507 + }, + { + "Date+Time": "2011-04-18T00:00:00Z", + "Hs (total) (m)": 1.7823, + "Tp (total) (s)": 13.8287 + }, + { + "Date+Time": "2011-04-19T00:00:00Z", + "Hs (total) (m)": 1.5488, + "Tp (total) (s)": 12.5958 + }, + { + "Date+Time": "2011-04-20T00:00:00Z", + "Hs (total) (m)": 1.3298, + "Tp (total) (s)": 11.8427 + }, + { + "Date+Time": "2011-04-21T00:00:00Z", + "Hs (total) (m)": 1.1528, + "Tp (total) (s)": 11.2529 + }, + { + "Date+Time": "2011-04-22T00:00:00Z", + "Hs (total) (m)": 1.4458, + "Tp (total) (s)": 11.7183 + }, + { + "Date+Time": "2011-04-23T00:00:00Z", + "Hs (total) (m)": 1.4649, + "Tp (total) (s)": 11.6344 + }, + { + "Date+Time": "2011-04-24T00:00:00Z", + "Hs (total) (m)": 1.532, + "Tp (total) (s)": 11.6306 + }, + { + "Date+Time": "2011-04-25T00:00:00Z", + "Hs (total) (m)": 1.6686, + "Tp (total) (s)": 11.9434 + }, + { + "Date+Time": "2011-04-26T00:00:00Z", + "Hs (total) (m)": 1.751, + "Tp (total) (s)": 12.3592 + }, + { + "Date+Time": "2011-04-27T00:00:00Z", + "Hs (total) (m)": 1.8273, + "Tp (total) (s)": 12.6164 + }, + { + "Date+Time": "2011-04-28T00:00:00Z", + "Hs (total) (m)": 1.8303, + "Tp (total) (s)": 13.3198 + }, + { + "Date+Time": "2011-04-29T00:00:00Z", + "Hs (total) (m)": 1.6976, + "Tp (total) (s)": 13.5174 + }, + { + "Date+Time": "2011-04-30T00:00:00Z", + "Hs (total) (m)": 1.2314, + "Tp (total) (s)": 11.7611 + }, + { + "Date+Time": "2011-05-01T00:00:00Z", + "Hs (total) (m)": 1.2146, + "Tp (total) (s)": 11.2201 + }, + { + "Date+Time": "2011-05-02T00:00:00Z", + "Hs (total) (m)": 1.2551, + "Tp (total) (s)": 11.4879 + }, + { + "Date+Time": "2011-05-03T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 12.3005 + }, + { + "Date+Time": "2011-05-04T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 4.9364 + }, + { + "Date+Time": "2011-05-05T00:00:00Z", + "Hs (total) (m)": 1.4618, + "Tp (total) (s)": 12.5118 + }, + { + "Date+Time": "2011-05-06T00:00:00Z", + "Hs (total) (m)": 1.4985, + "Tp (total) (s)": 9.8132 + }, + { + "Date+Time": "2011-05-07T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 9.5286 + }, + { + "Date+Time": "2011-05-08T00:00:00Z", + "Hs (total) (m)": 1.8082, + "Tp (total) (s)": 9.2868 + }, + { + "Date+Time": "2011-05-09T00:00:00Z", + "Hs (total) (m)": 2.266, + "Tp (total) (s)": 10.5281 + }, + { + "Date+Time": "2011-05-10T00:00:00Z", + "Hs (total) (m)": 2.5285, + "Tp (total) (s)": 10.3893 + }, + { + "Date+Time": "2011-05-11T00:00:00Z", + "Hs (total) (m)": 2.4949, + "Tp (total) (s)": 9.9132 + }, + { + "Date+Time": "2011-05-12T00:00:00Z", + "Hs (total) (m)": 2.3652, + "Tp (total) (s)": 9.5729 + }, + { + "Date+Time": "2011-05-13T00:00:00Z", + "Hs (total) (m)": 2.2301, + "Tp (total) (s)": 9.4264 + }, + { + "Date+Time": "2011-05-14T00:00:00Z", + "Hs (total) (m)": 2.1012, + "Tp (total) (s)": 9.4356 + }, + { + "Date+Time": "2011-05-15T00:00:00Z", + "Hs (total) (m)": 1.8593, + "Tp (total) (s)": 9.5019 + }, + { + "Date+Time": "2011-05-16T00:00:00Z", + "Hs (total) (m)": 1.5915, + "Tp (total) (s)": 8.7504 + }, + { + "Date+Time": "2011-05-17T00:00:00Z", + "Hs (total) (m)": 1.8036, + "Tp (total) (s)": 8.6314 + }, + { + "Date+Time": "2011-05-18T00:00:00Z", + "Hs (total) (m)": 1.9486, + "Tp (total) (s)": 9.1258 + }, + { + "Date+Time": "2011-05-19T00:00:00Z", + "Hs (total) (m)": 1.9372, + "Tp (total) (s)": 9.5431 + }, + { + "Date+Time": "2011-05-20T00:00:00Z", + "Hs (total) (m)": 2.2088, + "Tp (total) (s)": 12.6194 + }, + { + "Date+Time": "2011-05-21T00:00:00Z", + "Hs (total) (m)": 2.62, + "Tp (total) (s)": 12.582 + }, + { + "Date+Time": "2011-05-22T00:00:00Z", + "Hs (total) (m)": 2.8176, + "Tp (total) (s)": 11.7107 + }, + { + "Date+Time": "2011-05-23T00:00:00Z", + "Hs (total) (m)": 3.2258, + "Tp (total) (s)": 11.4544 + }, + { + "Date+Time": "2011-05-24T00:00:00Z", + "Hs (total) (m)": 3.6225, + "Tp (total) (s)": 10.6868 + }, + { + "Date+Time": "2011-05-25T00:00:00Z", + "Hs (total) (m)": 3.6241, + "Tp (total) (s)": 11.5749 + }, + { + "Date+Time": "2011-05-26T00:00:00Z", + "Hs (total) (m)": 3.5905, + "Tp (total) (s)": 11.7389 + }, + { + "Date+Time": "2011-05-27T00:00:00Z", + "Hs (total) (m)": 2.6643, + "Tp (total) (s)": 10.9737 + }, + { + "Date+Time": "2011-05-28T00:00:00Z", + "Hs (total) (m)": 2.3324, + "Tp (total) (s)": 11.4307 + }, + { + "Date+Time": "2011-05-29T00:00:00Z", + "Hs (total) (m)": 2.1645, + "Tp (total) (s)": 10.8318 + }, + { + "Date+Time": "2011-05-30T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 9.1571 + }, + { + "Date+Time": "2011-05-31T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 11.7466 + }, + { + "Date+Time": "2011-06-01T00:00:00Z", + "Hs (total) (m)": 2.0966, + "Tp (total) (s)": 11.5169 + }, + { + "Date+Time": "2011-06-02T00:00:00Z", + "Hs (total) (m)": 2.1958, + "Tp (total) (s)": 11.0424 + }, + { + "Date+Time": "2011-06-03T00:00:00Z", + "Hs (total) (m)": 2.0348, + "Tp (total) (s)": 11.1293 + }, + { + "Date+Time": "2011-06-04T00:00:00Z", + "Hs (total) (m)": 1.7968, + "Tp (total) (s)": 10.7776 + }, + { + "Date+Time": "2011-06-05T00:00:00Z", + "Hs (total) (m)": 1.4962, + "Tp (total) (s)": 10.7028 + }, + { + "Date+Time": "2011-06-06T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 10.6677 + }, + { + "Date+Time": "2011-06-07T00:00:00Z", + "Hs (total) (m)": 1.0475, + "Tp (total) (s)": 10.4709 + }, + { + "Date+Time": "2011-06-08T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 8.5902 + }, + { + "Date+Time": "2011-06-09T00:00:00Z", + "Hs (total) (m)": 1.4008, + "Tp (total) (s)": 8.887 + }, + { + "Date+Time": "2011-06-10T00:00:00Z", + "Hs (total) (m)": 1.6175, + "Tp (total) (s)": 10.1833 + }, + { + "Date+Time": "2011-06-11T00:00:00Z", + "Hs (total) (m)": 1.6144, + "Tp (total) (s)": 10.4808 + }, + { + "Date+Time": "2011-06-12T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 10.4213 + }, + { + "Date+Time": "2011-06-13T00:00:00Z", + "Hs (total) (m)": 0.6981, + "Tp (total) (s)": 8.5086 + }, + { + "Date+Time": "2011-06-14T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 8.4666 + }, + { + "Date+Time": "2011-06-15T00:00:00Z", + "Hs (total) (m)": 1.5664, + "Tp (total) (s)": 8.3605 + }, + { + "Date+Time": "2011-06-16T00:00:00Z", + "Hs (total) (m)": 1.6671, + "Tp (total) (s)": 8.5711 + }, + { + "Date+Time": "2011-06-17T00:00:00Z", + "Hs (total) (m)": 2.234, + "Tp (total) (s)": 12.2654 + }, + { + "Date+Time": "2011-06-18T00:00:00Z", + "Hs (total) (m)": 2.5201, + "Tp (total) (s)": 11.9648 + }, + { + "Date+Time": "2011-06-19T00:00:00Z", + "Hs (total) (m)": 2.2141, + "Tp (total) (s)": 11.4338 + }, + { + "Date+Time": "2011-06-20T00:00:00Z", + "Hs (total) (m)": 1.7777, + "Tp (total) (s)": 9.5775 + }, + { + "Date+Time": "2011-06-21T00:00:00Z", + "Hs (total) (m)": 1.3642, + "Tp (total) (s)": 8.7039 + }, + { + "Date+Time": "2011-06-22T00:00:00Z", + "Hs (total) (m)": 1.0727, + "Tp (total) (s)": 8.2759 + }, + { + "Date+Time": "2011-06-23T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 8.0416 + }, + { + "Date+Time": "2011-06-24T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 9.0724 + }, + { + "Date+Time": "2011-06-25T00:00:00Z", + "Hs (total) (m)": 1.4527, + "Tp (total) (s)": 9.5233 + }, + { + "Date+Time": "2011-06-26T00:00:00Z", + "Hs (total) (m)": 1.6327, + "Tp (total) (s)": 9.1494 + }, + { + "Date+Time": "2011-06-27T00:00:00Z", + "Hs (total) (m)": 1.7029, + "Tp (total) (s)": 9.2883 + }, + { + "Date+Time": "2011-06-28T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 9.2776 + }, + { + "Date+Time": "2011-06-29T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 8.974 + }, + { + "Date+Time": "2011-06-30T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 8.9167 + }, + { + "Date+Time": "2011-07-01T00:00:00Z", + "Hs (total) (m)": 0.7134, + "Tp (total) (s)": 7.8555 + }, + { + "Date+Time": "2011-07-02T00:00:00Z", + "Hs (total) (m)": 1.4039, + "Tp (total) (s)": 9.991 + }, + { + "Date+Time": "2011-07-03T00:00:00Z", + "Hs (total) (m)": 1.6114, + "Tp (total) (s)": 9.5851 + }, + { + "Date+Time": "2011-07-04T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 9.4264 + }, + { + "Date+Time": "2011-07-05T00:00:00Z", + "Hs (total) (m)": 1.2803, + "Tp (total) (s)": 5.5445 + }, + { + "Date+Time": "2011-07-06T00:00:00Z", + "Hs (total) (m)": 2.0257, + "Tp (total) (s)": 9.479 + }, + { + "Date+Time": "2011-07-07T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 11.037 + }, + { + "Date+Time": "2011-07-08T00:00:00Z", + "Hs (total) (m)": 1.3009, + "Tp (total) (s)": 8.52 + }, + { + "Date+Time": "2011-07-09T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 7.4107 + }, + { + "Date+Time": "2011-07-10T00:00:00Z", + "Hs (total) (m)": 0.7927, + "Tp (total) (s)": 8.388 + }, + { + "Date+Time": "2011-07-11T00:00:00Z", + "Hs (total) (m)": 0.7202, + "Tp (total) (s)": 7.8074 + }, + { + "Date+Time": "2011-07-12T00:00:00Z", + "Hs (total) (m)": 0.5303, + "Tp (total) (s)": 7.5541 + }, + { + "Date+Time": "2011-07-13T00:00:00Z", + "Hs (total) (m)": 0.5791, + "Tp (total) (s)": 9.4905 + }, + { + "Date+Time": "2011-07-14T00:00:00Z", + "Hs (total) (m)": 1.1254, + "Tp (total) (s)": 12.7621 + }, + { + "Date+Time": "2011-07-15T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 11.5703 + }, + { + "Date+Time": "2011-07-16T00:00:00Z", + "Hs (total) (m)": 1.513, + "Tp (total) (s)": 9.7377 + }, + { + "Date+Time": "2011-07-17T00:00:00Z", + "Hs (total) (m)": 2.5948, + "Tp (total) (s)": 9.5843 + }, + { + "Date+Time": "2011-07-18T00:00:00Z", + "Hs (total) (m)": 2.002, + "Tp (total) (s)": 9.7331 + }, + { + "Date+Time": "2011-07-19T00:00:00Z", + "Hs (total) (m)": 1.4603, + "Tp (total) (s)": 8.4811 + }, + { + "Date+Time": "2011-07-20T00:00:00Z", + "Hs (total) (m)": 0.8362, + "Tp (total) (s)": 8.6627 + }, + { + "Date+Time": "2011-07-21T00:00:00Z", + "Hs (total) (m)": 1.0117, + "Tp (total) (s)": 8.3117 + }, + { + "Date+Time": "2011-07-22T00:00:00Z", + "Hs (total) (m)": 0.8568, + "Tp (total) (s)": 8.3048 + }, + { + "Date+Time": "2011-07-23T00:00:00Z", + "Hs (total) (m)": 0.795, + "Tp (total) (s)": 8.5864 + }, + { + "Date+Time": "2011-07-24T00:00:00Z", + "Hs (total) (m)": 0.7378, + "Tp (total) (s)": 8.0088 + }, + { + "Date+Time": "2011-07-25T00:00:00Z", + "Hs (total) (m)": 0.8461, + "Tp (total) (s)": 11.7176 + }, + { + "Date+Time": "2011-07-26T00:00:00Z", + "Hs (total) (m)": 1.2772, + "Tp (total) (s)": 9.6934 + }, + { + "Date+Time": "2011-07-27T00:00:00Z", + "Hs (total) (m)": 0.8408, + "Tp (total) (s)": 8.6825 + }, + { + "Date+Time": "2011-07-28T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 8.7382 + }, + { + "Date+Time": "2011-07-29T00:00:00Z", + "Hs (total) (m)": 1.3848, + "Tp (total) (s)": 11.3338 + }, + { + "Date+Time": "2011-07-30T00:00:00Z", + "Hs (total) (m)": 0.7866, + "Tp (total) (s)": 9.5355 + }, + { + "Date+Time": "2011-07-31T00:00:00Z", + "Hs (total) (m)": 1.4512, + "Tp (total) (s)": 6.418 + }, + { + "Date+Time": "2011-08-01T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 8.4689 + }, + { + "Date+Time": "2011-08-02T00:00:00Z", + "Hs (total) (m)": 0.9407, + "Tp (total) (s)": 8.4483 + }, + { + "Date+Time": "2011-08-03T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 9.0136 + }, + { + "Date+Time": "2011-08-04T00:00:00Z", + "Hs (total) (m)": 1.1071, + "Tp (total) (s)": 7.6998 + }, + { + "Date+Time": "2011-08-05T00:00:00Z", + "Hs (total) (m)": 1.1345, + "Tp (total) (s)": 6.4226 + }, + { + "Date+Time": "2011-08-06T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 8.2461 + }, + { + "Date+Time": "2011-08-07T00:00:00Z", + "Hs (total) (m)": 0.9651, + "Tp (total) (s)": 7.2451 + }, + { + "Date+Time": "2011-08-08T00:00:00Z", + "Hs (total) (m)": 1.3237, + "Tp (total) (s)": 8.4979 + }, + { + "Date+Time": "2011-08-09T00:00:00Z", + "Hs (total) (m)": 0.8667, + "Tp (total) (s)": 8.684 + }, + { + "Date+Time": "2011-08-10T00:00:00Z", + "Hs (total) (m)": 1.8647, + "Tp (total) (s)": 5.8779 + }, + { + "Date+Time": "2011-08-11T00:00:00Z", + "Hs (total) (m)": 2.3827, + "Tp (total) (s)": 8.9343 + }, + { + "Date+Time": "2011-08-12T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 9.521 + }, + { + "Date+Time": "2011-08-13T00:00:00Z", + "Hs (total) (m)": 1.8784, + "Tp (total) (s)": 7.9592 + }, + { + "Date+Time": "2011-08-14T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 9.4234 + }, + { + "Date+Time": "2011-08-15T00:00:00Z", + "Hs (total) (m)": 1.6266, + "Tp (total) (s)": 8.3415 + }, + { + "Date+Time": "2011-08-16T00:00:00Z", + "Hs (total) (m)": 1.3649, + "Tp (total) (s)": 8.195 + }, + { + "Date+Time": "2011-08-17T00:00:00Z", + "Hs (total) (m)": 1.0804, + "Tp (total) (s)": 7.8143 + }, + { + "Date+Time": "2011-08-18T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 8.6459 + }, + { + "Date+Time": "2011-08-19T00:00:00Z", + "Hs (total) (m)": 0.6355, + "Tp (total) (s)": 7.8791 + }, + { + "Date+Time": "2011-08-20T00:00:00Z", + "Hs (total) (m)": 2.5079, + "Tp (total) (s)": 9.2868 + }, + { + "Date+Time": "2011-08-21T00:00:00Z", + "Hs (total) (m)": 1.9608, + "Tp (total) (s)": 10.5472 + }, + { + "Date+Time": "2011-08-22T00:00:00Z", + "Hs (total) (m)": 1.307, + "Tp (total) (s)": 10.4549 + }, + { + "Date+Time": "2011-08-23T00:00:00Z", + "Hs (total) (m)": 0.9056, + "Tp (total) (s)": 9.5416 + }, + { + "Date+Time": "2011-08-24T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 6.328 + }, + { + "Date+Time": "2011-08-25T00:00:00Z", + "Hs (total) (m)": 2.2713, + "Tp (total) (s)": 10.1466 + }, + { + "Date+Time": "2011-08-26T00:00:00Z", + "Hs (total) (m)": 1.3085, + "Tp (total) (s)": 8.7031 + }, + { + "Date+Time": "2011-08-27T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 8.4056 + }, + { + "Date+Time": "2011-08-28T00:00:00Z", + "Hs (total) (m)": 0.9606, + "Tp (total) (s)": 8.5314 + }, + { + "Date+Time": "2011-08-29T00:00:00Z", + "Hs (total) (m)": 0.589, + "Tp (total) (s)": 8.0233 + }, + { + "Date+Time": "2011-08-30T00:00:00Z", + "Hs (total) (m)": 0.5356, + "Tp (total) (s)": 8.3384 + }, + { + "Date+Time": "2011-08-31T00:00:00Z", + "Hs (total) (m)": 0.5272, + "Tp (total) (s)": 7.7677 + }, + { + "Date+Time": "2011-09-01T00:00:00Z", + "Hs (total) (m)": 0.7714, + "Tp (total) (s)": 15.5751 + }, + { + "Date+Time": "2011-09-02T00:00:00Z", + "Hs (total) (m)": 1.3565, + "Tp (total) (s)": 5.3224 + }, + { + "Date+Time": "2011-09-03T00:00:00Z", + "Hs (total) (m)": 2.588, + "Tp (total) (s)": 12.4233 + }, + { + "Date+Time": "2011-09-04T00:00:00Z", + "Hs (total) (m)": 1.8555, + "Tp (total) (s)": 10.4274 + }, + { + "Date+Time": "2011-09-05T00:00:00Z", + "Hs (total) (m)": 2.3713, + "Tp (total) (s)": 10.1527 + }, + { + "Date+Time": "2011-09-06T00:00:00Z", + "Hs (total) (m)": 3.5569, + "Tp (total) (s)": 9.1884 + }, + { + "Date+Time": "2011-09-07T00:00:00Z", + "Hs (total) (m)": 3.3425, + "Tp (total) (s)": 10.8638 + }, + { + "Date+Time": "2011-09-08T00:00:00Z", + "Hs (total) (m)": 2.5826, + "Tp (total) (s)": 11.0324 + }, + { + "Date+Time": "2011-09-09T00:00:00Z", + "Hs (total) (m)": 1.8227, + "Tp (total) (s)": 9.5813 + }, + { + "Date+Time": "2011-09-10T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 8.6543 + }, + { + "Date+Time": "2011-09-11T00:00:00Z", + "Hs (total) (m)": 5.0401, + "Tp (total) (s)": 12.2412 + }, + { + "Date+Time": "2011-09-12T00:00:00Z", + "Hs (total) (m)": 3.5768, + "Tp (total) (s)": 9.6011 + }, + { + "Date+Time": "2011-09-13T00:00:00Z", + "Hs (total) (m)": 4.3069, + "Tp (total) (s)": 12.8933 + }, + { + "Date+Time": "2011-09-14T00:00:00Z", + "Hs (total) (m)": 2.485, + "Tp (total) (s)": 11.5032 + }, + { + "Date+Time": "2011-09-15T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 10.6983 + }, + { + "Date+Time": "2011-09-16T00:00:00Z", + "Hs (total) (m)": 1.8403, + "Tp (total) (s)": 9.5889 + }, + { + "Date+Time": "2011-09-17T00:00:00Z", + "Hs (total) (m)": 2.2034, + "Tp (total) (s)": 9.2799 + }, + { + "Date+Time": "2011-09-18T00:00:00Z", + "Hs (total) (m)": 2.5834, + "Tp (total) (s)": 10.3786 + }, + { + "Date+Time": "2011-09-19T00:00:00Z", + "Hs (total) (m)": 1.4878, + "Tp (total) (s)": 11.3918 + }, + { + "Date+Time": "2011-09-20T00:00:00Z", + "Hs (total) (m)": 2.4659, + "Tp (total) (s)": 15.2745 + }, + { + "Date+Time": "2011-09-21T00:00:00Z", + "Hs (total) (m)": 3.2937, + "Tp (total) (s)": 13.4548 + }, + { + "Date+Time": "2011-09-22T00:00:00Z", + "Hs (total) (m)": 2.8291, + "Tp (total) (s)": 12.5538 + }, + { + "Date+Time": "2011-09-23T00:00:00Z", + "Hs (total) (m)": 2.2561, + "Tp (total) (s)": 11.3506 + }, + { + "Date+Time": "2011-09-24T00:00:00Z", + "Hs (total) (m)": 2.8085, + "Tp (total) (s)": 9.5096 + }, + { + "Date+Time": "2011-09-25T00:00:00Z", + "Hs (total) (m)": 2.488, + "Tp (total) (s)": 11.3132 + }, + { + "Date+Time": "2011-09-26T00:00:00Z", + "Hs (total) (m)": 2.0981, + "Tp (total) (s)": 9.3142 + }, + { + "Date+Time": "2011-09-27T00:00:00Z", + "Hs (total) (m)": 1.7518, + "Tp (total) (s)": 8.9122 + }, + { + "Date+Time": "2011-09-28T00:00:00Z", + "Hs (total) (m)": 1.8136, + "Tp (total) (s)": 8.1629 + }, + { + "Date+Time": "2011-09-29T00:00:00Z", + "Hs (total) (m)": 2.4049, + "Tp (total) (s)": 10.4335 + }, + { + "Date+Time": "2011-09-30T00:00:00Z", + "Hs (total) (m)": 2.0783, + "Tp (total) (s)": 11.3956 + }, + { + "Date+Time": "2011-10-01T00:00:00Z", + "Hs (total) (m)": 1.4916, + "Tp (total) (s)": 9.7247 + }, + { + "Date+Time": "2011-10-02T00:00:00Z", + "Hs (total) (m)": 1.1155, + "Tp (total) (s)": 8.7405 + }, + { + "Date+Time": "2011-10-03T00:00:00Z", + "Hs (total) (m)": 1.3504, + "Tp (total) (s)": 8.5475 + }, + { + "Date+Time": "2011-10-04T00:00:00Z", + "Hs (total) (m)": 2.4308, + "Tp (total) (s)": 12.4302 + }, + { + "Date+Time": "2011-10-05T00:00:00Z", + "Hs (total) (m)": 3.0335, + "Tp (total) (s)": 13.0299 + }, + { + "Date+Time": "2011-10-06T00:00:00Z", + "Hs (total) (m)": 3.019, + "Tp (total) (s)": 9.5866 + }, + { + "Date+Time": "2011-10-07T00:00:00Z", + "Hs (total) (m)": 3.2022, + "Tp (total) (s)": 13.0268 + }, + { + "Date+Time": "2011-10-08T00:00:00Z", + "Hs (total) (m)": 1.7624, + "Tp (total) (s)": 11.7328 + }, + { + "Date+Time": "2011-10-09T00:00:00Z", + "Hs (total) (m)": 2.0615, + "Tp (total) (s)": 7.6601 + }, + { + "Date+Time": "2011-10-10T00:00:00Z", + "Hs (total) (m)": 3.074, + "Tp (total) (s)": 8.7588 + }, + { + "Date+Time": "2011-10-11T00:00:00Z", + "Hs (total) (m)": 3.2029, + "Tp (total) (s)": 10.4625 + }, + { + "Date+Time": "2011-10-12T00:00:00Z", + "Hs (total) (m)": 1.8715, + "Tp (total) (s)": 10.036 + }, + { + "Date+Time": "2011-10-13T00:00:00Z", + "Hs (total) (m)": 1.7724, + "Tp (total) (s)": 12.627 + }, + { + "Date+Time": "2011-10-14T00:00:00Z", + "Hs (total) (m)": 1.3855, + "Tp (total) (s)": 10.4717 + }, + { + "Date+Time": "2011-10-15T00:00:00Z", + "Hs (total) (m)": 1.9387, + "Tp (total) (s)": 9.3234 + }, + { + "Date+Time": "2011-10-16T00:00:00Z", + "Hs (total) (m)": 2.3247, + "Tp (total) (s)": 14.7748 + }, + { + "Date+Time": "2011-10-17T00:00:00Z", + "Hs (total) (m)": 3.6485, + "Tp (total) (s)": 13.152 + }, + { + "Date+Time": "2011-10-18T00:00:00Z", + "Hs (total) (m)": 3.2113, + "Tp (total) (s)": 11.6398 + }, + { + "Date+Time": "2011-10-19T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 11.3903 + }, + { + "Date+Time": "2011-10-20T00:00:00Z", + "Hs (total) (m)": 1.1307, + "Tp (total) (s)": 12.3455 + }, + { + "Date+Time": "2011-10-21T00:00:00Z", + "Hs (total) (m)": 2.4583, + "Tp (total) (s)": 8.0508 + }, + { + "Date+Time": "2011-10-22T00:00:00Z", + "Hs (total) (m)": 2.7245, + "Tp (total) (s)": 8.4231 + }, + { + "Date+Time": "2011-10-23T00:00:00Z", + "Hs (total) (m)": 2.0791, + "Tp (total) (s)": 8.0294 + }, + { + "Date+Time": "2011-10-24T00:00:00Z", + "Hs (total) (m)": 1.6442, + "Tp (total) (s)": 11.8748 + }, + { + "Date+Time": "2011-10-25T00:00:00Z", + "Hs (total) (m)": 1.4672, + "Tp (total) (s)": 10.4587 + }, + { + "Date+Time": "2011-10-26T00:00:00Z", + "Hs (total) (m)": 1.3009, + "Tp (total) (s)": 10.6136 + }, + { + "Date+Time": "2011-10-27T00:00:00Z", + "Hs (total) (m)": 2.4293, + "Tp (total) (s)": 9.7324 + }, + { + "Date+Time": "2011-10-28T00:00:00Z", + "Hs (total) (m)": 1.4214, + "Tp (total) (s)": 8.3842 + }, + { + "Date+Time": "2011-10-29T00:00:00Z", + "Hs (total) (m)": 3.0663, + "Tp (total) (s)": 10.1512 + }, + { + "Date+Time": "2011-10-30T00:00:00Z", + "Hs (total) (m)": 4.1375, + "Tp (total) (s)": 16.979 + }, + { + "Date+Time": "2011-10-31T00:00:00Z", + "Hs (total) (m)": 2.8039, + "Tp (total) (s)": 12.8422 + }, + { + "Date+Time": "2011-11-01T00:00:00Z", + "Hs (total) (m)": 3.2182, + "Tp (total) (s)": 14.2514 + }, + { + "Date+Time": "2011-11-02T00:00:00Z", + "Hs (total) (m)": 2.7863, + "Tp (total) (s)": 10.889 + }, + { + "Date+Time": "2011-11-03T00:00:00Z", + "Hs (total) (m)": 3.2922, + "Tp (total) (s)": 11.4414 + }, + { + "Date+Time": "2011-11-04T00:00:00Z", + "Hs (total) (m)": 2.7886, + "Tp (total) (s)": 14.008 + }, + { + "Date+Time": "2011-11-05T00:00:00Z", + "Hs (total) (m)": 2.0371, + "Tp (total) (s)": 11.5864 + }, + { + "Date+Time": "2011-11-06T00:00:00Z", + "Hs (total) (m)": 1.5786, + "Tp (total) (s)": 11.5162 + }, + { + "Date+Time": "2011-11-07T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 9.582 + }, + { + "Date+Time": "2011-11-08T00:00:00Z", + "Hs (total) (m)": 2.0455, + "Tp (total) (s)": 10.5129 + }, + { + "Date+Time": "2011-11-09T00:00:00Z", + "Hs (total) (m)": 2.3949, + "Tp (total) (s)": 12.4645 + }, + { + "Date+Time": "2011-11-10T00:00:00Z", + "Hs (total) (m)": 2.7711, + "Tp (total) (s)": 10.6975 + }, + { + "Date+Time": "2011-11-11T00:00:00Z", + "Hs (total) (m)": 2.266, + "Tp (total) (s)": 11.4414 + }, + { + "Date+Time": "2011-11-12T00:00:00Z", + "Hs (total) (m)": 4.1391, + "Tp (total) (s)": 9.7072 + }, + { + "Date+Time": "2011-11-13T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 12.2242 + }, + { + "Date+Time": "2011-11-14T00:00:00Z", + "Hs (total) (m)": 2.3186, + "Tp (total) (s)": 12.7621 + }, + { + "Date+Time": "2011-11-15T00:00:00Z", + "Hs (total) (m)": 1.5763, + "Tp (total) (s)": 10.6174 + }, + { + "Date+Time": "2011-11-16T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 8.8481 + }, + { + "Date+Time": "2011-11-17T00:00:00Z", + "Hs (total) (m)": 2.266, + "Tp (total) (s)": 12.1914 + }, + { + "Date+Time": "2011-11-18T00:00:00Z", + "Hs (total) (m)": 3.1877, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "2011-11-19T00:00:00Z", + "Hs (total) (m)": 2.7322, + "Tp (total) (s)": 13.6029 + }, + { + "Date+Time": "2011-11-20T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 12.7285 + }, + { + "Date+Time": "2011-11-21T00:00:00Z", + "Hs (total) (m)": 1.7006, + "Tp (total) (s)": 9.637 + }, + { + "Date+Time": "2011-11-22T00:00:00Z", + "Hs (total) (m)": 2.5445, + "Tp (total) (s)": 15.3294 + }, + { + "Date+Time": "2011-11-23T00:00:00Z", + "Hs (total) (m)": 3.4677, + "Tp (total) (s)": 12.3829 + }, + { + "Date+Time": "2011-11-24T00:00:00Z", + "Hs (total) (m)": 3.1281, + "Tp (total) (s)": 12.6568 + }, + { + "Date+Time": "2011-11-25T00:00:00Z", + "Hs (total) (m)": 4.4656, + "Tp (total) (s)": 13.8142 + }, + { + "Date+Time": "2011-11-26T00:00:00Z", + "Hs (total) (m)": 3.6409, + "Tp (total) (s)": 12.4119 + }, + { + "Date+Time": "2011-11-27T00:00:00Z", + "Hs (total) (m)": 5.0691, + "Tp (total) (s)": 11.7389 + }, + { + "Date+Time": "2011-11-28T00:00:00Z", + "Hs (total) (m)": 2.9649, + "Tp (total) (s)": 12.8437 + }, + { + "Date+Time": "2011-11-29T00:00:00Z", + "Hs (total) (m)": 3.5333, + "Tp (total) (s)": 12.8452 + }, + { + "Date+Time": "2011-11-30T00:00:00Z", + "Hs (total) (m)": 3.6081, + "Tp (total) (s)": 11.8961 + }, + { + "Date+Time": "2011-12-01T00:00:00Z", + "Hs (total) (m)": 4.1932, + "Tp (total) (s)": 11.9472 + }, + { + "Date+Time": "2011-12-02T00:00:00Z", + "Hs (total) (m)": 2.0486, + "Tp (total) (s)": 11.359 + }, + { + "Date+Time": "2011-12-03T00:00:00Z", + "Hs (total) (m)": 3.3723, + "Tp (total) (s)": 11.5871 + }, + { + "Date+Time": "2011-12-04T00:00:00Z", + "Hs (total) (m)": 3.0831, + "Tp (total) (s)": 13.6357 + }, + { + "Date+Time": "2011-12-05T00:00:00Z", + "Hs (total) (m)": 3.2571, + "Tp (total) (s)": 11.5703 + }, + { + "Date+Time": "2011-12-06T00:00:00Z", + "Hs (total) (m)": 2.9962, + "Tp (total) (s)": 12.2913 + }, + { + "Date+Time": "2011-12-07T00:00:00Z", + "Hs (total) (m)": 3.8621, + "Tp (total) (s)": 10.9363 + }, + { + "Date+Time": "2011-12-08T00:00:00Z", + "Hs (total) (m)": 3.0213, + "Tp (total) (s)": 12.6171 + }, + { + "Date+Time": "2011-12-09T00:00:00Z", + "Hs (total) (m)": 3.4837, + "Tp (total) (s)": 12.5614 + }, + { + "Date+Time": "2011-12-10T00:00:00Z", + "Hs (total) (m)": 1.809, + "Tp (total) (s)": 12.5034 + }, + { + "Date+Time": "2011-12-11T00:00:00Z", + "Hs (total) (m)": 2.2256, + "Tp (total) (s)": 9.0915 + }, + { + "Date+Time": "2011-12-12T00:00:00Z", + "Hs (total) (m)": 4.904, + "Tp (total) (s)": 17.2496 + }, + { + "Date+Time": "2011-12-13T00:00:00Z", + "Hs (total) (m)": 4.7975, + "Tp (total) (s)": 12.5774 + }, + { + "Date+Time": "2011-12-14T00:00:00Z", + "Hs (total) (m)": 5.01, + "Tp (total) (s)": 14.428 + }, + { + "Date+Time": "2011-12-15T00:00:00Z", + "Hs (total) (m)": 4.6556, + "Tp (total) (s)": 16.3175 + }, + { + "Date+Time": "2011-12-16T00:00:00Z", + "Hs (total) (m)": 2.3278, + "Tp (total) (s)": 12.7651 + }, + { + "Date+Time": "2011-12-17T00:00:00Z", + "Hs (total) (m)": 3.2479, + "Tp (total) (s)": 12.5927 + }, + { + "Date+Time": "2011-12-18T00:00:00Z", + "Hs (total) (m)": 1.9875, + "Tp (total) (s)": 11.668 + }, + { + "Date+Time": "2011-12-19T00:00:00Z", + "Hs (total) (m)": 1.8097, + "Tp (total) (s)": 11.446 + }, + { + "Date+Time": "2011-12-20T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 8.2553 + }, + { + "Date+Time": "2011-12-21T00:00:00Z", + "Hs (total) (m)": 2.897, + "Tp (total) (s)": 13.8913 + }, + { + "Date+Time": "2011-12-22T00:00:00Z", + "Hs (total) (m)": 2.5872, + "Tp (total) (s)": 10.5335 + }, + { + "Date+Time": "2011-12-23T00:00:00Z", + "Hs (total) (m)": 3.3601, + "Tp (total) (s)": 12.4554 + }, + { + "Date+Time": "2011-12-24T00:00:00Z", + "Hs (total) (m)": 3.0122, + "Tp (total) (s)": 12.2662 + }, + { + "Date+Time": "2011-12-25T00:00:00Z", + "Hs (total) (m)": 3.7713, + "Tp (total) (s)": 12.6057 + }, + { + "Date+Time": "2011-12-26T00:00:00Z", + "Hs (total) (m)": 4.0605, + "Tp (total) (s)": 13.7829 + }, + { + "Date+Time": "2011-12-27T00:00:00Z", + "Hs (total) (m)": 3.7263, + "Tp (total) (s)": 13.3709 + }, + { + "Date+Time": "2011-12-28T00:00:00Z", + "Hs (total) (m)": 3.6401, + "Tp (total) (s)": 11.4345 + }, + { + "Date+Time": "2011-12-29T00:00:00Z", + "Hs (total) (m)": 4.0376, + "Tp (total) (s)": 13.3007 + }, + { + "Date+Time": "2011-12-30T00:00:00Z", + "Hs (total) (m)": 2.6269, + "Tp (total) (s)": 12.5378 + }, + { + "Date+Time": "2011-12-31T00:00:00Z", + "Hs (total) (m)": 2.6055, + "Tp (total) (s)": 10.4816 + }, + { + "Date+Time": "2012-01-01T00:00:00Z", + "Hs (total) (m)": 3.9346, + "Tp (total) (s)": 10.4907 + }, + { + "Date+Time": "2012-01-02T00:00:00Z", + "Hs (total) (m)": 4.5885, + "Tp (total) (s)": 13.9416 + }, + { + "Date+Time": "2012-01-03T00:00:00Z", + "Hs (total) (m)": 5.5055, + "Tp (total) (s)": 15.975 + }, + { + "Date+Time": "2012-01-04T00:00:00Z", + "Hs (total) (m)": 4.397, + "Tp (total) (s)": 13.8829 + }, + { + "Date+Time": "2012-01-05T00:00:00Z", + "Hs (total) (m)": 5.3196, + "Tp (total) (s)": 12.672 + }, + { + "Date+Time": "2012-01-06T00:00:00Z", + "Hs (total) (m)": 2.7062, + "Tp (total) (s)": 13.1527 + }, + { + "Date+Time": "2012-01-07T00:00:00Z", + "Hs (total) (m)": 2.4468, + "Tp (total) (s)": 10.6136 + }, + { + "Date+Time": "2012-01-08T00:00:00Z", + "Hs (total) (m)": 2.3743, + "Tp (total) (s)": 14.3391 + }, + { + "Date+Time": "2012-01-09T00:00:00Z", + "Hs (total) (m)": 2.6688, + "Tp (total) (s)": 11.2728 + }, + { + "Date+Time": "2012-01-10T00:00:00Z", + "Hs (total) (m)": 2.1752, + "Tp (total) (s)": 12.241 + }, + { + "Date+Time": "2012-01-11T00:00:00Z", + "Hs (total) (m)": 2.5758, + "Tp (total) (s)": 13.1687 + }, + { + "Date+Time": "2012-01-12T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 13.01 + }, + { + "Date+Time": "2012-01-13T00:00:00Z", + "Hs (total) (m)": 1.4214, + "Tp (total) (s)": 11.3414 + }, + { + "Date+Time": "2012-01-14T00:00:00Z", + "Hs (total) (m)": 1.3024, + "Tp (total) (s)": 8.829 + }, + { + "Date+Time": "2012-01-15T00:00:00Z", + "Hs (total) (m)": 2.5353, + "Tp (total) (s)": 14.4108 + }, + { + "Date+Time": "2012-01-16T00:00:00Z", + "Hs (total) (m)": 2.6124, + "Tp (total) (s)": 13.3686 + }, + { + "Date+Time": "2012-01-17T00:00:00Z", + "Hs (total) (m)": 1.7808, + "Tp (total) (s)": 11.0706 + }, + { + "Date+Time": "2012-01-18T00:00:00Z", + "Hs (total) (m)": 2.8275, + "Tp (total) (s)": 12.6644 + }, + { + "Date+Time": "2012-01-19T00:00:00Z", + "Hs (total) (m)": 2.4529, + "Tp (total) (s)": 12.6865 + }, + { + "Date+Time": "2012-01-20T00:00:00Z", + "Hs (total) (m)": 3.415, + "Tp (total) (s)": 12.3722 + }, + { + "Date+Time": "2012-01-21T00:00:00Z", + "Hs (total) (m)": 3.0335, + "Tp (total) (s)": 12.4378 + }, + { + "Date+Time": "2012-01-22T00:00:00Z", + "Hs (total) (m)": 2.8985, + "Tp (total) (s)": 14.626 + }, + { + "Date+Time": "2012-01-23T00:00:00Z", + "Hs (total) (m)": 1.9898, + "Tp (total) (s)": 12.595 + }, + { + "Date+Time": "2012-01-24T00:00:00Z", + "Hs (total) (m)": 2.1493, + "Tp (total) (s)": 11.3979 + }, + { + "Date+Time": "2012-01-25T00:00:00Z", + "Hs (total) (m)": 2.7436, + "Tp (total) (s)": 8.6367 + }, + { + "Date+Time": "2012-01-26T00:00:00Z", + "Hs (total) (m)": 3.0412, + "Tp (total) (s)": 10.5029 + }, + { + "Date+Time": "2012-01-27T00:00:00Z", + "Hs (total) (m)": 3.1693, + "Tp (total) (s)": 13.1069 + }, + { + "Date+Time": "2012-01-28T00:00:00Z", + "Hs (total) (m)": 1.2741, + "Tp (total) (s)": 11.7412 + }, + { + "Date+Time": "2012-01-29T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 9.9239 + }, + { + "Date+Time": "2012-01-30T00:00:00Z", + "Hs (total) (m)": 1.6167, + "Tp (total) (s)": 11.1568 + }, + { + "Date+Time": "2012-01-31T00:00:00Z", + "Hs (total) (m)": 1.8921, + "Tp (total) (s)": 10.7089 + }, + { + "Date+Time": "2012-02-01T00:00:00Z", + "Hs (total) (m)": 1.7815, + "Tp (total) (s)": 9.6751 + }, + { + "Date+Time": "2012-02-02T00:00:00Z", + "Hs (total) (m)": 2.0188, + "Tp (total) (s)": 13.4747 + }, + { + "Date+Time": "2012-02-03T00:00:00Z", + "Hs (total) (m)": 1.9204, + "Tp (total) (s)": 11.4597 + }, + { + "Date+Time": "2012-02-04T00:00:00Z", + "Hs (total) (m)": 2.5109, + "Tp (total) (s)": 13.58 + }, + { + "Date+Time": "2012-02-05T00:00:00Z", + "Hs (total) (m)": 2.707, + "Tp (total) (s)": 12.7552 + }, + { + "Date+Time": "2012-02-06T00:00:00Z", + "Hs (total) (m)": 1.7411, + "Tp (total) (s)": 11.6039 + }, + { + "Date+Time": "2012-02-07T00:00:00Z", + "Hs (total) (m)": 1.9204, + "Tp (total) (s)": 15.5042 + }, + { + "Date+Time": "2012-02-08T00:00:00Z", + "Hs (total) (m)": 2.797, + "Tp (total) (s)": 13.9325 + }, + { + "Date+Time": "2012-02-09T00:00:00Z", + "Hs (total) (m)": 2.7871, + "Tp (total) (s)": 12.5034 + }, + { + "Date+Time": "2012-02-10T00:00:00Z", + "Hs (total) (m)": 1.7144, + "Tp (total) (s)": 11.4055 + }, + { + "Date+Time": "2012-02-11T00:00:00Z", + "Hs (total) (m)": 1.5381, + "Tp (total) (s)": 10.7341 + }, + { + "Date+Time": "2012-02-12T00:00:00Z", + "Hs (total) (m)": 1.1597, + "Tp (total) (s)": 10.316 + }, + { + "Date+Time": "2012-02-13T00:00:00Z", + "Hs (total) (m)": 1.0117, + "Tp (total) (s)": 9.4386 + }, + { + "Date+Time": "2012-02-14T00:00:00Z", + "Hs (total) (m)": 1.3352, + "Tp (total) (s)": 12.4889 + }, + { + "Date+Time": "2012-02-15T00:00:00Z", + "Hs (total) (m)": 1.3764, + "Tp (total) (s)": 8.8313 + }, + { + "Date+Time": "2012-02-16T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 8.7092 + }, + { + "Date+Time": "2012-02-17T00:00:00Z", + "Hs (total) (m)": 1.9829, + "Tp (total) (s)": 9.4371 + }, + { + "Date+Time": "2012-02-18T00:00:00Z", + "Hs (total) (m)": 3.0282, + "Tp (total) (s)": 9.4958 + }, + { + "Date+Time": "2012-02-19T00:00:00Z", + "Hs (total) (m)": 2.2004, + "Tp (total) (s)": 12.981 + }, + { + "Date+Time": "2012-02-20T00:00:00Z", + "Hs (total) (m)": 2.0096, + "Tp (total) (s)": 11.1286 + }, + { + "Date+Time": "2012-02-21T00:00:00Z", + "Hs (total) (m)": 2.1706, + "Tp (total) (s)": 8.3697 + }, + { + "Date+Time": "2012-02-22T00:00:00Z", + "Hs (total) (m)": 2.5452, + "Tp (total) (s)": 8.7252 + }, + { + "Date+Time": "2012-02-23T00:00:00Z", + "Hs (total) (m)": 2.7589, + "Tp (total) (s)": 10.7448 + }, + { + "Date+Time": "2012-02-24T00:00:00Z", + "Hs (total) (m)": 3.1671, + "Tp (total) (s)": 13.7165 + }, + { + "Date+Time": "2012-02-25T00:00:00Z", + "Hs (total) (m)": 2.5613, + "Tp (total) (s)": 13.9531 + }, + { + "Date+Time": "2012-02-26T00:00:00Z", + "Hs (total) (m)": 1.6312, + "Tp (total) (s)": 12.3196 + }, + { + "Date+Time": "2012-02-27T00:00:00Z", + "Hs (total) (m)": 2.1645, + "Tp (total) (s)": 10.1146 + }, + { + "Date+Time": "2012-02-28T00:00:00Z", + "Hs (total) (m)": 2.2011, + "Tp (total) (s)": 11.6962 + }, + { + "Date+Time": "2012-02-29T00:00:00Z", + "Hs (total) (m)": 1.8952, + "Tp (total) (s)": 11.4704 + }, + { + "Date+Time": "2012-03-01T00:00:00Z", + "Hs (total) (m)": 2.4178, + "Tp (total) (s)": 12.5469 + }, + { + "Date+Time": "2012-03-02T00:00:00Z", + "Hs (total) (m)": 1.6831, + "Tp (total) (s)": 12.1303 + }, + { + "Date+Time": "2012-03-03T00:00:00Z", + "Hs (total) (m)": 3.4814, + "Tp (total) (s)": 16.0237 + }, + { + "Date+Time": "2012-03-04T00:00:00Z", + "Hs (total) (m)": 2.8642, + "Tp (total) (s)": 12.9902 + }, + { + "Date+Time": "2012-03-05T00:00:00Z", + "Hs (total) (m)": 2.2469, + "Tp (total) (s)": 11.7145 + }, + { + "Date+Time": "2012-03-06T00:00:00Z", + "Hs (total) (m)": 1.9013, + "Tp (total) (s)": 12.5034 + }, + { + "Date+Time": "2012-03-07T00:00:00Z", + "Hs (total) (m)": 2.942, + "Tp (total) (s)": 8.0248 + }, + { + "Date+Time": "2012-03-08T00:00:00Z", + "Hs (total) (m)": 4.4939, + "Tp (total) (s)": 16.7287 + }, + { + "Date+Time": "2012-03-09T00:00:00Z", + "Hs (total) (m)": 3.4783, + "Tp (total) (s)": 16.1802 + }, + { + "Date+Time": "2012-03-10T00:00:00Z", + "Hs (total) (m)": 2.5979, + "Tp (total) (s)": 13.9286 + }, + { + "Date+Time": "2012-03-11T00:00:00Z", + "Hs (total) (m)": 1.9303, + "Tp (total) (s)": 13.9996 + }, + { + "Date+Time": "2012-03-12T00:00:00Z", + "Hs (total) (m)": 1.2436, + "Tp (total) (s)": 11.6695 + }, + { + "Date+Time": "2012-03-13T00:00:00Z", + "Hs (total) (m)": 1.1635, + "Tp (total) (s)": 12.5645 + }, + { + "Date+Time": "2012-03-14T00:00:00Z", + "Hs (total) (m)": 1.1559, + "Tp (total) (s)": 15.7117 + }, + { + "Date+Time": "2012-03-15T00:00:00Z", + "Hs (total) (m)": 2.0257, + "Tp (total) (s)": 13.6456 + }, + { + "Date+Time": "2012-03-16T00:00:00Z", + "Hs (total) (m)": 2.3972, + "Tp (total) (s)": 11.5947 + }, + { + "Date+Time": "2012-03-17T00:00:00Z", + "Hs (total) (m)": 2.2843, + "Tp (total) (s)": 12.492 + }, + { + "Date+Time": "2012-03-18T00:00:00Z", + "Hs (total) (m)": 1.5969, + "Tp (total) (s)": 11.7222 + }, + { + "Date+Time": "2012-03-19T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 10.2847 + }, + { + "Date+Time": "2012-03-20T00:00:00Z", + "Hs (total) (m)": 2.5407, + "Tp (total) (s)": 10.3557 + }, + { + "Date+Time": "2012-03-21T00:00:00Z", + "Hs (total) (m)": 2.6971, + "Tp (total) (s)": 11.1927 + }, + { + "Date+Time": "2012-03-22T00:00:00Z", + "Hs (total) (m)": 2.0981, + "Tp (total) (s)": 11.3422 + }, + { + "Date+Time": "2012-03-23T00:00:00Z", + "Hs (total) (m)": 1.883, + "Tp (total) (s)": 12.1288 + }, + { + "Date+Time": "2012-03-24T00:00:00Z", + "Hs (total) (m)": 1.8288, + "Tp (total) (s)": 12.4699 + }, + { + "Date+Time": "2012-03-25T00:00:00Z", + "Hs (total) (m)": 2.234, + "Tp (total) (s)": 12.476 + }, + { + "Date+Time": "2012-03-26T00:00:00Z", + "Hs (total) (m)": 1.5999, + "Tp (total) (s)": 11.5444 + }, + { + "Date+Time": "2012-03-27T00:00:00Z", + "Hs (total) (m)": 1.9311, + "Tp (total) (s)": 13.6189 + }, + { + "Date+Time": "2012-03-28T00:00:00Z", + "Hs (total) (m)": 1.4145, + "Tp (total) (s)": 11.5337 + }, + { + "Date+Time": "2012-03-29T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 10.654 + }, + { + "Date+Time": "2012-03-30T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 9.5996 + }, + { + "Date+Time": "2012-03-31T00:00:00Z", + "Hs (total) (m)": 0.7553, + "Tp (total) (s)": 8.6039 + }, + { + "Date+Time": "2012-04-01T00:00:00Z", + "Hs (total) (m)": 0.7569, + "Tp (total) (s)": 11.9663 + }, + { + "Date+Time": "2012-04-02T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 12.7186 + }, + { + "Date+Time": "2012-04-03T00:00:00Z", + "Hs (total) (m)": 1.0285, + "Tp (total) (s)": 10.9798 + }, + { + "Date+Time": "2012-04-04T00:00:00Z", + "Hs (total) (m)": 1.0002, + "Tp (total) (s)": 9.4684 + }, + { + "Date+Time": "2012-04-05T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 11.3994 + }, + { + "Date+Time": "2012-04-06T00:00:00Z", + "Hs (total) (m)": 0.7408, + "Tp (total) (s)": 9.4539 + }, + { + "Date+Time": "2012-04-07T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 7.7189 + }, + { + "Date+Time": "2012-04-08T00:00:00Z", + "Hs (total) (m)": 1.2719, + "Tp (total) (s)": 12.9467 + }, + { + "Date+Time": "2012-04-09T00:00:00Z", + "Hs (total) (m)": 1.6243, + "Tp (total) (s)": 7.8494 + }, + { + "Date+Time": "2012-04-10T00:00:00Z", + "Hs (total) (m)": 2.2401, + "Tp (total) (s)": 10.2618 + }, + { + "Date+Time": "2012-04-11T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 12.1258 + }, + { + "Date+Time": "2012-04-12T00:00:00Z", + "Hs (total) (m)": 1.2825, + "Tp (total) (s)": 9.7362 + }, + { + "Date+Time": "2012-04-13T00:00:00Z", + "Hs (total) (m)": 1.0125, + "Tp (total) (s)": 8.7008 + }, + { + "Date+Time": "2012-04-14T00:00:00Z", + "Hs (total) (m)": 0.808, + "Tp (total) (s)": 8.62 + }, + { + "Date+Time": "2012-04-15T00:00:00Z", + "Hs (total) (m)": 0.7622, + "Tp (total) (s)": 8.7283 + }, + { + "Date+Time": "2012-04-16T00:00:00Z", + "Hs (total) (m)": 0.9354, + "Tp (total) (s)": 8.2301 + }, + { + "Date+Time": "2012-04-17T00:00:00Z", + "Hs (total) (m)": 2.3682, + "Tp (total) (s)": 7.2916 + }, + { + "Date+Time": "2012-04-18T00:00:00Z", + "Hs (total) (m)": 4.9293, + "Tp (total) (s)": 15.0469 + }, + { + "Date+Time": "2012-04-19T00:00:00Z", + "Hs (total) (m)": 2.0188, + "Tp (total) (s)": 11.3971 + }, + { + "Date+Time": "2012-04-20T00:00:00Z", + "Hs (total) (m)": 1.5175, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "2012-04-21T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 9.3959 + }, + { + "Date+Time": "2012-04-22T00:00:00Z", + "Hs (total) (m)": 1.8586, + "Tp (total) (s)": 8.8549 + }, + { + "Date+Time": "2012-04-23T00:00:00Z", + "Hs (total) (m)": 0.943, + "Tp (total) (s)": 8.533 + }, + { + "Date+Time": "2012-04-24T00:00:00Z", + "Hs (total) (m)": 1.8387, + "Tp (total) (s)": 11.3491 + }, + { + "Date+Time": "2012-04-25T00:00:00Z", + "Hs (total) (m)": 1.0056, + "Tp (total) (s)": 10.2229 + }, + { + "Date+Time": "2012-04-26T00:00:00Z", + "Hs (total) (m)": 1.0453, + "Tp (total) (s)": 3.6241 + }, + { + "Date+Time": "2012-04-27T00:00:00Z", + "Hs (total) (m)": 1.0811, + "Tp (total) (s)": 10.3229 + }, + { + "Date+Time": "2012-04-28T00:00:00Z", + "Hs (total) (m)": 0.7004, + "Tp (total) (s)": 3.0297 + }, + { + "Date+Time": "2012-04-29T00:00:00Z", + "Hs (total) (m)": 0.5921, + "Tp (total) (s)": 2.7551 + }, + { + "Date+Time": "2012-04-30T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 3.6889 + }, + { + "Date+Time": "2012-05-01T00:00:00Z", + "Hs (total) (m)": 0.6233, + "Tp (total) (s)": 3.0358 + }, + { + "Date+Time": "2012-05-02T00:00:00Z", + "Hs (total) (m)": 0.6829, + "Tp (total) (s)": 3.1869 + }, + { + "Date+Time": "2012-05-03T00:00:00Z", + "Hs (total) (m)": 0.6302, + "Tp (total) (s)": 10.9386 + }, + { + "Date+Time": "2012-05-04T00:00:00Z", + "Hs (total) (m)": 0.7164, + "Tp (total) (s)": 5.401 + }, + { + "Date+Time": "2012-05-05T00:00:00Z", + "Hs (total) (m)": 0.6539, + "Tp (total) (s)": 2.9435 + }, + { + "Date+Time": "2012-05-06T00:00:00Z", + "Hs (total) (m)": 0.4608, + "Tp (total) (s)": 8.536 + }, + { + "Date+Time": "2012-05-07T00:00:00Z", + "Hs (total) (m)": 0.5737, + "Tp (total) (s)": 2.665 + }, + { + "Date+Time": "2012-05-08T00:00:00Z", + "Hs (total) (m)": 1.0842, + "Tp (total) (s)": 6.5531 + }, + { + "Date+Time": "2012-05-09T00:00:00Z", + "Hs (total) (m)": 0.4997, + "Tp (total) (s)": 6.0579 + }, + { + "Date+Time": "2012-05-10T00:00:00Z", + "Hs (total) (m)": 0.3922, + "Tp (total) (s)": 2.2423 + }, + { + "Date+Time": "2012-05-11T00:00:00Z", + "Hs (total) (m)": 0.9278, + "Tp (total) (s)": 7.8814 + }, + { + "Date+Time": "2012-05-12T00:00:00Z", + "Hs (total) (m)": 0.618, + "Tp (total) (s)": 7.86 + }, + { + "Date+Time": "2012-05-13T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 5.3461 + }, + { + "Date+Time": "2012-05-14T00:00:00Z", + "Hs (total) (m)": 2.8481, + "Tp (total) (s)": 10.683 + }, + { + "Date+Time": "2012-05-15T00:00:00Z", + "Hs (total) (m)": 2.2912, + "Tp (total) (s)": 11.5009 + }, + { + "Date+Time": "2012-05-16T00:00:00Z", + "Hs (total) (m)": 1.0758, + "Tp (total) (s)": 12.3844 + }, + { + "Date+Time": "2012-05-17T00:00:00Z", + "Hs (total) (m)": 0.6996, + "Tp (total) (s)": 10.7936 + }, + { + "Date+Time": "2012-05-18T00:00:00Z", + "Hs (total) (m)": 0.7271, + "Tp (total) (s)": 9.637 + }, + { + "Date+Time": "2012-05-19T00:00:00Z", + "Hs (total) (m)": 0.5989, + "Tp (total) (s)": 8.4948 + }, + { + "Date+Time": "2012-05-20T00:00:00Z", + "Hs (total) (m)": 0.3822, + "Tp (total) (s)": 7.9478 + }, + { + "Date+Time": "2012-05-21T00:00:00Z", + "Hs (total) (m)": 1.2101, + "Tp (total) (s)": 8.2545 + }, + { + "Date+Time": "2012-05-22T00:00:00Z", + "Hs (total) (m)": 1.4916, + "Tp (total) (s)": 9.3783 + }, + { + "Date+Time": "2012-05-23T00:00:00Z", + "Hs (total) (m)": 1.7121, + "Tp (total) (s)": 9.4142 + }, + { + "Date+Time": "2012-05-24T00:00:00Z", + "Hs (total) (m)": 1.8571, + "Tp (total) (s)": 10.0986 + }, + { + "Date+Time": "2012-05-25T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 9.5126 + }, + { + "Date+Time": "2012-05-26T00:00:00Z", + "Hs (total) (m)": 0.9758, + "Tp (total) (s)": 8.6749 + }, + { + "Date+Time": "2012-05-27T00:00:00Z", + "Hs (total) (m)": 0.7172, + "Tp (total) (s)": 3.029 + }, + { + "Date+Time": "2012-05-28T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 9.1525 + }, + { + "Date+Time": "2012-05-29T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 8.8023 + }, + { + "Date+Time": "2012-05-30T00:00:00Z", + "Hs (total) (m)": 0.8965, + "Tp (total) (s)": 7.8867 + }, + { + "Date+Time": "2012-05-31T00:00:00Z", + "Hs (total) (m)": 1.1444, + "Tp (total) (s)": 7.9226 + }, + { + "Date+Time": "2012-06-01T00:00:00Z", + "Hs (total) (m)": 1.1322, + "Tp (total) (s)": 7.8318 + }, + { + "Date+Time": "2012-06-02T00:00:00Z", + "Hs (total) (m)": 1.5152, + "Tp (total) (s)": 11.4513 + }, + { + "Date+Time": "2012-06-03T00:00:00Z", + "Hs (total) (m)": 1.4565, + "Tp (total) (s)": 11.1888 + }, + { + "Date+Time": "2012-06-04T00:00:00Z", + "Hs (total) (m)": 1.0178, + "Tp (total) (s)": 9.3654 + }, + { + "Date+Time": "2012-06-05T00:00:00Z", + "Hs (total) (m)": 0.9606, + "Tp (total) (s)": 8.3148 + }, + { + "Date+Time": "2012-06-06T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 11.2079 + }, + { + "Date+Time": "2012-06-07T00:00:00Z", + "Hs (total) (m)": 1.2497, + "Tp (total) (s)": 10.4251 + }, + { + "Date+Time": "2012-06-08T00:00:00Z", + "Hs (total) (m)": 1.5893, + "Tp (total) (s)": 6.9025 + }, + { + "Date+Time": "2012-06-09T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 7.6968 + }, + { + "Date+Time": "2012-06-10T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 8.169 + }, + { + "Date+Time": "2012-06-11T00:00:00Z", + "Hs (total) (m)": 0.8766, + "Tp (total) (s)": 7.8837 + }, + { + "Date+Time": "2012-06-12T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 8.414 + }, + { + "Date+Time": "2012-06-13T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 10.2893 + }, + { + "Date+Time": "2012-06-14T00:00:00Z", + "Hs (total) (m)": 0.7126, + "Tp (total) (s)": 9.286 + }, + { + "Date+Time": "2012-06-15T00:00:00Z", + "Hs (total) (m)": 0.8019, + "Tp (total) (s)": 3.09 + }, + { + "Date+Time": "2012-06-16T00:00:00Z", + "Hs (total) (m)": 0.9186, + "Tp (total) (s)": 5.0058 + }, + { + "Date+Time": "2012-06-17T00:00:00Z", + "Hs (total) (m)": 0.7256, + "Tp (total) (s)": 8.0241 + }, + { + "Date+Time": "2012-06-18T00:00:00Z", + "Hs (total) (m)": 0.5646, + "Tp (total) (s)": 6.6309 + }, + { + "Date+Time": "2012-06-19T00:00:00Z", + "Hs (total) (m)": 0.7759, + "Tp (total) (s)": 5.4247 + }, + { + "Date+Time": "2012-06-20T00:00:00Z", + "Hs (total) (m)": 0.6829, + "Tp (total) (s)": 5.8351 + }, + { + "Date+Time": "2012-06-21T00:00:00Z", + "Hs (total) (m)": 0.8728, + "Tp (total) (s)": 6.6286 + }, + { + "Date+Time": "2012-06-22T00:00:00Z", + "Hs (total) (m)": 0.9072, + "Tp (total) (s)": 5.1454 + }, + { + "Date+Time": "2012-06-23T00:00:00Z", + "Hs (total) (m)": 1.5603, + "Tp (total) (s)": 6.2983 + }, + { + "Date+Time": "2012-06-24T00:00:00Z", + "Hs (total) (m)": 1.4443, + "Tp (total) (s)": 7.7044 + }, + { + "Date+Time": "2012-06-25T00:00:00Z", + "Hs (total) (m)": 0.9987, + "Tp (total) (s)": 7.625 + }, + { + "Date+Time": "2012-06-26T00:00:00Z", + "Hs (total) (m)": 0.8347, + "Tp (total) (s)": 8.874 + }, + { + "Date+Time": "2012-06-27T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 10.165 + }, + { + "Date+Time": "2012-06-28T00:00:00Z", + "Hs (total) (m)": 1.0735, + "Tp (total) (s)": 8.9938 + }, + { + "Date+Time": "2012-06-29T00:00:00Z", + "Hs (total) (m)": 1.072, + "Tp (total) (s)": 8.8572 + }, + { + "Date+Time": "2012-06-30T00:00:00Z", + "Hs (total) (m)": 1.194, + "Tp (total) (s)": 9.4546 + }, + { + "Date+Time": "2012-07-01T00:00:00Z", + "Hs (total) (m)": 1.6511, + "Tp (total) (s)": 8.6261 + }, + { + "Date+Time": "2012-07-02T00:00:00Z", + "Hs (total) (m)": 1.3146, + "Tp (total) (s)": 8.2942 + }, + { + "Date+Time": "2012-07-03T00:00:00Z", + "Hs (total) (m)": 1.2017, + "Tp (total) (s)": 8.5055 + }, + { + "Date+Time": "2012-07-04T00:00:00Z", + "Hs (total) (m)": 1.2909, + "Tp (total) (s)": 9.3051 + }, + { + "Date+Time": "2012-07-05T00:00:00Z", + "Hs (total) (m)": 1.2146, + "Tp (total) (s)": 9.3455 + }, + { + "Date+Time": "2012-07-06T00:00:00Z", + "Hs (total) (m)": 0.8072, + "Tp (total) (s)": 9.4272 + }, + { + "Date+Time": "2012-07-07T00:00:00Z", + "Hs (total) (m)": 0.6859, + "Tp (total) (s)": 8.3453 + }, + { + "Date+Time": "2012-07-08T00:00:00Z", + "Hs (total) (m)": 0.7843, + "Tp (total) (s)": 8.0599 + }, + { + "Date+Time": "2012-07-09T00:00:00Z", + "Hs (total) (m)": 0.8393, + "Tp (total) (s)": 7.8883 + }, + { + "Date+Time": "2012-07-10T00:00:00Z", + "Hs (total) (m)": 0.8354, + "Tp (total) (s)": 7.0582 + }, + { + "Date+Time": "2012-07-11T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 6.299 + }, + { + "Date+Time": "2012-07-12T00:00:00Z", + "Hs (total) (m)": 0.782, + "Tp (total) (s)": 6.3311 + }, + { + "Date+Time": "2012-07-13T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 8.2064 + }, + { + "Date+Time": "2012-07-14T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 8.5353 + }, + { + "Date+Time": "2012-07-15T00:00:00Z", + "Hs (total) (m)": 1.0834, + "Tp (total) (s)": 8.7443 + }, + { + "Date+Time": "2012-07-16T00:00:00Z", + "Hs (total) (m)": 1.513, + "Tp (total) (s)": 8.6291 + }, + { + "Date+Time": "2012-07-17T00:00:00Z", + "Hs (total) (m)": 1.6335, + "Tp (total) (s)": 8.166 + }, + { + "Date+Time": "2012-07-18T00:00:00Z", + "Hs (total) (m)": 1.7869, + "Tp (total) (s)": 7.8806 + }, + { + "Date+Time": "2012-07-19T00:00:00Z", + "Hs (total) (m)": 1.307, + "Tp (total) (s)": 8.2858 + }, + { + "Date+Time": "2012-07-20T00:00:00Z", + "Hs (total) (m)": 1.0994, + "Tp (total) (s)": 8.3369 + }, + { + "Date+Time": "2012-07-21T00:00:00Z", + "Hs (total) (m)": 0.7561, + "Tp (total) (s)": 7.7845 + }, + { + "Date+Time": "2012-07-22T00:00:00Z", + "Hs (total) (m)": 1.5374, + "Tp (total) (s)": 5.8191 + }, + { + "Date+Time": "2012-07-23T00:00:00Z", + "Hs (total) (m)": 2.0409, + "Tp (total) (s)": 9.2769 + }, + { + "Date+Time": "2012-07-24T00:00:00Z", + "Hs (total) (m)": 1.706, + "Tp (total) (s)": 11.9961 + }, + { + "Date+Time": "2012-07-25T00:00:00Z", + "Hs (total) (m)": 1.2673, + "Tp (total) (s)": 10.7387 + }, + { + "Date+Time": "2012-07-26T00:00:00Z", + "Hs (total) (m)": 1.0392, + "Tp (total) (s)": 9.5157 + }, + { + "Date+Time": "2012-07-27T00:00:00Z", + "Hs (total) (m)": 1.0392, + "Tp (total) (s)": 8.5673 + }, + { + "Date+Time": "2012-07-28T00:00:00Z", + "Hs (total) (m)": 1.1933, + "Tp (total) (s)": 8.272 + }, + { + "Date+Time": "2012-07-29T00:00:00Z", + "Hs (total) (m)": 1.1582, + "Tp (total) (s)": 8.5719 + }, + { + "Date+Time": "2012-07-30T00:00:00Z", + "Hs (total) (m)": 1.1139, + "Tp (total) (s)": 8.462 + }, + { + "Date+Time": "2012-07-31T00:00:00Z", + "Hs (total) (m)": 0.8782, + "Tp (total) (s)": 10.213 + }, + { + "Date+Time": "2012-08-01T00:00:00Z", + "Hs (total) (m)": 2.4712, + "Tp (total) (s)": 8.0645 + }, + { + "Date+Time": "2012-08-02T00:00:00Z", + "Hs (total) (m)": 2.3606, + "Tp (total) (s)": 9.2929 + }, + { + "Date+Time": "2012-08-03T00:00:00Z", + "Hs (total) (m)": 2.4178, + "Tp (total) (s)": 9.5698 + }, + { + "Date+Time": "2012-08-04T00:00:00Z", + "Hs (total) (m)": 1.249, + "Tp (total) (s)": 8.3758 + }, + { + "Date+Time": "2012-08-05T00:00:00Z", + "Hs (total) (m)": 0.7202, + "Tp (total) (s)": 2.7978 + }, + { + "Date+Time": "2012-08-06T00:00:00Z", + "Hs (total) (m)": 0.6737, + "Tp (total) (s)": 5.871 + }, + { + "Date+Time": "2012-08-07T00:00:00Z", + "Hs (total) (m)": 0.7759, + "Tp (total) (s)": 5.8359 + }, + { + "Date+Time": "2012-08-08T00:00:00Z", + "Hs (total) (m)": 0.9857, + "Tp (total) (s)": 7.8829 + }, + { + "Date+Time": "2012-08-09T00:00:00Z", + "Hs (total) (m)": 0.8889, + "Tp (total) (s)": 10.3465 + }, + { + "Date+Time": "2012-08-10T00:00:00Z", + "Hs (total) (m)": 0.7927, + "Tp (total) (s)": 8.3079 + }, + { + "Date+Time": "2012-08-11T00:00:00Z", + "Hs (total) (m)": 0.6897, + "Tp (total) (s)": 7.873 + }, + { + "Date+Time": "2012-08-12T00:00:00Z", + "Hs (total) (m)": 0.8927, + "Tp (total) (s)": 9.2799 + }, + { + "Date+Time": "2012-08-13T00:00:00Z", + "Hs (total) (m)": 0.9896, + "Tp (total) (s)": 9.1723 + }, + { + "Date+Time": "2012-08-14T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 9.418 + }, + { + "Date+Time": "2012-08-15T00:00:00Z", + "Hs (total) (m)": 1.1032, + "Tp (total) (s)": 8.6596 + }, + { + "Date+Time": "2012-08-16T00:00:00Z", + "Hs (total) (m)": 2.221, + "Tp (total) (s)": 5.9229 + }, + { + "Date+Time": "2012-08-17T00:00:00Z", + "Hs (total) (m)": 1.6617, + "Tp (total) (s)": 8.694 + }, + { + "Date+Time": "2012-08-18T00:00:00Z", + "Hs (total) (m)": 1.6503, + "Tp (total) (s)": 9.714 + }, + { + "Date+Time": "2012-08-19T00:00:00Z", + "Hs (total) (m)": 1.7869, + "Tp (total) (s)": 8.7336 + }, + { + "Date+Time": "2012-08-20T00:00:00Z", + "Hs (total) (m)": 1.973, + "Tp (total) (s)": 8.9465 + }, + { + "Date+Time": "2012-08-21T00:00:00Z", + "Hs (total) (m)": 1.4916, + "Tp (total) (s)": 7.7692 + }, + { + "Date+Time": "2012-08-22T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 6.8728 + }, + { + "Date+Time": "2012-08-23T00:00:00Z", + "Hs (total) (m)": 1.5305, + "Tp (total) (s)": 7.7998 + }, + { + "Date+Time": "2012-08-24T00:00:00Z", + "Hs (total) (m)": 1.5244, + "Tp (total) (s)": 7.9279 + }, + { + "Date+Time": "2012-08-25T00:00:00Z", + "Hs (total) (m)": 0.8744, + "Tp (total) (s)": 9.4821 + }, + { + "Date+Time": "2012-08-26T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 9.1922 + }, + { + "Date+Time": "2012-08-27T00:00:00Z", + "Hs (total) (m)": 2.0768, + "Tp (total) (s)": 6.7354 + }, + { + "Date+Time": "2012-08-28T00:00:00Z", + "Hs (total) (m)": 2.3309, + "Tp (total) (s)": 8.7016 + }, + { + "Date+Time": "2012-08-29T00:00:00Z", + "Hs (total) (m)": 2.8497, + "Tp (total) (s)": 8.8153 + }, + { + "Date+Time": "2012-08-30T00:00:00Z", + "Hs (total) (m)": 1.7571, + "Tp (total) (s)": 11.198 + }, + { + "Date+Time": "2012-08-31T00:00:00Z", + "Hs (total) (m)": 1.1063, + "Tp (total) (s)": 10.229 + }, + { + "Date+Time": "2012-09-01T00:00:00Z", + "Hs (total) (m)": 1.6213, + "Tp (total) (s)": 7.7227 + }, + { + "Date+Time": "2012-09-02T00:00:00Z", + "Hs (total) (m)": 2.1027, + "Tp (total) (s)": 10.1688 + }, + { + "Date+Time": "2012-09-03T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 9.6431 + }, + { + "Date+Time": "2012-09-04T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 8.3499 + }, + { + "Date+Time": "2012-09-05T00:00:00Z", + "Hs (total) (m)": 1.7617, + "Tp (total) (s)": 12.8941 + }, + { + "Date+Time": "2012-09-06T00:00:00Z", + "Hs (total) (m)": 1.3009, + "Tp (total) (s)": 11.5169 + }, + { + "Date+Time": "2012-09-07T00:00:00Z", + "Hs (total) (m)": 1.6076, + "Tp (total) (s)": 9.067 + }, + { + "Date+Time": "2012-09-08T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 9.65 + }, + { + "Date+Time": "2012-09-09T00:00:00Z", + "Hs (total) (m)": 1.3817, + "Tp (total) (s)": 9.9048 + }, + { + "Date+Time": "2012-09-10T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 10.2557 + }, + { + "Date+Time": "2012-09-11T00:00:00Z", + "Hs (total) (m)": 1.455, + "Tp (total) (s)": 8.7107 + }, + { + "Date+Time": "2012-09-12T00:00:00Z", + "Hs (total) (m)": 1.751, + "Tp (total) (s)": 12.5042 + }, + { + "Date+Time": "2012-09-13T00:00:00Z", + "Hs (total) (m)": 1.381, + "Tp (total) (s)": 10.5022 + }, + { + "Date+Time": "2012-09-14T00:00:00Z", + "Hs (total) (m)": 2.6139, + "Tp (total) (s)": 9.5141 + }, + { + "Date+Time": "2012-09-15T00:00:00Z", + "Hs (total) (m)": 2.1256, + "Tp (total) (s)": 12.9879 + }, + { + "Date+Time": "2012-09-16T00:00:00Z", + "Hs (total) (m)": 2.0852, + "Tp (total) (s)": 11.5093 + }, + { + "Date+Time": "2012-09-17T00:00:00Z", + "Hs (total) (m)": 2.5117, + "Tp (total) (s)": 11.5009 + }, + { + "Date+Time": "2012-09-18T00:00:00Z", + "Hs (total) (m)": 2.4262, + "Tp (total) (s)": 11.916 + }, + { + "Date+Time": "2012-09-19T00:00:00Z", + "Hs (total) (m)": 1.5961, + "Tp (total) (s)": 11.3872 + }, + { + "Date+Time": "2012-09-20T00:00:00Z", + "Hs (total) (m)": 1.2749, + "Tp (total) (s)": 9.4691 + }, + { + "Date+Time": "2012-09-21T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 8.7008 + }, + { + "Date+Time": "2012-09-22T00:00:00Z", + "Hs (total) (m)": 0.9857, + "Tp (total) (s)": 8.5505 + }, + { + "Date+Time": "2012-09-23T00:00:00Z", + "Hs (total) (m)": 1.2932, + "Tp (total) (s)": 13.7143 + }, + { + "Date+Time": "2012-09-24T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 13.5655 + }, + { + "Date+Time": "2012-09-25T00:00:00Z", + "Hs (total) (m)": 1.2223, + "Tp (total) (s)": 10.7784 + }, + { + "Date+Time": "2012-09-26T00:00:00Z", + "Hs (total) (m)": 1.2818, + "Tp (total) (s)": 10.0513 + }, + { + "Date+Time": "2012-09-27T00:00:00Z", + "Hs (total) (m)": 1.2986, + "Tp (total) (s)": 10.3557 + }, + { + "Date+Time": "2012-09-28T00:00:00Z", + "Hs (total) (m)": 1.2871, + "Tp (total) (s)": 6.9262 + }, + { + "Date+Time": "2012-09-29T00:00:00Z", + "Hs (total) (m)": 2.0409, + "Tp (total) (s)": 11.5848 + }, + { + "Date+Time": "2012-09-30T00:00:00Z", + "Hs (total) (m)": 2.8237, + "Tp (total) (s)": 7.4053 + }, + { + "Date+Time": "2012-10-01T00:00:00Z", + "Hs (total) (m)": 2.71, + "Tp (total) (s)": 11.9999 + }, + { + "Date+Time": "2012-10-02T00:00:00Z", + "Hs (total) (m)": 2.9351, + "Tp (total) (s)": 11.8534 + }, + { + "Date+Time": "2012-10-03T00:00:00Z", + "Hs (total) (m)": 2.6765, + "Tp (total) (s)": 10.2741 + }, + { + "Date+Time": "2012-10-04T00:00:00Z", + "Hs (total) (m)": 1.8006, + "Tp (total) (s)": 10.2359 + }, + { + "Date+Time": "2012-10-05T00:00:00Z", + "Hs (total) (m)": 1.7983, + "Tp (total) (s)": 8.2034 + }, + { + "Date+Time": "2012-10-06T00:00:00Z", + "Hs (total) (m)": 1.0979, + "Tp (total) (s)": 8.5238 + }, + { + "Date+Time": "2012-10-07T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 9.8949 + }, + { + "Date+Time": "2012-10-08T00:00:00Z", + "Hs (total) (m)": 0.8148, + "Tp (total) (s)": 10.2351 + }, + { + "Date+Time": "2012-10-09T00:00:00Z", + "Hs (total) (m)": 0.7248, + "Tp (total) (s)": 3.0496 + }, + { + "Date+Time": "2012-10-10T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 10.7624 + }, + { + "Date+Time": "2012-10-11T00:00:00Z", + "Hs (total) (m)": 1.516, + "Tp (total) (s)": 10.2115 + }, + { + "Date+Time": "2012-10-12T00:00:00Z", + "Hs (total) (m)": 1.6701, + "Tp (total) (s)": 11.4643 + }, + { + "Date+Time": "2012-10-13T00:00:00Z", + "Hs (total) (m)": 1.9974, + "Tp (total) (s)": 13.1504 + }, + { + "Date+Time": "2012-10-14T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 11.5383 + }, + { + "Date+Time": "2012-10-15T00:00:00Z", + "Hs (total) (m)": 1.8273, + "Tp (total) (s)": 12.3814 + }, + { + "Date+Time": "2012-10-16T00:00:00Z", + "Hs (total) (m)": 3.2266, + "Tp (total) (s)": 10.1505 + }, + { + "Date+Time": "2012-10-17T00:00:00Z", + "Hs (total) (m)": 1.7617, + "Tp (total) (s)": 13.6029 + }, + { + "Date+Time": "2012-10-18T00:00:00Z", + "Hs (total) (m)": 1.4969, + "Tp (total) (s)": 13.7944 + }, + { + "Date+Time": "2012-10-19T00:00:00Z", + "Hs (total) (m)": 1.2116, + "Tp (total) (s)": 10.3305 + }, + { + "Date+Time": "2012-10-20T00:00:00Z", + "Hs (total) (m)": 0.8286, + "Tp (total) (s)": 9.9399 + }, + { + "Date+Time": "2012-10-21T00:00:00Z", + "Hs (total) (m)": 2.559, + "Tp (total) (s)": 16.3373 + }, + { + "Date+Time": "2012-10-22T00:00:00Z", + "Hs (total) (m)": 2.5201, + "Tp (total) (s)": 14.5634 + }, + { + "Date+Time": "2012-10-23T00:00:00Z", + "Hs (total) (m)": 1.4885, + "Tp (total) (s)": 11.903 + }, + { + "Date+Time": "2012-10-24T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 10.3397 + }, + { + "Date+Time": "2012-10-25T00:00:00Z", + "Hs (total) (m)": 0.6394, + "Tp (total) (s)": 2.5246 + }, + { + "Date+Time": "2012-10-26T00:00:00Z", + "Hs (total) (m)": 0.6165, + "Tp (total) (s)": 2.8245 + }, + { + "Date+Time": "2012-10-27T00:00:00Z", + "Hs (total) (m)": 0.589, + "Tp (total) (s)": 2.9443 + }, + { + "Date+Time": "2012-10-28T00:00:00Z", + "Hs (total) (m)": 0.9224, + "Tp (total) (s)": 12.6324 + }, + { + "Date+Time": "2012-10-29T00:00:00Z", + "Hs (total) (m)": 1.7991, + "Tp (total) (s)": 9.5126 + }, + { + "Date+Time": "2012-10-30T00:00:00Z", + "Hs (total) (m)": 0.9621, + "Tp (total) (s)": 10.5251 + }, + { + "Date+Time": "2012-10-31T00:00:00Z", + "Hs (total) (m)": 2.559, + "Tp (total) (s)": 7.6754 + }, + { + "Date+Time": "2012-11-01T00:00:00Z", + "Hs (total) (m)": 1.4954, + "Tp (total) (s)": 10.5586 + }, + { + "Date+Time": "2012-11-02T00:00:00Z", + "Hs (total) (m)": 1.9425, + "Tp (total) (s)": 11.4345 + }, + { + "Date+Time": "2012-11-03T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 13.6357 + }, + { + "Date+Time": "2012-11-04T00:00:00Z", + "Hs (total) (m)": 3.2472, + "Tp (total) (s)": 11.6062 + }, + { + "Date+Time": "2012-11-05T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 12.1899 + }, + { + "Date+Time": "2012-11-06T00:00:00Z", + "Hs (total) (m)": 1.1261, + "Tp (total) (s)": 11.5871 + }, + { + "Date+Time": "2012-11-07T00:00:00Z", + "Hs (total) (m)": 1.5229, + "Tp (total) (s)": 8.7504 + }, + { + "Date+Time": "2012-11-08T00:00:00Z", + "Hs (total) (m)": 1.9845, + "Tp (total) (s)": 10.4694 + }, + { + "Date+Time": "2012-11-09T00:00:00Z", + "Hs (total) (m)": 2.7421, + "Tp (total) (s)": 10.416 + }, + { + "Date+Time": "2012-11-10T00:00:00Z", + "Hs (total) (m)": 2.8779, + "Tp (total) (s)": 13.9859 + }, + { + "Date+Time": "2012-11-11T00:00:00Z", + "Hs (total) (m)": 2.8726, + "Tp (total) (s)": 13.918 + }, + { + "Date+Time": "2012-11-12T00:00:00Z", + "Hs (total) (m)": 2.1493, + "Tp (total) (s)": 11.9297 + }, + { + "Date+Time": "2012-11-13T00:00:00Z", + "Hs (total) (m)": 2.102, + "Tp (total) (s)": 10.3061 + }, + { + "Date+Time": "2012-11-14T00:00:00Z", + "Hs (total) (m)": 2.7589, + "Tp (total) (s)": 14.0934 + }, + { + "Date+Time": "2012-11-15T00:00:00Z", + "Hs (total) (m)": 2.3339, + "Tp (total) (s)": 14.0843 + }, + { + "Date+Time": "2012-11-16T00:00:00Z", + "Hs (total) (m)": 1.529, + "Tp (total) (s)": 11.8145 + }, + { + "Date+Time": "2012-11-17T00:00:00Z", + "Hs (total) (m)": 1.5641, + "Tp (total) (s)": 12.8605 + }, + { + "Date+Time": "2012-11-18T00:00:00Z", + "Hs (total) (m)": 2.4247, + "Tp (total) (s)": 13.9607 + }, + { + "Date+Time": "2012-11-19T00:00:00Z", + "Hs (total) (m)": 3.7408, + "Tp (total) (s)": 9.4829 + }, + { + "Date+Time": "2012-11-20T00:00:00Z", + "Hs (total) (m)": 2.4148, + "Tp (total) (s)": 11.1843 + }, + { + "Date+Time": "2012-11-21T00:00:00Z", + "Hs (total) (m)": 2.6833, + "Tp (total) (s)": 10.5098 + }, + { + "Date+Time": "2012-11-22T00:00:00Z", + "Hs (total) (m)": 3.9201, + "Tp (total) (s)": 10.7219 + }, + { + "Date+Time": "2012-11-23T00:00:00Z", + "Hs (total) (m)": 3.1518, + "Tp (total) (s)": 11.6199 + }, + { + "Date+Time": "2012-11-24T00:00:00Z", + "Hs (total) (m)": 2.1638, + "Tp (total) (s)": 10.6853 + }, + { + "Date+Time": "2012-11-25T00:00:00Z", + "Hs (total) (m)": 1.6549, + "Tp (total) (s)": 11.2659 + }, + { + "Date+Time": "2012-11-26T00:00:00Z", + "Hs (total) (m)": 1.3779, + "Tp (total) (s)": 10.3565 + }, + { + "Date+Time": "2012-11-27T00:00:00Z", + "Hs (total) (m)": 1.5709, + "Tp (total) (s)": 8.7573 + }, + { + "Date+Time": "2012-11-28T00:00:00Z", + "Hs (total) (m)": 1.0544, + "Tp (total) (s)": 8.6169 + }, + { + "Date+Time": "2012-11-29T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 12.3699 + }, + { + "Date+Time": "2012-11-30T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 8.4719 + }, + { + "Date+Time": "2012-12-01T00:00:00Z", + "Hs (total) (m)": 1.7502, + "Tp (total) (s)": 11.3048 + }, + { + "Date+Time": "2012-12-02T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 10.699 + }, + { + "Date+Time": "2012-12-03T00:00:00Z", + "Hs (total) (m)": 2.7161, + "Tp (total) (s)": 15.6735 + }, + { + "Date+Time": "2012-12-04T00:00:00Z", + "Hs (total) (m)": 3.0862, + "Tp (total) (s)": 13.6914 + }, + { + "Date+Time": "2012-12-05T00:00:00Z", + "Hs (total) (m)": 2.7161, + "Tp (total) (s)": 12.8567 + }, + { + "Date+Time": "2012-12-06T00:00:00Z", + "Hs (total) (m)": 1.4863, + "Tp (total) (s)": 11.5474 + }, + { + "Date+Time": "2012-12-07T00:00:00Z", + "Hs (total) (m)": 2.6757, + "Tp (total) (s)": 10.4953 + }, + { + "Date+Time": "2012-12-08T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 10.8974 + }, + { + "Date+Time": "2012-12-09T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 9.3944 + }, + { + "Date+Time": "2012-12-10T00:00:00Z", + "Hs (total) (m)": 1.1277, + "Tp (total) (s)": 11.4505 + }, + { + "Date+Time": "2012-12-11T00:00:00Z", + "Hs (total) (m)": 1.796, + "Tp (total) (s)": 11.285 + }, + { + "Date+Time": "2012-12-12T00:00:00Z", + "Hs (total) (m)": 2.1233, + "Tp (total) (s)": 11.4055 + }, + { + "Date+Time": "2012-12-13T00:00:00Z", + "Hs (total) (m)": 2.3515, + "Tp (total) (s)": 16.3266 + }, + { + "Date+Time": "2012-12-14T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 13.1558 + }, + { + "Date+Time": "2012-12-15T00:00:00Z", + "Hs (total) (m)": 2.6444, + "Tp (total) (s)": 13.8577 + }, + { + "Date+Time": "2012-12-16T00:00:00Z", + "Hs (total) (m)": 3.8079, + "Tp (total) (s)": 15.0708 + }, + { + "Date+Time": "2012-12-17T00:00:00Z", + "Hs (total) (m)": 3.8285, + "Tp (total) (s)": 13.7806 + }, + { + "Date+Time": "2012-12-18T00:00:00Z", + "Hs (total) (m)": 2.5445, + "Tp (total) (s)": 11.8007 + }, + { + "Date+Time": "2012-12-19T00:00:00Z", + "Hs (total) (m)": 1.5114, + "Tp (total) (s)": 5.739 + }, + { + "Date+Time": "2012-12-20T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 11.0591 + }, + { + "Date+Time": "2012-12-21T00:00:00Z", + "Hs (total) (m)": 2.0631, + "Tp (total) (s)": 12.3486 + }, + { + "Date+Time": "2012-12-22T00:00:00Z", + "Hs (total) (m)": 2.2637, + "Tp (total) (s)": 10.6571 + }, + { + "Date+Time": "2012-12-23T00:00:00Z", + "Hs (total) (m)": 4.5518, + "Tp (total) (s)": 11.2568 + }, + { + "Date+Time": "2012-12-24T00:00:00Z", + "Hs (total) (m)": 2.6093, + "Tp (total) (s)": 11.607 + }, + { + "Date+Time": "2012-12-25T00:00:00Z", + "Hs (total) (m)": 2.1928, + "Tp (total) (s)": 10.786 + }, + { + "Date+Time": "2012-12-26T00:00:00Z", + "Hs (total) (m)": 2.3782, + "Tp (total) (s)": 9.1372 + }, + { + "Date+Time": "2012-12-27T00:00:00Z", + "Hs (total) (m)": 3.2037, + "Tp (total) (s)": 11.1217 + }, + { + "Date+Time": "2012-12-28T00:00:00Z", + "Hs (total) (m)": 3.1373, + "Tp (total) (s)": 12.4699 + }, + { + "Date+Time": "2012-12-29T00:00:00Z", + "Hs (total) (m)": 6.0012, + "Tp (total) (s)": 13.1748 + }, + { + "Date+Time": "2012-12-30T00:00:00Z", + "Hs (total) (m)": 4.5236, + "Tp (total) (s)": 12.418 + }, + { + "Date+Time": "2012-12-31T00:00:00Z", + "Hs (total) (m)": 5.2704, + "Tp (total) (s)": 13.5634 + }, + { + "Date+Time": "2013-01-01T00:00:00Z", + "Hs (total) (m)": 2.9084, + "Tp (total) (s)": 11.0607 + }, + { + "Date+Time": "2013-01-02T00:00:00Z", + "Hs (total) (m)": 2.0486, + "Tp (total) (s)": 11.3506 + }, + { + "Date+Time": "2013-01-03T00:00:00Z", + "Hs (total) (m)": 2.5231, + "Tp (total) (s)": 11.2766 + }, + { + "Date+Time": "2013-01-04T00:00:00Z", + "Hs (total) (m)": 2.5872, + "Tp (total) (s)": 12.3989 + }, + { + "Date+Time": "2013-01-05T00:00:00Z", + "Hs (total) (m)": 2.9031, + "Tp (total) (s)": 13.5525 + }, + { + "Date+Time": "2013-01-06T00:00:00Z", + "Hs (total) (m)": 2.7924, + "Tp (total) (s)": 12.9826 + }, + { + "Date+Time": "2013-01-07T00:00:00Z", + "Hs (total) (m)": 2.4186, + "Tp (total) (s)": 11.7557 + }, + { + "Date+Time": "2013-01-08T00:00:00Z", + "Hs (total) (m)": 2.5552, + "Tp (total) (s)": 10.6426 + }, + { + "Date+Time": "2013-01-09T00:00:00Z", + "Hs (total) (m)": 2.2828, + "Tp (total) (s)": 14.0286 + }, + { + "Date+Time": "2013-01-10T00:00:00Z", + "Hs (total) (m)": 2.6147, + "Tp (total) (s)": 14.0629 + }, + { + "Date+Time": "2013-01-11T00:00:00Z", + "Hs (total) (m)": 2.9962, + "Tp (total) (s)": 14.6603 + }, + { + "Date+Time": "2013-01-12T00:00:00Z", + "Hs (total) (m)": 2.5468, + "Tp (total) (s)": 11.9373 + }, + { + "Date+Time": "2013-01-13T00:00:00Z", + "Hs (total) (m)": 1.5992, + "Tp (total) (s)": 11.5238 + }, + { + "Date+Time": "2013-01-14T00:00:00Z", + "Hs (total) (m)": 1.5061, + "Tp (total) (s)": 8.5528 + }, + { + "Date+Time": "2013-01-15T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 9.6629 + }, + { + "Date+Time": "2013-01-16T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 9.6881 + }, + { + "Date+Time": "2013-01-17T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 9.534 + }, + { + "Date+Time": "2013-01-18T00:00:00Z", + "Hs (total) (m)": 1.6076, + "Tp (total) (s)": 5.8557 + }, + { + "Date+Time": "2013-01-19T00:00:00Z", + "Hs (total) (m)": 2.224, + "Tp (total) (s)": 12.8887 + }, + { + "Date+Time": "2013-01-20T00:00:00Z", + "Hs (total) (m)": 1.6503, + "Tp (total) (s)": 11.7229 + }, + { + "Date+Time": "2013-01-21T00:00:00Z", + "Hs (total) (m)": 3.2907, + "Tp (total) (s)": 17.1056 + }, + { + "Date+Time": "2013-01-22T00:00:00Z", + "Hs (total) (m)": 3.045, + "Tp (total) (s)": 15.405 + }, + { + "Date+Time": "2013-01-23T00:00:00Z", + "Hs (total) (m)": 2.8993, + "Tp (total) (s)": 15.569 + }, + { + "Date+Time": "2013-01-24T00:00:00Z", + "Hs (total) (m)": 2.176, + "Tp (total) (s)": 11.4673 + }, + { + "Date+Time": "2013-01-25T00:00:00Z", + "Hs (total) (m)": 2.2065, + "Tp (total) (s)": 13.4526 + }, + { + "Date+Time": "2013-01-26T00:00:00Z", + "Hs (total) (m)": 3.0175, + "Tp (total) (s)": 15.3577 + }, + { + "Date+Time": "2013-01-27T00:00:00Z", + "Hs (total) (m)": 3.238, + "Tp (total) (s)": 11.3369 + }, + { + "Date+Time": "2013-01-28T00:00:00Z", + "Hs (total) (m)": 5.7347, + "Tp (total) (s)": 16.0625 + }, + { + "Date+Time": "2013-01-29T00:00:00Z", + "Hs (total) (m)": 5.7835, + "Tp (total) (s)": 15.1776 + }, + { + "Date+Time": "2013-01-30T00:00:00Z", + "Hs (total) (m)": 4.1589, + "Tp (total) (s)": 13.6296 + }, + { + "Date+Time": "2013-01-31T00:00:00Z", + "Hs (total) (m)": 4.6281, + "Tp (total) (s)": 12.1723 + }, + { + "Date+Time": "2013-02-01T00:00:00Z", + "Hs (total) (m)": 3.8041, + "Tp (total) (s)": 12.2578 + }, + { + "Date+Time": "2013-02-02T00:00:00Z", + "Hs (total) (m)": 1.9539, + "Tp (total) (s)": 11.3941 + }, + { + "Date+Time": "2013-02-03T00:00:00Z", + "Hs (total) (m)": 2.1561, + "Tp (total) (s)": 10.1276 + }, + { + "Date+Time": "2013-02-04T00:00:00Z", + "Hs (total) (m)": 3.1182, + "Tp (total) (s)": 10.9424 + }, + { + "Date+Time": "2013-02-05T00:00:00Z", + "Hs (total) (m)": 5.4736, + "Tp (total) (s)": 15.6498 + }, + { + "Date+Time": "2013-02-06T00:00:00Z", + "Hs (total) (m)": 3.6256, + "Tp (total) (s)": 15.3638 + }, + { + "Date+Time": "2013-02-07T00:00:00Z", + "Hs (total) (m)": 1.487, + "Tp (total) (s)": 12.5195 + }, + { + "Date+Time": "2013-02-08T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 9.2425 + }, + { + "Date+Time": "2013-02-09T00:00:00Z", + "Hs (total) (m)": 1.7251, + "Tp (total) (s)": 13.6876 + }, + { + "Date+Time": "2013-02-10T00:00:00Z", + "Hs (total) (m)": 1.9478, + "Tp (total) (s)": 11.3483 + }, + { + "Date+Time": "2013-02-11T00:00:00Z", + "Hs (total) (m)": 3.2563, + "Tp (total) (s)": 13.3625 + }, + { + "Date+Time": "2013-02-12T00:00:00Z", + "Hs (total) (m)": 2.327, + "Tp (total) (s)": 13.0703 + }, + { + "Date+Time": "2013-02-13T00:00:00Z", + "Hs (total) (m)": 1.8365, + "Tp (total) (s)": 11.7946 + }, + { + "Date+Time": "2013-02-14T00:00:00Z", + "Hs (total) (m)": 2.6772, + "Tp (total) (s)": 10.5564 + }, + { + "Date+Time": "2013-02-15T00:00:00Z", + "Hs (total) (m)": 1.9776, + "Tp (total) (s)": 11.0828 + }, + { + "Date+Time": "2013-02-16T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 9.5386 + }, + { + "Date+Time": "2013-02-17T00:00:00Z", + "Hs (total) (m)": 2.0516, + "Tp (total) (s)": 9.3204 + }, + { + "Date+Time": "2013-02-18T00:00:00Z", + "Hs (total) (m)": 2.5758, + "Tp (total) (s)": 11.6207 + }, + { + "Date+Time": "2013-02-19T00:00:00Z", + "Hs (total) (m)": 2.6238, + "Tp (total) (s)": 13.1329 + }, + { + "Date+Time": "2013-02-20T00:00:00Z", + "Hs (total) (m)": 1.8891, + "Tp (total) (s)": 12.7514 + }, + { + "Date+Time": "2013-02-21T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 10.6861 + }, + { + "Date+Time": "2013-02-22T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 6.3829 + }, + { + "Date+Time": "2013-02-23T00:00:00Z", + "Hs (total) (m)": 2.472, + "Tp (total) (s)": 15.904 + }, + { + "Date+Time": "2013-02-24T00:00:00Z", + "Hs (total) (m)": 1.4824, + "Tp (total) (s)": 13.3518 + }, + { + "Date+Time": "2013-02-25T00:00:00Z", + "Hs (total) (m)": 1.371, + "Tp (total) (s)": 11.2865 + }, + { + "Date+Time": "2013-02-26T00:00:00Z", + "Hs (total) (m)": 1.4321, + "Tp (total) (s)": 11.4368 + }, + { + "Date+Time": "2013-02-27T00:00:00Z", + "Hs (total) (m)": 1.8921, + "Tp (total) (s)": 13.7425 + }, + { + "Date+Time": "2013-02-28T00:00:00Z", + "Hs (total) (m)": 1.3672, + "Tp (total) (s)": 11.5047 + }, + { + "Date+Time": "2013-03-01T00:00:00Z", + "Hs (total) (m)": 1.0849, + "Tp (total) (s)": 10.8074 + }, + { + "Date+Time": "2013-03-02T00:00:00Z", + "Hs (total) (m)": 0.9774, + "Tp (total) (s)": 12.2204 + }, + { + "Date+Time": "2013-03-03T00:00:00Z", + "Hs (total) (m)": 0.6348, + "Tp (total) (s)": 11.6825 + }, + { + "Date+Time": "2013-03-04T00:00:00Z", + "Hs (total) (m)": 0.7164, + "Tp (total) (s)": 10.4389 + }, + { + "Date+Time": "2013-03-05T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 9.6515 + }, + { + "Date+Time": "2013-03-06T00:00:00Z", + "Hs (total) (m)": 0.8225, + "Tp (total) (s)": 14.2636 + }, + { + "Date+Time": "2013-03-07T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 12.7651 + }, + { + "Date+Time": "2013-03-08T00:00:00Z", + "Hs (total) (m)": 1.1162, + "Tp (total) (s)": 12.3974 + }, + { + "Date+Time": "2013-03-09T00:00:00Z", + "Hs (total) (m)": 1.719, + "Tp (total) (s)": 10.2786 + }, + { + "Date+Time": "2013-03-10T00:00:00Z", + "Hs (total) (m)": 2.1882, + "Tp (total) (s)": 12.9643 + }, + { + "Date+Time": "2013-03-11T00:00:00Z", + "Hs (total) (m)": 1.4489, + "Tp (total) (s)": 12.7308 + }, + { + "Date+Time": "2013-03-12T00:00:00Z", + "Hs (total) (m)": 0.9499, + "Tp (total) (s)": 5.2904 + }, + { + "Date+Time": "2013-03-13T00:00:00Z", + "Hs (total) (m)": 0.6485, + "Tp (total) (s)": 5.7466 + }, + { + "Date+Time": "2013-03-14T00:00:00Z", + "Hs (total) (m)": 0.7477, + "Tp (total) (s)": 7.683 + }, + { + "Date+Time": "2013-03-15T00:00:00Z", + "Hs (total) (m)": 2.4125, + "Tp (total) (s)": 7.812 + }, + { + "Date+Time": "2013-03-16T00:00:00Z", + "Hs (total) (m)": 1.7464, + "Tp (total) (s)": 10.374 + }, + { + "Date+Time": "2013-03-17T00:00:00Z", + "Hs (total) (m)": 1.2574, + "Tp (total) (s)": 11.6008 + }, + { + "Date+Time": "2013-03-18T00:00:00Z", + "Hs (total) (m)": 1.4885, + "Tp (total) (s)": 12.1242 + }, + { + "Date+Time": "2013-03-19T00:00:00Z", + "Hs (total) (m)": 0.8278, + "Tp (total) (s)": 12.2356 + }, + { + "Date+Time": "2013-03-20T00:00:00Z", + "Hs (total) (m)": 0.7241, + "Tp (total) (s)": 11.7267 + }, + { + "Date+Time": "2013-03-21T00:00:00Z", + "Hs (total) (m)": 0.6363, + "Tp (total) (s)": 11.2239 + }, + { + "Date+Time": "2013-03-22T00:00:00Z", + "Hs (total) (m)": 1.2665, + "Tp (total) (s)": 3.9247 + }, + { + "Date+Time": "2013-03-23T00:00:00Z", + "Hs (total) (m)": 2.311, + "Tp (total) (s)": 11.6932 + }, + { + "Date+Time": "2013-03-24T00:00:00Z", + "Hs (total) (m)": 1.7479, + "Tp (total) (s)": 12.4981 + }, + { + "Date+Time": "2013-03-25T00:00:00Z", + "Hs (total) (m)": 1.429, + "Tp (total) (s)": 12.0548 + }, + { + "Date+Time": "2013-03-26T00:00:00Z", + "Hs (total) (m)": 1.0193, + "Tp (total) (s)": 4.8349 + }, + { + "Date+Time": "2013-03-27T00:00:00Z", + "Hs (total) (m)": 0.7347, + "Tp (total) (s)": 4.4015 + }, + { + "Date+Time": "2013-03-28T00:00:00Z", + "Hs (total) (m)": 0.5692, + "Tp (total) (s)": 2.7367 + }, + { + "Date+Time": "2013-03-29T00:00:00Z", + "Hs (total) (m)": 1.0163, + "Tp (total) (s)": 3.5989 + }, + { + "Date+Time": "2013-03-30T00:00:00Z", + "Hs (total) (m)": 3.1945, + "Tp (total) (s)": 16.187 + }, + { + "Date+Time": "2013-03-31T00:00:00Z", + "Hs (total) (m)": 2.7642, + "Tp (total) (s)": 14.3849 + }, + { + "Date+Time": "2013-04-01T00:00:00Z", + "Hs (total) (m)": 2.6948, + "Tp (total) (s)": 13.6616 + }, + { + "Date+Time": "2013-04-02T00:00:00Z", + "Hs (total) (m)": 1.7388, + "Tp (total) (s)": 6.431 + }, + { + "Date+Time": "2013-04-03T00:00:00Z", + "Hs (total) (m)": 2.2065, + "Tp (total) (s)": 12.6408 + }, + { + "Date+Time": "2013-04-04T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 11.5772 + }, + { + "Date+Time": "2013-04-05T00:00:00Z", + "Hs (total) (m)": 0.7675, + "Tp (total) (s)": 10.1672 + }, + { + "Date+Time": "2013-04-06T00:00:00Z", + "Hs (total) (m)": 0.6012, + "Tp (total) (s)": 9.1037 + }, + { + "Date+Time": "2013-04-07T00:00:00Z", + "Hs (total) (m)": 1.3947, + "Tp (total) (s)": 7.3908 + }, + { + "Date+Time": "2013-04-08T00:00:00Z", + "Hs (total) (m)": 1.2558, + "Tp (total) (s)": 9.3928 + }, + { + "Date+Time": "2013-04-09T00:00:00Z", + "Hs (total) (m)": 1.2505, + "Tp (total) (s)": 4.9333 + }, + { + "Date+Time": "2013-04-10T00:00:00Z", + "Hs (total) (m)": 2.4438, + "Tp (total) (s)": 15.2234 + }, + { + "Date+Time": "2013-04-11T00:00:00Z", + "Hs (total) (m)": 1.7365, + "Tp (total) (s)": 13.1184 + }, + { + "Date+Time": "2013-04-12T00:00:00Z", + "Hs (total) (m)": 1.3527, + "Tp (total) (s)": 10.0368 + }, + { + "Date+Time": "2013-04-13T00:00:00Z", + "Hs (total) (m)": 0.8339, + "Tp (total) (s)": 10.3267 + }, + { + "Date+Time": "2013-04-14T00:00:00Z", + "Hs (total) (m)": 2.44, + "Tp (total) (s)": 9.4638 + }, + { + "Date+Time": "2013-04-15T00:00:00Z", + "Hs (total) (m)": 5.0478, + "Tp (total) (s)": 13.924 + }, + { + "Date+Time": "2013-04-16T00:00:00Z", + "Hs (total) (m)": 5.8613, + "Tp (total) (s)": 11.159 + }, + { + "Date+Time": "2013-04-17T00:00:00Z", + "Hs (total) (m)": 2.3896, + "Tp (total) (s)": 10.815 + }, + { + "Date+Time": "2013-04-18T00:00:00Z", + "Hs (total) (m)": 3.9789, + "Tp (total) (s)": 11.4986 + }, + { + "Date+Time": "2013-04-19T00:00:00Z", + "Hs (total) (m)": 2.2385, + "Tp (total) (s)": 10.2886 + }, + { + "Date+Time": "2013-04-20T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 9.518 + }, + { + "Date+Time": "2013-04-21T00:00:00Z", + "Hs (total) (m)": 3.0175, + "Tp (total) (s)": 11.7382 + }, + { + "Date+Time": "2013-04-22T00:00:00Z", + "Hs (total) (m)": 2.504, + "Tp (total) (s)": 14.1781 + }, + { + "Date+Time": "2013-04-23T00:00:00Z", + "Hs (total) (m)": 2.2149, + "Tp (total) (s)": 11.6047 + }, + { + "Date+Time": "2013-04-24T00:00:00Z", + "Hs (total) (m)": 2.2713, + "Tp (total) (s)": 13.9691 + }, + { + "Date+Time": "2013-04-25T00:00:00Z", + "Hs (total) (m)": 1.5725, + "Tp (total) (s)": 13.213 + }, + { + "Date+Time": "2013-04-26T00:00:00Z", + "Hs (total) (m)": 1.632, + "Tp (total) (s)": 11.2407 + }, + { + "Date+Time": "2013-04-27T00:00:00Z", + "Hs (total) (m)": 1.471, + "Tp (total) (s)": 10.3748 + }, + { + "Date+Time": "2013-04-28T00:00:00Z", + "Hs (total) (m)": 1.3085, + "Tp (total) (s)": 9.6583 + }, + { + "Date+Time": "2013-04-29T00:00:00Z", + "Hs (total) (m)": 2.4537, + "Tp (total) (s)": 13.11 + }, + { + "Date+Time": "2013-04-30T00:00:00Z", + "Hs (total) (m)": 1.4893, + "Tp (total) (s)": 12.4287 + }, + { + "Date+Time": "2013-05-01T00:00:00Z", + "Hs (total) (m)": 1.1696, + "Tp (total) (s)": 10.2824 + }, + { + "Date+Time": "2013-05-02T00:00:00Z", + "Hs (total) (m)": 0.8965, + "Tp (total) (s)": 9.3081 + }, + { + "Date+Time": "2013-05-03T00:00:00Z", + "Hs (total) (m)": 1.7479, + "Tp (total) (s)": 7.7296 + }, + { + "Date+Time": "2013-05-04T00:00:00Z", + "Hs (total) (m)": 1.9448, + "Tp (total) (s)": 8.5681 + }, + { + "Date+Time": "2013-05-05T00:00:00Z", + "Hs (total) (m)": 2.3362, + "Tp (total) (s)": 10.5594 + }, + { + "Date+Time": "2013-05-06T00:00:00Z", + "Hs (total) (m)": 2.5475, + "Tp (total) (s)": 12.7438 + }, + { + "Date+Time": "2013-05-07T00:00:00Z", + "Hs (total) (m)": 1.4718, + "Tp (total) (s)": 12.672 + }, + { + "Date+Time": "2013-05-08T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 10.3313 + }, + { + "Date+Time": "2013-05-09T00:00:00Z", + "Hs (total) (m)": 4.6854, + "Tp (total) (s)": 11.1301 + }, + { + "Date+Time": "2013-05-10T00:00:00Z", + "Hs (total) (m)": 2.6826, + "Tp (total) (s)": 10.1405 + }, + { + "Date+Time": "2013-05-11T00:00:00Z", + "Hs (total) (m)": 2.2202, + "Tp (total) (s)": 10.7006 + }, + { + "Date+Time": "2013-05-12T00:00:00Z", + "Hs (total) (m)": 1.8769, + "Tp (total) (s)": 10.596 + }, + { + "Date+Time": "2013-05-13T00:00:00Z", + "Hs (total) (m)": 2.6948, + "Tp (total) (s)": 10.1764 + }, + { + "Date+Time": "2013-05-14T00:00:00Z", + "Hs (total) (m)": 2.7604, + "Tp (total) (s)": 13.1077 + }, + { + "Date+Time": "2013-05-15T00:00:00Z", + "Hs (total) (m)": 1.7487, + "Tp (total) (s)": 10.6021 + }, + { + "Date+Time": "2013-05-16T00:00:00Z", + "Hs (total) (m)": 1.1261, + "Tp (total) (s)": 10.8318 + }, + { + "Date+Time": "2013-05-17T00:00:00Z", + "Hs (total) (m)": 1.162, + "Tp (total) (s)": 9.637 + }, + { + "Date+Time": "2013-05-18T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 9.3951 + }, + { + "Date+Time": "2013-05-19T00:00:00Z", + "Hs (total) (m)": 0.9499, + "Tp (total) (s)": 8.33 + }, + { + "Date+Time": "2013-05-20T00:00:00Z", + "Hs (total) (m)": 0.6523, + "Tp (total) (s)": 8.4178 + }, + { + "Date+Time": "2013-05-21T00:00:00Z", + "Hs (total) (m)": 1.1589, + "Tp (total) (s)": 13.6387 + }, + { + "Date+Time": "2013-05-22T00:00:00Z", + "Hs (total) (m)": 1.2429, + "Tp (total) (s)": 11.4368 + }, + { + "Date+Time": "2013-05-23T00:00:00Z", + "Hs (total) (m)": 1.1826, + "Tp (total) (s)": 9.5859 + }, + { + "Date+Time": "2013-05-24T00:00:00Z", + "Hs (total) (m)": 1.0277, + "Tp (total) (s)": 8.1957 + }, + { + "Date+Time": "2013-05-25T00:00:00Z", + "Hs (total) (m)": 0.676, + "Tp (total) (s)": 10.7982 + }, + { + "Date+Time": "2013-05-26T00:00:00Z", + "Hs (total) (m)": 1.0369, + "Tp (total) (s)": 9.1578 + }, + { + "Date+Time": "2013-05-27T00:00:00Z", + "Hs (total) (m)": 2.4834, + "Tp (total) (s)": 7.0383 + }, + { + "Date+Time": "2013-05-28T00:00:00Z", + "Hs (total) (m)": 2.9809, + "Tp (total) (s)": 13.6837 + }, + { + "Date+Time": "2013-05-29T00:00:00Z", + "Hs (total) (m)": 2.0066, + "Tp (total) (s)": 12.2288 + }, + { + "Date+Time": "2013-05-30T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 9.3623 + }, + { + "Date+Time": "2013-05-31T00:00:00Z", + "Hs (total) (m)": 0.7752, + "Tp (total) (s)": 7.8349 + }, + { + "Date+Time": "2013-06-01T00:00:00Z", + "Hs (total) (m)": 1.2833, + "Tp (total) (s)": 10.921 + }, + { + "Date+Time": "2013-06-02T00:00:00Z", + "Hs (total) (m)": 1.2673, + "Tp (total) (s)": 10.226 + }, + { + "Date+Time": "2013-06-03T00:00:00Z", + "Hs (total) (m)": 0.911, + "Tp (total) (s)": 8.639 + }, + { + "Date+Time": "2013-06-04T00:00:00Z", + "Hs (total) (m)": 1.0086, + "Tp (total) (s)": 11.4422 + }, + { + "Date+Time": "2013-06-05T00:00:00Z", + "Hs (total) (m)": 1.6617, + "Tp (total) (s)": 13.0459 + }, + { + "Date+Time": "2013-06-06T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 10.699 + }, + { + "Date+Time": "2013-06-07T00:00:00Z", + "Hs (total) (m)": 0.8286, + "Tp (total) (s)": 9.3623 + }, + { + "Date+Time": "2013-06-08T00:00:00Z", + "Hs (total) (m)": 0.5966, + "Tp (total) (s)": 8.169 + }, + { + "Date+Time": "2013-06-09T00:00:00Z", + "Hs (total) (m)": 0.4913, + "Tp (total) (s)": 7.96 + }, + { + "Date+Time": "2013-06-10T00:00:00Z", + "Hs (total) (m)": 0.9163, + "Tp (total) (s)": 8.5124 + }, + { + "Date+Time": "2013-06-11T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 6.1602 + }, + { + "Date+Time": "2013-06-12T00:00:00Z", + "Hs (total) (m)": 1.1345, + "Tp (total) (s)": 9.3432 + }, + { + "Date+Time": "2013-06-13T00:00:00Z", + "Hs (total) (m)": 1.2284, + "Tp (total) (s)": 9.1693 + }, + { + "Date+Time": "2013-06-14T00:00:00Z", + "Hs (total) (m)": 1.4916, + "Tp (total) (s)": 9.4447 + }, + { + "Date+Time": "2013-06-15T00:00:00Z", + "Hs (total) (m)": 2.076, + "Tp (total) (s)": 8.5971 + }, + { + "Date+Time": "2013-06-16T00:00:00Z", + "Hs (total) (m)": 1.9547, + "Tp (total) (s)": 9.6248 + }, + { + "Date+Time": "2013-06-17T00:00:00Z", + "Hs (total) (m)": 0.6066, + "Tp (total) (s)": 8.6497 + }, + { + "Date+Time": "2013-06-18T00:00:00Z", + "Hs (total) (m)": 0.6752, + "Tp (total) (s)": 11.2606 + }, + { + "Date+Time": "2013-06-19T00:00:00Z", + "Hs (total) (m)": 1.0834, + "Tp (total) (s)": 9.7888 + }, + { + "Date+Time": "2013-06-20T00:00:00Z", + "Hs (total) (m)": 1.6076, + "Tp (total) (s)": 11.3178 + }, + { + "Date+Time": "2013-06-21T00:00:00Z", + "Hs (total) (m)": 1.4893, + "Tp (total) (s)": 10.8554 + }, + { + "Date+Time": "2013-06-22T00:00:00Z", + "Hs (total) (m)": 2.6383, + "Tp (total) (s)": 7.6685 + }, + { + "Date+Time": "2013-06-23T00:00:00Z", + "Hs (total) (m)": 3.2624, + "Tp (total) (s)": 12.6438 + }, + { + "Date+Time": "2013-06-24T00:00:00Z", + "Hs (total) (m)": 1.3131, + "Tp (total) (s)": 9.2547 + }, + { + "Date+Time": "2013-06-25T00:00:00Z", + "Hs (total) (m)": 0.8744, + "Tp (total) (s)": 8.2942 + }, + { + "Date+Time": "2013-06-26T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 8.4834 + }, + { + "Date+Time": "2013-06-27T00:00:00Z", + "Hs (total) (m)": 0.7775, + "Tp (total) (s)": 7.7937 + }, + { + "Date+Time": "2013-06-28T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 9.9788 + }, + { + "Date+Time": "2013-06-29T00:00:00Z", + "Hs (total) (m)": 1.5503, + "Tp (total) (s)": 10.493 + }, + { + "Date+Time": "2013-06-30T00:00:00Z", + "Hs (total) (m)": 2.044, + "Tp (total) (s)": 9.3677 + }, + { + "Date+Time": "2013-07-01T00:00:00Z", + "Hs (total) (m)": 2.3774, + "Tp (total) (s)": 11.2987 + }, + { + "Date+Time": "2013-07-02T00:00:00Z", + "Hs (total) (m)": 1.8052, + "Tp (total) (s)": 10.2939 + }, + { + "Date+Time": "2013-07-03T00:00:00Z", + "Hs (total) (m)": 2.0486, + "Tp (total) (s)": 8.1477 + }, + { + "Date+Time": "2013-07-04T00:00:00Z", + "Hs (total) (m)": 2.2095, + "Tp (total) (s)": 9.0007 + }, + { + "Date+Time": "2013-07-05T00:00:00Z", + "Hs (total) (m)": 2.195, + "Tp (total) (s)": 10.992 + }, + { + "Date+Time": "2013-07-06T00:00:00Z", + "Hs (total) (m)": 1.6953, + "Tp (total) (s)": 10.0803 + }, + { + "Date+Time": "2013-07-07T00:00:00Z", + "Hs (total) (m)": 1.5603, + "Tp (total) (s)": 11.2667 + }, + { + "Date+Time": "2013-07-08T00:00:00Z", + "Hs (total) (m)": 1.1116, + "Tp (total) (s)": 10.493 + }, + { + "Date+Time": "2013-07-09T00:00:00Z", + "Hs (total) (m)": 0.7126, + "Tp (total) (s)": 8.6894 + }, + { + "Date+Time": "2013-07-10T00:00:00Z", + "Hs (total) (m)": 0.589, + "Tp (total) (s)": 7.8501 + }, + { + "Date+Time": "2013-07-11T00:00:00Z", + "Hs (total) (m)": 0.4891, + "Tp (total) (s)": 7.1505 + }, + { + "Date+Time": "2013-07-12T00:00:00Z", + "Hs (total) (m)": 0.4685, + "Tp (total) (s)": 6.9155 + }, + { + "Date+Time": "2013-07-13T00:00:00Z", + "Hs (total) (m)": 0.4738, + "Tp (total) (s)": 6.5683 + }, + { + "Date+Time": "2013-07-14T00:00:00Z", + "Hs (total) (m)": 0.5722, + "Tp (total) (s)": 9.6675 + }, + { + "Date+Time": "2013-07-15T00:00:00Z", + "Hs (total) (m)": 0.6005, + "Tp (total) (s)": 7.9104 + }, + { + "Date+Time": "2013-07-16T00:00:00Z", + "Hs (total) (m)": 0.8797, + "Tp (total) (s)": 9.5698 + }, + { + "Date+Time": "2013-07-17T00:00:00Z", + "Hs (total) (m)": 0.8621, + "Tp (total) (s)": 7.4282 + }, + { + "Date+Time": "2013-07-18T00:00:00Z", + "Hs (total) (m)": 0.7355, + "Tp (total) (s)": 7.6937 + }, + { + "Date+Time": "2013-07-19T00:00:00Z", + "Hs (total) (m)": 0.6722, + "Tp (total) (s)": 6.9277 + }, + { + "Date+Time": "2013-07-20T00:00:00Z", + "Hs (total) (m)": 0.7019, + "Tp (total) (s)": 10.4709 + }, + { + "Date+Time": "2013-07-21T00:00:00Z", + "Hs (total) (m)": 0.7073, + "Tp (total) (s)": 9.5058 + }, + { + "Date+Time": "2013-07-22T00:00:00Z", + "Hs (total) (m)": 0.6638, + "Tp (total) (s)": 7.7601 + }, + { + "Date+Time": "2013-07-23T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 10.6555 + }, + { + "Date+Time": "2013-07-24T00:00:00Z", + "Hs (total) (m)": 1.3161, + "Tp (total) (s)": 8.9518 + }, + { + "Date+Time": "2013-07-25T00:00:00Z", + "Hs (total) (m)": 1.0681, + "Tp (total) (s)": 6.9597 + }, + { + "Date+Time": "2013-07-26T00:00:00Z", + "Hs (total) (m)": 0.9896, + "Tp (total) (s)": 9.434 + }, + { + "Date+Time": "2013-07-27T00:00:00Z", + "Hs (total) (m)": 1.0315, + "Tp (total) (s)": 9.4501 + }, + { + "Date+Time": "2013-07-28T00:00:00Z", + "Hs (total) (m)": 0.8148, + "Tp (total) (s)": 7.7136 + }, + { + "Date+Time": "2013-07-29T00:00:00Z", + "Hs (total) (m)": 0.7233, + "Tp (total) (s)": 6.4379 + }, + { + "Date+Time": "2013-07-30T00:00:00Z", + "Hs (total) (m)": 1.4428, + "Tp (total) (s)": 6.4882 + }, + { + "Date+Time": "2013-07-31T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 8.3697 + }, + { + "Date+Time": "2013-08-01T00:00:00Z", + "Hs (total) (m)": 1.7357, + "Tp (total) (s)": 7.4854 + }, + { + "Date+Time": "2013-08-02T00:00:00Z", + "Hs (total) (m)": 1.9326, + "Tp (total) (s)": 6.4295 + }, + { + "Date+Time": "2013-08-03T00:00:00Z", + "Hs (total) (m)": 1.9982, + "Tp (total) (s)": 8.5353 + }, + { + "Date+Time": "2013-08-04T00:00:00Z", + "Hs (total) (m)": 1.2436, + "Tp (total) (s)": 9.2265 + }, + { + "Date+Time": "2013-08-05T00:00:00Z", + "Hs (total) (m)": 0.8507, + "Tp (total) (s)": 8.3705 + }, + { + "Date+Time": "2013-08-06T00:00:00Z", + "Hs (total) (m)": 1.0208, + "Tp (total) (s)": 7.889 + }, + { + "Date+Time": "2013-08-07T00:00:00Z", + "Hs (total) (m)": 1.1696, + "Tp (total) (s)": 7.7059 + }, + { + "Date+Time": "2013-08-08T00:00:00Z", + "Hs (total) (m)": 0.6531, + "Tp (total) (s)": 7.8974 + }, + { + "Date+Time": "2013-08-09T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 6.7255 + }, + { + "Date+Time": "2013-08-10T00:00:00Z", + "Hs (total) (m)": 1.4527, + "Tp (total) (s)": 10.9142 + }, + { + "Date+Time": "2013-08-11T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 9.4722 + }, + { + "Date+Time": "2013-08-12T00:00:00Z", + "Hs (total) (m)": 1.5778, + "Tp (total) (s)": 8.6016 + }, + { + "Date+Time": "2013-08-13T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 8.3392 + }, + { + "Date+Time": "2013-08-14T00:00:00Z", + "Hs (total) (m)": 0.8713, + "Tp (total) (s)": 6.3265 + }, + { + "Date+Time": "2013-08-15T00:00:00Z", + "Hs (total) (m)": 1.1307, + "Tp (total) (s)": 5.8618 + }, + { + "Date+Time": "2013-08-16T00:00:00Z", + "Hs (total) (m)": 1.2162, + "Tp (total) (s)": 6.579 + }, + { + "Date+Time": "2013-08-17T00:00:00Z", + "Hs (total) (m)": 1.9036, + "Tp (total) (s)": 6.1716 + }, + { + "Date+Time": "2013-08-18T00:00:00Z", + "Hs (total) (m)": 2.2729, + "Tp (total) (s)": 10.1611 + }, + { + "Date+Time": "2013-08-19T00:00:00Z", + "Hs (total) (m)": 1.7518, + "Tp (total) (s)": 9.3768 + }, + { + "Date+Time": "2013-08-20T00:00:00Z", + "Hs (total) (m)": 1.7174, + "Tp (total) (s)": 10.329 + }, + { + "Date+Time": "2013-08-21T00:00:00Z", + "Hs (total) (m)": 2.8283, + "Tp (total) (s)": 9.2402 + }, + { + "Date+Time": "2013-08-22T00:00:00Z", + "Hs (total) (m)": 1.2658, + "Tp (total) (s)": 8.8084 + }, + { + "Date+Time": "2013-08-23T00:00:00Z", + "Hs (total) (m)": 1.3009, + "Tp (total) (s)": 6.4463 + }, + { + "Date+Time": "2013-08-24T00:00:00Z", + "Hs (total) (m)": 2.2095, + "Tp (total) (s)": 12.389 + }, + { + "Date+Time": "2013-08-25T00:00:00Z", + "Hs (total) (m)": 1.5671, + "Tp (total) (s)": 10.2023 + }, + { + "Date+Time": "2013-08-26T00:00:00Z", + "Hs (total) (m)": 1.1841, + "Tp (total) (s)": 9.518 + }, + { + "Date+Time": "2013-08-27T00:00:00Z", + "Hs (total) (m)": 0.9926, + "Tp (total) (s)": 9.2868 + }, + { + "Date+Time": "2013-08-28T00:00:00Z", + "Hs (total) (m)": 0.9911, + "Tp (total) (s)": 9.2822 + }, + { + "Date+Time": "2013-08-29T00:00:00Z", + "Hs (total) (m)": 1.4962, + "Tp (total) (s)": 10.1451 + }, + { + "Date+Time": "2013-08-30T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 9.6751 + }, + { + "Date+Time": "2013-08-31T00:00:00Z", + "Hs (total) (m)": 1.7838, + "Tp (total) (s)": 9.2929 + }, + { + "Date+Time": "2013-09-01T00:00:00Z", + "Hs (total) (m)": 1.7281, + "Tp (total) (s)": 12.3325 + }, + { + "Date+Time": "2013-09-02T00:00:00Z", + "Hs (total) (m)": 1.9936, + "Tp (total) (s)": 11.021 + }, + { + "Date+Time": "2013-09-03T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 10.7875 + }, + { + "Date+Time": "2013-09-04T00:00:00Z", + "Hs (total) (m)": 1.8654, + "Tp (total) (s)": 12.434 + }, + { + "Date+Time": "2013-09-05T00:00:00Z", + "Hs (total) (m)": 1.3848, + "Tp (total) (s)": 10.7967 + }, + { + "Date+Time": "2013-09-06T00:00:00Z", + "Hs (total) (m)": 1.1124, + "Tp (total) (s)": 9.8552 + }, + { + "Date+Time": "2013-09-07T00:00:00Z", + "Hs (total) (m)": 0.9331, + "Tp (total) (s)": 7.9112 + }, + { + "Date+Time": "2013-09-08T00:00:00Z", + "Hs (total) (m)": 1.1101, + "Tp (total) (s)": 7.2375 + }, + { + "Date+Time": "2013-09-09T00:00:00Z", + "Hs (total) (m)": 0.8599, + "Tp (total) (s)": 6.9864 + }, + { + "Date+Time": "2013-09-10T00:00:00Z", + "Hs (total) (m)": 0.9079, + "Tp (total) (s)": 7.123 + }, + { + "Date+Time": "2013-09-11T00:00:00Z", + "Hs (total) (m)": 0.8789, + "Tp (total) (s)": 8.0844 + }, + { + "Date+Time": "2013-09-12T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 7.6479 + }, + { + "Date+Time": "2013-09-13T00:00:00Z", + "Hs (total) (m)": 1.3207, + "Tp (total) (s)": 10.519 + }, + { + "Date+Time": "2013-09-14T00:00:00Z", + "Hs (total) (m)": 1.384, + "Tp (total) (s)": 12.3989 + }, + { + "Date+Time": "2013-09-15T00:00:00Z", + "Hs (total) (m)": 2.2301, + "Tp (total) (s)": 11.4154 + }, + { + "Date+Time": "2013-09-16T00:00:00Z", + "Hs (total) (m)": 3.5463, + "Tp (total) (s)": 12.1548 + }, + { + "Date+Time": "2013-09-17T00:00:00Z", + "Hs (total) (m)": 2.3644, + "Tp (total) (s)": 12.9917 + }, + { + "Date+Time": "2013-09-18T00:00:00Z", + "Hs (total) (m)": 2.0943, + "Tp (total) (s)": 10.4877 + }, + { + "Date+Time": "2013-09-19T00:00:00Z", + "Hs (total) (m)": 1.4718, + "Tp (total) (s)": 10.2733 + }, + { + "Date+Time": "2013-09-20T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 9.769 + }, + { + "Date+Time": "2013-09-21T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 9.357 + }, + { + "Date+Time": "2013-09-22T00:00:00Z", + "Hs (total) (m)": 2.1905, + "Tp (total) (s)": 12.3562 + }, + { + "Date+Time": "2013-09-23T00:00:00Z", + "Hs (total) (m)": 1.8693, + "Tp (total) (s)": 11.4231 + }, + { + "Date+Time": "2013-09-24T00:00:00Z", + "Hs (total) (m)": 1.7693, + "Tp (total) (s)": 11.61 + }, + { + "Date+Time": "2013-09-25T00:00:00Z", + "Hs (total) (m)": 1.2703, + "Tp (total) (s)": 9.8025 + }, + { + "Date+Time": "2013-09-26T00:00:00Z", + "Hs (total) (m)": 1.1444, + "Tp (total) (s)": 9.83 + }, + { + "Date+Time": "2013-09-27T00:00:00Z", + "Hs (total) (m)": 0.9644, + "Tp (total) (s)": 9.3303 + }, + { + "Date+Time": "2013-09-28T00:00:00Z", + "Hs (total) (m)": 1.0361, + "Tp (total) (s)": 10.493 + }, + { + "Date+Time": "2013-09-29T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 10.3244 + }, + { + "Date+Time": "2013-09-30T00:00:00Z", + "Hs (total) (m)": 0.882, + "Tp (total) (s)": 9.3822 + }, + { + "Date+Time": "2013-10-01T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 8.8305 + }, + { + "Date+Time": "2013-10-02T00:00:00Z", + "Hs (total) (m)": 1.6663, + "Tp (total) (s)": 10.6677 + }, + { + "Date+Time": "2013-10-03T00:00:00Z", + "Hs (total) (m)": 1.7136, + "Tp (total) (s)": 9.5698 + }, + { + "Date+Time": "2013-10-04T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 8.7901 + }, + { + "Date+Time": "2013-10-05T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 6.7843 + }, + { + "Date+Time": "2013-10-06T00:00:00Z", + "Hs (total) (m)": 1.9463, + "Tp (total) (s)": 7.297 + }, + { + "Date+Time": "2013-10-07T00:00:00Z", + "Hs (total) (m)": 2.0699, + "Tp (total) (s)": 10.4076 + }, + { + "Date+Time": "2013-10-08T00:00:00Z", + "Hs (total) (m)": 2.1767, + "Tp (total) (s)": 10.2344 + }, + { + "Date+Time": "2013-10-09T00:00:00Z", + "Hs (total) (m)": 1.3497, + "Tp (total) (s)": 10.8058 + }, + { + "Date+Time": "2013-10-10T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 9.5965 + }, + { + "Date+Time": "2013-10-11T00:00:00Z", + "Hs (total) (m)": 0.6577, + "Tp (total) (s)": 10.1268 + }, + { + "Date+Time": "2013-10-12T00:00:00Z", + "Hs (total) (m)": 0.4524, + "Tp (total) (s)": 2.5018 + }, + { + "Date+Time": "2013-10-13T00:00:00Z", + "Hs (total) (m)": 0.6256, + "Tp (total) (s)": 10.3282 + }, + { + "Date+Time": "2013-10-14T00:00:00Z", + "Hs (total) (m)": 0.9316, + "Tp (total) (s)": 10.0375 + }, + { + "Date+Time": "2013-10-15T00:00:00Z", + "Hs (total) (m)": 0.7164, + "Tp (total) (s)": 10.5464 + }, + { + "Date+Time": "2013-10-16T00:00:00Z", + "Hs (total) (m)": 2.0005, + "Tp (total) (s)": 11.2552 + }, + { + "Date+Time": "2013-10-17T00:00:00Z", + "Hs (total) (m)": 2.1958, + "Tp (total) (s)": 10.0383 + }, + { + "Date+Time": "2013-10-18T00:00:00Z", + "Hs (total) (m)": 2.1363, + "Tp (total) (s)": 11.2217 + }, + { + "Date+Time": "2013-10-19T00:00:00Z", + "Hs (total) (m)": 2.1241, + "Tp (total) (s)": 10.3206 + }, + { + "Date+Time": "2013-10-20T00:00:00Z", + "Hs (total) (m)": 1.5831, + "Tp (total) (s)": 9.328 + }, + { + "Date+Time": "2013-10-21T00:00:00Z", + "Hs (total) (m)": 1.3833, + "Tp (total) (s)": 9.4028 + }, + { + "Date+Time": "2013-10-22T00:00:00Z", + "Hs (total) (m)": 1.8609, + "Tp (total) (s)": 10.1566 + }, + { + "Date+Time": "2013-10-23T00:00:00Z", + "Hs (total) (m)": 2.179, + "Tp (total) (s)": 12.4325 + }, + { + "Date+Time": "2013-10-24T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 10.2847 + }, + { + "Date+Time": "2013-10-25T00:00:00Z", + "Hs (total) (m)": 0.7408, + "Tp (total) (s)": 2.9984 + }, + { + "Date+Time": "2013-10-26T00:00:00Z", + "Hs (total) (m)": 1.149, + "Tp (total) (s)": 9.6431 + }, + { + "Date+Time": "2013-10-27T00:00:00Z", + "Hs (total) (m)": 3.7172, + "Tp (total) (s)": 10.5152 + }, + { + "Date+Time": "2013-10-28T00:00:00Z", + "Hs (total) (m)": 4.152, + "Tp (total) (s)": 15.2501 + }, + { + "Date+Time": "2013-10-29T00:00:00Z", + "Hs (total) (m)": 2.9328, + "Tp (total) (s)": 11.507 + }, + { + "Date+Time": "2013-10-30T00:00:00Z", + "Hs (total) (m)": 1.9021, + "Tp (total) (s)": 11.1812 + }, + { + "Date+Time": "2013-10-31T00:00:00Z", + "Hs (total) (m)": 2.7429, + "Tp (total) (s)": 10.7532 + }, + { + "Date+Time": "2013-11-01T00:00:00Z", + "Hs (total) (m)": 4.1604, + "Tp (total) (s)": 15.6804 + }, + { + "Date+Time": "2013-11-02T00:00:00Z", + "Hs (total) (m)": 2.3057, + "Tp (total) (s)": 13.7242 + }, + { + "Date+Time": "2013-11-03T00:00:00Z", + "Hs (total) (m)": 3.09, + "Tp (total) (s)": 11.2064 + }, + { + "Date+Time": "2013-11-04T00:00:00Z", + "Hs (total) (m)": 1.5763, + "Tp (total) (s)": 10.4602 + }, + { + "Date+Time": "2013-11-05T00:00:00Z", + "Hs (total) (m)": 2.781, + "Tp (total) (s)": 12.1868 + }, + { + "Date+Time": "2013-11-06T00:00:00Z", + "Hs (total) (m)": 3.1289, + "Tp (total) (s)": 13.9851 + }, + { + "Date+Time": "2013-11-07T00:00:00Z", + "Hs (total) (m)": 3.0076, + "Tp (total) (s)": 14.0721 + }, + { + "Date+Time": "2013-11-08T00:00:00Z", + "Hs (total) (m)": 3.1999, + "Tp (total) (s)": 12.7087 + }, + { + "Date+Time": "2013-11-09T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 12.4775 + }, + { + "Date+Time": "2013-11-10T00:00:00Z", + "Hs (total) (m)": 2.0432, + "Tp (total) (s)": 12.0869 + }, + { + "Date+Time": "2013-11-11T00:00:00Z", + "Hs (total) (m)": 2.8153, + "Tp (total) (s)": 11.9098 + }, + { + "Date+Time": "2013-11-12T00:00:00Z", + "Hs (total) (m)": 2.7337, + "Tp (total) (s)": 12.5599 + }, + { + "Date+Time": "2013-11-13T00:00:00Z", + "Hs (total) (m)": 2.369, + "Tp (total) (s)": 13.2473 + }, + { + "Date+Time": "2013-11-14T00:00:00Z", + "Hs (total) (m)": 4.03, + "Tp (total) (s)": 13.1626 + }, + { + "Date+Time": "2013-11-15T00:00:00Z", + "Hs (total) (m)": 2.2347, + "Tp (total) (s)": 12.7132 + }, + { + "Date+Time": "2013-11-16T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 11.7183 + }, + { + "Date+Time": "2013-11-17T00:00:00Z", + "Hs (total) (m)": 2.3835, + "Tp (total) (s)": 13.9332 + }, + { + "Date+Time": "2013-11-18T00:00:00Z", + "Hs (total) (m)": 1.6114, + "Tp (total) (s)": 11.6741 + }, + { + "Date+Time": "2013-11-19T00:00:00Z", + "Hs (total) (m)": 1.8441, + "Tp (total) (s)": 9.7903 + }, + { + "Date+Time": "2013-11-20T00:00:00Z", + "Hs (total) (m)": 2.4476, + "Tp (total) (s)": 10.2138 + }, + { + "Date+Time": "2013-11-21T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 11.5337 + }, + { + "Date+Time": "2013-11-22T00:00:00Z", + "Hs (total) (m)": 1.1078, + "Tp (total) (s)": 11.3002 + }, + { + "Date+Time": "2013-11-23T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 10.2924 + }, + { + "Date+Time": "2013-11-24T00:00:00Z", + "Hs (total) (m)": 0.8797, + "Tp (total) (s)": 13.892 + }, + { + "Date+Time": "2013-11-25T00:00:00Z", + "Hs (total) (m)": 1.12, + "Tp (total) (s)": 12.3844 + }, + { + "Date+Time": "2013-11-26T00:00:00Z", + "Hs (total) (m)": 0.8881, + "Tp (total) (s)": 11.6802 + }, + { + "Date+Time": "2013-11-27T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 10.5762 + }, + { + "Date+Time": "2013-11-28T00:00:00Z", + "Hs (total) (m)": 1.4588, + "Tp (total) (s)": 12.74 + }, + { + "Date+Time": "2013-11-29T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 12.45 + }, + { + "Date+Time": "2013-11-30T00:00:00Z", + "Hs (total) (m)": 1.4863, + "Tp (total) (s)": 10.3557 + }, + { + "Date+Time": "2013-12-01T00:00:00Z", + "Hs (total) (m)": 0.9919, + "Tp (total) (s)": 10.1428 + }, + { + "Date+Time": "2013-12-02T00:00:00Z", + "Hs (total) (m)": 1.1818, + "Tp (total) (s)": 13.7768 + }, + { + "Date+Time": "2013-12-03T00:00:00Z", + "Hs (total) (m)": 1.7373, + "Tp (total) (s)": 12.3043 + }, + { + "Date+Time": "2013-12-04T00:00:00Z", + "Hs (total) (m)": 1.2322, + "Tp (total) (s)": 11.3475 + }, + { + "Date+Time": "2013-12-05T00:00:00Z", + "Hs (total) (m)": 2.6383, + "Tp (total) (s)": 12.318 + }, + { + "Date+Time": "2013-12-06T00:00:00Z", + "Hs (total) (m)": 2.1836, + "Tp (total) (s)": 13.5319 + }, + { + "Date+Time": "2013-12-07T00:00:00Z", + "Hs (total) (m)": 1.6404, + "Tp (total) (s)": 11.1789 + }, + { + "Date+Time": "2013-12-08T00:00:00Z", + "Hs (total) (m)": 2.1073, + "Tp (total) (s)": 8.3216 + }, + { + "Date+Time": "2013-12-09T00:00:00Z", + "Hs (total) (m)": 2.7131, + "Tp (total) (s)": 9.4722 + }, + { + "Date+Time": "2013-12-10T00:00:00Z", + "Hs (total) (m)": 2.5552, + "Tp (total) (s)": 10.3252 + }, + { + "Date+Time": "2013-12-11T00:00:00Z", + "Hs (total) (m)": 3.2144, + "Tp (total) (s)": 10.7456 + }, + { + "Date+Time": "2013-12-12T00:00:00Z", + "Hs (total) (m)": 3.2914, + "Tp (total) (s)": 11.3788 + }, + { + "Date+Time": "2013-12-13T00:00:00Z", + "Hs (total) (m)": 3.0457, + "Tp (total) (s)": 11.8992 + }, + { + "Date+Time": "2013-12-14T00:00:00Z", + "Hs (total) (m)": 4.4511, + "Tp (total) (s)": 13.3618 + }, + { + "Date+Time": "2013-12-15T00:00:00Z", + "Hs (total) (m)": 5.1389, + "Tp (total) (s)": 14.673 + }, + { + "Date+Time": "2013-12-16T00:00:00Z", + "Hs (total) (m)": 4.4694, + "Tp (total) (s)": 14.4314 + }, + { + "Date+Time": "2013-12-17T00:00:00Z", + "Hs (total) (m)": 3.3174, + "Tp (total) (s)": 13.8134 + }, + { + "Date+Time": "2013-12-18T00:00:00Z", + "Hs (total) (m)": 4.6289, + "Tp (total) (s)": 12.743 + }, + { + "Date+Time": "2013-12-19T00:00:00Z", + "Hs (total) (m)": 6.0673, + "Tp (total) (s)": 13.4886 + }, + { + "Date+Time": "2013-12-20T00:00:00Z", + "Hs (total) (m)": 4.7441, + "Tp (total) (s)": 14.7252 + }, + { + "Date+Time": "2013-12-21T00:00:00Z", + "Hs (total) (m)": 5.4123, + "Tp (total) (s)": 13.6723 + }, + { + "Date+Time": "2013-12-22T00:00:00Z", + "Hs (total) (m)": 5.2851, + "Tp (total) (s)": 16.3389 + }, + { + "Date+Time": "2013-12-23T00:00:00Z", + "Hs (total) (m)": 4.1025, + "Tp (total) (s)": 14.0172 + }, + { + "Date+Time": "2013-12-24T00:00:00Z", + "Hs (total) (m)": 5.5642, + "Tp (total) (s)": 12.1699 + }, + { + "Date+Time": "2013-12-25T00:00:00Z", + "Hs (total) (m)": 4.3878, + "Tp (total) (s)": 15.0372 + }, + { + "Date+Time": "2013-12-26T00:00:00Z", + "Hs (total) (m)": 3.1137, + "Tp (total) (s)": 14.8839 + }, + { + "Date+Time": "2013-12-27T00:00:00Z", + "Hs (total) (m)": 6.4717, + "Tp (total) (s)": 11.3472 + }, + { + "Date+Time": "2013-12-28T00:00:00Z", + "Hs (total) (m)": 3.225, + "Tp (total) (s)": 12.7918 + }, + { + "Date+Time": "2013-12-29T00:00:00Z", + "Hs (total) (m)": 2.6849, + "Tp (total) (s)": 12.6919 + }, + { + "Date+Time": "2013-12-30T00:00:00Z", + "Hs (total) (m)": 3.4089, + "Tp (total) (s)": 11.4559 + }, + { + "Date+Time": "2013-12-31T00:00:00Z", + "Hs (total) (m)": 3.8347, + "Tp (total) (s)": 13.1184 + }, + { + "Date+Time": "2014-01-01T00:00:00Z", + "Hs (total) (m)": 4.8303, + "Tp (total) (s)": 15.6499 + }, + { + "Date+Time": "2014-01-02T00:00:00Z", + "Hs (total) (m)": 2.8535, + "Tp (total) (s)": 12.6049 + }, + { + "Date+Time": "2014-01-03T00:00:00Z", + "Hs (total) (m)": 5.4565, + "Tp (total) (s)": 11.5793 + }, + { + "Date+Time": "2014-01-04T00:00:00Z", + "Hs (total) (m)": 5.1295, + "Tp (total) (s)": 15.6639 + }, + { + "Date+Time": "2014-01-05T00:00:00Z", + "Hs (total) (m)": 3.7667, + "Tp (total) (s)": 15.3264 + }, + { + "Date+Time": "2014-01-06T00:00:00Z", + "Hs (total) (m)": 3.972, + "Tp (total) (s)": 12.0357 + }, + { + "Date+Time": "2014-01-07T00:00:00Z", + "Hs (total) (m)": 6.3026, + "Tp (total) (s)": 17.8163 + }, + { + "Date+Time": "2014-01-08T00:00:00Z", + "Hs (total) (m)": 3.4509, + "Tp (total) (s)": 14.1339 + }, + { + "Date+Time": "2014-01-09T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 11.6955 + }, + { + "Date+Time": "2014-01-10T00:00:00Z", + "Hs (total) (m)": 1.9028, + "Tp (total) (s)": 10.0169 + }, + { + "Date+Time": "2014-01-11T00:00:00Z", + "Hs (total) (m)": 2.3263, + "Tp (total) (s)": 14.0278 + }, + { + "Date+Time": "2014-01-12T00:00:00Z", + "Hs (total) (m)": 2.3316, + "Tp (total) (s)": 12.5233 + }, + { + "Date+Time": "2014-01-13T00:00:00Z", + "Hs (total) (m)": 3.7767, + "Tp (total) (s)": 15.0044 + }, + { + "Date+Time": "2014-01-14T00:00:00Z", + "Hs (total) (m)": 2.7718, + "Tp (total) (s)": 13.7913 + }, + { + "Date+Time": "2014-01-15T00:00:00Z", + "Hs (total) (m)": 3.3341, + "Tp (total) (s)": 11.7954 + }, + { + "Date+Time": "2014-01-16T00:00:00Z", + "Hs (total) (m)": 3.3563, + "Tp (total) (s)": 12.8262 + }, + { + "Date+Time": "2014-01-17T00:00:00Z", + "Hs (total) (m)": 2.4346, + "Tp (total) (s)": 13.6464 + }, + { + "Date+Time": "2014-01-18T00:00:00Z", + "Hs (total) (m)": 2.4895, + "Tp (total) (s)": 13.9904 + }, + { + "Date+Time": "2014-01-19T00:00:00Z", + "Hs (total) (m)": 2.0486, + "Tp (total) (s)": 12.1334 + }, + { + "Date+Time": "2014-01-20T00:00:00Z", + "Hs (total) (m)": 2.2187, + "Tp (total) (s)": 10.886 + }, + { + "Date+Time": "2014-01-21T00:00:00Z", + "Hs (total) (m)": 2.5483, + "Tp (total) (s)": 11.9251 + }, + { + "Date+Time": "2014-01-22T00:00:00Z", + "Hs (total) (m)": 4.0155, + "Tp (total) (s)": 14.9693 + }, + { + "Date+Time": "2014-01-23T00:00:00Z", + "Hs (total) (m)": 2.929, + "Tp (total) (s)": 11.6939 + }, + { + "Date+Time": "2014-01-24T00:00:00Z", + "Hs (total) (m)": 2.8405, + "Tp (total) (s)": 12.4355 + }, + { + "Date+Time": "2014-01-25T00:00:00Z", + "Hs (total) (m)": 3.4875, + "Tp (total) (s)": 12.5729 + }, + { + "Date+Time": "2014-01-26T00:00:00Z", + "Hs (total) (m)": 4.5724, + "Tp (total) (s)": 15.8055 + }, + { + "Date+Time": "2014-01-27T00:00:00Z", + "Hs (total) (m)": 6.8915, + "Tp (total) (s)": 15.6436 + }, + { + "Date+Time": "2014-01-28T00:00:00Z", + "Hs (total) (m)": 4.8752, + "Tp (total) (s)": 14.8902 + }, + { + "Date+Time": "2014-01-29T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 12.3264 + }, + { + "Date+Time": "2014-01-30T00:00:00Z", + "Hs (total) (m)": 1.7449, + "Tp (total) (s)": 12.3959 + }, + { + "Date+Time": "2014-01-31T00:00:00Z", + "Hs (total) (m)": 2.0478, + "Tp (total) (s)": 11.5078 + }, + { + "Date+Time": "2014-02-01T00:00:00Z", + "Hs (total) (m)": 4.5869, + "Tp (total) (s)": 14.011 + }, + { + "Date+Time": "2014-02-02T00:00:00Z", + "Hs (total) (m)": 6.1328, + "Tp (total) (s)": 16.5687 + }, + { + "Date+Time": "2014-02-03T00:00:00Z", + "Hs (total) (m)": 3.7957, + "Tp (total) (s)": 12.3112 + }, + { + "Date+Time": "2014-02-04T00:00:00Z", + "Hs (total) (m)": 3.2632, + "Tp (total) (s)": 13.4442 + }, + { + "Date+Time": "2014-02-05T00:00:00Z", + "Hs (total) (m)": 2.2027, + "Tp (total) (s)": 13.599 + }, + { + "Date+Time": "2014-02-06T00:00:00Z", + "Hs (total) (m)": 3.3441, + "Tp (total) (s)": 11.2445 + }, + { + "Date+Time": "2014-02-07T00:00:00Z", + "Hs (total) (m)": 2.1447, + "Tp (total) (s)": 12.5736 + }, + { + "Date+Time": "2014-02-08T00:00:00Z", + "Hs (total) (m)": 4.0475, + "Tp (total) (s)": 11.1721 + }, + { + "Date+Time": "2014-02-09T00:00:00Z", + "Hs (total) (m)": 6.4947, + "Tp (total) (s)": 16.735 + }, + { + "Date+Time": "2014-02-10T00:00:00Z", + "Hs (total) (m)": 3.4005, + "Tp (total) (s)": 13.8928 + }, + { + "Date+Time": "2014-02-11T00:00:00Z", + "Hs (total) (m)": 3.573, + "Tp (total) (s)": 10.4442 + }, + { + "Date+Time": "2014-02-12T00:00:00Z", + "Hs (total) (m)": 4.4, + "Tp (total) (s)": 12.9131 + }, + { + "Date+Time": "2014-02-13T00:00:00Z", + "Hs (total) (m)": 4.3718, + "Tp (total) (s)": 12.3516 + }, + { + "Date+Time": "2014-02-14T00:00:00Z", + "Hs (total) (m)": 3.1442, + "Tp (total) (s)": 12.4462 + }, + { + "Date+Time": "2014-02-15T00:00:00Z", + "Hs (total) (m)": 2.3659, + "Tp (total) (s)": 8.7703 + }, + { + "Date+Time": "2014-02-16T00:00:00Z", + "Hs (total) (m)": 2.6543, + "Tp (total) (s)": 13.9698 + }, + { + "Date+Time": "2014-02-17T00:00:00Z", + "Hs (total) (m)": 2.5323, + "Tp (total) (s)": 10.3618 + }, + { + "Date+Time": "2014-02-18T00:00:00Z", + "Hs (total) (m)": 2.7581, + "Tp (total) (s)": 15.112 + }, + { + "Date+Time": "2014-02-19T00:00:00Z", + "Hs (total) (m)": 2.0615, + "Tp (total) (s)": 13.4381 + }, + { + "Date+Time": "2014-02-20T00:00:00Z", + "Hs (total) (m)": 2.955, + "Tp (total) (s)": 14.1263 + }, + { + "Date+Time": "2014-02-21T00:00:00Z", + "Hs (total) (m)": 3.6683, + "Tp (total) (s)": 12.5607 + }, + { + "Date+Time": "2014-02-22T00:00:00Z", + "Hs (total) (m)": 4.0742, + "Tp (total) (s)": 14.1652 + }, + { + "Date+Time": "2014-02-23T00:00:00Z", + "Hs (total) (m)": 4.0399, + "Tp (total) (s)": 11.1301 + }, + { + "Date+Time": "2014-02-24T00:00:00Z", + "Hs (total) (m)": 3.209, + "Tp (total) (s)": 12.8346 + }, + { + "Date+Time": "2014-02-25T00:00:00Z", + "Hs (total) (m)": 4.2604, + "Tp (total) (s)": 11.4345 + }, + { + "Date+Time": "2014-02-26T00:00:00Z", + "Hs (total) (m)": 4.4954, + "Tp (total) (s)": 13.3129 + }, + { + "Date+Time": "2014-02-27T00:00:00Z", + "Hs (total) (m)": 3.5417, + "Tp (total) (s)": 11.8313 + }, + { + "Date+Time": "2014-02-28T00:00:00Z", + "Hs (total) (m)": 3.6515, + "Tp (total) (s)": 15.5332 + }, + { + "Date+Time": "2014-03-01T00:00:00Z", + "Hs (total) (m)": 3.0145, + "Tp (total) (s)": 14.449 + }, + { + "Date+Time": "2014-03-02T00:00:00Z", + "Hs (total) (m)": 1.9425, + "Tp (total) (s)": 12.8208 + }, + { + "Date+Time": "2014-03-03T00:00:00Z", + "Hs (total) (m)": 3.7133, + "Tp (total) (s)": 14.8755 + }, + { + "Date+Time": "2014-03-04T00:00:00Z", + "Hs (total) (m)": 3.9026, + "Tp (total) (s)": 15.379 + }, + { + "Date+Time": "2014-03-05T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 11.6214 + }, + { + "Date+Time": "2014-03-06T00:00:00Z", + "Hs (total) (m)": 2.488, + "Tp (total) (s)": 11.3292 + }, + { + "Date+Time": "2014-03-07T00:00:00Z", + "Hs (total) (m)": 2.4712, + "Tp (total) (s)": 14.1346 + }, + { + "Date+Time": "2014-03-08T00:00:00Z", + "Hs (total) (m)": 2.9107, + "Tp (total) (s)": 13.8966 + }, + { + "Date+Time": "2014-03-09T00:00:00Z", + "Hs (total) (m)": 4.0155, + "Tp (total) (s)": 15.1952 + }, + { + "Date+Time": "2014-03-10T00:00:00Z", + "Hs (total) (m)": 2.4621, + "Tp (total) (s)": 13.67 + }, + { + "Date+Time": "2014-03-11T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 11.2331 + }, + { + "Date+Time": "2014-03-12T00:00:00Z", + "Hs (total) (m)": 2.2004, + "Tp (total) (s)": 15.1379 + }, + { + "Date+Time": "2014-03-13T00:00:00Z", + "Hs (total) (m)": 1.738, + "Tp (total) (s)": 13.2824 + }, + { + "Date+Time": "2014-03-14T00:00:00Z", + "Hs (total) (m)": 1.3794, + "Tp (total) (s)": 11.7145 + }, + { + "Date+Time": "2014-03-15T00:00:00Z", + "Hs (total) (m)": 1.207, + "Tp (total) (s)": 10.0803 + }, + { + "Date+Time": "2014-03-16T00:00:00Z", + "Hs (total) (m)": 1.413, + "Tp (total) (s)": 10.4068 + }, + { + "Date+Time": "2014-03-17T00:00:00Z", + "Hs (total) (m)": 1.2581, + "Tp (total) (s)": 10.5617 + }, + { + "Date+Time": "2014-03-18T00:00:00Z", + "Hs (total) (m)": 2.0142, + "Tp (total) (s)": 6.7904 + }, + { + "Date+Time": "2014-03-19T00:00:00Z", + "Hs (total) (m)": 2.8222, + "Tp (total) (s)": 11.5764 + }, + { + "Date+Time": "2014-03-20T00:00:00Z", + "Hs (total) (m)": 4.5358, + "Tp (total) (s)": 11.5932 + }, + { + "Date+Time": "2014-03-21T00:00:00Z", + "Hs (total) (m)": 3.7721, + "Tp (total) (s)": 11.7168 + }, + { + "Date+Time": "2014-03-22T00:00:00Z", + "Hs (total) (m)": 3.1495, + "Tp (total) (s)": 12.8849 + }, + { + "Date+Time": "2014-03-23T00:00:00Z", + "Hs (total) (m)": 3.1533, + "Tp (total) (s)": 12.3844 + }, + { + "Date+Time": "2014-03-24T00:00:00Z", + "Hs (total) (m)": 1.7243, + "Tp (total) (s)": 11.3887 + }, + { + "Date+Time": "2014-03-25T00:00:00Z", + "Hs (total) (m)": 4.2825, + "Tp (total) (s)": 13.4045 + }, + { + "Date+Time": "2014-03-26T00:00:00Z", + "Hs (total) (m)": 2.5567, + "Tp (total) (s)": 12.505 + }, + { + "Date+Time": "2014-03-27T00:00:00Z", + "Hs (total) (m)": 1.5053, + "Tp (total) (s)": 11.3933 + }, + { + "Date+Time": "2014-03-28T00:00:00Z", + "Hs (total) (m)": 1.7495, + "Tp (total) (s)": 13.0917 + }, + { + "Date+Time": "2014-03-29T00:00:00Z", + "Hs (total) (m)": 1.6259, + "Tp (total) (s)": 13.8539 + }, + { + "Date+Time": "2014-03-30T00:00:00Z", + "Hs (total) (m)": 1.1612, + "Tp (total) (s)": 10.5724 + }, + { + "Date+Time": "2014-03-31T00:00:00Z", + "Hs (total) (m)": 1.7022, + "Tp (total) (s)": 14.7771 + }, + { + "Date+Time": "2014-04-01T00:00:00Z", + "Hs (total) (m)": 1.9997, + "Tp (total) (s)": 13.4503 + }, + { + "Date+Time": "2014-04-02T00:00:00Z", + "Hs (total) (m)": 1.2078, + "Tp (total) (s)": 11.3811 + }, + { + "Date+Time": "2014-04-03T00:00:00Z", + "Hs (total) (m)": 1.455, + "Tp (total) (s)": 10.5861 + }, + { + "Date+Time": "2014-04-04T00:00:00Z", + "Hs (total) (m)": 1.2459, + "Tp (total) (s)": 9.5706 + }, + { + "Date+Time": "2014-04-05T00:00:00Z", + "Hs (total) (m)": 1.6701, + "Tp (total) (s)": 8.285 + }, + { + "Date+Time": "2014-04-06T00:00:00Z", + "Hs (total) (m)": 2.4957, + "Tp (total) (s)": 8.5955 + }, + { + "Date+Time": "2014-04-07T00:00:00Z", + "Hs (total) (m)": 2.2858, + "Tp (total) (s)": 9.8102 + }, + { + "Date+Time": "2014-04-08T00:00:00Z", + "Hs (total) (m)": 2.9054, + "Tp (total) (s)": 12.8773 + }, + { + "Date+Time": "2014-04-09T00:00:00Z", + "Hs (total) (m)": 2.2622, + "Tp (total) (s)": 12.4119 + }, + { + "Date+Time": "2014-04-10T00:00:00Z", + "Hs (total) (m)": 2.0302, + "Tp (total) (s)": 10.3595 + }, + { + "Date+Time": "2014-04-11T00:00:00Z", + "Hs (total) (m)": 1.4206, + "Tp (total) (s)": 10.3984 + }, + { + "Date+Time": "2014-04-12T00:00:00Z", + "Hs (total) (m)": 2.092, + "Tp (total) (s)": 9.328 + }, + { + "Date+Time": "2014-04-13T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 13.7082 + }, + { + "Date+Time": "2014-04-14T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 11.5947 + }, + { + "Date+Time": "2014-04-15T00:00:00Z", + "Hs (total) (m)": 1.1879, + "Tp (total) (s)": 10.7135 + }, + { + "Date+Time": "2014-04-16T00:00:00Z", + "Hs (total) (m)": 1.4237, + "Tp (total) (s)": 9.6782 + }, + { + "Date+Time": "2014-04-17T00:00:00Z", + "Hs (total) (m)": 1.1628, + "Tp (total) (s)": 9.592 + }, + { + "Date+Time": "2014-04-18T00:00:00Z", + "Hs (total) (m)": 1.1818, + "Tp (total) (s)": 11.3315 + }, + { + "Date+Time": "2014-04-19T00:00:00Z", + "Hs (total) (m)": 0.9026, + "Tp (total) (s)": 10.4114 + }, + { + "Date+Time": "2014-04-20T00:00:00Z", + "Hs (total) (m)": 1.3924, + "Tp (total) (s)": 14.0286 + }, + { + "Date+Time": "2014-04-21T00:00:00Z", + "Hs (total) (m)": 1.2185, + "Tp (total) (s)": 12.6568 + }, + { + "Date+Time": "2014-04-22T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 11.3811 + }, + { + "Date+Time": "2014-04-23T00:00:00Z", + "Hs (total) (m)": 1.3504, + "Tp (total) (s)": 15.0616 + }, + { + "Date+Time": "2014-04-24T00:00:00Z", + "Hs (total) (m)": 2.0035, + "Tp (total) (s)": 12.8452 + }, + { + "Date+Time": "2014-04-25T00:00:00Z", + "Hs (total) (m)": 1.6762, + "Tp (total) (s)": 11.0851 + }, + { + "Date+Time": "2014-04-26T00:00:00Z", + "Hs (total) (m)": 1.1574, + "Tp (total) (s)": 10.4076 + }, + { + "Date+Time": "2014-04-27T00:00:00Z", + "Hs (total) (m)": 1.1155, + "Tp (total) (s)": 9.814 + }, + { + "Date+Time": "2014-04-28T00:00:00Z", + "Hs (total) (m)": 1.0628, + "Tp (total) (s)": 10.3145 + }, + { + "Date+Time": "2014-04-29T00:00:00Z", + "Hs (total) (m)": 0.8164, + "Tp (total) (s)": 9.8766 + }, + { + "Date+Time": "2014-04-30T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 11.4055 + }, + { + "Date+Time": "2014-05-01T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 9.904 + }, + { + "Date+Time": "2014-05-02T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 9.2708 + }, + { + "Date+Time": "2014-05-03T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 9.5386 + }, + { + "Date+Time": "2014-05-04T00:00:00Z", + "Hs (total) (m)": 1.2955, + "Tp (total) (s)": 8.9404 + }, + { + "Date+Time": "2014-05-05T00:00:00Z", + "Hs (total) (m)": 2.2202, + "Tp (total) (s)": 11.0813 + }, + { + "Date+Time": "2014-05-06T00:00:00Z", + "Hs (total) (m)": 2.4545, + "Tp (total) (s)": 10.4884 + }, + { + "Date+Time": "2014-05-07T00:00:00Z", + "Hs (total) (m)": 3.3845, + "Tp (total) (s)": 10.4816 + }, + { + "Date+Time": "2014-05-08T00:00:00Z", + "Hs (total) (m)": 2.2126, + "Tp (total) (s)": 10.7547 + }, + { + "Date+Time": "2014-05-09T00:00:00Z", + "Hs (total) (m)": 2.7154, + "Tp (total) (s)": 7.9402 + }, + { + "Date+Time": "2014-05-10T00:00:00Z", + "Hs (total) (m)": 2.2629, + "Tp (total) (s)": 9.3791 + }, + { + "Date+Time": "2014-05-11T00:00:00Z", + "Hs (total) (m)": 3.5028, + "Tp (total) (s)": 10.6403 + }, + { + "Date+Time": "2014-05-12T00:00:00Z", + "Hs (total) (m)": 1.8204, + "Tp (total) (s)": 10.0909 + }, + { + "Date+Time": "2014-05-13T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 9.4073 + }, + { + "Date+Time": "2014-05-14T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 8.5017 + }, + { + "Date+Time": "2014-05-15T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 10.9447 + }, + { + "Date+Time": "2014-05-16T00:00:00Z", + "Hs (total) (m)": 1.339, + "Tp (total) (s)": 11.3483 + }, + { + "Date+Time": "2014-05-17T00:00:00Z", + "Hs (total) (m)": 1.4657, + "Tp (total) (s)": 10.0314 + }, + { + "Date+Time": "2014-05-18T00:00:00Z", + "Hs (total) (m)": 2.0638, + "Tp (total) (s)": 7.5396 + }, + { + "Date+Time": "2014-05-19T00:00:00Z", + "Hs (total) (m)": 1.5091, + "Tp (total) (s)": 11.1812 + }, + { + "Date+Time": "2014-05-20T00:00:00Z", + "Hs (total) (m)": 1.1284, + "Tp (total) (s)": 10.6548 + }, + { + "Date+Time": "2014-05-21T00:00:00Z", + "Hs (total) (m)": 0.734, + "Tp (total) (s)": 9.5256 + }, + { + "Date+Time": "2014-05-22T00:00:00Z", + "Hs (total) (m)": 0.6569, + "Tp (total) (s)": 9.5035 + }, + { + "Date+Time": "2014-05-23T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 8.6558 + }, + { + "Date+Time": "2014-05-24T00:00:00Z", + "Hs (total) (m)": 1.014, + "Tp (total) (s)": 3.7339 + }, + { + "Date+Time": "2014-05-25T00:00:00Z", + "Hs (total) (m)": 0.7889, + "Tp (total) (s)": 3.4173 + }, + { + "Date+Time": "2014-05-26T00:00:00Z", + "Hs (total) (m)": 0.5089, + "Tp (total) (s)": 8.1713 + }, + { + "Date+Time": "2014-05-27T00:00:00Z", + "Hs (total) (m)": 0.5028, + "Tp (total) (s)": 9.4646 + }, + { + "Date+Time": "2014-05-28T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 9.4417 + }, + { + "Date+Time": "2014-05-29T00:00:00Z", + "Hs (total) (m)": 0.7958, + "Tp (total) (s)": 9.1311 + }, + { + "Date+Time": "2014-05-30T00:00:00Z", + "Hs (total) (m)": 0.6775, + "Tp (total) (s)": 7.9447 + }, + { + "Date+Time": "2014-05-31T00:00:00Z", + "Hs (total) (m)": 0.7324, + "Tp (total) (s)": 10.2603 + }, + { + "Date+Time": "2014-06-01T00:00:00Z", + "Hs (total) (m)": 1.2696, + "Tp (total) (s)": 5.4476 + }, + { + "Date+Time": "2014-06-02T00:00:00Z", + "Hs (total) (m)": 1.6083, + "Tp (total) (s)": 8.475 + }, + { + "Date+Time": "2014-06-03T00:00:00Z", + "Hs (total) (m)": 1.7808, + "Tp (total) (s)": 10.8303 + }, + { + "Date+Time": "2014-06-04T00:00:00Z", + "Hs (total) (m)": 1.3451, + "Tp (total) (s)": 8.5704 + }, + { + "Date+Time": "2014-06-05T00:00:00Z", + "Hs (total) (m)": 1.2192, + "Tp (total) (s)": 8.7718 + }, + { + "Date+Time": "2014-06-06T00:00:00Z", + "Hs (total) (m)": 0.8301, + "Tp (total) (s)": 7.8677 + }, + { + "Date+Time": "2014-06-07T00:00:00Z", + "Hs (total) (m)": 1.1124, + "Tp (total) (s)": 5.298 + }, + { + "Date+Time": "2014-06-08T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 9.3631 + }, + { + "Date+Time": "2014-06-09T00:00:00Z", + "Hs (total) (m)": 1.4061, + "Tp (total) (s)": 9.2067 + }, + { + "Date+Time": "2014-06-10T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 8.8427 + }, + { + "Date+Time": "2014-06-11T00:00:00Z", + "Hs (total) (m)": 0.7935, + "Tp (total) (s)": 7.8631 + }, + { + "Date+Time": "2014-06-12T00:00:00Z", + "Hs (total) (m)": 0.8049, + "Tp (total) (s)": 5.0027 + }, + { + "Date+Time": "2014-06-13T00:00:00Z", + "Hs (total) (m)": 1.2841, + "Tp (total) (s)": 7.5968 + }, + { + "Date+Time": "2014-06-14T00:00:00Z", + "Hs (total) (m)": 1.2062, + "Tp (total) (s)": 10.4518 + }, + { + "Date+Time": "2014-06-15T00:00:00Z", + "Hs (total) (m)": 0.8904, + "Tp (total) (s)": 9.0724 + }, + { + "Date+Time": "2014-06-16T00:00:00Z", + "Hs (total) (m)": 0.7363, + "Tp (total) (s)": 8.4765 + }, + { + "Date+Time": "2014-06-17T00:00:00Z", + "Hs (total) (m)": 0.8621, + "Tp (total) (s)": 9.508 + }, + { + "Date+Time": "2014-06-18T00:00:00Z", + "Hs (total) (m)": 0.6577, + "Tp (total) (s)": 8.414 + }, + { + "Date+Time": "2014-06-19T00:00:00Z", + "Hs (total) (m)": 0.5646, + "Tp (total) (s)": 3.9926 + }, + { + "Date+Time": "2014-06-20T00:00:00Z", + "Hs (total) (m)": 0.5127, + "Tp (total) (s)": 2.8253 + }, + { + "Date+Time": "2014-06-21T00:00:00Z", + "Hs (total) (m)": 0.4769, + "Tp (total) (s)": 2.5636 + }, + { + "Date+Time": "2014-06-22T00:00:00Z", + "Hs (total) (m)": 0.5257, + "Tp (total) (s)": 5.839 + }, + { + "Date+Time": "2014-06-23T00:00:00Z", + "Hs (total) (m)": 0.5173, + "Tp (total) (s)": 8.5734 + }, + { + "Date+Time": "2014-06-24T00:00:00Z", + "Hs (total) (m)": 0.544, + "Tp (total) (s)": 7.8677 + }, + { + "Date+Time": "2014-06-25T00:00:00Z", + "Hs (total) (m)": 0.4952, + "Tp (total) (s)": 6.7843 + }, + { + "Date+Time": "2014-06-26T00:00:00Z", + "Hs (total) (m)": 0.7561, + "Tp (total) (s)": 8.7397 + }, + { + "Date+Time": "2014-06-27T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 9.65 + }, + { + "Date+Time": "2014-06-28T00:00:00Z", + "Hs (total) (m)": 0.9148, + "Tp (total) (s)": 8.5345 + }, + { + "Date+Time": "2014-06-29T00:00:00Z", + "Hs (total) (m)": 0.5951, + "Tp (total) (s)": 5.4674 + }, + { + "Date+Time": "2014-06-30T00:00:00Z", + "Hs (total) (m)": 0.586, + "Tp (total) (s)": 7.8082 + }, + { + "Date+Time": "2014-07-01T00:00:00Z", + "Hs (total) (m)": 0.8713, + "Tp (total) (s)": 8.6581 + }, + { + "Date+Time": "2014-07-02T00:00:00Z", + "Hs (total) (m)": 0.7164, + "Tp (total) (s)": 8.6573 + }, + { + "Date+Time": "2014-07-03T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 9.1067 + }, + { + "Date+Time": "2014-07-04T00:00:00Z", + "Hs (total) (m)": 1.3901, + "Tp (total) (s)": 6.2197 + }, + { + "Date+Time": "2014-07-05T00:00:00Z", + "Hs (total) (m)": 1.7121, + "Tp (total) (s)": 11.4582 + }, + { + "Date+Time": "2014-07-06T00:00:00Z", + "Hs (total) (m)": 1.8921, + "Tp (total) (s)": 11.5802 + }, + { + "Date+Time": "2014-07-07T00:00:00Z", + "Hs (total) (m)": 1.7182, + "Tp (total) (s)": 10.2222 + }, + { + "Date+Time": "2014-07-08T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 9.8682 + }, + { + "Date+Time": "2014-07-09T00:00:00Z", + "Hs (total) (m)": 1.4107, + "Tp (total) (s)": 9.4821 + }, + { + "Date+Time": "2014-07-10T00:00:00Z", + "Hs (total) (m)": 1.1269, + "Tp (total) (s)": 9.9734 + }, + { + "Date+Time": "2014-07-11T00:00:00Z", + "Hs (total) (m)": 1.0109, + "Tp (total) (s)": 7.8906 + }, + { + "Date+Time": "2014-07-12T00:00:00Z", + "Hs (total) (m)": 0.9423, + "Tp (total) (s)": 7.7181 + }, + { + "Date+Time": "2014-07-13T00:00:00Z", + "Hs (total) (m)": 1.1544, + "Tp (total) (s)": 9.595 + }, + { + "Date+Time": "2014-07-14T00:00:00Z", + "Hs (total) (m)": 1.326, + "Tp (total) (s)": 9.4104 + }, + { + "Date+Time": "2014-07-15T00:00:00Z", + "Hs (total) (m)": 1.6243, + "Tp (total) (s)": 8.3659 + }, + { + "Date+Time": "2014-07-16T00:00:00Z", + "Hs (total) (m)": 1.5328, + "Tp (total) (s)": 7.7418 + }, + { + "Date+Time": "2014-07-17T00:00:00Z", + "Hs (total) (m)": 1.7182, + "Tp (total) (s)": 7.3969 + }, + { + "Date+Time": "2014-07-18T00:00:00Z", + "Hs (total) (m)": 1.3924, + "Tp (total) (s)": 7.149 + }, + { + "Date+Time": "2014-07-19T00:00:00Z", + "Hs (total) (m)": 0.7836, + "Tp (total) (s)": 7.0872 + }, + { + "Date+Time": "2014-07-20T00:00:00Z", + "Hs (total) (m)": 0.6836, + "Tp (total) (s)": 7.21 + }, + { + "Date+Time": "2014-07-21T00:00:00Z", + "Hs (total) (m)": 0.7431, + "Tp (total) (s)": 7.2459 + }, + { + "Date+Time": "2014-07-22T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 7.4747 + }, + { + "Date+Time": "2014-07-23T00:00:00Z", + "Hs (total) (m)": 0.9713, + "Tp (total) (s)": 7.8433 + }, + { + "Date+Time": "2014-07-24T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 7.8143 + }, + { + "Date+Time": "2014-07-25T00:00:00Z", + "Hs (total) (m)": 0.9941, + "Tp (total) (s)": 10.0826 + }, + { + "Date+Time": "2014-07-26T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 9.8453 + }, + { + "Date+Time": "2014-07-27T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 8.7077 + }, + { + "Date+Time": "2014-07-28T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 7.8043 + }, + { + "Date+Time": "2014-07-29T00:00:00Z", + "Hs (total) (m)": 1.0132, + "Tp (total) (s)": 9.6103 + }, + { + "Date+Time": "2014-07-30T00:00:00Z", + "Hs (total) (m)": 0.8835, + "Tp (total) (s)": 6.7629 + }, + { + "Date+Time": "2014-07-31T00:00:00Z", + "Hs (total) (m)": 0.9362, + "Tp (total) (s)": 7.149 + }, + { + "Date+Time": "2014-08-01T00:00:00Z", + "Hs (total) (m)": 1.4039, + "Tp (total) (s)": 11.7038 + }, + { + "Date+Time": "2014-08-02T00:00:00Z", + "Hs (total) (m)": 1.371, + "Tp (total) (s)": 10.0024 + }, + { + "Date+Time": "2014-08-03T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 8.5437 + }, + { + "Date+Time": "2014-08-04T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 8.52 + }, + { + "Date+Time": "2014-08-05T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 8.3377 + }, + { + "Date+Time": "2014-08-06T00:00:00Z", + "Hs (total) (m)": 0.7179, + "Tp (total) (s)": 8.4078 + }, + { + "Date+Time": "2014-08-07T00:00:00Z", + "Hs (total) (m)": 0.792, + "Tp (total) (s)": 8.449 + }, + { + "Date+Time": "2014-08-08T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 8.6924 + }, + { + "Date+Time": "2014-08-09T00:00:00Z", + "Hs (total) (m)": 1.1856, + "Tp (total) (s)": 8.1866 + }, + { + "Date+Time": "2014-08-10T00:00:00Z", + "Hs (total) (m)": 1.4969, + "Tp (total) (s)": 9.0419 + }, + { + "Date+Time": "2014-08-11T00:00:00Z", + "Hs (total) (m)": 1.5412, + "Tp (total) (s)": 9.2517 + }, + { + "Date+Time": "2014-08-12T00:00:00Z", + "Hs (total) (m)": 1.5572, + "Tp (total) (s)": 7.4755 + }, + { + "Date+Time": "2014-08-13T00:00:00Z", + "Hs (total) (m)": 2.0867, + "Tp (total) (s)": 8.166 + }, + { + "Date+Time": "2014-08-14T00:00:00Z", + "Hs (total) (m)": 1.7335, + "Tp (total) (s)": 9.8849 + }, + { + "Date+Time": "2014-08-15T00:00:00Z", + "Hs (total) (m)": 1.3413, + "Tp (total) (s)": 8.0287 + }, + { + "Date+Time": "2014-08-16T00:00:00Z", + "Hs (total) (m)": 1.1567, + "Tp (total) (s)": 8.3476 + }, + { + "Date+Time": "2014-08-17T00:00:00Z", + "Hs (total) (m)": 1.1177, + "Tp (total) (s)": 8.4132 + }, + { + "Date+Time": "2014-08-18T00:00:00Z", + "Hs (total) (m)": 1.2574, + "Tp (total) (s)": 7.9501 + }, + { + "Date+Time": "2014-08-19T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 7.12 + }, + { + "Date+Time": "2014-08-20T00:00:00Z", + "Hs (total) (m)": 1.3665, + "Tp (total) (s)": 8.6489 + }, + { + "Date+Time": "2014-08-21T00:00:00Z", + "Hs (total) (m)": 1.0201, + "Tp (total) (s)": 11.0446 + }, + { + "Date+Time": "2014-08-22T00:00:00Z", + "Hs (total) (m)": 0.9606, + "Tp (total) (s)": 9.6232 + }, + { + "Date+Time": "2014-08-23T00:00:00Z", + "Hs (total) (m)": 0.9774, + "Tp (total) (s)": 8.6398 + }, + { + "Date+Time": "2014-08-24T00:00:00Z", + "Hs (total) (m)": 0.9308, + "Tp (total) (s)": 7.58 + }, + { + "Date+Time": "2014-08-25T00:00:00Z", + "Hs (total) (m)": 0.9247, + "Tp (total) (s)": 4.796 + }, + { + "Date+Time": "2014-08-26T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 9.6011 + }, + { + "Date+Time": "2014-08-27T00:00:00Z", + "Hs (total) (m)": 1.7029, + "Tp (total) (s)": 10.4755 + }, + { + "Date+Time": "2014-08-28T00:00:00Z", + "Hs (total) (m)": 1.78, + "Tp (total) (s)": 10.0696 + }, + { + "Date+Time": "2014-08-29T00:00:00Z", + "Hs (total) (m)": 2.0928, + "Tp (total) (s)": 8.4033 + }, + { + "Date+Time": "2014-08-30T00:00:00Z", + "Hs (total) (m)": 3.2189, + "Tp (total) (s)": 10.5052 + }, + { + "Date+Time": "2014-08-31T00:00:00Z", + "Hs (total) (m)": 2.7329, + "Tp (total) (s)": 11.1568 + }, + { + "Date+Time": "2014-09-01T00:00:00Z", + "Hs (total) (m)": 1.7525, + "Tp (total) (s)": 9.3188 + }, + { + "Date+Time": "2014-09-02T00:00:00Z", + "Hs (total) (m)": 1.6625, + "Tp (total) (s)": 10.5228 + }, + { + "Date+Time": "2014-09-03T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 13.9416 + }, + { + "Date+Time": "2014-09-04T00:00:00Z", + "Hs (total) (m)": 2.2301, + "Tp (total) (s)": 13.9859 + }, + { + "Date+Time": "2014-09-05T00:00:00Z", + "Hs (total) (m)": 1.4992, + "Tp (total) (s)": 12.344 + }, + { + "Date+Time": "2014-09-06T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 10.2435 + }, + { + "Date+Time": "2014-09-07T00:00:00Z", + "Hs (total) (m)": 0.9239, + "Tp (total) (s)": 9.4951 + }, + { + "Date+Time": "2014-09-08T00:00:00Z", + "Hs (total) (m)": 0.6554, + "Tp (total) (s)": 9.5882 + }, + { + "Date+Time": "2014-09-09T00:00:00Z", + "Hs (total) (m)": 0.351, + "Tp (total) (s)": 8.076 + }, + { + "Date+Time": "2014-09-10T00:00:00Z", + "Hs (total) (m)": 0.4669, + "Tp (total) (s)": 10.3824 + }, + { + "Date+Time": "2014-09-11T00:00:00Z", + "Hs (total) (m)": 0.5928, + "Tp (total) (s)": 8.7374 + }, + { + "Date+Time": "2014-09-12T00:00:00Z", + "Hs (total) (m)": 0.6836, + "Tp (total) (s)": 9.3478 + }, + { + "Date+Time": "2014-09-13T00:00:00Z", + "Hs (total) (m)": 0.8797, + "Tp (total) (s)": 10.1978 + }, + { + "Date+Time": "2014-09-14T00:00:00Z", + "Hs (total) (m)": 1.0773, + "Tp (total) (s)": 11.7183 + }, + { + "Date+Time": "2014-09-15T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 10.5304 + }, + { + "Date+Time": "2014-09-16T00:00:00Z", + "Hs (total) (m)": 1.101, + "Tp (total) (s)": 10.0146 + }, + { + "Date+Time": "2014-09-17T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 9.3272 + }, + { + "Date+Time": "2014-09-18T00:00:00Z", + "Hs (total) (m)": 0.9781, + "Tp (total) (s)": 14.2117 + }, + { + "Date+Time": "2014-09-19T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 14.4116 + }, + { + "Date+Time": "2014-09-20T00:00:00Z", + "Hs (total) (m)": 1.2299, + "Tp (total) (s)": 12.9322 + }, + { + "Date+Time": "2014-09-21T00:00:00Z", + "Hs (total) (m)": 0.7653, + "Tp (total) (s)": 10.0635 + }, + { + "Date+Time": "2014-09-22T00:00:00Z", + "Hs (total) (m)": 0.4547, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "2014-09-23T00:00:00Z", + "Hs (total) (m)": 0.9857, + "Tp (total) (s)": 16.1412 + }, + { + "Date+Time": "2014-09-24T00:00:00Z", + "Hs (total) (m)": 1.1261, + "Tp (total) (s)": 11.9739 + }, + { + "Date+Time": "2014-09-25T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 12.2814 + }, + { + "Date+Time": "2014-09-26T00:00:00Z", + "Hs (total) (m)": 1.6655, + "Tp (total) (s)": 11.6131 + }, + { + "Date+Time": "2014-09-27T00:00:00Z", + "Hs (total) (m)": 1.7335, + "Tp (total) (s)": 10.2634 + }, + { + "Date+Time": "2014-09-28T00:00:00Z", + "Hs (total) (m)": 1.9776, + "Tp (total) (s)": 11.536 + }, + { + "Date+Time": "2014-09-29T00:00:00Z", + "Hs (total) (m)": 1.9242, + "Tp (total) (s)": 12.2745 + }, + { + "Date+Time": "2014-09-30T00:00:00Z", + "Hs (total) (m)": 1.6724, + "Tp (total) (s)": 11.655 + }, + { + "Date+Time": "2014-10-01T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 11.2873 + }, + { + "Date+Time": "2014-10-02T00:00:00Z", + "Hs (total) (m)": 1.6602, + "Tp (total) (s)": 10.3465 + }, + { + "Date+Time": "2014-10-03T00:00:00Z", + "Hs (total) (m)": 2.0447, + "Tp (total) (s)": 11.0981 + }, + { + "Date+Time": "2014-10-04T00:00:00Z", + "Hs (total) (m)": 3.4158, + "Tp (total) (s)": 15.1509 + }, + { + "Date+Time": "2014-10-05T00:00:00Z", + "Hs (total) (m)": 2.9855, + "Tp (total) (s)": 12.7995 + }, + { + "Date+Time": "2014-10-06T00:00:00Z", + "Hs (total) (m)": 2.7062, + "Tp (total) (s)": 12.3104 + }, + { + "Date+Time": "2014-10-07T00:00:00Z", + "Hs (total) (m)": 3.2266, + "Tp (total) (s)": 12.6949 + }, + { + "Date+Time": "2014-10-08T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 11.169 + }, + { + "Date+Time": "2014-10-09T00:00:00Z", + "Hs (total) (m)": 2.6612, + "Tp (total) (s)": 11.848 + }, + { + "Date+Time": "2014-10-10T00:00:00Z", + "Hs (total) (m)": 1.5389, + "Tp (total) (s)": 9.8666 + }, + { + "Date+Time": "2014-10-11T00:00:00Z", + "Hs (total) (m)": 0.9056, + "Tp (total) (s)": 8.5971 + }, + { + "Date+Time": "2014-10-12T00:00:00Z", + "Hs (total) (m)": 0.8454, + "Tp (total) (s)": 9.1075 + }, + { + "Date+Time": "2014-10-13T00:00:00Z", + "Hs (total) (m)": 0.7698, + "Tp (total) (s)": 8.5681 + }, + { + "Date+Time": "2014-10-14T00:00:00Z", + "Hs (total) (m)": 0.6424, + "Tp (total) (s)": 9.0548 + }, + { + "Date+Time": "2014-10-15T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 3.5554 + }, + { + "Date+Time": "2014-10-16T00:00:00Z", + "Hs (total) (m)": 2.0394, + "Tp (total) (s)": 18.2882 + }, + { + "Date+Time": "2014-10-17T00:00:00Z", + "Hs (total) (m)": 2.2668, + "Tp (total) (s)": 17.5901 + }, + { + "Date+Time": "2014-10-18T00:00:00Z", + "Hs (total) (m)": 2.7238, + "Tp (total) (s)": 16.7096 + }, + { + "Date+Time": "2014-10-19T00:00:00Z", + "Hs (total) (m)": 3.2044, + "Tp (total) (s)": 11.5604 + }, + { + "Date+Time": "2014-10-20T00:00:00Z", + "Hs (total) (m)": 3.573, + "Tp (total) (s)": 11.5719 + }, + { + "Date+Time": "2014-10-21T00:00:00Z", + "Hs (total) (m)": 3.0816, + "Tp (total) (s)": 11.3575 + }, + { + "Date+Time": "2014-10-22T00:00:00Z", + "Hs (total) (m)": 2.823, + "Tp (total) (s)": 9.3005 + }, + { + "Date+Time": "2014-10-23T00:00:00Z", + "Hs (total) (m)": 2.8924, + "Tp (total) (s)": 10.6708 + }, + { + "Date+Time": "2014-10-24T00:00:00Z", + "Hs (total) (m)": 2.678, + "Tp (total) (s)": 11.5589 + }, + { + "Date+Time": "2014-10-25T00:00:00Z", + "Hs (total) (m)": 2.4422, + "Tp (total) (s)": 11.9175 + }, + { + "Date+Time": "2014-10-26T00:00:00Z", + "Hs (total) (m)": 3.1167, + "Tp (total) (s)": 12.4416 + }, + { + "Date+Time": "2014-10-27T00:00:00Z", + "Hs (total) (m)": 3.6256, + "Tp (total) (s)": 12.1998 + }, + { + "Date+Time": "2014-10-28T00:00:00Z", + "Hs (total) (m)": 3.7423, + "Tp (total) (s)": 13.5693 + }, + { + "Date+Time": "2014-10-29T00:00:00Z", + "Hs (total) (m)": 2.6963, + "Tp (total) (s)": 12.6644 + }, + { + "Date+Time": "2014-10-30T00:00:00Z", + "Hs (total) (m)": 1.59, + "Tp (total) (s)": 11.3315 + }, + { + "Date+Time": "2014-10-31T00:00:00Z", + "Hs (total) (m)": 1.4863, + "Tp (total) (s)": 9.8788 + }, + { + "Date+Time": "2014-11-01T00:00:00Z", + "Hs (total) (m)": 1.8563, + "Tp (total) (s)": 8.1248 + }, + { + "Date+Time": "2014-11-02T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 8.755 + }, + { + "Date+Time": "2014-11-03T00:00:00Z", + "Hs (total) (m)": 2.4941, + "Tp (total) (s)": 11.4223 + }, + { + "Date+Time": "2014-11-04T00:00:00Z", + "Hs (total) (m)": 2.7444, + "Tp (total) (s)": 11.1927 + }, + { + "Date+Time": "2014-11-05T00:00:00Z", + "Hs (total) (m)": 2.7085, + "Tp (total) (s)": 12.2707 + }, + { + "Date+Time": "2014-11-06T00:00:00Z", + "Hs (total) (m)": 1.4145, + "Tp (total) (s)": 10.7578 + }, + { + "Date+Time": "2014-11-07T00:00:00Z", + "Hs (total) (m)": 2.2309, + "Tp (total) (s)": 8.3529 + }, + { + "Date+Time": "2014-11-08T00:00:00Z", + "Hs (total) (m)": 2.1676, + "Tp (total) (s)": 8.9862 + }, + { + "Date+Time": "2014-11-09T00:00:00Z", + "Hs (total) (m)": 3.1777, + "Tp (total) (s)": 13.2626 + }, + { + "Date+Time": "2014-11-10T00:00:00Z", + "Hs (total) (m)": 2.2217, + "Tp (total) (s)": 11.7924 + }, + { + "Date+Time": "2014-11-11T00:00:00Z", + "Hs (total) (m)": 2.311, + "Tp (total) (s)": 12.6507 + }, + { + "Date+Time": "2014-11-12T00:00:00Z", + "Hs (total) (m)": 1.7609, + "Tp (total) (s)": 8.7352 + }, + { + "Date+Time": "2014-11-13T00:00:00Z", + "Hs (total) (m)": 2.2469, + "Tp (total) (s)": 15.3401 + }, + { + "Date+Time": "2014-11-14T00:00:00Z", + "Hs (total) (m)": 2.9229, + "Tp (total) (s)": 15.1601 + }, + { + "Date+Time": "2014-11-15T00:00:00Z", + "Hs (total) (m)": 2.8741, + "Tp (total) (s)": 13.5456 + }, + { + "Date+Time": "2014-11-16T00:00:00Z", + "Hs (total) (m)": 2.8436, + "Tp (total) (s)": 13.1115 + }, + { + "Date+Time": "2014-11-17T00:00:00Z", + "Hs (total) (m)": 2.8214, + "Tp (total) (s)": 13.4228 + }, + { + "Date+Time": "2014-11-18T00:00:00Z", + "Hs (total) (m)": 1.9723, + "Tp (total) (s)": 11.7832 + }, + { + "Date+Time": "2014-11-19T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 14.0622 + }, + { + "Date+Time": "2014-11-20T00:00:00Z", + "Hs (total) (m)": 1.5717, + "Tp (total) (s)": 13.287 + }, + { + "Date+Time": "2014-11-21T00:00:00Z", + "Hs (total) (m)": 1.8128, + "Tp (total) (s)": 12.7674 + }, + { + "Date+Time": "2014-11-22T00:00:00Z", + "Hs (total) (m)": 1.2734, + "Tp (total) (s)": 10.2428 + }, + { + "Date+Time": "2014-11-23T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 9.3066 + }, + { + "Date+Time": "2014-11-24T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 14.2514 + }, + { + "Date+Time": "2014-11-25T00:00:00Z", + "Hs (total) (m)": 2.0463, + "Tp (total) (s)": 12.7338 + }, + { + "Date+Time": "2014-11-26T00:00:00Z", + "Hs (total) (m)": 2.4689, + "Tp (total) (s)": 14.0027 + }, + { + "Date+Time": "2014-11-27T00:00:00Z", + "Hs (total) (m)": 2.3942, + "Tp (total) (s)": 14.0477 + }, + { + "Date+Time": "2014-11-28T00:00:00Z", + "Hs (total) (m)": 2.3957, + "Tp (total) (s)": 12.7506 + }, + { + "Date+Time": "2014-11-29T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 12.3257 + }, + { + "Date+Time": "2014-11-30T00:00:00Z", + "Hs (total) (m)": 1.8281, + "Tp (total) (s)": 14.0416 + }, + { + "Date+Time": "2014-12-01T00:00:00Z", + "Hs (total) (m)": 2.1958, + "Tp (total) (s)": 14.4726 + }, + { + "Date+Time": "2014-12-02T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 12.5935 + }, + { + "Date+Time": "2014-12-03T00:00:00Z", + "Hs (total) (m)": 1.4107, + "Tp (total) (s)": 12.2997 + }, + { + "Date+Time": "2014-12-04T00:00:00Z", + "Hs (total) (m)": 1.8906, + "Tp (total) (s)": 12.6423 + }, + { + "Date+Time": "2014-12-05T00:00:00Z", + "Hs (total) (m)": 1.9356, + "Tp (total) (s)": 13.3961 + }, + { + "Date+Time": "2014-12-06T00:00:00Z", + "Hs (total) (m)": 2.0699, + "Tp (total) (s)": 13.7906 + }, + { + "Date+Time": "2014-12-07T00:00:00Z", + "Hs (total) (m)": 2.5613, + "Tp (total) (s)": 14.0461 + }, + { + "Date+Time": "2014-12-08T00:00:00Z", + "Hs (total) (m)": 2.8855, + "Tp (total) (s)": 12.2646 + }, + { + "Date+Time": "2014-12-09T00:00:00Z", + "Hs (total) (m)": 3.3296, + "Tp (total) (s)": 13.4014 + }, + { + "Date+Time": "2014-12-10T00:00:00Z", + "Hs (total) (m)": 3.3502, + "Tp (total) (s)": 13.7196 + }, + { + "Date+Time": "2014-12-11T00:00:00Z", + "Hs (total) (m)": 3.8812, + "Tp (total) (s)": 10.8936 + }, + { + "Date+Time": "2014-12-12T00:00:00Z", + "Hs (total) (m)": 6.0769, + "Tp (total) (s)": 17.9567 + }, + { + "Date+Time": "2014-12-13T00:00:00Z", + "Hs (total) (m)": 5.0178, + "Tp (total) (s)": 16.1157 + }, + { + "Date+Time": "2014-12-14T00:00:00Z", + "Hs (total) (m)": 3.0602, + "Tp (total) (s)": 14.2644 + }, + { + "Date+Time": "2014-12-15T00:00:00Z", + "Hs (total) (m)": 2.2675, + "Tp (total) (s)": 13.5105 + }, + { + "Date+Time": "2014-12-16T00:00:00Z", + "Hs (total) (m)": 2.2439, + "Tp (total) (s)": 12.4538 + }, + { + "Date+Time": "2014-12-17T00:00:00Z", + "Hs (total) (m)": 2.6887, + "Tp (total) (s)": 13.5823 + }, + { + "Date+Time": "2014-12-18T00:00:00Z", + "Hs (total) (m)": 2.3316, + "Tp (total) (s)": 14.1568 + }, + { + "Date+Time": "2014-12-19T00:00:00Z", + "Hs (total) (m)": 2.8497, + "Tp (total) (s)": 10.5068 + }, + { + "Date+Time": "2014-12-20T00:00:00Z", + "Hs (total) (m)": 3.367, + "Tp (total) (s)": 11.3872 + }, + { + "Date+Time": "2014-12-21T00:00:00Z", + "Hs (total) (m)": 3.5524, + "Tp (total) (s)": 14.2613 + }, + { + "Date+Time": "2014-12-22T00:00:00Z", + "Hs (total) (m)": 3.1594, + "Tp (total) (s)": 13.1329 + }, + { + "Date+Time": "2014-12-23T00:00:00Z", + "Hs (total) (m)": 3.4677, + "Tp (total) (s)": 10.1428 + }, + { + "Date+Time": "2014-12-24T00:00:00Z", + "Hs (total) (m)": 4.4076, + "Tp (total) (s)": 15.4149 + }, + { + "Date+Time": "2014-12-25T00:00:00Z", + "Hs (total) (m)": 2.7963, + "Tp (total) (s)": 12.669 + }, + { + "Date+Time": "2014-12-26T00:00:00Z", + "Hs (total) (m)": 2.2782, + "Tp (total) (s)": 10.8089 + }, + { + "Date+Time": "2014-12-27T00:00:00Z", + "Hs (total) (m)": 1.7235, + "Tp (total) (s)": 9.8766 + }, + { + "Date+Time": "2014-12-28T00:00:00Z", + "Hs (total) (m)": 1.6976, + "Tp (total) (s)": 8.4613 + }, + { + "Date+Time": "2014-12-29T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 7.8692 + }, + { + "Date+Time": "2014-12-30T00:00:00Z", + "Hs (total) (m)": 1.7205, + "Tp (total) (s)": 9.4653 + }, + { + "Date+Time": "2014-12-31T00:00:00Z", + "Hs (total) (m)": 1.9738, + "Tp (total) (s)": 8.5162 + }, + { + "Date+Time": "2015-01-01T00:00:00Z", + "Hs (total) (m)": 2.9481, + "Tp (total) (s)": 10.4152 + }, + { + "Date+Time": "2015-01-02T00:00:00Z", + "Hs (total) (m)": 3.2304, + "Tp (total) (s)": 10.6998 + }, + { + "Date+Time": "2015-01-03T00:00:00Z", + "Hs (total) (m)": 3.2105, + "Tp (total) (s)": 12.5271 + }, + { + "Date+Time": "2015-01-04T00:00:00Z", + "Hs (total) (m)": 2.6765, + "Tp (total) (s)": 12.6843 + }, + { + "Date+Time": "2015-01-05T00:00:00Z", + "Hs (total) (m)": 2.5513, + "Tp (total) (s)": 11.166 + }, + { + "Date+Time": "2015-01-06T00:00:00Z", + "Hs (total) (m)": 2.5369, + "Tp (total) (s)": 11.7512 + }, + { + "Date+Time": "2015-01-07T00:00:00Z", + "Hs (total) (m)": 3.8949, + "Tp (total) (s)": 14.0263 + }, + { + "Date+Time": "2015-01-08T00:00:00Z", + "Hs (total) (m)": 4.1116, + "Tp (total) (s)": 12.637 + }, + { + "Date+Time": "2015-01-09T00:00:00Z", + "Hs (total) (m)": 4.8364, + "Tp (total) (s)": 15.1105 + }, + { + "Date+Time": "2015-01-10T00:00:00Z", + "Hs (total) (m)": 5.5868, + "Tp (total) (s)": 13.9461 + }, + { + "Date+Time": "2015-01-11T00:00:00Z", + "Hs (total) (m)": 4.5953, + "Tp (total) (s)": 13.7425 + }, + { + "Date+Time": "2015-01-12T00:00:00Z", + "Hs (total) (m)": 5.5107, + "Tp (total) (s)": 14.4848 + }, + { + "Date+Time": "2015-01-13T00:00:00Z", + "Hs (total) (m)": 4.854, + "Tp (total) (s)": 14.6565 + }, + { + "Date+Time": "2015-01-14T00:00:00Z", + "Hs (total) (m)": 4.4031, + "Tp (total) (s)": 14.3284 + }, + { + "Date+Time": "2015-01-15T00:00:00Z", + "Hs (total) (m)": 6.0092, + "Tp (total) (s)": 14.007 + }, + { + "Date+Time": "2015-01-16T00:00:00Z", + "Hs (total) (m)": 5.1167, + "Tp (total) (s)": 14.3387 + }, + { + "Date+Time": "2015-01-17T00:00:00Z", + "Hs (total) (m)": 3.5913, + "Tp (total) (s)": 14.1209 + }, + { + "Date+Time": "2015-01-18T00:00:00Z", + "Hs (total) (m)": 2.4796, + "Tp (total) (s)": 13.6494 + }, + { + "Date+Time": "2015-01-19T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 11.4673 + }, + { + "Date+Time": "2015-01-20T00:00:00Z", + "Hs (total) (m)": 2.1401, + "Tp (total) (s)": 9.9025 + }, + { + "Date+Time": "2015-01-21T00:00:00Z", + "Hs (total) (m)": 3.0152, + "Tp (total) (s)": 16.7104 + }, + { + "Date+Time": "2015-01-22T00:00:00Z", + "Hs (total) (m)": 3.1434, + "Tp (total) (s)": 15.595 + }, + { + "Date+Time": "2015-01-23T00:00:00Z", + "Hs (total) (m)": 2.2736, + "Tp (total) (s)": 14.2949 + }, + { + "Date+Time": "2015-01-24T00:00:00Z", + "Hs (total) (m)": 1.8685, + "Tp (total) (s)": 10.0764 + }, + { + "Date+Time": "2015-01-25T00:00:00Z", + "Hs (total) (m)": 2.3621, + "Tp (total) (s)": 14.9396 + }, + { + "Date+Time": "2015-01-26T00:00:00Z", + "Hs (total) (m)": 2.8298, + "Tp (total) (s)": 14.2529 + }, + { + "Date+Time": "2015-01-27T00:00:00Z", + "Hs (total) (m)": 2.3339, + "Tp (total) (s)": 12.4866 + }, + { + "Date+Time": "2015-01-28T00:00:00Z", + "Hs (total) (m)": 2.6986, + "Tp (total) (s)": 12.3486 + }, + { + "Date+Time": "2015-01-29T00:00:00Z", + "Hs (total) (m)": 3.5875, + "Tp (total) (s)": 13.5281 + }, + { + "Date+Time": "2015-01-30T00:00:00Z", + "Hs (total) (m)": 4.0796, + "Tp (total) (s)": 15.1494 + }, + { + "Date+Time": "2015-01-31T00:00:00Z", + "Hs (total) (m)": 3.328, + "Tp (total) (s)": 14.716 + }, + { + "Date+Time": "2015-02-01T00:00:00Z", + "Hs (total) (m)": 2.1607, + "Tp (total) (s)": 12.9086 + }, + { + "Date+Time": "2015-02-02T00:00:00Z", + "Hs (total) (m)": 1.5687, + "Tp (total) (s)": 11.6825 + }, + { + "Date+Time": "2015-02-03T00:00:00Z", + "Hs (total) (m)": 1.413, + "Tp (total) (s)": 10.5632 + }, + { + "Date+Time": "2015-02-04T00:00:00Z", + "Hs (total) (m)": 1.2009, + "Tp (total) (s)": 10.3008 + }, + { + "Date+Time": "2015-02-05T00:00:00Z", + "Hs (total) (m)": 0.9774, + "Tp (total) (s)": 10.2367 + }, + { + "Date+Time": "2015-02-06T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 12.4355 + }, + { + "Date+Time": "2015-02-07T00:00:00Z", + "Hs (total) (m)": 1.1322, + "Tp (total) (s)": 12.2044 + }, + { + "Date+Time": "2015-02-08T00:00:00Z", + "Hs (total) (m)": 1.0826, + "Tp (total) (s)": 13.0596 + }, + { + "Date+Time": "2015-02-09T00:00:00Z", + "Hs (total) (m)": 0.9598, + "Tp (total) (s)": 12.8666 + }, + { + "Date+Time": "2015-02-10T00:00:00Z", + "Hs (total) (m)": 0.8393, + "Tp (total) (s)": 12.1616 + }, + { + "Date+Time": "2015-02-11T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 12.9681 + }, + { + "Date+Time": "2015-02-12T00:00:00Z", + "Hs (total) (m)": 1.2047, + "Tp (total) (s)": 12.6614 + }, + { + "Date+Time": "2015-02-13T00:00:00Z", + "Hs (total) (m)": 2.6215, + "Tp (total) (s)": 9.1487 + }, + { + "Date+Time": "2015-02-14T00:00:00Z", + "Hs (total) (m)": 2.7337, + "Tp (total) (s)": 14.1034 + }, + { + "Date+Time": "2015-02-15T00:00:00Z", + "Hs (total) (m)": 2.2935, + "Tp (total) (s)": 13.7059 + }, + { + "Date+Time": "2015-02-16T00:00:00Z", + "Hs (total) (m)": 2.7848, + "Tp (total) (s)": 15.0861 + }, + { + "Date+Time": "2015-02-17T00:00:00Z", + "Hs (total) (m)": 2.9641, + "Tp (total) (s)": 14.5756 + }, + { + "Date+Time": "2015-02-18T00:00:00Z", + "Hs (total) (m)": 3.6134, + "Tp (total) (s)": 14.7176 + }, + { + "Date+Time": "2015-02-19T00:00:00Z", + "Hs (total) (m)": 3.6737, + "Tp (total) (s)": 11.5993 + }, + { + "Date+Time": "2015-02-20T00:00:00Z", + "Hs (total) (m)": 3.28, + "Tp (total) (s)": 13.8386 + }, + { + "Date+Time": "2015-02-21T00:00:00Z", + "Hs (total) (m)": 2.8924, + "Tp (total) (s)": 14.4276 + }, + { + "Date+Time": "2015-02-22T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 12.138 + }, + { + "Date+Time": "2015-02-23T00:00:00Z", + "Hs (total) (m)": 3.7255, + "Tp (total) (s)": 11.436 + }, + { + "Date+Time": "2015-02-24T00:00:00Z", + "Hs (total) (m)": 5.8013, + "Tp (total) (s)": 16.3151 + }, + { + "Date+Time": "2015-02-25T00:00:00Z", + "Hs (total) (m)": 4.8036, + "Tp (total) (s)": 16.1969 + }, + { + "Date+Time": "2015-02-26T00:00:00Z", + "Hs (total) (m)": 3.6966, + "Tp (total) (s)": 12.624 + }, + { + "Date+Time": "2015-02-27T00:00:00Z", + "Hs (total) (m)": 3.5554, + "Tp (total) (s)": 13.6372 + }, + { + "Date+Time": "2015-02-28T00:00:00Z", + "Hs (total) (m)": 3.6981, + "Tp (total) (s)": 15.2532 + }, + { + "Date+Time": "2015-03-01T00:00:00Z", + "Hs (total) (m)": 4.2207, + "Tp (total) (s)": 13.0955 + }, + { + "Date+Time": "2015-03-02T00:00:00Z", + "Hs (total) (m)": 3.9583, + "Tp (total) (s)": 13.4388 + }, + { + "Date+Time": "2015-03-03T00:00:00Z", + "Hs (total) (m)": 4.0338, + "Tp (total) (s)": 13.2 + }, + { + "Date+Time": "2015-03-04T00:00:00Z", + "Hs (total) (m)": 3.8423, + "Tp (total) (s)": 14.0011 + }, + { + "Date+Time": "2015-03-05T00:00:00Z", + "Hs (total) (m)": 3.2311, + "Tp (total) (s)": 13.9431 + }, + { + "Date+Time": "2015-03-06T00:00:00Z", + "Hs (total) (m)": 3.8293, + "Tp (total) (s)": 16.0146 + }, + { + "Date+Time": "2015-03-07T00:00:00Z", + "Hs (total) (m)": 4.8989, + "Tp (total) (s)": 12.9629 + }, + { + "Date+Time": "2015-03-08T00:00:00Z", + "Hs (total) (m)": 4.4885, + "Tp (total) (s)": 13.8295 + }, + { + "Date+Time": "2015-03-09T00:00:00Z", + "Hs (total) (m)": 3.1594, + "Tp (total) (s)": 13.9103 + }, + { + "Date+Time": "2015-03-10T00:00:00Z", + "Hs (total) (m)": 4.1368, + "Tp (total) (s)": 14.0118 + }, + { + "Date+Time": "2015-03-11T00:00:00Z", + "Hs (total) (m)": 3.1724, + "Tp (total) (s)": 13.5395 + }, + { + "Date+Time": "2015-03-12T00:00:00Z", + "Hs (total) (m)": 2.2881, + "Tp (total) (s)": 9.624 + }, + { + "Date+Time": "2015-03-13T00:00:00Z", + "Hs (total) (m)": 2.8108, + "Tp (total) (s)": 12.6072 + }, + { + "Date+Time": "2015-03-14T00:00:00Z", + "Hs (total) (m)": 2.7047, + "Tp (total) (s)": 13.966 + }, + { + "Date+Time": "2015-03-15T00:00:00Z", + "Hs (total) (m)": 3.0694, + "Tp (total) (s)": 15.2837 + }, + { + "Date+Time": "2015-03-16T00:00:00Z", + "Hs (total) (m)": 2.6818, + "Tp (total) (s)": 14.494 + }, + { + "Date+Time": "2015-03-17T00:00:00Z", + "Hs (total) (m)": 2.1348, + "Tp (total) (s)": 12.772 + }, + { + "Date+Time": "2015-03-18T00:00:00Z", + "Hs (total) (m)": 1.5427, + "Tp (total) (s)": 11.8358 + }, + { + "Date+Time": "2015-03-19T00:00:00Z", + "Hs (total) (m)": 1.1193, + "Tp (total) (s)": 11.2644 + }, + { + "Date+Time": "2015-03-20T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 14.1385 + }, + { + "Date+Time": "2015-03-21T00:00:00Z", + "Hs (total) (m)": 1.7624, + "Tp (total) (s)": 13.7158 + }, + { + "Date+Time": "2015-03-22T00:00:00Z", + "Hs (total) (m)": 1.4077, + "Tp (total) (s)": 12.463 + }, + { + "Date+Time": "2015-03-23T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 13.229 + }, + { + "Date+Time": "2015-03-24T00:00:00Z", + "Hs (total) (m)": 1.809, + "Tp (total) (s)": 11.2278 + }, + { + "Date+Time": "2015-03-25T00:00:00Z", + "Hs (total) (m)": 1.7953, + "Tp (total) (s)": 10.8753 + }, + { + "Date+Time": "2015-03-26T00:00:00Z", + "Hs (total) (m)": 1.9539, + "Tp (total) (s)": 10.5495 + }, + { + "Date+Time": "2015-03-27T00:00:00Z", + "Hs (total) (m)": 1.7022, + "Tp (total) (s)": 8.8076 + }, + { + "Date+Time": "2015-03-28T00:00:00Z", + "Hs (total) (m)": 2.356, + "Tp (total) (s)": 11.2735 + }, + { + "Date+Time": "2015-03-29T00:00:00Z", + "Hs (total) (m)": 3.18, + "Tp (total) (s)": 10.6502 + }, + { + "Date+Time": "2015-03-30T00:00:00Z", + "Hs (total) (m)": 3.3151, + "Tp (total) (s)": 11.5017 + }, + { + "Date+Time": "2015-03-31T00:00:00Z", + "Hs (total) (m)": 4.0925, + "Tp (total) (s)": 11.597 + }, + { + "Date+Time": "2015-04-01T00:00:00Z", + "Hs (total) (m)": 3.6721, + "Tp (total) (s)": 12.4714 + }, + { + "Date+Time": "2015-04-02T00:00:00Z", + "Hs (total) (m)": 3.1259, + "Tp (total) (s)": 12.6049 + }, + { + "Date+Time": "2015-04-03T00:00:00Z", + "Hs (total) (m)": 2.2507, + "Tp (total) (s)": 12.2517 + }, + { + "Date+Time": "2015-04-04T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 10.4961 + }, + { + "Date+Time": "2015-04-05T00:00:00Z", + "Hs (total) (m)": 1.5999, + "Tp (total) (s)": 10.3847 + }, + { + "Date+Time": "2015-04-06T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 11.0775 + }, + { + "Date+Time": "2015-04-07T00:00:00Z", + "Hs (total) (m)": 1.1368, + "Tp (total) (s)": 10.9371 + }, + { + "Date+Time": "2015-04-08T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 10.3465 + }, + { + "Date+Time": "2015-04-09T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 15.3287 + }, + { + "Date+Time": "2015-04-10T00:00:00Z", + "Hs (total) (m)": 1.6945, + "Tp (total) (s)": 14.8709 + }, + { + "Date+Time": "2015-04-11T00:00:00Z", + "Hs (total) (m)": 1.9417, + "Tp (total) (s)": 11.7466 + }, + { + "Date+Time": "2015-04-12T00:00:00Z", + "Hs (total) (m)": 2.607, + "Tp (total) (s)": 10.7112 + }, + { + "Date+Time": "2015-04-13T00:00:00Z", + "Hs (total) (m)": 2.2324, + "Tp (total) (s)": 10.8379 + }, + { + "Date+Time": "2015-04-14T00:00:00Z", + "Hs (total) (m)": 2.4522, + "Tp (total) (s)": 10.313 + }, + { + "Date+Time": "2015-04-15T00:00:00Z", + "Hs (total) (m)": 2.3904, + "Tp (total) (s)": 12.7934 + }, + { + "Date+Time": "2015-04-16T00:00:00Z", + "Hs (total) (m)": 1.8448, + "Tp (total) (s)": 12.4012 + }, + { + "Date+Time": "2015-04-17T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 11.5177 + }, + { + "Date+Time": "2015-04-18T00:00:00Z", + "Hs (total) (m)": 1.1467, + "Tp (total) (s)": 10.6677 + }, + { + "Date+Time": "2015-04-19T00:00:00Z", + "Hs (total) (m)": 1.2581, + "Tp (total) (s)": 18.9581 + }, + { + "Date+Time": "2015-04-20T00:00:00Z", + "Hs (total) (m)": 1.7609, + "Tp (total) (s)": 15.8666 + }, + { + "Date+Time": "2015-04-21T00:00:00Z", + "Hs (total) (m)": 1.4191, + "Tp (total) (s)": 13.6486 + }, + { + "Date+Time": "2015-04-22T00:00:00Z", + "Hs (total) (m)": 1.1185, + "Tp (total) (s)": 11.375 + }, + { + "Date+Time": "2015-04-23T00:00:00Z", + "Hs (total) (m)": 1.1673, + "Tp (total) (s)": 11.0271 + }, + { + "Date+Time": "2015-04-24T00:00:00Z", + "Hs (total) (m)": 1.2726, + "Tp (total) (s)": 14.1621 + }, + { + "Date+Time": "2015-04-25T00:00:00Z", + "Hs (total) (m)": 1.4786, + "Tp (total) (s)": 10.6883 + }, + { + "Date+Time": "2015-04-26T00:00:00Z", + "Hs (total) (m)": 1.0414, + "Tp (total) (s)": 10.58 + }, + { + "Date+Time": "2015-04-27T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 10.4282 + }, + { + "Date+Time": "2015-04-28T00:00:00Z", + "Hs (total) (m)": 1.4031, + "Tp (total) (s)": 9.6667 + }, + { + "Date+Time": "2015-04-29T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 9.3753 + }, + { + "Date+Time": "2015-04-30T00:00:00Z", + "Hs (total) (m)": 1.9341, + "Tp (total) (s)": 9.4691 + }, + { + "Date+Time": "2015-05-01T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 8.813 + }, + { + "Date+Time": "2015-05-02T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 9.5378 + }, + { + "Date+Time": "2015-05-03T00:00:00Z", + "Hs (total) (m)": 1.5831, + "Tp (total) (s)": 9.4409 + }, + { + "Date+Time": "2015-05-04T00:00:00Z", + "Hs (total) (m)": 1.7083, + "Tp (total) (s)": 7.1299 + }, + { + "Date+Time": "2015-05-05T00:00:00Z", + "Hs (total) (m)": 1.6472, + "Tp (total) (s)": 7.9386 + }, + { + "Date+Time": "2015-05-06T00:00:00Z", + "Hs (total) (m)": 1.8075, + "Tp (total) (s)": 8.3972 + }, + { + "Date+Time": "2015-05-07T00:00:00Z", + "Hs (total) (m)": 1.5152, + "Tp (total) (s)": 8.9961 + }, + { + "Date+Time": "2015-05-08T00:00:00Z", + "Hs (total) (m)": 1.1963, + "Tp (total) (s)": 9.5431 + }, + { + "Date+Time": "2015-05-09T00:00:00Z", + "Hs (total) (m)": 0.8415, + "Tp (total) (s)": 10.5075 + }, + { + "Date+Time": "2015-05-10T00:00:00Z", + "Hs (total) (m)": 1.8174, + "Tp (total) (s)": 7.9295 + }, + { + "Date+Time": "2015-05-11T00:00:00Z", + "Hs (total) (m)": 2.9801, + "Tp (total) (s)": 11.1873 + }, + { + "Date+Time": "2015-05-12T00:00:00Z", + "Hs (total) (m)": 3.6332, + "Tp (total) (s)": 11.7046 + }, + { + "Date+Time": "2015-05-13T00:00:00Z", + "Hs (total) (m)": 2.5864, + "Tp (total) (s)": 10.9867 + }, + { + "Date+Time": "2015-05-14T00:00:00Z", + "Hs (total) (m)": 1.7617, + "Tp (total) (s)": 9.9376 + }, + { + "Date+Time": "2015-05-15T00:00:00Z", + "Hs (total) (m)": 1.4878, + "Tp (total) (s)": 11.5787 + }, + { + "Date+Time": "2015-05-16T00:00:00Z", + "Hs (total) (m)": 1.8708, + "Tp (total) (s)": 10.5754 + }, + { + "Date+Time": "2015-05-17T00:00:00Z", + "Hs (total) (m)": 2.3659, + "Tp (total) (s)": 11.6855 + }, + { + "Date+Time": "2015-05-18T00:00:00Z", + "Hs (total) (m)": 2.5773, + "Tp (total) (s)": 12.8201 + }, + { + "Date+Time": "2015-05-19T00:00:00Z", + "Hs (total) (m)": 2.6879, + "Tp (total) (s)": 11.8328 + }, + { + "Date+Time": "2015-05-20T00:00:00Z", + "Hs (total) (m)": 2.3339, + "Tp (total) (s)": 11.5162 + }, + { + "Date+Time": "2015-05-21T00:00:00Z", + "Hs (total) (m)": 1.6587, + "Tp (total) (s)": 10.9745 + }, + { + "Date+Time": "2015-05-22T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 9.4729 + }, + { + "Date+Time": "2015-05-23T00:00:00Z", + "Hs (total) (m)": 1.2719, + "Tp (total) (s)": 11.3407 + }, + { + "Date+Time": "2015-05-24T00:00:00Z", + "Hs (total) (m)": 1.252, + "Tp (total) (s)": 11.2606 + }, + { + "Date+Time": "2015-05-25T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 11.0691 + }, + { + "Date+Time": "2015-05-26T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 12.315 + }, + { + "Date+Time": "2015-05-27T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 12.2288 + }, + { + "Date+Time": "2015-05-28T00:00:00Z", + "Hs (total) (m)": 1.7327, + "Tp (total) (s)": 10.6685 + }, + { + "Date+Time": "2015-05-29T00:00:00Z", + "Hs (total) (m)": 1.6579, + "Tp (total) (s)": 9.2082 + }, + { + "Date+Time": "2015-05-30T00:00:00Z", + "Hs (total) (m)": 1.5107, + "Tp (total) (s)": 9.2723 + }, + { + "Date+Time": "2015-05-31T00:00:00Z", + "Hs (total) (m)": 1.4901, + "Tp (total) (s)": 8.6802 + }, + { + "Date+Time": "2015-06-01T00:00:00Z", + "Hs (total) (m)": 2.1538, + "Tp (total) (s)": 9.9765 + }, + { + "Date+Time": "2015-06-02T00:00:00Z", + "Hs (total) (m)": 3.0038, + "Tp (total) (s)": 10.5716 + }, + { + "Date+Time": "2015-06-03T00:00:00Z", + "Hs (total) (m)": 2.823, + "Tp (total) (s)": 10.387 + }, + { + "Date+Time": "2015-06-04T00:00:00Z", + "Hs (total) (m)": 2.2332, + "Tp (total) (s)": 12.5294 + }, + { + "Date+Time": "2015-06-05T00:00:00Z", + "Hs (total) (m)": 2.0348, + "Tp (total) (s)": 12.109 + }, + { + "Date+Time": "2015-06-06T00:00:00Z", + "Hs (total) (m)": 3.3708, + "Tp (total) (s)": 10.4274 + }, + { + "Date+Time": "2015-06-07T00:00:00Z", + "Hs (total) (m)": 2.3339, + "Tp (total) (s)": 10.239 + }, + { + "Date+Time": "2015-06-08T00:00:00Z", + "Hs (total) (m)": 1.4779, + "Tp (total) (s)": 9.8163 + }, + { + "Date+Time": "2015-06-09T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 9.4172 + }, + { + "Date+Time": "2015-06-10T00:00:00Z", + "Hs (total) (m)": 0.7752, + "Tp (total) (s)": 8.5574 + }, + { + "Date+Time": "2015-06-11T00:00:00Z", + "Hs (total) (m)": 0.7073, + "Tp (total) (s)": 7.9257 + }, + { + "Date+Time": "2015-06-12T00:00:00Z", + "Hs (total) (m)": 0.6615, + "Tp (total) (s)": 13.8417 + }, + { + "Date+Time": "2015-06-13T00:00:00Z", + "Hs (total) (m)": 0.6561, + "Tp (total) (s)": 13.1527 + }, + { + "Date+Time": "2015-06-14T00:00:00Z", + "Hs (total) (m)": 0.5974, + "Tp (total) (s)": 2.7062 + }, + { + "Date+Time": "2015-06-15T00:00:00Z", + "Hs (total) (m)": 0.5158, + "Tp (total) (s)": 8.8603 + }, + { + "Date+Time": "2015-06-16T00:00:00Z", + "Hs (total) (m)": 1.0041, + "Tp (total) (s)": 8.5108 + }, + { + "Date+Time": "2015-06-17T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 6.9735 + }, + { + "Date+Time": "2015-06-18T00:00:00Z", + "Hs (total) (m)": 1.5633, + "Tp (total) (s)": 12.4233 + }, + { + "Date+Time": "2015-06-19T00:00:00Z", + "Hs (total) (m)": 1.4809, + "Tp (total) (s)": 11.5337 + }, + { + "Date+Time": "2015-06-20T00:00:00Z", + "Hs (total) (m)": 1.3497, + "Tp (total) (s)": 10.5693 + }, + { + "Date+Time": "2015-06-21T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 9.2929 + }, + { + "Date+Time": "2015-06-22T00:00:00Z", + "Hs (total) (m)": 1.8319, + "Tp (total) (s)": 11.6764 + }, + { + "Date+Time": "2015-06-23T00:00:00Z", + "Hs (total) (m)": 1.5313, + "Tp (total) (s)": 11.3987 + }, + { + "Date+Time": "2015-06-24T00:00:00Z", + "Hs (total) (m)": 1.2894, + "Tp (total) (s)": 10.3275 + }, + { + "Date+Time": "2015-06-25T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 11.0202 + }, + { + "Date+Time": "2015-06-26T00:00:00Z", + "Hs (total) (m)": 2.2324, + "Tp (total) (s)": 9.6576 + }, + { + "Date+Time": "2015-06-27T00:00:00Z", + "Hs (total) (m)": 2.0669, + "Tp (total) (s)": 9.9483 + }, + { + "Date+Time": "2015-06-28T00:00:00Z", + "Hs (total) (m)": 2.6849, + "Tp (total) (s)": 10.126 + }, + { + "Date+Time": "2015-06-29T00:00:00Z", + "Hs (total) (m)": 2.2462, + "Tp (total) (s)": 9.7262 + }, + { + "Date+Time": "2015-06-30T00:00:00Z", + "Hs (total) (m)": 2.3186, + "Tp (total) (s)": 9.6789 + }, + { + "Date+Time": "2015-07-01T00:00:00Z", + "Hs (total) (m)": 2.282, + "Tp (total) (s)": 12.8666 + }, + { + "Date+Time": "2015-07-02T00:00:00Z", + "Hs (total) (m)": 1.2604, + "Tp (total) (s)": 10.6059 + }, + { + "Date+Time": "2015-07-03T00:00:00Z", + "Hs (total) (m)": 1.3024, + "Tp (total) (s)": 6.5218 + }, + { + "Date+Time": "2015-07-04T00:00:00Z", + "Hs (total) (m)": 1.4924, + "Tp (total) (s)": 9.592 + }, + { + "Date+Time": "2015-07-05T00:00:00Z", + "Hs (total) (m)": 1.7548, + "Tp (total) (s)": 8.7329 + }, + { + "Date+Time": "2015-07-06T00:00:00Z", + "Hs (total) (m)": 1.4267, + "Tp (total) (s)": 8.7298 + }, + { + "Date+Time": "2015-07-07T00:00:00Z", + "Hs (total) (m)": 1.941, + "Tp (total) (s)": 8.2842 + }, + { + "Date+Time": "2015-07-08T00:00:00Z", + "Hs (total) (m)": 2.0905, + "Tp (total) (s)": 9.1678 + }, + { + "Date+Time": "2015-07-09T00:00:00Z", + "Hs (total) (m)": 1.3627, + "Tp (total) (s)": 9.2708 + }, + { + "Date+Time": "2015-07-10T00:00:00Z", + "Hs (total) (m)": 1.474, + "Tp (total) (s)": 5.7421 + }, + { + "Date+Time": "2015-07-11T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 10.0909 + }, + { + "Date+Time": "2015-07-12T00:00:00Z", + "Hs (total) (m)": 2.4079, + "Tp (total) (s)": 9.4104 + }, + { + "Date+Time": "2015-07-13T00:00:00Z", + "Hs (total) (m)": 1.587, + "Tp (total) (s)": 9.3822 + }, + { + "Date+Time": "2015-07-14T00:00:00Z", + "Hs (total) (m)": 1.3474, + "Tp (total) (s)": 8.5864 + }, + { + "Date+Time": "2015-07-15T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 7.7799 + }, + { + "Date+Time": "2015-07-16T00:00:00Z", + "Hs (total) (m)": 0.7828, + "Tp (total) (s)": 7.651 + }, + { + "Date+Time": "2015-07-17T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 4.8616 + }, + { + "Date+Time": "2015-07-18T00:00:00Z", + "Hs (total) (m)": 2.2576, + "Tp (total) (s)": 8.3674 + }, + { + "Date+Time": "2015-07-19T00:00:00Z", + "Hs (total) (m)": 1.4336, + "Tp (total) (s)": 7.0482 + }, + { + "Date+Time": "2015-07-20T00:00:00Z", + "Hs (total) (m)": 0.8202, + "Tp (total) (s)": 6.637 + }, + { + "Date+Time": "2015-07-21T00:00:00Z", + "Hs (total) (m)": 2.2187, + "Tp (total) (s)": 8.4193 + }, + { + "Date+Time": "2015-07-22T00:00:00Z", + "Hs (total) (m)": 1.4801, + "Tp (total) (s)": 9.6416 + }, + { + "Date+Time": "2015-07-23T00:00:00Z", + "Hs (total) (m)": 1.4168, + "Tp (total) (s)": 9.1128 + }, + { + "Date+Time": "2015-07-24T00:00:00Z", + "Hs (total) (m)": 1.0399, + "Tp (total) (s)": 8.8168 + }, + { + "Date+Time": "2015-07-25T00:00:00Z", + "Hs (total) (m)": 0.8805, + "Tp (total) (s)": 7.8112 + }, + { + "Date+Time": "2015-07-26T00:00:00Z", + "Hs (total) (m)": 1.1879, + "Tp (total) (s)": 5.1347 + }, + { + "Date+Time": "2015-07-27T00:00:00Z", + "Hs (total) (m)": 1.9944, + "Tp (total) (s)": 8.0004 + }, + { + "Date+Time": "2015-07-28T00:00:00Z", + "Hs (total) (m)": 2.118, + "Tp (total) (s)": 8.9251 + }, + { + "Date+Time": "2015-07-29T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 7.0238 + }, + { + "Date+Time": "2015-07-30T00:00:00Z", + "Hs (total) (m)": 0.9705, + "Tp (total) (s)": 6.5912 + }, + { + "Date+Time": "2015-07-31T00:00:00Z", + "Hs (total) (m)": 1.558, + "Tp (total) (s)": 8.6276 + }, + { + "Date+Time": "2015-08-01T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 8.5337 + }, + { + "Date+Time": "2015-08-02T00:00:00Z", + "Hs (total) (m)": 1.4496, + "Tp (total) (s)": 8.5047 + }, + { + "Date+Time": "2015-08-03T00:00:00Z", + "Hs (total) (m)": 2.6162, + "Tp (total) (s)": 10.4389 + }, + { + "Date+Time": "2015-08-04T00:00:00Z", + "Hs (total) (m)": 4.1841, + "Tp (total) (s)": 11.5268 + }, + { + "Date+Time": "2015-08-05T00:00:00Z", + "Hs (total) (m)": 2.3225, + "Tp (total) (s)": 9.5515 + }, + { + "Date+Time": "2015-08-06T00:00:00Z", + "Hs (total) (m)": 1.1658, + "Tp (total) (s)": 7.9424 + }, + { + "Date+Time": "2015-08-07T00:00:00Z", + "Hs (total) (m)": 1.1132, + "Tp (total) (s)": 8.4613 + }, + { + "Date+Time": "2015-08-08T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 7.9249 + }, + { + "Date+Time": "2015-08-09T00:00:00Z", + "Hs (total) (m)": 2.1157, + "Tp (total) (s)": 8.784 + }, + { + "Date+Time": "2015-08-10T00:00:00Z", + "Hs (total) (m)": 2.0219, + "Tp (total) (s)": 10.8303 + }, + { + "Date+Time": "2015-08-11T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 9.2914 + }, + { + "Date+Time": "2015-08-12T00:00:00Z", + "Hs (total) (m)": 1.1322, + "Tp (total) (s)": 8.9816 + }, + { + "Date+Time": "2015-08-13T00:00:00Z", + "Hs (total) (m)": 0.9171, + "Tp (total) (s)": 9.0625 + }, + { + "Date+Time": "2015-08-14T00:00:00Z", + "Hs (total) (m)": 1.2223, + "Tp (total) (s)": 11.0698 + }, + { + "Date+Time": "2015-08-15T00:00:00Z", + "Hs (total) (m)": 2.1149, + "Tp (total) (s)": 13.9515 + }, + { + "Date+Time": "2015-08-16T00:00:00Z", + "Hs (total) (m)": 1.4672, + "Tp (total) (s)": 10.7547 + }, + { + "Date+Time": "2015-08-17T00:00:00Z", + "Hs (total) (m)": 0.8911, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "2015-08-18T00:00:00Z", + "Hs (total) (m)": 0.7324, + "Tp (total) (s)": 7.8211 + }, + { + "Date+Time": "2015-08-19T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 5.8229 + }, + { + "Date+Time": "2015-08-20T00:00:00Z", + "Hs (total) (m)": 1.3665, + "Tp (total) (s)": 8.0142 + }, + { + "Date+Time": "2015-08-21T00:00:00Z", + "Hs (total) (m)": 2.0363, + "Tp (total) (s)": 7.6884 + }, + { + "Date+Time": "2015-08-22T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 9.4798 + }, + { + "Date+Time": "2015-08-23T00:00:00Z", + "Hs (total) (m)": 1.6839, + "Tp (total) (s)": 11.4177 + }, + { + "Date+Time": "2015-08-24T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 9.9643 + }, + { + "Date+Time": "2015-08-25T00:00:00Z", + "Hs (total) (m)": 1.5122, + "Tp (total) (s)": 8.8893 + }, + { + "Date+Time": "2015-08-26T00:00:00Z", + "Hs (total) (m)": 1.5664, + "Tp (total) (s)": 7.6273 + }, + { + "Date+Time": "2015-08-27T00:00:00Z", + "Hs (total) (m)": 2.2988, + "Tp (total) (s)": 8.5055 + }, + { + "Date+Time": "2015-08-28T00:00:00Z", + "Hs (total) (m)": 1.9234, + "Tp (total) (s)": 8.0195 + }, + { + "Date+Time": "2015-08-29T00:00:00Z", + "Hs (total) (m)": 1.8525, + "Tp (total) (s)": 7.9012 + }, + { + "Date+Time": "2015-08-30T00:00:00Z", + "Hs (total) (m)": 1.2696, + "Tp (total) (s)": 8.2812 + }, + { + "Date+Time": "2015-08-31T00:00:00Z", + "Hs (total) (m)": 0.8606, + "Tp (total) (s)": 8.3766 + }, + { + "Date+Time": "2015-09-01T00:00:00Z", + "Hs (total) (m)": 0.6706, + "Tp (total) (s)": 8.5337 + }, + { + "Date+Time": "2015-09-02T00:00:00Z", + "Hs (total) (m)": 0.6966, + "Tp (total) (s)": 5.9793 + }, + { + "Date+Time": "2015-09-03T00:00:00Z", + "Hs (total) (m)": 0.5951, + "Tp (total) (s)": 5.7505 + }, + { + "Date+Time": "2015-09-04T00:00:00Z", + "Hs (total) (m)": 0.6333, + "Tp (total) (s)": 2.9717 + }, + { + "Date+Time": "2015-09-05T00:00:00Z", + "Hs (total) (m)": 0.7614, + "Tp (total) (s)": 5.9694 + }, + { + "Date+Time": "2015-09-06T00:00:00Z", + "Hs (total) (m)": 0.6577, + "Tp (total) (s)": 6.1838 + }, + { + "Date+Time": "2015-09-07T00:00:00Z", + "Hs (total) (m)": 0.4898, + "Tp (total) (s)": 7.7074 + }, + { + "Date+Time": "2015-09-08T00:00:00Z", + "Hs (total) (m)": 0.4463, + "Tp (total) (s)": 9.135 + }, + { + "Date+Time": "2015-09-09T00:00:00Z", + "Hs (total) (m)": 1.6037, + "Tp (total) (s)": 14.7015 + }, + { + "Date+Time": "2015-09-10T00:00:00Z", + "Hs (total) (m)": 2.208, + "Tp (total) (s)": 12.1769 + }, + { + "Date+Time": "2015-09-11T00:00:00Z", + "Hs (total) (m)": 2.3545, + "Tp (total) (s)": 11.5452 + }, + { + "Date+Time": "2015-09-12T00:00:00Z", + "Hs (total) (m)": 1.5885, + "Tp (total) (s)": 6.8606 + }, + { + "Date+Time": "2015-09-13T00:00:00Z", + "Hs (total) (m)": 1.3024, + "Tp (total) (s)": 10.3587 + }, + { + "Date+Time": "2015-09-14T00:00:00Z", + "Hs (total) (m)": 1.1132, + "Tp (total) (s)": 7.1192 + }, + { + "Date+Time": "2015-09-15T00:00:00Z", + "Hs (total) (m)": 1.5458, + "Tp (total) (s)": 9.3356 + }, + { + "Date+Time": "2015-09-16T00:00:00Z", + "Hs (total) (m)": 1.0208, + "Tp (total) (s)": 9.3524 + }, + { + "Date+Time": "2015-09-17T00:00:00Z", + "Hs (total) (m)": 0.8789, + "Tp (total) (s)": 8.3407 + }, + { + "Date+Time": "2015-09-18T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 9.9429 + }, + { + "Date+Time": "2015-09-19T00:00:00Z", + "Hs (total) (m)": 0.895, + "Tp (total) (s)": 9.1067 + }, + { + "Date+Time": "2015-09-20T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 6.4577 + }, + { + "Date+Time": "2015-09-21T00:00:00Z", + "Hs (total) (m)": 1.59, + "Tp (total) (s)": 9.415 + }, + { + "Date+Time": "2015-09-22T00:00:00Z", + "Hs (total) (m)": 1.87, + "Tp (total) (s)": 11.2934 + }, + { + "Date+Time": "2015-09-23T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 11.5398 + }, + { + "Date+Time": "2015-09-24T00:00:00Z", + "Hs (total) (m)": 2.2675, + "Tp (total) (s)": 8.8076 + }, + { + "Date+Time": "2015-09-25T00:00:00Z", + "Hs (total) (m)": 2.295, + "Tp (total) (s)": 12.7552 + }, + { + "Date+Time": "2015-09-26T00:00:00Z", + "Hs (total) (m)": 1.2505, + "Tp (total) (s)": 11.0836 + }, + { + "Date+Time": "2015-09-27T00:00:00Z", + "Hs (total) (m)": 1.5007, + "Tp (total) (s)": 7.7151 + }, + { + "Date+Time": "2015-09-28T00:00:00Z", + "Hs (total) (m)": 1.5641, + "Tp (total) (s)": 10.0856 + }, + { + "Date+Time": "2015-09-29T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 8.4239 + }, + { + "Date+Time": "2015-09-30T00:00:00Z", + "Hs (total) (m)": 1.1422, + "Tp (total) (s)": 10.5464 + }, + { + "Date+Time": "2015-10-01T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 9.6538 + }, + { + "Date+Time": "2015-10-02T00:00:00Z", + "Hs (total) (m)": 0.7469, + "Tp (total) (s)": 10.1115 + }, + { + "Date+Time": "2015-10-03T00:00:00Z", + "Hs (total) (m)": 0.6142, + "Tp (total) (s)": 9.4272 + }, + { + "Date+Time": "2015-10-04T00:00:00Z", + "Hs (total) (m)": 0.6508, + "Tp (total) (s)": 9.4699 + }, + { + "Date+Time": "2015-10-05T00:00:00Z", + "Hs (total) (m)": 0.8003, + "Tp (total) (s)": 8.6734 + }, + { + "Date+Time": "2015-10-06T00:00:00Z", + "Hs (total) (m)": 0.9896, + "Tp (total) (s)": 9.7186 + }, + { + "Date+Time": "2015-10-07T00:00:00Z", + "Hs (total) (m)": 1.7678, + "Tp (total) (s)": 10.2054 + }, + { + "Date+Time": "2015-10-08T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 13.6135 + }, + { + "Date+Time": "2015-10-09T00:00:00Z", + "Hs (total) (m)": 1.7823, + "Tp (total) (s)": 11.5436 + }, + { + "Date+Time": "2015-10-10T00:00:00Z", + "Hs (total) (m)": 1.7464, + "Tp (total) (s)": 12.0579 + }, + { + "Date+Time": "2015-10-11T00:00:00Z", + "Hs (total) (m)": 1.6907, + "Tp (total) (s)": 12.7392 + }, + { + "Date+Time": "2015-10-12T00:00:00Z", + "Hs (total) (m)": 1.0338, + "Tp (total) (s)": 10.7097 + }, + { + "Date+Time": "2015-10-13T00:00:00Z", + "Hs (total) (m)": 0.8286, + "Tp (total) (s)": 10.3175 + }, + { + "Date+Time": "2015-10-14T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 15.7605 + }, + { + "Date+Time": "2015-10-15T00:00:00Z", + "Hs (total) (m)": 1.9387, + "Tp (total) (s)": 13.6196 + }, + { + "Date+Time": "2015-10-16T00:00:00Z", + "Hs (total) (m)": 1.3421, + "Tp (total) (s)": 10.6708 + }, + { + "Date+Time": "2015-10-17T00:00:00Z", + "Hs (total) (m)": 0.8217, + "Tp (total) (s)": 9.5889 + }, + { + "Date+Time": "2015-10-18T00:00:00Z", + "Hs (total) (m)": 0.6035, + "Tp (total) (s)": 9.2082 + }, + { + "Date+Time": "2015-10-19T00:00:00Z", + "Hs (total) (m)": 0.5707, + "Tp (total) (s)": 10.4907 + }, + { + "Date+Time": "2015-10-20T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 9.7224 + }, + { + "Date+Time": "2015-10-21T00:00:00Z", + "Hs (total) (m)": 2.1706, + "Tp (total) (s)": 7.5961 + }, + { + "Date+Time": "2015-10-22T00:00:00Z", + "Hs (total) (m)": 3.003, + "Tp (total) (s)": 10.4724 + }, + { + "Date+Time": "2015-10-23T00:00:00Z", + "Hs (total) (m)": 2.9572, + "Tp (total) (s)": 14.2331 + }, + { + "Date+Time": "2015-10-24T00:00:00Z", + "Hs (total) (m)": 2.1187, + "Tp (total) (s)": 11.6543 + }, + { + "Date+Time": "2015-10-25T00:00:00Z", + "Hs (total) (m)": 2.5185, + "Tp (total) (s)": 11.7031 + }, + { + "Date+Time": "2015-10-26T00:00:00Z", + "Hs (total) (m)": 3.1961, + "Tp (total) (s)": 10.6685 + }, + { + "Date+Time": "2015-10-27T00:00:00Z", + "Hs (total) (m)": 2.6963, + "Tp (total) (s)": 12.5591 + }, + { + "Date+Time": "2015-10-28T00:00:00Z", + "Hs (total) (m)": 1.8921, + "Tp (total) (s)": 10.3366 + }, + { + "Date+Time": "2015-10-29T00:00:00Z", + "Hs (total) (m)": 1.8387, + "Tp (total) (s)": 5.6978 + }, + { + "Date+Time": "2015-10-30T00:00:00Z", + "Hs (total) (m)": 3.8018, + "Tp (total) (s)": 15.054 + }, + { + "Date+Time": "2015-10-31T00:00:00Z", + "Hs (total) (m)": 3.254, + "Tp (total) (s)": 12.8162 + }, + { + "Date+Time": "2015-11-01T00:00:00Z", + "Hs (total) (m)": 2.3179, + "Tp (total) (s)": 14.2102 + }, + { + "Date+Time": "2015-11-02T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 11.5841 + }, + { + "Date+Time": "2015-11-03T00:00:00Z", + "Hs (total) (m)": 1.8586, + "Tp (total) (s)": 12.7544 + }, + { + "Date+Time": "2015-11-04T00:00:00Z", + "Hs (total) (m)": 1.7899, + "Tp (total) (s)": 12.9452 + }, + { + "Date+Time": "2015-11-05T00:00:00Z", + "Hs (total) (m)": 1.4878, + "Tp (total) (s)": 10.68 + }, + { + "Date+Time": "2015-11-06T00:00:00Z", + "Hs (total) (m)": 1.7922, + "Tp (total) (s)": 10.7852 + }, + { + "Date+Time": "2015-11-07T00:00:00Z", + "Hs (total) (m)": 2.3774, + "Tp (total) (s)": 10.783 + }, + { + "Date+Time": "2015-11-08T00:00:00Z", + "Hs (total) (m)": 2.1729, + "Tp (total) (s)": 9.6469 + }, + { + "Date+Time": "2015-11-09T00:00:00Z", + "Hs (total) (m)": 3.8827, + "Tp (total) (s)": 8.6642 + }, + { + "Date+Time": "2015-11-10T00:00:00Z", + "Hs (total) (m)": 4.8647, + "Tp (total) (s)": 12.4004 + }, + { + "Date+Time": "2015-11-11T00:00:00Z", + "Hs (total) (m)": 2.9427, + "Tp (total) (s)": 12.5675 + }, + { + "Date+Time": "2015-11-12T00:00:00Z", + "Hs (total) (m)": 3.5188, + "Tp (total) (s)": 12.3852 + }, + { + "Date+Time": "2015-11-13T00:00:00Z", + "Hs (total) (m)": 4.1353, + "Tp (total) (s)": 12.3173 + }, + { + "Date+Time": "2015-11-14T00:00:00Z", + "Hs (total) (m)": 3.6592, + "Tp (total) (s)": 11.9129 + }, + { + "Date+Time": "2015-11-15T00:00:00Z", + "Hs (total) (m)": 4.9641, + "Tp (total) (s)": 11.1787 + }, + { + "Date+Time": "2015-11-16T00:00:00Z", + "Hs (total) (m)": 4.1818, + "Tp (total) (s)": 11.8641 + }, + { + "Date+Time": "2015-11-17T00:00:00Z", + "Hs (total) (m)": 2.3736, + "Tp (total) (s)": 12.4737 + }, + { + "Date+Time": "2015-11-18T00:00:00Z", + "Hs (total) (m)": 3.3761, + "Tp (total) (s)": 11.4132 + }, + { + "Date+Time": "2015-11-19T00:00:00Z", + "Hs (total) (m)": 3.7713, + "Tp (total) (s)": 11.1332 + }, + { + "Date+Time": "2015-11-20T00:00:00Z", + "Hs (total) (m)": 2.2988, + "Tp (total) (s)": 11.3704 + }, + { + "Date+Time": "2015-11-21T00:00:00Z", + "Hs (total) (m)": 1.9593, + "Tp (total) (s)": 8.9778 + }, + { + "Date+Time": "2015-11-22T00:00:00Z", + "Hs (total) (m)": 1.854, + "Tp (total) (s)": 9.5172 + }, + { + "Date+Time": "2015-11-23T00:00:00Z", + "Hs (total) (m)": 1.4031, + "Tp (total) (s)": 11.2651 + }, + { + "Date+Time": "2015-11-24T00:00:00Z", + "Hs (total) (m)": 1.5351, + "Tp (total) (s)": 7.5983 + }, + { + "Date+Time": "2015-11-25T00:00:00Z", + "Hs (total) (m)": 2.826, + "Tp (total) (s)": 13.5762 + }, + { + "Date+Time": "2015-11-26T00:00:00Z", + "Hs (total) (m)": 2.1935, + "Tp (total) (s)": 11.9594 + }, + { + "Date+Time": "2015-11-27T00:00:00Z", + "Hs (total) (m)": 2.1676, + "Tp (total) (s)": 9.6286 + }, + { + "Date+Time": "2015-11-28T00:00:00Z", + "Hs (total) (m)": 3.4875, + "Tp (total) (s)": 11.8419 + }, + { + "Date+Time": "2015-11-29T00:00:00Z", + "Hs (total) (m)": 4.3832, + "Tp (total) (s)": 13.139 + }, + { + "Date+Time": "2015-11-30T00:00:00Z", + "Hs (total) (m)": 3.9659, + "Tp (total) (s)": 13.7417 + }, + { + "Date+Time": "2015-12-01T00:00:00Z", + "Hs (total) (m)": 3.2937, + "Tp (total) (s)": 12.7079 + }, + { + "Date+Time": "2015-12-02T00:00:00Z", + "Hs (total) (m)": 4.8834, + "Tp (total) (s)": 11.8944 + }, + { + "Date+Time": "2015-12-03T00:00:00Z", + "Hs (total) (m)": 2.797, + "Tp (total) (s)": 13.0551 + }, + { + "Date+Time": "2015-12-04T00:00:00Z", + "Hs (total) (m)": 3.0816, + "Tp (total) (s)": 12.6019 + }, + { + "Date+Time": "2015-12-05T00:00:00Z", + "Hs (total) (m)": 6.5651, + "Tp (total) (s)": 13.1825 + }, + { + "Date+Time": "2015-12-06T00:00:00Z", + "Hs (total) (m)": 6.1697, + "Tp (total) (s)": 14.1501 + }, + { + "Date+Time": "2015-12-07T00:00:00Z", + "Hs (total) (m)": 3.3792, + "Tp (total) (s)": 13.6578 + }, + { + "Date+Time": "2015-12-08T00:00:00Z", + "Hs (total) (m)": 3.8209, + "Tp (total) (s)": 12.5233 + }, + { + "Date+Time": "2015-12-09T00:00:00Z", + "Hs (total) (m)": 4.0765, + "Tp (total) (s)": 13.1085 + }, + { + "Date+Time": "2015-12-10T00:00:00Z", + "Hs (total) (m)": 4.3291, + "Tp (total) (s)": 12.7445 + }, + { + "Date+Time": "2015-12-11T00:00:00Z", + "Hs (total) (m)": 3.4204, + "Tp (total) (s)": 12.8033 + }, + { + "Date+Time": "2015-12-12T00:00:00Z", + "Hs (total) (m)": 2.472, + "Tp (total) (s)": 12.7995 + }, + { + "Date+Time": "2015-12-13T00:00:00Z", + "Hs (total) (m)": 2.1546, + "Tp (total) (s)": 10.3786 + }, + { + "Date+Time": "2015-12-14T00:00:00Z", + "Hs (total) (m)": 1.8029, + "Tp (total) (s)": 10.2596 + }, + { + "Date+Time": "2015-12-15T00:00:00Z", + "Hs (total) (m)": 1.7228, + "Tp (total) (s)": 11.137 + }, + { + "Date+Time": "2015-12-16T00:00:00Z", + "Hs (total) (m)": 1.5915, + "Tp (total) (s)": 9.7522 + }, + { + "Date+Time": "2015-12-17T00:00:00Z", + "Hs (total) (m)": 2.9313, + "Tp (total) (s)": 11.3933 + }, + { + "Date+Time": "2015-12-18T00:00:00Z", + "Hs (total) (m)": 3.328, + "Tp (total) (s)": 11.5146 + }, + { + "Date+Time": "2015-12-19T00:00:00Z", + "Hs (total) (m)": 3.6821, + "Tp (total) (s)": 10.5678 + }, + { + "Date+Time": "2015-12-20T00:00:00Z", + "Hs (total) (m)": 4.4038, + "Tp (total) (s)": 14.3651 + }, + { + "Date+Time": "2015-12-21T00:00:00Z", + "Hs (total) (m)": 3.2113, + "Tp (total) (s)": 12.6034 + }, + { + "Date+Time": "2015-12-22T00:00:00Z", + "Hs (total) (m)": 3.9087, + "Tp (total) (s)": 10.1268 + }, + { + "Date+Time": "2015-12-23T00:00:00Z", + "Hs (total) (m)": 4.7388, + "Tp (total) (s)": 15.3981 + }, + { + "Date+Time": "2015-12-24T00:00:00Z", + "Hs (total) (m)": 4.7578, + "Tp (total) (s)": 12.9421 + }, + { + "Date+Time": "2015-12-25T00:00:00Z", + "Hs (total) (m)": 3.3227, + "Tp (total) (s)": 12.286 + }, + { + "Date+Time": "2015-12-26T00:00:00Z", + "Hs (total) (m)": 2.2042, + "Tp (total) (s)": 11.9327 + }, + { + "Date+Time": "2015-12-27T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 10.9958 + }, + { + "Date+Time": "2015-12-28T00:00:00Z", + "Hs (total) (m)": 3.3898, + "Tp (total) (s)": 10.4228 + }, + { + "Date+Time": "2015-12-29T00:00:00Z", + "Hs (total) (m)": 2.636, + "Tp (total) (s)": 12.5378 + }, + { + "Date+Time": "2015-12-30T00:00:00Z", + "Hs (total) (m)": 5.3751, + "Tp (total) (s)": 12.5191 + }, + { + "Date+Time": "2015-12-31T00:00:00Z", + "Hs (total) (m)": 3.6805, + "Tp (total) (s)": 14.3063 + }, + { + "Date+Time": "2016-01-01T00:00:00Z", + "Hs (total) (m)": 3.8606, + "Tp (total) (s)": 14.0027 + }, + { + "Date+Time": "2016-01-02T00:00:00Z", + "Hs (total) (m)": 3.061, + "Tp (total) (s)": 15.3233 + }, + { + "Date+Time": "2016-01-03T00:00:00Z", + "Hs (total) (m)": 2.5292, + "Tp (total) (s)": 13.554 + }, + { + "Date+Time": "2016-01-04T00:00:00Z", + "Hs (total) (m)": 3.9567, + "Tp (total) (s)": 14.8595 + }, + { + "Date+Time": "2016-01-05T00:00:00Z", + "Hs (total) (m)": 2.6818, + "Tp (total) (s)": 12.8971 + }, + { + "Date+Time": "2016-01-06T00:00:00Z", + "Hs (total) (m)": 2.3286, + "Tp (total) (s)": 12.6217 + }, + { + "Date+Time": "2016-01-07T00:00:00Z", + "Hs (total) (m)": 2.1729, + "Tp (total) (s)": 10.0452 + }, + { + "Date+Time": "2016-01-08T00:00:00Z", + "Hs (total) (m)": 3.18, + "Tp (total) (s)": 12.9192 + }, + { + "Date+Time": "2016-01-09T00:00:00Z", + "Hs (total) (m)": 3.1045, + "Tp (total) (s)": 14.2994 + }, + { + "Date+Time": "2016-01-10T00:00:00Z", + "Hs (total) (m)": 2.3858, + "Tp (total) (s)": 12.7377 + }, + { + "Date+Time": "2016-01-11T00:00:00Z", + "Hs (total) (m)": 2.353, + "Tp (total) (s)": 12.6102 + }, + { + "Date+Time": "2016-01-12T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 11.7145 + }, + { + "Date+Time": "2016-01-13T00:00:00Z", + "Hs (total) (m)": 1.5854, + "Tp (total) (s)": 11.1934 + }, + { + "Date+Time": "2016-01-14T00:00:00Z", + "Hs (total) (m)": 1.7754, + "Tp (total) (s)": 8.1988 + }, + { + "Date+Time": "2016-01-15T00:00:00Z", + "Hs (total) (m)": 1.5061, + "Tp (total) (s)": 8.3041 + }, + { + "Date+Time": "2016-01-16T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 8.6795 + }, + { + "Date+Time": "2016-01-17T00:00:00Z", + "Hs (total) (m)": 1.4176, + "Tp (total) (s)": 9.1838 + }, + { + "Date+Time": "2016-01-18T00:00:00Z", + "Hs (total) (m)": 2.2591, + "Tp (total) (s)": 11.6901 + }, + { + "Date+Time": "2016-01-19T00:00:00Z", + "Hs (total) (m)": 1.5877, + "Tp (total) (s)": 12.5996 + }, + { + "Date+Time": "2016-01-20T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 12.3615 + }, + { + "Date+Time": "2016-01-21T00:00:00Z", + "Hs (total) (m)": 2.6849, + "Tp (total) (s)": 14.0416 + }, + { + "Date+Time": "2016-01-22T00:00:00Z", + "Hs (total) (m)": 2.7879, + "Tp (total) (s)": 12.0426 + }, + { + "Date+Time": "2016-01-23T00:00:00Z", + "Hs (total) (m)": 4.165, + "Tp (total) (s)": 13.5403 + }, + { + "Date+Time": "2016-01-24T00:00:00Z", + "Hs (total) (m)": 3.2052, + "Tp (total) (s)": 13.6288 + }, + { + "Date+Time": "2016-01-25T00:00:00Z", + "Hs (total) (m)": 3.4433, + "Tp (total) (s)": 11.8717 + }, + { + "Date+Time": "2016-01-26T00:00:00Z", + "Hs (total) (m)": 3.7423, + "Tp (total) (s)": 11.3498 + }, + { + "Date+Time": "2016-01-27T00:00:00Z", + "Hs (total) (m)": 3.4936, + "Tp (total) (s)": 12.8964 + }, + { + "Date+Time": "2016-01-28T00:00:00Z", + "Hs (total) (m)": 3.6233, + "Tp (total) (s)": 12.5225 + }, + { + "Date+Time": "2016-01-29T00:00:00Z", + "Hs (total) (m)": 5.3618, + "Tp (total) (s)": 13.1158 + }, + { + "Date+Time": "2016-01-30T00:00:00Z", + "Hs (total) (m)": 4.9351, + "Tp (total) (s)": 14.0301 + }, + { + "Date+Time": "2016-01-31T00:00:00Z", + "Hs (total) (m)": 3.6088, + "Tp (total) (s)": 14.3025 + }, + { + "Date+Time": "2016-02-01T00:00:00Z", + "Hs (total) (m)": 4.397, + "Tp (total) (s)": 12.4302 + }, + { + "Date+Time": "2016-02-02T00:00:00Z", + "Hs (total) (m)": 6.6079, + "Tp (total) (s)": 15.9341 + }, + { + "Date+Time": "2016-02-03T00:00:00Z", + "Hs (total) (m)": 3.7774, + "Tp (total) (s)": 14.2644 + }, + { + "Date+Time": "2016-02-04T00:00:00Z", + "Hs (total) (m)": 2.7512, + "Tp (total) (s)": 12.6003 + }, + { + "Date+Time": "2016-02-05T00:00:00Z", + "Hs (total) (m)": 3.0412, + "Tp (total) (s)": 8.33 + }, + { + "Date+Time": "2016-02-06T00:00:00Z", + "Hs (total) (m)": 3.3067, + "Tp (total) (s)": 11.9373 + }, + { + "Date+Time": "2016-02-07T00:00:00Z", + "Hs (total) (m)": 4.0895, + "Tp (total) (s)": 12.5576 + }, + { + "Date+Time": "2016-02-08T00:00:00Z", + "Hs (total) (m)": 5.8347, + "Tp (total) (s)": 12.6276 + }, + { + "Date+Time": "2016-02-09T00:00:00Z", + "Hs (total) (m)": 5.6423, + "Tp (total) (s)": 16.0395 + }, + { + "Date+Time": "2016-02-10T00:00:00Z", + "Hs (total) (m)": 3.4043, + "Tp (total) (s)": 13.0154 + }, + { + "Date+Time": "2016-02-11T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 12.8834 + }, + { + "Date+Time": "2016-02-12T00:00:00Z", + "Hs (total) (m)": 1.4298, + "Tp (total) (s)": 11.4582 + }, + { + "Date+Time": "2016-02-13T00:00:00Z", + "Hs (total) (m)": 2.4438, + "Tp (total) (s)": 15.1234 + }, + { + "Date+Time": "2016-02-14T00:00:00Z", + "Hs (total) (m)": 2.5948, + "Tp (total) (s)": 12.7865 + }, + { + "Date+Time": "2016-02-15T00:00:00Z", + "Hs (total) (m)": 2.7848, + "Tp (total) (s)": 13.7646 + }, + { + "Date+Time": "2016-02-16T00:00:00Z", + "Hs (total) (m)": 2.9595, + "Tp (total) (s)": 12.5706 + }, + { + "Date+Time": "2016-02-17T00:00:00Z", + "Hs (total) (m)": 3.2014, + "Tp (total) (s)": 14.6733 + }, + { + "Date+Time": "2016-02-18T00:00:00Z", + "Hs (total) (m)": 3.3647, + "Tp (total) (s)": 15.1257 + }, + { + "Date+Time": "2016-02-19T00:00:00Z", + "Hs (total) (m)": 3.1106, + "Tp (total) (s)": 15.157 + }, + { + "Date+Time": "2016-02-20T00:00:00Z", + "Hs (total) (m)": 2.9801, + "Tp (total) (s)": 12.1052 + }, + { + "Date+Time": "2016-02-21T00:00:00Z", + "Hs (total) (m)": 3.3815, + "Tp (total) (s)": 15.421 + }, + { + "Date+Time": "2016-02-22T00:00:00Z", + "Hs (total) (m)": 3.0801, + "Tp (total) (s)": 13.86 + }, + { + "Date+Time": "2016-02-23T00:00:00Z", + "Hs (total) (m)": 2.2622, + "Tp (total) (s)": 12.7483 + }, + { + "Date+Time": "2016-02-24T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 11.6108 + }, + { + "Date+Time": "2016-02-25T00:00:00Z", + "Hs (total) (m)": 1.3276, + "Tp (total) (s)": 11.5749 + }, + { + "Date+Time": "2016-02-26T00:00:00Z", + "Hs (total) (m)": 1.7449, + "Tp (total) (s)": 7.667 + }, + { + "Date+Time": "2016-02-27T00:00:00Z", + "Hs (total) (m)": 1.7533, + "Tp (total) (s)": 14.2964 + }, + { + "Date+Time": "2016-02-28T00:00:00Z", + "Hs (total) (m)": 1.4374, + "Tp (total) (s)": 13.2138 + }, + { + "Date+Time": "2016-02-29T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 10.2466 + }, + { + "Date+Time": "2016-03-01T00:00:00Z", + "Hs (total) (m)": 3.045, + "Tp (total) (s)": 8.3598 + }, + { + "Date+Time": "2016-03-02T00:00:00Z", + "Hs (total) (m)": 4.2428, + "Tp (total) (s)": 11.5909 + }, + { + "Date+Time": "2016-03-03T00:00:00Z", + "Hs (total) (m)": 3.3937, + "Tp (total) (s)": 13.8447 + }, + { + "Date+Time": "2016-03-04T00:00:00Z", + "Hs (total) (m)": 2.7177, + "Tp (total) (s)": 11.3521 + }, + { + "Date+Time": "2016-03-05T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 13.9386 + }, + { + "Date+Time": "2016-03-06T00:00:00Z", + "Hs (total) (m)": 1.6549, + "Tp (total) (s)": 13.6807 + }, + { + "Date+Time": "2016-03-07T00:00:00Z", + "Hs (total) (m)": 1.9372, + "Tp (total) (s)": 9.843 + }, + { + "Date+Time": "2016-03-08T00:00:00Z", + "Hs (total) (m)": 1.9059, + "Tp (total) (s)": 12.476 + }, + { + "Date+Time": "2016-03-09T00:00:00Z", + "Hs (total) (m)": 2.7284, + "Tp (total) (s)": 15.07 + }, + { + "Date+Time": "2016-03-10T00:00:00Z", + "Hs (total) (m)": 2.3133, + "Tp (total) (s)": 12.8681 + }, + { + "Date+Time": "2016-03-11T00:00:00Z", + "Hs (total) (m)": 1.5175, + "Tp (total) (s)": 10.3038 + }, + { + "Date+Time": "2016-03-12T00:00:00Z", + "Hs (total) (m)": 2.9153, + "Tp (total) (s)": 14.0202 + }, + { + "Date+Time": "2016-03-13T00:00:00Z", + "Hs (total) (m)": 2.2454, + "Tp (total) (s)": 12.0991 + }, + { + "Date+Time": "2016-03-14T00:00:00Z", + "Hs (total) (m)": 1.7113, + "Tp (total) (s)": 11.2781 + }, + { + "Date+Time": "2016-03-15T00:00:00Z", + "Hs (total) (m)": 2.2996, + "Tp (total) (s)": 14.938 + }, + { + "Date+Time": "2016-03-16T00:00:00Z", + "Hs (total) (m)": 1.2543, + "Tp (total) (s)": 12.4638 + }, + { + "Date+Time": "2016-03-17T00:00:00Z", + "Hs (total) (m)": 1.0987, + "Tp (total) (s)": 10.6349 + }, + { + "Date+Time": "2016-03-18T00:00:00Z", + "Hs (total) (m)": 1.5366, + "Tp (total) (s)": 14.0324 + }, + { + "Date+Time": "2016-03-19T00:00:00Z", + "Hs (total) (m)": 1.2597, + "Tp (total) (s)": 12.4653 + }, + { + "Date+Time": "2016-03-20T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 10.7028 + }, + { + "Date+Time": "2016-03-21T00:00:00Z", + "Hs (total) (m)": 0.7965, + "Tp (total) (s)": 9.4569 + }, + { + "Date+Time": "2016-03-22T00:00:00Z", + "Hs (total) (m)": 0.9354, + "Tp (total) (s)": 11.3971 + }, + { + "Date+Time": "2016-03-23T00:00:00Z", + "Hs (total) (m)": 1.561, + "Tp (total) (s)": 13.0917 + }, + { + "Date+Time": "2016-03-24T00:00:00Z", + "Hs (total) (m)": 2.7314, + "Tp (total) (s)": 13.638 + }, + { + "Date+Time": "2016-03-25T00:00:00Z", + "Hs (total) (m)": 2.0234, + "Tp (total) (s)": 10.3725 + }, + { + "Date+Time": "2016-03-26T00:00:00Z", + "Hs (total) (m)": 3.5882, + "Tp (total) (s)": 13.8081 + }, + { + "Date+Time": "2016-03-27T00:00:00Z", + "Hs (total) (m)": 4.0391, + "Tp (total) (s)": 13.8554 + }, + { + "Date+Time": "2016-03-28T00:00:00Z", + "Hs (total) (m)": 3.2502, + "Tp (total) (s)": 14.2445 + }, + { + "Date+Time": "2016-03-29T00:00:00Z", + "Hs (total) (m)": 2.3095, + "Tp (total) (s)": 11.6405 + }, + { + "Date+Time": "2016-03-30T00:00:00Z", + "Hs (total) (m)": 2.2156, + "Tp (total) (s)": 11.6871 + }, + { + "Date+Time": "2016-03-31T00:00:00Z", + "Hs (total) (m)": 1.7594, + "Tp (total) (s)": 11.5543 + }, + { + "Date+Time": "2016-04-01T00:00:00Z", + "Hs (total) (m)": 2.4476, + "Tp (total) (s)": 8.269 + }, + { + "Date+Time": "2016-04-02T00:00:00Z", + "Hs (total) (m)": 2.5529, + "Tp (total) (s)": 12.5294 + }, + { + "Date+Time": "2016-04-03T00:00:00Z", + "Hs (total) (m)": 2.4422, + "Tp (total) (s)": 13.7844 + }, + { + "Date+Time": "2016-04-04T00:00:00Z", + "Hs (total) (m)": 1.809, + "Tp (total) (s)": 12.6698 + }, + { + "Date+Time": "2016-04-05T00:00:00Z", + "Hs (total) (m)": 1.3573, + "Tp (total) (s)": 10.8112 + }, + { + "Date+Time": "2016-04-06T00:00:00Z", + "Hs (total) (m)": 2.0592, + "Tp (total) (s)": 7.7731 + }, + { + "Date+Time": "2016-04-07T00:00:00Z", + "Hs (total) (m)": 3.708, + "Tp (total) (s)": 13.2138 + }, + { + "Date+Time": "2016-04-08T00:00:00Z", + "Hs (total) (m)": 2.6711, + "Tp (total) (s)": 14.3155 + }, + { + "Date+Time": "2016-04-09T00:00:00Z", + "Hs (total) (m)": 2.2988, + "Tp (total) (s)": 11.6092 + }, + { + "Date+Time": "2016-04-10T00:00:00Z", + "Hs (total) (m)": 3.1419, + "Tp (total) (s)": 16.5555 + }, + { + "Date+Time": "2016-04-11T00:00:00Z", + "Hs (total) (m)": 1.6449, + "Tp (total) (s)": 15.2646 + }, + { + "Date+Time": "2016-04-12T00:00:00Z", + "Hs (total) (m)": 0.7019, + "Tp (total) (s)": 3.2823 + }, + { + "Date+Time": "2016-04-13T00:00:00Z", + "Hs (total) (m)": 0.7988, + "Tp (total) (s)": 9.2242 + }, + { + "Date+Time": "2016-04-14T00:00:00Z", + "Hs (total) (m)": 1.117, + "Tp (total) (s)": 9.8636 + }, + { + "Date+Time": "2016-04-15T00:00:00Z", + "Hs (total) (m)": 0.5615, + "Tp (total) (s)": 9.3799 + }, + { + "Date+Time": "2016-04-16T00:00:00Z", + "Hs (total) (m)": 0.6462, + "Tp (total) (s)": 2.6635 + }, + { + "Date+Time": "2016-04-17T00:00:00Z", + "Hs (total) (m)": 0.7408, + "Tp (total) (s)": 3.2762 + }, + { + "Date+Time": "2016-04-18T00:00:00Z", + "Hs (total) (m)": 1.0765, + "Tp (total) (s)": 8.6062 + }, + { + "Date+Time": "2016-04-19T00:00:00Z", + "Hs (total) (m)": 1.0514, + "Tp (total) (s)": 11.4818 + }, + { + "Date+Time": "2016-04-20T00:00:00Z", + "Hs (total) (m)": 0.7721, + "Tp (total) (s)": 11.2598 + }, + { + "Date+Time": "2016-04-21T00:00:00Z", + "Hs (total) (m)": 0.6569, + "Tp (total) (s)": 10.6586 + }, + { + "Date+Time": "2016-04-22T00:00:00Z", + "Hs (total) (m)": 0.6859, + "Tp (total) (s)": 10.5281 + }, + { + "Date+Time": "2016-04-23T00:00:00Z", + "Hs (total) (m)": 0.6355, + "Tp (total) (s)": 10.435 + }, + { + "Date+Time": "2016-04-24T00:00:00Z", + "Hs (total) (m)": 0.586, + "Tp (total) (s)": 2.7596 + }, + { + "Date+Time": "2016-04-25T00:00:00Z", + "Hs (total) (m)": 0.7195, + "Tp (total) (s)": 6.3189 + }, + { + "Date+Time": "2016-04-26T00:00:00Z", + "Hs (total) (m)": 0.856, + "Tp (total) (s)": 6.4379 + }, + { + "Date+Time": "2016-04-27T00:00:00Z", + "Hs (total) (m)": 0.9507, + "Tp (total) (s)": 7.9905 + }, + { + "Date+Time": "2016-04-28T00:00:00Z", + "Hs (total) (m)": 0.9926, + "Tp (total) (s)": 8.9976 + }, + { + "Date+Time": "2016-04-29T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 8.3728 + }, + { + "Date+Time": "2016-04-30T00:00:00Z", + "Hs (total) (m)": 1.1498, + "Tp (total) (s)": 8.594 + }, + { + "Date+Time": "2016-05-01T00:00:00Z", + "Hs (total) (m)": 1.6434, + "Tp (total) (s)": 5.3499 + }, + { + "Date+Time": "2016-05-02T00:00:00Z", + "Hs (total) (m)": 3.1144, + "Tp (total) (s)": 8.4475 + }, + { + "Date+Time": "2016-05-03T00:00:00Z", + "Hs (total) (m)": 2.7352, + "Tp (total) (s)": 11.0851 + }, + { + "Date+Time": "2016-05-04T00:00:00Z", + "Hs (total) (m)": 2.3972, + "Tp (total) (s)": 11.2369 + }, + { + "Date+Time": "2016-05-05T00:00:00Z", + "Hs (total) (m)": 2.7413, + "Tp (total) (s)": 12.6644 + }, + { + "Date+Time": "2016-05-06T00:00:00Z", + "Hs (total) (m)": 2.0898, + "Tp (total) (s)": 12.064 + }, + { + "Date+Time": "2016-05-07T00:00:00Z", + "Hs (total) (m)": 0.9873, + "Tp (total) (s)": 10.11 + }, + { + "Date+Time": "2016-05-08T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 9.4066 + }, + { + "Date+Time": "2016-05-09T00:00:00Z", + "Hs (total) (m)": 0.6256, + "Tp (total) (s)": 8.4262 + }, + { + "Date+Time": "2016-05-10T00:00:00Z", + "Hs (total) (m)": 0.5379, + "Tp (total) (s)": 2.8069 + }, + { + "Date+Time": "2016-05-11T00:00:00Z", + "Hs (total) (m)": 0.4334, + "Tp (total) (s)": 2.4628 + }, + { + "Date+Time": "2016-05-12T00:00:00Z", + "Hs (total) (m)": 0.4791, + "Tp (total) (s)": 2.6597 + }, + { + "Date+Time": "2016-05-13T00:00:00Z", + "Hs (total) (m)": 0.4608, + "Tp (total) (s)": 11.3796 + }, + { + "Date+Time": "2016-05-14T00:00:00Z", + "Hs (total) (m)": 0.5486, + "Tp (total) (s)": 11.5375 + }, + { + "Date+Time": "2016-05-15T00:00:00Z", + "Hs (total) (m)": 0.5287, + "Tp (total) (s)": 7.7746 + }, + { + "Date+Time": "2016-05-16T00:00:00Z", + "Hs (total) (m)": 0.4563, + "Tp (total) (s)": 12.6125 + }, + { + "Date+Time": "2016-05-17T00:00:00Z", + "Hs (total) (m)": 0.9445, + "Tp (total) (s)": 10.3786 + }, + { + "Date+Time": "2016-05-18T00:00:00Z", + "Hs (total) (m)": 1.6633, + "Tp (total) (s)": 7.9402 + }, + { + "Date+Time": "2016-05-19T00:00:00Z", + "Hs (total) (m)": 1.7708, + "Tp (total) (s)": 10.9241 + }, + { + "Date+Time": "2016-05-20T00:00:00Z", + "Hs (total) (m)": 1.838, + "Tp (total) (s)": 8.7954 + }, + { + "Date+Time": "2016-05-21T00:00:00Z", + "Hs (total) (m)": 1.6686, + "Tp (total) (s)": 8.5726 + }, + { + "Date+Time": "2016-05-22T00:00:00Z", + "Hs (total) (m)": 1.5076, + "Tp (total) (s)": 10.7906 + }, + { + "Date+Time": "2016-05-23T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 10.2039 + }, + { + "Date+Time": "2016-05-24T00:00:00Z", + "Hs (total) (m)": 0.9484, + "Tp (total) (s)": 8.4948 + }, + { + "Date+Time": "2016-05-25T00:00:00Z", + "Hs (total) (m)": 1.484, + "Tp (total) (s)": 12.9254 + }, + { + "Date+Time": "2016-05-26T00:00:00Z", + "Hs (total) (m)": 1.2093, + "Tp (total) (s)": 11.9648 + }, + { + "Date+Time": "2016-05-27T00:00:00Z", + "Hs (total) (m)": 0.6676, + "Tp (total) (s)": 9.2212 + }, + { + "Date+Time": "2016-05-28T00:00:00Z", + "Hs (total) (m)": 0.6005, + "Tp (total) (s)": 9.2029 + }, + { + "Date+Time": "2016-05-29T00:00:00Z", + "Hs (total) (m)": 0.6363, + "Tp (total) (s)": 8.7519 + }, + { + "Date+Time": "2016-05-30T00:00:00Z", + "Hs (total) (m)": 0.689, + "Tp (total) (s)": 8.8778 + }, + { + "Date+Time": "2016-05-31T00:00:00Z", + "Hs (total) (m)": 0.6325, + "Tp (total) (s)": 8.8488 + }, + { + "Date+Time": "2016-06-01T00:00:00Z", + "Hs (total) (m)": 0.5699, + "Tp (total) (s)": 8.3567 + }, + { + "Date+Time": "2016-06-02T00:00:00Z", + "Hs (total) (m)": 0.4662, + "Tp (total) (s)": 2.504 + }, + { + "Date+Time": "2016-06-03T00:00:00Z", + "Hs (total) (m)": 0.7988, + "Tp (total) (s)": 10.538 + }, + { + "Date+Time": "2016-06-04T00:00:00Z", + "Hs (total) (m)": 0.9484, + "Tp (total) (s)": 9.5676 + }, + { + "Date+Time": "2016-06-05T00:00:00Z", + "Hs (total) (m)": 0.5852, + "Tp (total) (s)": 8.6016 + }, + { + "Date+Time": "2016-06-06T00:00:00Z", + "Hs (total) (m)": 0.8927, + "Tp (total) (s)": 12.2478 + }, + { + "Date+Time": "2016-06-07T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 10.464 + }, + { + "Date+Time": "2016-06-08T00:00:00Z", + "Hs (total) (m)": 0.8614, + "Tp (total) (s)": 8.9099 + }, + { + "Date+Time": "2016-06-09T00:00:00Z", + "Hs (total) (m)": 0.7317, + "Tp (total) (s)": 9.3692 + }, + { + "Date+Time": "2016-06-10T00:00:00Z", + "Hs (total) (m)": 1.0468, + "Tp (total) (s)": 10.4633 + }, + { + "Date+Time": "2016-06-11T00:00:00Z", + "Hs (total) (m)": 0.9011, + "Tp (total) (s)": 9.3593 + }, + { + "Date+Time": "2016-06-12T00:00:00Z", + "Hs (total) (m)": 1.062, + "Tp (total) (s)": 8.7771 + }, + { + "Date+Time": "2016-06-13T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 10.4282 + }, + { + "Date+Time": "2016-06-14T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 8.3895 + }, + { + "Date+Time": "2016-06-15T00:00:00Z", + "Hs (total) (m)": 1.3665, + "Tp (total) (s)": 9.2181 + }, + { + "Date+Time": "2016-06-16T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 6.5477 + }, + { + "Date+Time": "2016-06-17T00:00:00Z", + "Hs (total) (m)": 1.1116, + "Tp (total) (s)": 6.9918 + }, + { + "Date+Time": "2016-06-18T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 6.7331 + }, + { + "Date+Time": "2016-06-19T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 5.9984 + }, + { + "Date+Time": "2016-06-20T00:00:00Z", + "Hs (total) (m)": 2.2538, + "Tp (total) (s)": 9.3158 + }, + { + "Date+Time": "2016-06-21T00:00:00Z", + "Hs (total) (m)": 2.0882, + "Tp (total) (s)": 10.3107 + }, + { + "Date+Time": "2016-06-22T00:00:00Z", + "Hs (total) (m)": 2.073, + "Tp (total) (s)": 10.1344 + }, + { + "Date+Time": "2016-06-23T00:00:00Z", + "Hs (total) (m)": 2.1142, + "Tp (total) (s)": 10.303 + }, + { + "Date+Time": "2016-06-24T00:00:00Z", + "Hs (total) (m)": 1.5114, + "Tp (total) (s)": 9.5149 + }, + { + "Date+Time": "2016-06-25T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 6.9918 + }, + { + "Date+Time": "2016-06-26T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 6.6973 + }, + { + "Date+Time": "2016-06-27T00:00:00Z", + "Hs (total) (m)": 1.1429, + "Tp (total) (s)": 6.5714 + }, + { + "Date+Time": "2016-06-28T00:00:00Z", + "Hs (total) (m)": 1.545, + "Tp (total) (s)": 10.2817 + }, + { + "Date+Time": "2016-06-29T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 11.5238 + }, + { + "Date+Time": "2016-06-30T00:00:00Z", + "Hs (total) (m)": 1.632, + "Tp (total) (s)": 10.3 + }, + { + "Date+Time": "2016-07-01T00:00:00Z", + "Hs (total) (m)": 1.5404, + "Tp (total) (s)": 8.6512 + }, + { + "Date+Time": "2016-07-02T00:00:00Z", + "Hs (total) (m)": 2.3995, + "Tp (total) (s)": 10.1741 + }, + { + "Date+Time": "2016-07-03T00:00:00Z", + "Hs (total) (m)": 1.5816, + "Tp (total) (s)": 10.3954 + }, + { + "Date+Time": "2016-07-04T00:00:00Z", + "Hs (total) (m)": 1.2986, + "Tp (total) (s)": 9.2227 + }, + { + "Date+Time": "2016-07-05T00:00:00Z", + "Hs (total) (m)": 1.207, + "Tp (total) (s)": 8.0164 + }, + { + "Date+Time": "2016-07-06T00:00:00Z", + "Hs (total) (m)": 0.9896, + "Tp (total) (s)": 7.8639 + }, + { + "Date+Time": "2016-07-07T00:00:00Z", + "Hs (total) (m)": 1.7388, + "Tp (total) (s)": 8.7695 + }, + { + "Date+Time": "2016-07-08T00:00:00Z", + "Hs (total) (m)": 1.9089, + "Tp (total) (s)": 8.6375 + }, + { + "Date+Time": "2016-07-09T00:00:00Z", + "Hs (total) (m)": 1.6823, + "Tp (total) (s)": 7.8539 + }, + { + "Date+Time": "2016-07-10T00:00:00Z", + "Hs (total) (m)": 3.4349, + "Tp (total) (s)": 13.9332 + }, + { + "Date+Time": "2016-07-11T00:00:00Z", + "Hs (total) (m)": 2.3125, + "Tp (total) (s)": 10.6677 + }, + { + "Date+Time": "2016-07-12T00:00:00Z", + "Hs (total) (m)": 1.4107, + "Tp (total) (s)": 8.2049 + }, + { + "Date+Time": "2016-07-13T00:00:00Z", + "Hs (total) (m)": 1.1834, + "Tp (total) (s)": 7.1375 + }, + { + "Date+Time": "2016-07-14T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 7.8104 + }, + { + "Date+Time": "2016-07-15T00:00:00Z", + "Hs (total) (m)": 1.5473, + "Tp (total) (s)": 6.7042 + }, + { + "Date+Time": "2016-07-16T00:00:00Z", + "Hs (total) (m)": 1.4893, + "Tp (total) (s)": 7.667 + }, + { + "Date+Time": "2016-07-17T00:00:00Z", + "Hs (total) (m)": 1.4931, + "Tp (total) (s)": 11.0958 + }, + { + "Date+Time": "2016-07-18T00:00:00Z", + "Hs (total) (m)": 1.4176, + "Tp (total) (s)": 10.1489 + }, + { + "Date+Time": "2016-07-19T00:00:00Z", + "Hs (total) (m)": 0.9407, + "Tp (total) (s)": 9.341 + }, + { + "Date+Time": "2016-07-20T00:00:00Z", + "Hs (total) (m)": 0.8332, + "Tp (total) (s)": 9.1884 + }, + { + "Date+Time": "2016-07-21T00:00:00Z", + "Hs (total) (m)": 1.2955, + "Tp (total) (s)": 8.681 + }, + { + "Date+Time": "2016-07-22T00:00:00Z", + "Hs (total) (m)": 1.0659, + "Tp (total) (s)": 7.2695 + }, + { + "Date+Time": "2016-07-23T00:00:00Z", + "Hs (total) (m)": 1.0521, + "Tp (total) (s)": 8.4239 + }, + { + "Date+Time": "2016-07-24T00:00:00Z", + "Hs (total) (m)": 0.9926, + "Tp (total) (s)": 7.5076 + }, + { + "Date+Time": "2016-07-25T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 7.3725 + }, + { + "Date+Time": "2016-07-26T00:00:00Z", + "Hs (total) (m)": 1.2894, + "Tp (total) (s)": 8.095 + }, + { + "Date+Time": "2016-07-27T00:00:00Z", + "Hs (total) (m)": 1.2108, + "Tp (total) (s)": 6.5783 + }, + { + "Date+Time": "2016-07-28T00:00:00Z", + "Hs (total) (m)": 1.0399, + "Tp (total) (s)": 7.2466 + }, + { + "Date+Time": "2016-07-29T00:00:00Z", + "Hs (total) (m)": 1.5053, + "Tp (total) (s)": 8.4216 + }, + { + "Date+Time": "2016-07-30T00:00:00Z", + "Hs (total) (m)": 1.1345, + "Tp (total) (s)": 8.7474 + }, + { + "Date+Time": "2016-07-31T00:00:00Z", + "Hs (total) (m)": 0.9194, + "Tp (total) (s)": 8.1278 + }, + { + "Date+Time": "2016-08-01T00:00:00Z", + "Hs (total) (m)": 0.7546, + "Tp (total) (s)": 8.1019 + }, + { + "Date+Time": "2016-08-02T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 7.4847 + }, + { + "Date+Time": "2016-08-03T00:00:00Z", + "Hs (total) (m)": 2.7451, + "Tp (total) (s)": 9.64 + }, + { + "Date+Time": "2016-08-04T00:00:00Z", + "Hs (total) (m)": 2.4483, + "Tp (total) (s)": 10.3847 + }, + { + "Date+Time": "2016-08-05T00:00:00Z", + "Hs (total) (m)": 1.3138, + "Tp (total) (s)": 9.3394 + }, + { + "Date+Time": "2016-08-06T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 8.092 + }, + { + "Date+Time": "2016-08-07T00:00:00Z", + "Hs (total) (m)": 2.8161, + "Tp (total) (s)": 9.3677 + }, + { + "Date+Time": "2016-08-08T00:00:00Z", + "Hs (total) (m)": 2.9214, + "Tp (total) (s)": 11.446 + }, + { + "Date+Time": "2016-08-09T00:00:00Z", + "Hs (total) (m)": 1.474, + "Tp (total) (s)": 10.4778 + }, + { + "Date+Time": "2016-08-10T00:00:00Z", + "Hs (total) (m)": 1.3619, + "Tp (total) (s)": 9.4523 + }, + { + "Date+Time": "2016-08-11T00:00:00Z", + "Hs (total) (m)": 1.5114, + "Tp (total) (s)": 7.8745 + }, + { + "Date+Time": "2016-08-12T00:00:00Z", + "Hs (total) (m)": 1.7907, + "Tp (total) (s)": 7.6495 + }, + { + "Date+Time": "2016-08-13T00:00:00Z", + "Hs (total) (m)": 1.9234, + "Tp (total) (s)": 8.8038 + }, + { + "Date+Time": "2016-08-14T00:00:00Z", + "Hs (total) (m)": 1.2139, + "Tp (total) (s)": 8.4338 + }, + { + "Date+Time": "2016-08-15T00:00:00Z", + "Hs (total) (m)": 0.8965, + "Tp (total) (s)": 7.8097 + }, + { + "Date+Time": "2016-08-16T00:00:00Z", + "Hs (total) (m)": 1.3321, + "Tp (total) (s)": 10.139 + }, + { + "Date+Time": "2016-08-17T00:00:00Z", + "Hs (total) (m)": 1.5793, + "Tp (total) (s)": 11.8595 + }, + { + "Date+Time": "2016-08-18T00:00:00Z", + "Hs (total) (m)": 1.2345, + "Tp (total) (s)": 10.2962 + }, + { + "Date+Time": "2016-08-19T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 9.0197 + }, + { + "Date+Time": "2016-08-20T00:00:00Z", + "Hs (total) (m)": 2.7444, + "Tp (total) (s)": 12.2242 + }, + { + "Date+Time": "2016-08-21T00:00:00Z", + "Hs (total) (m)": 2.8115, + "Tp (total) (s)": 9.9063 + }, + { + "Date+Time": "2016-08-22T00:00:00Z", + "Hs (total) (m)": 2.2423, + "Tp (total) (s)": 8.3583 + }, + { + "Date+Time": "2016-08-23T00:00:00Z", + "Hs (total) (m)": 1.4855, + "Tp (total) (s)": 9.2059 + }, + { + "Date+Time": "2016-08-24T00:00:00Z", + "Hs (total) (m)": 1.8555, + "Tp (total) (s)": 11.4086 + }, + { + "Date+Time": "2016-08-25T00:00:00Z", + "Hs (total) (m)": 1.4565, + "Tp (total) (s)": 9.5874 + }, + { + "Date+Time": "2016-08-26T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 8.6161 + }, + { + "Date+Time": "2016-08-27T00:00:00Z", + "Hs (total) (m)": 1.1986, + "Tp (total) (s)": 7.8631 + }, + { + "Date+Time": "2016-08-28T00:00:00Z", + "Hs (total) (m)": 1.1635, + "Tp (total) (s)": 9.5614 + }, + { + "Date+Time": "2016-08-29T00:00:00Z", + "Hs (total) (m)": 0.7851, + "Tp (total) (s)": 8.6192 + }, + { + "Date+Time": "2016-08-30T00:00:00Z", + "Hs (total) (m)": 1.294, + "Tp (total) (s)": 5.8588 + }, + { + "Date+Time": "2016-08-31T00:00:00Z", + "Hs (total) (m)": 2.1821, + "Tp (total) (s)": 10.2641 + }, + { + "Date+Time": "2016-09-01T00:00:00Z", + "Hs (total) (m)": 2.0104, + "Tp (total) (s)": 11.5505 + }, + { + "Date+Time": "2016-09-02T00:00:00Z", + "Hs (total) (m)": 1.8952, + "Tp (total) (s)": 8.6833 + }, + { + "Date+Time": "2016-09-03T00:00:00Z", + "Hs (total) (m)": 2.5155, + "Tp (total) (s)": 12.7148 + }, + { + "Date+Time": "2016-09-04T00:00:00Z", + "Hs (total) (m)": 2.2057, + "Tp (total) (s)": 11.5154 + }, + { + "Date+Time": "2016-09-05T00:00:00Z", + "Hs (total) (m)": 2.0051, + "Tp (total) (s)": 11.8618 + }, + { + "Date+Time": "2016-09-06T00:00:00Z", + "Hs (total) (m)": 2.4926, + "Tp (total) (s)": 10.5098 + }, + { + "Date+Time": "2016-09-07T00:00:00Z", + "Hs (total) (m)": 1.5748, + "Tp (total) (s)": 10.21 + }, + { + "Date+Time": "2016-09-08T00:00:00Z", + "Hs (total) (m)": 2.7062, + "Tp (total) (s)": 9.4363 + }, + { + "Date+Time": "2016-09-09T00:00:00Z", + "Hs (total) (m)": 1.8334, + "Tp (total) (s)": 8.6352 + }, + { + "Date+Time": "2016-09-10T00:00:00Z", + "Hs (total) (m)": 2.7024, + "Tp (total) (s)": 9.6294 + }, + { + "Date+Time": "2016-09-11T00:00:00Z", + "Hs (total) (m)": 2.5643, + "Tp (total) (s)": 11.1476 + }, + { + "Date+Time": "2016-09-12T00:00:00Z", + "Hs (total) (m)": 3.9193, + "Tp (total) (s)": 11.2537 + }, + { + "Date+Time": "2016-09-13T00:00:00Z", + "Hs (total) (m)": 1.9112, + "Tp (total) (s)": 10.5228 + }, + { + "Date+Time": "2016-09-14T00:00:00Z", + "Hs (total) (m)": 1.4863, + "Tp (total) (s)": 10.3626 + }, + { + "Date+Time": "2016-09-15T00:00:00Z", + "Hs (total) (m)": 1.0323, + "Tp (total) (s)": 9.4623 + }, + { + "Date+Time": "2016-09-16T00:00:00Z", + "Hs (total) (m)": 1.6518, + "Tp (total) (s)": 9.9116 + }, + { + "Date+Time": "2016-09-17T00:00:00Z", + "Hs (total) (m)": 1.8265, + "Tp (total) (s)": 11.7252 + }, + { + "Date+Time": "2016-09-18T00:00:00Z", + "Hs (total) (m)": 2.0371, + "Tp (total) (s)": 9.6278 + }, + { + "Date+Time": "2016-09-19T00:00:00Z", + "Hs (total) (m)": 1.841, + "Tp (total) (s)": 11.3079 + }, + { + "Date+Time": "2016-09-20T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 10.6113 + }, + { + "Date+Time": "2016-09-21T00:00:00Z", + "Hs (total) (m)": 2.5285, + "Tp (total) (s)": 13.6334 + }, + { + "Date+Time": "2016-09-22T00:00:00Z", + "Hs (total) (m)": 1.9517, + "Tp (total) (s)": 10.519 + }, + { + "Date+Time": "2016-09-23T00:00:00Z", + "Hs (total) (m)": 2.0936, + "Tp (total) (s)": 9.6355 + }, + { + "Date+Time": "2016-09-24T00:00:00Z", + "Hs (total) (m)": 3.6279, + "Tp (total) (s)": 10.67 + }, + { + "Date+Time": "2016-09-25T00:00:00Z", + "Hs (total) (m)": 3.1144, + "Tp (total) (s)": 10.152 + }, + { + "Date+Time": "2016-09-26T00:00:00Z", + "Hs (total) (m)": 2.3347, + "Tp (total) (s)": 10.7997 + }, + { + "Date+Time": "2016-09-27T00:00:00Z", + "Hs (total) (m)": 1.4405, + "Tp (total) (s)": 9.2898 + }, + { + "Date+Time": "2016-09-28T00:00:00Z", + "Hs (total) (m)": 2.4102, + "Tp (total) (s)": 11.3399 + }, + { + "Date+Time": "2016-09-29T00:00:00Z", + "Hs (total) (m)": 3.3776, + "Tp (total) (s)": 11.9854 + }, + { + "Date+Time": "2016-09-30T00:00:00Z", + "Hs (total) (m)": 2.2637, + "Tp (total) (s)": 10.4633 + }, + { + "Date+Time": "2016-10-01T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 10.2969 + }, + { + "Date+Time": "2016-10-02T00:00:00Z", + "Hs (total) (m)": 1.4451, + "Tp (total) (s)": 10.802 + }, + { + "Date+Time": "2016-10-03T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 9.8567 + }, + { + "Date+Time": "2016-10-04T00:00:00Z", + "Hs (total) (m)": 2.9679, + "Tp (total) (s)": 13.6067 + }, + { + "Date+Time": "2016-10-05T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 12.7689 + }, + { + "Date+Time": "2016-10-06T00:00:00Z", + "Hs (total) (m)": 1.9349, + "Tp (total) (s)": 12.9604 + }, + { + "Date+Time": "2016-10-07T00:00:00Z", + "Hs (total) (m)": 2.1638, + "Tp (total) (s)": 11.9625 + }, + { + "Date+Time": "2016-10-08T00:00:00Z", + "Hs (total) (m)": 1.6396, + "Tp (total) (s)": 11.5452 + }, + { + "Date+Time": "2016-10-09T00:00:00Z", + "Hs (total) (m)": 1.2734, + "Tp (total) (s)": 10.3374 + }, + { + "Date+Time": "2016-10-10T00:00:00Z", + "Hs (total) (m)": 1.1643, + "Tp (total) (s)": 11.108 + }, + { + "Date+Time": "2016-10-11T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 12.6125 + }, + { + "Date+Time": "2016-10-12T00:00:00Z", + "Hs (total) (m)": 1.2848, + "Tp (total) (s)": 11.4902 + }, + { + "Date+Time": "2016-10-13T00:00:00Z", + "Hs (total) (m)": 0.8721, + "Tp (total) (s)": 10.3168 + }, + { + "Date+Time": "2016-10-14T00:00:00Z", + "Hs (total) (m)": 1.0933, + "Tp (total) (s)": 11.4597 + }, + { + "Date+Time": "2016-10-15T00:00:00Z", + "Hs (total) (m)": 1.9539, + "Tp (total) (s)": 11.713 + }, + { + "Date+Time": "2016-10-16T00:00:00Z", + "Hs (total) (m)": 1.149, + "Tp (total) (s)": 12.0037 + }, + { + "Date+Time": "2016-10-17T00:00:00Z", + "Hs (total) (m)": 1.6129, + "Tp (total) (s)": 6.8644 + }, + { + "Date+Time": "2016-10-18T00:00:00Z", + "Hs (total) (m)": 2.1714, + "Tp (total) (s)": 8.0622 + }, + { + "Date+Time": "2016-10-19T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 10.728 + }, + { + "Date+Time": "2016-10-20T00:00:00Z", + "Hs (total) (m)": 1.4206, + "Tp (total) (s)": 15.7018 + }, + { + "Date+Time": "2016-10-21T00:00:00Z", + "Hs (total) (m)": 2.1149, + "Tp (total) (s)": 14.4215 + }, + { + "Date+Time": "2016-10-22T00:00:00Z", + "Hs (total) (m)": 1.8738, + "Tp (total) (s)": 13.5105 + }, + { + "Date+Time": "2016-10-23T00:00:00Z", + "Hs (total) (m)": 1.8822, + "Tp (total) (s)": 15.1196 + }, + { + "Date+Time": "2016-10-24T00:00:00Z", + "Hs (total) (m)": 1.6617, + "Tp (total) (s)": 15.2348 + }, + { + "Date+Time": "2016-10-25T00:00:00Z", + "Hs (total) (m)": 1.4382, + "Tp (total) (s)": 13.3007 + }, + { + "Date+Time": "2016-10-26T00:00:00Z", + "Hs (total) (m)": 1.5168, + "Tp (total) (s)": 11.3536 + }, + { + "Date+Time": "2016-10-27T00:00:00Z", + "Hs (total) (m)": 1.8067, + "Tp (total) (s)": 12.6331 + }, + { + "Date+Time": "2016-10-28T00:00:00Z", + "Hs (total) (m)": 1.9272, + "Tp (total) (s)": 10.5327 + }, + { + "Date+Time": "2016-10-29T00:00:00Z", + "Hs (total) (m)": 1.6923, + "Tp (total) (s)": 12.7667 + }, + { + "Date+Time": "2016-10-30T00:00:00Z", + "Hs (total) (m)": 1.735, + "Tp (total) (s)": 11.8725 + }, + { + "Date+Time": "2016-10-31T00:00:00Z", + "Hs (total) (m)": 1.6518, + "Tp (total) (s)": 12.6858 + }, + { + "Date+Time": "2016-11-01T00:00:00Z", + "Hs (total) (m)": 0.8873, + "Tp (total) (s)": 10.9668 + }, + { + "Date+Time": "2016-11-02T00:00:00Z", + "Hs (total) (m)": 0.8736, + "Tp (total) (s)": 10.509 + }, + { + "Date+Time": "2016-11-03T00:00:00Z", + "Hs (total) (m)": 0.7851, + "Tp (total) (s)": 12.6164 + }, + { + "Date+Time": "2016-11-04T00:00:00Z", + "Hs (total) (m)": 1.2581, + "Tp (total) (s)": 11.4864 + }, + { + "Date+Time": "2016-11-05T00:00:00Z", + "Hs (total) (m)": 1.3489, + "Tp (total) (s)": 9.518 + }, + { + "Date+Time": "2016-11-06T00:00:00Z", + "Hs (total) (m)": 1.0727, + "Tp (total) (s)": 9.46 + }, + { + "Date+Time": "2016-11-07T00:00:00Z", + "Hs (total) (m)": 0.9781, + "Tp (total) (s)": 8.3232 + }, + { + "Date+Time": "2016-11-08T00:00:00Z", + "Hs (total) (m)": 0.856, + "Tp (total) (s)": 15.4881 + }, + { + "Date+Time": "2016-11-09T00:00:00Z", + "Hs (total) (m)": 2.0501, + "Tp (total) (s)": 8.7138 + }, + { + "Date+Time": "2016-11-10T00:00:00Z", + "Hs (total) (m)": 2.6498, + "Tp (total) (s)": 11.5474 + }, + { + "Date+Time": "2016-11-11T00:00:00Z", + "Hs (total) (m)": 1.8128, + "Tp (total) (s)": 12.402 + }, + { + "Date+Time": "2016-11-12T00:00:00Z", + "Hs (total) (m)": 2.0356, + "Tp (total) (s)": 9.1556 + }, + { + "Date+Time": "2016-11-13T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 10.165 + }, + { + "Date+Time": "2016-11-14T00:00:00Z", + "Hs (total) (m)": 2.0852, + "Tp (total) (s)": 10.4045 + }, + { + "Date+Time": "2016-11-15T00:00:00Z", + "Hs (total) (m)": 2.2942, + "Tp (total) (s)": 10.3923 + }, + { + "Date+Time": "2016-11-16T00:00:00Z", + "Hs (total) (m)": 2.6711, + "Tp (total) (s)": 10.873 + }, + { + "Date+Time": "2016-11-17T00:00:00Z", + "Hs (total) (m)": 3.6554, + "Tp (total) (s)": 15.1387 + }, + { + "Date+Time": "2016-11-18T00:00:00Z", + "Hs (total) (m)": 3.2823, + "Tp (total) (s)": 13.4312 + }, + { + "Date+Time": "2016-11-19T00:00:00Z", + "Hs (total) (m)": 2.7535, + "Tp (total) (s)": 13.5846 + }, + { + "Date+Time": "2016-11-20T00:00:00Z", + "Hs (total) (m)": 1.2711, + "Tp (total) (s)": 11.858 + }, + { + "Date+Time": "2016-11-21T00:00:00Z", + "Hs (total) (m)": 1.4504, + "Tp (total) (s)": 12.3676 + }, + { + "Date+Time": "2016-11-22T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 11.3819 + }, + { + "Date+Time": "2016-11-23T00:00:00Z", + "Hs (total) (m)": 1.0575, + "Tp (total) (s)": 9.5103 + }, + { + "Date+Time": "2016-11-24T00:00:00Z", + "Hs (total) (m)": 0.6516, + "Tp (total) (s)": 9.5935 + }, + { + "Date+Time": "2016-11-25T00:00:00Z", + "Hs (total) (m)": 0.7355, + "Tp (total) (s)": 9.2654 + }, + { + "Date+Time": "2016-11-26T00:00:00Z", + "Hs (total) (m)": 0.6737, + "Tp (total) (s)": 8.7786 + }, + { + "Date+Time": "2016-11-27T00:00:00Z", + "Hs (total) (m)": 0.8042, + "Tp (total) (s)": 11.2888 + }, + { + "Date+Time": "2016-11-28T00:00:00Z", + "Hs (total) (m)": 1.3977, + "Tp (total) (s)": 12.6003 + }, + { + "Date+Time": "2016-11-29T00:00:00Z", + "Hs (total) (m)": 1.5549, + "Tp (total) (s)": 12.1136 + }, + { + "Date+Time": "2016-11-30T00:00:00Z", + "Hs (total) (m)": 1.0598, + "Tp (total) (s)": 11.7054 + }, + { + "Date+Time": "2016-12-01T00:00:00Z", + "Hs (total) (m)": 1.0063, + "Tp (total) (s)": 11.5696 + }, + { + "Date+Time": "2016-12-02T00:00:00Z", + "Hs (total) (m)": 1.0674, + "Tp (total) (s)": 11.6802 + }, + { + "Date+Time": "2016-12-03T00:00:00Z", + "Hs (total) (m)": 1.2223, + "Tp (total) (s)": 11.6169 + }, + { + "Date+Time": "2016-12-04T00:00:00Z", + "Hs (total) (m)": 0.7981, + "Tp (total) (s)": 11.4231 + }, + { + "Date+Time": "2016-12-05T00:00:00Z", + "Hs (total) (m)": 0.8385, + "Tp (total) (s)": 11.3308 + }, + { + "Date+Time": "2016-12-06T00:00:00Z", + "Hs (total) (m)": 1.1345, + "Tp (total) (s)": 10.39 + }, + { + "Date+Time": "2016-12-07T00:00:00Z", + "Hs (total) (m)": 2.633, + "Tp (total) (s)": 10.2031 + }, + { + "Date+Time": "2016-12-08T00:00:00Z", + "Hs (total) (m)": 2.4194, + "Tp (total) (s)": 11.0736 + }, + { + "Date+Time": "2016-12-09T00:00:00Z", + "Hs (total) (m)": 2.6872, + "Tp (total) (s)": 11.1858 + }, + { + "Date+Time": "2016-12-10T00:00:00Z", + "Hs (total) (m)": 3.8644, + "Tp (total) (s)": 14.0339 + }, + { + "Date+Time": "2016-12-11T00:00:00Z", + "Hs (total) (m)": 2.4201, + "Tp (total) (s)": 11.8824 + }, + { + "Date+Time": "2016-12-12T00:00:00Z", + "Hs (total) (m)": 2.0791, + "Tp (total) (s)": 10.3328 + }, + { + "Date+Time": "2016-12-13T00:00:00Z", + "Hs (total) (m)": 2.1264, + "Tp (total) (s)": 13.6807 + }, + { + "Date+Time": "2016-12-14T00:00:00Z", + "Hs (total) (m)": 2.7825, + "Tp (total) (s)": 12.9482 + }, + { + "Date+Time": "2016-12-15T00:00:00Z", + "Hs (total) (m)": 2.4483, + "Tp (total) (s)": 11.7374 + }, + { + "Date+Time": "2016-12-16T00:00:00Z", + "Hs (total) (m)": 4.3428, + "Tp (total) (s)": 16.1351 + }, + { + "Date+Time": "2016-12-17T00:00:00Z", + "Hs (total) (m)": 2.7673, + "Tp (total) (s)": 14.2972 + }, + { + "Date+Time": "2016-12-18T00:00:00Z", + "Hs (total) (m)": 2.7207, + "Tp (total) (s)": 12.7293 + }, + { + "Date+Time": "2016-12-19T00:00:00Z", + "Hs (total) (m)": 2.4003, + "Tp (total) (s)": 11.3575 + }, + { + "Date+Time": "2016-12-20T00:00:00Z", + "Hs (total) (m)": 2.9466, + "Tp (total) (s)": 15.5072 + }, + { + "Date+Time": "2016-12-21T00:00:00Z", + "Hs (total) (m)": 3.9247, + "Tp (total) (s)": 15.2722 + }, + { + "Date+Time": "2016-12-22T00:00:00Z", + "Hs (total) (m)": 4.4031, + "Tp (total) (s)": 15.2867 + }, + { + "Date+Time": "2016-12-23T00:00:00Z", + "Hs (total) (m)": 3.5325, + "Tp (total) (s)": 15.3592 + }, + { + "Date+Time": "2016-12-24T00:00:00Z", + "Hs (total) (m)": 5.4189, + "Tp (total) (s)": 14.8863 + }, + { + "Date+Time": "2016-12-25T00:00:00Z", + "Hs (total) (m)": 4.2314, + "Tp (total) (s)": 12.8719 + }, + { + "Date+Time": "2016-12-26T00:00:00Z", + "Hs (total) (m)": 4.5267, + "Tp (total) (s)": 13.8256 + }, + { + "Date+Time": "2016-12-27T00:00:00Z", + "Hs (total) (m)": 2.9023, + "Tp (total) (s)": 13.8913 + }, + { + "Date+Time": "2016-12-28T00:00:00Z", + "Hs (total) (m)": 2.5933, + "Tp (total) (s)": 12.8742 + }, + { + "Date+Time": "2016-12-29T00:00:00Z", + "Hs (total) (m)": 2.3804, + "Tp (total) (s)": 13.0551 + }, + { + "Date+Time": "2016-12-30T00:00:00Z", + "Hs (total) (m)": 2.8687, + "Tp (total) (s)": 13.9241 + }, + { + "Date+Time": "2016-12-31T00:00:00Z", + "Hs (total) (m)": 2.958, + "Tp (total) (s)": 11.671 + }, + { + "Date+Time": "2017-01-01T00:00:00Z", + "Hs (total) (m)": 2.147, + "Tp (total) (s)": 13.7898 + }, + { + "Date+Time": "2017-01-02T00:00:00Z", + "Hs (total) (m)": 1.3787, + "Tp (total) (s)": 11.4963 + }, + { + "Date+Time": "2017-01-03T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 11.0363 + }, + { + "Date+Time": "2017-01-04T00:00:00Z", + "Hs (total) (m)": 0.5715, + "Tp (total) (s)": 9.7224 + }, + { + "Date+Time": "2017-01-05T00:00:00Z", + "Hs (total) (m)": 0.9217, + "Tp (total) (s)": 9.7674 + }, + { + "Date+Time": "2017-01-06T00:00:00Z", + "Hs (total) (m)": 1.8181, + "Tp (total) (s)": 9.3287 + }, + { + "Date+Time": "2017-01-07T00:00:00Z", + "Hs (total) (m)": 1.2238, + "Tp (total) (s)": 14.4108 + }, + { + "Date+Time": "2017-01-08T00:00:00Z", + "Hs (total) (m)": 1.2856, + "Tp (total) (s)": 12.5958 + }, + { + "Date+Time": "2017-01-09T00:00:00Z", + "Hs (total) (m)": 2.8436, + "Tp (total) (s)": 7.0551 + }, + { + "Date+Time": "2017-01-10T00:00:00Z", + "Hs (total) (m)": 3.9804, + "Tp (total) (s)": 15.3592 + }, + { + "Date+Time": "2017-01-11T00:00:00Z", + "Hs (total) (m)": 2.9313, + "Tp (total) (s)": 11.8831 + }, + { + "Date+Time": "2017-01-12T00:00:00Z", + "Hs (total) (m)": 3.2334, + "Tp (total) (s)": 13.7829 + }, + { + "Date+Time": "2017-01-13T00:00:00Z", + "Hs (total) (m)": 3.254, + "Tp (total) (s)": 13.8852 + }, + { + "Date+Time": "2017-01-14T00:00:00Z", + "Hs (total) (m)": 2.2919, + "Tp (total) (s)": 13.3984 + }, + { + "Date+Time": "2017-01-15T00:00:00Z", + "Hs (total) (m)": 1.9608, + "Tp (total) (s)": 11.1965 + }, + { + "Date+Time": "2017-01-16T00:00:00Z", + "Hs (total) (m)": 1.5252, + "Tp (total) (s)": 10.4572 + }, + { + "Date+Time": "2017-01-17T00:00:00Z", + "Hs (total) (m)": 1.7228, + "Tp (total) (s)": 11.6764 + }, + { + "Date+Time": "2017-01-18T00:00:00Z", + "Hs (total) (m)": 1.8662, + "Tp (total) (s)": 12.0083 + }, + { + "Date+Time": "2017-01-19T00:00:00Z", + "Hs (total) (m)": 2.0638, + "Tp (total) (s)": 11.7428 + }, + { + "Date+Time": "2017-01-20T00:00:00Z", + "Hs (total) (m)": 1.7029, + "Tp (total) (s)": 15.8139 + }, + { + "Date+Time": "2017-01-21T00:00:00Z", + "Hs (total) (m)": 1.9662, + "Tp (total) (s)": 13.5617 + }, + { + "Date+Time": "2017-01-22T00:00:00Z", + "Hs (total) (m)": 1.9883, + "Tp (total) (s)": 12.9009 + }, + { + "Date+Time": "2017-01-23T00:00:00Z", + "Hs (total) (m)": 1.3672, + "Tp (total) (s)": 11.7 + }, + { + "Date+Time": "2017-01-24T00:00:00Z", + "Hs (total) (m)": 3.1655, + "Tp (total) (s)": 16.9301 + }, + { + "Date+Time": "2017-01-25T00:00:00Z", + "Hs (total) (m)": 3.3761, + "Tp (total) (s)": 13.9523 + }, + { + "Date+Time": "2017-01-26T00:00:00Z", + "Hs (total) (m)": 3.6645, + "Tp (total) (s)": 11.5093 + }, + { + "Date+Time": "2017-01-27T00:00:00Z", + "Hs (total) (m)": 3.254, + "Tp (total) (s)": 14.2659 + }, + { + "Date+Time": "2017-01-28T00:00:00Z", + "Hs (total) (m)": 2.0173, + "Tp (total) (s)": 12.9498 + }, + { + "Date+Time": "2017-01-29T00:00:00Z", + "Hs (total) (m)": 1.6579, + "Tp (total) (s)": 10.744 + }, + { + "Date+Time": "2017-01-30T00:00:00Z", + "Hs (total) (m)": 1.3344, + "Tp (total) (s)": 9.2936 + }, + { + "Date+Time": "2017-01-31T00:00:00Z", + "Hs (total) (m)": 2.5338, + "Tp (total) (s)": 15.5126 + }, + { + "Date+Time": "2017-02-01T00:00:00Z", + "Hs (total) (m)": 2.6902, + "Tp (total) (s)": 13.5266 + }, + { + "Date+Time": "2017-02-02T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "2017-02-03T00:00:00Z", + "Hs (total) (m)": 4.9248, + "Tp (total) (s)": 17.888 + }, + { + "Date+Time": "2017-02-04T00:00:00Z", + "Hs (total) (m)": 3.164, + "Tp (total) (s)": 14.4688 + }, + { + "Date+Time": "2017-02-05T00:00:00Z", + "Hs (total) (m)": 2.2256, + "Tp (total) (s)": 12.5843 + }, + { + "Date+Time": "2017-02-06T00:00:00Z", + "Hs (total) (m)": 2.3446, + "Tp (total) (s)": 11.4383 + }, + { + "Date+Time": "2017-02-07T00:00:00Z", + "Hs (total) (m)": 3.0847, + "Tp (total) (s)": 13.2328 + }, + { + "Date+Time": "2017-02-08T00:00:00Z", + "Hs (total) (m)": 3.9026, + "Tp (total) (s)": 15.4462 + }, + { + "Date+Time": "2017-02-09T00:00:00Z", + "Hs (total) (m)": 3.4661, + "Tp (total) (s)": 13.9683 + }, + { + "Date+Time": "2017-02-10T00:00:00Z", + "Hs (total) (m)": 3.4768, + "Tp (total) (s)": 15.183 + }, + { + "Date+Time": "2017-02-11T00:00:00Z", + "Hs (total) (m)": 2.1577, + "Tp (total) (s)": 14.1034 + }, + { + "Date+Time": "2017-02-12T00:00:00Z", + "Hs (total) (m)": 1.1101, + "Tp (total) (s)": 12.7476 + }, + { + "Date+Time": "2017-02-13T00:00:00Z", + "Hs (total) (m)": 0.969, + "Tp (total) (s)": 3.3486 + }, + { + "Date+Time": "2017-02-14T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 14.201 + }, + { + "Date+Time": "2017-02-15T00:00:00Z", + "Hs (total) (m)": 1.78, + "Tp (total) (s)": 12.888 + }, + { + "Date+Time": "2017-02-16T00:00:00Z", + "Hs (total) (m)": 2.2057, + "Tp (total) (s)": 9.3165 + }, + { + "Date+Time": "2017-02-17T00:00:00Z", + "Hs (total) (m)": 1.5488, + "Tp (total) (s)": 7.9562 + }, + { + "Date+Time": "2017-02-18T00:00:00Z", + "Hs (total) (m)": 2.1088, + "Tp (total) (s)": 16.8729 + }, + { + "Date+Time": "2017-02-19T00:00:00Z", + "Hs (total) (m)": 2.3209, + "Tp (total) (s)": 14.2384 + }, + { + "Date+Time": "2017-02-20T00:00:00Z", + "Hs (total) (m)": 1.8288, + "Tp (total) (s)": 11.6932 + }, + { + "Date+Time": "2017-02-21T00:00:00Z", + "Hs (total) (m)": 2.0463, + "Tp (total) (s)": 11.5322 + }, + { + "Date+Time": "2017-02-22T00:00:00Z", + "Hs (total) (m)": 3.2014, + "Tp (total) (s)": 10.4862 + }, + { + "Date+Time": "2017-02-23T00:00:00Z", + "Hs (total) (m)": 3.9308, + "Tp (total) (s)": 9.6103 + }, + { + "Date+Time": "2017-02-24T00:00:00Z", + "Hs (total) (m)": 2.6086, + "Tp (total) (s)": 11.227 + }, + { + "Date+Time": "2017-02-25T00:00:00Z", + "Hs (total) (m)": 3.3677, + "Tp (total) (s)": 9.1258 + }, + { + "Date+Time": "2017-02-26T00:00:00Z", + "Hs (total) (m)": 3.0557, + "Tp (total) (s)": 11.536 + }, + { + "Date+Time": "2017-02-27T00:00:00Z", + "Hs (total) (m)": 3.8034, + "Tp (total) (s)": 12.3081 + }, + { + "Date+Time": "2017-02-28T00:00:00Z", + "Hs (total) (m)": 3.7133, + "Tp (total) (s)": 15.7178 + }, + { + "Date+Time": "2017-03-01T00:00:00Z", + "Hs (total) (m)": 2.3125, + "Tp (total) (s)": 12.756 + }, + { + "Date+Time": "2017-03-02T00:00:00Z", + "Hs (total) (m)": 4.0841, + "Tp (total) (s)": 10.7212 + }, + { + "Date+Time": "2017-03-03T00:00:00Z", + "Hs (total) (m)": 2.1622, + "Tp (total) (s)": 11.8557 + }, + { + "Date+Time": "2017-03-04T00:00:00Z", + "Hs (total) (m)": 1.1643, + "Tp (total) (s)": 11.3315 + }, + { + "Date+Time": "2017-03-05T00:00:00Z", + "Hs (total) (m)": 1.635, + "Tp (total) (s)": 10.6494 + }, + { + "Date+Time": "2017-03-06T00:00:00Z", + "Hs (total) (m)": 3.5958, + "Tp (total) (s)": 12.9894 + }, + { + "Date+Time": "2017-03-07T00:00:00Z", + "Hs (total) (m)": 3.2907, + "Tp (total) (s)": 14.3017 + }, + { + "Date+Time": "2017-03-08T00:00:00Z", + "Hs (total) (m)": 2.3812, + "Tp (total) (s)": 12.5797 + }, + { + "Date+Time": "2017-03-09T00:00:00Z", + "Hs (total) (m)": 2.3057, + "Tp (total) (s)": 11.7306 + }, + { + "Date+Time": "2017-03-10T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 11.1881 + }, + { + "Date+Time": "2017-03-11T00:00:00Z", + "Hs (total) (m)": 2.0913, + "Tp (total) (s)": 9.6721 + }, + { + "Date+Time": "2017-03-12T00:00:00Z", + "Hs (total) (m)": 1.9196, + "Tp (total) (s)": 10.1856 + }, + { + "Date+Time": "2017-03-13T00:00:00Z", + "Hs (total) (m)": 2.7909, + "Tp (total) (s)": 12.7598 + }, + { + "Date+Time": "2017-03-14T00:00:00Z", + "Hs (total) (m)": 2.7764, + "Tp (total) (s)": 12.6125 + }, + { + "Date+Time": "2017-03-15T00:00:00Z", + "Hs (total) (m)": 3.2022, + "Tp (total) (s)": 15.45 + }, + { + "Date+Time": "2017-03-16T00:00:00Z", + "Hs (total) (m)": 2.6299, + "Tp (total) (s)": 13.6464 + }, + { + "Date+Time": "2017-03-17T00:00:00Z", + "Hs (total) (m)": 3.0274, + "Tp (total) (s)": 12.9025 + }, + { + "Date+Time": "2017-03-18T00:00:00Z", + "Hs (total) (m)": 3.5783, + "Tp (total) (s)": 11.5139 + }, + { + "Date+Time": "2017-03-19T00:00:00Z", + "Hs (total) (m)": 3.2853, + "Tp (total) (s)": 10.7791 + }, + { + "Date+Time": "2017-03-20T00:00:00Z", + "Hs (total) (m)": 3.1121, + "Tp (total) (s)": 11.7267 + }, + { + "Date+Time": "2017-03-21T00:00:00Z", + "Hs (total) (m)": 3.3364, + "Tp (total) (s)": 10.7776 + }, + { + "Date+Time": "2017-03-22T00:00:00Z", + "Hs (total) (m)": 2.6574, + "Tp (total) (s)": 12.9765 + }, + { + "Date+Time": "2017-03-23T00:00:00Z", + "Hs (total) (m)": 1.7548, + "Tp (total) (s)": 13.7577 + }, + { + "Date+Time": "2017-03-24T00:00:00Z", + "Hs (total) (m)": 1.2642, + "Tp (total) (s)": 12.6949 + }, + { + "Date+Time": "2017-03-25T00:00:00Z", + "Hs (total) (m)": 1.1612, + "Tp (total) (s)": 17.0301 + }, + { + "Date+Time": "2017-03-26T00:00:00Z", + "Hs (total) (m)": 1.3665, + "Tp (total) (s)": 12.685 + }, + { + "Date+Time": "2017-03-27T00:00:00Z", + "Hs (total) (m)": 1.3878, + "Tp (total) (s)": 12.8765 + }, + { + "Date+Time": "2017-03-28T00:00:00Z", + "Hs (total) (m)": 1.4115, + "Tp (total) (s)": 11.523 + }, + { + "Date+Time": "2017-03-29T00:00:00Z", + "Hs (total) (m)": 1.6274, + "Tp (total) (s)": 18.2165 + }, + { + "Date+Time": "2017-03-30T00:00:00Z", + "Hs (total) (m)": 2.4026, + "Tp (total) (s)": 14.0561 + }, + { + "Date+Time": "2017-03-31T00:00:00Z", + "Hs (total) (m)": 2.298, + "Tp (total) (s)": 12.3295 + }, + { + "Date+Time": "2017-04-01T00:00:00Z", + "Hs (total) (m)": 1.7884, + "Tp (total) (s)": 11.2682 + }, + { + "Date+Time": "2017-04-02T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 10.3107 + }, + { + "Date+Time": "2017-04-03T00:00:00Z", + "Hs (total) (m)": 2.2416, + "Tp (total) (s)": 7.8997 + }, + { + "Date+Time": "2017-04-04T00:00:00Z", + "Hs (total) (m)": 2.794, + "Tp (total) (s)": 12.7613 + }, + { + "Date+Time": "2017-04-05T00:00:00Z", + "Hs (total) (m)": 2.5925, + "Tp (total) (s)": 14.613 + }, + { + "Date+Time": "2017-04-06T00:00:00Z", + "Hs (total) (m)": 1.8181, + "Tp (total) (s)": 14.0599 + }, + { + "Date+Time": "2017-04-07T00:00:00Z", + "Hs (total) (m)": 1.1567, + "Tp (total) (s)": 13.2679 + }, + { + "Date+Time": "2017-04-08T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 11.7054 + }, + { + "Date+Time": "2017-04-09T00:00:00Z", + "Hs (total) (m)": 1.2627, + "Tp (total) (s)": 11.6237 + }, + { + "Date+Time": "2017-04-10T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 10.7814 + }, + { + "Date+Time": "2017-04-11T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 10.2763 + }, + { + "Date+Time": "2017-04-12T00:00:00Z", + "Hs (total) (m)": 1.4672, + "Tp (total) (s)": 10.1367 + }, + { + "Date+Time": "2017-04-13T00:00:00Z", + "Hs (total) (m)": 1.3123, + "Tp (total) (s)": 10.6197 + }, + { + "Date+Time": "2017-04-14T00:00:00Z", + "Hs (total) (m)": 1.1612, + "Tp (total) (s)": 9.5531 + }, + { + "Date+Time": "2017-04-15T00:00:00Z", + "Hs (total) (m)": 1.0491, + "Tp (total) (s)": 9.2891 + }, + { + "Date+Time": "2017-04-16T00:00:00Z", + "Hs (total) (m)": 1.1666, + "Tp (total) (s)": 10.2062 + }, + { + "Date+Time": "2017-04-17T00:00:00Z", + "Hs (total) (m)": 1.1849, + "Tp (total) (s)": 9.0007 + }, + { + "Date+Time": "2017-04-18T00:00:00Z", + "Hs (total) (m)": 0.9247, + "Tp (total) (s)": 8.4025 + }, + { + "Date+Time": "2017-04-19T00:00:00Z", + "Hs (total) (m)": 0.7035, + "Tp (total) (s)": 7.8661 + }, + { + "Date+Time": "2017-04-20T00:00:00Z", + "Hs (total) (m)": 0.6554, + "Tp (total) (s)": 11.0195 + }, + { + "Date+Time": "2017-04-21T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 14.0233 + }, + { + "Date+Time": "2017-04-22T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 12.9414 + }, + { + "Date+Time": "2017-04-23T00:00:00Z", + "Hs (total) (m)": 0.8469, + "Tp (total) (s)": 10.9249 + }, + { + "Date+Time": "2017-04-24T00:00:00Z", + "Hs (total) (m)": 0.6333, + "Tp (total) (s)": 10.2786 + }, + { + "Date+Time": "2017-04-25T00:00:00Z", + "Hs (total) (m)": 0.7485, + "Tp (total) (s)": 6.5325 + }, + { + "Date+Time": "2017-04-26T00:00:00Z", + "Hs (total) (m)": 0.9964, + "Tp (total) (s)": 11.5543 + }, + { + "Date+Time": "2017-04-27T00:00:00Z", + "Hs (total) (m)": 0.7599, + "Tp (total) (s)": 10.7242 + }, + { + "Date+Time": "2017-04-28T00:00:00Z", + "Hs (total) (m)": 0.6302, + "Tp (total) (s)": 8.4841 + }, + { + "Date+Time": "2017-04-29T00:00:00Z", + "Hs (total) (m)": 2.1317, + "Tp (total) (s)": 10.1901 + }, + { + "Date+Time": "2017-04-30T00:00:00Z", + "Hs (total) (m)": 2.9901, + "Tp (total) (s)": 13.6547 + }, + { + "Date+Time": "2017-05-01T00:00:00Z", + "Hs (total) (m)": 1.9936, + "Tp (total) (s)": 12.6621 + }, + { + "Date+Time": "2017-05-02T00:00:00Z", + "Hs (total) (m)": 1.2673, + "Tp (total) (s)": 11.1087 + }, + { + "Date+Time": "2017-05-03T00:00:00Z", + "Hs (total) (m)": 1.4565, + "Tp (total) (s)": 10.6143 + }, + { + "Date+Time": "2017-05-04T00:00:00Z", + "Hs (total) (m)": 1.8929, + "Tp (total) (s)": 12.5469 + }, + { + "Date+Time": "2017-05-05T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 11.581 + }, + { + "Date+Time": "2017-05-06T00:00:00Z", + "Hs (total) (m)": 1.0086, + "Tp (total) (s)": 3.5096 + }, + { + "Date+Time": "2017-05-07T00:00:00Z", + "Hs (total) (m)": 0.5737, + "Tp (total) (s)": 4.2589 + }, + { + "Date+Time": "2017-05-08T00:00:00Z", + "Hs (total) (m)": 0.5936, + "Tp (total) (s)": 8.3567 + }, + { + "Date+Time": "2017-05-09T00:00:00Z", + "Hs (total) (m)": 1.1109, + "Tp (total) (s)": 10.5586 + }, + { + "Date+Time": "2017-05-10T00:00:00Z", + "Hs (total) (m)": 0.8415, + "Tp (total) (s)": 9.6553 + }, + { + "Date+Time": "2017-05-11T00:00:00Z", + "Hs (total) (m)": 0.7027, + "Tp (total) (s)": 9.6454 + }, + { + "Date+Time": "2017-05-12T00:00:00Z", + "Hs (total) (m)": 0.737, + "Tp (total) (s)": 8.8321 + }, + { + "Date+Time": "2017-05-13T00:00:00Z", + "Hs (total) (m)": 0.9163, + "Tp (total) (s)": 9.2738 + }, + { + "Date+Time": "2017-05-14T00:00:00Z", + "Hs (total) (m)": 1.9196, + "Tp (total) (s)": 8.311 + }, + { + "Date+Time": "2017-05-15T00:00:00Z", + "Hs (total) (m)": 2.1104, + "Tp (total) (s)": 8.9244 + }, + { + "Date+Time": "2017-05-16T00:00:00Z", + "Hs (total) (m)": 2.9618, + "Tp (total) (s)": 10.0612 + }, + { + "Date+Time": "2017-05-17T00:00:00Z", + "Hs (total) (m)": 2.4895, + "Tp (total) (s)": 10.2023 + }, + { + "Date+Time": "2017-05-18T00:00:00Z", + "Hs (total) (m)": 2.0585, + "Tp (total) (s)": 10.406 + }, + { + "Date+Time": "2017-05-19T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 10.3374 + }, + { + "Date+Time": "2017-05-20T00:00:00Z", + "Hs (total) (m)": 1.2619, + "Tp (total) (s)": 9.4615 + }, + { + "Date+Time": "2017-05-21T00:00:00Z", + "Hs (total) (m)": 1.3627, + "Tp (total) (s)": 9.3341 + }, + { + "Date+Time": "2017-05-22T00:00:00Z", + "Hs (total) (m)": 2.5826, + "Tp (total) (s)": 9.5874 + }, + { + "Date+Time": "2017-05-23T00:00:00Z", + "Hs (total) (m)": 1.5625, + "Tp (total) (s)": 9.4729 + }, + { + "Date+Time": "2017-05-24T00:00:00Z", + "Hs (total) (m)": 1.3802, + "Tp (total) (s)": 8.6009 + }, + { + "Date+Time": "2017-05-25T00:00:00Z", + "Hs (total) (m)": 1.0285, + "Tp (total) (s)": 8.2583 + }, + { + "Date+Time": "2017-05-26T00:00:00Z", + "Hs (total) (m)": 1.4168, + "Tp (total) (s)": 10.4564 + }, + { + "Date+Time": "2017-05-27T00:00:00Z", + "Hs (total) (m)": 1.1025, + "Tp (total) (s)": 10.1337 + }, + { + "Date+Time": "2017-05-28T00:00:00Z", + "Hs (total) (m)": 1.0552, + "Tp (total) (s)": 9.2792 + }, + { + "Date+Time": "2017-05-29T00:00:00Z", + "Hs (total) (m)": 0.7881, + "Tp (total) (s)": 12.4096 + }, + { + "Date+Time": "2017-05-30T00:00:00Z", + "Hs (total) (m)": 0.9781, + "Tp (total) (s)": 10.1321 + }, + { + "Date+Time": "2017-05-31T00:00:00Z", + "Hs (total) (m)": 0.9552, + "Tp (total) (s)": 6.917 + }, + { + "Date+Time": "2017-06-01T00:00:00Z", + "Hs (total) (m)": 1.7708, + "Tp (total) (s)": 7.4206 + }, + { + "Date+Time": "2017-06-02T00:00:00Z", + "Hs (total) (m)": 2.308, + "Tp (total) (s)": 12.36 + }, + { + "Date+Time": "2017-06-03T00:00:00Z", + "Hs (total) (m)": 2.0837, + "Tp (total) (s)": 10.3717 + }, + { + "Date+Time": "2017-06-04T00:00:00Z", + "Hs (total) (m)": 2.131, + "Tp (total) (s)": 10.3175 + }, + { + "Date+Time": "2017-06-05T00:00:00Z", + "Hs (total) (m)": 2.3309, + "Tp (total) (s)": 9.8102 + }, + { + "Date+Time": "2017-06-06T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 8.6886 + }, + { + "Date+Time": "2017-06-07T00:00:00Z", + "Hs (total) (m)": 1.7716, + "Tp (total) (s)": 9.1441 + }, + { + "Date+Time": "2017-06-08T00:00:00Z", + "Hs (total) (m)": 1.5191, + "Tp (total) (s)": 7.6365 + }, + { + "Date+Time": "2017-06-09T00:00:00Z", + "Hs (total) (m)": 1.4718, + "Tp (total) (s)": 7.7479 + }, + { + "Date+Time": "2017-06-10T00:00:00Z", + "Hs (total) (m)": 2.2843, + "Tp (total) (s)": 9.3883 + }, + { + "Date+Time": "2017-06-11T00:00:00Z", + "Hs (total) (m)": 3.7286, + "Tp (total) (s)": 13.1703 + }, + { + "Date+Time": "2017-06-12T00:00:00Z", + "Hs (total) (m)": 3.0251, + "Tp (total) (s)": 10.4236 + }, + { + "Date+Time": "2017-06-13T00:00:00Z", + "Hs (total) (m)": 1.8586, + "Tp (total) (s)": 8.7436 + }, + { + "Date+Time": "2017-06-14T00:00:00Z", + "Hs (total) (m)": 2.2317, + "Tp (total) (s)": 13.1069 + }, + { + "Date+Time": "2017-06-15T00:00:00Z", + "Hs (total) (m)": 2.6673, + "Tp (total) (s)": 11.2438 + }, + { + "Date+Time": "2017-06-16T00:00:00Z", + "Hs (total) (m)": 2.4651, + "Tp (total) (s)": 11.1759 + }, + { + "Date+Time": "2017-06-17T00:00:00Z", + "Hs (total) (m)": 1.8975, + "Tp (total) (s)": 9.9277 + }, + { + "Date+Time": "2017-06-18T00:00:00Z", + "Hs (total) (m)": 1.5801, + "Tp (total) (s)": 9.611 + }, + { + "Date+Time": "2017-06-19T00:00:00Z", + "Hs (total) (m)": 1.1956, + "Tp (total) (s)": 9.7499 + }, + { + "Date+Time": "2017-06-20T00:00:00Z", + "Hs (total) (m)": 0.824, + "Tp (total) (s)": 9.4607 + }, + { + "Date+Time": "2017-06-21T00:00:00Z", + "Hs (total) (m)": 0.9178, + "Tp (total) (s)": 9.2448 + }, + { + "Date+Time": "2017-06-22T00:00:00Z", + "Hs (total) (m)": 0.7637, + "Tp (total) (s)": 8.9953 + }, + { + "Date+Time": "2017-06-23T00:00:00Z", + "Hs (total) (m)": 2.3949, + "Tp (total) (s)": 7.0399 + }, + { + "Date+Time": "2017-06-24T00:00:00Z", + "Hs (total) (m)": 1.6449, + "Tp (total) (s)": 9.5058 + }, + { + "Date+Time": "2017-06-25T00:00:00Z", + "Hs (total) (m)": 1.4557, + "Tp (total) (s)": 9.4035 + }, + { + "Date+Time": "2017-06-26T00:00:00Z", + "Hs (total) (m)": 1.101, + "Tp (total) (s)": 8.6848 + }, + { + "Date+Time": "2017-06-27T00:00:00Z", + "Hs (total) (m)": 1.1925, + "Tp (total) (s)": 8.5971 + }, + { + "Date+Time": "2017-06-28T00:00:00Z", + "Hs (total) (m)": 0.8995, + "Tp (total) (s)": 8.1164 + }, + { + "Date+Time": "2017-06-29T00:00:00Z", + "Hs (total) (m)": 0.5852, + "Tp (total) (s)": 6.5767 + }, + { + "Date+Time": "2017-06-30T00:00:00Z", + "Hs (total) (m)": 1.0178, + "Tp (total) (s)": 5.974 + }, + { + "Date+Time": "2017-07-01T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 7.6304 + }, + { + "Date+Time": "2017-07-02T00:00:00Z", + "Hs (total) (m)": 0.9743, + "Tp (total) (s)": 7.6113 + }, + { + "Date+Time": "2017-07-03T00:00:00Z", + "Hs (total) (m)": 1.0285, + "Tp (total) (s)": 7.5823 + }, + { + "Date+Time": "2017-07-04T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 8.1599 + }, + { + "Date+Time": "2017-07-05T00:00:00Z", + "Hs (total) (m)": 1.3787, + "Tp (total) (s)": 8.7863 + }, + { + "Date+Time": "2017-07-06T00:00:00Z", + "Hs (total) (m)": 1.0956, + "Tp (total) (s)": 8.5429 + }, + { + "Date+Time": "2017-07-07T00:00:00Z", + "Hs (total) (m)": 0.9079, + "Tp (total) (s)": 7.6754 + }, + { + "Date+Time": "2017-07-08T00:00:00Z", + "Hs (total) (m)": 0.866, + "Tp (total) (s)": 7.2924 + }, + { + "Date+Time": "2017-07-09T00:00:00Z", + "Hs (total) (m)": 0.9049, + "Tp (total) (s)": 8.8626 + }, + { + "Date+Time": "2017-07-10T00:00:00Z", + "Hs (total) (m)": 1.0781, + "Tp (total) (s)": 9.3417 + }, + { + "Date+Time": "2017-07-11T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 10.3748 + }, + { + "Date+Time": "2017-07-12T00:00:00Z", + "Hs (total) (m)": 1.2253, + "Tp (total) (s)": 9.2296 + }, + { + "Date+Time": "2017-07-13T00:00:00Z", + "Hs (total) (m)": 0.9987, + "Tp (total) (s)": 9.0579 + }, + { + "Date+Time": "2017-07-14T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 9.3303 + }, + { + "Date+Time": "2017-07-15T00:00:00Z", + "Hs (total) (m)": 1.3375, + "Tp (total) (s)": 9.4157 + }, + { + "Date+Time": "2017-07-16T00:00:00Z", + "Hs (total) (m)": 1.5824, + "Tp (total) (s)": 7.8059 + }, + { + "Date+Time": "2017-07-17T00:00:00Z", + "Hs (total) (m)": 1.6503, + "Tp (total) (s)": 7.767 + }, + { + "Date+Time": "2017-07-18T00:00:00Z", + "Hs (total) (m)": 1.4718, + "Tp (total) (s)": 7.8341 + }, + { + "Date+Time": "2017-07-19T00:00:00Z", + "Hs (total) (m)": 1.2612, + "Tp (total) (s)": 8.6184 + }, + { + "Date+Time": "2017-07-20T00:00:00Z", + "Hs (total) (m)": 1.2528, + "Tp (total) (s)": 9.5805 + }, + { + "Date+Time": "2017-07-21T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 8.7329 + }, + { + "Date+Time": "2017-07-22T00:00:00Z", + "Hs (total) (m)": 1.7457, + "Tp (total) (s)": 8.9404 + }, + { + "Date+Time": "2017-07-23T00:00:00Z", + "Hs (total) (m)": 1.2497, + "Tp (total) (s)": 9.151 + }, + { + "Date+Time": "2017-07-24T00:00:00Z", + "Hs (total) (m)": 1.0483, + "Tp (total) (s)": 8.6161 + }, + { + "Date+Time": "2017-07-25T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 8.4544 + }, + { + "Date+Time": "2017-07-26T00:00:00Z", + "Hs (total) (m)": 0.8248, + "Tp (total) (s)": 7.7418 + }, + { + "Date+Time": "2017-07-27T00:00:00Z", + "Hs (total) (m)": 1.6007, + "Tp (total) (s)": 6.9483 + }, + { + "Date+Time": "2017-07-28T00:00:00Z", + "Hs (total) (m)": 2.4323, + "Tp (total) (s)": 9.3997 + }, + { + "Date+Time": "2017-07-29T00:00:00Z", + "Hs (total) (m)": 3.2723, + "Tp (total) (s)": 11.0141 + }, + { + "Date+Time": "2017-07-30T00:00:00Z", + "Hs (total) (m)": 3.2739, + "Tp (total) (s)": 11.8381 + }, + { + "Date+Time": "2017-07-31T00:00:00Z", + "Hs (total) (m)": 2.266, + "Tp (total) (s)": 9.904 + }, + { + "Date+Time": "2017-08-01T00:00:00Z", + "Hs (total) (m)": 1.986, + "Tp (total) (s)": 9.1029 + }, + { + "Date+Time": "2017-08-02T00:00:00Z", + "Hs (total) (m)": 1.7678, + "Tp (total) (s)": 8.4162 + }, + { + "Date+Time": "2017-08-03T00:00:00Z", + "Hs (total) (m)": 1.532, + "Tp (total) (s)": 7.9272 + }, + { + "Date+Time": "2017-08-04T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 7.7616 + }, + { + "Date+Time": "2017-08-05T00:00:00Z", + "Hs (total) (m)": 1.5847, + "Tp (total) (s)": 11.9274 + }, + { + "Date+Time": "2017-08-06T00:00:00Z", + "Hs (total) (m)": 1.6793, + "Tp (total) (s)": 11.5978 + }, + { + "Date+Time": "2017-08-07T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 10.2992 + }, + { + "Date+Time": "2017-08-08T00:00:00Z", + "Hs (total) (m)": 1.5236, + "Tp (total) (s)": 7.9196 + }, + { + "Date+Time": "2017-08-09T00:00:00Z", + "Hs (total) (m)": 1.5656, + "Tp (total) (s)": 8.7146 + }, + { + "Date+Time": "2017-08-10T00:00:00Z", + "Hs (total) (m)": 1.0231, + "Tp (total) (s)": 9.1929 + }, + { + "Date+Time": "2017-08-11T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 7.5709 + }, + { + "Date+Time": "2017-08-12T00:00:00Z", + "Hs (total) (m)": 1.426, + "Tp (total) (s)": 6.4348 + }, + { + "Date+Time": "2017-08-13T00:00:00Z", + "Hs (total) (m)": 1.5793, + "Tp (total) (s)": 8.3934 + }, + { + "Date+Time": "2017-08-14T00:00:00Z", + "Hs (total) (m)": 1.2467, + "Tp (total) (s)": 8.2873 + }, + { + "Date+Time": "2017-08-15T00:00:00Z", + "Hs (total) (m)": 1.2803, + "Tp (total) (s)": 7.6472 + }, + { + "Date+Time": "2017-08-16T00:00:00Z", + "Hs (total) (m)": 1.03, + "Tp (total) (s)": 5.9954 + }, + { + "Date+Time": "2017-08-17T00:00:00Z", + "Hs (total) (m)": 1.5954, + "Tp (total) (s)": 5.8725 + }, + { + "Date+Time": "2017-08-18T00:00:00Z", + "Hs (total) (m)": 1.7151, + "Tp (total) (s)": 7.786 + }, + { + "Date+Time": "2017-08-19T00:00:00Z", + "Hs (total) (m)": 1.9265, + "Tp (total) (s)": 8.6596 + }, + { + "Date+Time": "2017-08-20T00:00:00Z", + "Hs (total) (m)": 1.9967, + "Tp (total) (s)": 8.5597 + }, + { + "Date+Time": "2017-08-21T00:00:00Z", + "Hs (total) (m)": 1.6396, + "Tp (total) (s)": 8.5925 + }, + { + "Date+Time": "2017-08-22T00:00:00Z", + "Hs (total) (m)": 1.4252, + "Tp (total) (s)": 8.4788 + }, + { + "Date+Time": "2017-08-23T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 9.1136 + }, + { + "Date+Time": "2017-08-24T00:00:00Z", + "Hs (total) (m)": 1.574, + "Tp (total) (s)": 10.0902 + }, + { + "Date+Time": "2017-08-25T00:00:00Z", + "Hs (total) (m)": 1.7289, + "Tp (total) (s)": 7.2214 + }, + { + "Date+Time": "2017-08-26T00:00:00Z", + "Hs (total) (m)": 1.7129, + "Tp (total) (s)": 7.3725 + }, + { + "Date+Time": "2017-08-27T00:00:00Z", + "Hs (total) (m)": 1.2085, + "Tp (total) (s)": 7.6807 + }, + { + "Date+Time": "2017-08-28T00:00:00Z", + "Hs (total) (m)": 0.8499, + "Tp (total) (s)": 7.8059 + }, + { + "Date+Time": "2017-08-29T00:00:00Z", + "Hs (total) (m)": 1.1002, + "Tp (total) (s)": 7.7525 + }, + { + "Date+Time": "2017-08-30T00:00:00Z", + "Hs (total) (m)": 1.1551, + "Tp (total) (s)": 7.5228 + }, + { + "Date+Time": "2017-08-31T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 7.0147 + }, + { + "Date+Time": "2017-09-01T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 10.7776 + }, + { + "Date+Time": "2017-09-02T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 11.3414 + }, + { + "Date+Time": "2017-09-03T00:00:00Z", + "Hs (total) (m)": 1.4924, + "Tp (total) (s)": 8.7565 + }, + { + "Date+Time": "2017-09-04T00:00:00Z", + "Hs (total) (m)": 1.5305, + "Tp (total) (s)": 12.6873 + }, + { + "Date+Time": "2017-09-05T00:00:00Z", + "Hs (total) (m)": 1.4794, + "Tp (total) (s)": 11.5001 + }, + { + "Date+Time": "2017-09-06T00:00:00Z", + "Hs (total) (m)": 2.0104, + "Tp (total) (s)": 13.947 + }, + { + "Date+Time": "2017-09-07T00:00:00Z", + "Hs (total) (m)": 2.1187, + "Tp (total) (s)": 10.9699 + }, + { + "Date+Time": "2017-09-08T00:00:00Z", + "Hs (total) (m)": 2.2309, + "Tp (total) (s)": 11.3041 + }, + { + "Date+Time": "2017-09-09T00:00:00Z", + "Hs (total) (m)": 2.089, + "Tp (total) (s)": 10.2901 + }, + { + "Date+Time": "2017-09-10T00:00:00Z", + "Hs (total) (m)": 1.8349, + "Tp (total) (s)": 9.3371 + }, + { + "Date+Time": "2017-09-11T00:00:00Z", + "Hs (total) (m)": 2.401, + "Tp (total) (s)": 9.5378 + }, + { + "Date+Time": "2017-09-12T00:00:00Z", + "Hs (total) (m)": 3.2647, + "Tp (total) (s)": 11.6955 + }, + { + "Date+Time": "2017-09-13T00:00:00Z", + "Hs (total) (m)": 3.2533, + "Tp (total) (s)": 13.3877 + }, + { + "Date+Time": "2017-09-14T00:00:00Z", + "Hs (total) (m)": 1.9387, + "Tp (total) (s)": 11.3956 + }, + { + "Date+Time": "2017-09-15T00:00:00Z", + "Hs (total) (m)": 1.838, + "Tp (total) (s)": 9.5401 + }, + { + "Date+Time": "2017-09-16T00:00:00Z", + "Hs (total) (m)": 1.8899, + "Tp (total) (s)": 9.0236 + }, + { + "Date+Time": "2017-09-17T00:00:00Z", + "Hs (total) (m)": 1.4229, + "Tp (total) (s)": 11.5703 + }, + { + "Date+Time": "2017-09-18T00:00:00Z", + "Hs (total) (m)": 0.6943, + "Tp (total) (s)": 9.5462 + }, + { + "Date+Time": "2017-09-19T00:00:00Z", + "Hs (total) (m)": 0.663, + "Tp (total) (s)": 9.9521 + }, + { + "Date+Time": "2017-09-20T00:00:00Z", + "Hs (total) (m)": 1.3886, + "Tp (total) (s)": 9.6072 + }, + { + "Date+Time": "2017-09-21T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 8.1896 + }, + { + "Date+Time": "2017-09-22T00:00:00Z", + "Hs (total) (m)": 1.4176, + "Tp (total) (s)": 8.4582 + }, + { + "Date+Time": "2017-09-23T00:00:00Z", + "Hs (total) (m)": 1.8128, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "2017-09-24T00:00:00Z", + "Hs (total) (m)": 2.6658, + "Tp (total) (s)": 9.2212 + }, + { + "Date+Time": "2017-09-25T00:00:00Z", + "Hs (total) (m)": 2.6208, + "Tp (total) (s)": 11.597 + }, + { + "Date+Time": "2017-09-26T00:00:00Z", + "Hs (total) (m)": 2.3736, + "Tp (total) (s)": 12.4065 + }, + { + "Date+Time": "2017-09-27T00:00:00Z", + "Hs (total) (m)": 2.2858, + "Tp (total) (s)": 11.8 + }, + { + "Date+Time": "2017-09-28T00:00:00Z", + "Hs (total) (m)": 2.3789, + "Tp (total) (s)": 12.1906 + }, + { + "Date+Time": "2017-09-29T00:00:00Z", + "Hs (total) (m)": 2.649, + "Tp (total) (s)": 11.3926 + }, + { + "Date+Time": "2017-09-30T00:00:00Z", + "Hs (total) (m)": 3.0274, + "Tp (total) (s)": 11.2911 + }, + { + "Date+Time": "2017-10-01T00:00:00Z", + "Hs (total) (m)": 3.534, + "Tp (total) (s)": 13.5434 + }, + { + "Date+Time": "2017-10-02T00:00:00Z", + "Hs (total) (m)": 2.9283, + "Tp (total) (s)": 12.5156 + }, + { + "Date+Time": "2017-10-03T00:00:00Z", + "Hs (total) (m)": 2.7711, + "Tp (total) (s)": 9.9338 + }, + { + "Date+Time": "2017-10-04T00:00:00Z", + "Hs (total) (m)": 3.1396, + "Tp (total) (s)": 12.55 + }, + { + "Date+Time": "2017-10-05T00:00:00Z", + "Hs (total) (m)": 2.4178, + "Tp (total) (s)": 10.5846 + }, + { + "Date+Time": "2017-10-06T00:00:00Z", + "Hs (total) (m)": 2.6414, + "Tp (total) (s)": 9.9322 + }, + { + "Date+Time": "2017-10-07T00:00:00Z", + "Hs (total) (m)": 1.6938, + "Tp (total) (s)": 10.3534 + }, + { + "Date+Time": "2017-10-08T00:00:00Z", + "Hs (total) (m)": 1.8036, + "Tp (total) (s)": 10.8341 + }, + { + "Date+Time": "2017-10-09T00:00:00Z", + "Hs (total) (m)": 1.5053, + "Tp (total) (s)": 11.111 + }, + { + "Date+Time": "2017-10-10T00:00:00Z", + "Hs (total) (m)": 1.4542, + "Tp (total) (s)": 9.933 + }, + { + "Date+Time": "2017-10-11T00:00:00Z", + "Hs (total) (m)": 1.693, + "Tp (total) (s)": 8.7085 + }, + { + "Date+Time": "2017-10-12T00:00:00Z", + "Hs (total) (m)": 2.4316, + "Tp (total) (s)": 12.1784 + }, + { + "Date+Time": "2017-10-13T00:00:00Z", + "Hs (total) (m)": 2.8222, + "Tp (total) (s)": 11.5429 + }, + { + "Date+Time": "2017-10-14T00:00:00Z", + "Hs (total) (m)": 2.8161, + "Tp (total) (s)": 10.9241 + }, + { + "Date+Time": "2017-10-15T00:00:00Z", + "Hs (total) (m)": 2.385, + "Tp (total) (s)": 9.6393 + }, + { + "Date+Time": "2017-10-16T00:00:00Z", + "Hs (total) (m)": 3.1907, + "Tp (total) (s)": 13.6593 + }, + { + "Date+Time": "2017-10-17T00:00:00Z", + "Hs (total) (m)": 2.4728, + "Tp (total) (s)": 13.4983 + }, + { + "Date+Time": "2017-10-18T00:00:00Z", + "Hs (total) (m)": 2.4201, + "Tp (total) (s)": 13.2992 + }, + { + "Date+Time": "2017-10-19T00:00:00Z", + "Hs (total) (m)": 1.6198, + "Tp (total) (s)": 9.1815 + }, + { + "Date+Time": "2017-10-20T00:00:00Z", + "Hs (total) (m)": 1.6747, + "Tp (total) (s)": 11.0179 + }, + { + "Date+Time": "2017-10-21T00:00:00Z", + "Hs (total) (m)": 2.5048, + "Tp (total) (s)": 10.0528 + }, + { + "Date+Time": "2017-10-22T00:00:00Z", + "Hs (total) (m)": 3.1213, + "Tp (total) (s)": 13.2885 + }, + { + "Date+Time": "2017-10-23T00:00:00Z", + "Hs (total) (m)": 3.6546, + "Tp (total) (s)": 12.6423 + }, + { + "Date+Time": "2017-10-24T00:00:00Z", + "Hs (total) (m)": 2.5857, + "Tp (total) (s)": 11.1293 + }, + { + "Date+Time": "2017-10-25T00:00:00Z", + "Hs (total) (m)": 2.8123, + "Tp (total) (s)": 15.2402 + }, + { + "Date+Time": "2017-10-26T00:00:00Z", + "Hs (total) (m)": 3.4196, + "Tp (total) (s)": 14.9899 + }, + { + "Date+Time": "2017-10-27T00:00:00Z", + "Hs (total) (m)": 2.8848, + "Tp (total) (s)": 13.9744 + }, + { + "Date+Time": "2017-10-28T00:00:00Z", + "Hs (total) (m)": 2.0089, + "Tp (total) (s)": 11.5444 + }, + { + "Date+Time": "2017-10-29T00:00:00Z", + "Hs (total) (m)": 1.4756, + "Tp (total) (s)": 10.3938 + }, + { + "Date+Time": "2017-10-30T00:00:00Z", + "Hs (total) (m)": 1.2055, + "Tp (total) (s)": 9.2387 + }, + { + "Date+Time": "2017-10-31T00:00:00Z", + "Hs (total) (m)": 1.1483, + "Tp (total) (s)": 9.2059 + }, + { + "Date+Time": "2017-11-01T00:00:00Z", + "Hs (total) (m)": 1.5252, + "Tp (total) (s)": 9.5233 + }, + { + "Date+Time": "2017-11-02T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 6.8941 + }, + { + "Date+Time": "2017-11-03T00:00:00Z", + "Hs (total) (m)": 1.1597, + "Tp (total) (s)": 6.7148 + }, + { + "Date+Time": "2017-11-04T00:00:00Z", + "Hs (total) (m)": 0.9026, + "Tp (total) (s)": 9.2723 + }, + { + "Date+Time": "2017-11-05T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 4.0124 + }, + { + "Date+Time": "2017-11-06T00:00:00Z", + "Hs (total) (m)": 2.2912, + "Tp (total) (s)": 12.0182 + }, + { + "Date+Time": "2017-11-07T00:00:00Z", + "Hs (total) (m)": 2.5491, + "Tp (total) (s)": 12.8414 + }, + { + "Date+Time": "2017-11-08T00:00:00Z", + "Hs (total) (m)": 2.5742, + "Tp (total) (s)": 10.432 + }, + { + "Date+Time": "2017-11-09T00:00:00Z", + "Hs (total) (m)": 3.1831, + "Tp (total) (s)": 15.7231 + }, + { + "Date+Time": "2017-11-10T00:00:00Z", + "Hs (total) (m)": 2.7375, + "Tp (total) (s)": 14.2918 + }, + { + "Date+Time": "2017-11-11T00:00:00Z", + "Hs (total) (m)": 2.5658, + "Tp (total) (s)": 12.553 + }, + { + "Date+Time": "2017-11-12T00:00:00Z", + "Hs (total) (m)": 2.4972, + "Tp (total) (s)": 12.3554 + }, + { + "Date+Time": "2017-11-13T00:00:00Z", + "Hs (total) (m)": 2.3759, + "Tp (total) (s)": 10.6983 + }, + { + "Date+Time": "2017-11-14T00:00:00Z", + "Hs (total) (m)": 1.8334, + "Tp (total) (s)": 10.712 + }, + { + "Date+Time": "2017-11-15T00:00:00Z", + "Hs (total) (m)": 1.8899, + "Tp (total) (s)": 11.2255 + }, + { + "Date+Time": "2017-11-16T00:00:00Z", + "Hs (total) (m)": 1.6694, + "Tp (total) (s)": 10.6357 + }, + { + "Date+Time": "2017-11-17T00:00:00Z", + "Hs (total) (m)": 1.8723, + "Tp (total) (s)": 13.6921 + }, + { + "Date+Time": "2017-11-18T00:00:00Z", + "Hs (total) (m)": 1.6533, + "Tp (total) (s)": 11.6703 + }, + { + "Date+Time": "2017-11-19T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 11.4231 + }, + { + "Date+Time": "2017-11-20T00:00:00Z", + "Hs (total) (m)": 1.6808, + "Tp (total) (s)": 11.6085 + }, + { + "Date+Time": "2017-11-21T00:00:00Z", + "Hs (total) (m)": 1.9158, + "Tp (total) (s)": 9.5264 + }, + { + "Date+Time": "2017-11-22T00:00:00Z", + "Hs (total) (m)": 2.2973, + "Tp (total) (s)": 12.1509 + }, + { + "Date+Time": "2017-11-23T00:00:00Z", + "Hs (total) (m)": 2.0608, + "Tp (total) (s)": 11.0622 + }, + { + "Date+Time": "2017-11-24T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 12.8895 + }, + { + "Date+Time": "2017-11-25T00:00:00Z", + "Hs (total) (m)": 1.9906, + "Tp (total) (s)": 12.5828 + }, + { + "Date+Time": "2017-11-26T00:00:00Z", + "Hs (total) (m)": 1.5046, + "Tp (total) (s)": 11.4742 + }, + { + "Date+Time": "2017-11-27T00:00:00Z", + "Hs (total) (m)": 1.7045, + "Tp (total) (s)": 12.7979 + }, + { + "Date+Time": "2017-11-28T00:00:00Z", + "Hs (total) (m)": 2.0737, + "Tp (total) (s)": 11.7122 + }, + { + "Date+Time": "2017-11-29T00:00:00Z", + "Hs (total) (m)": 2.1165, + "Tp (total) (s)": 12.4683 + }, + { + "Date+Time": "2017-11-30T00:00:00Z", + "Hs (total) (m)": 1.9204, + "Tp (total) (s)": 9.4722 + }, + { + "Date+Time": "2017-12-01T00:00:00Z", + "Hs (total) (m)": 1.0895, + "Tp (total) (s)": 10.6906 + }, + { + "Date+Time": "2017-12-02T00:00:00Z", + "Hs (total) (m)": 0.6645, + "Tp (total) (s)": 7.8394 + }, + { + "Date+Time": "2017-12-03T00:00:00Z", + "Hs (total) (m)": 0.7294, + "Tp (total) (s)": 7.8356 + }, + { + "Date+Time": "2017-12-04T00:00:00Z", + "Hs (total) (m)": 0.6478, + "Tp (total) (s)": 6.0205 + }, + { + "Date+Time": "2017-12-05T00:00:00Z", + "Hs (total) (m)": 0.7782, + "Tp (total) (s)": 6.7827 + }, + { + "Date+Time": "2017-12-06T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 10.5853 + }, + { + "Date+Time": "2017-12-07T00:00:00Z", + "Hs (total) (m)": 2.4277, + "Tp (total) (s)": 8.4819 + }, + { + "Date+Time": "2017-12-08T00:00:00Z", + "Hs (total) (m)": 2.6109, + "Tp (total) (s)": 9.7629 + }, + { + "Date+Time": "2017-12-09T00:00:00Z", + "Hs (total) (m)": 2.8199, + "Tp (total) (s)": 12.3165 + }, + { + "Date+Time": "2017-12-10T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 12.7773 + }, + { + "Date+Time": "2017-12-11T00:00:00Z", + "Hs (total) (m)": 1.3512, + "Tp (total) (s)": 9.3791 + }, + { + "Date+Time": "2017-12-12T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 10.567 + }, + { + "Date+Time": "2017-12-13T00:00:00Z", + "Hs (total) (m)": 2.0341, + "Tp (total) (s)": 11.5345 + }, + { + "Date+Time": "2017-12-14T00:00:00Z", + "Hs (total) (m)": 2.7284, + "Tp (total) (s)": 12.9666 + }, + { + "Date+Time": "2017-12-15T00:00:00Z", + "Hs (total) (m)": 3.2525, + "Tp (total) (s)": 11.0057 + }, + { + "Date+Time": "2017-12-16T00:00:00Z", + "Hs (total) (m)": 4.5778, + "Tp (total) (s)": 15.2783 + }, + { + "Date+Time": "2017-12-17T00:00:00Z", + "Hs (total) (m)": 2.1119, + "Tp (total) (s)": 13.9332 + }, + { + "Date+Time": "2017-12-18T00:00:00Z", + "Hs (total) (m)": 1.6343, + "Tp (total) (s)": 11.5467 + }, + { + "Date+Time": "2017-12-19T00:00:00Z", + "Hs (total) (m)": 1.5091, + "Tp (total) (s)": 7.7784 + }, + { + "Date+Time": "2017-12-20T00:00:00Z", + "Hs (total) (m)": 1.9387, + "Tp (total) (s)": 13.5556 + }, + { + "Date+Time": "2017-12-21T00:00:00Z", + "Hs (total) (m)": 2.3515, + "Tp (total) (s)": 13.6395 + }, + { + "Date+Time": "2017-12-22T00:00:00Z", + "Hs (total) (m)": 2.5117, + "Tp (total) (s)": 12.6492 + }, + { + "Date+Time": "2017-12-23T00:00:00Z", + "Hs (total) (m)": 2.0814, + "Tp (total) (s)": 12.0144 + }, + { + "Date+Time": "2017-12-24T00:00:00Z", + "Hs (total) (m)": 1.9852, + "Tp (total) (s)": 11.2583 + }, + { + "Date+Time": "2017-12-25T00:00:00Z", + "Hs (total) (m)": 2.1111, + "Tp (total) (s)": 10.1039 + }, + { + "Date+Time": "2017-12-26T00:00:00Z", + "Hs (total) (m)": 2.7467, + "Tp (total) (s)": 11.1644 + }, + { + "Date+Time": "2017-12-27T00:00:00Z", + "Hs (total) (m)": 2.6246, + "Tp (total) (s)": 11.3712 + }, + { + "Date+Time": "2017-12-28T00:00:00Z", + "Hs (total) (m)": 2.0478, + "Tp (total) (s)": 11.2865 + }, + { + "Date+Time": "2017-12-29T00:00:00Z", + "Hs (total) (m)": 1.7327, + "Tp (total) (s)": 13.3908 + }, + { + "Date+Time": "2017-12-30T00:00:00Z", + "Hs (total) (m)": 2.7612, + "Tp (total) (s)": 12.7506 + }, + { + "Date+Time": "2017-12-31T00:00:00Z", + "Hs (total) (m)": 3.943, + "Tp (total) (s)": 13.3587 + }, + { + "Date+Time": "2018-01-01T00:00:00Z", + "Hs (total) (m)": 4.1513, + "Tp (total) (s)": 12.7529 + }, + { + "Date+Time": "2018-01-02T00:00:00Z", + "Hs (total) (m)": 3.8858, + "Tp (total) (s)": 12.8384 + }, + { + "Date+Time": "2018-01-03T00:00:00Z", + "Hs (total) (m)": 3.7545, + "Tp (total) (s)": 12.8475 + }, + { + "Date+Time": "2018-01-04T00:00:00Z", + "Hs (total) (m)": 5.2501, + "Tp (total) (s)": 15.5099 + }, + { + "Date+Time": "2018-01-05T00:00:00Z", + "Hs (total) (m)": 5.5197, + "Tp (total) (s)": 15.9355 + }, + { + "Date+Time": "2018-01-06T00:00:00Z", + "Hs (total) (m)": 3.2266, + "Tp (total) (s)": 12.9276 + }, + { + "Date+Time": "2018-01-07T00:00:00Z", + "Hs (total) (m)": 2.7093, + "Tp (total) (s)": 12.392 + }, + { + "Date+Time": "2018-01-08T00:00:00Z", + "Hs (total) (m)": 2.3392, + "Tp (total) (s)": 15.1738 + }, + { + "Date+Time": "2018-01-09T00:00:00Z", + "Hs (total) (m)": 1.9341, + "Tp (total) (s)": 12.2585 + }, + { + "Date+Time": "2018-01-10T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 13.963 + }, + { + "Date+Time": "2018-01-11T00:00:00Z", + "Hs (total) (m)": 2.0287, + "Tp (total) (s)": 13.9309 + }, + { + "Date+Time": "2018-01-12T00:00:00Z", + "Hs (total) (m)": 2.327, + "Tp (total) (s)": 14.1491 + }, + { + "Date+Time": "2018-01-13T00:00:00Z", + "Hs (total) (m)": 3.1549, + "Tp (total) (s)": 13.9454 + }, + { + "Date+Time": "2018-01-14T00:00:00Z", + "Hs (total) (m)": 3.1297, + "Tp (total) (s)": 13.1634 + }, + { + "Date+Time": "2018-01-15T00:00:00Z", + "Hs (total) (m)": 2.5658, + "Tp (total) (s)": 12.7918 + }, + { + "Date+Time": "2018-01-16T00:00:00Z", + "Hs (total) (m)": 2.7619, + "Tp (total) (s)": 12.6537 + }, + { + "Date+Time": "2018-01-17T00:00:00Z", + "Hs (total) (m)": 3.2006, + "Tp (total) (s)": 12.5149 + }, + { + "Date+Time": "2018-01-18T00:00:00Z", + "Hs (total) (m)": 5.0893, + "Tp (total) (s)": 15.4879 + }, + { + "Date+Time": "2018-01-19T00:00:00Z", + "Hs (total) (m)": 5.5388, + "Tp (total) (s)": 16.7158 + }, + { + "Date+Time": "2018-01-20T00:00:00Z", + "Hs (total) (m)": 3.9171, + "Tp (total) (s)": 15.1151 + }, + { + "Date+Time": "2018-01-21T00:00:00Z", + "Hs (total) (m)": 2.9817, + "Tp (total) (s)": 12.8056 + }, + { + "Date+Time": "2018-01-22T00:00:00Z", + "Hs (total) (m)": 3.0625, + "Tp (total) (s)": 12.7033 + }, + { + "Date+Time": "2018-01-23T00:00:00Z", + "Hs (total) (m)": 2.8733, + "Tp (total) (s)": 10.7738 + }, + { + "Date+Time": "2018-01-24T00:00:00Z", + "Hs (total) (m)": 3.4288, + "Tp (total) (s)": 12.6507 + }, + { + "Date+Time": "2018-01-25T00:00:00Z", + "Hs (total) (m)": 4.1566, + "Tp (total) (s)": 12.093 + }, + { + "Date+Time": "2018-01-26T00:00:00Z", + "Hs (total) (m)": 4.2146, + "Tp (total) (s)": 12.862 + }, + { + "Date+Time": "2018-01-27T00:00:00Z", + "Hs (total) (m)": 3.9247, + "Tp (total) (s)": 13.7883 + }, + { + "Date+Time": "2018-01-28T00:00:00Z", + "Hs (total) (m)": 3.1182, + "Tp (total) (s)": 13.7692 + }, + { + "Date+Time": "2018-01-29T00:00:00Z", + "Hs (total) (m)": 2.7497, + "Tp (total) (s)": 12.3508 + }, + { + "Date+Time": "2018-01-30T00:00:00Z", + "Hs (total) (m)": 3.2464, + "Tp (total) (s)": 12.508 + }, + { + "Date+Time": "2018-01-31T00:00:00Z", + "Hs (total) (m)": 2.6437, + "Tp (total) (s)": 12.0495 + }, + { + "Date+Time": "2018-02-01T00:00:00Z", + "Hs (total) (m)": 2.6719, + "Tp (total) (s)": 11.1942 + }, + { + "Date+Time": "2018-02-02T00:00:00Z", + "Hs (total) (m)": 3.2617, + "Tp (total) (s)": 12.6736 + }, + { + "Date+Time": "2018-02-03T00:00:00Z", + "Hs (total) (m)": 2.472, + "Tp (total) (s)": 13.4999 + }, + { + "Date+Time": "2018-02-04T00:00:00Z", + "Hs (total) (m)": 1.6488, + "Tp (total) (s)": 11.5238 + }, + { + "Date+Time": "2018-02-05T00:00:00Z", + "Hs (total) (m)": 1.8944, + "Tp (total) (s)": 11.8694 + }, + { + "Date+Time": "2018-02-06T00:00:00Z", + "Hs (total) (m)": 2.1424, + "Tp (total) (s)": 13.9035 + }, + { + "Date+Time": "2018-02-07T00:00:00Z", + "Hs (total) (m)": 1.6694, + "Tp (total) (s)": 12.2623 + }, + { + "Date+Time": "2018-02-08T00:00:00Z", + "Hs (total) (m)": 1.6732, + "Tp (total) (s)": 13.7951 + }, + { + "Date+Time": "2018-02-09T00:00:00Z", + "Hs (total) (m)": 2.7039, + "Tp (total) (s)": 14.8175 + }, + { + "Date+Time": "2018-02-10T00:00:00Z", + "Hs (total) (m)": 2.797, + "Tp (total) (s)": 15.0296 + }, + { + "Date+Time": "2018-02-11T00:00:00Z", + "Hs (total) (m)": 2.8932, + "Tp (total) (s)": 14.8785 + }, + { + "Date+Time": "2018-02-12T00:00:00Z", + "Hs (total) (m)": 3.4463, + "Tp (total) (s)": 14.9037 + }, + { + "Date+Time": "2018-02-13T00:00:00Z", + "Hs (total) (m)": 3.2243, + "Tp (total) (s)": 13.5502 + }, + { + "Date+Time": "2018-02-14T00:00:00Z", + "Hs (total) (m)": 3.5051, + "Tp (total) (s)": 13.1932 + }, + { + "Date+Time": "2018-02-15T00:00:00Z", + "Hs (total) (m)": 3.6363, + "Tp (total) (s)": 12.7956 + }, + { + "Date+Time": "2018-02-16T00:00:00Z", + "Hs (total) (m)": 4.0086, + "Tp (total) (s)": 15.2081 + }, + { + "Date+Time": "2018-02-17T00:00:00Z", + "Hs (total) (m)": 4.9939, + "Tp (total) (s)": 16.1855 + }, + { + "Date+Time": "2018-02-18T00:00:00Z", + "Hs (total) (m)": 3.3052, + "Tp (total) (s)": 14.9075 + }, + { + "Date+Time": "2018-02-19T00:00:00Z", + "Hs (total) (m)": 2.1111, + "Tp (total) (s)": 12.6156 + }, + { + "Date+Time": "2018-02-20T00:00:00Z", + "Hs (total) (m)": 2.2057, + "Tp (total) (s)": 12.2646 + }, + { + "Date+Time": "2018-02-21T00:00:00Z", + "Hs (total) (m)": 2.4651, + "Tp (total) (s)": 12.9551 + }, + { + "Date+Time": "2018-02-22T00:00:00Z", + "Hs (total) (m)": 2.7093, + "Tp (total) (s)": 14.919 + }, + { + "Date+Time": "2018-02-23T00:00:00Z", + "Hs (total) (m)": 2.7108, + "Tp (total) (s)": 15.0494 + }, + { + "Date+Time": "2018-02-24T00:00:00Z", + "Hs (total) (m)": 2.7978, + "Tp (total) (s)": 13.1466 + }, + { + "Date+Time": "2018-02-25T00:00:00Z", + "Hs (total) (m)": 2.8108, + "Tp (total) (s)": 12.1769 + }, + { + "Date+Time": "2018-02-26T00:00:00Z", + "Hs (total) (m)": 2.5605, + "Tp (total) (s)": 12.1151 + }, + { + "Date+Time": "2018-02-27T00:00:00Z", + "Hs (total) (m)": 2.6452, + "Tp (total) (s)": 14.0652 + }, + { + "Date+Time": "2018-02-28T00:00:00Z", + "Hs (total) (m)": 0.6821, + "Tp (total) (s)": 3.1129 + }, + { + "Date+Time": "2018-03-01T00:00:00Z", + "Hs (total) (m)": 1.1383, + "Tp (total) (s)": 5.3041 + }, + { + "Date+Time": "2018-03-02T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 3.7507 + }, + { + "Date+Time": "2018-03-03T00:00:00Z", + "Hs (total) (m)": 0.898, + "Tp (total) (s)": 4.7426 + }, + { + "Date+Time": "2018-03-04T00:00:00Z", + "Hs (total) (m)": 0.8972, + "Tp (total) (s)": 4.8585 + }, + { + "Date+Time": "2018-03-05T00:00:00Z", + "Hs (total) (m)": 0.309, + "Tp (total) (s)": 2.2492 + }, + { + "Date+Time": "2018-03-06T00:00:00Z", + "Hs (total) (m)": 0.1434, + "Tp (total) (s)": 11.6718 + }, + { + "Date+Time": "2018-03-07T00:00:00Z", + "Hs (total) (m)": 0.6729, + "Tp (total) (s)": 11.3285 + }, + { + "Date+Time": "2018-03-08T00:00:00Z", + "Hs (total) (m)": 0.8438, + "Tp (total) (s)": 10.6197 + }, + { + "Date+Time": "2018-03-09T00:00:00Z", + "Hs (total) (m)": 0.9537, + "Tp (total) (s)": 10.2634 + }, + { + "Date+Time": "2018-03-10T00:00:00Z", + "Hs (total) (m)": 1.4763, + "Tp (total) (s)": 8.2369 + }, + { + "Date+Time": "2018-03-11T00:00:00Z", + "Hs (total) (m)": 1.7083, + "Tp (total) (s)": 10.2702 + }, + { + "Date+Time": "2018-03-12T00:00:00Z", + "Hs (total) (m)": 1.7373, + "Tp (total) (s)": 10.3595 + }, + { + "Date+Time": "2018-03-13T00:00:00Z", + "Hs (total) (m)": 1.6572, + "Tp (total) (s)": 10.5632 + }, + { + "Date+Time": "2018-03-14T00:00:00Z", + "Hs (total) (m)": 2.0348, + "Tp (total) (s)": 10.4274 + }, + { + "Date+Time": "2018-03-15T00:00:00Z", + "Hs (total) (m)": 2.2851, + "Tp (total) (s)": 9.5065 + }, + { + "Date+Time": "2018-03-16T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 10.1062 + }, + { + "Date+Time": "2018-03-17T00:00:00Z", + "Hs (total) (m)": 1.6366, + "Tp (total) (s)": 11.5978 + }, + { + "Date+Time": "2018-03-18T00:00:00Z", + "Hs (total) (m)": 2.1294, + "Tp (total) (s)": 12.7285 + }, + { + "Date+Time": "2018-03-19T00:00:00Z", + "Hs (total) (m)": 1.2696, + "Tp (total) (s)": 16.4617 + }, + { + "Date+Time": "2018-03-20T00:00:00Z", + "Hs (total) (m)": 0.5173, + "Tp (total) (s)": 15.4393 + }, + { + "Date+Time": "2018-03-21T00:00:00Z", + "Hs (total) (m)": 0.5829, + "Tp (total) (s)": 12.9101 + }, + { + "Date+Time": "2018-03-22T00:00:00Z", + "Hs (total) (m)": 1.3482, + "Tp (total) (s)": 12.4767 + }, + { + "Date+Time": "2018-03-23T00:00:00Z", + "Hs (total) (m)": 2.1699, + "Tp (total) (s)": 12.5042 + }, + { + "Date+Time": "2018-03-24T00:00:00Z", + "Hs (total) (m)": 2.3728, + "Tp (total) (s)": 11.6642 + }, + { + "Date+Time": "2018-03-25T00:00:00Z", + "Hs (total) (m)": 2.1493, + "Tp (total) (s)": 10.7173 + }, + { + "Date+Time": "2018-03-26T00:00:00Z", + "Hs (total) (m)": 1.9578, + "Tp (total) (s)": 10.654 + }, + { + "Date+Time": "2018-03-27T00:00:00Z", + "Hs (total) (m)": 1.7716, + "Tp (total) (s)": 11.214 + }, + { + "Date+Time": "2018-03-28T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 11.2903 + }, + { + "Date+Time": "2018-03-29T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 9.7674 + }, + { + "Date+Time": "2018-03-30T00:00:00Z", + "Hs (total) (m)": 2.2034, + "Tp (total) (s)": 11.4399 + }, + { + "Date+Time": "2018-03-31T00:00:00Z", + "Hs (total) (m)": 2.2141, + "Tp (total) (s)": 12.2814 + }, + { + "Date+Time": "2018-04-01T00:00:00Z", + "Hs (total) (m)": 1.8883, + "Tp (total) (s)": 13.1375 + }, + { + "Date+Time": "2018-04-02T00:00:00Z", + "Hs (total) (m)": 1.6572, + "Tp (total) (s)": 11.6077 + }, + { + "Date+Time": "2018-04-03T00:00:00Z", + "Hs (total) (m)": 0.9224, + "Tp (total) (s)": 12.579 + }, + { + "Date+Time": "2018-04-04T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 11.4727 + }, + { + "Date+Time": "2018-04-05T00:00:00Z", + "Hs (total) (m)": 1.635, + "Tp (total) (s)": 15.2333 + }, + { + "Date+Time": "2018-04-06T00:00:00Z", + "Hs (total) (m)": 2.3827, + "Tp (total) (s)": 13.5838 + }, + { + "Date+Time": "2018-04-07T00:00:00Z", + "Hs (total) (m)": 2.2935, + "Tp (total) (s)": 11.771 + }, + { + "Date+Time": "2018-04-08T00:00:00Z", + "Hs (total) (m)": 2.1844, + "Tp (total) (s)": 12.0396 + }, + { + "Date+Time": "2018-04-09T00:00:00Z", + "Hs (total) (m)": 1.8914, + "Tp (total) (s)": 11.7214 + }, + { + "Date+Time": "2018-04-10T00:00:00Z", + "Hs (total) (m)": 1.4023, + "Tp (total) (s)": 11.1843 + }, + { + "Date+Time": "2018-04-11T00:00:00Z", + "Hs (total) (m)": 1.4733, + "Tp (total) (s)": 11.1393 + }, + { + "Date+Time": "2018-04-12T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 14.3841 + }, + { + "Date+Time": "2018-04-13T00:00:00Z", + "Hs (total) (m)": 2.0905, + "Tp (total) (s)": 14.1964 + }, + { + "Date+Time": "2018-04-14T00:00:00Z", + "Hs (total) (m)": 1.4641, + "Tp (total) (s)": 16.6143 + }, + { + "Date+Time": "2018-04-15T00:00:00Z", + "Hs (total) (m)": 2.1012, + "Tp (total) (s)": 14.9396 + }, + { + "Date+Time": "2018-04-16T00:00:00Z", + "Hs (total) (m)": 2.3766, + "Tp (total) (s)": 11.4605 + }, + { + "Date+Time": "2018-04-17T00:00:00Z", + "Hs (total) (m)": 3.1938, + "Tp (total) (s)": 10.6624 + }, + { + "Date+Time": "2018-04-18T00:00:00Z", + "Hs (total) (m)": 3.824, + "Tp (total) (s)": 13.065 + }, + { + "Date+Time": "2018-04-19T00:00:00Z", + "Hs (total) (m)": 4.1314, + "Tp (total) (s)": 15.0884 + }, + { + "Date+Time": "2018-04-20T00:00:00Z", + "Hs (total) (m)": 3.0099, + "Tp (total) (s)": 13.9889 + }, + { + "Date+Time": "2018-04-21T00:00:00Z", + "Hs (total) (m)": 2.0676, + "Tp (total) (s)": 11.3567 + }, + { + "Date+Time": "2018-04-22T00:00:00Z", + "Hs (total) (m)": 1.7563, + "Tp (total) (s)": 10.6113 + }, + { + "Date+Time": "2018-04-23T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 10.0269 + }, + { + "Date+Time": "2018-04-24T00:00:00Z", + "Hs (total) (m)": 1.7357, + "Tp (total) (s)": 9.6156 + }, + { + "Date+Time": "2018-04-25T00:00:00Z", + "Hs (total) (m)": 1.8143, + "Tp (total) (s)": 9.5119 + }, + { + "Date+Time": "2018-04-26T00:00:00Z", + "Hs (total) (m)": 1.9532, + "Tp (total) (s)": 9.1426 + }, + { + "Date+Time": "2018-04-27T00:00:00Z", + "Hs (total) (m)": 2.2385, + "Tp (total) (s)": 10.4472 + }, + { + "Date+Time": "2018-04-28T00:00:00Z", + "Hs (total) (m)": 2.2538, + "Tp (total) (s)": 10.6594 + }, + { + "Date+Time": "2018-04-29T00:00:00Z", + "Hs (total) (m)": 1.3649, + "Tp (total) (s)": 10.1833 + }, + { + "Date+Time": "2018-04-30T00:00:00Z", + "Hs (total) (m)": 0.9125, + "Tp (total) (s)": 8.7031 + }, + { + "Date+Time": "2018-05-01T00:00:00Z", + "Hs (total) (m)": 0.9713, + "Tp (total) (s)": 8.7725 + }, + { + "Date+Time": "2018-05-02T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 8.314 + }, + { + "Date+Time": "2018-05-03T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 9.2029 + }, + { + "Date+Time": "2018-05-04T00:00:00Z", + "Hs (total) (m)": 1.7258, + "Tp (total) (s)": 8.9145 + }, + { + "Date+Time": "2018-05-05T00:00:00Z", + "Hs (total) (m)": 1.9913, + "Tp (total) (s)": 10.8982 + }, + { + "Date+Time": "2018-05-06T00:00:00Z", + "Hs (total) (m)": 2.0638, + "Tp (total) (s)": 10.9149 + }, + { + "Date+Time": "2018-05-07T00:00:00Z", + "Hs (total) (m)": 1.9631, + "Tp (total) (s)": 10.6716 + }, + { + "Date+Time": "2018-05-08T00:00:00Z", + "Hs (total) (m)": 1.7861, + "Tp (total) (s)": 10.5365 + }, + { + "Date+Time": "2018-05-09T00:00:00Z", + "Hs (total) (m)": 1.8258, + "Tp (total) (s)": 10.9004 + }, + { + "Date+Time": "2018-05-10T00:00:00Z", + "Hs (total) (m)": 2.1256, + "Tp (total) (s)": 11.784 + }, + { + "Date+Time": "2018-05-11T00:00:00Z", + "Hs (total) (m)": 2.7474, + "Tp (total) (s)": 13.7562 + }, + { + "Date+Time": "2018-05-12T00:00:00Z", + "Hs (total) (m)": 3.6523, + "Tp (total) (s)": 14.2033 + }, + { + "Date+Time": "2018-05-13T00:00:00Z", + "Hs (total) (m)": 3.0419, + "Tp (total) (s)": 13.8318 + }, + { + "Date+Time": "2018-05-14T00:00:00Z", + "Hs (total) (m)": 2.2134, + "Tp (total) (s)": 11.9076 + }, + { + "Date+Time": "2018-05-15T00:00:00Z", + "Hs (total) (m)": 2.0066, + "Tp (total) (s)": 12.244 + }, + { + "Date+Time": "2018-05-16T00:00:00Z", + "Hs (total) (m)": 1.5275, + "Tp (total) (s)": 10.1604 + }, + { + "Date+Time": "2018-05-17T00:00:00Z", + "Hs (total) (m)": 1.249, + "Tp (total) (s)": 9.846 + }, + { + "Date+Time": "2018-05-18T00:00:00Z", + "Hs (total) (m)": 1.1055, + "Tp (total) (s)": 9.4333 + }, + { + "Date+Time": "2018-05-19T00:00:00Z", + "Hs (total) (m)": 1.059, + "Tp (total) (s)": 9.7056 + }, + { + "Date+Time": "2018-05-20T00:00:00Z", + "Hs (total) (m)": 1.3398, + "Tp (total) (s)": 10.332 + }, + { + "Date+Time": "2018-05-21T00:00:00Z", + "Hs (total) (m)": 2.0074, + "Tp (total) (s)": 14.1766 + }, + { + "Date+Time": "2018-05-22T00:00:00Z", + "Hs (total) (m)": 1.9982, + "Tp (total) (s)": 13.8752 + }, + { + "Date+Time": "2018-05-23T00:00:00Z", + "Hs (total) (m)": 1.3993, + "Tp (total) (s)": 11.8519 + }, + { + "Date+Time": "2018-05-24T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 11.4963 + }, + { + "Date+Time": "2018-05-25T00:00:00Z", + "Hs (total) (m)": 1.2978, + "Tp (total) (s)": 11.2232 + }, + { + "Date+Time": "2018-05-26T00:00:00Z", + "Hs (total) (m)": 1.4382, + "Tp (total) (s)": 11.5955 + }, + { + "Date+Time": "2018-05-27T00:00:00Z", + "Hs (total) (m)": 1.2352, + "Tp (total) (s)": 11.4254 + }, + { + "Date+Time": "2018-05-28T00:00:00Z", + "Hs (total) (m)": 0.8408, + "Tp (total) (s)": 10.0826 + }, + { + "Date+Time": "2018-05-29T00:00:00Z", + "Hs (total) (m)": 0.8141, + "Tp (total) (s)": 10.8905 + }, + { + "Date+Time": "2018-05-30T00:00:00Z", + "Hs (total) (m)": 1.0735, + "Tp (total) (s)": 10.7837 + }, + { + "Date+Time": "2018-05-31T00:00:00Z", + "Hs (total) (m)": 0.9339, + "Tp (total) (s)": 10.3481 + }, + { + "Date+Time": "2018-06-01T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 12.5126 + }, + { + "Date+Time": "2018-06-02T00:00:00Z", + "Hs (total) (m)": 1.1635, + "Tp (total) (s)": 12.3432 + }, + { + "Date+Time": "2018-06-03T00:00:00Z", + "Hs (total) (m)": 1.0743, + "Tp (total) (s)": 11.3674 + }, + { + "Date+Time": "2018-06-04T00:00:00Z", + "Hs (total) (m)": 0.8324, + "Tp (total) (s)": 10.0276 + }, + { + "Date+Time": "2018-06-05T00:00:00Z", + "Hs (total) (m)": 0.853, + "Tp (total) (s)": 8.9778 + }, + { + "Date+Time": "2018-06-06T00:00:00Z", + "Hs (total) (m)": 0.7836, + "Tp (total) (s)": 11.3758 + }, + { + "Date+Time": "2018-06-07T00:00:00Z", + "Hs (total) (m)": 0.7851, + "Tp (total) (s)": 11.2766 + }, + { + "Date+Time": "2018-06-08T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 10.4999 + }, + { + "Date+Time": "2018-06-09T00:00:00Z", + "Hs (total) (m)": 0.9476, + "Tp (total) (s)": 10.3084 + }, + { + "Date+Time": "2018-06-10T00:00:00Z", + "Hs (total) (m)": 1.0353, + "Tp (total) (s)": 11.8564 + }, + { + "Date+Time": "2018-06-11T00:00:00Z", + "Hs (total) (m)": 1.1444, + "Tp (total) (s)": 11.7809 + }, + { + "Date+Time": "2018-06-12T00:00:00Z", + "Hs (total) (m)": 1.1002, + "Tp (total) (s)": 11.3987 + }, + { + "Date+Time": "2018-06-13T00:00:00Z", + "Hs (total) (m)": 0.7874, + "Tp (total) (s)": 9.785 + }, + { + "Date+Time": "2018-06-14T00:00:00Z", + "Hs (total) (m)": 2.0814, + "Tp (total) (s)": 5.7794 + }, + { + "Date+Time": "2018-06-15T00:00:00Z", + "Hs (total) (m)": 2.9138, + "Tp (total) (s)": 10.2275 + }, + { + "Date+Time": "2018-06-16T00:00:00Z", + "Hs (total) (m)": 2.9023, + "Tp (total) (s)": 10.9485 + }, + { + "Date+Time": "2018-06-17T00:00:00Z", + "Hs (total) (m)": 2.3804, + "Tp (total) (s)": 10.1283 + }, + { + "Date+Time": "2018-06-18T00:00:00Z", + "Hs (total) (m)": 2.2095, + "Tp (total) (s)": 9.6057 + }, + { + "Date+Time": "2018-06-19T00:00:00Z", + "Hs (total) (m)": 2.1859, + "Tp (total) (s)": 9.9139 + }, + { + "Date+Time": "2018-06-20T00:00:00Z", + "Hs (total) (m)": 1.9379, + "Tp (total) (s)": 10.2435 + }, + { + "Date+Time": "2018-06-21T00:00:00Z", + "Hs (total) (m)": 2.1966, + "Tp (total) (s)": 9.5119 + }, + { + "Date+Time": "2018-06-22T00:00:00Z", + "Hs (total) (m)": 1.7113, + "Tp (total) (s)": 9.0442 + }, + { + "Date+Time": "2018-06-23T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 8.7214 + }, + { + "Date+Time": "2018-06-24T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 8.7916 + }, + { + "Date+Time": "2018-06-25T00:00:00Z", + "Hs (total) (m)": 0.9247, + "Tp (total) (s)": 8.7046 + }, + { + "Date+Time": "2018-06-26T00:00:00Z", + "Hs (total) (m)": 0.7866, + "Tp (total) (s)": 11.3826 + }, + { + "Date+Time": "2018-06-27T00:00:00Z", + "Hs (total) (m)": 0.7279, + "Tp (total) (s)": 10.744 + }, + { + "Date+Time": "2018-06-28T00:00:00Z", + "Hs (total) (m)": 0.7241, + "Tp (total) (s)": 9.7873 + }, + { + "Date+Time": "2018-06-29T00:00:00Z", + "Hs (total) (m)": 0.7141, + "Tp (total) (s)": 8.8397 + }, + { + "Date+Time": "2018-06-30T00:00:00Z", + "Hs (total) (m)": 0.5966, + "Tp (total) (s)": 8.3514 + }, + { + "Date+Time": "2018-07-01T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 10.3793 + }, + { + "Date+Time": "2018-07-02T00:00:00Z", + "Hs (total) (m)": 1.1979, + "Tp (total) (s)": 10.387 + }, + { + "Date+Time": "2018-07-03T00:00:00Z", + "Hs (total) (m)": 1.1422, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "2018-07-04T00:00:00Z", + "Hs (total) (m)": 0.9545, + "Tp (total) (s)": 7.0757 + }, + { + "Date+Time": "2018-07-05T00:00:00Z", + "Hs (total) (m)": 0.8095, + "Tp (total) (s)": 7.1131 + }, + { + "Date+Time": "2018-07-06T00:00:00Z", + "Hs (total) (m)": 0.692, + "Tp (total) (s)": 9.6179 + }, + { + "Date+Time": "2018-07-07T00:00:00Z", + "Hs (total) (m)": 0.7889, + "Tp (total) (s)": 10.0513 + }, + { + "Date+Time": "2018-07-08T00:00:00Z", + "Hs (total) (m)": 0.8835, + "Tp (total) (s)": 9.7903 + }, + { + "Date+Time": "2018-07-09T00:00:00Z", + "Hs (total) (m)": 0.9156, + "Tp (total) (s)": 9.5019 + }, + { + "Date+Time": "2018-07-10T00:00:00Z", + "Hs (total) (m)": 1.0399, + "Tp (total) (s)": 9.3959 + }, + { + "Date+Time": "2018-07-11T00:00:00Z", + "Hs (total) (m)": 1.0201, + "Tp (total) (s)": 11.9312 + }, + { + "Date+Time": "2018-07-12T00:00:00Z", + "Hs (total) (m)": 1.0125, + "Tp (total) (s)": 10.6006 + }, + { + "Date+Time": "2018-07-13T00:00:00Z", + "Hs (total) (m)": 1.0651, + "Tp (total) (s)": 11.166 + }, + { + "Date+Time": "2018-07-14T00:00:00Z", + "Hs (total) (m)": 0.8202, + "Tp (total) (s)": 10.5419 + }, + { + "Date+Time": "2018-07-15T00:00:00Z", + "Hs (total) (m)": 1.1208, + "Tp (total) (s)": 8.6375 + }, + { + "Date+Time": "2018-07-16T00:00:00Z", + "Hs (total) (m)": 1.2001, + "Tp (total) (s)": 6.4554 + }, + { + "Date+Time": "2018-07-17T00:00:00Z", + "Hs (total) (m)": 1.3276, + "Tp (total) (s)": 10.7318 + }, + { + "Date+Time": "2018-07-18T00:00:00Z", + "Hs (total) (m)": 1.6373, + "Tp (total) (s)": 11.0134 + }, + { + "Date+Time": "2018-07-19T00:00:00Z", + "Hs (total) (m)": 1.5038, + "Tp (total) (s)": 10.5991 + }, + { + "Date+Time": "2018-07-20T00:00:00Z", + "Hs (total) (m)": 1.165, + "Tp (total) (s)": 9.7285 + }, + { + "Date+Time": "2018-07-21T00:00:00Z", + "Hs (total) (m)": 1.0712, + "Tp (total) (s)": 8.6245 + }, + { + "Date+Time": "2018-07-22T00:00:00Z", + "Hs (total) (m)": 0.9697, + "Tp (total) (s)": 7.9249 + }, + { + "Date+Time": "2018-07-23T00:00:00Z", + "Hs (total) (m)": 0.914, + "Tp (total) (s)": 7.4709 + }, + { + "Date+Time": "2018-07-24T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 7.1223 + }, + { + "Date+Time": "2018-07-25T00:00:00Z", + "Hs (total) (m)": 0.9903, + "Tp (total) (s)": 7.12 + }, + { + "Date+Time": "2018-07-26T00:00:00Z", + "Hs (total) (m)": 1.0804, + "Tp (total) (s)": 7.2062 + }, + { + "Date+Time": "2018-07-27T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 8.1889 + }, + { + "Date+Time": "2018-07-28T00:00:00Z", + "Hs (total) (m)": 1.6411, + "Tp (total) (s)": 8.6489 + }, + { + "Date+Time": "2018-07-29T00:00:00Z", + "Hs (total) (m)": 1.4573, + "Tp (total) (s)": 8.5803 + }, + { + "Date+Time": "2018-07-30T00:00:00Z", + "Hs (total) (m)": 1.6602, + "Tp (total) (s)": 10.6677 + }, + { + "Date+Time": "2018-07-31T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 10.0925 + }, + { + "Date+Time": "2018-08-01T00:00:00Z", + "Hs (total) (m)": 2.2988, + "Tp (total) (s)": 9.048 + }, + { + "Date+Time": "2018-08-02T00:00:00Z", + "Hs (total) (m)": 2.4514, + "Tp (total) (s)": 10.3618 + }, + { + "Date+Time": "2018-08-03T00:00:00Z", + "Hs (total) (m)": 2.3255, + "Tp (total) (s)": 10.4831 + }, + { + "Date+Time": "2018-08-04T00:00:00Z", + "Hs (total) (m)": 1.6671, + "Tp (total) (s)": 10.1024 + }, + { + "Date+Time": "2018-08-05T00:00:00Z", + "Hs (total) (m)": 1.1979, + "Tp (total) (s)": 8.4758 + }, + { + "Date+Time": "2018-08-06T00:00:00Z", + "Hs (total) (m)": 0.9903, + "Tp (total) (s)": 7.8814 + }, + { + "Date+Time": "2018-08-07T00:00:00Z", + "Hs (total) (m)": 0.9514, + "Tp (total) (s)": 7.7616 + }, + { + "Date+Time": "2018-08-08T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 8.1172 + }, + { + "Date+Time": "2018-08-09T00:00:00Z", + "Hs (total) (m)": 1.3039, + "Tp (total) (s)": 8.533 + }, + { + "Date+Time": "2018-08-10T00:00:00Z", + "Hs (total) (m)": 1.5336, + "Tp (total) (s)": 9.55 + }, + { + "Date+Time": "2018-08-11T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 9.7835 + }, + { + "Date+Time": "2018-08-12T00:00:00Z", + "Hs (total) (m)": 1.1834, + "Tp (total) (s)": 7.9943 + }, + { + "Date+Time": "2018-08-13T00:00:00Z", + "Hs (total) (m)": 1.0155, + "Tp (total) (s)": 8.0226 + }, + { + "Date+Time": "2018-08-14T00:00:00Z", + "Hs (total) (m)": 1.307, + "Tp (total) (s)": 9.4661 + }, + { + "Date+Time": "2018-08-15T00:00:00Z", + "Hs (total) (m)": 1.6327, + "Tp (total) (s)": 9.6561 + }, + { + "Date+Time": "2018-08-16T00:00:00Z", + "Hs (total) (m)": 1.8166, + "Tp (total) (s)": 7.3199 + }, + { + "Date+Time": "2018-08-17T00:00:00Z", + "Hs (total) (m)": 1.8929, + "Tp (total) (s)": 7.374 + }, + { + "Date+Time": "2018-08-18T00:00:00Z", + "Hs (total) (m)": 2.2385, + "Tp (total) (s)": 9.9826 + }, + { + "Date+Time": "2018-08-19T00:00:00Z", + "Hs (total) (m)": 2.5811, + "Tp (total) (s)": 10.2786 + }, + { + "Date+Time": "2018-08-20T00:00:00Z", + "Hs (total) (m)": 2.3461, + "Tp (total) (s)": 10.184 + }, + { + "Date+Time": "2018-08-21T00:00:00Z", + "Hs (total) (m)": 2.1485, + "Tp (total) (s)": 9.7667 + }, + { + "Date+Time": "2018-08-22T00:00:00Z", + "Hs (total) (m)": 1.8723, + "Tp (total) (s)": 10.5007 + }, + { + "Date+Time": "2018-08-23T00:00:00Z", + "Hs (total) (m)": 1.7174, + "Tp (total) (s)": 10.229 + }, + { + "Date+Time": "2018-08-24T00:00:00Z", + "Hs (total) (m)": 1.3543, + "Tp (total) (s)": 7.0963 + }, + { + "Date+Time": "2018-08-25T00:00:00Z", + "Hs (total) (m)": 1.3627, + "Tp (total) (s)": 6.9773 + }, + { + "Date+Time": "2018-08-26T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 9.4539 + }, + { + "Date+Time": "2018-08-27T00:00:00Z", + "Hs (total) (m)": 1.4885, + "Tp (total) (s)": 8.549 + }, + { + "Date+Time": "2018-08-28T00:00:00Z", + "Hs (total) (m)": 1.6602, + "Tp (total) (s)": 7.7548 + }, + { + "Date+Time": "2018-08-29T00:00:00Z", + "Hs (total) (m)": 2.2805, + "Tp (total) (s)": 10.3755 + }, + { + "Date+Time": "2018-08-30T00:00:00Z", + "Hs (total) (m)": 1.6594, + "Tp (total) (s)": 10.2451 + }, + { + "Date+Time": "2018-08-31T00:00:00Z", + "Hs (total) (m)": 1.5358, + "Tp (total) (s)": 11.4536 + }, + { + "Date+Time": "2018-09-01T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 11.0843 + }, + { + "Date+Time": "2018-09-02T00:00:00Z", + "Hs (total) (m)": 1.2123, + "Tp (total) (s)": 8.8862 + }, + { + "Date+Time": "2018-09-03T00:00:00Z", + "Hs (total) (m)": 1.1132, + "Tp (total) (s)": 8.3811 + }, + { + "Date+Time": "2018-09-04T00:00:00Z", + "Hs (total) (m)": 1.2726, + "Tp (total) (s)": 14.317 + }, + { + "Date+Time": "2018-09-05T00:00:00Z", + "Hs (total) (m)": 1.5244, + "Tp (total) (s)": 13.9798 + }, + { + "Date+Time": "2018-09-06T00:00:00Z", + "Hs (total) (m)": 1.5305, + "Tp (total) (s)": 12.7728 + }, + { + "Date+Time": "2018-09-07T00:00:00Z", + "Hs (total) (m)": 1.3939, + "Tp (total) (s)": 11.5017 + }, + { + "Date+Time": "2018-09-08T00:00:00Z", + "Hs (total) (m)": 1.3382, + "Tp (total) (s)": 9.6538 + }, + { + "Date+Time": "2018-09-09T00:00:00Z", + "Hs (total) (m)": 1.4336, + "Tp (total) (s)": 8.6421 + }, + { + "Date+Time": "2018-09-10T00:00:00Z", + "Hs (total) (m)": 1.7731, + "Tp (total) (s)": 11.3933 + }, + { + "Date+Time": "2018-09-11T00:00:00Z", + "Hs (total) (m)": 2.1897, + "Tp (total) (s)": 12.2509 + }, + { + "Date+Time": "2018-09-12T00:00:00Z", + "Hs (total) (m)": 2.4812, + "Tp (total) (s)": 11.961 + }, + { + "Date+Time": "2018-09-13T00:00:00Z", + "Hs (total) (m)": 1.9982, + "Tp (total) (s)": 9.4729 + }, + { + "Date+Time": "2018-09-14T00:00:00Z", + "Hs (total) (m)": 2.1508, + "Tp (total) (s)": 11.1766 + }, + { + "Date+Time": "2018-09-15T00:00:00Z", + "Hs (total) (m)": 2.1378, + "Tp (total) (s)": 10.6868 + }, + { + "Date+Time": "2018-09-16T00:00:00Z", + "Hs (total) (m)": 2.1302, + "Tp (total) (s)": 10.4007 + }, + { + "Date+Time": "2018-09-17T00:00:00Z", + "Hs (total) (m)": 2.1432, + "Tp (total) (s)": 8.1736 + }, + { + "Date+Time": "2018-09-18T00:00:00Z", + "Hs (total) (m)": 1.9593, + "Tp (total) (s)": 8.4857 + }, + { + "Date+Time": "2018-09-19T00:00:00Z", + "Hs (total) (m)": 2.3721, + "Tp (total) (s)": 8.7489 + }, + { + "Date+Time": "2018-09-20T00:00:00Z", + "Hs (total) (m)": 3.798, + "Tp (total) (s)": 9.4813 + }, + { + "Date+Time": "2018-09-21T00:00:00Z", + "Hs (total) (m)": 3.6157, + "Tp (total) (s)": 10.5327 + }, + { + "Date+Time": "2018-09-22T00:00:00Z", + "Hs (total) (m)": 2.8489, + "Tp (total) (s)": 10.7898 + }, + { + "Date+Time": "2018-09-23T00:00:00Z", + "Hs (total) (m)": 2.0127, + "Tp (total) (s)": 10.1688 + }, + { + "Date+Time": "2018-09-24T00:00:00Z", + "Hs (total) (m)": 1.5679, + "Tp (total) (s)": 8.7222 + }, + { + "Date+Time": "2018-09-25T00:00:00Z", + "Hs (total) (m)": 1.1147, + "Tp (total) (s)": 9.5538 + }, + { + "Date+Time": "2018-09-26T00:00:00Z", + "Hs (total) (m)": 2.028, + "Tp (total) (s)": 9.3127 + }, + { + "Date+Time": "2018-09-27T00:00:00Z", + "Hs (total) (m)": 2.2927, + "Tp (total) (s)": 15.5728 + }, + { + "Date+Time": "2018-09-28T00:00:00Z", + "Hs (total) (m)": 2.2813, + "Tp (total) (s)": 14.9449 + }, + { + "Date+Time": "2018-09-29T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 12.6156 + }, + { + "Date+Time": "2018-09-30T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 10.8386 + }, + { + "Date+Time": "2018-10-01T00:00:00Z", + "Hs (total) (m)": 1.2375, + "Tp (total) (s)": 9.9857 + }, + { + "Date+Time": "2018-10-02T00:00:00Z", + "Hs (total) (m)": 1.5061, + "Tp (total) (s)": 14.3841 + }, + { + "Date+Time": "2018-10-03T00:00:00Z", + "Hs (total) (m)": 1.8548, + "Tp (total) (s)": 14.079 + }, + { + "Date+Time": "2018-10-04T00:00:00Z", + "Hs (total) (m)": 1.8578, + "Tp (total) (s)": 12.804 + }, + { + "Date+Time": "2018-10-05T00:00:00Z", + "Hs (total) (m)": 1.6488, + "Tp (total) (s)": 11.5528 + }, + { + "Date+Time": "2018-10-06T00:00:00Z", + "Hs (total) (m)": 1.4313, + "Tp (total) (s)": 9.4165 + }, + { + "Date+Time": "2018-10-07T00:00:00Z", + "Hs (total) (m)": 1.1437, + "Tp (total) (s)": 9.695 + }, + { + "Date+Time": "2018-10-08T00:00:00Z", + "Hs (total) (m)": 2.1126, + "Tp (total) (s)": 11.7763 + }, + { + "Date+Time": "2018-10-09T00:00:00Z", + "Hs (total) (m)": 2.8298, + "Tp (total) (s)": 11.4132 + }, + { + "Date+Time": "2018-10-10T00:00:00Z", + "Hs (total) (m)": 3.8575, + "Tp (total) (s)": 11.4292 + }, + { + "Date+Time": "2018-10-11T00:00:00Z", + "Hs (total) (m)": 3.2746, + "Tp (total) (s)": 11.2354 + }, + { + "Date+Time": "2018-10-12T00:00:00Z", + "Hs (total) (m)": 2.5414, + "Tp (total) (s)": 10.3442 + }, + { + "Date+Time": "2018-10-13T00:00:00Z", + "Hs (total) (m)": 4.4557, + "Tp (total) (s)": 13.5762 + }, + { + "Date+Time": "2018-10-14T00:00:00Z", + "Hs (total) (m)": 3.9979, + "Tp (total) (s)": 13.7776 + }, + { + "Date+Time": "2018-10-15T00:00:00Z", + "Hs (total) (m)": 2.7863, + "Tp (total) (s)": 13.0734 + }, + { + "Date+Time": "2018-10-16T00:00:00Z", + "Hs (total) (m)": 2.0989, + "Tp (total) (s)": 11.5459 + }, + { + "Date+Time": "2018-10-17T00:00:00Z", + "Hs (total) (m)": 2.0798, + "Tp (total) (s)": 11.3681 + }, + { + "Date+Time": "2018-10-18T00:00:00Z", + "Hs (total) (m)": 2.2942, + "Tp (total) (s)": 11.536 + }, + { + "Date+Time": "2018-10-19T00:00:00Z", + "Hs (total) (m)": 2.2431, + "Tp (total) (s)": 11.9678 + }, + { + "Date+Time": "2018-10-20T00:00:00Z", + "Hs (total) (m)": 2.1859, + "Tp (total) (s)": 12.4897 + }, + { + "Date+Time": "2018-10-21T00:00:00Z", + "Hs (total) (m)": 2.2965, + "Tp (total) (s)": 12.6576 + }, + { + "Date+Time": "2018-10-22T00:00:00Z", + "Hs (total) (m)": 2.0997, + "Tp (total) (s)": 13.5601 + }, + { + "Date+Time": "2018-10-23T00:00:00Z", + "Hs (total) (m)": 1.661, + "Tp (total) (s)": 11.9007 + }, + { + "Date+Time": "2018-10-24T00:00:00Z", + "Hs (total) (m)": 1.7266, + "Tp (total) (s)": 11.99 + }, + { + "Date+Time": "2018-10-25T00:00:00Z", + "Hs (total) (m)": 1.8639, + "Tp (total) (s)": 12.7987 + }, + { + "Date+Time": "2018-10-26T00:00:00Z", + "Hs (total) (m)": 1.6755, + "Tp (total) (s)": 12.4882 + }, + { + "Date+Time": "2018-10-27T00:00:00Z", + "Hs (total) (m)": 1.7083, + "Tp (total) (s)": 12.228 + }, + { + "Date+Time": "2018-10-28T00:00:00Z", + "Hs (total) (m)": 1.4954, + "Tp (total) (s)": 8.9335 + }, + { + "Date+Time": "2018-10-29T00:00:00Z", + "Hs (total) (m)": 1.1719, + "Tp (total) (s)": 10.1123 + }, + { + "Date+Time": "2018-10-30T00:00:00Z", + "Hs (total) (m)": 1.6999, + "Tp (total) (s)": 5.4765 + }, + { + "Date+Time": "2018-10-31T00:00:00Z", + "Hs (total) (m)": 1.7914, + "Tp (total) (s)": 8.7298 + }, + { + "Date+Time": "2018-11-01T00:00:00Z", + "Hs (total) (m)": 1.4939, + "Tp (total) (s)": 8.6886 + }, + { + "Date+Time": "2018-11-02T00:00:00Z", + "Hs (total) (m)": 1.4878, + "Tp (total) (s)": 12.5454 + }, + { + "Date+Time": "2018-11-03T00:00:00Z", + "Hs (total) (m)": 2.2988, + "Tp (total) (s)": 12.7895 + }, + { + "Date+Time": "2018-11-04T00:00:00Z", + "Hs (total) (m)": 2.8191, + "Tp (total) (s)": 9.4707 + }, + { + "Date+Time": "2018-11-05T00:00:00Z", + "Hs (total) (m)": 4.2055, + "Tp (total) (s)": 16.8859 + }, + { + "Date+Time": "2018-11-06T00:00:00Z", + "Hs (total) (m)": 3.8079, + "Tp (total) (s)": 16.216 + }, + { + "Date+Time": "2018-11-07T00:00:00Z", + "Hs (total) (m)": 2.4216, + "Tp (total) (s)": 10.3916 + }, + { + "Date+Time": "2018-11-08T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 10.6494 + }, + { + "Date+Time": "2018-11-09T00:00:00Z", + "Hs (total) (m)": 2.8375, + "Tp (total) (s)": 13.8386 + }, + { + "Date+Time": "2018-11-10T00:00:00Z", + "Hs (total) (m)": 3.7828, + "Tp (total) (s)": 13.9767 + }, + { + "Date+Time": "2018-11-11T00:00:00Z", + "Hs (total) (m)": 3.2792, + "Tp (total) (s)": 11.5535 + }, + { + "Date+Time": "2018-11-12T00:00:00Z", + "Hs (total) (m)": 2.7055, + "Tp (total) (s)": 11.1911 + }, + { + "Date+Time": "2018-11-13T00:00:00Z", + "Hs (total) (m)": 3.1564, + "Tp (total) (s)": 12.4805 + }, + { + "Date+Time": "2018-11-14T00:00:00Z", + "Hs (total) (m)": 2.9916, + "Tp (total) (s)": 12.9139 + }, + { + "Date+Time": "2018-11-15T00:00:00Z", + "Hs (total) (m)": 3.1472, + "Tp (total) (s)": 12.788 + }, + { + "Date+Time": "2018-11-16T00:00:00Z", + "Hs (total) (m)": 2.823, + "Tp (total) (s)": 10.1344 + }, + { + "Date+Time": "2018-11-17T00:00:00Z", + "Hs (total) (m)": 2.7329, + "Tp (total) (s)": 12.196 + }, + { + "Date+Time": "2018-11-18T00:00:00Z", + "Hs (total) (m)": 2.9427, + "Tp (total) (s)": 12.711 + }, + { + "Date+Time": "2018-11-19T00:00:00Z", + "Hs (total) (m)": 3.1564, + "Tp (total) (s)": 16.8104 + }, + { + "Date+Time": "2018-11-20T00:00:00Z", + "Hs (total) (m)": 3.0007, + "Tp (total) (s)": 16.6593 + }, + { + "Date+Time": "2018-11-21T00:00:00Z", + "Hs (total) (m)": 1.6106, + "Tp (total) (s)": 16.8035 + }, + { + "Date+Time": "2018-11-22T00:00:00Z", + "Hs (total) (m)": 1.8746, + "Tp (total) (s)": 15.9337 + }, + { + "Date+Time": "2018-11-23T00:00:00Z", + "Hs (total) (m)": 1.9326, + "Tp (total) (s)": 13.1138 + }, + { + "Date+Time": "2018-11-24T00:00:00Z", + "Hs (total) (m)": 0.8553, + "Tp (total) (s)": 3.0175 + }, + { + "Date+Time": "2018-11-25T00:00:00Z", + "Hs (total) (m)": 0.4471, + "Tp (total) (s)": 2.5895 + }, + { + "Date+Time": "2018-11-26T00:00:00Z", + "Hs (total) (m)": 0.7889, + "Tp (total) (s)": 11.4803 + }, + { + "Date+Time": "2018-11-27T00:00:00Z", + "Hs (total) (m)": 1.5938, + "Tp (total) (s)": 10.9859 + }, + { + "Date+Time": "2018-11-28T00:00:00Z", + "Hs (total) (m)": 3.09, + "Tp (total) (s)": 15.8956 + }, + { + "Date+Time": "2018-11-29T00:00:00Z", + "Hs (total) (m)": 4.0063, + "Tp (total) (s)": 14.2506 + }, + { + "Date+Time": "2018-11-30T00:00:00Z", + "Hs (total) (m)": 4.2573, + "Tp (total) (s)": 13.7036 + }, + { + "Date+Time": "2018-12-01T00:00:00Z", + "Hs (total) (m)": 3.9659, + "Tp (total) (s)": 15.4843 + }, + { + "Date+Time": "2018-12-02T00:00:00Z", + "Hs (total) (m)": 3.1861, + "Tp (total) (s)": 12.8147 + }, + { + "Date+Time": "2018-12-03T00:00:00Z", + "Hs (total) (m)": 2.7573, + "Tp (total) (s)": 12.685 + }, + { + "Date+Time": "2018-12-04T00:00:00Z", + "Hs (total) (m)": 2.4255, + "Tp (total) (s)": 10.2565 + }, + { + "Date+Time": "2018-12-05T00:00:00Z", + "Hs (total) (m)": 2.6162, + "Tp (total) (s)": 13.5609 + }, + { + "Date+Time": "2018-12-06T00:00:00Z", + "Hs (total) (m)": 1.1315, + "Tp (total) (s)": 11.9549 + }, + { + "Date+Time": "2018-12-07T00:00:00Z", + "Hs (total) (m)": 2.5407, + "Tp (total) (s)": 12.5744 + }, + { + "Date+Time": "2018-12-08T00:00:00Z", + "Hs (total) (m)": 3.2212, + "Tp (total) (s)": 10.5129 + }, + { + "Date+Time": "2018-12-09T00:00:00Z", + "Hs (total) (m)": 4.1421, + "Tp (total) (s)": 12.2875 + }, + { + "Date+Time": "2018-12-10T00:00:00Z", + "Hs (total) (m)": 4.6297, + "Tp (total) (s)": 13.1481 + }, + { + "Date+Time": "2018-12-11T00:00:00Z", + "Hs (total) (m)": 4.3435, + "Tp (total) (s)": 15.6087 + }, + { + "Date+Time": "2018-12-12T00:00:00Z", + "Hs (total) (m)": 3.0686, + "Tp (total) (s)": 15.3226 + }, + { + "Date+Time": "2018-12-13T00:00:00Z", + "Hs (total) (m)": 2.7627, + "Tp (total) (s)": 14.7137 + }, + { + "Date+Time": "2018-12-14T00:00:00Z", + "Hs (total) (m)": 3.4921, + "Tp (total) (s)": 15.1814 + }, + { + "Date+Time": "2018-12-15T00:00:00Z", + "Hs (total) (m)": 3.6531, + "Tp (total) (s)": 15.6911 + }, + { + "Date+Time": "2018-12-16T00:00:00Z", + "Hs (total) (m)": 3.634, + "Tp (total) (s)": 15.6125 + }, + { + "Date+Time": "2018-12-17T00:00:00Z", + "Hs (total) (m)": 3.4814, + "Tp (total) (s)": 16.8607 + }, + { + "Date+Time": "2018-12-18T00:00:00Z", + "Hs (total) (m)": 3.9109, + "Tp (total) (s)": 16.525 + }, + { + "Date+Time": "2018-12-19T00:00:00Z", + "Hs (total) (m)": 4.1078, + "Tp (total) (s)": 12.6576 + }, + { + "Date+Time": "2018-12-20T00:00:00Z", + "Hs (total) (m)": 3.8797, + "Tp (total) (s)": 13.5617 + }, + { + "Date+Time": "2018-12-21T00:00:00Z", + "Hs (total) (m)": 3.6561, + "Tp (total) (s)": 13.3694 + }, + { + "Date+Time": "2018-12-22T00:00:00Z", + "Hs (total) (m)": 2.9839, + "Tp (total) (s)": 12.656 + }, + { + "Date+Time": "2018-12-23T00:00:00Z", + "Hs (total) (m)": 2.3721, + "Tp (total) (s)": 10.1016 + }, + { + "Date+Time": "2018-12-24T00:00:00Z", + "Hs (total) (m)": 2.1104, + "Tp (total) (s)": 9.4523 + }, + { + "Date+Time": "2018-12-25T00:00:00Z", + "Hs (total) (m)": 2.1912, + "Tp (total) (s)": 13.432 + }, + { + "Date+Time": "2018-12-26T00:00:00Z", + "Hs (total) (m)": 1.9517, + "Tp (total) (s)": 12.3234 + }, + { + "Date+Time": "2018-12-27T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 10.0246 + }, + { + "Date+Time": "2018-12-28T00:00:00Z", + "Hs (total) (m)": 1.5381, + "Tp (total) (s)": 10.284 + }, + { + "Date+Time": "2018-12-29T00:00:00Z", + "Hs (total) (m)": 1.6427, + "Tp (total) (s)": 10.3648 + }, + { + "Date+Time": "2018-12-30T00:00:00Z", + "Hs (total) (m)": 1.9036, + "Tp (total) (s)": 10.4854 + }, + { + "Date+Time": "2018-12-31T00:00:00Z", + "Hs (total) (m)": 1.8342, + "Tp (total) (s)": 10.3 + }, + { + "Date+Time": "2019-01-01T00:00:00Z", + "Hs (total) (m)": 1.8532, + "Tp (total) (s)": 12.1654 + }, + { + "Date+Time": "2019-01-02T00:00:00Z", + "Hs (total) (m)": 1.2215, + "Tp (total) (s)": 11.4872 + }, + { + "Date+Time": "2019-01-03T00:00:00Z", + "Hs (total) (m)": 1.4183, + "Tp (total) (s)": 11.8839 + }, + { + "Date+Time": "2019-01-04T00:00:00Z", + "Hs (total) (m)": 1.619, + "Tp (total) (s)": 11.7008 + }, + { + "Date+Time": "2019-01-05T00:00:00Z", + "Hs (total) (m)": 1.7174, + "Tp (total) (s)": 11.4895 + }, + { + "Date+Time": "2019-01-06T00:00:00Z", + "Hs (total) (m)": 2.2721, + "Tp (total) (s)": 15.1639 + }, + { + "Date+Time": "2019-01-07T00:00:00Z", + "Hs (total) (m)": 1.9974, + "Tp (total) (s)": 12.653 + }, + { + "Date+Time": "2019-01-08T00:00:00Z", + "Hs (total) (m)": 1.6121, + "Tp (total) (s)": 10.3198 + }, + { + "Date+Time": "2019-01-09T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 10.0681 + }, + { + "Date+Time": "2019-01-10T00:00:00Z", + "Hs (total) (m)": 0.8759, + "Tp (total) (s)": 9.2372 + }, + { + "Date+Time": "2019-01-11T00:00:00Z", + "Hs (total) (m)": 0.9178, + "Tp (total) (s)": 14.0538 + }, + { + "Date+Time": "2019-01-12T00:00:00Z", + "Hs (total) (m)": 1.9265, + "Tp (total) (s)": 12.6095 + }, + { + "Date+Time": "2019-01-13T00:00:00Z", + "Hs (total) (m)": 2.0714, + "Tp (total) (s)": 8.478 + }, + { + "Date+Time": "2019-01-14T00:00:00Z", + "Hs (total) (m)": 1.9349, + "Tp (total) (s)": 9.7942 + }, + { + "Date+Time": "2019-01-15T00:00:00Z", + "Hs (total) (m)": 1.8601, + "Tp (total) (s)": 11.6184 + }, + { + "Date+Time": "2019-01-16T00:00:00Z", + "Hs (total) (m)": 2.4926, + "Tp (total) (s)": 10.1176 + }, + { + "Date+Time": "2019-01-17T00:00:00Z", + "Hs (total) (m)": 2.4323, + "Tp (total) (s)": 12.3852 + }, + { + "Date+Time": "2019-01-18T00:00:00Z", + "Hs (total) (m)": 2.3377, + "Tp (total) (s)": 11.3071 + }, + { + "Date+Time": "2019-01-19T00:00:00Z", + "Hs (total) (m)": 2.9061, + "Tp (total) (s)": 13.9569 + }, + { + "Date+Time": "2019-01-20T00:00:00Z", + "Hs (total) (m)": 1.7243, + "Tp (total) (s)": 11.4444 + }, + { + "Date+Time": "2019-01-21T00:00:00Z", + "Hs (total) (m)": 2.2118, + "Tp (total) (s)": 15.4141 + }, + { + "Date+Time": "2019-01-22T00:00:00Z", + "Hs (total) (m)": 3.2701, + "Tp (total) (s)": 12.6484 + }, + { + "Date+Time": "2019-01-23T00:00:00Z", + "Hs (total) (m)": 3.1632, + "Tp (total) (s)": 15.1997 + }, + { + "Date+Time": "2019-01-24T00:00:00Z", + "Hs (total) (m)": 2.0585, + "Tp (total) (s)": 12.2585 + }, + { + "Date+Time": "2019-01-25T00:00:00Z", + "Hs (total) (m)": 1.9524, + "Tp (total) (s)": 10.4793 + }, + { + "Date+Time": "2019-01-26T00:00:00Z", + "Hs (total) (m)": 2.3438, + "Tp (total) (s)": 12.1677 + }, + { + "Date+Time": "2019-01-27T00:00:00Z", + "Hs (total) (m)": 2.7001, + "Tp (total) (s)": 11.6146 + }, + { + "Date+Time": "2019-01-28T00:00:00Z", + "Hs (total) (m)": 1.8685, + "Tp (total) (s)": 10.3511 + }, + { + "Date+Time": "2019-01-29T00:00:00Z", + "Hs (total) (m)": 1.9044, + "Tp (total) (s)": 10.8249 + }, + { + "Date+Time": "2019-01-30T00:00:00Z", + "Hs (total) (m)": 3.2495, + "Tp (total) (s)": 14.6123 + }, + { + "Date+Time": "2019-01-31T00:00:00Z", + "Hs (total) (m)": 1.9524, + "Tp (total) (s)": 13.3419 + }, + { + "Date+Time": "2019-02-01T00:00:00Z", + "Hs (total) (m)": 2.8634, + "Tp (total) (s)": 13.9233 + }, + { + "Date+Time": "2019-02-02T00:00:00Z", + "Hs (total) (m)": 1.2337, + "Tp (total) (s)": 13.2534 + }, + { + "Date+Time": "2019-02-03T00:00:00Z", + "Hs (total) (m)": 1.1666, + "Tp (total) (s)": 10.5625 + }, + { + "Date+Time": "2019-02-04T00:00:00Z", + "Hs (total) (m)": 2.2752, + "Tp (total) (s)": 8.5696 + }, + { + "Date+Time": "2019-02-05T00:00:00Z", + "Hs (total) (m)": 1.8014, + "Tp (total) (s)": 12.1921 + }, + { + "Date+Time": "2019-02-06T00:00:00Z", + "Hs (total) (m)": 3.7843, + "Tp (total) (s)": 15.1433 + }, + { + "Date+Time": "2019-02-07T00:00:00Z", + "Hs (total) (m)": 3.5104, + "Tp (total) (s)": 15.2326 + }, + { + "Date+Time": "2019-02-08T00:00:00Z", + "Hs (total) (m)": 4.0735, + "Tp (total) (s)": 13.6471 + }, + { + "Date+Time": "2019-02-09T00:00:00Z", + "Hs (total) (m)": 5.534, + "Tp (total) (s)": 12.4957 + }, + { + "Date+Time": "2019-02-10T00:00:00Z", + "Hs (total) (m)": 2.3095, + "Tp (total) (s)": 12.3638 + }, + { + "Date+Time": "2019-02-11T00:00:00Z", + "Hs (total) (m)": 2.5124, + "Tp (total) (s)": 11.0614 + }, + { + "Date+Time": "2019-02-12T00:00:00Z", + "Hs (total) (m)": 2.4407, + "Tp (total) (s)": 8.9625 + }, + { + "Date+Time": "2019-02-13T00:00:00Z", + "Hs (total) (m)": 2.971, + "Tp (total) (s)": 12.1487 + }, + { + "Date+Time": "2019-02-14T00:00:00Z", + "Hs (total) (m)": 3.4494, + "Tp (total) (s)": 12.7064 + }, + { + "Date+Time": "2019-02-15T00:00:00Z", + "Hs (total) (m)": 2.6582, + "Tp (total) (s)": 11.845 + }, + { + "Date+Time": "2019-02-16T00:00:00Z", + "Hs (total) (m)": 3.4463, + "Tp (total) (s)": 10.8325 + }, + { + "Date+Time": "2019-02-17T00:00:00Z", + "Hs (total) (m)": 3.2731, + "Tp (total) (s)": 11.7664 + }, + { + "Date+Time": "2019-02-18T00:00:00Z", + "Hs (total) (m)": 4.0231, + "Tp (total) (s)": 15.2203 + }, + { + "Date+Time": "2019-02-19T00:00:00Z", + "Hs (total) (m)": 2.4483, + "Tp (total) (s)": 12.7766 + }, + { + "Date+Time": "2019-02-20T00:00:00Z", + "Hs (total) (m)": 3.3799, + "Tp (total) (s)": 11.1095 + }, + { + "Date+Time": "2019-02-21T00:00:00Z", + "Hs (total) (m)": 2.9382, + "Tp (total) (s)": 11.433 + }, + { + "Date+Time": "2019-02-22T00:00:00Z", + "Hs (total) (m)": 4.5671, + "Tp (total) (s)": 15.3035 + }, + { + "Date+Time": "2019-02-23T00:00:00Z", + "Hs (total) (m)": 3.8797, + "Tp (total) (s)": 12.6232 + }, + { + "Date+Time": "2019-02-24T00:00:00Z", + "Hs (total) (m)": 2.7535, + "Tp (total) (s)": 12.7407 + }, + { + "Date+Time": "2019-02-25T00:00:00Z", + "Hs (total) (m)": 3.5348, + "Tp (total) (s)": 16.4571 + }, + { + "Date+Time": "2019-02-26T00:00:00Z", + "Hs (total) (m)": 2.8039, + "Tp (total) (s)": 13.625 + }, + { + "Date+Time": "2019-02-27T00:00:00Z", + "Hs (total) (m)": 2.4049, + "Tp (total) (s)": 13.1726 + }, + { + "Date+Time": "2019-02-28T00:00:00Z", + "Hs (total) (m)": 1.5992, + "Tp (total) (s)": 11.9915 + }, + { + "Date+Time": "2019-03-01T00:00:00Z", + "Hs (total) (m)": 1.6114, + "Tp (total) (s)": 9.4516 + }, + { + "Date+Time": "2019-03-02T00:00:00Z", + "Hs (total) (m)": 2.8565, + "Tp (total) (s)": 15.3821 + }, + { + "Date+Time": "2019-03-03T00:00:00Z", + "Hs (total) (m)": 5.96, + "Tp (total) (s)": 15.0777 + }, + { + "Date+Time": "2019-03-04T00:00:00Z", + "Hs (total) (m)": 2.7055, + "Tp (total) (s)": 12.8796 + }, + { + "Date+Time": "2019-03-05T00:00:00Z", + "Hs (total) (m)": 3.9933, + "Tp (total) (s)": 11.7458 + }, + { + "Date+Time": "2019-03-06T00:00:00Z", + "Hs (total) (m)": 1.5297, + "Tp (total) (s)": 11.6749 + }, + { + "Date+Time": "2019-03-07T00:00:00Z", + "Hs (total) (m)": 1.8952, + "Tp (total) (s)": 8.5108 + }, + { + "Date+Time": "2019-03-08T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 8.7558 + }, + { + "Date+Time": "2019-03-09T00:00:00Z", + "Hs (total) (m)": 2.8817, + "Tp (total) (s)": 11.2842 + }, + { + "Date+Time": "2019-03-10T00:00:00Z", + "Hs (total) (m)": 2.7062, + "Tp (total) (s)": 13.818 + }, + { + "Date+Time": "2019-03-11T00:00:00Z", + "Hs (total) (m)": 4.1551, + "Tp (total) (s)": 12.8079 + }, + { + "Date+Time": "2019-03-12T00:00:00Z", + "Hs (total) (m)": 4.2505, + "Tp (total) (s)": 11.8488 + }, + { + "Date+Time": "2019-03-13T00:00:00Z", + "Hs (total) (m)": 5.3926, + "Tp (total) (s)": 15.594 + }, + { + "Date+Time": "2019-03-14T00:00:00Z", + "Hs (total) (m)": 4.5404, + "Tp (total) (s)": 12.3554 + }, + { + "Date+Time": "2019-03-15T00:00:00Z", + "Hs (total) (m)": 4.3977, + "Tp (total) (s)": 11.9304 + }, + { + "Date+Time": "2019-03-16T00:00:00Z", + "Hs (total) (m)": 3.1716, + "Tp (total) (s)": 11.4422 + }, + { + "Date+Time": "2019-03-17T00:00:00Z", + "Hs (total) (m)": 2.7238, + "Tp (total) (s)": 11.475 + }, + { + "Date+Time": "2019-03-18T00:00:00Z", + "Hs (total) (m)": 2.3911, + "Tp (total) (s)": 11.6077 + }, + { + "Date+Time": "2019-03-19T00:00:00Z", + "Hs (total) (m)": 1.8006, + "Tp (total) (s)": 10.9256 + }, + { + "Date+Time": "2019-03-20T00:00:00Z", + "Hs (total) (m)": 1.5519, + "Tp (total) (s)": 10.6899 + }, + { + "Date+Time": "2019-03-21T00:00:00Z", + "Hs (total) (m)": 2.5864, + "Tp (total) (s)": 14.594 + }, + { + "Date+Time": "2019-03-22T00:00:00Z", + "Hs (total) (m)": 2.7528, + "Tp (total) (s)": 11.7901 + }, + { + "Date+Time": "2019-03-23T00:00:00Z", + "Hs (total) (m)": 2.5132, + "Tp (total) (s)": 11.755 + }, + { + "Date+Time": "2019-03-24T00:00:00Z", + "Hs (total) (m)": 2.1455, + "Tp (total) (s)": 13.8272 + }, + { + "Date+Time": "2019-03-25T00:00:00Z", + "Hs (total) (m)": 2.002, + "Tp (total) (s)": 13.6998 + }, + { + "Date+Time": "2019-03-26T00:00:00Z", + "Hs (total) (m)": 1.207, + "Tp (total) (s)": 11.9053 + }, + { + "Date+Time": "2019-03-27T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 12.9429 + }, + { + "Date+Time": "2019-03-28T00:00:00Z", + "Hs (total) (m)": 1.2688, + "Tp (total) (s)": 11.5024 + }, + { + "Date+Time": "2019-03-29T00:00:00Z", + "Hs (total) (m)": 2.0623, + "Tp (total) (s)": 13.7524 + }, + { + "Date+Time": "2019-03-30T00:00:00Z", + "Hs (total) (m)": 1.78, + "Tp (total) (s)": 13.538 + }, + { + "Date+Time": "2019-03-31T00:00:00Z", + "Hs (total) (m)": 1.3245, + "Tp (total) (s)": 13.2565 + }, + { + "Date+Time": "2019-04-01T00:00:00Z", + "Hs (total) (m)": 1.0292, + "Tp (total) (s)": 11.2079 + }, + { + "Date+Time": "2019-04-02T00:00:00Z", + "Hs (total) (m)": 1.5069, + "Tp (total) (s)": 10.239 + }, + { + "Date+Time": "2019-04-03T00:00:00Z", + "Hs (total) (m)": 2.2523, + "Tp (total) (s)": 11.903 + }, + { + "Date+Time": "2019-04-04T00:00:00Z", + "Hs (total) (m)": 1.7037, + "Tp (total) (s)": 10.5976 + }, + { + "Date+Time": "2019-04-05T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 10.7196 + }, + { + "Date+Time": "2019-04-06T00:00:00Z", + "Hs (total) (m)": 1.4168, + "Tp (total) (s)": 13.6349 + }, + { + "Date+Time": "2019-04-07T00:00:00Z", + "Hs (total) (m)": 1.043, + "Tp (total) (s)": 11.5734 + }, + { + "Date+Time": "2019-04-08T00:00:00Z", + "Hs (total) (m)": 0.737, + "Tp (total) (s)": 12.7972 + }, + { + "Date+Time": "2019-04-09T00:00:00Z", + "Hs (total) (m)": 1.59, + "Tp (total) (s)": 12.6301 + }, + { + "Date+Time": "2019-04-10T00:00:00Z", + "Hs (total) (m)": 1.3428, + "Tp (total) (s)": 11.1415 + }, + { + "Date+Time": "2019-04-11T00:00:00Z", + "Hs (total) (m)": 1.5183, + "Tp (total) (s)": 13.9729 + }, + { + "Date+Time": "2019-04-12T00:00:00Z", + "Hs (total) (m)": 1.8609, + "Tp (total) (s)": 13.5258 + }, + { + "Date+Time": "2019-04-13T00:00:00Z", + "Hs (total) (m)": 2.0142, + "Tp (total) (s)": 11.4284 + }, + { + "Date+Time": "2019-04-14T00:00:00Z", + "Hs (total) (m)": 1.87, + "Tp (total) (s)": 6.4302 + }, + { + "Date+Time": "2019-04-15T00:00:00Z", + "Hs (total) (m)": 3.0084, + "Tp (total) (s)": 11.9098 + }, + { + "Date+Time": "2019-04-16T00:00:00Z", + "Hs (total) (m)": 2.62, + "Tp (total) (s)": 11.7283 + }, + { + "Date+Time": "2019-04-17T00:00:00Z", + "Hs (total) (m)": 1.5725, + "Tp (total) (s)": 11.1202 + }, + { + "Date+Time": "2019-04-18T00:00:00Z", + "Hs (total) (m)": 1.6022, + "Tp (total) (s)": 10.5579 + }, + { + "Date+Time": "2019-04-19T00:00:00Z", + "Hs (total) (m)": 1.1872, + "Tp (total) (s)": 10.2306 + }, + { + "Date+Time": "2019-04-20T00:00:00Z", + "Hs (total) (m)": 0.8995, + "Tp (total) (s)": 9.3951 + }, + { + "Date+Time": "2019-04-21T00:00:00Z", + "Hs (total) (m)": 1.6083, + "Tp (total) (s)": 13.049 + }, + { + "Date+Time": "2019-04-22T00:00:00Z", + "Hs (total) (m)": 2.221, + "Tp (total) (s)": 12.0823 + }, + { + "Date+Time": "2019-04-23T00:00:00Z", + "Hs (total) (m)": 1.7281, + "Tp (total) (s)": 11.2384 + }, + { + "Date+Time": "2019-04-24T00:00:00Z", + "Hs (total) (m)": 1.664, + "Tp (total) (s)": 12.2127 + }, + { + "Date+Time": "2019-04-25T00:00:00Z", + "Hs (total) (m)": 1.4397, + "Tp (total) (s)": 11.6077 + }, + { + "Date+Time": "2019-04-26T00:00:00Z", + "Hs (total) (m)": 2.4369, + "Tp (total) (s)": 12.8948 + }, + { + "Date+Time": "2019-04-27T00:00:00Z", + "Hs (total) (m)": 4.0139, + "Tp (total) (s)": 11.3697 + }, + { + "Date+Time": "2019-04-28T00:00:00Z", + "Hs (total) (m)": 2.1798, + "Tp (total) (s)": 11.0454 + }, + { + "Date+Time": "2019-04-29T00:00:00Z", + "Hs (total) (m)": 1.9707, + "Tp (total) (s)": 10.3175 + }, + { + "Date+Time": "2019-04-30T00:00:00Z", + "Hs (total) (m)": 2.0333, + "Tp (total) (s)": 10.313 + }, + { + "Date+Time": "2019-05-01T00:00:00Z", + "Hs (total) (m)": 1.3901, + "Tp (total) (s)": 9.5569 + }, + { + "Date+Time": "2019-05-02T00:00:00Z", + "Hs (total) (m)": 1.5984, + "Tp (total) (s)": 8.7298 + }, + { + "Date+Time": "2019-05-03T00:00:00Z", + "Hs (total) (m)": 1.0804, + "Tp (total) (s)": 7.9211 + }, + { + "Date+Time": "2019-05-04T00:00:00Z", + "Hs (total) (m)": 0.9278, + "Tp (total) (s)": 10.11 + }, + { + "Date+Time": "2019-05-05T00:00:00Z", + "Hs (total) (m)": 1.1223, + "Tp (total) (s)": 11.3765 + }, + { + "Date+Time": "2019-05-06T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 10.6243 + }, + { + "Date+Time": "2019-05-07T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 10.123 + }, + { + "Date+Time": "2019-05-08T00:00:00Z", + "Hs (total) (m)": 1.1155, + "Tp (total) (s)": 10.5342 + }, + { + "Date+Time": "2019-05-09T00:00:00Z", + "Hs (total) (m)": 1.767, + "Tp (total) (s)": 11.6222 + }, + { + "Date+Time": "2019-05-10T00:00:00Z", + "Hs (total) (m)": 1.2162, + "Tp (total) (s)": 9.621 + }, + { + "Date+Time": "2019-05-11T00:00:00Z", + "Hs (total) (m)": 0.7408, + "Tp (total) (s)": 9.4562 + }, + { + "Date+Time": "2019-05-12T00:00:00Z", + "Hs (total) (m)": 0.8522, + "Tp (total) (s)": 8.6428 + }, + { + "Date+Time": "2019-05-13T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 8.5376 + }, + { + "Date+Time": "2019-05-14T00:00:00Z", + "Hs (total) (m)": 1.7403, + "Tp (total) (s)": 11.5062 + }, + { + "Date+Time": "2019-05-15T00:00:00Z", + "Hs (total) (m)": 2.1035, + "Tp (total) (s)": 14.4009 + }, + { + "Date+Time": "2019-05-16T00:00:00Z", + "Hs (total) (m)": 1.7426, + "Tp (total) (s)": 12.682 + }, + { + "Date+Time": "2019-05-17T00:00:00Z", + "Hs (total) (m)": 1.2642, + "Tp (total) (s)": 11.3414 + }, + { + "Date+Time": "2019-05-18T00:00:00Z", + "Hs (total) (m)": 1.1704, + "Tp (total) (s)": 10.5419 + }, + { + "Date+Time": "2019-05-19T00:00:00Z", + "Hs (total) (m)": 1.0926, + "Tp (total) (s)": 9.1624 + }, + { + "Date+Time": "2019-05-20T00:00:00Z", + "Hs (total) (m)": 0.8995, + "Tp (total) (s)": 7.0757 + }, + { + "Date+Time": "2019-05-21T00:00:00Z", + "Hs (total) (m)": 0.6455, + "Tp (total) (s)": 6.3967 + }, + { + "Date+Time": "2019-05-22T00:00:00Z", + "Hs (total) (m)": 0.7065, + "Tp (total) (s)": 9.7484 + }, + { + "Date+Time": "2019-05-23T00:00:00Z", + "Hs (total) (m)": 0.8827, + "Tp (total) (s)": 13.9637 + }, + { + "Date+Time": "2019-05-24T00:00:00Z", + "Hs (total) (m)": 1.352, + "Tp (total) (s)": 12.2188 + }, + { + "Date+Time": "2019-05-25T00:00:00Z", + "Hs (total) (m)": 1.1208, + "Tp (total) (s)": 10.371 + }, + { + "Date+Time": "2019-05-26T00:00:00Z", + "Hs (total) (m)": 1.8197, + "Tp (total) (s)": 10.6067 + }, + { + "Date+Time": "2019-05-27T00:00:00Z", + "Hs (total) (m)": 1.9715, + "Tp (total) (s)": 10.493 + }, + { + "Date+Time": "2019-05-28T00:00:00Z", + "Hs (total) (m)": 1.9692, + "Tp (total) (s)": 8.4567 + }, + { + "Date+Time": "2019-05-29T00:00:00Z", + "Hs (total) (m)": 1.3565, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "2019-05-30T00:00:00Z", + "Hs (total) (m)": 2.1706, + "Tp (total) (s)": 7.7189 + }, + { + "Date+Time": "2019-05-31T00:00:00Z", + "Hs (total) (m)": 1.9959, + "Tp (total) (s)": 8.7161 + }, + { + "Date+Time": "2019-06-01T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 11.7016 + }, + { + "Date+Time": "2019-06-02T00:00:00Z", + "Hs (total) (m)": 2.3843, + "Tp (total) (s)": 11.4467 + }, + { + "Date+Time": "2019-06-03T00:00:00Z", + "Hs (total) (m)": 3.1381, + "Tp (total) (s)": 9.8415 + }, + { + "Date+Time": "2019-06-04T00:00:00Z", + "Hs (total) (m)": 1.3184, + "Tp (total) (s)": 8.8107 + }, + { + "Date+Time": "2019-06-05T00:00:00Z", + "Hs (total) (m)": 0.8683, + "Tp (total) (s)": 10.3412 + }, + { + "Date+Time": "2019-06-06T00:00:00Z", + "Hs (total) (m)": 0.9178, + "Tp (total) (s)": 9.798 + }, + { + "Date+Time": "2019-06-07T00:00:00Z", + "Hs (total) (m)": 0.9339, + "Tp (total) (s)": 7.976 + }, + { + "Date+Time": "2019-06-08T00:00:00Z", + "Hs (total) (m)": 0.959, + "Tp (total) (s)": 8.6985 + }, + { + "Date+Time": "2019-06-09T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 9.4447 + }, + { + "Date+Time": "2019-06-10T00:00:00Z", + "Hs (total) (m)": 0.7973, + "Tp (total) (s)": 8.713 + }, + { + "Date+Time": "2019-06-11T00:00:00Z", + "Hs (total) (m)": 0.6203, + "Tp (total) (s)": 8.3758 + }, + { + "Date+Time": "2019-06-12T00:00:00Z", + "Hs (total) (m)": 0.7202, + "Tp (total) (s)": 5.2316 + }, + { + "Date+Time": "2019-06-13T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 3.1907 + }, + { + "Date+Time": "2019-06-14T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 8.5894 + }, + { + "Date+Time": "2019-06-15T00:00:00Z", + "Hs (total) (m)": 0.8309, + "Tp (total) (s)": 8.5864 + }, + { + "Date+Time": "2019-06-16T00:00:00Z", + "Hs (total) (m)": 0.9384, + "Tp (total) (s)": 8.2499 + }, + { + "Date+Time": "2019-06-17T00:00:00Z", + "Hs (total) (m)": 1.825, + "Tp (total) (s)": 6.5096 + }, + { + "Date+Time": "2019-06-18T00:00:00Z", + "Hs (total) (m)": 1.0971, + "Tp (total) (s)": 6.8827 + }, + { + "Date+Time": "2019-06-19T00:00:00Z", + "Hs (total) (m)": 0.8576, + "Tp (total) (s)": 6.5523 + }, + { + "Date+Time": "2019-06-20T00:00:00Z", + "Hs (total) (m)": 1.339, + "Tp (total) (s)": 6.9987 + }, + { + "Date+Time": "2019-06-21T00:00:00Z", + "Hs (total) (m)": 1.0239, + "Tp (total) (s)": 8.0897 + }, + { + "Date+Time": "2019-06-22T00:00:00Z", + "Hs (total) (m)": 0.6752, + "Tp (total) (s)": 7.8036 + }, + { + "Date+Time": "2019-06-23T00:00:00Z", + "Hs (total) (m)": 1.2383, + "Tp (total) (s)": 9.5233 + }, + { + "Date+Time": "2019-06-24T00:00:00Z", + "Hs (total) (m)": 1.2734, + "Tp (total) (s)": 9.8575 + }, + { + "Date+Time": "2019-06-25T00:00:00Z", + "Hs (total) (m)": 0.9468, + "Tp (total) (s)": 8.9938 + }, + { + "Date+Time": "2019-06-26T00:00:00Z", + "Hs (total) (m)": 0.6035, + "Tp (total) (s)": 8.5208 + }, + { + "Date+Time": "2019-06-27T00:00:00Z", + "Hs (total) (m)": 0.5478, + "Tp (total) (s)": 2.6482 + }, + { + "Date+Time": "2019-06-28T00:00:00Z", + "Hs (total) (m)": 0.5753, + "Tp (total) (s)": 2.7436 + }, + { + "Date+Time": "2019-06-29T00:00:00Z", + "Hs (total) (m)": 0.8774, + "Tp (total) (s)": 10.358 + }, + { + "Date+Time": "2019-06-30T00:00:00Z", + "Hs (total) (m)": 1.5442, + "Tp (total) (s)": 5.8794 + }, + { + "Date+Time": "2019-07-01T00:00:00Z", + "Hs (total) (m)": 1.6739, + "Tp (total) (s)": 7.3077 + }, + { + "Date+Time": "2019-07-02T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 8.3712 + }, + { + "Date+Time": "2019-07-03T00:00:00Z", + "Hs (total) (m)": 0.869, + "Tp (total) (s)": 8.5917 + }, + { + "Date+Time": "2019-07-04T00:00:00Z", + "Hs (total) (m)": 0.6325, + "Tp (total) (s)": 7.8578 + }, + { + "Date+Time": "2019-07-05T00:00:00Z", + "Hs (total) (m)": 0.5928, + "Tp (total) (s)": 7.7807 + }, + { + "Date+Time": "2019-07-06T00:00:00Z", + "Hs (total) (m)": 0.737, + "Tp (total) (s)": 10.5411 + }, + { + "Date+Time": "2019-07-07T00:00:00Z", + "Hs (total) (m)": 0.7416, + "Tp (total) (s)": 9.1166 + }, + { + "Date+Time": "2019-07-08T00:00:00Z", + "Hs (total) (m)": 0.6806, + "Tp (total) (s)": 8.4246 + }, + { + "Date+Time": "2019-07-09T00:00:00Z", + "Hs (total) (m)": 0.7195, + "Tp (total) (s)": 7.7143 + }, + { + "Date+Time": "2019-07-10T00:00:00Z", + "Hs (total) (m)": 1.1101, + "Tp (total) (s)": 7.4656 + }, + { + "Date+Time": "2019-07-11T00:00:00Z", + "Hs (total) (m)": 1.4, + "Tp (total) (s)": 6.5943 + }, + { + "Date+Time": "2019-07-12T00:00:00Z", + "Hs (total) (m)": 1.0926, + "Tp (total) (s)": 7.4572 + }, + { + "Date+Time": "2019-07-13T00:00:00Z", + "Hs (total) (m)": 1.0056, + "Tp (total) (s)": 7.7769 + }, + { + "Date+Time": "2019-07-14T00:00:00Z", + "Hs (total) (m)": 0.8858, + "Tp (total) (s)": 7.9371 + }, + { + "Date+Time": "2019-07-15T00:00:00Z", + "Hs (total) (m)": 0.8049, + "Tp (total) (s)": 8.385 + }, + { + "Date+Time": "2019-07-16T00:00:00Z", + "Hs (total) (m)": 1.1246, + "Tp (total) (s)": 11.0332 + }, + { + "Date+Time": "2019-07-17T00:00:00Z", + "Hs (total) (m)": 1.7609, + "Tp (total) (s)": 10.2718 + }, + { + "Date+Time": "2019-07-18T00:00:00Z", + "Hs (total) (m)": 1.6228, + "Tp (total) (s)": 8.7542 + }, + { + "Date+Time": "2019-07-19T00:00:00Z", + "Hs (total) (m)": 1.4695, + "Tp (total) (s)": 8.5063 + }, + { + "Date+Time": "2019-07-20T00:00:00Z", + "Hs (total) (m)": 1.0941, + "Tp (total) (s)": 8.1278 + }, + { + "Date+Time": "2019-07-21T00:00:00Z", + "Hs (total) (m)": 1.2986, + "Tp (total) (s)": 8.002 + }, + { + "Date+Time": "2019-07-22T00:00:00Z", + "Hs (total) (m)": 2.8619, + "Tp (total) (s)": 7.9951 + }, + { + "Date+Time": "2019-07-23T00:00:00Z", + "Hs (total) (m)": 2.7154, + "Tp (total) (s)": 10.3046 + }, + { + "Date+Time": "2019-07-24T00:00:00Z", + "Hs (total) (m)": 2.1905, + "Tp (total) (s)": 10.7395 + }, + { + "Date+Time": "2019-07-25T00:00:00Z", + "Hs (total) (m)": 1.6465, + "Tp (total) (s)": 10.229 + }, + { + "Date+Time": "2019-07-26T00:00:00Z", + "Hs (total) (m)": 1.9166, + "Tp (total) (s)": 9.9269 + }, + { + "Date+Time": "2019-07-27T00:00:00Z", + "Hs (total) (m)": 1.4679, + "Tp (total) (s)": 8.5124 + }, + { + "Date+Time": "2019-07-28T00:00:00Z", + "Hs (total) (m)": 1.1773, + "Tp (total) (s)": 8.5376 + }, + { + "Date+Time": "2019-07-29T00:00:00Z", + "Hs (total) (m)": 1.0697, + "Tp (total) (s)": 8.5154 + }, + { + "Date+Time": "2019-07-30T00:00:00Z", + "Hs (total) (m)": 0.9323, + "Tp (total) (s)": 8.3567 + }, + { + "Date+Time": "2019-07-31T00:00:00Z", + "Hs (total) (m)": 0.8728, + "Tp (total) (s)": 6.6454 + }, + { + "Date+Time": "2019-08-01T00:00:00Z", + "Hs (total) (m)": 0.972, + "Tp (total) (s)": 7.1024 + }, + { + "Date+Time": "2019-08-02T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 8.4437 + }, + { + "Date+Time": "2019-08-03T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 8.6276 + }, + { + "Date+Time": "2019-08-04T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 8.5734 + }, + { + "Date+Time": "2019-08-05T00:00:00Z", + "Hs (total) (m)": 1.3565, + "Tp (total) (s)": 7.9112 + }, + { + "Date+Time": "2019-08-06T00:00:00Z", + "Hs (total) (m)": 1.7296, + "Tp (total) (s)": 7.7441 + }, + { + "Date+Time": "2019-08-07T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 7.3855 + }, + { + "Date+Time": "2019-08-08T00:00:00Z", + "Hs (total) (m)": 0.9758, + "Tp (total) (s)": 6.7248 + }, + { + "Date+Time": "2019-08-09T00:00:00Z", + "Hs (total) (m)": 0.8003, + "Tp (total) (s)": 6.4547 + }, + { + "Date+Time": "2019-08-10T00:00:00Z", + "Hs (total) (m)": 1.3443, + "Tp (total) (s)": 11.0668 + }, + { + "Date+Time": "2019-08-11T00:00:00Z", + "Hs (total) (m)": 1.2314, + "Tp (total) (s)": 9.5439 + }, + { + "Date+Time": "2019-08-12T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 9.444 + }, + { + "Date+Time": "2019-08-13T00:00:00Z", + "Hs (total) (m)": 0.9972, + "Tp (total) (s)": 8.739 + }, + { + "Date+Time": "2019-08-14T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 8.4429 + }, + { + "Date+Time": "2019-08-15T00:00:00Z", + "Hs (total) (m)": 1.999, + "Tp (total) (s)": 7.9386 + }, + { + "Date+Time": "2019-08-16T00:00:00Z", + "Hs (total) (m)": 2.1737, + "Tp (total) (s)": 8.6329 + }, + { + "Date+Time": "2019-08-17T00:00:00Z", + "Hs (total) (m)": 2.2324, + "Tp (total) (s)": 8.9862 + }, + { + "Date+Time": "2019-08-18T00:00:00Z", + "Hs (total) (m)": 2.8062, + "Tp (total) (s)": 10.6197 + }, + { + "Date+Time": "2019-08-19T00:00:00Z", + "Hs (total) (m)": 2.0753, + "Tp (total) (s)": 10.1901 + }, + { + "Date+Time": "2019-08-20T00:00:00Z", + "Hs (total) (m)": 1.7182, + "Tp (total) (s)": 9.4279 + }, + { + "Date+Time": "2019-08-21T00:00:00Z", + "Hs (total) (m)": 1.6877, + "Tp (total) (s)": 8.9389 + }, + { + "Date+Time": "2019-08-22T00:00:00Z", + "Hs (total) (m)": 2.1584, + "Tp (total) (s)": 9.3692 + }, + { + "Date+Time": "2019-08-23T00:00:00Z", + "Hs (total) (m)": 2.3438, + "Tp (total) (s)": 11.23 + }, + { + "Date+Time": "2019-08-24T00:00:00Z", + "Hs (total) (m)": 2.15, + "Tp (total) (s)": 9.6171 + }, + { + "Date+Time": "2019-08-25T00:00:00Z", + "Hs (total) (m)": 1.4481, + "Tp (total) (s)": 9.2784 + }, + { + "Date+Time": "2019-08-26T00:00:00Z", + "Hs (total) (m)": 1.1216, + "Tp (total) (s)": 8.6451 + }, + { + "Date+Time": "2019-08-27T00:00:00Z", + "Hs (total) (m)": 1.7533, + "Tp (total) (s)": 12.2448 + }, + { + "Date+Time": "2019-08-28T00:00:00Z", + "Hs (total) (m)": 1.6556, + "Tp (total) (s)": 12.6865 + }, + { + "Date+Time": "2019-08-29T00:00:00Z", + "Hs (total) (m)": 2.0585, + "Tp (total) (s)": 10.5556 + }, + { + "Date+Time": "2019-08-30T00:00:00Z", + "Hs (total) (m)": 2.9122, + "Tp (total) (s)": 9.2174 + }, + { + "Date+Time": "2019-08-31T00:00:00Z", + "Hs (total) (m)": 2.8207, + "Tp (total) (s)": 9.2914 + }, + { + "Date+Time": "2019-09-01T00:00:00Z", + "Hs (total) (m)": 1.7067, + "Tp (total) (s)": 8.6825 + }, + { + "Date+Time": "2019-09-02T00:00:00Z", + "Hs (total) (m)": 1.5076, + "Tp (total) (s)": 8.5452 + }, + { + "Date+Time": "2019-09-03T00:00:00Z", + "Hs (total) (m)": 2.028, + "Tp (total) (s)": 8.3293 + }, + { + "Date+Time": "2019-09-04T00:00:00Z", + "Hs (total) (m)": 1.7083, + "Tp (total) (s)": 8.7199 + }, + { + "Date+Time": "2019-09-05T00:00:00Z", + "Hs (total) (m)": 1.8311, + "Tp (total) (s)": 9.1983 + }, + { + "Date+Time": "2019-09-06T00:00:00Z", + "Hs (total) (m)": 2.3377, + "Tp (total) (s)": 10.3931 + }, + { + "Date+Time": "2019-09-07T00:00:00Z", + "Hs (total) (m)": 1.9059, + "Tp (total) (s)": 10.2565 + }, + { + "Date+Time": "2019-09-08T00:00:00Z", + "Hs (total) (m)": 1.4725, + "Tp (total) (s)": 10.6761 + }, + { + "Date+Time": "2019-09-09T00:00:00Z", + "Hs (total) (m)": 1.6121, + "Tp (total) (s)": 9.5103 + }, + { + "Date+Time": "2019-09-10T00:00:00Z", + "Hs (total) (m)": 1.4565, + "Tp (total) (s)": 10.1016 + }, + { + "Date+Time": "2019-09-11T00:00:00Z", + "Hs (total) (m)": 2.7886, + "Tp (total) (s)": 8.4437 + }, + { + "Date+Time": "2019-09-12T00:00:00Z", + "Hs (total) (m)": 2.0234, + "Tp (total) (s)": 10.1207 + }, + { + "Date+Time": "2019-09-13T00:00:00Z", + "Hs (total) (m)": 1.9028, + "Tp (total) (s)": 12.3356 + }, + { + "Date+Time": "2019-09-14T00:00:00Z", + "Hs (total) (m)": 1.4168, + "Tp (total) (s)": 10.8684 + }, + { + "Date+Time": "2019-09-15T00:00:00Z", + "Hs (total) (m)": 1.9257, + "Tp (total) (s)": 10.0681 + }, + { + "Date+Time": "2019-09-16T00:00:00Z", + "Hs (total) (m)": 1.6724, + "Tp (total) (s)": 11.8107 + }, + { + "Date+Time": "2019-09-17T00:00:00Z", + "Hs (total) (m)": 1.2169, + "Tp (total) (s)": 11.256 + }, + { + "Date+Time": "2019-09-18T00:00:00Z", + "Hs (total) (m)": 0.9278, + "Tp (total) (s)": 10.0772 + }, + { + "Date+Time": "2019-09-19T00:00:00Z", + "Hs (total) (m)": 0.8347, + "Tp (total) (s)": 9.4653 + }, + { + "Date+Time": "2019-09-20T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "2019-09-21T00:00:00Z", + "Hs (total) (m)": 1.2917, + "Tp (total) (s)": 5.417 + }, + { + "Date+Time": "2019-09-22T00:00:00Z", + "Hs (total) (m)": 1.3916, + "Tp (total) (s)": 9.2174 + }, + { + "Date+Time": "2019-09-23T00:00:00Z", + "Hs (total) (m)": 1.3169, + "Tp (total) (s)": 10.2359 + }, + { + "Date+Time": "2019-09-24T00:00:00Z", + "Hs (total) (m)": 1.9135, + "Tp (total) (s)": 9.3791 + }, + { + "Date+Time": "2019-09-25T00:00:00Z", + "Hs (total) (m)": 3.0091, + "Tp (total) (s)": 13.844 + }, + { + "Date+Time": "2019-09-26T00:00:00Z", + "Hs (total) (m)": 2.5628, + "Tp (total) (s)": 8.8618 + }, + { + "Date+Time": "2019-09-27T00:00:00Z", + "Hs (total) (m)": 3.2296, + "Tp (total) (s)": 13.6151 + }, + { + "Date+Time": "2019-09-28T00:00:00Z", + "Hs (total) (m)": 3.0923, + "Tp (total) (s)": 12.5668 + }, + { + "Date+Time": "2019-09-29T00:00:00Z", + "Hs (total) (m)": 1.7769, + "Tp (total) (s)": 10.6906 + }, + { + "Date+Time": "2019-09-30T00:00:00Z", + "Hs (total) (m)": 1.4916, + "Tp (total) (s)": 9.4501 + }, + { + "Date+Time": "2019-10-01T00:00:00Z", + "Hs (total) (m)": 1.2497, + "Tp (total) (s)": 9.2502 + }, + { + "Date+Time": "2019-10-02T00:00:00Z", + "Hs (total) (m)": 0.898, + "Tp (total) (s)": 8.5726 + }, + { + "Date+Time": "2019-10-03T00:00:00Z", + "Hs (total) (m)": 1.3894, + "Tp (total) (s)": 9.4821 + }, + { + "Date+Time": "2019-10-04T00:00:00Z", + "Hs (total) (m)": 5.1033, + "Tp (total) (s)": 12.4664 + }, + { + "Date+Time": "2019-10-05T00:00:00Z", + "Hs (total) (m)": 2.9496, + "Tp (total) (s)": 12.5462 + }, + { + "Date+Time": "2019-10-06T00:00:00Z", + "Hs (total) (m)": 2.504, + "Tp (total) (s)": 13.168 + }, + { + "Date+Time": "2019-10-07T00:00:00Z", + "Hs (total) (m)": 3.1999, + "Tp (total) (s)": 12.4187 + }, + { + "Date+Time": "2019-10-08T00:00:00Z", + "Hs (total) (m)": 4.0643, + "Tp (total) (s)": 14.7702 + }, + { + "Date+Time": "2019-10-09T00:00:00Z", + "Hs (total) (m)": 3.7629, + "Tp (total) (s)": 13.0871 + }, + { + "Date+Time": "2019-10-10T00:00:00Z", + "Hs (total) (m)": 3.0297, + "Tp (total) (s)": 12.1784 + }, + { + "Date+Time": "2019-10-11T00:00:00Z", + "Hs (total) (m)": 3.061, + "Tp (total) (s)": 10.242 + }, + { + "Date+Time": "2019-10-12T00:00:00Z", + "Hs (total) (m)": 2.2485, + "Tp (total) (s)": 10.3946 + }, + { + "Date+Time": "2019-10-13T00:00:00Z", + "Hs (total) (m)": 1.6091, + "Tp (total) (s)": 9.7468 + }, + { + "Date+Time": "2019-10-14T00:00:00Z", + "Hs (total) (m)": 1.2192, + "Tp (total) (s)": 9.0609 + }, + { + "Date+Time": "2019-10-15T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 8.655 + }, + { + "Date+Time": "2019-10-16T00:00:00Z", + "Hs (total) (m)": 1.9715, + "Tp (total) (s)": 10.3938 + }, + { + "Date+Time": "2019-10-17T00:00:00Z", + "Hs (total) (m)": 3.4028, + "Tp (total) (s)": 12.4691 + }, + { + "Date+Time": "2019-10-18T00:00:00Z", + "Hs (total) (m)": 3.0969, + "Tp (total) (s)": 11.7573 + }, + { + "Date+Time": "2019-10-19T00:00:00Z", + "Hs (total) (m)": 1.8853, + "Tp (total) (s)": 11.1209 + }, + { + "Date+Time": "2019-10-20T00:00:00Z", + "Hs (total) (m)": 1.2139, + "Tp (total) (s)": 10.3854 + }, + { + "Date+Time": "2019-10-21T00:00:00Z", + "Hs (total) (m)": 0.9827, + "Tp (total) (s)": 9.3997 + }, + { + "Date+Time": "2019-10-22T00:00:00Z", + "Hs (total) (m)": 0.9751, + "Tp (total) (s)": 8.2018 + }, + { + "Date+Time": "2019-10-23T00:00:00Z", + "Hs (total) (m)": 2.0241, + "Tp (total) (s)": 8.388 + }, + { + "Date+Time": "2019-10-24T00:00:00Z", + "Hs (total) (m)": 2.2202, + "Tp (total) (s)": 9.5706 + }, + { + "Date+Time": "2019-10-25T00:00:00Z", + "Hs (total) (m)": 1.3726, + "Tp (total) (s)": 13.3915 + }, + { + "Date+Time": "2019-10-26T00:00:00Z", + "Hs (total) (m)": 1.0849, + "Tp (total) (s)": 12.5752 + }, + { + "Date+Time": "2019-10-27T00:00:00Z", + "Hs (total) (m)": 1.5191, + "Tp (total) (s)": 13.8012 + }, + { + "Date+Time": "2019-10-28T00:00:00Z", + "Hs (total) (m)": 1.2795, + "Tp (total) (s)": 11.4368 + }, + { + "Date+Time": "2019-10-29T00:00:00Z", + "Hs (total) (m)": 1.0651, + "Tp (total) (s)": 10.4396 + }, + { + "Date+Time": "2019-10-30T00:00:00Z", + "Hs (total) (m)": 1.1017, + "Tp (total) (s)": 4.1261 + }, + { + "Date+Time": "2019-10-31T00:00:00Z", + "Hs (total) (m)": 1.4344, + "Tp (total) (s)": 14.9648 + }, + { + "Date+Time": "2019-11-01T00:00:00Z", + "Hs (total) (m)": 1.3611, + "Tp (total) (s)": 12.3257 + }, + { + "Date+Time": "2019-11-02T00:00:00Z", + "Hs (total) (m)": 2.1691, + "Tp (total) (s)": 8.5513 + }, + { + "Date+Time": "2019-11-03T00:00:00Z", + "Hs (total) (m)": 2.7261, + "Tp (total) (s)": 11.8992 + }, + { + "Date+Time": "2019-11-04T00:00:00Z", + "Hs (total) (m)": 2.4041, + "Tp (total) (s)": 11.5726 + }, + { + "Date+Time": "2019-11-05T00:00:00Z", + "Hs (total) (m)": 2.0554, + "Tp (total) (s)": 11.7847 + }, + { + "Date+Time": "2019-11-06T00:00:00Z", + "Hs (total) (m)": 1.7365, + "Tp (total) (s)": 12.5744 + }, + { + "Date+Time": "2019-11-07T00:00:00Z", + "Hs (total) (m)": 2.3598, + "Tp (total) (s)": 9.7873 + }, + { + "Date+Time": "2019-11-08T00:00:00Z", + "Hs (total) (m)": 1.9929, + "Tp (total) (s)": 11.4719 + }, + { + "Date+Time": "2019-11-09T00:00:00Z", + "Hs (total) (m)": 2.1821, + "Tp (total) (s)": 11.6947 + }, + { + "Date+Time": "2019-11-10T00:00:00Z", + "Hs (total) (m)": 2.5849, + "Tp (total) (s)": 16.126 + }, + { + "Date+Time": "2019-11-11T00:00:00Z", + "Hs (total) (m)": 3.3036, + "Tp (total) (s)": 15.1532 + }, + { + "Date+Time": "2019-11-12T00:00:00Z", + "Hs (total) (m)": 3.6493, + "Tp (total) (s)": 16.7722 + }, + { + "Date+Time": "2019-11-13T00:00:00Z", + "Hs (total) (m)": 3.2098, + "Tp (total) (s)": 16.7837 + }, + { + "Date+Time": "2019-11-14T00:00:00Z", + "Hs (total) (m)": 2.9138, + "Tp (total) (s)": 12.9391 + }, + { + "Date+Time": "2019-11-15T00:00:00Z", + "Hs (total) (m)": 2.3766, + "Tp (total) (s)": 14.066 + }, + { + "Date+Time": "2019-11-16T00:00:00Z", + "Hs (total) (m)": 1.5259, + "Tp (total) (s)": 13.6799 + }, + { + "Date+Time": "2019-11-17T00:00:00Z", + "Hs (total) (m)": 1.133, + "Tp (total) (s)": 15.0861 + }, + { + "Date+Time": "2019-11-18T00:00:00Z", + "Hs (total) (m)": 1.4901, + "Tp (total) (s)": 14.3117 + }, + { + "Date+Time": "2019-11-19T00:00:00Z", + "Hs (total) (m)": 2.4354, + "Tp (total) (s)": 10.4198 + }, + { + "Date+Time": "2019-11-20T00:00:00Z", + "Hs (total) (m)": 3.3868, + "Tp (total) (s)": 16.8851 + }, + { + "Date+Time": "2019-11-21T00:00:00Z", + "Hs (total) (m)": 3.0297, + "Tp (total) (s)": 15.1448 + }, + { + "Date+Time": "2019-11-22T00:00:00Z", + "Hs (total) (m)": 2.0966, + "Tp (total) (s)": 13.1176 + }, + { + "Date+Time": "2019-11-23T00:00:00Z", + "Hs (total) (m)": 1.1048, + "Tp (total) (s)": 11.3819 + }, + { + "Date+Time": "2019-11-24T00:00:00Z", + "Hs (total) (m)": 0.8278, + "Tp (total) (s)": 10.6891 + }, + { + "Date+Time": "2019-11-25T00:00:00Z", + "Hs (total) (m)": 1.3314, + "Tp (total) (s)": 9.521 + }, + { + "Date+Time": "2019-11-26T00:00:00Z", + "Hs (total) (m)": 1.9753, + "Tp (total) (s)": 12.402 + }, + { + "Date+Time": "2019-11-27T00:00:00Z", + "Hs (total) (m)": 1.2375, + "Tp (total) (s)": 11.7061 + }, + { + "Date+Time": "2019-11-28T00:00:00Z", + "Hs (total) (m)": 1.6434, + "Tp (total) (s)": 12.3966 + }, + { + "Date+Time": "2019-11-29T00:00:00Z", + "Hs (total) (m)": 1.2368, + "Tp (total) (s)": 11.6573 + }, + { + "Date+Time": "2019-11-30T00:00:00Z", + "Hs (total) (m)": 1.2116, + "Tp (total) (s)": 10.5129 + }, + { + "Date+Time": "2019-12-01T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 11.4635 + }, + { + "Date+Time": "2019-12-02T00:00:00Z", + "Hs (total) (m)": 1.0117, + "Tp (total) (s)": 10.8318 + }, + { + "Date+Time": "2019-12-03T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 13.5212 + }, + { + "Date+Time": "2019-12-04T00:00:00Z", + "Hs (total) (m)": 2.7673, + "Tp (total) (s)": 11.2766 + }, + { + "Date+Time": "2019-12-05T00:00:00Z", + "Hs (total) (m)": 2.4163, + "Tp (total) (s)": 11.6581 + }, + { + "Date+Time": "2019-12-06T00:00:00Z", + "Hs (total) (m)": 3.3448, + "Tp (total) (s)": 12.4035 + }, + { + "Date+Time": "2019-12-07T00:00:00Z", + "Hs (total) (m)": 2.7726, + "Tp (total) (s)": 11.8595 + }, + { + "Date+Time": "2019-12-08T00:00:00Z", + "Hs (total) (m)": 3.2403, + "Tp (total) (s)": 9.7697 + }, + { + "Date+Time": "2019-12-09T00:00:00Z", + "Hs (total) (m)": 5.1665, + "Tp (total) (s)": 14.8811 + }, + { + "Date+Time": "2019-12-10T00:00:00Z", + "Hs (total) (m)": 3.7263, + "Tp (total) (s)": 13.5723 + }, + { + "Date+Time": "2019-12-11T00:00:00Z", + "Hs (total) (m)": 3.489, + "Tp (total) (s)": 11.0019 + }, + { + "Date+Time": "2019-12-12T00:00:00Z", + "Hs (total) (m)": 3.1846, + "Tp (total) (s)": 12.7247 + }, + { + "Date+Time": "2019-12-13T00:00:00Z", + "Hs (total) (m)": 3.8232, + "Tp (total) (s)": 12.495 + }, + { + "Date+Time": "2019-12-14T00:00:00Z", + "Hs (total) (m)": 4.3001, + "Tp (total) (s)": 13.4304 + }, + { + "Date+Time": "2019-12-15T00:00:00Z", + "Hs (total) (m)": 3.8354, + "Tp (total) (s)": 13.7783 + }, + { + "Date+Time": "2019-12-16T00:00:00Z", + "Hs (total) (m)": 3.6737, + "Tp (total) (s)": 15.4981 + }, + { + "Date+Time": "2019-12-17T00:00:00Z", + "Hs (total) (m)": 2.4964, + "Tp (total) (s)": 14.7961 + }, + { + "Date+Time": "2019-12-18T00:00:00Z", + "Hs (total) (m)": 1.7998, + "Tp (total) (s)": 12.6286 + }, + { + "Date+Time": "2019-12-19T00:00:00Z", + "Hs (total) (m)": 3.8812, + "Tp (total) (s)": 8.6924 + }, + { + "Date+Time": "2019-12-20T00:00:00Z", + "Hs (total) (m)": 2.4453, + "Tp (total) (s)": 15.1234 + }, + { + "Date+Time": "2019-12-21T00:00:00Z", + "Hs (total) (m)": 2.3553, + "Tp (total) (s)": 14.037 + }, + { + "Date+Time": "2019-12-22T00:00:00Z", + "Hs (total) (m)": 2.0341, + "Tp (total) (s)": 11.8961 + }, + { + "Date+Time": "2019-12-23T00:00:00Z", + "Hs (total) (m)": 3.8057, + "Tp (total) (s)": 16.3213 + }, + { + "Date+Time": "2019-12-24T00:00:00Z", + "Hs (total) (m)": 2.7154, + "Tp (total) (s)": 12.5233 + }, + { + "Date+Time": "2019-12-25T00:00:00Z", + "Hs (total) (m)": 2.8787, + "Tp (total) (s)": 13.6181 + }, + { + "Date+Time": "2019-12-26T00:00:00Z", + "Hs (total) (m)": 2.0722, + "Tp (total) (s)": 12.4805 + }, + { + "Date+Time": "2019-12-27T00:00:00Z", + "Hs (total) (m)": 2.8939, + "Tp (total) (s)": 12.08 + }, + { + "Date+Time": "2019-12-28T00:00:00Z", + "Hs (total) (m)": 3.1938, + "Tp (total) (s)": 12.196 + }, + { + "Date+Time": "2019-12-29T00:00:00Z", + "Hs (total) (m)": 3.8194, + "Tp (total) (s)": 13.2969 + }, + { + "Date+Time": "2019-12-30T00:00:00Z", + "Hs (total) (m)": 2.7688, + "Tp (total) (s)": 12.083 + }, + { + "Date+Time": "2019-12-31T00:00:00Z", + "Hs (total) (m)": 1.6083, + "Tp (total) (s)": 11.1888 + }, + { + "Date+Time": "2020-01-01T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 9.5683 + }, + { + "Date+Time": "2020-01-02T00:00:00Z", + "Hs (total) (m)": 2.7009, + "Tp (total) (s)": 8.4712 + }, + { + "Date+Time": "2020-01-03T00:00:00Z", + "Hs (total) (m)": 3.5211, + "Tp (total) (s)": 14.6672 + }, + { + "Date+Time": "2020-01-04T00:00:00Z", + "Hs (total) (m)": 2.5605, + "Tp (total) (s)": 14.1049 + }, + { + "Date+Time": "2020-01-05T00:00:00Z", + "Hs (total) (m)": 2.5826, + "Tp (total) (s)": 13.6074 + }, + { + "Date+Time": "2020-01-06T00:00:00Z", + "Hs (total) (m)": 3.4417, + "Tp (total) (s)": 10.5869 + }, + { + "Date+Time": "2020-01-07T00:00:00Z", + "Hs (total) (m)": 3.3403, + "Tp (total) (s)": 11.8564 + }, + { + "Date+Time": "2020-01-08T00:00:00Z", + "Hs (total) (m)": 4.0437, + "Tp (total) (s)": 13.8386 + }, + { + "Date+Time": "2020-01-09T00:00:00Z", + "Hs (total) (m)": 3.5722, + "Tp (total) (s)": 15.7201 + }, + { + "Date+Time": "2020-01-10T00:00:00Z", + "Hs (total) (m)": 2.5689, + "Tp (total) (s)": 15.0113 + }, + { + "Date+Time": "2020-01-11T00:00:00Z", + "Hs (total) (m)": 4.6381, + "Tp (total) (s)": 11.5864 + }, + { + "Date+Time": "2020-01-12T00:00:00Z", + "Hs (total) (m)": 3.3509, + "Tp (total) (s)": 13.0856 + }, + { + "Date+Time": "2020-01-13T00:00:00Z", + "Hs (total) (m)": 3.6058, + "Tp (total) (s)": 13.9195 + }, + { + "Date+Time": "2020-01-14T00:00:00Z", + "Hs (total) (m)": 6.2789, + "Tp (total) (s)": 15.0968 + }, + { + "Date+Time": "2020-01-15T00:00:00Z", + "Hs (total) (m)": 4.6739, + "Tp (total) (s)": 13.9515 + }, + { + "Date+Time": "2020-01-16T00:00:00Z", + "Hs (total) (m)": 3.8011, + "Tp (total) (s)": 13.1787 + }, + { + "Date+Time": "2020-01-17T00:00:00Z", + "Hs (total) (m)": 2.8977, + "Tp (total) (s)": 11.2972 + }, + { + "Date+Time": "2020-01-18T00:00:00Z", + "Hs (total) (m)": 2.0745, + "Tp (total) (s)": 10.4648 + }, + { + "Date+Time": "2020-01-19T00:00:00Z", + "Hs (total) (m)": 1.8014, + "Tp (total) (s)": 10.4823 + }, + { + "Date+Time": "2020-01-20T00:00:00Z", + "Hs (total) (m)": 2.2263, + "Tp (total) (s)": 18.5553 + }, + { + "Date+Time": "2020-01-21T00:00:00Z", + "Hs (total) (m)": 2.6795, + "Tp (total) (s)": 15.643 + }, + { + "Date+Time": "2020-01-22T00:00:00Z", + "Hs (total) (m)": 2.0493, + "Tp (total) (s)": 13.8859 + }, + { + "Date+Time": "2020-01-23T00:00:00Z", + "Hs (total) (m)": 1.5175, + "Tp (total) (s)": 12.0991 + }, + { + "Date+Time": "2020-01-24T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 12.3127 + }, + { + "Date+Time": "2020-01-25T00:00:00Z", + "Hs (total) (m)": 1.8113, + "Tp (total) (s)": 12.9498 + }, + { + "Date+Time": "2020-01-26T00:00:00Z", + "Hs (total) (m)": 2.9328, + "Tp (total) (s)": 12.5614 + }, + { + "Date+Time": "2020-01-27T00:00:00Z", + "Hs (total) (m)": 3.5607, + "Tp (total) (s)": 12.3814 + }, + { + "Date+Time": "2020-01-28T00:00:00Z", + "Hs (total) (m)": 3.1869, + "Tp (total) (s)": 13.7318 + }, + { + "Date+Time": "2020-01-29T00:00:00Z", + "Hs (total) (m)": 3.8629, + "Tp (total) (s)": 14.2201 + }, + { + "Date+Time": "2020-01-30T00:00:00Z", + "Hs (total) (m)": 3.0419, + "Tp (total) (s)": 13.6982 + }, + { + "Date+Time": "2020-01-31T00:00:00Z", + "Hs (total) (m)": 2.7909, + "Tp (total) (s)": 11.4048 + }, + { + "Date+Time": "2020-02-01T00:00:00Z", + "Hs (total) (m)": 4.2604, + "Tp (total) (s)": 12.1334 + }, + { + "Date+Time": "2020-02-02T00:00:00Z", + "Hs (total) (m)": 3.1869, + "Tp (total) (s)": 12.7041 + }, + { + "Date+Time": "2020-02-03T00:00:00Z", + "Hs (total) (m)": 3.9697, + "Tp (total) (s)": 12.3104 + }, + { + "Date+Time": "2020-02-04T00:00:00Z", + "Hs (total) (m)": 3.2342, + "Tp (total) (s)": 13.287 + }, + { + "Date+Time": "2020-02-05T00:00:00Z", + "Hs (total) (m)": 2.3011, + "Tp (total) (s)": 11.4536 + }, + { + "Date+Time": "2020-02-06T00:00:00Z", + "Hs (total) (m)": 2.2225, + "Tp (total) (s)": 15.186 + }, + { + "Date+Time": "2020-02-07T00:00:00Z", + "Hs (total) (m)": 2.4567, + "Tp (total) (s)": 14.2827 + }, + { + "Date+Time": "2020-02-08T00:00:00Z", + "Hs (total) (m)": 2.5826, + "Tp (total) (s)": 11.6657 + }, + { + "Date+Time": "2020-02-09T00:00:00Z", + "Hs (total) (m)": 4.5007, + "Tp (total) (s)": 13.7837 + }, + { + "Date+Time": "2020-02-10T00:00:00Z", + "Hs (total) (m)": 5.2256, + "Tp (total) (s)": 13.7893 + }, + { + "Date+Time": "2020-02-11T00:00:00Z", + "Hs (total) (m)": 6.0512, + "Tp (total) (s)": 15.287 + }, + { + "Date+Time": "2020-02-12T00:00:00Z", + "Hs (total) (m)": 4.8714, + "Tp (total) (s)": 15.2759 + }, + { + "Date+Time": "2020-02-13T00:00:00Z", + "Hs (total) (m)": 3.4783, + "Tp (total) (s)": 13.567 + }, + { + "Date+Time": "2020-02-14T00:00:00Z", + "Hs (total) (m)": 3.0595, + "Tp (total) (s)": 14.0126 + }, + { + "Date+Time": "2020-02-15T00:00:00Z", + "Hs (total) (m)": 5.113, + "Tp (total) (s)": 16.9641 + }, + { + "Date+Time": "2020-02-16T00:00:00Z", + "Hs (total) (m)": 5.8199, + "Tp (total) (s)": 14.6491 + }, + { + "Date+Time": "2020-02-17T00:00:00Z", + "Hs (total) (m)": 7.1683, + "Tp (total) (s)": 15.7071 + }, + { + "Date+Time": "2020-02-18T00:00:00Z", + "Hs (total) (m)": 5.0797, + "Tp (total) (s)": 15.4732 + }, + { + "Date+Time": "2020-02-19T00:00:00Z", + "Hs (total) (m)": 3.8324, + "Tp (total) (s)": 13.2504 + }, + { + "Date+Time": "2020-02-20T00:00:00Z", + "Hs (total) (m)": 3.8987, + "Tp (total) (s)": 12.5896 + }, + { + "Date+Time": "2020-02-21T00:00:00Z", + "Hs (total) (m)": 3.9865, + "Tp (total) (s)": 12.8559 + }, + { + "Date+Time": "2020-02-22T00:00:00Z", + "Hs (total) (m)": 5.3826, + "Tp (total) (s)": 13.802 + }, + { + "Date+Time": "2020-02-23T00:00:00Z", + "Hs (total) (m)": 4.4, + "Tp (total) (s)": 15.1769 + }, + { + "Date+Time": "2020-02-24T00:00:00Z", + "Hs (total) (m)": 3.2937, + "Tp (total) (s)": 14.6382 + }, + { + "Date+Time": "2020-02-25T00:00:00Z", + "Hs (total) (m)": 3.0526, + "Tp (total) (s)": 11.7595 + }, + { + "Date+Time": "2020-02-26T00:00:00Z", + "Hs (total) (m)": 3.6096, + "Tp (total) (s)": 12.1044 + }, + { + "Date+Time": "2020-02-27T00:00:00Z", + "Hs (total) (m)": 2.7993, + "Tp (total) (s)": 13.0551 + }, + { + "Date+Time": "2020-02-28T00:00:00Z", + "Hs (total) (m)": 2.1065, + "Tp (total) (s)": 12.2143 + }, + { + "Date+Time": "2020-02-29T00:00:00Z", + "Hs (total) (m)": 2.739, + "Tp (total) (s)": 9.6065 + }, + { + "Date+Time": "2020-03-01T00:00:00Z", + "Hs (total) (m)": 5.6679, + "Tp (total) (s)": 14.1643 + }, + { + "Date+Time": "2020-03-02T00:00:00Z", + "Hs (total) (m)": 3.6782, + "Tp (total) (s)": 13.5189 + }, + { + "Date+Time": "2020-03-03T00:00:00Z", + "Hs (total) (m)": 3.2594, + "Tp (total) (s)": 11.7397 + }, + { + "Date+Time": "2020-03-04T00:00:00Z", + "Hs (total) (m)": 2.4537, + "Tp (total) (s)": 11.903 + }, + { + "Date+Time": "2020-03-05T00:00:00Z", + "Hs (total) (m)": 2.0508, + "Tp (total) (s)": 12.3905 + }, + { + "Date+Time": "2020-03-06T00:00:00Z", + "Hs (total) (m)": 2.5407, + "Tp (total) (s)": 12.3165 + }, + { + "Date+Time": "2020-03-07T00:00:00Z", + "Hs (total) (m)": 2.8191, + "Tp (total) (s)": 11.8015 + }, + { + "Date+Time": "2020-03-08T00:00:00Z", + "Hs (total) (m)": 3.8858, + "Tp (total) (s)": 12.2913 + }, + { + "Date+Time": "2020-03-09T00:00:00Z", + "Hs (total) (m)": 4.2405, + "Tp (total) (s)": 12.7407 + }, + { + "Date+Time": "2020-03-10T00:00:00Z", + "Hs (total) (m)": 4.2039, + "Tp (total) (s)": 12.4783 + }, + { + "Date+Time": "2020-03-11T00:00:00Z", + "Hs (total) (m)": 3.4745, + "Tp (total) (s)": 12.4226 + }, + { + "Date+Time": "2020-03-12T00:00:00Z", + "Hs (total) (m)": 4.1467, + "Tp (total) (s)": 12.4157 + }, + { + "Date+Time": "2020-03-13T00:00:00Z", + "Hs (total) (m)": 4.5587, + "Tp (total) (s)": 14.2483 + }, + { + "Date+Time": "2020-03-14T00:00:00Z", + "Hs (total) (m)": 2.382, + "Tp (total) (s)": 12.7911 + }, + { + "Date+Time": "2020-03-15T00:00:00Z", + "Hs (total) (m)": 3.0351, + "Tp (total) (s)": 10.3053 + }, + { + "Date+Time": "2020-03-16T00:00:00Z", + "Hs (total) (m)": 2.1142, + "Tp (total) (s)": 10.3038 + }, + { + "Date+Time": "2020-03-17T00:00:00Z", + "Hs (total) (m)": 2.7963, + "Tp (total) (s)": 10.8036 + }, + { + "Date+Time": "2020-03-18T00:00:00Z", + "Hs (total) (m)": 2.4819, + "Tp (total) (s)": 13.1787 + }, + { + "Date+Time": "2020-03-19T00:00:00Z", + "Hs (total) (m)": 2.3827, + "Tp (total) (s)": 14.4429 + }, + { + "Date+Time": "2020-03-20T00:00:00Z", + "Hs (total) (m)": 1.8441, + "Tp (total) (s)": 13.9958 + }, + { + "Date+Time": "2020-03-21T00:00:00Z", + "Hs (total) (m)": 1.2612, + "Tp (total) (s)": 12.505 + }, + { + "Date+Time": "2020-03-22T00:00:00Z", + "Hs (total) (m)": 1.2032, + "Tp (total) (s)": 12.6301 + }, + { + "Date+Time": "2020-03-23T00:00:00Z", + "Hs (total) (m)": 1.6381, + "Tp (total) (s)": 11.4536 + }, + { + "Date+Time": "2020-03-24T00:00:00Z", + "Hs (total) (m)": 3.0732, + "Tp (total) (s)": 16.4556 + }, + { + "Date+Time": "2020-03-25T00:00:00Z", + "Hs (total) (m)": 3.4272, + "Tp (total) (s)": 14.1148 + }, + { + "Date+Time": "2020-03-26T00:00:00Z", + "Hs (total) (m)": 1.9097, + "Tp (total) (s)": 13.0032 + }, + { + "Date+Time": "2020-03-27T00:00:00Z", + "Hs (total) (m)": 1.4588, + "Tp (total) (s)": 12.8826 + }, + { + "Date+Time": "2020-03-28T00:00:00Z", + "Hs (total) (m)": 1.0926, + "Tp (total) (s)": 11.7176 + }, + { + "Date+Time": "2020-03-29T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 10.8219 + }, + { + "Date+Time": "2020-03-30T00:00:00Z", + "Hs (total) (m)": 0.8438, + "Tp (total) (s)": 10.577 + }, + { + "Date+Time": "2020-03-31T00:00:00Z", + "Hs (total) (m)": 0.7096, + "Tp (total) (s)": 12.5454 + }, + { + "Date+Time": "2020-04-01T00:00:00Z", + "Hs (total) (m)": 0.6172, + "Tp (total) (s)": 2.7932 + }, + { + "Date+Time": "2020-04-02T00:00:00Z", + "Hs (total) (m)": 0.5646, + "Tp (total) (s)": 2.9649 + }, + { + "Date+Time": "2020-04-03T00:00:00Z", + "Hs (total) (m)": 1.0399, + "Tp (total) (s)": 9.4829 + }, + { + "Date+Time": "2020-04-04T00:00:00Z", + "Hs (total) (m)": 1.2101, + "Tp (total) (s)": 12.418 + }, + { + "Date+Time": "2020-04-05T00:00:00Z", + "Hs (total) (m)": 2.2553, + "Tp (total) (s)": 8.7725 + }, + { + "Date+Time": "2020-04-06T00:00:00Z", + "Hs (total) (m)": 2.9527, + "Tp (total) (s)": 10.1199 + }, + { + "Date+Time": "2020-04-07T00:00:00Z", + "Hs (total) (m)": 2.1485, + "Tp (total) (s)": 10.6525 + }, + { + "Date+Time": "2020-04-08T00:00:00Z", + "Hs (total) (m)": 2.002, + "Tp (total) (s)": 11.3048 + }, + { + "Date+Time": "2020-04-09T00:00:00Z", + "Hs (total) (m)": 1.4252, + "Tp (total) (s)": 11.1591 + }, + { + "Date+Time": "2020-04-10T00:00:00Z", + "Hs (total) (m)": 1.1505, + "Tp (total) (s)": 11.4452 + }, + { + "Date+Time": "2020-04-11T00:00:00Z", + "Hs (total) (m)": 0.8652, + "Tp (total) (s)": 10.3725 + }, + { + "Date+Time": "2020-04-12T00:00:00Z", + "Hs (total) (m)": 1.001, + "Tp (total) (s)": 9.1723 + }, + { + "Date+Time": "2020-04-13T00:00:00Z", + "Hs (total) (m)": 1.4962, + "Tp (total) (s)": 14.3536 + }, + { + "Date+Time": "2020-04-14T00:00:00Z", + "Hs (total) (m)": 1.4321, + "Tp (total) (s)": 13.6753 + }, + { + "Date+Time": "2020-04-15T00:00:00Z", + "Hs (total) (m)": 1.2345, + "Tp (total) (s)": 12.2196 + }, + { + "Date+Time": "2020-04-16T00:00:00Z", + "Hs (total) (m)": 1.091, + "Tp (total) (s)": 11.4498 + }, + { + "Date+Time": "2020-04-17T00:00:00Z", + "Hs (total) (m)": 1.2185, + "Tp (total) (s)": 12.4577 + }, + { + "Date+Time": "2020-04-18T00:00:00Z", + "Hs (total) (m)": 1.0018, + "Tp (total) (s)": 12.112 + }, + { + "Date+Time": "2020-04-19T00:00:00Z", + "Hs (total) (m)": 0.9819, + "Tp (total) (s)": 9.2517 + }, + { + "Date+Time": "2020-04-20T00:00:00Z", + "Hs (total) (m)": 1.1345, + "Tp (total) (s)": 10.8974 + }, + { + "Date+Time": "2020-04-21T00:00:00Z", + "Hs (total) (m)": 1.6366, + "Tp (total) (s)": 13.7783 + }, + { + "Date+Time": "2020-04-22T00:00:00Z", + "Hs (total) (m)": 1.6526, + "Tp (total) (s)": 12.8597 + }, + { + "Date+Time": "2020-04-23T00:00:00Z", + "Hs (total) (m)": 1.4077, + "Tp (total) (s)": 17.4757 + }, + { + "Date+Time": "2020-04-24T00:00:00Z", + "Hs (total) (m)": 1.4428, + "Tp (total) (s)": 14.1682 + }, + { + "Date+Time": "2020-04-25T00:00:00Z", + "Hs (total) (m)": 1.1811, + "Tp (total) (s)": 12.6789 + }, + { + "Date+Time": "2020-04-26T00:00:00Z", + "Hs (total) (m)": 1.1193, + "Tp (total) (s)": 12.4752 + }, + { + "Date+Time": "2020-04-27T00:00:00Z", + "Hs (total) (m)": 1.0262, + "Tp (total) (s)": 11.7595 + }, + { + "Date+Time": "2020-04-28T00:00:00Z", + "Hs (total) (m)": 0.8339, + "Tp (total) (s)": 10.4343 + }, + { + "Date+Time": "2020-04-29T00:00:00Z", + "Hs (total) (m)": 0.7904, + "Tp (total) (s)": 11.1469 + }, + { + "Date+Time": "2020-04-30T00:00:00Z", + "Hs (total) (m)": 1.6129, + "Tp (total) (s)": 11.6253 + }, + { + "Date+Time": "2020-05-01T00:00:00Z", + "Hs (total) (m)": 1.6785, + "Tp (total) (s)": 11.2247 + }, + { + "Date+Time": "2020-05-02T00:00:00Z", + "Hs (total) (m)": 1.3436, + "Tp (total) (s)": 10.5502 + }, + { + "Date+Time": "2020-05-03T00:00:00Z", + "Hs (total) (m)": 1.0552, + "Tp (total) (s)": 8.7909 + }, + { + "Date+Time": "2020-05-04T00:00:00Z", + "Hs (total) (m)": 0.9766, + "Tp (total) (s)": 8.7764 + }, + { + "Date+Time": "2020-05-05T00:00:00Z", + "Hs (total) (m)": 0.8866, + "Tp (total) (s)": 9.1014 + }, + { + "Date+Time": "2020-05-06T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 4.3909 + }, + { + "Date+Time": "2020-05-07T00:00:00Z", + "Hs (total) (m)": 1.2368, + "Tp (total) (s)": 11.4788 + }, + { + "Date+Time": "2020-05-08T00:00:00Z", + "Hs (total) (m)": 1.0971, + "Tp (total) (s)": 11.5024 + }, + { + "Date+Time": "2020-05-09T00:00:00Z", + "Hs (total) (m)": 0.8896, + "Tp (total) (s)": 10.5296 + }, + { + "Date+Time": "2020-05-10T00:00:00Z", + "Hs (total) (m)": 0.7958, + "Tp (total) (s)": 11.4483 + }, + { + "Date+Time": "2020-05-11T00:00:00Z", + "Hs (total) (m)": 0.9018, + "Tp (total) (s)": 3.0519 + }, + { + "Date+Time": "2020-05-12T00:00:00Z", + "Hs (total) (m)": 0.6882, + "Tp (total) (s)": 3.0297 + }, + { + "Date+Time": "2020-05-13T00:00:00Z", + "Hs (total) (m)": 0.5905, + "Tp (total) (s)": 11.359 + }, + { + "Date+Time": "2020-05-14T00:00:00Z", + "Hs (total) (m)": 0.6691, + "Tp (total) (s)": 11.3193 + }, + { + "Date+Time": "2020-05-15T00:00:00Z", + "Hs (total) (m)": 0.9346, + "Tp (total) (s)": 12.9643 + }, + { + "Date+Time": "2020-05-16T00:00:00Z", + "Hs (total) (m)": 0.9407, + "Tp (total) (s)": 12.0922 + }, + { + "Date+Time": "2020-05-17T00:00:00Z", + "Hs (total) (m)": 1.3863, + "Tp (total) (s)": 10.8913 + }, + { + "Date+Time": "2020-05-18T00:00:00Z", + "Hs (total) (m)": 2.2401, + "Tp (total) (s)": 8.7512 + }, + { + "Date+Time": "2020-05-19T00:00:00Z", + "Hs (total) (m)": 2.1203, + "Tp (total) (s)": 8.5833 + }, + { + "Date+Time": "2020-05-20T00:00:00Z", + "Hs (total) (m)": 1.7541, + "Tp (total) (s)": 9.4676 + }, + { + "Date+Time": "2020-05-21T00:00:00Z", + "Hs (total) (m)": 1.6991, + "Tp (total) (s)": 9.7018 + }, + { + "Date+Time": "2020-05-22T00:00:00Z", + "Hs (total) (m)": 2.8314, + "Tp (total) (s)": 9.4089 + }, + { + "Date+Time": "2020-05-23T00:00:00Z", + "Hs (total) (m)": 5.0971, + "Tp (total) (s)": 13.6265 + }, + { + "Date+Time": "2020-05-24T00:00:00Z", + "Hs (total) (m)": 3.1556, + "Tp (total) (s)": 10.9607 + }, + { + "Date+Time": "2020-05-25T00:00:00Z", + "Hs (total) (m)": 2.1569, + "Tp (total) (s)": 10.6494 + }, + { + "Date+Time": "2020-05-26T00:00:00Z", + "Hs (total) (m)": 2.0043, + "Tp (total) (s)": 11.6482 + }, + { + "Date+Time": "2020-05-27T00:00:00Z", + "Hs (total) (m)": 1.7556, + "Tp (total) (s)": 12.3943 + }, + { + "Date+Time": "2020-05-28T00:00:00Z", + "Hs (total) (m)": 1.3192, + "Tp (total) (s)": 11.4139 + }, + { + "Date+Time": "2020-05-29T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 9.3402 + }, + { + "Date+Time": "2020-05-30T00:00:00Z", + "Hs (total) (m)": 1.1338, + "Tp (total) (s)": 9.7125 + }, + { + "Date+Time": "2020-05-31T00:00:00Z", + "Hs (total) (m)": 1.0254, + "Tp (total) (s)": 9.5264 + }, + { + "Date+Time": "2020-06-01T00:00:00Z", + "Hs (total) (m)": 0.9484, + "Tp (total) (s)": 9.444 + }, + { + "Date+Time": "2020-06-02T00:00:00Z", + "Hs (total) (m)": 0.7347, + "Tp (total) (s)": 8.8771 + }, + { + "Date+Time": "2020-06-03T00:00:00Z", + "Hs (total) (m)": 0.7248, + "Tp (total) (s)": 8.517 + }, + { + "Date+Time": "2020-06-04T00:00:00Z", + "Hs (total) (m)": 0.7775, + "Tp (total) (s)": 3.0755 + }, + { + "Date+Time": "2020-06-05T00:00:00Z", + "Hs (total) (m)": 0.9812, + "Tp (total) (s)": 6.399 + }, + { + "Date+Time": "2020-06-06T00:00:00Z", + "Hs (total) (m)": 1.223, + "Tp (total) (s)": 7.065 + }, + { + "Date+Time": "2020-06-07T00:00:00Z", + "Hs (total) (m)": 1.4054, + "Tp (total) (s)": 7.7937 + }, + { + "Date+Time": "2020-06-08T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 11.4582 + }, + { + "Date+Time": "2020-06-09T00:00:00Z", + "Hs (total) (m)": 0.7424, + "Tp (total) (s)": 11.1957 + }, + { + "Date+Time": "2020-06-10T00:00:00Z", + "Hs (total) (m)": 1.1086, + "Tp (total) (s)": 10.5647 + }, + { + "Date+Time": "2020-06-11T00:00:00Z", + "Hs (total) (m)": 1.0353, + "Tp (total) (s)": 10.0902 + }, + { + "Date+Time": "2020-06-12T00:00:00Z", + "Hs (total) (m)": 1.043, + "Tp (total) (s)": 9.6103 + }, + { + "Date+Time": "2020-06-13T00:00:00Z", + "Hs (total) (m)": 0.8827, + "Tp (total) (s)": 7.6205 + }, + { + "Date+Time": "2020-06-14T00:00:00Z", + "Hs (total) (m)": 0.753, + "Tp (total) (s)": 7.8158 + }, + { + "Date+Time": "2020-06-15T00:00:00Z", + "Hs (total) (m)": 0.6668, + "Tp (total) (s)": 10.3397 + }, + { + "Date+Time": "2020-06-16T00:00:00Z", + "Hs (total) (m)": 0.6401, + "Tp (total) (s)": 10.2786 + }, + { + "Date+Time": "2020-06-17T00:00:00Z", + "Hs (total) (m)": 0.6371, + "Tp (total) (s)": 10.0185 + }, + { + "Date+Time": "2020-06-18T00:00:00Z", + "Hs (total) (m)": 0.7538, + "Tp (total) (s)": 10.8203 + }, + { + "Date+Time": "2020-06-19T00:00:00Z", + "Hs (total) (m)": 0.8148, + "Tp (total) (s)": 10.0047 + }, + { + "Date+Time": "2020-06-20T00:00:00Z", + "Hs (total) (m)": 1.3199, + "Tp (total) (s)": 8.4758 + }, + { + "Date+Time": "2020-06-21T00:00:00Z", + "Hs (total) (m)": 2.8115, + "Tp (total) (s)": 9.6393 + }, + { + "Date+Time": "2020-06-22T00:00:00Z", + "Hs (total) (m)": 2.7703, + "Tp (total) (s)": 11.6596 + }, + { + "Date+Time": "2020-06-23T00:00:00Z", + "Hs (total) (m)": 2.224, + "Tp (total) (s)": 10.4434 + }, + { + "Date+Time": "2020-06-24T00:00:00Z", + "Hs (total) (m)": 1.8616, + "Tp (total) (s)": 11.0614 + }, + { + "Date+Time": "2020-06-25T00:00:00Z", + "Hs (total) (m)": 1.6762, + "Tp (total) (s)": 11.156 + }, + { + "Date+Time": "2020-06-26T00:00:00Z", + "Hs (total) (m)": 1.2452, + "Tp (total) (s)": 9.6988 + }, + { + "Date+Time": "2020-06-27T00:00:00Z", + "Hs (total) (m)": 1.0323, + "Tp (total) (s)": 8.3979 + }, + { + "Date+Time": "2020-06-28T00:00:00Z", + "Hs (total) (m)": 1.7769, + "Tp (total) (s)": 6.975 + }, + { + "Date+Time": "2020-06-29T00:00:00Z", + "Hs (total) (m)": 2.8634, + "Tp (total) (s)": 9.2753 + }, + { + "Date+Time": "2020-06-30T00:00:00Z", + "Hs (total) (m)": 2.2729, + "Tp (total) (s)": 9.6355 + }, + { + "Date+Time": "2020-07-01T00:00:00Z", + "Hs (total) (m)": 0.8919, + "Tp (total) (s)": 7.8486 + }, + { + "Date+Time": "2020-07-02T00:00:00Z", + "Hs (total) (m)": 0.7866, + "Tp (total) (s)": 8.5505 + }, + { + "Date+Time": "2020-07-03T00:00:00Z", + "Hs (total) (m)": 1.8273, + "Tp (total) (s)": 5.9282 + }, + { + "Date+Time": "2020-07-04T00:00:00Z", + "Hs (total) (m)": 1.6282, + "Tp (total) (s)": 8.813 + }, + { + "Date+Time": "2020-07-05T00:00:00Z", + "Hs (total) (m)": 3.0587, + "Tp (total) (s)": 8.8992 + }, + { + "Date+Time": "2020-07-06T00:00:00Z", + "Hs (total) (m)": 2.6055, + "Tp (total) (s)": 11.1644 + }, + { + "Date+Time": "2020-07-07T00:00:00Z", + "Hs (total) (m)": 1.339, + "Tp (total) (s)": 9.8407 + }, + { + "Date+Time": "2020-07-08T00:00:00Z", + "Hs (total) (m)": 1.384, + "Tp (total) (s)": 8.343 + }, + { + "Date+Time": "2020-07-09T00:00:00Z", + "Hs (total) (m)": 1.1689, + "Tp (total) (s)": 8.0027 + }, + { + "Date+Time": "2020-07-10T00:00:00Z", + "Hs (total) (m)": 1.1513, + "Tp (total) (s)": 9.444 + }, + { + "Date+Time": "2020-07-11T00:00:00Z", + "Hs (total) (m)": 0.8972, + "Tp (total) (s)": 9.2799 + }, + { + "Date+Time": "2020-07-12T00:00:00Z", + "Hs (total) (m)": 0.6516, + "Tp (total) (s)": 8.3613 + }, + { + "Date+Time": "2020-07-13T00:00:00Z", + "Hs (total) (m)": 1.5648, + "Tp (total) (s)": 6.1991 + }, + { + "Date+Time": "2020-07-14T00:00:00Z", + "Hs (total) (m)": 1.1292, + "Tp (total) (s)": 8.1599 + }, + { + "Date+Time": "2020-07-15T00:00:00Z", + "Hs (total) (m)": 1.4084, + "Tp (total) (s)": 7.313 + }, + { + "Date+Time": "2020-07-16T00:00:00Z", + "Hs (total) (m)": 1.2101, + "Tp (total) (s)": 10.5571 + }, + { + "Date+Time": "2020-07-17T00:00:00Z", + "Hs (total) (m)": 1.706, + "Tp (total) (s)": 8.6947 + }, + { + "Date+Time": "2020-07-18T00:00:00Z", + "Hs (total) (m)": 1.3718, + "Tp (total) (s)": 9.3997 + }, + { + "Date+Time": "2020-07-19T00:00:00Z", + "Hs (total) (m)": 1.0468, + "Tp (total) (s)": 11.2232 + }, + { + "Date+Time": "2020-07-20T00:00:00Z", + "Hs (total) (m)": 0.8171, + "Tp (total) (s)": 9.9086 + }, + { + "Date+Time": "2020-07-21T00:00:00Z", + "Hs (total) (m)": 0.5837, + "Tp (total) (s)": 8.5032 + }, + { + "Date+Time": "2020-07-22T00:00:00Z", + "Hs (total) (m)": 1.2368, + "Tp (total) (s)": 5.1943 + }, + { + "Date+Time": "2020-07-23T00:00:00Z", + "Hs (total) (m)": 1.368, + "Tp (total) (s)": 6.4409 + }, + { + "Date+Time": "2020-07-24T00:00:00Z", + "Hs (total) (m)": 0.7118, + "Tp (total) (s)": 7.0139 + }, + { + "Date+Time": "2020-07-25T00:00:00Z", + "Hs (total) (m)": 1.4153, + "Tp (total) (s)": 6.4409 + }, + { + "Date+Time": "2020-07-26T00:00:00Z", + "Hs (total) (m)": 1.4702, + "Tp (total) (s)": 6.9864 + }, + { + "Date+Time": "2020-07-27T00:00:00Z", + "Hs (total) (m)": 1.2329, + "Tp (total) (s)": 8.0203 + }, + { + "Date+Time": "2020-07-28T00:00:00Z", + "Hs (total) (m)": 1.278, + "Tp (total) (s)": 7.4313 + }, + { + "Date+Time": "2020-07-29T00:00:00Z", + "Hs (total) (m)": 0.7859, + "Tp (total) (s)": 8.1706 + }, + { + "Date+Time": "2020-07-30T00:00:00Z", + "Hs (total) (m)": 1.6625, + "Tp (total) (s)": 7.9386 + }, + { + "Date+Time": "2020-07-31T00:00:00Z", + "Hs (total) (m)": 2.5033, + "Tp (total) (s)": 10.0612 + }, + { + "Date+Time": "2020-08-01T00:00:00Z", + "Hs (total) (m)": 1.6251, + "Tp (total) (s)": 9.3722 + }, + { + "Date+Time": "2020-08-02T00:00:00Z", + "Hs (total) (m)": 1.4512, + "Tp (total) (s)": 9.3326 + }, + { + "Date+Time": "2020-08-03T00:00:00Z", + "Hs (total) (m)": 1.0559, + "Tp (total) (s)": 10.2306 + }, + { + "Date+Time": "2020-08-04T00:00:00Z", + "Hs (total) (m)": 1.69, + "Tp (total) (s)": 9.6072 + }, + { + "Date+Time": "2020-08-05T00:00:00Z", + "Hs (total) (m)": 2.3705, + "Tp (total) (s)": 9.3211 + }, + { + "Date+Time": "2020-08-06T00:00:00Z", + "Hs (total) (m)": 1.3779, + "Tp (total) (s)": 9.5737 + }, + { + "Date+Time": "2020-08-07T00:00:00Z", + "Hs (total) (m)": 1.6152, + "Tp (total) (s)": 8.5665 + }, + { + "Date+Time": "2020-08-08T00:00:00Z", + "Hs (total) (m)": 1.1391, + "Tp (total) (s)": 8.4964 + }, + { + "Date+Time": "2020-08-09T00:00:00Z", + "Hs (total) (m)": 0.9056, + "Tp (total) (s)": 8.4117 + }, + { + "Date+Time": "2020-08-10T00:00:00Z", + "Hs (total) (m)": 0.7248, + "Tp (total) (s)": 7.9058 + }, + { + "Date+Time": "2020-08-11T00:00:00Z", + "Hs (total) (m)": 0.8332, + "Tp (total) (s)": 8.4643 + }, + { + "Date+Time": "2020-08-12T00:00:00Z", + "Hs (total) (m)": 0.7927, + "Tp (total) (s)": 8.1011 + }, + { + "Date+Time": "2020-08-13T00:00:00Z", + "Hs (total) (m)": 0.7134, + "Tp (total) (s)": 4.9303 + }, + { + "Date+Time": "2020-08-14T00:00:00Z", + "Hs (total) (m)": 0.5684, + "Tp (total) (s)": 5.987 + }, + { + "Date+Time": "2020-08-15T00:00:00Z", + "Hs (total) (m)": 0.4189, + "Tp (total) (s)": 8.0226 + }, + { + "Date+Time": "2020-08-16T00:00:00Z", + "Hs (total) (m)": 0.4753, + "Tp (total) (s)": 8.5009 + }, + { + "Date+Time": "2020-08-17T00:00:00Z", + "Hs (total) (m)": 0.5158, + "Tp (total) (s)": 7.8249 + }, + { + "Date+Time": "2020-08-18T00:00:00Z", + "Hs (total) (m)": 0.7912, + "Tp (total) (s)": 8.298 + }, + { + "Date+Time": "2020-08-19T00:00:00Z", + "Hs (total) (m)": 0.8599, + "Tp (total) (s)": 8.5826 + }, + { + "Date+Time": "2020-08-20T00:00:00Z", + "Hs (total) (m)": 0.7607, + "Tp (total) (s)": 2.8512 + }, + { + "Date+Time": "2020-08-21T00:00:00Z", + "Hs (total) (m)": 2.9206, + "Tp (total) (s)": 10.8509 + }, + { + "Date+Time": "2020-08-22T00:00:00Z", + "Hs (total) (m)": 2.2576, + "Tp (total) (s)": 8.7779 + }, + { + "Date+Time": "2020-08-23T00:00:00Z", + "Hs (total) (m)": 1.809, + "Tp (total) (s)": 8.5421 + }, + { + "Date+Time": "2020-08-24T00:00:00Z", + "Hs (total) (m)": 0.985, + "Tp (total) (s)": 7.6014 + }, + { + "Date+Time": "2020-08-25T00:00:00Z", + "Hs (total) (m)": 0.7073, + "Tp (total) (s)": 8.7138 + }, + { + "Date+Time": "2020-08-26T00:00:00Z", + "Hs (total) (m)": 1.7716, + "Tp (total) (s)": 8.739 + }, + { + "Date+Time": "2020-08-27T00:00:00Z", + "Hs (total) (m)": 1.265, + "Tp (total) (s)": 8.3995 + }, + { + "Date+Time": "2020-08-28T00:00:00Z", + "Hs (total) (m)": 0.9835, + "Tp (total) (s)": 7.767 + }, + { + "Date+Time": "2020-08-29T00:00:00Z", + "Hs (total) (m)": 0.8629, + "Tp (total) (s)": 7.8951 + }, + { + "Date+Time": "2020-08-30T00:00:00Z", + "Hs (total) (m)": 0.5768, + "Tp (total) (s)": 6.4135 + }, + { + "Date+Time": "2020-08-31T00:00:00Z", + "Hs (total) (m)": 0.647, + "Tp (total) (s)": 6.5714 + }, + { + "Date+Time": "2020-09-01T00:00:00Z", + "Hs (total) (m)": 1.5557, + "Tp (total) (s)": 8.5559 + }, + { + "Date+Time": "2020-09-02T00:00:00Z", + "Hs (total) (m)": 1.8258, + "Tp (total) (s)": 7.1665 + }, + { + "Date+Time": "2020-09-03T00:00:00Z", + "Hs (total) (m)": 2.2279, + "Tp (total) (s)": 8.6749 + }, + { + "Date+Time": "2020-09-04T00:00:00Z", + "Hs (total) (m)": 2.1439, + "Tp (total) (s)": 10.3595 + }, + { + "Date+Time": "2020-09-05T00:00:00Z", + "Hs (total) (m)": 1.7205, + "Tp (total) (s)": 10.3191 + }, + { + "Date+Time": "2020-09-06T00:00:00Z", + "Hs (total) (m)": 1.4977, + "Tp (total) (s)": 9.6583 + }, + { + "Date+Time": "2020-09-07T00:00:00Z", + "Hs (total) (m)": 1.2474, + "Tp (total) (s)": 8.8893 + }, + { + "Date+Time": "2020-09-08T00:00:00Z", + "Hs (total) (m)": 1.4847, + "Tp (total) (s)": 9.254 + }, + { + "Date+Time": "2020-09-09T00:00:00Z", + "Hs (total) (m)": 1.516, + "Tp (total) (s)": 8.8595 + }, + { + "Date+Time": "2020-09-10T00:00:00Z", + "Hs (total) (m)": 1.1864, + "Tp (total) (s)": 10.4656 + }, + { + "Date+Time": "2020-09-11T00:00:00Z", + "Hs (total) (m)": 2.0417, + "Tp (total) (s)": 9.4363 + }, + { + "Date+Time": "2020-09-12T00:00:00Z", + "Hs (total) (m)": 2.3377, + "Tp (total) (s)": 11.2476 + }, + { + "Date+Time": "2020-09-13T00:00:00Z", + "Hs (total) (m)": 3.4021, + "Tp (total) (s)": 11.7183 + }, + { + "Date+Time": "2020-09-14T00:00:00Z", + "Hs (total) (m)": 2.3286, + "Tp (total) (s)": 10.9416 + }, + { + "Date+Time": "2020-09-15T00:00:00Z", + "Hs (total) (m)": 1.3962, + "Tp (total) (s)": 9.6362 + }, + { + "Date+Time": "2020-09-16T00:00:00Z", + "Hs (total) (m)": 0.8164, + "Tp (total) (s)": 8.7321 + }, + { + "Date+Time": "2020-09-17T00:00:00Z", + "Hs (total) (m)": 0.763, + "Tp (total) (s)": 7.9348 + }, + { + "Date+Time": "2020-09-18T00:00:00Z", + "Hs (total) (m)": 0.9575, + "Tp (total) (s)": 12.6156 + }, + { + "Date+Time": "2020-09-19T00:00:00Z", + "Hs (total) (m)": 1.2642, + "Tp (total) (s)": 13.567 + }, + { + "Date+Time": "2020-09-20T00:00:00Z", + "Hs (total) (m)": 1.2207, + "Tp (total) (s)": 11.6291 + }, + { + "Date+Time": "2020-09-21T00:00:00Z", + "Hs (total) (m)": 1.0643, + "Tp (total) (s)": 14.4536 + }, + { + "Date+Time": "2020-09-22T00:00:00Z", + "Hs (total) (m)": 1.5633, + "Tp (total) (s)": 11.7588 + }, + { + "Date+Time": "2020-09-23T00:00:00Z", + "Hs (total) (m)": 1.7083, + "Tp (total) (s)": 9.4943 + }, + { + "Date+Time": "2020-09-24T00:00:00Z", + "Hs (total) (m)": 1.7495, + "Tp (total) (s)": 9.2936 + }, + { + "Date+Time": "2020-09-25T00:00:00Z", + "Hs (total) (m)": 2.1317, + "Tp (total) (s)": 10.2062 + }, + { + "Date+Time": "2020-09-26T00:00:00Z", + "Hs (total) (m)": 1.1132, + "Tp (total) (s)": 9.3768 + }, + { + "Date+Time": "2020-09-27T00:00:00Z", + "Hs (total) (m)": 1.4077, + "Tp (total) (s)": 10.4762 + }, + { + "Date+Time": "2020-09-28T00:00:00Z", + "Hs (total) (m)": 1.944, + "Tp (total) (s)": 11.858 + }, + { + "Date+Time": "2020-09-29T00:00:00Z", + "Hs (total) (m)": 1.41, + "Tp (total) (s)": 10.0925 + }, + { + "Date+Time": "2020-09-30T00:00:00Z", + "Hs (total) (m)": 2.707, + "Tp (total) (s)": 8.6497 + }, + { + "Date+Time": "2020-10-01T00:00:00Z", + "Hs (total) (m)": 1.5358, + "Tp (total) (s)": 9.4028 + }, + { + "Date+Time": "2020-10-02T00:00:00Z", + "Hs (total) (m)": 1.4763, + "Tp (total) (s)": 10.509 + }, + { + "Date+Time": "2020-10-03T00:00:00Z", + "Hs (total) (m)": 1.104, + "Tp (total) (s)": 9.4546 + }, + { + "Date+Time": "2020-10-04T00:00:00Z", + "Hs (total) (m)": 1.2131, + "Tp (total) (s)": 8.639 + }, + { + "Date+Time": "2020-10-05T00:00:00Z", + "Hs (total) (m)": 2.0653, + "Tp (total) (s)": 10.0307 + }, + { + "Date+Time": "2020-10-06T00:00:00Z", + "Hs (total) (m)": 2.1615, + "Tp (total) (s)": 8.2759 + }, + { + "Date+Time": "2020-10-07T00:00:00Z", + "Hs (total) (m)": 2.0409, + "Tp (total) (s)": 11.256 + }, + { + "Date+Time": "2020-10-08T00:00:00Z", + "Hs (total) (m)": 1.1971, + "Tp (total) (s)": 9.2341 + }, + { + "Date+Time": "2020-10-09T00:00:00Z", + "Hs (total) (m)": 2.2065, + "Tp (total) (s)": 8.6673 + }, + { + "Date+Time": "2020-10-10T00:00:00Z", + "Hs (total) (m)": 1.6732, + "Tp (total) (s)": 8.7138 + }, + { + "Date+Time": "2020-10-11T00:00:00Z", + "Hs (total) (m)": 1.0964, + "Tp (total) (s)": 8.6085 + }, + { + "Date+Time": "2020-10-12T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 8.549 + }, + { + "Date+Time": "2020-10-13T00:00:00Z", + "Hs (total) (m)": 1.6129, + "Tp (total) (s)": 7.7143 + }, + { + "Date+Time": "2020-10-14T00:00:00Z", + "Hs (total) (m)": 1.0735, + "Tp (total) (s)": 10.4915 + }, + { + "Date+Time": "2020-10-15T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 10.1886 + }, + { + "Date+Time": "2020-10-16T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 12.8056 + }, + { + "Date+Time": "2020-10-17T00:00:00Z", + "Hs (total) (m)": 1.017, + "Tp (total) (s)": 11.8374 + }, + { + "Date+Time": "2020-10-18T00:00:00Z", + "Hs (total) (m)": 0.8179, + "Tp (total) (s)": 10.4152 + }, + { + "Date+Time": "2020-10-19T00:00:00Z", + "Hs (total) (m)": 0.7767, + "Tp (total) (s)": 3.8682 + }, + { + "Date+Time": "2020-10-20T00:00:00Z", + "Hs (total) (m)": 0.9415, + "Tp (total) (s)": 5.3949 + }, + { + "Date+Time": "2020-10-21T00:00:00Z", + "Hs (total) (m)": 1.3932, + "Tp (total) (s)": 12.392 + }, + { + "Date+Time": "2020-10-22T00:00:00Z", + "Hs (total) (m)": 1.117, + "Tp (total) (s)": 10.1215 + }, + { + "Date+Time": "2020-10-23T00:00:00Z", + "Hs (total) (m)": 2.0539, + "Tp (total) (s)": 7.1177 + }, + { + "Date+Time": "2020-10-24T00:00:00Z", + "Hs (total) (m)": 3.8789, + "Tp (total) (s)": 12.7171 + }, + { + "Date+Time": "2020-10-25T00:00:00Z", + "Hs (total) (m)": 4.5297, + "Tp (total) (s)": 12.949 + }, + { + "Date+Time": "2020-10-26T00:00:00Z", + "Hs (total) (m)": 4.0216, + "Tp (total) (s)": 12.904 + }, + { + "Date+Time": "2020-10-27T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 11.7 + }, + { + "Date+Time": "2020-10-28T00:00:00Z", + "Hs (total) (m)": 6.1278, + "Tp (total) (s)": 16.8068 + }, + { + "Date+Time": "2020-10-29T00:00:00Z", + "Hs (total) (m)": 5.0107, + "Tp (total) (s)": 16.7404 + }, + { + "Date+Time": "2020-10-30T00:00:00Z", + "Hs (total) (m)": 4.0178, + "Tp (total) (s)": 12.7239 + }, + { + "Date+Time": "2020-10-31T00:00:00Z", + "Hs (total) (m)": 2.707, + "Tp (total) (s)": 12.0769 + }, + { + "Date+Time": "2020-11-01T00:00:00Z", + "Hs (total) (m)": 3.5928, + "Tp (total) (s)": 11.7443 + }, + { + "Date+Time": "2020-11-02T00:00:00Z", + "Hs (total) (m)": 3.5615, + "Tp (total) (s)": 13.6204 + }, + { + "Date+Time": "2020-11-03T00:00:00Z", + "Hs (total) (m)": 3.8293, + "Tp (total) (s)": 11.6527 + }, + { + "Date+Time": "2020-11-04T00:00:00Z", + "Hs (total) (m)": 2.4964, + "Tp (total) (s)": 13.1672 + }, + { + "Date+Time": "2020-11-05T00:00:00Z", + "Hs (total) (m)": 1.5381, + "Tp (total) (s)": 12.3684 + }, + { + "Date+Time": "2020-11-06T00:00:00Z", + "Hs (total) (m)": 1.4084, + "Tp (total) (s)": 13.2527 + }, + { + "Date+Time": "2020-11-07T00:00:00Z", + "Hs (total) (m)": 1.6678, + "Tp (total) (s)": 13.9454 + }, + { + "Date+Time": "2020-11-08T00:00:00Z", + "Hs (total) (m)": 1.5969, + "Tp (total) (s)": 12.7674 + }, + { + "Date+Time": "2020-11-09T00:00:00Z", + "Hs (total) (m)": 1.6526, + "Tp (total) (s)": 11.7695 + }, + { + "Date+Time": "2020-11-10T00:00:00Z", + "Hs (total) (m)": 1.1452, + "Tp (total) (s)": 10.7692 + }, + { + "Date+Time": "2020-11-11T00:00:00Z", + "Hs (total) (m)": 2.7757, + "Tp (total) (s)": 14.2972 + }, + { + "Date+Time": "2020-11-12T00:00:00Z", + "Hs (total) (m)": 2.3316, + "Tp (total) (s)": 12.8689 + }, + { + "Date+Time": "2020-11-13T00:00:00Z", + "Hs (total) (m)": 3.8759, + "Tp (total) (s)": 12.7575 + }, + { + "Date+Time": "2020-11-14T00:00:00Z", + "Hs (total) (m)": 3.2014, + "Tp (total) (s)": 13.6517 + }, + { + "Date+Time": "2020-11-15T00:00:00Z", + "Hs (total) (m)": 2.8665, + "Tp (total) (s)": 10.3122 + }, + { + "Date+Time": "2020-11-16T00:00:00Z", + "Hs (total) (m)": 3.4646, + "Tp (total) (s)": 12.6286 + }, + { + "Date+Time": "2020-11-17T00:00:00Z", + "Hs (total) (m)": 3.518, + "Tp (total) (s)": 10.0566 + }, + { + "Date+Time": "2020-11-18T00:00:00Z", + "Hs (total) (m)": 3.2601, + "Tp (total) (s)": 10.4846 + }, + { + "Date+Time": "2020-11-19T00:00:00Z", + "Hs (total) (m)": 3.0824, + "Tp (total) (s)": 11.0561 + }, + { + "Date+Time": "2020-11-20T00:00:00Z", + "Hs (total) (m)": 2.4537, + "Tp (total) (s)": 7.9722 + }, + { + "Date+Time": "2020-11-21T00:00:00Z", + "Hs (total) (m)": 3.7004, + "Tp (total) (s)": 12.5637 + }, + { + "Date+Time": "2020-11-22T00:00:00Z", + "Hs (total) (m)": 2.6154, + "Tp (total) (s)": 12.7522 + }, + { + "Date+Time": "2020-11-23T00:00:00Z", + "Hs (total) (m)": 2.2019, + "Tp (total) (s)": 11.5436 + }, + { + "Date+Time": "2020-11-24T00:00:00Z", + "Hs (total) (m)": 2.842, + "Tp (total) (s)": 10.7128 + }, + { + "Date+Time": "2020-11-25T00:00:00Z", + "Hs (total) (m)": 2.5178, + "Tp (total) (s)": 12.6148 + }, + { + "Date+Time": "2020-11-26T00:00:00Z", + "Hs (total) (m)": 1.9173, + "Tp (total) (s)": 12.9299 + }, + { + "Date+Time": "2020-11-27T00:00:00Z", + "Hs (total) (m)": 1.3565, + "Tp (total) (s)": 9.6553 + }, + { + "Date+Time": "2020-11-28T00:00:00Z", + "Hs (total) (m)": 2.3927, + "Tp (total) (s)": 15.5698 + }, + { + "Date+Time": "2020-11-29T00:00:00Z", + "Hs (total) (m)": 1.616, + "Tp (total) (s)": 13.5647 + }, + { + "Date+Time": "2020-11-30T00:00:00Z", + "Hs (total) (m)": 1.1765, + "Tp (total) (s)": 11.7298 + }, + { + "Date+Time": "2020-12-01T00:00:00Z", + "Hs (total) (m)": 1.2154, + "Tp (total) (s)": 10.2153 + }, + { + "Date+Time": "2020-12-02T00:00:00Z", + "Hs (total) (m)": 1.5748, + "Tp (total) (s)": 10.1054 + }, + { + "Date+Time": "2020-12-03T00:00:00Z", + "Hs (total) (m)": 3.5226, + "Tp (total) (s)": 14.9144 + }, + { + "Date+Time": "2020-12-04T00:00:00Z", + "Hs (total) (m)": 2.6109, + "Tp (total) (s)": 13.7196 + }, + { + "Date+Time": "2020-12-05T00:00:00Z", + "Hs (total) (m)": 2.3492, + "Tp (total) (s)": 13.757 + }, + { + "Date+Time": "2020-12-06T00:00:00Z", + "Hs (total) (m)": 1.3405, + "Tp (total) (s)": 13.2015 + }, + { + "Date+Time": "2020-12-07T00:00:00Z", + "Hs (total) (m)": 0.56, + "Tp (total) (s)": 10.773 + }, + { + "Date+Time": "2020-12-08T00:00:00Z", + "Hs (total) (m)": 1.3367, + "Tp (total) (s)": 10.0604 + }, + { + "Date+Time": "2020-12-09T00:00:00Z", + "Hs (total) (m)": 1.0071, + "Tp (total) (s)": 9.3684 + }, + { + "Date+Time": "2020-12-10T00:00:00Z", + "Hs (total) (m)": 1.6724, + "Tp (total) (s)": 7.9463 + }, + { + "Date+Time": "2020-12-11T00:00:00Z", + "Hs (total) (m)": 2.6833, + "Tp (total) (s)": 9.8338 + }, + { + "Date+Time": "2020-12-12T00:00:00Z", + "Hs (total) (m)": 3.8446, + "Tp (total) (s)": 16.0054 + }, + { + "Date+Time": "2020-12-13T00:00:00Z", + "Hs (total) (m)": 2.7871, + "Tp (total) (s)": 12.9681 + }, + { + "Date+Time": "2020-12-14T00:00:00Z", + "Hs (total) (m)": 3.4913, + "Tp (total) (s)": 12.3684 + }, + { + "Date+Time": "2020-12-15T00:00:00Z", + "Hs (total) (m)": 3.4494, + "Tp (total) (s)": 12.5851 + }, + { + "Date+Time": "2020-12-16T00:00:00Z", + "Hs (total) (m)": 2.7757, + "Tp (total) (s)": 13.2405 + }, + { + "Date+Time": "2020-12-17T00:00:00Z", + "Hs (total) (m)": 2.401, + "Tp (total) (s)": 10.7189 + }, + { + "Date+Time": "2020-12-18T00:00:00Z", + "Hs (total) (m)": 2.2614, + "Tp (total) (s)": 8.6901 + }, + { + "Date+Time": "2020-12-19T00:00:00Z", + "Hs (total) (m)": 3.9583, + "Tp (total) (s)": 16.4647 + }, + { + "Date+Time": "2020-12-20T00:00:00Z", + "Hs (total) (m)": 3.6065, + "Tp (total) (s)": 14.1804 + }, + { + "Date+Time": "2020-12-21T00:00:00Z", + "Hs (total) (m)": 2.4575, + "Tp (total) (s)": 11.7351 + }, + { + "Date+Time": "2020-12-22T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 9.5828 + }, + { + "Date+Time": "2020-12-23T00:00:00Z", + "Hs (total) (m)": 1.5496, + "Tp (total) (s)": 10.361 + }, + { + "Date+Time": "2020-12-24T00:00:00Z", + "Hs (total) (m)": 1.3291, + "Tp (total) (s)": 8.4758 + }, + { + "Date+Time": "2020-12-25T00:00:00Z", + "Hs (total) (m)": 0.7477, + "Tp (total) (s)": 8.5902 + }, + { + "Date+Time": "2020-12-26T00:00:00Z", + "Hs (total) (m)": 2.5399, + "Tp (total) (s)": 14.1568 + }, + { + "Date+Time": "2020-12-27T00:00:00Z", + "Hs (total) (m)": 5.6194, + "Tp (total) (s)": 15.0195 + }, + { + "Date+Time": "2020-12-28T00:00:00Z", + "Hs (total) (m)": 4.2261, + "Tp (total) (s)": 14.993 + }, + { + "Date+Time": "2020-12-29T00:00:00Z", + "Hs (total) (m)": 2.5956, + "Tp (total) (s)": 13.8325 + }, + { + "Date+Time": "2020-12-30T00:00:00Z", + "Hs (total) (m)": 1.1788, + "Tp (total) (s)": 11.9915 + }, + { + "Date+Time": "2020-12-31T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 8.6543 + }, + { + "Date+Time": "2021-01-01T00:00:00Z", + "Hs (total) (m)": 1.1383, + "Tp (total) (s)": 8.8 + }, + { + "Date+Time": "2021-01-02T00:00:00Z", + "Hs (total) (m)": 0.6554, + "Tp (total) (s)": 8.6779 + }, + { + "Date+Time": "2021-01-03T00:00:00Z", + "Hs (total) (m)": 0.5524, + "Tp (total) (s)": 6.4676 + }, + { + "Date+Time": "2021-01-04T00:00:00Z", + "Hs (total) (m)": 0.486, + "Tp (total) (s)": 9.5027 + }, + { + "Date+Time": "2021-01-05T00:00:00Z", + "Hs (total) (m)": 0.5493, + "Tp (total) (s)": 2.5529 + }, + { + "Date+Time": "2021-01-06T00:00:00Z", + "Hs (total) (m)": 0.8217, + "Tp (total) (s)": 11.3857 + }, + { + "Date+Time": "2021-01-07T00:00:00Z", + "Hs (total) (m)": 0.7317, + "Tp (total) (s)": 10.1268 + }, + { + "Date+Time": "2021-01-08T00:00:00Z", + "Hs (total) (m)": 0.9209, + "Tp (total) (s)": 8.6169 + }, + { + "Date+Time": "2021-01-09T00:00:00Z", + "Hs (total) (m)": 0.544, + "Tp (total) (s)": 8.8969 + }, + { + "Date+Time": "2021-01-10T00:00:00Z", + "Hs (total) (m)": 0.9461, + "Tp (total) (s)": 11.3956 + }, + { + "Date+Time": "2021-01-11T00:00:00Z", + "Hs (total) (m)": 2.0959, + "Tp (total) (s)": 15.6957 + }, + { + "Date+Time": "2021-01-12T00:00:00Z", + "Hs (total) (m)": 2.9168, + "Tp (total) (s)": 9.5225 + }, + { + "Date+Time": "2021-01-13T00:00:00Z", + "Hs (total) (m)": 1.925, + "Tp (total) (s)": 9.9361 + }, + { + "Date+Time": "2021-01-14T00:00:00Z", + "Hs (total) (m)": 2.3522, + "Tp (total) (s)": 11.2255 + }, + { + "Date+Time": "2021-01-15T00:00:00Z", + "Hs (total) (m)": 1.9013, + "Tp (total) (s)": 12.6988 + }, + { + "Date+Time": "2021-01-16T00:00:00Z", + "Hs (total) (m)": 3.4753, + "Tp (total) (s)": 12.8231 + }, + { + "Date+Time": "2021-01-17T00:00:00Z", + "Hs (total) (m)": 2.4064, + "Tp (total) (s)": 11.4414 + }, + { + "Date+Time": "2021-01-18T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 10.448 + }, + { + "Date+Time": "2021-01-19T00:00:00Z", + "Hs (total) (m)": 1.3733, + "Tp (total) (s)": 10.1215 + }, + { + "Date+Time": "2021-01-20T00:00:00Z", + "Hs (total) (m)": 2.2645, + "Tp (total) (s)": 9.8079 + }, + { + "Date+Time": "2021-01-21T00:00:00Z", + "Hs (total) (m)": 1.8891, + "Tp (total) (s)": 10.831 + }, + { + "Date+Time": "2021-01-22T00:00:00Z", + "Hs (total) (m)": 1.2352, + "Tp (total) (s)": 11.5635 + }, + { + "Date+Time": "2021-01-23T00:00:00Z", + "Hs (total) (m)": 1.6037, + "Tp (total) (s)": 12.5042 + }, + { + "Date+Time": "2021-01-24T00:00:00Z", + "Hs (total) (m)": 1.8097, + "Tp (total) (s)": 11.4666 + }, + { + "Date+Time": "2021-01-25T00:00:00Z", + "Hs (total) (m)": 1.8639, + "Tp (total) (s)": 15.3256 + }, + { + "Date+Time": "2021-01-26T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 12.6965 + }, + { + "Date+Time": "2021-01-27T00:00:00Z", + "Hs (total) (m)": 1.8021, + "Tp (total) (s)": 9.1968 + }, + { + "Date+Time": "2021-01-28T00:00:00Z", + "Hs (total) (m)": 2.6887, + "Tp (total) (s)": 14.9113 + }, + { + "Date+Time": "2021-01-29T00:00:00Z", + "Hs (total) (m)": 3.3708, + "Tp (total) (s)": 12.6255 + }, + { + "Date+Time": "2021-01-30T00:00:00Z", + "Hs (total) (m)": 1.9974, + "Tp (total) (s)": 11.1881 + }, + { + "Date+Time": "2021-01-31T00:00:00Z", + "Hs (total) (m)": 3.9438, + "Tp (total) (s)": 15.5789 + }, + { + "Date+Time": "2021-02-01T00:00:00Z", + "Hs (total) (m)": 2.4026, + "Tp (total) (s)": 13.0932 + }, + { + "Date+Time": "2021-02-02T00:00:00Z", + "Hs (total) (m)": 3.8743, + "Tp (total) (s)": 17.1384 + }, + { + "Date+Time": "2021-02-03T00:00:00Z", + "Hs (total) (m)": 3.3021, + "Tp (total) (s)": 13.4785 + }, + { + "Date+Time": "2021-02-04T00:00:00Z", + "Hs (total) (m)": 3.1816, + "Tp (total) (s)": 12.0472 + }, + { + "Date+Time": "2021-02-05T00:00:00Z", + "Hs (total) (m)": 1.8731, + "Tp (total) (s)": 13.0322 + }, + { + "Date+Time": "2021-02-06T00:00:00Z", + "Hs (total) (m)": 1.191, + "Tp (total) (s)": 10.9104 + }, + { + "Date+Time": "2021-02-07T00:00:00Z", + "Hs (total) (m)": 0.6279, + "Tp (total) (s)": 10.3618 + }, + { + "Date+Time": "2021-02-08T00:00:00Z", + "Hs (total) (m)": 1.1895, + "Tp (total) (s)": 3.8095 + }, + { + "Date+Time": "2021-02-09T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 4.7212 + }, + { + "Date+Time": "2021-02-10T00:00:00Z", + "Hs (total) (m)": 1.4328, + "Tp (total) (s)": 14.2186 + }, + { + "Date+Time": "2021-02-11T00:00:00Z", + "Hs (total) (m)": 1.5793, + "Tp (total) (s)": 13.4571 + }, + { + "Date+Time": "2021-02-12T00:00:00Z", + "Hs (total) (m)": 3.5051, + "Tp (total) (s)": 17.3002 + }, + { + "Date+Time": "2021-02-13T00:00:00Z", + "Hs (total) (m)": 3.3532, + "Tp (total) (s)": 15.981 + }, + { + "Date+Time": "2021-02-14T00:00:00Z", + "Hs (total) (m)": 4.3962, + "Tp (total) (s)": 14.5497 + }, + { + "Date+Time": "2021-02-15T00:00:00Z", + "Hs (total) (m)": 4.2276, + "Tp (total) (s)": 13.6273 + }, + { + "Date+Time": "2021-02-16T00:00:00Z", + "Hs (total) (m)": 3.8293, + "Tp (total) (s)": 11.7641 + }, + { + "Date+Time": "2021-02-17T00:00:00Z", + "Hs (total) (m)": 2.9054, + "Tp (total) (s)": 11.713 + }, + { + "Date+Time": "2021-02-18T00:00:00Z", + "Hs (total) (m)": 3.1411, + "Tp (total) (s)": 11.3285 + }, + { + "Date+Time": "2021-02-19T00:00:00Z", + "Hs (total) (m)": 2.3888, + "Tp (total) (s)": 10.1344 + }, + { + "Date+Time": "2021-02-20T00:00:00Z", + "Hs (total) (m)": 3.9338, + "Tp (total) (s)": 12.4233 + }, + { + "Date+Time": "2021-02-21T00:00:00Z", + "Hs (total) (m)": 3.8087, + "Tp (total) (s)": 12.9109 + }, + { + "Date+Time": "2021-02-22T00:00:00Z", + "Hs (total) (m)": 3.6241, + "Tp (total) (s)": 13.5395 + }, + { + "Date+Time": "2021-02-23T00:00:00Z", + "Hs (total) (m)": 2.8817, + "Tp (total) (s)": 10.6914 + }, + { + "Date+Time": "2021-02-24T00:00:00Z", + "Hs (total) (m)": 5.3291, + "Tp (total) (s)": 16.7834 + }, + { + "Date+Time": "2021-02-25T00:00:00Z", + "Hs (total) (m)": 3.7767, + "Tp (total) (s)": 14.0233 + }, + { + "Date+Time": "2021-02-26T00:00:00Z", + "Hs (total) (m)": 2.0173, + "Tp (total) (s)": 11.4139 + }, + { + "Date+Time": "2021-02-27T00:00:00Z", + "Hs (total) (m)": 3.0862, + "Tp (total) (s)": 14.3971 + }, + { + "Date+Time": "2021-02-28T00:00:00Z", + "Hs (total) (m)": 2.3652, + "Tp (total) (s)": 13.7097 + }, + { + "Date+Time": "2021-03-01T00:00:00Z", + "Hs (total) (m)": 1.8532, + "Tp (total) (s)": 13.6059 + }, + { + "Date+Time": "2021-03-02T00:00:00Z", + "Hs (total) (m)": 1.4389, + "Tp (total) (s)": 12.4828 + }, + { + "Date+Time": "2021-03-03T00:00:00Z", + "Hs (total) (m)": 1.2421, + "Tp (total) (s)": 11.7756 + }, + { + "Date+Time": "2021-03-04T00:00:00Z", + "Hs (total) (m)": 1.0132, + "Tp (total) (s)": 10.1741 + }, + { + "Date+Time": "2021-03-05T00:00:00Z", + "Hs (total) (m)": 0.8248, + "Tp (total) (s)": 10.2283 + }, + { + "Date+Time": "2021-03-06T00:00:00Z", + "Hs (total) (m)": 1.1345, + "Tp (total) (s)": 10.2107 + }, + { + "Date+Time": "2021-03-07T00:00:00Z", + "Hs (total) (m)": 1.9372, + "Tp (total) (s)": 15.4614 + }, + { + "Date+Time": "2021-03-08T00:00:00Z", + "Hs (total) (m)": 1.7281, + "Tp (total) (s)": 12.7758 + }, + { + "Date+Time": "2021-03-09T00:00:00Z", + "Hs (total) (m)": 1.7853, + "Tp (total) (s)": 11.6146 + }, + { + "Date+Time": "2021-03-10T00:00:00Z", + "Hs (total) (m)": 3.164, + "Tp (total) (s)": 9.3928 + }, + { + "Date+Time": "2021-03-11T00:00:00Z", + "Hs (total) (m)": 5.2163, + "Tp (total) (s)": 11.7268 + }, + { + "Date+Time": "2021-03-12T00:00:00Z", + "Hs (total) (m)": 4.487, + "Tp (total) (s)": 14.7404 + }, + { + "Date+Time": "2021-03-13T00:00:00Z", + "Hs (total) (m)": 4.0948, + "Tp (total) (s)": 11.7229 + }, + { + "Date+Time": "2021-03-14T00:00:00Z", + "Hs (total) (m)": 3.354, + "Tp (total) (s)": 12.5187 + }, + { + "Date+Time": "2021-03-15T00:00:00Z", + "Hs (total) (m)": 1.8914, + "Tp (total) (s)": 11.0195 + }, + { + "Date+Time": "2021-03-16T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 10.2489 + }, + { + "Date+Time": "2021-03-17T00:00:00Z", + "Hs (total) (m)": 1.4351, + "Tp (total) (s)": 12.5568 + }, + { + "Date+Time": "2021-03-18T00:00:00Z", + "Hs (total) (m)": 1.2993, + "Tp (total) (s)": 11.9373 + }, + { + "Date+Time": "2021-03-19T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 13.8974 + }, + { + "Date+Time": "2021-03-20T00:00:00Z", + "Hs (total) (m)": 1.5, + "Tp (total) (s)": 13.4342 + }, + { + "Date+Time": "2021-03-21T00:00:00Z", + "Hs (total) (m)": 1.1193, + "Tp (total) (s)": 11.7565 + }, + { + "Date+Time": "2021-03-22T00:00:00Z", + "Hs (total) (m)": 0.943, + "Tp (total) (s)": 9.4707 + }, + { + "Date+Time": "2021-03-23T00:00:00Z", + "Hs (total) (m)": 1.6007, + "Tp (total) (s)": 14.3239 + }, + { + "Date+Time": "2021-03-24T00:00:00Z", + "Hs (total) (m)": 2.8161, + "Tp (total) (s)": 10.2481 + }, + { + "Date+Time": "2021-03-25T00:00:00Z", + "Hs (total) (m)": 2.3057, + "Tp (total) (s)": 10.4511 + }, + { + "Date+Time": "2021-03-26T00:00:00Z", + "Hs (total) (m)": 2.604, + "Tp (total) (s)": 9.5767 + }, + { + "Date+Time": "2021-03-27T00:00:00Z", + "Hs (total) (m)": 4.2627, + "Tp (total) (s)": 14.3086 + }, + { + "Date+Time": "2021-03-28T00:00:00Z", + "Hs (total) (m)": 4.1795, + "Tp (total) (s)": 11.478 + }, + { + "Date+Time": "2021-03-29T00:00:00Z", + "Hs (total) (m)": 4.4511, + "Tp (total) (s)": 12.6255 + }, + { + "Date+Time": "2021-03-30T00:00:00Z", + "Hs (total) (m)": 3.4547, + "Tp (total) (s)": 14.0843 + }, + { + "Date+Time": "2021-03-31T00:00:00Z", + "Hs (total) (m)": 2.0768, + "Tp (total) (s)": 11.4154 + }, + { + "Date+Time": "2021-04-01T00:00:00Z", + "Hs (total) (m)": 1.2169, + "Tp (total) (s)": 10.5258 + }, + { + "Date+Time": "2021-04-02T00:00:00Z", + "Hs (total) (m)": 0.7599, + "Tp (total) (s)": 14.0034 + }, + { + "Date+Time": "2021-04-03T00:00:00Z", + "Hs (total) (m)": 0.808, + "Tp (total) (s)": 12.6217 + }, + { + "Date+Time": "2021-04-04T00:00:00Z", + "Hs (total) (m)": 0.7691, + "Tp (total) (s)": 11.2804 + }, + { + "Date+Time": "2021-04-05T00:00:00Z", + "Hs (total) (m)": 1.0895, + "Tp (total) (s)": 6.2815 + }, + { + "Date+Time": "2021-04-06T00:00:00Z", + "Hs (total) (m)": 0.9613, + "Tp (total) (s)": 12.5065 + }, + { + "Date+Time": "2021-04-07T00:00:00Z", + "Hs (total) (m)": 1.3657, + "Tp (total) (s)": 15.6301 + }, + { + "Date+Time": "2021-04-08T00:00:00Z", + "Hs (total) (m)": 1.22, + "Tp (total) (s)": 14.5024 + }, + { + "Date+Time": "2021-04-09T00:00:00Z", + "Hs (total) (m)": 1.3779, + "Tp (total) (s)": 9.3532 + }, + { + "Date+Time": "2021-04-10T00:00:00Z", + "Hs (total) (m)": 0.7897, + "Tp (total) (s)": 11.4933 + }, + { + "Date+Time": "2021-04-11T00:00:00Z", + "Hs (total) (m)": 0.8805, + "Tp (total) (s)": 12.5752 + }, + { + "Date+Time": "2021-04-12T00:00:00Z", + "Hs (total) (m)": 0.9636, + "Tp (total) (s)": 11.3964 + }, + { + "Date+Time": "2021-04-13T00:00:00Z", + "Hs (total) (m)": 0.5951, + "Tp (total) (s)": 9.5279 + }, + { + "Date+Time": "2021-04-14T00:00:00Z", + "Hs (total) (m)": 0.6127, + "Tp (total) (s)": 8.723 + }, + { + "Date+Time": "2021-04-15T00:00:00Z", + "Hs (total) (m)": 0.7653, + "Tp (total) (s)": 8.6848 + }, + { + "Date+Time": "2021-04-16T00:00:00Z", + "Hs (total) (m)": 1.2223, + "Tp (total) (s)": 6.3547 + }, + { + "Date+Time": "2021-04-17T00:00:00Z", + "Hs (total) (m)": 1.751, + "Tp (total) (s)": 8.9831 + }, + { + "Date+Time": "2021-04-18T00:00:00Z", + "Hs (total) (m)": 2.6605, + "Tp (total) (s)": 14.9274 + }, + { + "Date+Time": "2021-04-19T00:00:00Z", + "Hs (total) (m)": 2.1828, + "Tp (total) (s)": 14.2285 + }, + { + "Date+Time": "2021-04-20T00:00:00Z", + "Hs (total) (m)": 1.7441, + "Tp (total) (s)": 12.7407 + }, + { + "Date+Time": "2021-04-21T00:00:00Z", + "Hs (total) (m)": 0.9033, + "Tp (total) (s)": 10.7898 + }, + { + "Date+Time": "2021-04-22T00:00:00Z", + "Hs (total) (m)": 0.6981, + "Tp (total) (s)": 9.4661 + }, + { + "Date+Time": "2021-04-23T00:00:00Z", + "Hs (total) (m)": 0.8118, + "Tp (total) (s)": 9.5912 + }, + { + "Date+Time": "2021-04-24T00:00:00Z", + "Hs (total) (m)": 1.0613, + "Tp (total) (s)": 11.9869 + }, + { + "Date+Time": "2021-04-25T00:00:00Z", + "Hs (total) (m)": 1.5023, + "Tp (total) (s)": 11.1881 + }, + { + "Date+Time": "2021-04-26T00:00:00Z", + "Hs (total) (m)": 1.0529, + "Tp (total) (s)": 10.1482 + }, + { + "Date+Time": "2021-04-27T00:00:00Z", + "Hs (total) (m)": 0.8301, + "Tp (total) (s)": 8.6283 + }, + { + "Date+Time": "2021-04-28T00:00:00Z", + "Hs (total) (m)": 0.7866, + "Tp (total) (s)": 8.4063 + }, + { + "Date+Time": "2021-04-29T00:00:00Z", + "Hs (total) (m)": 0.6134, + "Tp (total) (s)": 2.7871 + }, + { + "Date+Time": "2021-04-30T00:00:00Z", + "Hs (total) (m)": 0.4959, + "Tp (total) (s)": 5.9473 + }, + { + "Date+Time": "2021-05-01T00:00:00Z", + "Hs (total) (m)": 0.4639, + "Tp (total) (s)": 12.5057 + }, + { + "Date+Time": "2021-05-02T00:00:00Z", + "Hs (total) (m)": 0.5989, + "Tp (total) (s)": 11.1652 + }, + { + "Date+Time": "2021-05-03T00:00:00Z", + "Hs (total) (m)": 1.1887, + "Tp (total) (s)": 5.0104 + }, + { + "Date+Time": "2021-05-04T00:00:00Z", + "Hs (total) (m)": 2.4842, + "Tp (total) (s)": 10.1184 + }, + { + "Date+Time": "2021-05-05T00:00:00Z", + "Hs (total) (m)": 1.3756, + "Tp (total) (s)": 8.6291 + }, + { + "Date+Time": "2021-05-06T00:00:00Z", + "Hs (total) (m)": 0.9262, + "Tp (total) (s)": 10.6388 + }, + { + "Date+Time": "2021-05-07T00:00:00Z", + "Hs (total) (m)": 1.1917, + "Tp (total) (s)": 12.7911 + }, + { + "Date+Time": "2021-05-08T00:00:00Z", + "Hs (total) (m)": 1.3504, + "Tp (total) (s)": 11.5658 + }, + { + "Date+Time": "2021-05-09T00:00:00Z", + "Hs (total) (m)": 2.7589, + "Tp (total) (s)": 12.3524 + }, + { + "Date+Time": "2021-05-10T00:00:00Z", + "Hs (total) (m)": 2.4705, + "Tp (total) (s)": 11.4505 + }, + { + "Date+Time": "2021-05-11T00:00:00Z", + "Hs (total) (m)": 2.0577, + "Tp (total) (s)": 12.096 + }, + { + "Date+Time": "2021-05-12T00:00:00Z", + "Hs (total) (m)": 1.1132, + "Tp (total) (s)": 11.1469 + }, + { + "Date+Time": "2021-05-13T00:00:00Z", + "Hs (total) (m)": 0.6653, + "Tp (total) (s)": 9.1754 + }, + { + "Date+Time": "2021-05-14T00:00:00Z", + "Hs (total) (m)": 1.1689, + "Tp (total) (s)": 11.4841 + }, + { + "Date+Time": "2021-05-15T00:00:00Z", + "Hs (total) (m)": 1.1399, + "Tp (total) (s)": 10.3786 + }, + { + "Date+Time": "2021-05-16T00:00:00Z", + "Hs (total) (m)": 2.2172, + "Tp (total) (s)": 12.289 + }, + { + "Date+Time": "2021-05-17T00:00:00Z", + "Hs (total) (m)": 1.7342, + "Tp (total) (s)": 10.7334 + }, + { + "Date+Time": "2021-05-18T00:00:00Z", + "Hs (total) (m)": 1.1406, + "Tp (total) (s)": 9.4432 + }, + { + "Date+Time": "2021-05-19T00:00:00Z", + "Hs (total) (m)": 1.2726, + "Tp (total) (s)": 8.5284 + }, + { + "Date+Time": "2021-05-20T00:00:00Z", + "Hs (total) (m)": 1.0605, + "Tp (total) (s)": 8.314 + }, + { + "Date+Time": "2021-05-21T00:00:00Z", + "Hs (total) (m)": 3.6798, + "Tp (total) (s)": 13.3396 + }, + { + "Date+Time": "2021-05-22T00:00:00Z", + "Hs (total) (m)": 1.175, + "Tp (total) (s)": 9.7598 + }, + { + "Date+Time": "2021-05-23T00:00:00Z", + "Hs (total) (m)": 1.5198, + "Tp (total) (s)": 8.6909 + }, + { + "Date+Time": "2021-05-24T00:00:00Z", + "Hs (total) (m)": 2.2546, + "Tp (total) (s)": 11.607 + }, + { + "Date+Time": "2021-05-25T00:00:00Z", + "Hs (total) (m)": 1.9005, + "Tp (total) (s)": 11.3903 + }, + { + "Date+Time": "2021-05-26T00:00:00Z", + "Hs (total) (m)": 1.1917, + "Tp (total) (s)": 8.9518 + }, + { + "Date+Time": "2021-05-27T00:00:00Z", + "Hs (total) (m)": 0.9522, + "Tp (total) (s)": 10.287 + }, + { + "Date+Time": "2021-05-28T00:00:00Z", + "Hs (total) (m)": 1.6106, + "Tp (total) (s)": 10.1642 + }, + { + "Date+Time": "2021-05-29T00:00:00Z", + "Hs (total) (m)": 1.1864, + "Tp (total) (s)": 9.7621 + }, + { + "Date+Time": "2021-05-30T00:00:00Z", + "Hs (total) (m)": 1.5084, + "Tp (total) (s)": 10.7875 + }, + { + "Date+Time": "2021-05-31T00:00:00Z", + "Hs (total) (m)": 1.2291, + "Tp (total) (s)": 10.3252 + }, + { + "Date+Time": "2021-06-01T00:00:00Z", + "Hs (total) (m)": 1.5305, + "Tp (total) (s)": 9.859 + }, + { + "Date+Time": "2021-06-02T00:00:00Z", + "Hs (total) (m)": 1.4016, + "Tp (total) (s)": 10.6708 + }, + { + "Date+Time": "2021-06-03T00:00:00Z", + "Hs (total) (m)": 0.9148, + "Tp (total) (s)": 10.3961 + }, + { + "Date+Time": "2021-06-04T00:00:00Z", + "Hs (total) (m)": 1.5938, + "Tp (total) (s)": 9.1632 + }, + { + "Date+Time": "2021-06-05T00:00:00Z", + "Hs (total) (m)": 1.5046, + "Tp (total) (s)": 10.8493 + }, + { + "Date+Time": "2021-06-06T00:00:00Z", + "Hs (total) (m)": 1.3115, + "Tp (total) (s)": 10.7265 + }, + { + "Date+Time": "2021-06-07T00:00:00Z", + "Hs (total) (m)": 1.2413, + "Tp (total) (s)": 10.4411 + }, + { + "Date+Time": "2021-06-08T00:00:00Z", + "Hs (total) (m)": 1.8883, + "Tp (total) (s)": 9.5569 + }, + { + "Date+Time": "2021-06-09T00:00:00Z", + "Hs (total) (m)": 1.6305, + "Tp (total) (s)": 9.4058 + }, + { + "Date+Time": "2021-06-10T00:00:00Z", + "Hs (total) (m)": 1.5976, + "Tp (total) (s)": 8.5192 + }, + { + "Date+Time": "2021-06-11T00:00:00Z", + "Hs (total) (m)": 2.3194, + "Tp (total) (s)": 9.3089 + }, + { + "Date+Time": "2021-06-12T00:00:00Z", + "Hs (total) (m)": 1.4069, + "Tp (total) (s)": 9.4111 + }, + { + "Date+Time": "2021-06-13T00:00:00Z", + "Hs (total) (m)": 1.2635, + "Tp (total) (s)": 9.0045 + }, + { + "Date+Time": "2021-06-14T00:00:00Z", + "Hs (total) (m)": 1.5076, + "Tp (total) (s)": 12.9337 + }, + { + "Date+Time": "2021-06-15T00:00:00Z", + "Hs (total) (m)": 1.5671, + "Tp (total) (s)": 11.375 + }, + { + "Date+Time": "2021-06-16T00:00:00Z", + "Hs (total) (m)": 2.0974, + "Tp (total) (s)": 16.7676 + }, + { + "Date+Time": "2021-06-17T00:00:00Z", + "Hs (total) (m)": 2.501, + "Tp (total) (s)": 13.7509 + }, + { + "Date+Time": "2021-06-18T00:00:00Z", + "Hs (total) (m)": 1.4306, + "Tp (total) (s)": 10.5274 + }, + { + "Date+Time": "2021-06-19T00:00:00Z", + "Hs (total) (m)": 0.8126, + "Tp (total) (s)": 8.5459 + }, + { + "Date+Time": "2021-06-20T00:00:00Z", + "Hs (total) (m)": 1.3268, + "Tp (total) (s)": 9.4501 + }, + { + "Date+Time": "2021-06-21T00:00:00Z", + "Hs (total) (m)": 0.9117, + "Tp (total) (s)": 3.5211 + }, + { + "Date+Time": "2021-06-22T00:00:00Z", + "Hs (total) (m)": 0.7218, + "Tp (total) (s)": 7.5358 + }, + { + "Date+Time": "2021-06-23T00:00:00Z", + "Hs (total) (m)": 1.0514, + "Tp (total) (s)": 8.2705 + }, + { + "Date+Time": "2021-06-24T00:00:00Z", + "Hs (total) (m)": 0.7775, + "Tp (total) (s)": 7.9127 + }, + { + "Date+Time": "2021-06-25T00:00:00Z", + "Hs (total) (m)": 0.9804, + "Tp (total) (s)": 6.473 + }, + { + "Date+Time": "2021-06-26T00:00:00Z", + "Hs (total) (m)": 0.5615, + "Tp (total) (s)": 2.929 + }, + { + "Date+Time": "2021-06-27T00:00:00Z", + "Hs (total) (m)": 0.5501, + "Tp (total) (s)": 2.7757 + }, + { + "Date+Time": "2021-06-28T00:00:00Z", + "Hs (total) (m)": 0.5783, + "Tp (total) (s)": 8.2751 + }, + { + "Date+Time": "2021-06-29T00:00:00Z", + "Hs (total) (m)": 0.7492, + "Tp (total) (s)": 5.1729 + }, + { + "Date+Time": "2021-06-30T00:00:00Z", + "Hs (total) (m)": 0.6516, + "Tp (total) (s)": 7.9814 + }, + { + "Date+Time": "2021-07-01T00:00:00Z", + "Hs (total) (m)": 0.483, + "Tp (total) (s)": 7.635 + }, + { + "Date+Time": "2021-07-02T00:00:00Z", + "Hs (total) (m)": 0.4738, + "Tp (total) (s)": 7.5983 + }, + { + "Date+Time": "2021-07-03T00:00:00Z", + "Hs (total) (m)": 0.6165, + "Tp (total) (s)": 10.2016 + }, + { + "Date+Time": "2021-07-04T00:00:00Z", + "Hs (total) (m)": 0.8683, + "Tp (total) (s)": 9.3814 + }, + { + "Date+Time": "2021-07-05T00:00:00Z", + "Hs (total) (m)": 0.9239, + "Tp (total) (s)": 8.475 + }, + { + "Date+Time": "2021-07-06T00:00:00Z", + "Hs (total) (m)": 1.0926, + "Tp (total) (s)": 8.1515 + }, + { + "Date+Time": "2021-07-07T00:00:00Z", + "Hs (total) (m)": 1.6381, + "Tp (total) (s)": 9.9193 + }, + { + "Date+Time": "2021-07-08T00:00:00Z", + "Hs (total) (m)": 1.165, + "Tp (total) (s)": 7.1947 + }, + { + "Date+Time": "2021-07-09T00:00:00Z", + "Hs (total) (m)": 0.7523, + "Tp (total) (s)": 7.532 + }, + { + "Date+Time": "2021-07-10T00:00:00Z", + "Hs (total) (m)": 0.7462, + "Tp (total) (s)": 7.712 + }, + { + "Date+Time": "2021-07-11T00:00:00Z", + "Hs (total) (m)": 0.9125, + "Tp (total) (s)": 7.9096 + }, + { + "Date+Time": "2021-07-12T00:00:00Z", + "Hs (total) (m)": 1.0895, + "Tp (total) (s)": 9.3432 + }, + { + "Date+Time": "2021-07-13T00:00:00Z", + "Hs (total) (m)": 1.4763, + "Tp (total) (s)": 11.9762 + }, + { + "Date+Time": "2021-07-14T00:00:00Z", + "Hs (total) (m)": 1.0193, + "Tp (total) (s)": 9.7613 + }, + { + "Date+Time": "2021-07-15T00:00:00Z", + "Hs (total) (m)": 0.9125, + "Tp (total) (s)": 8.5353 + }, + { + "Date+Time": "2021-07-16T00:00:00Z", + "Hs (total) (m)": 1.0102, + "Tp (total) (s)": 8.9068 + }, + { + "Date+Time": "2021-07-17T00:00:00Z", + "Hs (total) (m)": 1.0308, + "Tp (total) (s)": 9.3684 + }, + { + "Date+Time": "2021-07-18T00:00:00Z", + "Hs (total) (m)": 0.9682, + "Tp (total) (s)": 8.7512 + }, + { + "Date+Time": "2021-07-19T00:00:00Z", + "Hs (total) (m)": 0.8667, + "Tp (total) (s)": 8.8229 + }, + { + "Date+Time": "2021-07-20T00:00:00Z", + "Hs (total) (m)": 0.6073, + "Tp (total) (s)": 7.9592 + }, + { + "Date+Time": "2021-07-21T00:00:00Z", + "Hs (total) (m)": 0.4006, + "Tp (total) (s)": 7.2436 + }, + { + "Date+Time": "2021-07-22T00:00:00Z", + "Hs (total) (m)": 0.3548, + "Tp (total) (s)": 6.6431 + }, + { + "Date+Time": "2021-07-23T00:00:00Z", + "Hs (total) (m)": 0.4364, + "Tp (total) (s)": 6.5096 + }, + { + "Date+Time": "2021-07-24T00:00:00Z", + "Hs (total) (m)": 0.6905, + "Tp (total) (s)": 7.9379 + }, + { + "Date+Time": "2021-07-25T00:00:00Z", + "Hs (total) (m)": 0.6325, + "Tp (total) (s)": 7.4229 + }, + { + "Date+Time": "2021-07-26T00:00:00Z", + "Hs (total) (m)": 0.6272, + "Tp (total) (s)": 6.901 + }, + { + "Date+Time": "2021-07-27T00:00:00Z", + "Hs (total) (m)": 0.8309, + "Tp (total) (s)": 3.8522 + }, + { + "Date+Time": "2021-07-28T00:00:00Z", + "Hs (total) (m)": 0.9339, + "Tp (total) (s)": 10.0108 + }, + { + "Date+Time": "2021-07-29T00:00:00Z", + "Hs (total) (m)": 1.2757, + "Tp (total) (s)": 9.2868 + }, + { + "Date+Time": "2021-07-30T00:00:00Z", + "Hs (total) (m)": 1.3779, + "Tp (total) (s)": 7.6762 + }, + { + "Date+Time": "2021-07-31T00:00:00Z", + "Hs (total) (m)": 1.0674, + "Tp (total) (s)": 7.7357 + }, + { + "Date+Time": "2021-08-01T00:00:00Z", + "Hs (total) (m)": 0.9644, + "Tp (total) (s)": 6.8484 + }, + { + "Date+Time": "2021-08-02T00:00:00Z", + "Hs (total) (m)": 0.8705, + "Tp (total) (s)": 7.0154 + }, + { + "Date+Time": "2021-08-03T00:00:00Z", + "Hs (total) (m)": 0.4791, + "Tp (total) (s)": 6.4646 + }, + { + "Date+Time": "2021-08-04T00:00:00Z", + "Hs (total) (m)": 0.5211, + "Tp (total) (s)": 7.329 + }, + { + "Date+Time": "2021-08-05T00:00:00Z", + "Hs (total) (m)": 0.84, + "Tp (total) (s)": 7.8585 + }, + { + "Date+Time": "2021-08-06T00:00:00Z", + "Hs (total) (m)": 1.4618, + "Tp (total) (s)": 7.3046 + }, + { + "Date+Time": "2021-08-07T00:00:00Z", + "Hs (total) (m)": 2.3873, + "Tp (total) (s)": 12.3165 + }, + { + "Date+Time": "2021-08-08T00:00:00Z", + "Hs (total) (m)": 2.0165, + "Tp (total) (s)": 7.9096 + }, + { + "Date+Time": "2021-08-09T00:00:00Z", + "Hs (total) (m)": 1.6701, + "Tp (total) (s)": 8.3583 + }, + { + "Date+Time": "2021-08-10T00:00:00Z", + "Hs (total) (m)": 1.0575, + "Tp (total) (s)": 7.6754 + }, + { + "Date+Time": "2021-08-11T00:00:00Z", + "Hs (total) (m)": 0.7897, + "Tp (total) (s)": 6.9117 + }, + { + "Date+Time": "2021-08-12T00:00:00Z", + "Hs (total) (m)": 1.3268, + "Tp (total) (s)": 6.0068 + }, + { + "Date+Time": "2021-08-13T00:00:00Z", + "Hs (total) (m)": 2.8832, + "Tp (total) (s)": 8.578 + }, + { + "Date+Time": "2021-08-14T00:00:00Z", + "Hs (total) (m)": 2.987, + "Tp (total) (s)": 10.7547 + }, + { + "Date+Time": "2021-08-15T00:00:00Z", + "Hs (total) (m)": 0.7515, + "Tp (total) (s)": 7.7601 + }, + { + "Date+Time": "2021-08-16T00:00:00Z", + "Hs (total) (m)": 1.429, + "Tp (total) (s)": 9.5508 + }, + { + "Date+Time": "2021-08-17T00:00:00Z", + "Hs (total) (m)": 1.0407, + "Tp (total) (s)": 6.0862 + }, + { + "Date+Time": "2021-08-18T00:00:00Z", + "Hs (total) (m)": 1.0353, + "Tp (total) (s)": 6.4829 + }, + { + "Date+Time": "2021-08-19T00:00:00Z", + "Hs (total) (m)": 0.9392, + "Tp (total) (s)": 7.8745 + }, + { + "Date+Time": "2021-08-20T00:00:00Z", + "Hs (total) (m)": 0.6737, + "Tp (total) (s)": 8.5093 + }, + { + "Date+Time": "2021-08-21T00:00:00Z", + "Hs (total) (m)": 0.9934, + "Tp (total) (s)": 7.899 + }, + { + "Date+Time": "2021-08-22T00:00:00Z", + "Hs (total) (m)": 0.9346, + "Tp (total) (s)": 6.3952 + }, + { + "Date+Time": "2021-08-23T00:00:00Z", + "Hs (total) (m)": 0.9789, + "Tp (total) (s)": 7.2291 + }, + { + "Date+Time": "2021-08-24T00:00:00Z", + "Hs (total) (m)": 0.7057, + "Tp (total) (s)": 6.5126 + }, + { + "Date+Time": "2021-08-25T00:00:00Z", + "Hs (total) (m)": 0.7996, + "Tp (total) (s)": 9.3699 + }, + { + "Date+Time": "2021-08-26T00:00:00Z", + "Hs (total) (m)": 0.9995, + "Tp (total) (s)": 10.5831 + }, + { + "Date+Time": "2021-08-27T00:00:00Z", + "Hs (total) (m)": 0.8377, + "Tp (total) (s)": 9.6248 + }, + { + "Date+Time": "2021-08-28T00:00:00Z", + "Hs (total) (m)": 0.6928, + "Tp (total) (s)": 8.8931 + }, + { + "Date+Time": "2021-08-29T00:00:00Z", + "Hs (total) (m)": 0.647, + "Tp (total) (s)": 8.3995 + }, + { + "Date+Time": "2021-08-30T00:00:00Z", + "Hs (total) (m)": 0.6584, + "Tp (total) (s)": 10.3679 + }, + { + "Date+Time": "2021-08-31T00:00:00Z", + "Hs (total) (m)": 0.7584, + "Tp (total) (s)": 9.5378 + }, + { + "Date+Time": "2021-09-01T00:00:00Z", + "Hs (total) (m)": 0.6836, + "Tp (total) (s)": 9.3646 + }, + { + "Date+Time": "2021-09-02T00:00:00Z", + "Hs (total) (m)": 0.4089, + "Tp (total) (s)": 2.5124 + }, + { + "Date+Time": "2021-09-03T00:00:00Z", + "Hs (total) (m)": 0.3319, + "Tp (total) (s)": 16.0108 + }, + { + "Date+Time": "2021-09-04T00:00:00Z", + "Hs (total) (m)": 0.219, + "Tp (total) (s)": 14.7076 + }, + { + "Date+Time": "2021-09-05T00:00:00Z", + "Hs (total) (m)": 0.4982, + "Tp (total) (s)": 9.2944 + }, + { + "Date+Time": "2021-09-06T00:00:00Z", + "Hs (total) (m)": 0.4547, + "Tp (total) (s)": 3.2975 + }, + { + "Date+Time": "2021-09-07T00:00:00Z", + "Hs (total) (m)": 0.7965, + "Tp (total) (s)": 7.8959 + }, + { + "Date+Time": "2021-09-08T00:00:00Z", + "Hs (total) (m)": 0.8591, + "Tp (total) (s)": 7.8867 + }, + { + "Date+Time": "2021-09-09T00:00:00Z", + "Hs (total) (m)": 0.6981, + "Tp (total) (s)": 8.4529 + }, + { + "Date+Time": "2021-09-10T00:00:00Z", + "Hs (total) (m)": 0.8293, + "Tp (total) (s)": 7.8997 + }, + { + "Date+Time": "2021-09-11T00:00:00Z", + "Hs (total) (m)": 0.7775, + "Tp (total) (s)": 7.5816 + }, + { + "Date+Time": "2021-09-12T00:00:00Z", + "Hs (total) (m)": 0.6279, + "Tp (total) (s)": 7.577 + }, + { + "Date+Time": "2021-09-13T00:00:00Z", + "Hs (total) (m)": 0.5699, + "Tp (total) (s)": 7.2115 + }, + { + "Date+Time": "2021-09-14T00:00:00Z", + "Hs (total) (m)": 0.8133, + "Tp (total) (s)": 8.7527 + }, + { + "Date+Time": "2021-09-15T00:00:00Z", + "Hs (total) (m)": 1.3588, + "Tp (total) (s)": 16.3419 + }, + { + "Date+Time": "2021-09-16T00:00:00Z", + "Hs (total) (m)": 1.7472, + "Tp (total) (s)": 14.2285 + }, + { + "Date+Time": "2021-09-17T00:00:00Z", + "Hs (total) (m)": 1.6366, + "Tp (total) (s)": 13.319 + }, + { + "Date+Time": "2021-09-18T00:00:00Z", + "Hs (total) (m)": 1.7739, + "Tp (total) (s)": 6.991 + }, + { + "Date+Time": "2021-09-19T00:00:00Z", + "Hs (total) (m)": 1.5542, + "Tp (total) (s)": 9.5149 + }, + { + "Date+Time": "2021-09-20T00:00:00Z", + "Hs (total) (m)": 1.6778, + "Tp (total) (s)": 9.4348 + }, + { + "Date+Time": "2021-09-21T00:00:00Z", + "Hs (total) (m)": 1.6274, + "Tp (total) (s)": 10.4434 + }, + { + "Date+Time": "2021-09-22T00:00:00Z", + "Hs (total) (m)": 1.5404, + "Tp (total) (s)": 10.6075 + }, + { + "Date+Time": "2021-09-23T00:00:00Z", + "Hs (total) (m)": 1.9417, + "Tp (total) (s)": 10.8776 + }, + { + "Date+Time": "2021-09-24T00:00:00Z", + "Hs (total) (m)": 1.8479, + "Tp (total) (s)": 11.4299 + }, + { + "Date+Time": "2021-09-25T00:00:00Z", + "Hs (total) (m)": 1.706, + "Tp (total) (s)": 11.2598 + }, + { + "Date+Time": "2021-09-26T00:00:00Z", + "Hs (total) (m)": 1.5595, + "Tp (total) (s)": 10.0841 + }, + { + "Date+Time": "2021-09-27T00:00:00Z", + "Hs (total) (m)": 2.0577, + "Tp (total) (s)": 9.4714 + }, + { + "Date+Time": "2021-09-28T00:00:00Z", + "Hs (total) (m)": 2.1546, + "Tp (total) (s)": 9.5958 + }, + { + "Date+Time": "2021-09-29T00:00:00Z", + "Hs (total) (m)": 2.4705, + "Tp (total) (s)": 9.7453 + }, + { + "Date+Time": "2021-09-30T00:00:00Z", + "Hs (total) (m)": 2.0638, + "Tp (total) (s)": 10.0597 + }, + { + "Date+Time": "2021-10-01T00:00:00Z", + "Hs (total) (m)": 2.7367, + "Tp (total) (s)": 10.7921 + }, + { + "Date+Time": "2021-10-02T00:00:00Z", + "Hs (total) (m)": 2.8344, + "Tp (total) (s)": 9.6644 + }, + { + "Date+Time": "2021-10-03T00:00:00Z", + "Hs (total) (m)": 2.72, + "Tp (total) (s)": 10.5617 + }, + { + "Date+Time": "2021-10-04T00:00:00Z", + "Hs (total) (m)": 2.1012, + "Tp (total) (s)": 9.2257 + }, + { + "Date+Time": "2021-10-05T00:00:00Z", + "Hs (total) (m)": 1.915, + "Tp (total) (s)": 9.7392 + }, + { + "Date+Time": "2021-10-06T00:00:00Z", + "Hs (total) (m)": 1.2864, + "Tp (total) (s)": 8.6016 + }, + { + "Date+Time": "2021-10-07T00:00:00Z", + "Hs (total) (m)": 1.9532, + "Tp (total) (s)": 8.0821 + }, + { + "Date+Time": "2021-10-08T00:00:00Z", + "Hs (total) (m)": 3.1075, + "Tp (total) (s)": 15.6438 + }, + { + "Date+Time": "2021-10-09T00:00:00Z", + "Hs (total) (m)": 2.6208, + "Tp (total) (s)": 14.0187 + }, + { + "Date+Time": "2021-10-10T00:00:00Z", + "Hs (total) (m)": 1.5564, + "Tp (total) (s)": 11.1423 + }, + { + "Date+Time": "2021-10-11T00:00:00Z", + "Hs (total) (m)": 1.2398, + "Tp (total) (s)": 10.9012 + }, + { + "Date+Time": "2021-10-12T00:00:00Z", + "Hs (total) (m)": 1.2345, + "Tp (total) (s)": 10.3938 + }, + { + "Date+Time": "2021-10-13T00:00:00Z", + "Hs (total) (m)": 0.9232, + "Tp (total) (s)": 9.6088 + }, + { + "Date+Time": "2021-10-14T00:00:00Z", + "Hs (total) (m)": 0.853, + "Tp (total) (s)": 9.7049 + }, + { + "Date+Time": "2021-10-15T00:00:00Z", + "Hs (total) (m)": 1.1254, + "Tp (total) (s)": 10.6616 + }, + { + "Date+Time": "2021-10-16T00:00:00Z", + "Hs (total) (m)": 1.0575, + "Tp (total) (s)": 9.9002 + }, + { + "Date+Time": "2021-10-17T00:00:00Z", + "Hs (total) (m)": 1.3932, + "Tp (total) (s)": 8.9694 + }, + { + "Date+Time": "2021-10-18T00:00:00Z", + "Hs (total) (m)": 1.4313, + "Tp (total) (s)": 7.1215 + }, + { + "Date+Time": "2021-10-19T00:00:00Z", + "Hs (total) (m)": 1.6625, + "Tp (total) (s)": 6.1373 + }, + { + "Date+Time": "2021-10-20T00:00:00Z", + "Hs (total) (m)": 2.2744, + "Tp (total) (s)": 9.8872 + }, + { + "Date+Time": "2021-10-21T00:00:00Z", + "Hs (total) (m)": 2.298, + "Tp (total) (s)": 9.9925 + }, + { + "Date+Time": "2021-10-22T00:00:00Z", + "Hs (total) (m)": 1.4824, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "2021-10-23T00:00:00Z", + "Hs (total) (m)": 1.4519, + "Tp (total) (s)": 10.1001 + }, + { + "Date+Time": "2021-10-24T00:00:00Z", + "Hs (total) (m)": 2.2851, + "Tp (total) (s)": 7.593 + }, + { + "Date+Time": "2021-10-25T00:00:00Z", + "Hs (total) (m)": 2.4087, + "Tp (total) (s)": 9.3638 + }, + { + "Date+Time": "2021-10-26T00:00:00Z", + "Hs (total) (m)": 3.1465, + "Tp (total) (s)": 12.8239 + }, + { + "Date+Time": "2021-10-27T00:00:00Z", + "Hs (total) (m)": 2.955, + "Tp (total) (s)": 12.2547 + }, + { + "Date+Time": "2021-10-28T00:00:00Z", + "Hs (total) (m)": 3.5318, + "Tp (total) (s)": 10.4602 + }, + { + "Date+Time": "2021-10-29T00:00:00Z", + "Hs (total) (m)": 3.0206, + "Tp (total) (s)": 11.6146 + }, + { + "Date+Time": "2021-10-30T00:00:00Z", + "Hs (total) (m)": 2.44, + "Tp (total) (s)": 11.9907 + }, + { + "Date+Time": "2021-10-31T00:00:00Z", + "Hs (total) (m)": 1.9051, + "Tp (total) (s)": 10.609 + }, + { + "Date+Time": "2021-11-01T00:00:00Z", + "Hs (total) (m)": 2.3591, + "Tp (total) (s)": 8.5429 + }, + { + "Date+Time": "2021-11-02T00:00:00Z", + "Hs (total) (m)": 1.709, + "Tp (total) (s)": 8.8984 + }, + { + "Date+Time": "2021-11-03T00:00:00Z", + "Hs (total) (m)": 1.4817, + "Tp (total) (s)": 8.7992 + }, + { + "Date+Time": "2021-11-04T00:00:00Z", + "Hs (total) (m)": 1.2803, + "Tp (total) (s)": 9.5027 + }, + { + "Date+Time": "2021-11-05T00:00:00Z", + "Hs (total) (m)": 0.7485, + "Tp (total) (s)": 10.1703 + }, + { + "Date+Time": "2021-11-06T00:00:00Z", + "Hs (total) (m)": 0.9148, + "Tp (total) (s)": 10.4038 + }, + { + "Date+Time": "2021-11-07T00:00:00Z", + "Hs (total) (m)": 2.3881, + "Tp (total) (s)": 7.2207 + }, + { + "Date+Time": "2021-11-08T00:00:00Z", + "Hs (total) (m)": 1.8365, + "Tp (total) (s)": 10.5647 + }, + { + "Date+Time": "2021-11-09T00:00:00Z", + "Hs (total) (m)": 1.9631, + "Tp (total) (s)": 11.2156 + }, + { + "Date+Time": "2021-11-10T00:00:00Z", + "Hs (total) (m)": 2.3759, + "Tp (total) (s)": 10.1146 + }, + { + "Date+Time": "2021-11-11T00:00:00Z", + "Hs (total) (m)": 2.3446, + "Tp (total) (s)": 13.638 + }, + { + "Date+Time": "2021-11-12T00:00:00Z", + "Hs (total) (m)": 2.929, + "Tp (total) (s)": 11.2186 + }, + { + "Date+Time": "2021-11-13T00:00:00Z", + "Hs (total) (m)": 4.5434, + "Tp (total) (s)": 13.8035 + }, + { + "Date+Time": "2021-11-14T00:00:00Z", + "Hs (total) (m)": 2.7505, + "Tp (total) (s)": 13.7112 + }, + { + "Date+Time": "2021-11-15T00:00:00Z", + "Hs (total) (m)": 2.1889, + "Tp (total) (s)": 16.9668 + }, + { + "Date+Time": "2021-11-16T00:00:00Z", + "Hs (total) (m)": 2.6513, + "Tp (total) (s)": 14.9251 + }, + { + "Date+Time": "2021-11-17T00:00:00Z", + "Hs (total) (m)": 2.3751, + "Tp (total) (s)": 13.2496 + }, + { + "Date+Time": "2021-11-18T00:00:00Z", + "Hs (total) (m)": 2.6299, + "Tp (total) (s)": 13.8112 + }, + { + "Date+Time": "2021-11-19T00:00:00Z", + "Hs (total) (m)": 2.4628, + "Tp (total) (s)": 13.9271 + }, + { + "Date+Time": "2021-11-20T00:00:00Z", + "Hs (total) (m)": 2.1355, + "Tp (total) (s)": 11.3491 + }, + { + "Date+Time": "2021-11-21T00:00:00Z", + "Hs (total) (m)": 1.9395, + "Tp (total) (s)": 11.5604 + }, + { + "Date+Time": "2021-11-22T00:00:00Z", + "Hs (total) (m)": 1.1795, + "Tp (total) (s)": 10.1077 + }, + { + "Date+Time": "2021-11-23T00:00:00Z", + "Hs (total) (m)": 0.6775, + "Tp (total) (s)": 9.4386 + }, + { + "Date+Time": "2021-11-24T00:00:00Z", + "Hs (total) (m)": 0.7035, + "Tp (total) (s)": 9.3829 + }, + { + "Date+Time": "2021-11-25T00:00:00Z", + "Hs (total) (m)": 1.4153, + "Tp (total) (s)": 7.9333 + }, + { + "Date+Time": "2021-11-26T00:00:00Z", + "Hs (total) (m)": 1.886, + "Tp (total) (s)": 11.0271 + }, + { + "Date+Time": "2021-11-27T00:00:00Z", + "Hs (total) (m)": 2.1317, + "Tp (total) (s)": 11.1454 + }, + { + "Date+Time": "2021-11-28T00:00:00Z", + "Hs (total) (m)": 1.5351, + "Tp (total) (s)": 11.5864 + }, + { + "Date+Time": "2021-11-29T00:00:00Z", + "Hs (total) (m)": 1.0895, + "Tp (total) (s)": 10.165 + }, + { + "Date+Time": "2021-11-30T00:00:00Z", + "Hs (total) (m)": 1.458, + "Tp (total) (s)": 9.0785 + }, + { + "Date+Time": "2021-12-01T00:00:00Z", + "Hs (total) (m)": 1.7273, + "Tp (total) (s)": 7.7525 + }, + { + "Date+Time": "2021-12-02T00:00:00Z", + "Hs (total) (m)": 2.0425, + "Tp (total) (s)": 8.5055 + }, + { + "Date+Time": "2021-12-03T00:00:00Z", + "Hs (total) (m)": 1.4527, + "Tp (total) (s)": 10.4381 + }, + { + "Date+Time": "2021-12-04T00:00:00Z", + "Hs (total) (m)": 1.7281, + "Tp (total) (s)": 8.6268 + }, + { + "Date+Time": "2021-12-05T00:00:00Z", + "Hs (total) (m)": 2.6383, + "Tp (total) (s)": 10.2969 + }, + { + "Date+Time": "2021-12-06T00:00:00Z", + "Hs (total) (m)": 1.8807, + "Tp (total) (s)": 12.711 + }, + { + "Date+Time": "2021-12-07T00:00:00Z", + "Hs (total) (m)": 2.5727, + "Tp (total) (s)": 8.4574 + }, + { + "Date+Time": "2021-12-08T00:00:00Z", + "Hs (total) (m)": 4.3832, + "Tp (total) (s)": 13.7562 + }, + { + "Date+Time": "2021-12-09T00:00:00Z", + "Hs (total) (m)": 3.2601, + "Tp (total) (s)": 11.7473 + }, + { + "Date+Time": "2021-12-10T00:00:00Z", + "Hs (total) (m)": 2.8314, + "Tp (total) (s)": 13.4594 + }, + { + "Date+Time": "2021-12-11T00:00:00Z", + "Hs (total) (m)": 3.0381, + "Tp (total) (s)": 11.6604 + }, + { + "Date+Time": "2021-12-12T00:00:00Z", + "Hs (total) (m)": 3.1716, + "Tp (total) (s)": 15.5538 + }, + { + "Date+Time": "2021-12-13T00:00:00Z", + "Hs (total) (m)": 3.9644, + "Tp (total) (s)": 17.539 + }, + { + "Date+Time": "2021-12-14T00:00:00Z", + "Hs (total) (m)": 3.9346, + "Tp (total) (s)": 15.1616 + }, + { + "Date+Time": "2021-12-15T00:00:00Z", + "Hs (total) (m)": 2.3591, + "Tp (total) (s)": 13.2931 + }, + { + "Date+Time": "2021-12-16T00:00:00Z", + "Hs (total) (m)": 2.7291, + "Tp (total) (s)": 11.6657 + }, + { + "Date+Time": "2021-12-17T00:00:00Z", + "Hs (total) (m)": 2.4804, + "Tp (total) (s)": 13.7005 + }, + { + "Date+Time": "2021-12-18T00:00:00Z", + "Hs (total) (m)": 1.9082, + "Tp (total) (s)": 12.6888 + }, + { + "Date+Time": "2021-12-19T00:00:00Z", + "Hs (total) (m)": 1.648, + "Tp (total) (s)": 12.3623 + }, + { + "Date+Time": "2021-12-20T00:00:00Z", + "Hs (total) (m)": 1.3741, + "Tp (total) (s)": 12.6339 + }, + { + "Date+Time": "2021-12-21T00:00:00Z", + "Hs (total) (m)": 1.1315, + "Tp (total) (s)": 10.3221 + }, + { + "Date+Time": "2021-12-22T00:00:00Z", + "Hs (total) (m)": 0.779, + "Tp (total) (s)": 4.3573 + }, + { + "Date+Time": "2021-12-23T00:00:00Z", + "Hs (total) (m)": 1.5961, + "Tp (total) (s)": 13.0734 + }, + { + "Date+Time": "2021-12-24T00:00:00Z", + "Hs (total) (m)": 2.0661, + "Tp (total) (s)": 18.6666 + }, + { + "Date+Time": "2021-12-25T00:00:00Z", + "Hs (total) (m)": 3.4425, + "Tp (total) (s)": 16.7806 + }, + { + "Date+Time": "2021-12-26T00:00:00Z", + "Hs (total) (m)": 2.5437, + "Tp (total) (s)": 13.1161 + }, + { + "Date+Time": "2021-12-27T00:00:00Z", + "Hs (total) (m)": 2.0287, + "Tp (total) (s)": 11.5673 + }, + { + "Date+Time": "2021-12-28T00:00:00Z", + "Hs (total) (m)": 1.8036, + "Tp (total) (s)": 10.0467 + }, + { + "Date+Time": "2021-12-29T00:00:00Z", + "Hs (total) (m)": 1.7617, + "Tp (total) (s)": 12.2852 + }, + { + "Date+Time": "2021-12-30T00:00:00Z", + "Hs (total) (m)": 3.161, + "Tp (total) (s)": 12.0937 + }, + { + "Date+Time": "2021-12-31T00:00:00Z", + "Hs (total) (m)": 3.489, + "Tp (total) (s)": 13.6471 + } +] \ No newline at end of file diff --git a/public/static/data/U10-Dir.json b/public/static/data/U10-Dir.json new file mode 100644 index 0000000..3843c04 --- /dev/null +++ b/public/static/data/U10-Dir.json @@ -0,0 +1,6840 @@ +{ + "All year": { + "graph": [ + { + "U10": 0.599, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.8, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 2.647, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 2.351, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.54, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.717, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.25, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.04, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.008, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0.001, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.567, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 1.654, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 2.362, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 2.047, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 1.121, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.396, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.1, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0.025, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.545, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.587, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 2.441, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 2.387, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 1.366, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.638, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.234, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.041, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0.001, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.54, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 1.713, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.207, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.885, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 1.176, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.457, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.093, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.016, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0.001, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.586, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 2.094, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 3.349, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.099, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 2.212, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 1.266, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.526, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.143, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.028, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0.004, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0.001, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0.001, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.618, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 2.311, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 4.144, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.961, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 4.333, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 3.061, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 1.29, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.29, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.051, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0.006, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0.001, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.611, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 2.256, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 3.565, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 4.035, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 3.265, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 2.144, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 1.046, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.363, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.067, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0.008, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0.003, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.596, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 1.984, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.942, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.968, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.237, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.26, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.541, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.155, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.022, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0.002, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "January": { + "graph": [ + { + "U10": 0.315, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.011, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 1.42, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 1.637, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.558, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.855, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.409, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.089, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.015, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.266, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 0.919, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 1.365, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 1.427, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 1.005, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.73, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.202, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0.031, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.287, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.029, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 1.897, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 1.723, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 1.188, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 1.21, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.645, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.052, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.321, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 0.898, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 1.717, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.931, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 1.518, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 1.039, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.134, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.021, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0.003, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.342, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 0.953, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 1.989, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 2.63, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 3.177, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 2.306, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 1.103, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.339, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.058, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0.009, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.312, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 1.213, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 2.535, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.558, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 6.51, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 6.027, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 3.055, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.724, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.159, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0.027, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.281, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 1.35, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 2.603, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 4.048, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 4.649, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 4.573, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 2.56, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 1.008, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.247, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0.034, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0.018, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0.003, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.269, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 1.197, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.178, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.407, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.297, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.793, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 1.029, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.473, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.089, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [7, 14, 21, 28], + "parameter": "U10" + }, + "February": { + "graph": [ + { + "U10": 0.479, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.049, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 1.482, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 1.388, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.167, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.761, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.238, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.08, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.03, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.453, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 0.979, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 1.596, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 2.316, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 1.8, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.694, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.151, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0.211, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0.027, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.466, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.036, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 1.881, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 3.526, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 2.403, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 1.495, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.721, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.151, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.335, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 1.495, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.082, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.995, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 1.86, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.503, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.164, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.03, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.412, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 1.485, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 2.658, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 2.745, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 2.752, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 1.978, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.825, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.305, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.067, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0.017, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0.003, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.392, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 1.468, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 2.722, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.861, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 5.145, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 4.73, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 2.373, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.553, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.174, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0.02, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.496, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 1.659, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 2.745, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 3.697, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 3.741, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 3.141, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 1.763, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.764, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.158, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0.023, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0.017, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.432, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 1.381, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.041, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.35, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.276, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.348, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.808, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.345, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.08, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "March": { + "graph": [ + { + "U10": 0.4, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.555, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 1.964, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 2.013, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.494, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.632, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.202, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.015, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.541, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 1.46, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 2.19, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 2.059, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 1.54, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.62, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.156, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.473, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.225, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 2.868, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 2.85, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 1.857, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.8, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.608, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.162, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.486, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 1.488, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.456, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 2.468, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 1.607, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.388, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.043, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.009, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.431, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 1.802, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 2.933, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.214, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 1.983, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 1.173, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.501, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.147, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.021, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.339, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 1.976, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 4.032, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 5.291, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 4.49, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 3.177, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 1.011, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.186, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.064, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.437, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 2.221, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 3.397, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 3.883, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 3.916, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 2.92, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 1.335, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.33, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.04, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.568, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 1.885, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.835, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.826, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.065, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.378, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.489, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.055, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.015, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "April": { + "graph": [ + { + "U10": 0.735, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 2.639, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 4.025, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 3.545, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 2.074, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.814, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.322, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.047, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.685, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 2.525, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 3.709, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 4.132, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 1.812, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.669, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.088, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0.041, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.565, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.967, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 3.213, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 3.093, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 1.941, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.543, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.073, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.035, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.556, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 2.042, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.854, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 2.2, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 0.761, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.06, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.022, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.581, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 2.402, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 4.088, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.415, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 1.689, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 0.792, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.199, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.035, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.735, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 2.585, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 4.555, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.312, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 2.595, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 0.941, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 0.126, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.006, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.701, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 2.115, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 3.235, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 2.812, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 1.932, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 0.739, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 0.079, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.003, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.638, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 2.121, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.863, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.494, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 1.869, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.105, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.319, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.123, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [4, 8, 12, 16], + "parameter": "U10" + }, + "May": { + "graph": [ + { + "U10": 0.638, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 2.652, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 3.794, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 3.812, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.97, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.745, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.058, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.764, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 2.835, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 4.249, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 4.154, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 2.034, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.189, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.003, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.81, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 2.566, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 3.623, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 3.745, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 2.022, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.339, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.7, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 2.322, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.221, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.359, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 0.409, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.043, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.003, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.727, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 2.645, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 3.941, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.275, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 2.181, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 0.559, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.082, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.006, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.736, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 3.076, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 4.68, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.784, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 2.911, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 0.926, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 0.128, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.018, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.724, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 2.352, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 3.192, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 2.923, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 1.451, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 0.339, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 0.021, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.571, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 2.456, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 3.137, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.508, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 1.185, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 0.354, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.049, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [5, 10, 15, 20], + "parameter": "U10" + }, + "June": { + "graph": [ + { + "U10": 1.203, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 3.22, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 4.842, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 3.204, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.051, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.284, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.041, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.991, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 2.295, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 3.352, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 2.5, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 0.59, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.069, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.761, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 2.096, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 2.579, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 1.96, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 0.486, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.035, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.855, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 2.096, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.222, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.193, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 0.243, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.025, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.003, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.988, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 3.643, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 4.675, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 2.841, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 0.985, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 0.331, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.038, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.009, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 1.177, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 3.753, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 5.688, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.807, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 2.068, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 0.818, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 0.145, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.025, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 1.212, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 3.207, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 4.145, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 4.053, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 1.673, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 0.344, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 0.123, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.022, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 1.064, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 3.15, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 3.946, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 3.971, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.102, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 0.619, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.177, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.003, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [5, 10, 15, 20], + "parameter": "U10" + }, + "July": { + "graph": [ + { + "U10": 0.868, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 2.297, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 3.348, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 2.392, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 0.721, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.165, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.027, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.034, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.009, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.718, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 1.924, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 3.009, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 1.698, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 0.324, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.086, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.003, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.761, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.885, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 2.862, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 2.236, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 0.693, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.031, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.806, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 2.264, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.053, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 0.742, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 0.171, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.006, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.959, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 3.201, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 4.891, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.51, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 1.097, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 0.287, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.052, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 1.164, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 4.188, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 6.794, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 5.581, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 2.193, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 0.385, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 0.049, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.978, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 3.852, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 5.856, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 4.668, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 1.998, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 0.651, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 0.092, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.947, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 3.122, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 4.533, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 3.73, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.056, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 0.724, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.266, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.046, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "August": { + "graph": [ + { + "U10": 0.822, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 2.322, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 3.156, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 2.184, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.185, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.36, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.131, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.015, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.672, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 1.851, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 2.462, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 1.353, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 0.342, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.049, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.678, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.894, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 2.514, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 1.543, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 0.281, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.031, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.935, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 2.392, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.447, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.46, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 0.428, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.034, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.012, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.015, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.913, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 2.749, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 4.998, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.495, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 1.32, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 0.391, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.119, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.018, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.919, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 3.259, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 6.134, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 5.431, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 3.296, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 1.307, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 0.263, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.009, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.944, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 3.534, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 5.45, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 5.169, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 2.383, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 1.06, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 0.305, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.015, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.889, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 2.841, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 3.861, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 3.693, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.477, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.036, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.128, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.024, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "September": { + "graph": [ + { + "U10": 0.619, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.531, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 2.822, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 2.854, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.783, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.802, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.294, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.054, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.597, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 1.717, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 2.238, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 1.259, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 0.991, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.312, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.044, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.606, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.941, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 2.528, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 2.02, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 0.83, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.338, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.088, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.006, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.464, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 1.708, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.516, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.948, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 0.789, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.104, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.054, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.013, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.521, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 2.219, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 3.946, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.292, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 1.891, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 0.717, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.17, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.022, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.006, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.603, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 2.484, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 4.599, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.953, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 4.356, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 2.38, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 0.653, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.133, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.009, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.543, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 2.566, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 4.438, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 4.943, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 4.04, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 1.989, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 0.934, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.193, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.025, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0.006, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.616, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 2.055, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 3.052, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 3.008, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.484, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.414, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.735, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.133, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "October": { + "graph": [ + { + "U10": 0.36, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.026, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 1.845, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 1.741, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.359, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 0.687, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.33, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.027, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.4, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 1.161, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 1.579, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 1.237, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 1.017, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.418, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.186, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0.015, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.351, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.158, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 1.894, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 2.566, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 1.61, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.99, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.137, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.376, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 1.259, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 1.882, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 3.046, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 2.447, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 1.298, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.131, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.021, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.409, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 1.546, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 2.374, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 3.751, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 3.763, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 2.013, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 0.715, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.183, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.021, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0.012, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0.006, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0.006, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.385, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 1.439, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 3.192, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 5.416, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 5.74, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 4.863, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 1.821, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.47, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.052, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0.021, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0.006, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.333, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 1.317, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 2.56, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 3.629, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 4.445, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 3.207, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 1.433, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.62, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.092, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0.006, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.437, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 1.091, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.352, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.914, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.45, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.543, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.571, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.223, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.009, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0.006, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "November": { + "graph": [ + { + "U10": 0.357, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.225, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 1.607, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 1.812, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 2.481, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 1.424, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.556, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.095, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.038, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0.006, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.259, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 0.865, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 1.064, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 1.051, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 0.95, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.499, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.177, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0.003, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.341, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 0.865, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 1.632, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 1.843, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 1.537, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 0.527, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.237, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.032, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.259, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 1.42, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 2.216, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 2.734, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 2.56, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 1.301, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.284, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.025, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.363, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 1.316, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 2.068, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 2.948, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 3.374, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 2.206, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 1.307, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.215, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.016, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0.003, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.322, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 1.316, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 2.424, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.839, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 5.849, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 4.991, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 2.38, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.619, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.057, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0.009, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.316, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 1.402, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 2.431, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 4.441, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 4.41, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 3.056, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 1.591, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.666, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.082, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.268, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 1.241, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.358, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.683, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.907, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.903, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 1.092, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.211, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.035, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [6, 12, 18, 24], + "parameter": "U10" + }, + "December": { + "graph": [ + { + "U10": 0.394, + "class": "0.0-2.5", + "sector": 0 + }, + { + "U10": 1.057, + "class": "2.5-5.0", + "sector": 0 + }, + { + "U10": 1.448, + "class": "5.0-7.5", + "sector": 0 + }, + { + "U10": 1.604, + "class": "7.5-10.0", + "sector": 0 + }, + { + "U10": 1.64, + "class": "10.0-12.5", + "sector": 0 + }, + { + "U10": 1.097, + "class": "12.5-15.0", + "sector": 0 + }, + { + "U10": 0.4, + "class": "15.0-17.5", + "sector": 0 + }, + { + "U10": 0.027, + "class": "17.5-20.0", + "sector": 0 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 0 + }, + { + "U10": 0.009, + "class": "22.5-25.0", + "sector": 0 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 0 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 0 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 0 + }, + { + "U10": 0.461, + "class": "0.0-2.5", + "sector": 45 + }, + { + "U10": 1.286, + "class": "2.5-5.0", + "sector": 45 + }, + { + "U10": 1.494, + "class": "5.0-7.5", + "sector": 45 + }, + { + "U10": 1.43, + "class": "7.5-10.0", + "sector": 45 + }, + { + "U10": 1.106, + "class": "10.0-12.5", + "sector": 45 + }, + { + "U10": 0.443, + "class": "12.5-15.0", + "sector": 45 + }, + { + "U10": 0.186, + "class": "15.0-17.5", + "sector": 45 + }, + { + "U10": 0.015, + "class": "17.5-20.0", + "sector": 45 + }, + { + "U10": 0.006, + "class": "20.0-22.5", + "sector": 45 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 45 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 45 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 45 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 45 + }, + { + "U10": 0.434, + "class": "0.0-2.5", + "sector": 90 + }, + { + "U10": 1.353, + "class": "2.5-5.0", + "sector": 90 + }, + { + "U10": 1.756, + "class": "5.0-7.5", + "sector": 90 + }, + { + "U10": 1.616, + "class": "7.5-10.0", + "sector": 90 + }, + { + "U10": 1.607, + "class": "10.0-12.5", + "sector": 90 + }, + { + "U10": 1.359, + "class": "12.5-15.0", + "sector": 90 + }, + { + "U10": 0.33, + "class": "15.0-17.5", + "sector": 90 + }, + { + "U10": 0.061, + "class": "17.5-20.0", + "sector": 90 + }, + { + "U10": 0, + "class": "20.0-22.5", + "sector": 90 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 90 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 90 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 90 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 90 + }, + { + "U10": 0.364, + "class": "0.0-2.5", + "sector": 135 + }, + { + "U10": 1.17, + "class": "2.5-5.0", + "sector": 135 + }, + { + "U10": 1.836, + "class": "5.0-7.5", + "sector": 135 + }, + { + "U10": 1.576, + "class": "7.5-10.0", + "sector": 135 + }, + { + "U10": 1.369, + "class": "10.0-12.5", + "sector": 135 + }, + { + "U10": 0.672, + "class": "12.5-15.0", + "sector": 135 + }, + { + "U10": 0.266, + "class": "15.0-17.5", + "sector": 135 + }, + { + "U10": 0.058, + "class": "17.5-20.0", + "sector": 135 + }, + { + "U10": 0.003, + "class": "20.0-22.5", + "sector": 135 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 135 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 135 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 135 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 135 + }, + { + "U10": 0.373, + "class": "0.0-2.5", + "sector": 180 + }, + { + "U10": 1.155, + "class": "2.5-5.0", + "sector": 180 + }, + { + "U10": 1.613, + "class": "5.0-7.5", + "sector": 180 + }, + { + "U10": 2.044, + "class": "7.5-10.0", + "sector": 180 + }, + { + "U10": 2.355, + "class": "10.0-12.5", + "sector": 180 + }, + { + "U10": 2.465, + "class": "12.5-15.0", + "sector": 180 + }, + { + "U10": 1.213, + "class": "15.0-17.5", + "sector": 180 + }, + { + "U10": 0.443, + "class": "17.5-20.0", + "sector": 180 + }, + { + "U10": 0.144, + "class": "20.0-22.5", + "sector": 180 + }, + { + "U10": 0.009, + "class": "22.5-25.0", + "sector": 180 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 180 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 180 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 180 + }, + { + "U10": 0.318, + "class": "0.0-2.5", + "sector": 225 + }, + { + "U10": 0.929, + "class": "2.5-5.0", + "sector": 225 + }, + { + "U10": 2.267, + "class": "5.0-7.5", + "sector": 225 + }, + { + "U10": 4.662, + "class": "7.5-10.0", + "sector": 225 + }, + { + "U10": 6.833, + "class": "10.0-12.5", + "sector": 225 + }, + { + "U10": 6.232, + "class": "12.5-15.0", + "sector": 225 + }, + { + "U10": 3.516, + "class": "15.0-17.5", + "sector": 225 + }, + { + "U10": 0.751, + "class": "17.5-20.0", + "sector": 225 + }, + { + "U10": 0.101, + "class": "20.0-22.5", + "sector": 225 + }, + { + "U10": 0, + "class": "22.5-25.0", + "sector": 225 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 225 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 225 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 225 + }, + { + "U10": 0.373, + "class": "0.0-2.5", + "sector": 270 + }, + { + "U10": 1.457, + "class": "2.5-5.0", + "sector": 270 + }, + { + "U10": 2.661, + "class": "5.0-7.5", + "sector": 270 + }, + { + "U10": 4.13, + "class": "7.5-10.0", + "sector": 270 + }, + { + "U10": 4.552, + "class": "10.0-12.5", + "sector": 270 + }, + { + "U10": 3.721, + "class": "12.5-15.0", + "sector": 270 + }, + { + "U10": 2.328, + "class": "15.0-17.5", + "sector": 270 + }, + { + "U10": 0.755, + "class": "17.5-20.0", + "sector": 270 + }, + { + "U10": 0.165, + "class": "20.0-22.5", + "sector": 270 + }, + { + "U10": 0.027, + "class": "22.5-25.0", + "sector": 270 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 270 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 270 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 270 + }, + { + "U10": 0.443, + "class": "0.0-2.5", + "sector": 315 + }, + { + "U10": 1.231, + "class": "2.5-5.0", + "sector": 315 + }, + { + "U10": 2.083, + "class": "5.0-7.5", + "sector": 315 + }, + { + "U10": 2.988, + "class": "7.5-10.0", + "sector": 315 + }, + { + "U10": 2.688, + "class": "10.0-12.5", + "sector": 315 + }, + { + "U10": 1.909, + "class": "12.5-15.0", + "sector": 315 + }, + { + "U10": 0.852, + "class": "15.0-17.5", + "sector": 315 + }, + { + "U10": 0.229, + "class": "17.5-20.0", + "sector": 315 + }, + { + "U10": 0.037, + "class": "20.0-22.5", + "sector": 315 + }, + { + "U10": 0.015, + "class": "22.5-25.0", + "sector": 315 + }, + { + "U10": 0, + "class": "25.0-27.5", + "sector": 315 + }, + { + "U10": 0, + "class": "27.5-30.0", + "sector": 315 + }, + { + "U10": 0, + "class": ">30.0", + "sector": 315 + } + ], + "isolines": [7, 14, 21, 28], + "parameter": "U10" + } +} diff --git a/src/assets/docs/about-text.md b/src/assets/docs/about-text.md index 06422ba..e7939ad 100644 --- a/src/assets/docs/about-text.md +++ b/src/assets/docs/about-text.md @@ -1,4 +1,4 @@ -This is a beta release of the Blue Earth Data platform. The Blue Earth Data platform has been developed by Deltares as a free, web-based application to support the study and sharing of integrated water and subsoil-related data. The platform provides indicative data, which is primarily intended for professional specialists and researchers. +This is a release of the Blue Earth Data platform. The Blue Earth Data platform has been developed by Deltares as a free, web-based application to support the study and sharing of integrated water and subsoil-related data. The platform provides indicative data, which is primarily intended for professional specialists and researchers. Users are presented with global water and subsoil-related data through use of our multi-data viewer. The datasets included are subdivided over different themes and areas of interest, which can be selected on the left side of the screen. The global data is grouped under the Flooding, Coastal Management and Offshore themes. These themes incorporate datasets for amongst others global shoreline changes, global bathymetry, global river discharge and storm surge forecasts and global metocean conditions. Additionally, some regional datasets are added for the North Sea. Further information with each dataset is provided through the data selection menu. diff --git a/src/assets/docs/user-agreements - part 1.md b/src/assets/docs/user-agreements - part 1.md index 2b832c8..3488b1e 100644 --- a/src/assets/docs/user-agreements - part 1.md +++ b/src/assets/docs/user-agreements - part 1.md @@ -1,4 +1,4 @@ -## Blue Earth Data (beta) User Agreement Deltares +## Blue Earth Data User Agreement Deltares This legal agreement (hereinafter “User Agreement”) governs the conditions of use of this Deltares Open Data website and the data products (hereinafter “Data Products”) to be found, accessed and downloaded through our website. diff --git a/src/components/DataSetControls.vue b/src/components/DataSetControls.vue index 6772587..5cbc1a1 100644 --- a/src/components/DataSetControls.vue +++ b/src/components/DataSetControls.vue @@ -186,7 +186,7 @@ export default { 'getActiveVectorDataIds' ]), themeName() { - return this.getActiveTheme || 'All datasets' + return this.getActiveTheme || 'Map layers' }, activePanels() { const active = _.values(this.datasets).flatMap((dataset, index) => { diff --git a/src/components/metocean/graphs/ExtremeValues.vue b/src/components/metocean/graphs/ExtremeValues.vue new file mode 100644 index 0000000..6a51456 --- /dev/null +++ b/src/components/metocean/graphs/ExtremeValues.vue @@ -0,0 +1,1723 @@ + + + + + diff --git a/src/components/metocean/graphs/RosePlot.vue b/src/components/metocean/graphs/RosePlot.vue new file mode 100644 index 0000000..8c544c5 --- /dev/null +++ b/src/components/metocean/graphs/RosePlot.vue @@ -0,0 +1,1334 @@ + + + + + + diff --git a/src/components/metocean/graphs/TimeSeries.vue b/src/components/metocean/graphs/TimeSeries.vue new file mode 100644 index 0000000..b0b5baa --- /dev/null +++ b/src/components/metocean/graphs/TimeSeries.vue @@ -0,0 +1,256 @@ + + + + + diff --git a/src/components/metocean/graphs/WeatherWindow.vue b/src/components/metocean/graphs/WeatherWindow.vue new file mode 100644 index 0000000..71fd282 --- /dev/null +++ b/src/components/metocean/graphs/WeatherWindow.vue @@ -0,0 +1,245 @@ + + + + + diff --git a/src/components/metocean/index.js b/src/components/metocean/index.js new file mode 100644 index 0000000..6d1e1f3 --- /dev/null +++ b/src/components/metocean/index.js @@ -0,0 +1,6 @@ +import TimeSeries from '@/components/metocean/graphs/TimeSeries' +import RosePlot from '@/components/metocean/graphs/RosePlot' +import ExtremeValues from '@/components/metocean/graphs/ExtremeValues' +import WeatherWindow from '@/components/metocean/graphs/WeatherWindow' + +export { TimeSeries, RosePlot, ExtremeValues, WeatherWindow } diff --git a/src/store/map/index.js b/src/store/map/index.js index 99bb664..afdb317 100644 --- a/src/store/map/index.js +++ b/src/store/map/index.js @@ -16,12 +16,12 @@ export const getDefaultState = () => ({ activeLocationIds: [], activeRasterData: {}, vectorDataCollection: {}, - activeRasterLayerId: 'el', + activeRasterLayerId: '', activeFlowmapLayer: {}, activeTheme: '', loadingRasterLayers: false, geographicalScope: '', - activeVectorDataIds: '', + activeVectorDataIds: 'mo', activeSummary: [] }) diff --git a/src/views/data/datasetIds/LocationId.vue b/src/views/data/datasetIds/LocationId.vue index 93437f2..f29c7ab 100644 --- a/src/views/data/datasetIds/LocationId.vue +++ b/src/views/data/datasetIds/LocationId.vue @@ -8,20 +8,13 @@ >

- {{ locations }} + Metocean

mdi-close
- + + + + Time series + + + + + + + + Rose plot + + + + + + + + Extreme values + + + + + + + + Weather window + + + + + -
Global datasets are generated with great care but may locally contain @@ -61,18 +83,68 @@