diff --git a/.github/workflows/feature-branch_cleanup.yml b/.github/workflows/feature-branch_cleanup.yml
index 4f02a67f1e..04ce4c13ea 100644
--- a/.github/workflows/feature-branch_cleanup.yml
+++ b/.github/workflows/feature-branch_cleanup.yml
@@ -8,7 +8,7 @@ on:
- '!staging'
- '!gtif-demo'
- '!gtif_staging'
-
+ - '!polar'
jobs:
delete_folder:
runs-on: ubuntu-latest
@@ -24,4 +24,4 @@ jobs:
# Delete the folder from the S3 bucket
- name: Delete folder from S3
run: |
- aws s3 rm s3://${{ secrets.AWS_S3_BUCKET }}/feature-branches/${{ github.event.ref }} --recursive
\ No newline at end of file
+ aws s3 rm s3://${{ secrets.AWS_S3_BUCKET }}/feature-branches/${{ github.event.ref }} --recursive
diff --git a/.github/workflows/feature-branch_deploy.yml b/.github/workflows/feature-branch_deploy.yml
index a139f42d0c..1b249592f4 100644
--- a/.github/workflows/feature-branch_deploy.yml
+++ b/.github/workflows/feature-branch_deploy.yml
@@ -2,7 +2,7 @@ name: Feature branch deployment
on:
push:
- branches-ignore: [ master, staging, gtif-demo, gtif_staging ]
+ branches-ignore: [ master, staging, gtif-demo, gtif_staging, polar ]
concurrency:
group: ci-tests-${{ github.ref }}-1
@@ -38,7 +38,7 @@ jobs:
uses: datamonsters/replace-action@v2
with:
files: 'app/dist/shConfig.js'
- replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$MAPBOX_ACCESS_TOKEN=${{ secrets.MAPBOX_ACCESS_TOKEN }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
+ replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$SH_INSTANCE_ID_POLAR=${{ secrets.SH_INSTANCE_ID_POLAR }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
# Upload build client to S3
- name: sync client s3
diff --git a/.github/workflows/gtif-demo_deploy.yml b/.github/workflows/gtif-demo_deploy.yml
index afaeee1f78..b73c55911b 100644
--- a/.github/workflows/gtif-demo_deploy.yml
+++ b/.github/workflows/gtif-demo_deploy.yml
@@ -37,7 +37,7 @@ jobs:
uses: datamonsters/replace-action@v2
with:
files: 'app/dist/shConfig.js'
- replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$MAPBOX_ACCESS_TOKEN=${{ secrets.MAPBOX_ACCESS_TOKEN }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
+ replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$SH_INSTANCE_ID_POLAR=${{ secrets.SH_INSTANCE_ID_POLAR }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
# Upload build client to S3
- name: sync client s3
diff --git a/.github/workflows/gtif-staging_deploy.yml b/.github/workflows/gtif-staging_deploy.yml
index de374f8030..8e3a834ff5 100644
--- a/.github/workflows/gtif-staging_deploy.yml
+++ b/.github/workflows/gtif-staging_deploy.yml
@@ -37,7 +37,7 @@ jobs:
uses: datamonsters/replace-action@v2
with:
files: 'app/dist/shConfig.js'
- replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$MAPBOX_ACCESS_TOKEN=${{ secrets.MAPBOX_ACCESS_TOKEN }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
+ replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$SH_INSTANCE_ID_POLAR=${{ secrets.SH_INSTANCE_ID_POLAR }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
# Upload build client to S3
- name: sync client s3
diff --git a/.github/workflows/polar_deploy.yml b/.github/workflows/polar_deploy.yml
new file mode 100644
index 0000000000..195d2fa0d1
--- /dev/null
+++ b/.github/workflows/polar_deploy.yml
@@ -0,0 +1,100 @@
+name: Polar deployment
+
+on:
+ push:
+ branches: [ polar ]
+
+concurrency:
+ group: ci-tests-${{ github.ref }}-1
+ cancel-in-progress: true
+
+jobs:
+ deploy:
+ runs-on: ubuntu-22.04
+
+ steps:
+ # Checkout code
+ - uses: actions/checkout@v3
+
+ # Install node
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: '16'
+ registry-url: 'https://registry.npmjs.org'
+ cache: 'npm'
+ cache-dependency-path: app/package-lock.json
+
+ # Build
+ - name: Build
+ run: |
+ cd app/
+ npm ci --ignore-scripts
+ npm run build
+
+ # Inject SH Config file
+ - name: replace instance ID
+ uses: datamonsters/replace-action@v2
+ with:
+ files: 'app/dist/shConfig.js'
+ replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$SH_INSTANCE_ID_POLAR=${{ secrets.SH_INSTANCE_ID_POLAR }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }}'
+
+ # Upload build client to S3
+ - name: sync client s3
+ uses: jakejarvis/s3-sync-action@v0.5.1
+ with:
+ args: --delete --follow-symlinks --exclude 'data/*' --exclude 'eodash-data/*'
+ env:
+ SOURCE_DIR: 'app/dist'
+ DEST_DIR: 'polar'
+ AWS_REGION: 'eu-central-1'
+ AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+
+ # Upload data to S3
+ - name: sync data s3
+ uses: jakejarvis/s3-sync-action@v0.5.1
+ with:
+ args: --delete --follow-symlinks
+ env:
+ SOURCE_DIR: 'app/dist/data'
+ DEST_DIR: 'polar/data'
+ AWS_REGION: 'eu-central-1'
+ AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+
+ # Upload eodashdata to S3
+ - name: sync eodashdata s3
+ uses: jakejarvis/s3-sync-action@v0.5.1
+ with:
+ args: --delete --follow-symlinks
+ env:
+ SOURCE_DIR: 'app/dist/eodash-data'
+ DEST_DIR: 'polar/eodash-data'
+ AWS_REGION: 'eu-central-1'
+ AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+
+ # Invalidate Cloudfront
+ - name: invalidate
+ uses: chetan/invalidate-cloudfront-action@v1.2
+ env:
+ DISTRIBUTION: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID_POLAR }}
+ PATHS: '/*'
+ AWS_REGION: 'eu-central-1'
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+
+ # Send notification
+ - name: action-slack
+ uses: 8398a7/action-slack@v3.15.1
+ with:
+ status: ${{ job.status }}
+ author_name: eodash_deploy
+ fields: repo,message,commit,author,action,eventName,ref,workflow
+ env:
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
+ if: always()
diff --git a/.github/workflows/production_deploy.yml b/.github/workflows/production_deploy.yml
index b7e5425a39..a1920f44b5 100644
--- a/.github/workflows/production_deploy.yml
+++ b/.github/workflows/production_deploy.yml
@@ -37,7 +37,7 @@ jobs:
uses: datamonsters/replace-action@v2
with:
files: 'app/dist/shConfig.js'
- replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$MAPBOX_ACCESS_TOKEN=${{ secrets.MAPBOX_ACCESS_TOKEN }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
+ replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$SH_INSTANCE_ID_POLAR=${{ secrets.SH_INSTANCE_ID_POLAR }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
# Upload to S3
- name: sync s3
diff --git a/.github/workflows/staging_deploy.yml b/.github/workflows/staging_deploy.yml
index 1f5800cd1c..90bb9edae6 100644
--- a/.github/workflows/staging_deploy.yml
+++ b/.github/workflows/staging_deploy.yml
@@ -37,7 +37,7 @@ jobs:
uses: datamonsters/replace-action@v2
with:
files: 'app/dist/shConfig.js'
- replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$MAPBOX_ACCESS_TOKEN=${{ secrets.MAPBOX_ACCESS_TOKEN }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
+ replacements: '$SH_INSTANCE_ID=${{ secrets.SH_INSTANCE_ID }},$SH_INSTANCE_ID_POLAR=${{ secrets.SH_INSTANCE_ID_POLAR }},$GEODB_INSTANCE_ID=${{ secrets.GEODB_INSTANCE_ID }},$LISTMONK_API_KEY=${{ secrets.LISTMONK_API_KEY }},$STAT_API_CLIENT_SECRET=${{ secrets.STAT_API_CLIENT_SECRET }},$STAT_API_CLIENT_ID=${{ secrets.STAT_API_CLIENT_ID }},$SH_INSTANCE_ID_GTIF=${{ secrets.SH_INSTANCE_ID_GTIF }}'
# Upload build client to S3
- name: sync client s3
diff --git a/app/package-lock.json b/app/package-lock.json
index a74ac49cae..3857e0564f 100644
--- a/app/package-lock.json
+++ b/app/package-lock.json
@@ -9,9 +9,12 @@
"version": "4.0.0",
"dependencies": {
"@chenfengyuan/vue-countdown": "^1.1.5",
- "@eox/itemfilter": "0.12.1",
- "@eox/layercontrol": "^0.12.0",
- "@eox/stacinfo": "^0.3.0",
+ "@eox/itemfilter": "0.14.0",
+ "@eox/jsonform": "^0.6.1",
+ "@eox/layercontrol": "^0.17.3",
+ "@eox/map": "^1.6.1",
+ "@eox/stacinfo": "^0.3.3",
+ "@eox/storytelling": "^0.5.0",
"@turf/difference": "^6.5.0",
"axios": "^0.21.1",
"chart.js": "2.9.3",
@@ -33,7 +36,7 @@
"luxon": "^1.28.1",
"marked": "^4.0.10",
"medium-zoom": "^1.0.6",
- "ol": "^8.1.0",
+ "ol": "^9.1.0",
"ol-mapbox-style": "^11.0.0",
"proj4": "^2.8.0",
"regl": "^2.1.0",
@@ -106,17 +109,22 @@
}
},
"node_modules/@babel/code-frame": {
- "version": "7.22.13",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
- "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
+ "version": "7.24.2",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz",
+ "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==",
"dependencies": {
- "@babel/highlight": "^7.22.13",
- "chalk": "^2.4.2"
+ "@babel/highlight": "^7.24.2",
+ "picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
+ "node_modules/@babel/code-frame/node_modules/picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ },
"node_modules/@babel/compat-data": {
"version": "7.22.9",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz",
@@ -157,14 +165,14 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz",
- "integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==",
+ "version": "7.24.4",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz",
+ "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==",
"dev": true,
"dependencies": {
- "@babel/types": "^7.22.15",
- "@jridgewell/gen-mapping": "^0.3.2",
- "@jridgewell/trace-mapping": "^0.3.17",
+ "@babel/types": "^7.24.0",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^2.5.1"
},
"engines": {
@@ -268,22 +276,22 @@
}
},
"node_modules/@babel/helper-environment-visitor": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz",
- "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+ "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-function-name": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz",
- "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+ "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"dev": true,
"dependencies": {
- "@babel/template": "^7.22.5",
- "@babel/types": "^7.22.5"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.23.0"
},
"engines": {
"node": ">=6.9.0"
@@ -436,18 +444,18 @@
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
- "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
+ "version": "7.24.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz",
+ "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
- "integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
"engines": {
"node": ">=6.9.0"
}
@@ -490,22 +498,28 @@
}
},
"node_modules/@babel/highlight": {
- "version": "7.22.13",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz",
- "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==",
+ "version": "7.24.2",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz",
+ "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.22.5",
+ "@babel/helper-validator-identifier": "^7.22.20",
"chalk": "^2.4.2",
- "js-tokens": "^4.0.0"
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
+ "node_modules/@babel/highlight/node_modules/picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ },
"node_modules/@babel/parser": {
- "version": "7.22.16",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz",
- "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==",
+ "version": "7.24.4",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz",
+ "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==",
"bin": {
"parser": "bin/babel-parser.js"
},
@@ -1791,20 +1805,20 @@
}
},
"node_modules/@babel/traverse": {
- "version": "7.22.17",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.17.tgz",
- "integrity": "sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==",
+ "version": "7.24.1",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz",
+ "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==",
"dev": true,
"dependencies": {
- "@babel/code-frame": "^7.22.13",
- "@babel/generator": "^7.22.15",
- "@babel/helper-environment-visitor": "^7.22.5",
- "@babel/helper-function-name": "^7.22.5",
+ "@babel/code-frame": "^7.24.1",
+ "@babel/generator": "^7.24.1",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
"@babel/helper-hoist-variables": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.22.16",
- "@babel/types": "^7.22.17",
- "debug": "^4.1.0",
+ "@babel/parser": "^7.24.1",
+ "@babel/types": "^7.24.0",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
@@ -1812,13 +1826,13 @@
}
},
"node_modules/@babel/types": {
- "version": "7.22.17",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
- "integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
+ "version": "7.24.0",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
+ "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
"dev": true,
"dependencies": {
- "@babel/helper-string-parser": "^7.22.5",
- "@babel/helper-validator-identifier": "^7.22.15",
+ "@babel/helper-string-parser": "^7.23.4",
+ "@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
},
"engines": {
@@ -1962,9 +1976,9 @@
}
},
"node_modules/@eox/itemfilter": {
- "version": "0.12.1",
- "resolved": "https://registry.npmjs.org/@eox/itemfilter/-/itemfilter-0.12.1.tgz",
- "integrity": "sha512-goE844hAKPV+/nj4l5iPVIFR3UHqvzSxrYR2GzwQE0Xo0fLENtefDqsFgpQylmuHMmBujeRmZV0j3DWUvyXvFA==",
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/@eox/itemfilter/-/itemfilter-0.14.0.tgz",
+ "integrity": "sha512-C2a6vLKaLbZuYUPV9kFxQaRuWsWhRVIdshdFSz6D3lP9PE9oATHC+mvVoCWucIqyy+UDyUXMvMCHmxcRJqDvOQ==",
"dependencies": {
"@floating-ui/dom": "^1.5.3",
"@turf/boolean-intersects": "^6.5.0",
@@ -1979,10 +1993,23 @@
"npm": ">=8.0.0"
}
},
+ "node_modules/@eox/jsonform": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/@eox/jsonform/-/jsonform-0.6.1.tgz",
+ "integrity": "sha512-pBCm0wKCaou+XyArvo07alVqcKr4yhXM4KP3+S9yzimXIs55NJN3N5w3PZLuzf1/JuF8RSovCjk4bu0W2gMAzQ==",
+ "dependencies": {
+ "@json-editor/json-editor": "^2.11.0",
+ "toolcool-range-slider": "^4.0.28"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ }
+ },
"node_modules/@eox/layercontrol": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/@eox/layercontrol/-/layercontrol-0.12.0.tgz",
- "integrity": "sha512-R8TmkZAMY87ZBdsCkXeHWBdzQ3gUjn6PYWSwhl6XLZqI4TGk7aLy361P+WDWs1Bcw4hi3Yp9uSWSL6LTt2pWdw==",
+ "version": "0.17.3",
+ "resolved": "https://registry.npmjs.org/@eox/layercontrol/-/layercontrol-0.17.3.tgz",
+ "integrity": "sha512-uPRQT8/HflWaSRlVlhblaREpFSQT/MzgSfwKLPXf2lzGXDwMv8uPjiuJcmSdqvFBeIVAYjKim/0hysFE+QhBgg==",
"dependencies": {
"dayjs": "^1.11.8",
"lit": "^3.0.2",
@@ -1994,53 +2021,65 @@
"npm": ">=8.0.0"
}
},
- "node_modules/@eox/stacinfo": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@eox/stacinfo/-/stacinfo-0.3.0.tgz",
- "integrity": "sha512-2RNSYgy3zsRB0+f64c3+el6wJJVRUkMivT5f9RMYyR2HWWnA0DOQGIIRDzGePtYt1wIjCdkUcXWhvhGYallFGQ==",
+ "node_modules/@eox/map": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/@eox/map/-/map-1.6.1.tgz",
+ "integrity": "sha512-ynPBR9zqGOh1tnyuKXoy2ECnvRzO6py8cjB/GGCGzdKL4T9krsFlIUBTPK/sRGwO2tOhl0NBthK00gG/CPLPyg==",
"dependencies": {
- "@radiantearth/stac-fields": "^1.3.2",
- "lit": "^3.0.2"
+ "lit": "^3.0.2",
+ "ol": "^9.0.0",
+ "ol-stac": "^1.0.0-beta.10",
+ "proj4": "^2.9.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
},
- "node_modules/@eox/stacinfo/node_modules/@lit/reactive-element": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.1.tgz",
- "integrity": "sha512-eu50SQXHRthFwWJMp0oAFg95Rvm6MTPjxSXWuvAu7It90WVFLFpNBoIno7XOXSDvVgTrtKnUV4OLJqys2Svn4g==",
+ "node_modules/@eox/stacinfo": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/@eox/stacinfo/-/stacinfo-0.3.3.tgz",
+ "integrity": "sha512-94KHC3Xzoow7ZYOeTECxE7mZ5nStvajlvB4kttSwzYvLvBsazN50YSDVDrcFChXykQf91sRGTr4sdrEy8X1p4g==",
"dependencies": {
- "@lit-labs/ssr-dom-shim": "^1.1.2"
+ "@radiantearth/stac-fields": "^1.3.2",
+ "lit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
}
},
- "node_modules/@eox/stacinfo/node_modules/lit": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/lit/-/lit-3.0.2.tgz",
- "integrity": "sha512-ZoVUPGgXOQocP4OvxehEOBmC4rWB4cRYDPaz7aFmH8DFytsCi/NeACbr4C6vNPGDEC07BrhUos7uVNayDKLQ2Q==",
+ "node_modules/@eox/storytelling": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/@eox/storytelling/-/storytelling-0.5.0.tgz",
+ "integrity": "sha512-SwayHqiHviklP/qqs3BQCL3uzywmtmIS1uNR3+z27QNr8oDAuGl8r/1eaI5qlBXTS/2FqvHhGblYOU7BSn0QaA==",
"dependencies": {
- "@lit/reactive-element": "^2.0.0",
- "lit-element": "^4.0.0",
- "lit-html": "^3.0.0"
+ "@sindresorhus/slugify": "^2.2.1",
+ "glightbox": "^3.3.0",
+ "isomorphic-dompurify": "^2.4.0",
+ "js-yaml": "^4.1.0",
+ "lit": "^3.0.2",
+ "markdown-it": "^14.0.0"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
}
},
- "node_modules/@eox/stacinfo/node_modules/lit-element": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.1.tgz",
- "integrity": "sha512-OxRMJem4HKZt0320HplLkBPoi4KHiEHoPHKd8Lzf07ZQVAOKIjZ32yPLRKRDEolFU1RgrQBfSHQMoxKZ72V3Kw==",
- "dependencies": {
- "@lit-labs/ssr-dom-shim": "^1.1.2",
- "@lit/reactive-element": "^2.0.0",
- "lit-html": "^3.0.0"
- }
+ "node_modules/@eox/storytelling/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
- "node_modules/@eox/stacinfo/node_modules/lit-html": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.0.2.tgz",
- "integrity": "sha512-Q1A5lHza3bnmxoWJn6yS6vQZQdExl4fghk8W1G+jnAEdoFNYo5oeBBb/Ol7zSEdKd3TR7+r0zsJQyuWEVguiyQ==",
+ "node_modules/@eox/storytelling/node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dependencies": {
- "@types/trusted-types": "^2.0.2"
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
}
},
"node_modules/@flekschas/utils": {
@@ -2129,14 +2168,14 @@
}
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
+ "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"dev": true,
"dependencies": {
- "@jridgewell/set-array": "^1.0.1",
+ "@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
+ "@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
@@ -2152,9 +2191,9 @@
}
},
"node_modules/@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"dev": true,
"engines": {
"node": ">=6.0.0"
@@ -2167,15 +2206,26 @@
"dev": true
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.19",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
- "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"dev": true,
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
+ "node_modules/@json-editor/json-editor": {
+ "version": "2.14.1",
+ "resolved": "https://registry.npmjs.org/@json-editor/json-editor/-/json-editor-2.14.1.tgz",
+ "integrity": "sha512-Q6ACH6bHYtOCtM8AElkwzLYlTt9wzwzea2+ju40cl+s2IH0nM2r9nq3EX9jxSO9/oWJstJLnyuV95vomtSZYqw==",
+ "dependencies": {
+ "core-js": "^3.27.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
"node_modules/@lit-labs/ssr-dom-shim": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.2.tgz",
@@ -2313,14 +2363,118 @@
"integrity": "sha512-an2OZ7/6er9Jja8EDUvU/tmtGIutdlb6LwXOwgjzoCjDRAsUd8sRZMBjoPEy78Xa9iOp+Kglk2CHgVwZuZbWbw=="
},
"node_modules/@radiantearth/stac-fields": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@radiantearth/stac-fields/-/stac-fields-1.3.2.tgz",
- "integrity": "sha512-KiQxY4LKX/kFg4qnZ5+gD0EKCoGyuYMku3vkVyPm6QYr5WuHbu3Hx2LBsu7ru2Cp67dYKluKNcDZfvCIkHmLIg==",
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@radiantearth/stac-fields/-/stac-fields-1.3.3.tgz",
+ "integrity": "sha512-r2AjZtUrB4Epu2hwnXeSvX9KeKE4MzjpFgKmDp2ZSWYunMtqKW+wLuNeE2lnU14LGeXzppUmz7ffAELigkYXIw==",
"dependencies": {
"@musement/iso-duration": "^1.0.0",
"commonmark": "^0.29.3",
"content-type": "^1.0.4",
"multihashes": "^3.1.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/m-mohr"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@radiantearth/stac-migrate/-/stac-migrate-1.6.0.tgz",
+ "integrity": "sha512-/Ke5Uyz4gvi0EyhYF3X2ZrMZ96Ikc9LvhgXgo1RbTWzFhD2s9w9KzK1N9V7odGdsBLlqVjvVwQCT73pghfdZzg==",
+ "dependencies": {
+ "compare-versions": "^3.6.0",
+ "multihashes": "^3.1.2",
+ "yargs": "^17.6.2"
+ },
+ "bin": {
+ "stac-migrate": "bin/cli.js"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate/node_modules/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate/node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate/node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate/node_modules/yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "dependencies": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@radiantearth/stac-migrate/node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+ "engines": {
+ "node": ">=12"
}
},
"node_modules/@samverschueren/stream-to-observable": {
@@ -2343,6 +2497,57 @@
}
}
},
+ "node_modules/@sindresorhus/slugify": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-2.2.1.tgz",
+ "integrity": "sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==",
+ "dependencies": {
+ "@sindresorhus/transliterate": "^1.0.0",
+ "escape-string-regexp": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@sindresorhus/slugify/node_modules/escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@sindresorhus/transliterate": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-1.6.0.tgz",
+ "integrity": "sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==",
+ "dependencies": {
+ "escape-string-regexp": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/@socket.io/component-emitter": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz",
@@ -2638,6 +2843,14 @@
"@types/node": "*"
}
},
+ "node_modules/@types/dompurify": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@types/dompurify/-/dompurify-3.0.5.tgz",
+ "integrity": "sha512-1Wg0g3BtQF7sSb27fJQAKck1HECM6zV1EB66j8JH9i3LCjYabJa0FSdiSgsD5K/RbrsR0SiraKacLB+T8ZVYAg==",
+ "dependencies": {
+ "@types/trusted-types": "*"
+ }
+ },
"node_modules/@types/express": {
"version": "4.17.17",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
@@ -4117,9 +4330,9 @@
"peer": true
},
"node_modules/@vue/compiler-sfc/node_modules/postcss": {
- "version": "8.4.29",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz",
- "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",
+ "version": "8.4.38",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz",
+ "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
"dev": true,
"funding": [
{
@@ -4138,9 +4351,9 @@
"optional": true,
"peer": true,
"dependencies": {
- "nanoid": "^3.3.6",
+ "nanoid": "^3.3.7",
"picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "source-map-js": "^1.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14"
@@ -5000,8 +5213,7 @@
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
- "dev": true
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
},
"node_modules/at-least-node": {
"version": "1.0.0",
@@ -5271,16 +5483,6 @@
"node": ">=8"
}
},
- "node_modules/bindings": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
- "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
- "dev": true,
- "optional": true,
- "dependencies": {
- "file-uri-to-path": "1.0.0"
- }
- },
"node_modules/blob-util": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz",
@@ -5300,13 +5502,13 @@
"dev": true
},
"node_modules/body-parser": {
- "version": "1.20.1",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
- "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
+ "version": "1.20.2",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz",
+ "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==",
"dev": true,
"dependencies": {
"bytes": "3.1.2",
- "content-type": "~1.0.4",
+ "content-type": "~1.0.5",
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
@@ -5314,7 +5516,7 @@
"iconv-lite": "0.4.24",
"on-finished": "2.4.1",
"qs": "6.11.0",
- "raw-body": "2.5.1",
+ "raw-body": "2.5.2",
"type-is": "~1.6.18",
"unpipe": "1.0.0"
},
@@ -6556,6 +6758,36 @@
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
+ "node_modules/color-parse": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz",
+ "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==",
+ "dependencies": {
+ "color-name": "^2.0.0"
+ }
+ },
+ "node_modules/color-parse/node_modules/color-name": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.0.tgz",
+ "integrity": "sha512-SbtvAMWvASO5TE2QP07jHBMXKafgdZz8Vrsrn96fiL+O92/FN/PLARzUW5sKt013fjAprK2d2iCn2hk2Xb5oow==",
+ "engines": {
+ "node": ">=12.20"
+ }
+ },
+ "node_modules/color-rgba": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/color-rgba/-/color-rgba-3.0.0.tgz",
+ "integrity": "sha512-PPwZYkEY3M2THEHHV6Y95sGUie77S7X8v+h1r6LSAPF3/LL2xJ8duUXSrkic31Nzc4odPwHgUbiX/XuTYzQHQg==",
+ "dependencies": {
+ "color-parse": "^2.0.0",
+ "color-space": "^2.0.0"
+ }
+ },
+ "node_modules/color-space": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-space/-/color-space-2.0.1.tgz",
+ "integrity": "sha512-nKqUYlo0vZATVOFHY810BSYjmCARrG7e5R3UE3CQlyjJTvv5kSSmPG1kzm/oDyyqjehM+lW1RnEt9It9GNa5JA=="
+ },
"node_modules/color-string": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
@@ -6578,7 +6810,6 @@
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
"dependencies": {
"delayed-stream": "~1.0.0"
},
@@ -6632,6 +6863,11 @@
"resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz",
"integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ=="
},
+ "node_modules/compare-versions": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz",
+ "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA=="
+ },
"node_modules/component-emitter": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
@@ -6785,9 +7021,9 @@
"dev": true
},
"node_modules/cookie": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
- "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
+ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
"dev": true,
"engines": {
"node": ">= 0.6"
@@ -7446,6 +7682,17 @@
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==",
"dev": true
},
+ "node_modules/cssstyle": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.0.1.tgz",
+ "integrity": "sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==",
+ "dependencies": {
+ "rrweb-cssom": "^0.6.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/csstype": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
@@ -7950,6 +8197,18 @@
"node": ">=0.10"
}
},
+ "node_modules/data-urls": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz",
+ "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==",
+ "dependencies": {
+ "whatwg-mimetype": "^4.0.0",
+ "whatwg-url": "^14.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/date-fns": {
"version": "1.30.1",
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz",
@@ -8001,6 +8260,11 @@
"node": ">=0.10.0"
}
},
+ "node_modules/decimal.js": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
+ "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="
+ },
"node_modules/decode-uri-component": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
@@ -8446,7 +8710,6 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
- "dev": true,
"engines": {
"node": ">=0.4.0"
}
@@ -8623,6 +8886,11 @@
"url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
+ "node_modules/dompurify": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.1.0.tgz",
+ "integrity": "sha512-yoU4rhgPKCo+p5UrWWWNKiIq+ToGqmVVhk0PmMYBK4kRsR3/qhemNFL8f6CFmBd4gMwm3F4T7HBoydP5uY07fA=="
+ },
"node_modules/domutils": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
@@ -8966,7 +9234,6 @@
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
"integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
- "dev": true,
"engines": {
"node": ">=6"
}
@@ -9751,17 +10018,17 @@
"dev": true
},
"node_modules/express": {
- "version": "4.18.2",
- "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
- "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
+ "version": "4.19.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz",
+ "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==",
"dev": true,
"dependencies": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
- "body-parser": "1.20.1",
+ "body-parser": "1.20.2",
"content-disposition": "0.5.4",
"content-type": "~1.0.4",
- "cookie": "0.5.0",
+ "cookie": "0.6.0",
"cookie-signature": "1.0.6",
"debug": "2.6.9",
"depd": "2.0.0",
@@ -10034,6 +10301,11 @@
"node": ">=0.4.0"
}
},
+ "node_modules/fflate": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz",
+ "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A=="
+ },
"node_modules/figgy-pudding": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
@@ -10111,13 +10383,6 @@
"resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz",
"integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA=="
},
- "node_modules/file-uri-to-path": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
- "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
- "dev": true,
- "optional": true
- },
"node_modules/filesize": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
@@ -10272,9 +10537,9 @@
}
},
"node_modules/follow-redirects": {
- "version": "1.15.4",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz",
- "integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==",
+ "version": "1.15.6",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
+ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
"funding": [
{
"type": "individual",
@@ -10401,20 +10666,6 @@
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
"node_modules/function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
@@ -10502,7 +10753,6 @@
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "dev": true,
"engines": {
"node": "6.* || 8.* || >= 10.*"
}
@@ -10581,6 +10831,11 @@
"resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz",
"integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA=="
},
+ "node_modules/glightbox": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/glightbox/-/glightbox-3.3.0.tgz",
+ "integrity": "sha512-SJukatHBZZ/POMOpLUQ6/dhXf/wJTDx1wZ/FwApjseXw2WrRj3Ze9DzNCFYzca0oU7RjXQhi9o02aIZ9SuCz1A=="
+ },
"node_modules/glob": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
@@ -11039,6 +11294,17 @@
"integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==",
"dev": true
},
+ "node_modules/html-encoding-sniffer": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
+ "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
+ "dependencies": {
+ "whatwg-encoding": "^3.1.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/html-entities": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz",
@@ -11215,6 +11481,29 @@
"node": ">=8.0.0"
}
},
+ "node_modules/http-proxy-agent": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
+ "dependencies": {
+ "agent-base": "^7.1.0",
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/http-proxy-agent/node_modules/agent-base": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz",
+ "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==",
+ "dependencies": {
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
"node_modules/http-proxy-middleware": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz",
@@ -11747,9 +12036,9 @@
}
},
"node_modules/ip": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz",
- "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==",
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz",
+ "integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==",
"dev": true
},
"node_modules/ip-regex": {
@@ -12205,6 +12494,11 @@
"node": ">=0.10.0"
}
},
+ "node_modules/is-potential-custom-element-name": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
+ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="
+ },
"node_modules/is-promise": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
@@ -12389,6 +12683,19 @@
"node": ">=0.10.0"
}
},
+ "node_modules/isomorphic-dompurify": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/isomorphic-dompurify/-/isomorphic-dompurify-2.7.0.tgz",
+ "integrity": "sha512-0FTlXP/gEEWW+O/sXaO9yZ4bgegrHnOqzbdCNAMeO2KYIOVMAcqVIo+uTcWYd1+DmI+nV58vUmNW03nauoKn2w==",
+ "dependencies": {
+ "@types/dompurify": "^3.0.5",
+ "dompurify": "^3.1.0",
+ "jsdom": "^24.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/isstream": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
@@ -12438,6 +12745,123 @@
"integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
"dev": true
},
+ "node_modules/jsdom": {
+ "version": "24.0.0",
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz",
+ "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==",
+ "dependencies": {
+ "cssstyle": "^4.0.1",
+ "data-urls": "^5.0.0",
+ "decimal.js": "^10.4.3",
+ "form-data": "^4.0.0",
+ "html-encoding-sniffer": "^4.0.0",
+ "http-proxy-agent": "^7.0.0",
+ "https-proxy-agent": "^7.0.2",
+ "is-potential-custom-element-name": "^1.0.1",
+ "nwsapi": "^2.2.7",
+ "parse5": "^7.1.2",
+ "rrweb-cssom": "^0.6.0",
+ "saxes": "^6.0.0",
+ "symbol-tree": "^3.2.4",
+ "tough-cookie": "^4.1.3",
+ "w3c-xmlserializer": "^5.0.0",
+ "webidl-conversions": "^7.0.0",
+ "whatwg-encoding": "^3.1.1",
+ "whatwg-mimetype": "^4.0.0",
+ "whatwg-url": "^14.0.0",
+ "ws": "^8.16.0",
+ "xml-name-validator": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "canvas": "^2.11.2"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jsdom/node_modules/agent-base": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz",
+ "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==",
+ "dependencies": {
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/jsdom/node_modules/entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/jsdom/node_modules/form-data": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/jsdom/node_modules/https-proxy-agent": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz",
+ "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==",
+ "dependencies": {
+ "agent-base": "^7.0.2",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/jsdom/node_modules/parse5": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz",
+ "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==",
+ "dependencies": {
+ "entities": "^4.4.0"
+ },
+ "funding": {
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
+ }
+ },
+ "node_modules/jsdom/node_modules/ws": {
+ "version": "8.16.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz",
+ "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
"node_modules/jsesc": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
@@ -12607,6 +13031,14 @@
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
"dev": true
},
+ "node_modules/linkify-it": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
+ "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
+ "dependencies": {
+ "uc.micro": "^2.0.0"
+ }
+ },
"node_modules/listr": {
"version": "0.14.3",
"resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz",
@@ -13289,6 +13721,43 @@
"resolved": "https://registry.npmjs.org/mapbox-to-css-font/-/mapbox-to-css-font-2.4.2.tgz",
"integrity": "sha512-f+NBjJJY4T3dHtlEz1wCG7YFlkODEjFIYlxDdLIDMNpkSksqTt+l/d4rjuwItxuzkuMFvPyrjzV2lxRM4ePcIA=="
},
+ "node_modules/markdown-it": {
+ "version": "14.1.0",
+ "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz",
+ "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
+ "dependencies": {
+ "argparse": "^2.0.1",
+ "entities": "^4.4.0",
+ "linkify-it": "^5.0.0",
+ "mdurl": "^2.0.0",
+ "punycode.js": "^2.3.1",
+ "uc.micro": "^2.1.0"
+ },
+ "bin": {
+ "markdown-it": "bin/markdown-it.mjs"
+ }
+ },
+ "node_modules/markdown-it/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
+ },
+ "node_modules/markdown-it/node_modules/entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/markdown-it/node_modules/mdurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
+ "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w=="
+ },
"node_modules/marked": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
@@ -13445,7 +13914,6 @@
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true,
"engines": {
"node": ">= 0.6"
}
@@ -13454,7 +13922,6 @@
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
"dependencies": {
"mime-db": "1.52.0"
},
@@ -13717,17 +14184,10 @@
"thenify-all": "^1.0.0"
}
},
- "node_modules/nan": {
- "version": "2.18.0",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz",
- "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==",
- "dev": true,
- "optional": true
- },
"node_modules/nanoid": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
- "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
"funding": [
{
"type": "github",
@@ -13980,6 +14440,11 @@
"node": ">=0.10.0"
}
},
+ "node_modules/nwsapi": {
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz",
+ "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ=="
+ },
"node_modules/oauth-sign": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
@@ -14254,10 +14719,12 @@
"dev": true
},
"node_modules/ol": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/ol/-/ol-8.1.0.tgz",
- "integrity": "sha512-cx3SH2plpFS9fM8pp1nCypgQXGJD7Mcb1E3mEySmy5XEw1DUEo+kkNzgtAZz5qupekqi7aU9iBJEjCoMfqvO2Q==",
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/ol/-/ol-9.1.0.tgz",
+ "integrity": "sha512-nDrkJ2tzZNpo/wzN/PpHV5zdxbnXZaFktoMaD2cFLEc6gCwlgLY21Yd8wnt/4FjaVYwLBnbN9USXSwIBGcyksQ==",
"dependencies": {
+ "color-rgba": "^3.0.0",
+ "color-space": "^2.0.1",
"earcut": "^2.2.3",
"geotiff": "^2.0.7",
"pbf": "3.2.1",
@@ -14280,6 +14747,33 @@
"ol": ">=8.0.0 || >8.0.0-dev.0 < 8.0.0 || >=7.0.0 <=7.5.1"
}
},
+ "node_modules/ol-pmtiles": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/ol-pmtiles/-/ol-pmtiles-0.2.0.tgz",
+ "integrity": "sha512-PPDc77kJ+GlDNFjCcoAQ5MTHQTDfxuBN4fL1x/TXnAEPmUT/DAyQsHZZtU3PXnw2NimlgCX7v/Plr9SVivPpAQ==",
+ "dependencies": {
+ "pmtiles": "^2.10.0"
+ },
+ "peerDependencies": {
+ "ol": ">=7.3.0"
+ }
+ },
+ "node_modules/ol-stac": {
+ "version": "1.0.0-beta.10",
+ "resolved": "https://registry.npmjs.org/ol-stac/-/ol-stac-1.0.0-beta.10.tgz",
+ "integrity": "sha512-dIKUkOdtAIGYsCrh3x5hqOcPBJRzay8GVFRT2ik6Vm6BlOHc5MUYJeR0tpASUmXC7zdJK5dAVa8I2XRNQxCthg==",
+ "dependencies": {
+ "ol-pmtiles": "^0.2.0",
+ "stac-js": "0.0.9"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/m-mohr"
+ },
+ "peerDependencies": {
+ "ol": ">=7.5.2"
+ }
+ },
"node_modules/on-finished": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -14877,6 +15371,14 @@
"node": ">=8"
}
},
+ "node_modules/pmtiles": {
+ "version": "2.11.0",
+ "resolved": "https://registry.npmjs.org/pmtiles/-/pmtiles-2.11.0.tgz",
+ "integrity": "sha512-dU9SzzaqmCGpdEuTnIba6bDHT6j09ZJFIXxwGpvkiEnce3ZnBB1VKt6+EOmJGueriweaZLAMTUmKVElU2CBe0g==",
+ "dependencies": {
+ "fflate": "^0.8.0"
+ }
+ },
"node_modules/pnp-webpack-plugin": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz",
@@ -15692,12 +16194,12 @@
}
},
"node_modules/proj4": {
- "version": "2.9.0",
- "resolved": "https://registry.npmjs.org/proj4/-/proj4-2.9.0.tgz",
- "integrity": "sha512-BoDXEzCVnRJVZoOKA0QHTFtYoE8lUxtX1jST38DJ8U+v1ixY70Kpwi0Llu6YqSWEH2xqu4XMEBNGcgeRIEywoA==",
+ "version": "2.11.0",
+ "resolved": "https://registry.npmjs.org/proj4/-/proj4-2.11.0.tgz",
+ "integrity": "sha512-SasuTkAx8HnWQHfIyhkdUNJorSJqINHAN3EyMWYiQRVorftz9DHz650YraFgczwgtHOxqnfuDxSNv3C8MUnHeg==",
"dependencies": {
"mgrs": "1.0.0",
- "wkt-parser": "^1.3.1"
+ "wkt-parser": "^1.3.3"
}
},
"node_modules/promise-inflight": {
@@ -15745,8 +16247,7 @@
"node_modules/psl": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz",
- "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==",
- "dev": true
+ "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
},
"node_modules/pub-sub-es": {
"version": "2.0.2",
@@ -15805,9 +16306,17 @@
}
},
"node_modules/punycode": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
- "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/punycode.js": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
+ "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
"engines": {
"node": ">=6"
}
@@ -15872,8 +16381,7 @@
"node_modules/querystringify": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
- "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
- "dev": true
+ "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
},
"node_modules/queue-microtask": {
"version": "1.2.3",
@@ -15946,9 +16454,9 @@
}
},
"node_modules/raw-body": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
- "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
+ "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
"dev": true,
"dependencies": {
"bytes": "3.1.2",
@@ -16428,7 +16936,6 @@
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
- "dev": true,
"engines": {
"node": ">=0.10.0"
}
@@ -16442,8 +16949,7 @@
"node_modules/requires-port": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
- "dev": true
+ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
},
"node_modules/resolve": {
"version": "1.22.4",
@@ -16581,6 +17087,11 @@
"jquery": ">= 1.10.2"
}
},
+ "node_modules/rrweb-cssom": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz",
+ "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw=="
+ },
"node_modules/run-async": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
@@ -16792,6 +17303,17 @@
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
+ "node_modules/saxes": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
+ "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
+ "dependencies": {
+ "xmlchars": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=v12.22.7"
+ }
+ },
"node_modules/schema-utils": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
@@ -17518,9 +18040,9 @@
}
},
"node_modules/source-map-js": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
"engines": {
"node": ">=0.10.0"
}
@@ -17698,6 +18220,15 @@
"deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility",
"dev": true
},
+ "node_modules/stac-js": {
+ "version": "0.0.9",
+ "resolved": "https://registry.npmjs.org/stac-js/-/stac-js-0.0.9.tgz",
+ "integrity": "sha512-V32QWOtvvcnEDd8SfWUIKKKF4rrgMGMp8oxccZ0hYgadE4KEOy9HSw5ftMEUusD4GdndFWLFdVmGw5WMRB9A1A==",
+ "dependencies": {
+ "@radiantearth/stac-migrate": "^1.5.0",
+ "urijs": "^1.19.11"
+ }
+ },
"node_modules/stackframe": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
@@ -18155,6 +18686,11 @@
"node": ">=0.10.0"
}
},
+ "node_modules/symbol-tree": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
+ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
+ },
"node_modules/table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -18690,7 +19226,6 @@
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz",
"integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
- "dev": true,
"dependencies": {
"psl": "^1.1.33",
"punycode": "^2.1.1",
@@ -18705,11 +19240,21 @@
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
- "dev": true,
"engines": {
"node": ">= 4.0.0"
}
},
+ "node_modules/tr46": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz",
+ "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==",
+ "dependencies": {
+ "punycode": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/tryer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
@@ -18889,6 +19434,11 @@
"integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
"dev": true
},
+ "node_modules/uc.micro": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
+ "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="
+ },
"node_modules/uglify-js": {
"version": "3.4.10",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz",
@@ -19169,6 +19719,11 @@
"punycode": "^2.1.0"
}
},
+ "node_modules/urijs": {
+ "version": "1.19.11",
+ "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz",
+ "integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ=="
+ },
"node_modules/urix": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
@@ -19239,7 +19794,6 @@
"version": "1.5.10",
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
- "dev": true,
"dependencies": {
"querystringify": "^2.1.1",
"requires-port": "^1.0.0"
@@ -19538,9 +20092,9 @@
"dev": true
},
"node_modules/vue-loader": {
- "version": "15.10.2",
- "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.2.tgz",
- "integrity": "sha512-ndeSe/8KQc/nlA7TJ+OBhv2qalmj1s+uBs7yHDRFaAXscFTApBzY9F1jES3bautmgWjDlDct0fw8rPuySDLwxw==",
+ "version": "15.11.1",
+ "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.11.1.tgz",
+ "integrity": "sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==",
"dev": true,
"dependencies": {
"@vue/component-compiler-utils": "^3.1.0",
@@ -19795,9 +20349,9 @@
"integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
},
"node_modules/vue/node_modules/postcss": {
- "version": "8.4.29",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz",
- "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",
+ "version": "8.4.38",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz",
+ "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
"funding": [
{
"type": "opencollective",
@@ -19813,9 +20367,9 @@
}
],
"dependencies": {
- "nanoid": "^3.3.6",
+ "nanoid": "^3.3.7",
"picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "source-map-js": "^1.2.0"
},
"engines": {
"node": "^10 || ^12 || >=14"
@@ -19949,6 +20503,17 @@
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
"integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="
},
+ "node_modules/w3c-xmlserializer": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
+ "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
+ "dependencies": {
+ "xml-name-validator": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/watchpack": {
"version": "1.7.5",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz",
@@ -20031,25 +20596,6 @@
"fsevents": "^1.2.7"
}
},
- "node_modules/watchpack-chokidar2/node_modules/fsevents": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
- "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
- "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2",
- "dev": true,
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "dependencies": {
- "bindings": "^1.5.0",
- "nan": "^2.12.1"
- },
- "engines": {
- "node": ">= 4.0"
- }
- },
"node_modules/watchpack-chokidar2/node_modules/is-binary-path": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
@@ -20124,6 +20670,14 @@
"resolved": "https://registry.npmjs.org/web-worker/-/web-worker-1.2.0.tgz",
"integrity": "sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA=="
},
+ "node_modules/webidl-conversions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
+ "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/webpack": {
"version": "4.47.0",
"resolved": "https://registry.npmjs.org/webpack/-/webpack-4.47.0.tgz",
@@ -20470,25 +21024,6 @@
"node": ">=6"
}
},
- "node_modules/webpack-dev-server/node_modules/fsevents": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
- "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
- "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2",
- "dev": true,
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "dependencies": {
- "bindings": "^1.5.0",
- "nan": "^2.12.1"
- },
- "engines": {
- "node": ">= 4.0"
- }
- },
"node_modules/webpack-dev-server/node_modules/globby": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
@@ -20934,6 +21469,48 @@
"node": ">=0.8.0"
}
},
+ "node_modules/whatwg-encoding": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
+ "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
+ "dependencies": {
+ "iconv-lite": "0.6.3"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/whatwg-encoding/node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/whatwg-mimetype": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
+ "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/whatwg-url": {
+ "version": "14.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz",
+ "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==",
+ "dependencies": {
+ "tr46": "^5.0.0",
+ "webidl-conversions": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
@@ -21108,11 +21685,24 @@
"xml-js": "bin/cli.js"
}
},
+ "node_modules/xml-name-validator": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
+ "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/xml-utils": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/xml-utils/-/xml-utils-1.7.0.tgz",
"integrity": "sha512-bWB489+RQQclC7A9OW8e5BzbT8Tu//jtAOvkYwewFr+Q9T9KDGvfzC1lp0pYPEQPEoPQLDkmxkepSC/2gIAZGw=="
},
+ "node_modules/xmlchars": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
+ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
+ },
"node_modules/xmlhttprequest-ssl": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz",
@@ -21364,12 +21954,19 @@
}
},
"@babel/code-frame": {
- "version": "7.22.13",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
- "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
+ "version": "7.24.2",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz",
+ "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==",
"requires": {
- "@babel/highlight": "^7.22.13",
- "chalk": "^2.4.2"
+ "@babel/highlight": "^7.24.2",
+ "picocolors": "^1.0.0"
+ },
+ "dependencies": {
+ "picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ }
}
},
"@babel/compat-data": {
@@ -21402,14 +21999,14 @@
}
},
"@babel/generator": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz",
- "integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==",
+ "version": "7.24.4",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz",
+ "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==",
"dev": true,
"requires": {
- "@babel/types": "^7.22.15",
- "@jridgewell/gen-mapping": "^0.3.2",
- "@jridgewell/trace-mapping": "^0.3.17",
+ "@babel/types": "^7.24.0",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^2.5.1"
}
},
@@ -21486,19 +22083,19 @@
}
},
"@babel/helper-environment-visitor": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz",
- "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+ "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
"dev": true
},
"@babel/helper-function-name": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz",
- "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==",
+ "version": "7.23.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
+ "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"dev": true,
"requires": {
- "@babel/template": "^7.22.5",
- "@babel/types": "^7.22.5"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.23.0"
}
},
"@babel/helper-hoist-variables": {
@@ -21606,15 +22203,15 @@
}
},
"@babel/helper-string-parser": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
- "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
+ "version": "7.24.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz",
+ "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==",
"dev": true
},
"@babel/helper-validator-identifier": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
- "integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ=="
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
},
"@babel/helper-validator-option": {
"version": "7.22.15",
@@ -21645,19 +22242,27 @@
}
},
"@babel/highlight": {
- "version": "7.22.13",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz",
- "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==",
+ "version": "7.24.2",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz",
+ "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==",
"requires": {
- "@babel/helper-validator-identifier": "^7.22.5",
+ "@babel/helper-validator-identifier": "^7.22.20",
"chalk": "^2.4.2",
- "js-tokens": "^4.0.0"
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "dependencies": {
+ "picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
+ }
}
},
"@babel/parser": {
- "version": "7.22.16",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz",
- "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA=="
+ "version": "7.24.4",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz",
+ "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg=="
},
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
"version": "7.22.15",
@@ -22514,31 +23119,31 @@
}
},
"@babel/traverse": {
- "version": "7.22.17",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.17.tgz",
- "integrity": "sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==",
+ "version": "7.24.1",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz",
+ "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==",
"dev": true,
"requires": {
- "@babel/code-frame": "^7.22.13",
- "@babel/generator": "^7.22.15",
- "@babel/helper-environment-visitor": "^7.22.5",
- "@babel/helper-function-name": "^7.22.5",
+ "@babel/code-frame": "^7.24.1",
+ "@babel/generator": "^7.24.1",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-function-name": "^7.23.0",
"@babel/helper-hoist-variables": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.22.16",
- "@babel/types": "^7.22.17",
- "debug": "^4.1.0",
+ "@babel/parser": "^7.24.1",
+ "@babel/types": "^7.24.0",
+ "debug": "^4.3.1",
"globals": "^11.1.0"
}
},
"@babel/types": {
- "version": "7.22.17",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
- "integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
+ "version": "7.24.0",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
+ "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
"dev": true,
"requires": {
- "@babel/helper-string-parser": "^7.22.5",
- "@babel/helper-validator-identifier": "^7.22.15",
+ "@babel/helper-string-parser": "^7.23.4",
+ "@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
}
},
@@ -22657,9 +23262,9 @@
}
},
"@eox/itemfilter": {
- "version": "0.12.1",
- "resolved": "https://registry.npmjs.org/@eox/itemfilter/-/itemfilter-0.12.1.tgz",
- "integrity": "sha512-goE844hAKPV+/nj4l5iPVIFR3UHqvzSxrYR2GzwQE0Xo0fLENtefDqsFgpQylmuHMmBujeRmZV0j3DWUvyXvFA==",
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/@eox/itemfilter/-/itemfilter-0.14.0.tgz",
+ "integrity": "sha512-C2a6vLKaLbZuYUPV9kFxQaRuWsWhRVIdshdFSz6D3lP9PE9oATHC+mvVoCWucIqyy+UDyUXMvMCHmxcRJqDvOQ==",
"requires": {
"@floating-ui/dom": "^1.5.3",
"@turf/boolean-intersects": "^6.5.0",
@@ -22670,10 +23275,19 @@
"toolcool-range-slider": "^4.0.27"
}
},
+ "@eox/jsonform": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/@eox/jsonform/-/jsonform-0.6.1.tgz",
+ "integrity": "sha512-pBCm0wKCaou+XyArvo07alVqcKr4yhXM4KP3+S9yzimXIs55NJN3N5w3PZLuzf1/JuF8RSovCjk4bu0W2gMAzQ==",
+ "requires": {
+ "@json-editor/json-editor": "^2.11.0",
+ "toolcool-range-slider": "^4.0.28"
+ }
+ },
"@eox/layercontrol": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/@eox/layercontrol/-/layercontrol-0.12.0.tgz",
- "integrity": "sha512-R8TmkZAMY87ZBdsCkXeHWBdzQ3gUjn6PYWSwhl6XLZqI4TGk7aLy361P+WDWs1Bcw4hi3Yp9uSWSL6LTt2pWdw==",
+ "version": "0.17.3",
+ "resolved": "https://registry.npmjs.org/@eox/layercontrol/-/layercontrol-0.17.3.tgz",
+ "integrity": "sha512-uPRQT8/HflWaSRlVlhblaREpFSQT/MzgSfwKLPXf2lzGXDwMv8uPjiuJcmSdqvFBeIVAYjKim/0hysFE+QhBgg==",
"requires": {
"dayjs": "^1.11.8",
"lit": "^3.0.2",
@@ -22681,49 +23295,50 @@
"wms-capabilities": "^0.6.0"
}
},
+ "@eox/map": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/@eox/map/-/map-1.6.1.tgz",
+ "integrity": "sha512-ynPBR9zqGOh1tnyuKXoy2ECnvRzO6py8cjB/GGCGzdKL4T9krsFlIUBTPK/sRGwO2tOhl0NBthK00gG/CPLPyg==",
+ "requires": {
+ "lit": "^3.0.2",
+ "ol": "^9.0.0",
+ "ol-stac": "^1.0.0-beta.10",
+ "proj4": "^2.9.2"
+ }
+ },
"@eox/stacinfo": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@eox/stacinfo/-/stacinfo-0.3.0.tgz",
- "integrity": "sha512-2RNSYgy3zsRB0+f64c3+el6wJJVRUkMivT5f9RMYyR2HWWnA0DOQGIIRDzGePtYt1wIjCdkUcXWhvhGYallFGQ==",
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/@eox/stacinfo/-/stacinfo-0.3.3.tgz",
+ "integrity": "sha512-94KHC3Xzoow7ZYOeTECxE7mZ5nStvajlvB4kttSwzYvLvBsazN50YSDVDrcFChXykQf91sRGTr4sdrEy8X1p4g==",
"requires": {
"@radiantearth/stac-fields": "^1.3.2",
"lit": "^3.0.2"
+ }
+ },
+ "@eox/storytelling": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/@eox/storytelling/-/storytelling-0.5.0.tgz",
+ "integrity": "sha512-SwayHqiHviklP/qqs3BQCL3uzywmtmIS1uNR3+z27QNr8oDAuGl8r/1eaI5qlBXTS/2FqvHhGblYOU7BSn0QaA==",
+ "requires": {
+ "@sindresorhus/slugify": "^2.2.1",
+ "glightbox": "^3.3.0",
+ "isomorphic-dompurify": "^2.4.0",
+ "js-yaml": "^4.1.0",
+ "lit": "^3.0.2",
+ "markdown-it": "^14.0.0"
},
"dependencies": {
- "@lit/reactive-element": {
+ "argparse": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.1.tgz",
- "integrity": "sha512-eu50SQXHRthFwWJMp0oAFg95Rvm6MTPjxSXWuvAu7It90WVFLFpNBoIno7XOXSDvVgTrtKnUV4OLJqys2Svn4g==",
- "requires": {
- "@lit-labs/ssr-dom-shim": "^1.1.2"
- }
- },
- "lit": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/lit/-/lit-3.0.2.tgz",
- "integrity": "sha512-ZoVUPGgXOQocP4OvxehEOBmC4rWB4cRYDPaz7aFmH8DFytsCi/NeACbr4C6vNPGDEC07BrhUos7uVNayDKLQ2Q==",
- "requires": {
- "@lit/reactive-element": "^2.0.0",
- "lit-element": "^4.0.0",
- "lit-html": "^3.0.0"
- }
- },
- "lit-element": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.1.tgz",
- "integrity": "sha512-OxRMJem4HKZt0320HplLkBPoi4KHiEHoPHKd8Lzf07ZQVAOKIjZ32yPLRKRDEolFU1RgrQBfSHQMoxKZ72V3Kw==",
- "requires": {
- "@lit-labs/ssr-dom-shim": "^1.1.2",
- "@lit/reactive-element": "^2.0.0",
- "lit-html": "^3.0.0"
- }
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
- "lit-html": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.0.2.tgz",
- "integrity": "sha512-Q1A5lHza3bnmxoWJn6yS6vQZQdExl4fghk8W1G+jnAEdoFNYo5oeBBb/Ol7zSEdKd3TR7+r0zsJQyuWEVguiyQ==",
+ "js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"requires": {
- "@types/trusted-types": "^2.0.2"
+ "argparse": "^2.0.1"
}
}
}
@@ -22806,14 +23421,14 @@
}
},
"@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
+ "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"dev": true,
"requires": {
- "@jridgewell/set-array": "^1.0.1",
+ "@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
+ "@jridgewell/trace-mapping": "^0.3.24"
}
},
"@jridgewell/resolve-uri": {
@@ -22823,9 +23438,9 @@
"dev": true
},
"@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"dev": true
},
"@jridgewell/sourcemap-codec": {
@@ -22835,15 +23450,23 @@
"dev": true
},
"@jridgewell/trace-mapping": {
- "version": "0.3.19",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
- "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"dev": true,
"requires": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
+ "@json-editor/json-editor": {
+ "version": "2.14.1",
+ "resolved": "https://registry.npmjs.org/@json-editor/json-editor/-/json-editor-2.14.1.tgz",
+ "integrity": "sha512-Q6ACH6bHYtOCtM8AElkwzLYlTt9wzwzea2+ju40cl+s2IH0nM2r9nq3EX9jxSO9/oWJstJLnyuV95vomtSZYqw==",
+ "requires": {
+ "core-js": "^3.27.2"
+ }
+ },
"@lit-labs/ssr-dom-shim": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.2.tgz",
@@ -22956,9 +23579,9 @@
"integrity": "sha512-an2OZ7/6er9Jja8EDUvU/tmtGIutdlb6LwXOwgjzoCjDRAsUd8sRZMBjoPEy78Xa9iOp+Kglk2CHgVwZuZbWbw=="
},
"@radiantearth/stac-fields": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@radiantearth/stac-fields/-/stac-fields-1.3.2.tgz",
- "integrity": "sha512-KiQxY4LKX/kFg4qnZ5+gD0EKCoGyuYMku3vkVyPm6QYr5WuHbu3Hx2LBsu7ru2Cp67dYKluKNcDZfvCIkHmLIg==",
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@radiantearth/stac-fields/-/stac-fields-1.3.3.tgz",
+ "integrity": "sha512-r2AjZtUrB4Epu2hwnXeSvX9KeKE4MzjpFgKmDp2ZSWYunMtqKW+wLuNeE2lnU14LGeXzppUmz7ffAELigkYXIw==",
"requires": {
"@musement/iso-duration": "^1.0.0",
"commonmark": "^0.29.3",
@@ -22966,6 +23589,78 @@
"multihashes": "^3.1.2"
}
},
+ "@radiantearth/stac-migrate": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@radiantearth/stac-migrate/-/stac-migrate-1.6.0.tgz",
+ "integrity": "sha512-/Ke5Uyz4gvi0EyhYF3X2ZrMZ96Ikc9LvhgXgo1RbTWzFhD2s9w9KzK1N9V7odGdsBLlqVjvVwQCT73pghfdZzg==",
+ "requires": {
+ "compare-versions": "^3.6.0",
+ "multihashes": "^3.1.2",
+ "yargs": "^17.6.2"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "requires": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
+ },
+ "yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "requires": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ }
+ },
+ "yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="
+ }
+ }
+ },
"@samverschueren/stream-to-observable": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz",
@@ -22975,6 +23670,37 @@
"any-observable": "^0.3.0"
}
},
+ "@sindresorhus/slugify": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-2.2.1.tgz",
+ "integrity": "sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==",
+ "requires": {
+ "@sindresorhus/transliterate": "^1.0.0",
+ "escape-string-regexp": "^5.0.0"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="
+ }
+ }
+ },
+ "@sindresorhus/transliterate": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-1.6.0.tgz",
+ "integrity": "sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==",
+ "requires": {
+ "escape-string-regexp": "^5.0.0"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="
+ }
+ }
+ },
"@socket.io/component-emitter": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz",
@@ -23209,6 +23935,14 @@
"@types/node": "*"
}
},
+ "@types/dompurify": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@types/dompurify/-/dompurify-3.0.5.tgz",
+ "integrity": "sha512-1Wg0g3BtQF7sSb27fJQAKck1HECM6zV1EB66j8JH9i3LCjYabJa0FSdiSgsD5K/RbrsR0SiraKacLB+T8ZVYAg==",
+ "requires": {
+ "@types/trusted-types": "*"
+ }
+ },
"@types/express": {
"version": "4.17.17",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
@@ -24457,16 +25191,16 @@
"peer": true
},
"postcss": {
- "version": "8.4.29",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz",
- "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",
+ "version": "8.4.38",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz",
+ "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
"dev": true,
"optional": true,
"peer": true,
"requires": {
- "nanoid": "^3.3.6",
+ "nanoid": "^3.3.7",
"picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "source-map-js": "^1.2.0"
}
}
}
@@ -25170,8 +25904,7 @@
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
- "dev": true
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
},
"at-least-node": {
"version": "1.0.0",
@@ -25366,16 +26099,6 @@
"integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
"dev": true
},
- "bindings": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
- "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
- "dev": true,
- "optional": true,
- "requires": {
- "file-uri-to-path": "1.0.0"
- }
- },
"blob-util": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz",
@@ -25395,13 +26118,13 @@
"dev": true
},
"body-parser": {
- "version": "1.20.1",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
- "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
+ "version": "1.20.2",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz",
+ "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==",
"dev": true,
"requires": {
"bytes": "3.1.2",
- "content-type": "~1.0.4",
+ "content-type": "~1.0.5",
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
@@ -25409,7 +26132,7 @@
"iconv-lite": "0.4.24",
"on-finished": "2.4.1",
"qs": "6.11.0",
- "raw-body": "2.5.1",
+ "raw-body": "2.5.2",
"type-is": "~1.6.18",
"unpipe": "1.0.0"
},
@@ -26406,6 +27129,35 @@
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
+ "color-parse": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz",
+ "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==",
+ "requires": {
+ "color-name": "^2.0.0"
+ },
+ "dependencies": {
+ "color-name": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.0.tgz",
+ "integrity": "sha512-SbtvAMWvASO5TE2QP07jHBMXKafgdZz8Vrsrn96fiL+O92/FN/PLARzUW5sKt013fjAprK2d2iCn2hk2Xb5oow=="
+ }
+ }
+ },
+ "color-rgba": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/color-rgba/-/color-rgba-3.0.0.tgz",
+ "integrity": "sha512-PPwZYkEY3M2THEHHV6Y95sGUie77S7X8v+h1r6LSAPF3/LL2xJ8duUXSrkic31Nzc4odPwHgUbiX/XuTYzQHQg==",
+ "requires": {
+ "color-parse": "^2.0.0",
+ "color-space": "^2.0.0"
+ }
+ },
+ "color-space": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-space/-/color-space-2.0.1.tgz",
+ "integrity": "sha512-nKqUYlo0vZATVOFHY810BSYjmCARrG7e5R3UE3CQlyjJTvv5kSSmPG1kzm/oDyyqjehM+lW1RnEt9It9GNa5JA=="
+ },
"color-string": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
@@ -26428,7 +27180,6 @@
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
"requires": {
"delayed-stream": "~1.0.0"
}
@@ -26469,6 +27220,11 @@
}
}
},
+ "compare-versions": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz",
+ "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA=="
+ },
"component-emitter": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
@@ -26599,9 +27355,9 @@
"dev": true
},
"cookie": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
- "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
+ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
"dev": true
},
"cookie-signature": {
@@ -27123,6 +27879,14 @@
}
}
},
+ "cssstyle": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.0.1.tgz",
+ "integrity": "sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==",
+ "requires": {
+ "rrweb-cssom": "^0.6.0"
+ }
+ },
"csstype": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
@@ -27512,6 +28276,15 @@
"assert-plus": "^1.0.0"
}
},
+ "data-urls": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz",
+ "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==",
+ "requires": {
+ "whatwg-mimetype": "^4.0.0",
+ "whatwg-url": "^14.0.0"
+ }
+ },
"date-fns": {
"version": "1.30.1",
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz",
@@ -27552,6 +28325,11 @@
"integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
"dev": true
},
+ "decimal.js": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
+ "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="
+ },
"decode-uri-component": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
@@ -27874,8 +28652,7 @@
"delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
- "dev": true
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
},
"depd": {
"version": "2.0.0",
@@ -28016,6 +28793,11 @@
"domelementtype": "^2.2.0"
}
},
+ "dompurify": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.1.0.tgz",
+ "integrity": "sha512-yoU4rhgPKCo+p5UrWWWNKiIq+ToGqmVVhk0PmMYBK4kRsR3/qhemNFL8f6CFmBd4gMwm3F4T7HBoydP5uY07fA=="
+ },
"domutils": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
@@ -28308,8 +29090,7 @@
"escalade": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
- "dev": true
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
},
"escape-html": {
"version": "1.0.3",
@@ -28915,17 +29696,17 @@
}
},
"express": {
- "version": "4.18.2",
- "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
- "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
+ "version": "4.19.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz",
+ "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==",
"dev": true,
"requires": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
- "body-parser": "1.20.1",
+ "body-parser": "1.20.2",
"content-disposition": "0.5.4",
"content-type": "~1.0.4",
- "cookie": "0.5.0",
+ "cookie": "0.6.0",
"cookie-signature": "1.0.6",
"debug": "2.6.9",
"depd": "2.0.0",
@@ -29150,6 +29931,11 @@
"xml-js": "^1.6.11"
}
},
+ "fflate": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz",
+ "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A=="
+ },
"figgy-pudding": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
@@ -29211,13 +29997,6 @@
"resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz",
"integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA=="
},
- "file-uri-to-path": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
- "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
- "dev": true,
- "optional": true
- },
"filesize": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
@@ -29348,9 +30127,9 @@
}
},
"follow-redirects": {
- "version": "1.15.4",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz",
- "integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw=="
+ "version": "1.15.6",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
+ "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA=="
},
"for-each": {
"version": "0.3.3",
@@ -29442,13 +30221,6 @@
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
- "fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "optional": true
- },
"function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
@@ -29517,8 +30289,7 @@
"get-caller-file": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "dev": true
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
},
"get-intrinsic": {
"version": "1.2.1",
@@ -29579,6 +30350,11 @@
"resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz",
"integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA=="
},
+ "glightbox": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/glightbox/-/glightbox-3.3.0.tgz",
+ "integrity": "sha512-SJukatHBZZ/POMOpLUQ6/dhXf/wJTDx1wZ/FwApjseXw2WrRj3Ze9DzNCFYzca0oU7RjXQhi9o02aIZ9SuCz1A=="
+ },
"glob": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
@@ -29937,6 +30713,14 @@
"integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==",
"dev": true
},
+ "html-encoding-sniffer": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
+ "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
+ "requires": {
+ "whatwg-encoding": "^3.1.1"
+ }
+ },
"html-entities": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz",
@@ -30073,6 +30857,25 @@
"requires-port": "^1.0.0"
}
},
+ "http-proxy-agent": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
+ "requires": {
+ "agent-base": "^7.1.0",
+ "debug": "^4.3.4"
+ },
+ "dependencies": {
+ "agent-base": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz",
+ "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==",
+ "requires": {
+ "debug": "^4.3.4"
+ }
+ }
+ }
+ },
"http-proxy-middleware": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz",
@@ -30467,9 +31270,9 @@
"dev": true
},
"ip": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz",
- "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==",
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz",
+ "integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==",
"dev": true
},
"ip-regex": {
@@ -30785,6 +31588,11 @@
"isobject": "^3.0.1"
}
},
+ "is-potential-custom-element-name": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
+ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="
+ },
"is-promise": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
@@ -30918,6 +31726,16 @@
"integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
"dev": true
},
+ "isomorphic-dompurify": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/isomorphic-dompurify/-/isomorphic-dompurify-2.7.0.tgz",
+ "integrity": "sha512-0FTlXP/gEEWW+O/sXaO9yZ4bgegrHnOqzbdCNAMeO2KYIOVMAcqVIo+uTcWYd1+DmI+nV58vUmNW03nauoKn2w==",
+ "requires": {
+ "@types/dompurify": "^3.0.5",
+ "dompurify": "^3.1.0",
+ "jsdom": "^24.0.0"
+ }
+ },
"isstream": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
@@ -30961,6 +31779,82 @@
"integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
"dev": true
},
+ "jsdom": {
+ "version": "24.0.0",
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz",
+ "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==",
+ "requires": {
+ "cssstyle": "^4.0.1",
+ "data-urls": "^5.0.0",
+ "decimal.js": "^10.4.3",
+ "form-data": "^4.0.0",
+ "html-encoding-sniffer": "^4.0.0",
+ "http-proxy-agent": "^7.0.0",
+ "https-proxy-agent": "^7.0.2",
+ "is-potential-custom-element-name": "^1.0.1",
+ "nwsapi": "^2.2.7",
+ "parse5": "^7.1.2",
+ "rrweb-cssom": "^0.6.0",
+ "saxes": "^6.0.0",
+ "symbol-tree": "^3.2.4",
+ "tough-cookie": "^4.1.3",
+ "w3c-xmlserializer": "^5.0.0",
+ "webidl-conversions": "^7.0.0",
+ "whatwg-encoding": "^3.1.1",
+ "whatwg-mimetype": "^4.0.0",
+ "whatwg-url": "^14.0.0",
+ "ws": "^8.16.0",
+ "xml-name-validator": "^5.0.0"
+ },
+ "dependencies": {
+ "agent-base": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz",
+ "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==",
+ "requires": {
+ "debug": "^4.3.4"
+ }
+ },
+ "entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
+ },
+ "form-data": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "https-proxy-agent": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz",
+ "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==",
+ "requires": {
+ "agent-base": "^7.0.2",
+ "debug": "4"
+ }
+ },
+ "parse5": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz",
+ "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==",
+ "requires": {
+ "entities": "^4.4.0"
+ }
+ },
+ "ws": {
+ "version": "8.16.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz",
+ "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==",
+ "requires": {}
+ }
+ }
+ },
"jsesc": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
@@ -31108,6 +32002,14 @@
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
"dev": true
},
+ "linkify-it": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
+ "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
+ "requires": {
+ "uc.micro": "^2.0.0"
+ }
+ },
"listr": {
"version": "0.14.3",
"resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz",
@@ -31645,6 +32547,36 @@
"resolved": "https://registry.npmjs.org/mapbox-to-css-font/-/mapbox-to-css-font-2.4.2.tgz",
"integrity": "sha512-f+NBjJJY4T3dHtlEz1wCG7YFlkODEjFIYlxDdLIDMNpkSksqTt+l/d4rjuwItxuzkuMFvPyrjzV2lxRM4ePcIA=="
},
+ "markdown-it": {
+ "version": "14.1.0",
+ "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz",
+ "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
+ "requires": {
+ "argparse": "^2.0.1",
+ "entities": "^4.4.0",
+ "linkify-it": "^5.0.0",
+ "mdurl": "^2.0.0",
+ "punycode.js": "^2.3.1",
+ "uc.micro": "^2.1.0"
+ },
+ "dependencies": {
+ "argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
+ },
+ "entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
+ },
+ "mdurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
+ "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w=="
+ }
+ }
+ },
"marked": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
@@ -31775,14 +32707,12 @@
"mime-db": {
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
},
"mime-types": {
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
"requires": {
"mime-db": "1.52.0"
}
@@ -31995,17 +32925,10 @@
"thenify-all": "^1.0.0"
}
},
- "nan": {
- "version": "2.18.0",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz",
- "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==",
- "dev": true,
- "optional": true
- },
"nanoid": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
- "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g=="
},
"nanomatch": {
"version": "1.2.13",
@@ -32205,6 +33128,11 @@
"integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==",
"dev": true
},
+ "nwsapi": {
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz",
+ "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ=="
+ },
"oauth-sign": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
@@ -32408,10 +33336,12 @@
"dev": true
},
"ol": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/ol/-/ol-8.1.0.tgz",
- "integrity": "sha512-cx3SH2plpFS9fM8pp1nCypgQXGJD7Mcb1E3mEySmy5XEw1DUEo+kkNzgtAZz5qupekqi7aU9iBJEjCoMfqvO2Q==",
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/ol/-/ol-9.1.0.tgz",
+ "integrity": "sha512-nDrkJ2tzZNpo/wzN/PpHV5zdxbnXZaFktoMaD2cFLEc6gCwlgLY21Yd8wnt/4FjaVYwLBnbN9USXSwIBGcyksQ==",
"requires": {
+ "color-rgba": "^3.0.0",
+ "color-space": "^2.0.1",
"earcut": "^2.2.3",
"geotiff": "^2.0.7",
"pbf": "3.2.1",
@@ -32427,6 +33357,23 @@
"mapbox-to-css-font": "^2.4.1"
}
},
+ "ol-pmtiles": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/ol-pmtiles/-/ol-pmtiles-0.2.0.tgz",
+ "integrity": "sha512-PPDc77kJ+GlDNFjCcoAQ5MTHQTDfxuBN4fL1x/TXnAEPmUT/DAyQsHZZtU3PXnw2NimlgCX7v/Plr9SVivPpAQ==",
+ "requires": {
+ "pmtiles": "^2.10.0"
+ }
+ },
+ "ol-stac": {
+ "version": "1.0.0-beta.10",
+ "resolved": "https://registry.npmjs.org/ol-stac/-/ol-stac-1.0.0-beta.10.tgz",
+ "integrity": "sha512-dIKUkOdtAIGYsCrh3x5hqOcPBJRzay8GVFRT2ik6Vm6BlOHc5MUYJeR0tpASUmXC7zdJK5dAVa8I2XRNQxCthg==",
+ "requires": {
+ "ol-pmtiles": "^0.2.0",
+ "stac-js": "0.0.9"
+ }
+ },
"on-finished": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -32901,6 +33848,14 @@
"find-up": "^4.0.0"
}
},
+ "pmtiles": {
+ "version": "2.11.0",
+ "resolved": "https://registry.npmjs.org/pmtiles/-/pmtiles-2.11.0.tgz",
+ "integrity": "sha512-dU9SzzaqmCGpdEuTnIba6bDHT6j09ZJFIXxwGpvkiEnce3ZnBB1VKt6+EOmJGueriweaZLAMTUmKVElU2CBe0g==",
+ "requires": {
+ "fflate": "^0.8.0"
+ }
+ },
"pnp-webpack-plugin": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz",
@@ -33597,12 +34552,12 @@
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
},
"proj4": {
- "version": "2.9.0",
- "resolved": "https://registry.npmjs.org/proj4/-/proj4-2.9.0.tgz",
- "integrity": "sha512-BoDXEzCVnRJVZoOKA0QHTFtYoE8lUxtX1jST38DJ8U+v1ixY70Kpwi0Llu6YqSWEH2xqu4XMEBNGcgeRIEywoA==",
+ "version": "2.11.0",
+ "resolved": "https://registry.npmjs.org/proj4/-/proj4-2.11.0.tgz",
+ "integrity": "sha512-SasuTkAx8HnWQHfIyhkdUNJorSJqINHAN3EyMWYiQRVorftz9DHz650YraFgczwgtHOxqnfuDxSNv3C8MUnHeg==",
"requires": {
"mgrs": "1.0.0",
- "wkt-parser": "^1.3.1"
+ "wkt-parser": "^1.3.3"
}
},
"promise-inflight": {
@@ -33647,8 +34602,7 @@
"psl": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz",
- "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==",
- "dev": true
+ "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
},
"pub-sub-es": {
"version": "2.0.2",
@@ -33711,9 +34665,14 @@
}
},
"punycode": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
- "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA=="
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="
+ },
+ "punycode.js": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
+ "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA=="
},
"q": {
"version": "1.5.1",
@@ -33755,8 +34714,7 @@
"querystringify": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
- "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
- "dev": true
+ "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
},
"queue-microtask": {
"version": "1.2.3",
@@ -33806,9 +34764,9 @@
"dev": true
},
"raw-body": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
- "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
+ "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
"dev": true,
"requires": {
"bytes": "3.1.2",
@@ -34187,8 +35145,7 @@
"require-directory": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
- "dev": true
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
},
"require-main-filename": {
"version": "2.0.0",
@@ -34199,8 +35156,7 @@
"requires-port": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
- "dev": true
+ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
},
"resolve": {
"version": "1.22.4",
@@ -34309,6 +35265,11 @@
"jquery": ">= 1.10.2"
}
},
+ "rrweb-cssom": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz",
+ "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw=="
+ },
"run-async": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
@@ -34445,6 +35406,14 @@
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
+ "saxes": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
+ "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
+ "requires": {
+ "xmlchars": "^2.2.0"
+ }
+ },
"schema-utils": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
@@ -35038,9 +36007,9 @@
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"source-map-js": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg=="
},
"source-map-resolve": {
"version": "0.5.3",
@@ -35194,6 +36163,15 @@
"integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
"dev": true
},
+ "stac-js": {
+ "version": "0.0.9",
+ "resolved": "https://registry.npmjs.org/stac-js/-/stac-js-0.0.9.tgz",
+ "integrity": "sha512-V32QWOtvvcnEDd8SfWUIKKKF4rrgMGMp8oxccZ0hYgadE4KEOy9HSw5ftMEUusD4GdndFWLFdVmGw5WMRB9A1A==",
+ "requires": {
+ "@radiantearth/stac-migrate": "^1.5.0",
+ "urijs": "^1.19.11"
+ }
+ },
"stackframe": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
@@ -35565,6 +36543,11 @@
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==",
"dev": true
},
+ "symbol-tree": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
+ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
+ },
"table": {
"version": "5.4.6",
"resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
@@ -35992,7 +36975,6 @@
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz",
"integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
- "dev": true,
"requires": {
"psl": "^1.1.33",
"punycode": "^2.1.1",
@@ -36003,11 +36985,18 @@
"universalify": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
- "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
- "dev": true
+ "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg=="
}
}
},
+ "tr46": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz",
+ "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==",
+ "requires": {
+ "punycode": "^2.3.1"
+ }
+ },
"tryer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
@@ -36145,6 +37134,11 @@
"integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
"dev": true
},
+ "uc.micro": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
+ "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="
+ },
"uglify-js": {
"version": "3.4.10",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz",
@@ -36363,6 +37357,11 @@
"punycode": "^2.1.0"
}
},
+ "urijs": {
+ "version": "1.19.11",
+ "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz",
+ "integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ=="
+ },
"urix": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
@@ -36433,7 +37432,6 @@
"version": "1.5.10",
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
- "dev": true,
"requires": {
"querystringify": "^2.1.1",
"requires-port": "^1.0.0"
@@ -36578,13 +37576,13 @@
"integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
},
"postcss": {
- "version": "8.4.29",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz",
- "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",
+ "version": "8.4.38",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz",
+ "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
"requires": {
- "nanoid": "^3.3.6",
+ "nanoid": "^3.3.7",
"picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
+ "source-map-js": "^1.2.0"
}
}
}
@@ -36681,9 +37679,9 @@
"dev": true
},
"vue-loader": {
- "version": "15.10.2",
- "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.2.tgz",
- "integrity": "sha512-ndeSe/8KQc/nlA7TJ+OBhv2qalmj1s+uBs7yHDRFaAXscFTApBzY9F1jES3bautmgWjDlDct0fw8rPuySDLwxw==",
+ "version": "15.11.1",
+ "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.11.1.tgz",
+ "integrity": "sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==",
"dev": true,
"requires": {
"@vue/component-compiler-utils": "^3.1.0",
@@ -36948,6 +37946,14 @@
}
}
},
+ "w3c-xmlserializer": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
+ "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
+ "requires": {
+ "xml-name-validator": "^5.0.0"
+ }
+ },
"watchpack": {
"version": "1.7.5",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz",
@@ -37021,17 +38027,6 @@
"upath": "^1.1.1"
}
},
- "fsevents": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
- "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
- "dev": true,
- "optional": true,
- "requires": {
- "bindings": "^1.5.0",
- "nan": "^2.12.1"
- }
- },
"is-binary-path": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
@@ -37102,6 +38097,11 @@
"resolved": "https://registry.npmjs.org/web-worker/-/web-worker-1.2.0.tgz",
"integrity": "sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA=="
},
+ "webidl-conversions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
+ "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g=="
+ },
"webpack": {
"version": "4.47.0",
"resolved": "https://registry.npmjs.org/webpack/-/webpack-4.47.0.tgz",
@@ -37468,17 +38468,6 @@
"locate-path": "^3.0.0"
}
},
- "fsevents": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
- "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
- "dev": true,
- "optional": true,
- "requires": {
- "bindings": "^1.5.0",
- "nan": "^2.12.1"
- }
- },
"globby": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
@@ -37751,6 +38740,38 @@
"integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==",
"dev": true
},
+ "whatwg-encoding": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
+ "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
+ "requires": {
+ "iconv-lite": "0.6.3"
+ },
+ "dependencies": {
+ "iconv-lite": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ }
+ }
+ }
+ },
+ "whatwg-mimetype": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
+ "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg=="
+ },
+ "whatwg-url": {
+ "version": "14.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz",
+ "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==",
+ "requires": {
+ "tr46": "^5.0.0",
+ "webidl-conversions": "^7.0.0"
+ }
+ },
"which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
@@ -37877,11 +38898,21 @@
"sax": "^1.2.4"
}
},
+ "xml-name-validator": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
+ "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg=="
+ },
"xml-utils": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/xml-utils/-/xml-utils-1.7.0.tgz",
"integrity": "sha512-bWB489+RQQclC7A9OW8e5BzbT8Tu//jtAOvkYwewFr+Q9T9KDGvfzC1lp0pYPEQPEoPQLDkmxkepSC/2gIAZGw=="
},
+ "xmlchars": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
+ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
+ },
"xmlhttprequest-ssl": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz",
diff --git a/app/package.json b/app/package.json
index fe588bc14c..21985ab3d3 100644
--- a/app/package.json
+++ b/app/package.json
@@ -16,9 +16,12 @@
},
"dependencies": {
"@chenfengyuan/vue-countdown": "^1.1.5",
- "@eox/itemfilter": "0.12.1",
- "@eox/layercontrol": "^0.12.0",
- "@eox/stacinfo": "^0.3.0",
+ "@eox/itemfilter": "0.14.0",
+ "@eox/jsonform": "^0.6.1",
+ "@eox/layercontrol": "^0.17.3",
+ "@eox/stacinfo": "^0.3.3",
+ "@eox/map": "^1.6.1",
+ "@eox/storytelling": "^0.5.0",
"@turf/difference": "^6.5.0",
"axios": "^0.21.1",
"chart.js": "2.9.3",
@@ -40,7 +43,7 @@
"luxon": "^1.28.1",
"marked": "^4.0.10",
"medium-zoom": "^1.0.6",
- "ol": "^8.1.0",
+ "ol": "^9.1.0",
"ol-mapbox-style": "^11.0.0",
"proj4": "^2.8.0",
"regl": "^2.1.0",
diff --git a/app/public/css/esa.scss b/app/public/css/esa.scss
index 93430b241e..9bdb1f1e74 100644
--- a/app/public/css/esa.scss
+++ b/app/public/css/esa.scss
@@ -37,3 +37,7 @@
font-family: 'NotesESABold', sans-serif !important;
}
}
+
+.v-expansion-panel-header {
+ font-weight: bold;
+}
diff --git a/app/public/css/gtif.scss b/app/public/css/gtif.scss
index d806274408..93a7c3a249 100644
--- a/app/public/css/gtif.scss
+++ b/app/public/css/gtif.scss
@@ -41,4 +41,8 @@
.chartareapanel {
background-color: #dde3ea!important;
+}
+
+.v-expansion-panel-header {
+ text-transform: uppercase;
}
\ No newline at end of file
diff --git a/app/public/css/trilateral.scss b/app/public/css/trilateral.scss
index 23694de82c..5c27946366 100644
--- a/app/public/css/trilateral.scss
+++ b/app/public/css/trilateral.scss
@@ -5,7 +5,7 @@
}
.v-application {
- font-family: 'NotesESA', 'Open Sans', sans-serif;
+ font-family: 'Roboto', 'Open Sans', sans-serif;
}
.brand-trilateral {
@@ -30,3 +30,6 @@
font-family: 'Roboto', sans-serif !important;
}
}
+.v-expansion-panel-header {
+ font-weight: bold;
+}
diff --git a/app/public/data/dashboards/225b5c8b3b310cb2.json b/app/public/data/dashboards/225b5c8b3b310cb2.json
index 9cc96ebc92..de7cf0e298 100644
--- a/app/public/data/dashboards/225b5c8b3b310cb2.json
+++ b/app/public/data/dashboards/225b5c8b3b310cb2.json
@@ -36,7 +36,7 @@
"lat": -74.78706020071398
}
},
- "id": "S1GRD-ADD@1678712504857",
+ "id": "World-ADD_West_Antarctica_S1@1678712504857",
"title": "Antarctica: West Antarctica (Sentinel-1)"
},
{
@@ -55,16 +55,16 @@
"lat": -75.53387276342876
}
},
- "id": "Meltmap-ADD@1675334888525",
+ "id": "World-ADD_Meltmap@1675334888525",
"title": "Antarctica: Antarctica Meltmap"
},
{
"width": 4,
- "text": "# Multimedia\n\nDiscover more on ESA Multimedia:\n\n- [Thwaites flow animation](https://www.esa.int/ESA_Multimedia/Videos/2023/01/Thwaites_flow#.Y76TvRaQr_4.link)\n- [Thwaites and Pine Island Glaciers in West Antarctica](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_and_Pine_Island_Glaciers_in_West_Antarctica#.Y76T-w7JZ_g.link)\n- [Thwaites Glacier](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_Glacier#.Y76TxZj2TFY.link)\n- [Thwaites Ice Tongue from Sentinel-2](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_Ice_Tongue_from_Sentinel-2#.Y76Tz4U1uWY.link)\n-[Thwaites\u2019 crevasses in motion](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_crevasses_in_motion#.Y76T-R64Dr4.link)\n- [Ebb and flow of lakes deep below Thwaites glacier](https://www.esa.int/ESA_Multimedia/Videos/2020/12/Ebb_and_flow_of_lakes_deep_below_Thwaites_glacier#.Y76T3Ybmw4k.link)\n- [The fracturing of Antarctica\u2019s Pine Island and Thwaites Glaciers (2014\u20132020)](https://www.esa.int/ESA_Multimedia/Videos/2020/09/The_fracturing_of_Antarctica_s_Pine_Island_and_Thwaites_Glaciers_2014_2020#.Y76T25AYUKg.link)\n- [4D Antarctica Animation](https://www.esa.int/ESA_Multimedia/Videos/2022/11/FutureEO_4DAntarctica#.Y-tcwXG3EBk.link)\n\n \n# Explore Datasets\n\nThis **EO Dashboard** provides access to several EO products over Antarctica. Visualise these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n- [Antarctica Meltmaps](https://eodashboard.org/explore?poi=Meltmap-ADD)\n- [Antarctica Melt onset](https://eodashboard.org/explore?poi=Onset-ADD) \n- [Antarctica End of melt season](https://eodashboard.org/explore?poi=End-ADD)\n- [Antarctica Melt duration](https://eodashboard.org/explore?poi=Days-ADD)\n- [Sentinel-1 EW Dataset over Thwaites and Pine Island Glaciers](https://eodashboard.org/explore?poi=S1GRD-ADD)\n \n \n### Map baselayer and geometries\n\nThe Pine Island Glacier and Thwaites Glacier geometries shown on this map are for illustration purposes only. They were produced using [QGIS](http://www.qgis.org) by georeferencing maps made available by [the Polar Geospatial Center](https://data.pgc.umn.edu/maps/antarctica/pgc/19/preview/Thwaites%20Glacier%20Regional.jpg) and the [Quantarctica/Norwegian Polar Institute](https://www.carbonbrief.org/guest-post-how-close-is-the-west-antarctic-ice-sheet-to-a-tipping-point/).\n\nThis map uses the baselayer Antarctic hillshade and bathymetry south of 60\u00b0S. Citation: REMA: Howat, I. M., Porter, C., Smith, B. E., Noh, M.-J., and Morin, P.: The Reference Elevation Model of Antarctica, The Cryosphere, 13, 665-674, [external resource], 2019. GEBCO Compilation Group (2019) GEBCO 2019 Grid (doi:10.5285/836f016a-33be-6ddc-e053-6c86abc0788e) \n\n \n# Contributors\n\nDatasets provided by 4D Antarctica Project and SentinelHub (Euro Data Cube). Story prepared by Romina Persi (EJR Quarz for ESA), Anca Anghelea (ESA), and Isobel Laurence (ESA). Data preparation and visualisation by Lubomir Dolezal (EOX) and Alessandro Scremin (Rhea Group). Supporting graphics provided by ESA Multimedia.\n",
+ "text": "# Multimedia\n\nDiscover more on ESA Multimedia:\n\n- [Thwaites flow animation](https://www.esa.int/ESA_Multimedia/Videos/2023/01/Thwaites_flow#.Y76TvRaQr_4.link)\n- [Thwaites and Pine Island Glaciers in West Antarctica](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_and_Pine_Island_Glaciers_in_West_Antarctica#.Y76T-w7JZ_g.link)\n- [Thwaites Glacier](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_Glacier#.Y76TxZj2TFY.link)\n- [Thwaites Ice Tongue from Sentinel-2](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_Ice_Tongue_from_Sentinel-2#.Y76Tz4U1uWY.link)\n-[Thwaites\u2019 crevasses in motion](https://www.esa.int/ESA_Multimedia/Images/2023/01/Thwaites_crevasses_in_motion#.Y76T-R64Dr4.link)\n- [Ebb and flow of lakes deep below Thwaites glacier](https://www.esa.int/ESA_Multimedia/Videos/2020/12/Ebb_and_flow_of_lakes_deep_below_Thwaites_glacier#.Y76T3Ybmw4k.link)\n- [The fracturing of Antarctica\u2019s Pine Island and Thwaites Glaciers (2014\u20132020)](https://www.esa.int/ESA_Multimedia/Videos/2020/09/The_fracturing_of_Antarctica_s_Pine_Island_and_Thwaites_Glaciers_2014_2020#.Y76T25AYUKg.link)\n- [4D Antarctica Animation](https://www.esa.int/ESA_Multimedia/Videos/2022/11/FutureEO_4DAntarctica#.Y-tcwXG3EBk.link)\n\n \n# Explore Datasets\n\nThis **EO Dashboard** provides access to several EO products over Antarctica. Visualise these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n- [Antarctica Meltmaps](https://eodashboard.org/explore?poi=World-ADD_Meltmap)\n- [Antarctica Melt onset](https://eodashboard.org/explore?poi=Onset-ADD) \n- [Antarctica End of melt season](https://eodashboard.org/explore?poi=End-ADD)\n- [Antarctica Melt duration](https://eodashboard.org/explore?poi=Days-ADD)\n- [Sentinel-1 EW Dataset over Thwaites and Pine Island Glaciers](https://eodashboard.org/explore?poi=World-ADD_West_Antarctica_S1)\n \n \n### Map baselayer and geometries\n\nThe Pine Island Glacier and Thwaites Glacier geometries shown on this map are for illustration purposes only. They were produced using [QGIS](http://www.qgis.org) by georeferencing maps made available by [the Polar Geospatial Center](https://data.pgc.umn.edu/maps/antarctica/pgc/19/preview/Thwaites%20Glacier%20Regional.jpg) and the [Quantarctica/Norwegian Polar Institute](https://www.carbonbrief.org/guest-post-how-close-is-the-west-antarctic-ice-sheet-to-a-tipping-point/).\n\nThis map uses the baselayer Antarctic hillshade and bathymetry south of 60\u00b0S. Citation: REMA: Howat, I. M., Porter, C., Smith, B. E., Noh, M.-J., and Morin, P.: The Reference Elevation Model of Antarctica, The Cryosphere, 13, 665-674, [external resource], 2019. GEBCO Compilation Group (2019) GEBCO 2019 Grid (doi:10.5285/836f016a-33be-6ddc-e053-6c86abc0788e) \n\n \n# Contributors\n\nDatasets provided by 4D Antarctica Project and SentinelHub (Euro Data Cube). Story prepared by Romina Persi (EJR Quarz for ESA), Anca Anghelea (ESA), and Isobel Laurence (ESA). Data preparation and visualisation by Lubomir Dolezal (EOX) and Alessandro Scremin (Rhea Group). Supporting graphics provided by ESA Multimedia.\n",
"id": " -1675352374890",
"title": " ",
- "__generatedText__": "
Multimedia
\nDiscover more on ESA Multimedia:
\n\n
\nExplore Datasets
\nThis EO Dashboard provides access to several EO products over Antarctica. Visualise these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\n\n
\nMap baselayer and geometries
\nThe Pine Island Glacier and Thwaites Glacier geometries shown on this map are for illustration purposes only. They were produced using QGIS by georeferencing maps made available by the Polar Geospatial Center and the Quantarctica/Norwegian Polar Institute.
\nThis map uses the baselayer Antarctic hillshade and bathymetry south of 60\u00b0S. Citation: REMA: Howat, I. M., Porter, C., Smith, B. E., Noh, M.-J., and Morin, P.: The Reference Elevation Model of Antarctica, The Cryosphere, 13, 665-674, [external resource], 2019. GEBCO Compilation Group (2019) GEBCO 2019 Grid (doi:10.5285/836f016a-33be-6ddc-e053-6c86abc0788e)
\n
\nContributors
\nDatasets provided by 4D Antarctica Project and SentinelHub (Euro Data Cube). Story prepared by Romina Persi (EJR Quarz for ESA), Anca Anghelea (ESA), and Isobel Laurence (ESA). Data preparation and visualisation by Lubomir Dolezal (EOX) and Alessandro Scremin (Rhea Group). Supporting graphics provided by ESA Multimedia.
\n"
+ "__generatedText__": "Multimedia
\nDiscover more on ESA Multimedia:
\n\n
\nExplore Datasets
\nThis EO Dashboard provides access to several EO products over Antarctica. Visualise these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\n\n
\nMap baselayer and geometries
\nThe Pine Island Glacier and Thwaites Glacier geometries shown on this map are for illustration purposes only. They were produced using QGIS by georeferencing maps made available by the Polar Geospatial Center and the Quantarctica/Norwegian Polar Institute.
\nThis map uses the baselayer Antarctic hillshade and bathymetry south of 60\u00b0S. Citation: REMA: Howat, I. M., Porter, C., Smith, B. E., Noh, M.-J., and Morin, P.: The Reference Elevation Model of Antarctica, The Cryosphere, 13, 665-674, [external resource], 2019. GEBCO Compilation Group (2019) GEBCO 2019 Grid (doi:10.5285/836f016a-33be-6ddc-e053-6c86abc0788e)
\n
\nContributors
\nDatasets provided by 4D Antarctica Project and SentinelHub (Euro Data Cube). Story prepared by Romina Persi (EJR Quarz for ESA), Anca Anghelea (ESA), and Isobel Laurence (ESA). Data preparation and visualisation by Lubomir Dolezal (EOX) and Alessandro Scremin (Rhea Group). Supporting graphics provided by ESA Multimedia.
\n"
}
],
"title": "Rapid Retreat of the Thwaites Glacier"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/6be3fcfd33789f76.json b/app/public/data/dashboards/6be3fcfd33789f76.json
index f073a9b2bc..53cfe40ce7 100644
--- a/app/public/data/dashboards/6be3fcfd33789f76.json
+++ b/app/public/data/dashboards/6be3fcfd33789f76.json
@@ -46,10 +46,10 @@
},
{
"width": 1,
- "text": " ESA has been building radar altimeters since the early 1990s. Radar altimeters use a microwave signal to measure sea ice freeboard. In this frequency band, the signal can penetrate further into snow that lies on sea ice. To better understand how far the microwaves can penetrate the snowpack, complementary field or airborne campaigns are needed to validate the satellite data. Researchers are comparing altimeter signals at different frequencies to calculate how much snow lies on top of the sea ice. This is important as the amount of snow can also impact the freeboard\u2014for instance a heavy snow-load can weigh the sea ice down and may even push it under water.\n \nResearchers can calculate sea ice thickness once the freeboard has been established. The ESA Climate Change Initiative Sea Ice Thickness data set presented here shows the decrease in winter sea ice thickness over the past 15 years using information from ESA\u2019s Envisat and CryoSat-2 satellite missions.\n\n\n## Explore Datasets \n \nThis **EO Dashboard** provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[Sea Ice Thickness from Cryosat](https://www.eodashboard.org/explore?poi=W9-SIC) \n[Sea Ice Thickness from Envisat](https://www.eodashboard.org/explore?poi=W8-SIE) \n[Sea Ice Thickness from IceSAT-2](https://www.eodashboard.org/explore?poi=W10-SITI)\n \n[Sea Ice Concentration Antarctic from GCOM-W](https://www.eodashboard.org/explore?poi=World-N12)",
+ "text": " ESA has been building radar altimeters since the early 1990s. Radar altimeters use a microwave signal to measure sea ice freeboard. In this frequency band, the signal can penetrate further into snow that lies on sea ice. To better understand how far the microwaves can penetrate the snowpack, complementary field or airborne campaigns are needed to validate the satellite data. Researchers are comparing altimeter signals at different frequencies to calculate how much snow lies on top of the sea ice. This is important as the amount of snow can also impact the freeboard\u2014for instance a heavy snow-load can weigh the sea ice down and may even push it under water.\n \nResearchers can calculate sea ice thickness once the freeboard has been established. The ESA Climate Change Initiative Sea Ice Thickness data set presented here shows the decrease in winter sea ice thickness over the past 15 years using information from ESA\u2019s Envisat and CryoSat-2 satellite missions.\n\n\n## Explore Datasets \n \nThis **EO Dashboard** provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[Sea Ice Thickness from Cryosat](https://www.eodashboard.org/explore?poi=W9-SIC) \n[Sea Ice Thickness from Envisat](https://www.eodashboard.org/explore?poi=W8-SIE) \n[Sea Ice Thickness from IceSAT-2](https://www.eodashboard.org/explore?poi=W10-SITI)\n \n[Sea Ice Concentration Antarctic from GCOM-W](https://www.eodashboard.org/explore?poi=World-N12_sea_ice_concentration_arctic)",
"id": "Envisat-1652251767198",
"title": "Envisat",
- "__generatedText__": " ESA has been building radar altimeters since the early 1990s. Radar altimeters use a microwave signal to measure sea ice freeboard. In this frequency band, the signal can penetrate further into snow that lies on sea ice. To better understand how far the microwaves can penetrate the snowpack, complementary field or airborne campaigns are needed to validate the satellite data. Researchers are comparing altimeter signals at different frequencies to calculate how much snow lies on top of the sea ice. This is important as the amount of snow can also impact the freeboard\u2014for instance a heavy snow-load can weigh the sea ice down and may even push it under water.
\nResearchers can calculate sea ice thickness once the freeboard has been established. The ESA Climate Change Initiative Sea Ice Thickness data set presented here shows the decrease in winter sea ice thickness over the past 15 years using information from ESA\u2019s Envisat and CryoSat-2 satellite missions.
\nExplore Datasets
\n
This EO Dashboard provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nSea Ice Thickness from Cryosat
Sea Ice Thickness from Envisat
Sea Ice Thickness from IceSAT-2\n
Sea Ice Concentration Antarctic from GCOM-W
\n"
+ "__generatedText__": " ESA has been building radar altimeters since the early 1990s. Radar altimeters use a microwave signal to measure sea ice freeboard. In this frequency band, the signal can penetrate further into snow that lies on sea ice. To better understand how far the microwaves can penetrate the snowpack, complementary field or airborne campaigns are needed to validate the satellite data. Researchers are comparing altimeter signals at different frequencies to calculate how much snow lies on top of the sea ice. This is important as the amount of snow can also impact the freeboard\u2014for instance a heavy snow-load can weigh the sea ice down and may even push it under water.
\nResearchers can calculate sea ice thickness once the freeboard has been established. The ESA Climate Change Initiative Sea Ice Thickness data set presented here shows the decrease in winter sea ice thickness over the past 15 years using information from ESA\u2019s Envisat and CryoSat-2 satellite missions.
\nExplore Datasets
\n
This EO Dashboard provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nSea Ice Thickness from Cryosat
Sea Ice Thickness from Envisat
Sea Ice Thickness from IceSAT-2\n
Sea Ice Concentration Antarctic from GCOM-W
\n"
},
{
"width": 3,
@@ -80,4 +80,4 @@
}
],
"title": "Cryo - ESA NASA"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/6ee2de3fc9ef5f56.json b/app/public/data/dashboards/6ee2de3fc9ef5f56.json
index ce70faa4ae..cff2b2133b 100644
--- a/app/public/data/dashboards/6ee2de3fc9ef5f56.json
+++ b/app/public/data/dashboards/6ee2de3fc9ef5f56.json
@@ -21,7 +21,7 @@
"lat": -74.24549347227293
}
},
- "id": "ThwaitesLandsat-ADD@1679052330400",
+ "id": "ADD_L2_Thwaites-ADD_Landsat_L2_Antarctica@1679052330400",
"title": "Selected low-cloud-cover Landsat Collection-2 Level-2 Surface Reflectance scenes covering Thwaites Glacier"
},
{
@@ -40,7 +40,7 @@
"lat": -74.38981095077756
}
},
- "id": "PineIslandLandsat-ADD@1679052340151",
+ "id": "ADD_L2_Pine_Island-ADD_Landsat_L2_Antarctica@1679052340151",
"title": "Selected low-cloud-cover Landsat Collection-2 Level-2 Surface Reflectance scenes covering Pine Island Glacier"
},
{
@@ -52,4 +52,4 @@
}
],
"title": "Pine Island and Thwaites Glaciers"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/7c1644ec316b72d6.json b/app/public/data/dashboards/7c1644ec316b72d6.json
index a1667c877e..d833772abf 100644
--- a/app/public/data/dashboards/7c1644ec316b72d6.json
+++ b/app/public/data/dashboards/7c1644ec316b72d6.json
@@ -38,7 +38,7 @@
"lat": 13.66733825965496
}
},
- "id": "W8-N9",
+ "id": "World-N9",
"title": "World, Nitrogen Dioxide (Yearly)"
},
{
@@ -67,4 +67,4 @@
}
],
"title": "Emissions"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/a785d7a3c536a452.json b/app/public/data/dashboards/a785d7a3c536a452.json
index 9c9ff8f07b..88364c8471 100644
--- a/app/public/data/dashboards/a785d7a3c536a452.json
+++ b/app/public/data/dashboards/a785d7a3c536a452.json
@@ -35,9 +35,9 @@
"lat": 1.5818302639606454
}
},
- "id": "W12-NCEO",
+ "id": "World-NCEO",
"title": "World, NCEO Africa Biomass"
}
],
"title": "BIOMASS - Joint Story"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/afea38efc80e9846.json b/app/public/data/dashboards/afea38efc80e9846.json
index dde60fa34b..1aa13daaf3 100644
--- a/app/public/data/dashboards/afea38efc80e9846.json
+++ b/app/public/data/dashboards/afea38efc80e9846.json
@@ -43,16 +43,16 @@
"lat": -28.52172449340486
}
},
- "id": "WorldCO-N1",
+ "id": "World-N1_CO",
"title": "World, CO"
},
{
"width": 1,
- "text": "## Explore Datasets \n \nUse the **interactive map** on this page to see how carbon monoxide levels vary globally. The compare feature on this map allows looking at the levels of CO on two different dates.\n\nThis **EO Dashboard** provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from TROPOMI. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[TROPOMI CO](https://www.eodashboard.org/?poi=WorldCO-N1) \n[TROPOMI NO2](https://www.eodashboard.org/?poi=W1-N1) \n[TROPOMI SO2](https://www.eodashboard.org/?poi=SO2-N1)\n\nThe following Notebook evaluates fire impact on populated areas on a European site\n\n",
+ "text": "## Explore Datasets \n \nUse the **interactive map** on this page to see how carbon monoxide levels vary globally. The compare feature on this map allows looking at the levels of CO on two different dates.\n\nThis **EO Dashboard** provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from TROPOMI. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[TROPOMI CO](https://www.eodashboard.org/?poi=World-N1_CO) \n[TROPOMI NO2](https://www.eodashboard.org/?poi=W1-N1) \n[TROPOMI SO2](https://www.eodashboard.org/?poi=SO2-N1)\n\nThe following Notebook evaluates fire impact on populated areas on a European site\n\n",
"id": "Page 3-1652005461104",
"title": "Page 3",
- "__generatedText__": "Explore Datasets
\n
Use the interactive map on this page to see how carbon monoxide levels vary globally. The compare feature on this map allows looking at the levels of CO on two different dates.
\nThis EO Dashboard provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from TROPOMI. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nTROPOMI CO
TROPOMI NO2
TROPOMI SO2
\nThe following Notebook evaluates fire impact on populated areas on a European site
\n<iframe width=\"95%\" height=\"95%\" src=\"https://bids2023-nbviewer.hub.eox.at/localfile/bids2023/notebooks/Fire_impact_analysis.ipynb?format=html_plain\" frameborder=\"0\"></iframe>"
+ "__generatedText__": "Explore Datasets
\n
Use the interactive map on this page to see how carbon monoxide levels vary globally. The compare feature on this map allows looking at the levels of CO on two different dates.
\nThis EO Dashboard provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from TROPOMI. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nTROPOMI CO
TROPOMI NO2
TROPOMI SO2
\nThe following Notebook evaluates fire impact on populated areas on a European site
\n<iframe width=\"95%\" height=\"95%\" src=\"https://bids2023-nbviewer.hub.eox.at/localfile/bids2023/notebooks/Fire_impact_analysis.ipynb?format=html_plain\" frameborder=\"0\"></iframe>"
}
],
"title": "Monitoring from Space how Air Pollution affects Climate Change"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/bd6db303fd0fb8e8.json b/app/public/data/dashboards/bd6db303fd0fb8e8.json
index 72f29c047b..b9d6d5c5bd 100644
--- a/app/public/data/dashboards/bd6db303fd0fb8e8.json
+++ b/app/public/data/dashboards/bd6db303fd0fb8e8.json
@@ -72,16 +72,16 @@
},
"dataLayerTime": null
},
- "id": "W8-N9",
+ "id": "World-N9",
"title": "World, NO2 OMI Annual"
},
{
"width": 2,
- "text": "## Future Research\n \nThese observations represent almost two decades of daily air pollution data that show an increasingly clear picture of where the gas comes from and how the amount entering the atmosphere has changed over time and whether changes in air quality control are making a difference.\n\n## Explore Datasets \n \nUse the **interactive map** on this page to see how yearly nitrogen dioxide levels vary globally. The compare feature on this map allows looking at the levels of NO2 in different years.\n\nThis **EO Dashboard** provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from NASA's OMI. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[OMI NO2 - Monthly](https://www.eodashboard.org/?poi=W2-N1) \n[OMI NO2 - Yearly](https://www.eodashboard.org/?poi=W8-N9) \n[OMI SO2](https://www.eodashboard.org/?poi=W9-N10)\n\n### Accessing the data from NASA's VEDA EOAPI\n\nThese datasets are provided by NASA's VEDA EOAPI. The following Notebook illustrates how to access and work with the datasets to recreate the graphs illustrated in this story\n\n",
+ "text": "## Future Research\n \nThese observations represent almost two decades of daily air pollution data that show an increasingly clear picture of where the gas comes from and how the amount entering the atmosphere has changed over time and whether changes in air quality control are making a difference.\n\n## Explore Datasets \n \nUse the **interactive map** on this page to see how yearly nitrogen dioxide levels vary globally. The compare feature on this map allows looking at the levels of NO2 in different years.\n\nThis **EO Dashboard** provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from NASA's OMI. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[OMI NO2 - Monthly](https://www.eodashboard.org/?poi=W2-N1) \n[OMI NO2 - Yearly](https://www.eodashboard.org/?poi=World-N9) \n[OMI SO2](https://www.eodashboard.org/?poi=W9-N10)\n\n### Accessing the data from NASA's VEDA EOAPI\n\nThese datasets are provided by NASA's VEDA EOAPI. The following Notebook illustrates how to access and work with the datasets to recreate the graphs illustrated in this story\n\n",
"id": "Future Research-1651503305304",
"title": "Future Research",
- "__generatedText__": "Future Research
\n
These observations represent almost two decades of daily air pollution data that show an increasingly clear picture of where the gas comes from and how the amount entering the atmosphere has changed over time and whether changes in air quality control are making a difference.
\nExplore Datasets
\n
Use the interactive map on this page to see how yearly nitrogen dioxide levels vary globally. The compare feature on this map allows looking at the levels of NO2 in different years.
\nThis EO Dashboard provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from NASA's OMI. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nOMI NO2 - Monthly
OMI NO2 - Yearly
OMI SO2
\nAccessing the data from NASA's VEDA EOAPI
\nThese datasets are provided by NASA's VEDA EOAPI. The following Notebook illustrates how to access and work with the datasets to recreate the graphs illustrated in this story
\n<iframe width=\"90%\" height=\"90%\" src=\"https://bids2023-nbviewer.hub.eox.at/localfile/bids2023/notebooks/veda_api_bids_2023.ipynb?format=html_plain\" frameborder=\"0\"></iframe>"
+ "__generatedText__": "Future Research
\n
These observations represent almost two decades of daily air pollution data that show an increasingly clear picture of where the gas comes from and how the amount entering the atmosphere has changed over time and whether changes in air quality control are making a difference.
\nExplore Datasets
\n
Use the interactive map on this page to see how yearly nitrogen dioxide levels vary globally. The compare feature on this map allows looking at the levels of NO2 in different years.
\nThis EO Dashboard provides access to interactive maps of Carbon Monoxide, Nitrogen Dioxide, and Sulfur Dioxide from NASA's OMI. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nOMI NO2 - Monthly
OMI NO2 - Yearly
OMI SO2
\nAccessing the data from NASA's VEDA EOAPI
\nThese datasets are provided by NASA's VEDA EOAPI. The following Notebook illustrates how to access and work with the datasets to recreate the graphs illustrated in this story
\n<iframe width=\"90%\" height=\"90%\" src=\"https://bids2023-nbviewer.hub.eox.at/localfile/bids2023/notebooks/veda_api_bids_2023.ipynb?format=html_plain\" frameborder=\"0\"></iframe>"
}
],
"title": "Nitrogen Dioxide NO2 and Sulfur Dioxide SO2"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/cc21f006274175d0.json b/app/public/data/dashboards/cc21f006274175d0.json
index f529930928..88563f953f 100644
--- a/app/public/data/dashboards/cc21f006274175d0.json
+++ b/app/public/data/dashboards/cc21f006274175d0.json
@@ -40,10 +40,10 @@
},
{
"width": 1,
- "text": "A study using the Second Global Imager (SGLI) on board the Global Change Observation Mission - Climate \"SHIKISAI\" (GCOM-C), compared the concentration distribution of phytoplankton chlorophyll-a (Chl-a) and the surface temperature around Lake Biwa from 2018 to 2021. GCOM-C observes from the ground with 19 channels from the near-ultraviolet region to the infrared region, allowing to observe various physical quantities such as land, atmosphere, ocean, snow and ice by using channels according to purpose [4]. When comparing SGLI data of May and November of 2019 and 2020, which were warmer winters, against the same period in 2018 and in 2021, one noticeable difference was the change in the circulation process throughout the year. It is conjectured that 2021 seems to show a normal chlorophyll-a concentration (when compared to the two prior years) which could be possible linked to the fact that during this year, overturn was confirmed for the first time in three years [5, 6,7].\n\n\n

\n

\n\nMay and November monthly Chl-a concentration from 2018 to 2021. Source: JAXA\n
\n\nLooking at the distribution of Chl-a concentrations in Lake Biwa throughout 2019, the easter coastal area in May presents high concentration values, and it extends northward along the eastern coast as shown in the following figure. According to research by the Goto Laboratory at the University of Shiga Prefecture, this is due to the bloom of the phytoplankton community caused by the supply of nitrogen and phosphorus nutrients from the land (coming from puddling, precipitation, etc.) and the effect of the lake current. In the summer, when the surface layer of Lake Biwa becomes oligotrophic , the concentration of Chl-a is as low as 1 to 3 mg m-3 in most of Lake Biwa. After that, the distribution map in autumn (November), when the depth of the mixed layer becomes deeper, clearly shows that the high-concentration area due to the autumn bloom of phytoplankton spreads throughout Lake Biwa. Especially in the eastern coastal area, with high concentration areas exceeding 20 mg m-3 are continuously distributed in the north-south direction [5, 6,7].\n\n\n

\n\n\nMonthly chlorophyll concentration in 2019. Source: JAXA\n
\n\n\n\nPhenomena thought to be caused by climate change have already occurred in Lake Biwa, so there is an urgent need to further understand the impact of climate change and consider countermeasures. The continuous water quality and temperature data of Lake Biwa, along with new monitoring methods is important to understand the potential tipping point faced by this lake, as prolonged altered conditions such as warmer temperatures and absence of overturn might lead to significant changes in the lake ecological balance. Cases like this highlight the importance of understanding the risk of reaching tipping point where the ecosystem undergoes irreversible transformations impacting important water resources which millions depend on. \n\n### Map\nThe following Map shows Lake Biwa as imaged by NASA's Landsat7-9 satellites. [Access this dataset](https://eodashboard.org/explore?poi=Biwa-NLK&search=Lake+Biwa%3A+Landsat&x=15305861.16017&y=4103996.71911&z=8.96936)",
+ "text": "A study using the Second Global Imager (SGLI) on board the Global Change Observation Mission - Climate \"SHIKISAI\" (GCOM-C), compared the concentration distribution of phytoplankton chlorophyll-a (Chl-a) and the surface temperature around Lake Biwa from 2018 to 2021. GCOM-C observes from the ground with 19 channels from the near-ultraviolet region to the infrared region, allowing to observe various physical quantities such as land, atmosphere, ocean, snow and ice by using channels according to purpose [4]. When comparing SGLI data of May and November of 2019 and 2020, which were warmer winters, against the same period in 2018 and in 2021, one noticeable difference was the change in the circulation process throughout the year. It is conjectured that 2021 seems to show a normal chlorophyll-a concentration (when compared to the two prior years) which could be possible linked to the fact that during this year, overturn was confirmed for the first time in three years [5, 6,7].\n\n\n

\n

\n\nMay and November monthly Chl-a concentration from 2018 to 2021. Source: JAXA\n
\n\nLooking at the distribution of Chl-a concentrations in Lake Biwa throughout 2019, the easter coastal area in May presents high concentration values, and it extends northward along the eastern coast as shown in the following figure. According to research by the Goto Laboratory at the University of Shiga Prefecture, this is due to the bloom of the phytoplankton community caused by the supply of nitrogen and phosphorus nutrients from the land (coming from puddling, precipitation, etc.) and the effect of the lake current. In the summer, when the surface layer of Lake Biwa becomes oligotrophic , the concentration of Chl-a is as low as 1 to 3 mg m-3 in most of Lake Biwa. After that, the distribution map in autumn (November), when the depth of the mixed layer becomes deeper, clearly shows that the high-concentration area due to the autumn bloom of phytoplankton spreads throughout Lake Biwa. Especially in the eastern coastal area, with high concentration areas exceeding 20 mg m-3 are continuously distributed in the north-south direction [5, 6,7].\n\n\n

\n\n\nMonthly chlorophyll concentration in 2019. Source: JAXA\n
\n\n\n\nPhenomena thought to be caused by climate change have already occurred in Lake Biwa, so there is an urgent need to further understand the impact of climate change and consider countermeasures. The continuous water quality and temperature data of Lake Biwa, along with new monitoring methods is important to understand the potential tipping point faced by this lake, as prolonged altered conditions such as warmer temperatures and absence of overturn might lead to significant changes in the lake ecological balance. Cases like this highlight the importance of understanding the risk of reaching tipping point where the ecosystem undergoes irreversible transformations impacting important water resources which millions depend on. \n\n### Map\nThe following Map shows Lake Biwa as imaged by NASA's Landsat7-9 satellites. [Access this dataset](https://eodashboard.org/explore?poi=NLK_lake_biwa-NLK&search=Lake+Biwa%3A+Landsat&x=15305861.16017&y=4103996.71911&z=8.96936)",
"id": "page 3-1688481369592",
"title": "page 3",
- "__generatedText__": "A study using the Second Global Imager (SGLI) on board the Global Change Observation Mission - Climate "SHIKISAI" (GCOM-C), compared the concentration distribution of phytoplankton chlorophyll-a (Chl-a) and the surface temperature around Lake Biwa from 2018 to 2021. GCOM-C observes from the ground with 19 channels from the near-ultraviolet region to the infrared region, allowing to observe various physical quantities such as land, atmosphere, ocean, snow and ice by using channels according to purpose [4]. When comparing SGLI data of May and November of 2019 and 2020, which were warmer winters, against the same period in 2018 and in 2021, one noticeable difference was the change in the circulation process throughout the year. It is conjectured that 2021 seems to show a normal chlorophyll-a concentration (when compared to the two prior years) which could be possible linked to the fact that during this year, overturn was confirmed for the first time in three years [5, 6,7].
\n\n

\n

\n\n
May and November monthly Chl-a concentration from 2018 to 2021. Source: JAXA
\n
\n\nLooking at the distribution of Chl-a concentrations in Lake Biwa throughout 2019, the easter coastal area in May presents high concentration values, and it extends northward along the eastern coast as shown in the following figure. According to research by the Goto Laboratory at the University of Shiga Prefecture, this is due to the bloom of the phytoplankton community caused by the supply of nitrogen and phosphorus nutrients from the land (coming from puddling, precipitation, etc.) and the effect of the lake current. In the summer, when the surface layer of Lake Biwa becomes oligotrophic , the concentration of Chl-a is as low as 1 to 3 mg m-3 in most of Lake Biwa. After that, the distribution map in autumn (November), when the depth of the mixed layer becomes deeper, clearly shows that the high-concentration area due to the autumn bloom of phytoplankton spreads throughout Lake Biwa. Especially in the eastern coastal area, with high concentration areas exceeding 20 mg m-3 are continuously distributed in the north-south direction [5, 6,7].
\n\n

\n\n\n
Monthly chlorophyll concentration in 2019. Source: JAXA
\n
\n\n\n\nPhenomena thought to be caused by climate change have already occurred in Lake Biwa, so there is an urgent need to further understand the impact of climate change and consider countermeasures. The continuous water quality and temperature data of Lake Biwa, along with new monitoring methods is important to understand the potential tipping point faced by this lake, as prolonged altered conditions such as warmer temperatures and absence of overturn might lead to significant changes in the lake ecological balance. Cases like this highlight the importance of understanding the risk of reaching tipping point where the ecosystem undergoes irreversible transformations impacting important water resources which millions depend on.
\nMap
\nThe following Map shows Lake Biwa as imaged by NASA's Landsat7-9 satellites. Access this dataset
\n"
+ "__generatedText__": "A study using the Second Global Imager (SGLI) on board the Global Change Observation Mission - Climate "SHIKISAI" (GCOM-C), compared the concentration distribution of phytoplankton chlorophyll-a (Chl-a) and the surface temperature around Lake Biwa from 2018 to 2021. GCOM-C observes from the ground with 19 channels from the near-ultraviolet region to the infrared region, allowing to observe various physical quantities such as land, atmosphere, ocean, snow and ice by using channels according to purpose [4]. When comparing SGLI data of May and November of 2019 and 2020, which were warmer winters, against the same period in 2018 and in 2021, one noticeable difference was the change in the circulation process throughout the year. It is conjectured that 2021 seems to show a normal chlorophyll-a concentration (when compared to the two prior years) which could be possible linked to the fact that during this year, overturn was confirmed for the first time in three years [5, 6,7].
\n\n

\n

\n\n
May and November monthly Chl-a concentration from 2018 to 2021. Source: JAXA
\n
\n\nLooking at the distribution of Chl-a concentrations in Lake Biwa throughout 2019, the easter coastal area in May presents high concentration values, and it extends northward along the eastern coast as shown in the following figure. According to research by the Goto Laboratory at the University of Shiga Prefecture, this is due to the bloom of the phytoplankton community caused by the supply of nitrogen and phosphorus nutrients from the land (coming from puddling, precipitation, etc.) and the effect of the lake current. In the summer, when the surface layer of Lake Biwa becomes oligotrophic , the concentration of Chl-a is as low as 1 to 3 mg m-3 in most of Lake Biwa. After that, the distribution map in autumn (November), when the depth of the mixed layer becomes deeper, clearly shows that the high-concentration area due to the autumn bloom of phytoplankton spreads throughout Lake Biwa. Especially in the eastern coastal area, with high concentration areas exceeding 20 mg m-3 are continuously distributed in the north-south direction [5, 6,7].
\n\n

\n\n\n
Monthly chlorophyll concentration in 2019. Source: JAXA
\n
\n\n\n\nPhenomena thought to be caused by climate change have already occurred in Lake Biwa, so there is an urgent need to further understand the impact of climate change and consider countermeasures. The continuous water quality and temperature data of Lake Biwa, along with new monitoring methods is important to understand the potential tipping point faced by this lake, as prolonged altered conditions such as warmer temperatures and absence of overturn might lead to significant changes in the lake ecological balance. Cases like this highlight the importance of understanding the risk of reaching tipping point where the ecosystem undergoes irreversible transformations impacting important water resources which millions depend on.
\nMap
\nThe following Map shows Lake Biwa as imaged by NASA's Landsat7-9 satellites. Access this dataset
\n"
},
{
"width": 3,
@@ -56,7 +56,7 @@
"lat": 35.19310377935969
}
},
- "id": "Biwa-NLK@1689236387909",
+ "id": "NLK_lake_biwa-NLK@1689236387909",
"title": "Lake Biwa: Landsat- Biwa Lake cloud free"
},
{
@@ -68,4 +68,4 @@
}
],
"title": "Inland Water Story - Algae Bloom"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/e45036dd512afea1.json b/app/public/data/dashboards/e45036dd512afea1.json
index 53b9b8d4b0..cd66426ed3 100644
--- a/app/public/data/dashboards/e45036dd512afea1.json
+++ b/app/public/data/dashboards/e45036dd512afea1.json
@@ -34,7 +34,7 @@
"up": null,
"direction": null
},
- "id": "World-N12",
+ "id": "World-N12_sea_ice_concentration_arctic",
"title": "Global, Sea Ice Concentration (GCOM-W)"
},
{
@@ -67,11 +67,11 @@
},
{
"width": 4,
- "text": "## Explore Datasets \n \nThis **EO Dashboard** provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[Sea Ice Thickness from Cryosat](https://www.eodashboard.org/explore?poi=W9-SIC) \n[Sea Ice Thickness from Envisat](https://www.eodashboard.org/explore?poi=W8-SIE) \n[Sea Ice Thickness from IceSAT-2](https://www.eodashboard.org/explore?poi=W10-SITI)\n \n[Sea Ice Concentration from GCOM-W](https://www.eodashboard.org/explore?poi=World-N12)",
+ "text": "## Explore Datasets \n \nThis **EO Dashboard** provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the **[EXPLORE DATASETS](https://www.eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[Sea Ice Thickness from Cryosat](https://www.eodashboard.org/explore?poi=W9-SIC) \n[Sea Ice Thickness from Envisat](https://www.eodashboard.org/explore?poi=W8-SIE) \n[Sea Ice Thickness from IceSAT-2](https://www.eodashboard.org/explore?poi=W10-SITI)\n \n[Sea Ice Concentration from GCOM-W](https://www.eodashboard.org/explore?poi=World-N12_sea_ice_concentration_arctic)",
"id": " -1652890242032",
"title": " ",
- "__generatedText__": "Explore Datasets
\n
This EO Dashboard provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nSea Ice Thickness from Cryosat
Sea Ice Thickness from Envisat
Sea Ice Thickness from IceSAT-2\n
Sea Ice Concentration from GCOM-W
\n"
+ "__generatedText__": "Explore Datasets
\n
This EO Dashboard provides access to interactive maps of Sea Ice Thickness and Sea Ice Concentration. Access these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nSea Ice Thickness from Cryosat
Sea Ice Thickness from Envisat
Sea Ice Thickness from IceSAT-2\n
Sea Ice Concentration from GCOM-W
\n"
}
],
"title": "Cryo - JAXA 1"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/dashboards/fe9c083d830b9f90.json b/app/public/data/dashboards/fe9c083d830b9f90.json
index aa91b3eb2d..746e20d807 100644
--- a/app/public/data/dashboards/fe9c083d830b9f90.json
+++ b/app/public/data/dashboards/fe9c083d830b9f90.json
@@ -43,10 +43,10 @@
},
{
"width": 4,
- "text": "## Explore Datasets \n \nUse the **interactive maps** on the next page to see the variations of NO2, SIF and XCO2levels over Cairo. The compare feature on the map allows looking at the levels two different dates. The following products can be explored:\n \n\n**GOSAT lower tropospheric CO2 enhancement** in daily [ppm]\nGOSAT tropospheric partial column observes global changes of the carbon dioxide (CO2) enhancement; the CO2 density difference between lower atmosphere (0-4 km) influenced by CO2 net flux, i.e., surface emission and uptake, minus upper atmosphere (4-12 km) as background. The report on GOSAT partial column density products was submitted to UNFCCC for the first global stocktake as space-based surface GHG Emission Indicator (GEI) over the city.\n\n*Data source: *\n\n**TROPOMI SIF** in monthly average [mW/m2/sr/nm]\nTROPOMI solar-induced chlorophyll fluorescence (SIF) shows the photosynthetic activity of plant ecosystem. Plant absorbs sunlight but re-emit a small fraction of energy as SIF, which is strongly related to carbon uptake of CO2 through photosynthesis over plant area. \n\n*Data source: Koehler, P., & Frankenberg, C. (2020). Ungridded TROPOMI SIF (at 740nm) (Version 1.0) [Data set]. CaltechDATA. *\n\n**TROPOMI NO2 column density** in daily [mol/m3]\nTROPOMI observes nitrogen dioxide (NO2) column density with a high resolution of 5 km. NO2 is an air pollution trace gas as a result of anthropogenic activities along with fossil fuel combustion such as oil refinery, power plant, steelwork and automobile transportation the same as the CO2 emission. However, NO2 reduction is processed by decomposition different from CO2 uptake.\n\n*Data source: https://data-portal.s5p-pal.com/products/no2.html*\n\n**Windrose in hourly frequency**\n\nWindrose shows the frequency of winds blowing from directions and speed over an hour around GOSAT overpass time in the target city. \n\n*Acknowledgments: The windrose was produced by using wind data from Windergroud.com.*\n\n \n\nExplore in more details these datasets by clicking on the **[EXPLORE DATASETS](https://eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[GOSAT-2 CO2 on Cairo](https://www.eodashboard.org/?poi=EG01-N2) \n[OCO-2 CO2 Global](https://www.eodashboard.org/?poi=W4-N2) \n[TROPOMI NO2](https://www.eodashboard.org/?poi=W1-N1) \n[TROPOMI SIF](https://www.eodashboard.org/?indicator=SIF&poi=EG01-SIF)\n\n",
+ "text": "## Explore Datasets \n \nUse the **interactive maps** on the next page to see the variations of NO2, SIF and XCO2levels over Cairo. The compare feature on the map allows looking at the levels two different dates. The following products can be explored:\n \n\n**GOSAT lower tropospheric CO2 enhancement** in daily [ppm]\nGOSAT tropospheric partial column observes global changes of the carbon dioxide (CO2) enhancement; the CO2 density difference between lower atmosphere (0-4 km) influenced by CO2 net flux, i.e., surface emission and uptake, minus upper atmosphere (4-12 km) as background. The report on GOSAT partial column density products was submitted to UNFCCC for the first global stocktake as space-based surface GHG Emission Indicator (GEI) over the city.\n\n*Data source: *\n\n**TROPOMI SIF** in monthly average [mW/m2/sr/nm]\nTROPOMI solar-induced chlorophyll fluorescence (SIF) shows the photosynthetic activity of plant ecosystem. Plant absorbs sunlight but re-emit a small fraction of energy as SIF, which is strongly related to carbon uptake of CO2 through photosynthesis over plant area. \n\n*Data source: Koehler, P., & Frankenberg, C. (2020). Ungridded TROPOMI SIF (at 740nm) (Version 1.0) [Data set]. CaltechDATA. *\n\n**TROPOMI NO2 column density** in daily [mol/m3]\nTROPOMI observes nitrogen dioxide (NO2) column density with a high resolution of 5 km. NO2 is an air pollution trace gas as a result of anthropogenic activities along with fossil fuel combustion such as oil refinery, power plant, steelwork and automobile transportation the same as the CO2 emission. However, NO2 reduction is processed by decomposition different from CO2 uptake.\n\n*Data source: https://data-portal.s5p-pal.com/products/no2.html*\n\n**Windrose in hourly frequency**\n\nWindrose shows the frequency of winds blowing from directions and speed over an hour around GOSAT overpass time in the target city. \n\n*Acknowledgments: The windrose was produced by using wind data from Windergroud.com.*\n\n \n\nExplore in more details these datasets by clicking on the **[EXPLORE DATASETS](https://eodashboard.org/explore)** button at the top of the page or directly from the links below:\n\n[GOSAT-2 CO2 on Cairo](https://www.eodashboard.org/?poi=World-N2_CO2_jaxa_gosat) \n[OCO-2 CO2 Global](https://www.eodashboard.org/?poi=W4-N2) \n[TROPOMI NO2](https://www.eodashboard.org/?poi=W1-N1) \n[TROPOMI SIF](https://www.eodashboard.org/?indicator=SIF&poi=World-SIF)\n\n",
"id": "Datasets-1652031338767",
"title": "Datasets",
- "__generatedText__": "Explore Datasets
\n
Use the interactive maps on the next page to see the variations of NO2, SIF and XCO2levels over Cairo. The compare feature on the map allows looking at the levels two different dates. The following products can be explored:\n
\nGOSAT lower tropospheric CO2 enhancement in daily [ppm]\nGOSAT tropospheric partial column observes global changes of the carbon dioxide (CO2) enhancement; the CO2 density difference between lower atmosphere (0-4 km) influenced by CO2 net flux, i.e., surface emission and uptake, minus upper atmosphere (4-12 km) as background. The report on GOSAT partial column density products was submitted to UNFCCC for the first global stocktake as space-based surface GHG Emission Indicator (GEI) over the city.
\nData source: https://www.eorc.jaxa.jp/GOSAT/GPCG/index_GOSAT.html
\nTROPOMI SIF in monthly average [mW/m2/sr/nm]\nTROPOMI solar-induced chlorophyll fluorescence (SIF) shows the photosynthetic activity of plant ecosystem. Plant absorbs sunlight but re-emit a small fraction of energy as SIF, which is strongly related to carbon uptake of CO2 through photosynthesis over plant area.
\nData source: Koehler, P., & Frankenberg, C. (2020). Ungridded TROPOMI SIF (at 740nm) (Version 1.0) [Data set]. CaltechDATA. https://doi.org/10.22002/D1.1347
\nTROPOMI NO2 column density in daily [mol/m3]\nTROPOMI observes nitrogen dioxide (NO2) column density with a high resolution of 5 km. NO2 is an air pollution trace gas as a result of anthropogenic activities along with fossil fuel combustion such as oil refinery, power plant, steelwork and automobile transportation the same as the CO2 emission. However, NO2 reduction is processed by decomposition different from CO2 uptake.
\nData source: https://data-portal.s5p-pal.com/products/no2.html
\nWindrose in hourly frequency
\nWindrose shows the frequency of winds blowing from directions and speed over an hour around GOSAT overpass time in the target city.
\nAcknowledgments: The windrose was produced by using wind data from Windergroud.com.
\n
\nExplore in more details these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nGOSAT-2 CO2 on Cairo
OCO-2 CO2 Global
TROPOMI NO2
TROPOMI SIF
\n"
+ "__generatedText__": "Explore Datasets
\n
Use the interactive maps on the next page to see the variations of NO2, SIF and XCO2levels over Cairo. The compare feature on the map allows looking at the levels two different dates. The following products can be explored:\n
\nGOSAT lower tropospheric CO2 enhancement in daily [ppm]\nGOSAT tropospheric partial column observes global changes of the carbon dioxide (CO2) enhancement; the CO2 density difference between lower atmosphere (0-4 km) influenced by CO2 net flux, i.e., surface emission and uptake, minus upper atmosphere (4-12 km) as background. The report on GOSAT partial column density products was submitted to UNFCCC for the first global stocktake as space-based surface GHG Emission Indicator (GEI) over the city.
\nData source: https://www.eorc.jaxa.jp/GOSAT/GPCG/index_GOSAT.html
\nTROPOMI SIF in monthly average [mW/m2/sr/nm]\nTROPOMI solar-induced chlorophyll fluorescence (SIF) shows the photosynthetic activity of plant ecosystem. Plant absorbs sunlight but re-emit a small fraction of energy as SIF, which is strongly related to carbon uptake of CO2 through photosynthesis over plant area.
\nData source: Koehler, P., & Frankenberg, C. (2020). Ungridded TROPOMI SIF (at 740nm) (Version 1.0) [Data set]. CaltechDATA. https://doi.org/10.22002/D1.1347
\nTROPOMI NO2 column density in daily [mol/m3]\nTROPOMI observes nitrogen dioxide (NO2) column density with a high resolution of 5 km. NO2 is an air pollution trace gas as a result of anthropogenic activities along with fossil fuel combustion such as oil refinery, power plant, steelwork and automobile transportation the same as the CO2 emission. However, NO2 reduction is processed by decomposition different from CO2 uptake.
\nData source: https://data-portal.s5p-pal.com/products/no2.html
\nWindrose in hourly frequency
\nWindrose shows the frequency of winds blowing from directions and speed over an hour around GOSAT overpass time in the target city.
\nAcknowledgments: The windrose was produced by using wind data from Windergroud.com.
\n
\nExplore in more details these datasets by clicking on the EXPLORE DATASETS button at the top of the page or directly from the links below:
\nGOSAT-2 CO2 on Cairo
OCO-2 CO2 Global
TROPOMI NO2
TROPOMI SIF
\n"
},
{
"width": 1,
@@ -57,7 +57,7 @@
"lat": 30.041111425470056
}
},
- "id": "EG01-N2",
+ "id": "World-N2_CO2_jaxa_gosat",
"title": "Cairo, XCO2"
},
{
@@ -69,7 +69,7 @@
"lat": 29.786423215863337
}
},
- "id": "EG01-N1",
+ "id": "World-N1_NO2_jaxa",
"title": "Cairo, NO2"
},
{
@@ -81,9 +81,9 @@
"lat": 30.050628658522783
}
},
- "id": "EG01-SIF",
+ "id": "World-SIF",
"title": "Cairo, Solar Induced Chlorophyll Fluorescence"
}
],
"title": "Crops Consume Cairo\u2019s Carbon Dioxide"
-}
\ No newline at end of file
+}
diff --git a/app/public/data/esa/globalDataLayerImages/World-E13c_ship_detections.png b/app/public/data/esa/globalDataLayerImages/World-E13c_ship_detections.png
new file mode 100644
index 0000000000..1d502405b1
Binary files /dev/null and b/app/public/data/esa/globalDataLayerImages/World-E13c_ship_detections.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-CDS1_temperature.png b/app/public/data/polar/globalDataLayerImages/World-CDS1_temperature.png
new file mode 100644
index 0000000000..e07b057733
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-CDS1_temperature.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-CDS3.png b/app/public/data/polar/globalDataLayerImages/World-CDS3.png
new file mode 100644
index 0000000000..01db59a588
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-CDS3.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-CDS4.png b/app/public/data/polar/globalDataLayerImages/World-CDS4.png
new file mode 100644
index 0000000000..91f815bcb8
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-CDS4.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-N12_1_sea_ice_concentration_arctic.png b/app/public/data/polar/globalDataLayerImages/World-N12_1_sea_ice_concentration_arctic.png
new file mode 100644
index 0000000000..32b0e3f69c
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-N12_1_sea_ice_concentration_arctic.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-Polartep_S1_demo.png b/app/public/data/polar/globalDataLayerImages/World-Polartep_S1_demo.png
new file mode 100644
index 0000000000..d990a7372d
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-Polartep_S1_demo.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-Polartep_SeaIceDetection_tif_demo.png b/app/public/data/polar/globalDataLayerImages/World-Polartep_SeaIceDetection_tif_demo.png
new file mode 100644
index 0000000000..597004ad39
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-Polartep_SeaIceDetection_tif_demo.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-Polartep_SeaIce_demo.png b/app/public/data/polar/globalDataLayerImages/World-Polartep_SeaIce_demo.png
new file mode 100644
index 0000000000..a8c5c2b1fa
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-Polartep_SeaIce_demo.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-Polartep_Snow_specific_surface_area_demo.png b/app/public/data/polar/globalDataLayerImages/World-Polartep_Snow_specific_surface_area_demo.png
new file mode 100644
index 0000000000..00e6948e32
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-Polartep_Snow_specific_surface_area_demo.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-Polartep_Snowgrain_diameter_demo.png b/app/public/data/polar/globalDataLayerImages/World-Polartep_Snowgrain_diameter_demo.png
new file mode 100644
index 0000000000..d3ed153f24
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-Polartep_Snowgrain_diameter_demo.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-SITI.png b/app/public/data/polar/globalDataLayerImages/World-SITI.png
new file mode 100644
index 0000000000..b1dae94478
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-SITI.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SICONC.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SICONC.png
new file mode 100644
index 0000000000..20594dcba2
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SICONC.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SISNTHICK.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SISNTHICK.png
new file mode 100644
index 0000000000..495f45ae68
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SISNTHICK.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SITHICK.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SITHICK.png
new file mode 100644
index 0000000000..05c2d2995c
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_SITHICK.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VXO.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VXO.png
new file mode 100644
index 0000000000..da795703d0
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VXO.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VXSI.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VXSI.png
new file mode 100644
index 0000000000..45d9c3bcbf
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VXSI.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VYO.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VYO.png
new file mode 100644
index 0000000000..cdbb9fa9bc
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VYO.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VYSI.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VYSI.png
new file mode 100644
index 0000000000..9465361ac6
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ4_P1D_VYSI.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SIAGE.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SIAGE.png
new file mode 100644
index 0000000000..49a2df5950
Binary files /dev/null and b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SIAGE.png differ
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SICONC.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SICONC.png
new file mode 120000
index 0000000000..905271af33
--- /dev/null
+++ b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SICONC.png
@@ -0,0 +1 @@
+World-TOPAZ4_P1D_SICONC.png
\ No newline at end of file
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SISNTHICK.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SISNTHICK.png
new file mode 120000
index 0000000000..90aa7b418e
--- /dev/null
+++ b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SISNTHICK.png
@@ -0,0 +1 @@
+World-TOPAZ4_P1D_SISNTHICK.png
\ No newline at end of file
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SITHICK.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SITHICK.png
new file mode 120000
index 0000000000..bb26e25d6c
--- /dev/null
+++ b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_SITHICK.png
@@ -0,0 +1 @@
+World-TOPAZ4_P1D_SITHICK.png
\ No newline at end of file
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VXO.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VXO.png
new file mode 120000
index 0000000000..2e602f3c68
--- /dev/null
+++ b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VXO.png
@@ -0,0 +1 @@
+World-TOPAZ4_P1D_VXO.png
\ No newline at end of file
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VXSI.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VXSI.png
new file mode 120000
index 0000000000..4ba4775075
--- /dev/null
+++ b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VXSI.png
@@ -0,0 +1 @@
+World-TOPAZ4_P1D_VXSI.png
\ No newline at end of file
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VYO.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VYO.png
new file mode 120000
index 0000000000..d1b3ae8068
--- /dev/null
+++ b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VYO.png
@@ -0,0 +1 @@
+World-TOPAZ4_P1D_VYO.png
\ No newline at end of file
diff --git a/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VYSI.png b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VYSI.png
new file mode 120000
index 0000000000..857bb54abb
--- /dev/null
+++ b/app/public/data/polar/globalDataLayerImages/World-TOPAZ5_P1D_VYSI.png
@@ -0,0 +1 @@
+World-TOPAZ4_P1D_VYSI.png
\ No newline at end of file
diff --git a/app/public/data/polar/internal/.gitkeep b/app/public/data/polar/internal/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/app/public/data/storytelling-md/Earth Observing Dashboard-3.md b/app/public/data/storytelling-md/Earth Observing Dashboard-3.md
new file mode 100644
index 0000000000..88e6381e4a
--- /dev/null
+++ b/app/public/data/storytelling-md/Earth Observing Dashboard-3.md
@@ -0,0 +1,203 @@
+## Forest Loss and Degradation worldwide
+
+Forests cover 31% of the global land area [(1)](https://www.fao.org/3/CA8753EN/CA8753EN.pdf) and are a critical component of the world’s biodiversity. According to the "State of the World’s Forest 2022" report [(2)](https://www.fao.org/publications/home/fao-flagship-publications/the-state-of-the-worlds-forests/2022/en) published by FAO, they host more than 75% of the world’s terrestrial biodiversity, being home to some of the richest ecosystems. Forests are crucial for maintaining ecosystem balance, offering essential ecosystem services. However, deforestation and forest degradation1 continue to take place at alarming rates [(3)](https://www.fao.org/documents/card/en/c/ca8753en). Deforestation, rising temperature, drier conditions and more frequent and severe fires are pushing different forest types to the verge of irreversible tipping points [(4)](https://www.bbc.com/news/science-environment-60650415), and risk to lose their ability to bounce back from damage, with far-reaching consequences. Deforestation is also the leading cause for 15% of carbon emissions [(5)](https://petpedia.co/deforestation-statistics/), can have a large impact on physical processes in the local climate, it disrupts the carbon cycle and energy balance and has been being associated with heat waves in North America and Eurasia [(6)](https://climate.mit.edu/explainers/forests-and-climate-change).
+The UN FAO [(1)](https://www.fao.org/3/CA8753EN/CA8753EN.pdf) estimated an annual rate of deforestation of 10 million in the most recent five-year period (2015-2020). However, even if the world’s forest area is decreasing, the rate of loss has slowed.
+
+At COP26, 100 countries endorsed the "Glasgow Leaders’s Declaration on Forests and Land Use" [(7)](https://webarchive.nationalarchives.gov.uk/ukgwa/20230418175226/https://ukcop26.org/glasgow-leaders-declaration-on-forests-and-land-use/), which aims to halt and reverse forest loss and land degradation by 2030. Satellite technology can play a crucial role in this commitment by providing real-time data on forest cover and land use changes, enabling governments to enforce policies, track progress or hold accountability for forest loss and degradation [(8)](https://www.bbc.com/news/science-environment-59088498). No single method is universally applicable for monitoring forest degradation, largely due to the specific nature and timing of different degradation processes [(9)](https://cbmjournal.biomedcentral.com/articles/10.1186/s13021-017-0078-9). For this reason, multiple and different types of satellites have been used for forest monitoring, working as a tool for conservation management, allowing to track fires and their emissions, detect illegal logging and estimate biomass.
+
+##
+
+Animation: Above ground biomass 2020. ESA (Data source: CCI Biomass project)
+
+_1 While deforestation refers to the entire removal of forest, degradation means that the forest still exists but with reduced functions_
+
+##
+
+###
+
+Several ESA, JAXA and NASA satellites such as the [Copernicus Sentinel missions](https://sentinels.copernicus.eu/web/sentinel), [ALOS-2](https://www.eorc.jaxa.jp/ALOS-2/en/about/palsar2.htm), [MODIS](https://modis.gsfc.nasa.gov/) or [GEDI](https://gedi.umd.edu/), equiped with optical, synthetic aperture radar (SAR) and LiDAR sensors can detect and map forest degradation, supporting conservation management, helping to track fires and to detect illegal logging. ESA's upcoming forest mission, [BIOMASS](https://earth.esa.int/eogateway/missions/biomass), is a P-band SAR satellite with the main objective to determine the global distribution of forest biomass. This satellite is expected to improve the estimates of carbon stocks and fluxes on land associated with land-use change, forest degradation and forest regrowth.
+
+*Map information: JAXA's Global PALSAR-2/PALSAR Forest/Non-Forest Map. [View dataset](https://www.eodashboard.org/explore?search=World%3A+Forest%2Fnon-forest+map+PALSAR2&x=5065036.83109&y=-2298331.0934&z=2.64386&poi=World-FNF)*
+
+###
+
+Data delivered by these missions provides the essential information used in global forest products such as the global Biomass Essential Climate Variable (ECV) of ESA's [Climate Change Initiative](https://climate.esa.int/en/projects/biomass/) (CCI). This product counts with an annual estimate of global above-ground biomass at 100 m spatial resolution over five years based on ESA’s C-band (Sentinel-1 A and -B) and JAXA’s L-band SAR on board of ALOS-2 PALSAR-2 with additional information from Space borne LIDAR (such as NASA’s Global Ecosystem Dynamics Investigation Lidar GEDI). JAXA also offers global 25m resolution SAR mosaics and forest/non-forest maps, based on ALOS PALSAR, ALOS-2 PALSAR-2 and the JERS-1 SAR. In addition, “[JICA-JAXA Forest Early Warning System in the Tropics](https://www.eorc.jaxa.jp/jjfast/)" (JJ-FAST) is now operating for monitoring early deforestation in tropical forests globally collaboration with the Japan International Cooperation Agency (JICA) and JAXA.
+
+*Map information: JAXA's Global PALSAR-2/PALSAR Forest/Non-Forest Map. [View dataset](https://www.eodashboard.org/explore?search=World%3A+Forest%2Fnon-forest+map+PALSAR2&x=5065036.83109&y=-2298331.0934&z=2.64386&poi=World-FNF)*
+
+## Tipping points
+
+### Tipping points
+
+##
+
+###
+
+#### Boreal forests: from carbon sink to carbon source?
+
+
+
+Boreal forests comprise 44% of Earth’s remaining intact forest landscapes [(10)](https://intactforests.org/shp/IFL_readme_2021.pdf). The boreal forest biome stretches across including Canada, Scandinavia, Russia, and China. An increase of 1.6 degrees Celsius (associated to climate change) can have significant effects on species growth and survival. The UN’s Intergovernmental Panel on Climate Change (IPCC) expects that the vast areas of the boreal forest could experience warming of up to 6 to 11 degrees Celsius by 2100, with the potential to hit a tipping point [(11)](https://www.sciencedaily.com/releases/2015/08/150820144722.htm).
+
+*Map information: GCOM-C/SGLI L3 Normalized Difference Vegetation Index (NDVI). [View dataset](https://www.eodashboard.org/explore?search=Global%3A+NDVI&x=5065036.83109&y=-2298331.0934&z=2.64386&poi=World-E10e)*
+
+###
+
+In the southern latitudes, the boreal tree cover is declining, whereas at northern latitudes it is turning into a tundra, a biome characterised by lower albedo, less vegetation and lower biomass, which can have significant impacts on the global carbon cycle, accelerating climate change. These shifts of the above-ground biomass in boreal forests (a key biophysical ecosystem variable describing all living biomass above the soil including stem, stump, branches, bark, seeds and foliage) can be measured by radar satellites such as ALOS-PALSAR.
+
+*Map information: GCOM-C/SGLI L3 Normalized Difference Vegetation Index (NDVI). [View dataset](https://www.eodashboard.org/explore?search=Global%3A+NDVI&x=5065036.83109&y=-2298331.0934&z=2.64386&poi=World-E10e)*
+
+###
+
+The northern forests of Canada and Alaska are shifting northwards as a result of climate change, with trees expected to grow in areas previously was too cold for them. At the same time, in the southern parts of the boreal forest, where trees were adapted to colder conditions, the climate is expected to become too warm and dry. As the loss of trees in the southern boreal forest is expected to happen at a faster rate than their gain in northern regions [(12)](https://www.nature.com/articles/s41467-023-39092-2), the boreal forest is on the verge of contracting.
+
+*Map information: GCOM-C/SGLI L3 Normalized Difference Vegetation Index (NDVI). [View dataset](https://www.eodashboard.org/explore?search=Global%3A+NDVI&x=5065036.83109&y=-2298331.0934&z=2.64386&poi=World-E10e)*
+
+###
+
+The shift to tundra along with the more frequent wildfires, contribute to a concerning pattern wherein boreal forests are approaching a critical threshold - more carbon is being released from organic soils in boreal forests than the ecosystems can absorb. This is resulting in a transition of boreal forest from being carbon sinks to becoming significant sources of global emission [(13)][https://climate.nasa.gov/news/2905/boreal-forest-fires-could-release-deep-soil-carbon/], [(14)](https://alaskabeacon.com/2023/03/03/extreme-wildfires-are-turning-worlds-largest-forest-ecosystem-from-carbon-sink-into-net-emitter/). In fact, in 2021 boreal fires emissions accounted for nearly one quarter of global carbon emissions, setting a record-high CO2 emissions from boreal fires.
+
+*Map information: GCOM-C/SGLI L3 Normalized Difference Vegetation Index (NDVI). [View dataset](https://www.eodashboard.org/explore?search=Global%3A+NDVI&x=5065036.83109&y=-2298331.0934&z=2.64386&poi=World-E10e)*
+
+###
+
+To better understanding the vulnerability and resilience of the Arctic and boreal ecosystem to environmental change, NASA created the “Arctic Boreal Vulnerability Experiment (ABoVE)” [(15)](https://above.nasa.gov/index.html?), focusing on linking field-based, process-level studies with geospatial data products derived from airborne and satellite sensors, aiming to improve the capacity to understand and predict ecosystem responses and societal implications.
+
+
+
+*Map information: GCOM-C/SGLI L3 Normalized Difference Vegetation Index (NDVI). [View dataset](https://www.eodashboard.org/explore?search=Global%3A+NDVI&x=5065036.83109&y=-2298331.0934&z=2.64386&poi=World-E10e)*
+
+###
+
+#### Amazon rainforest: the next Savanna?
+
+
+
+In the Amazon, deforestation and climate change enhance the risk to reach a tipping point [(16)](https://www.esa.int/Applications/Observing_the_Earth/Space_for_our_climate/Forest_degradation_primary_driver_of_carbon_loss_in_the_Brazilian_Amazon).
+
+This ecosystem, thanks to its trees, has the ability to generate its own rainfall. However, ongoing deforestation is fundamentally changing how the land and atmosphere interact, leading to higher surface temperatures and reduced evapotranspiration leading to the ‘drying out’ of the forest.’ This alteration is particularly pronounced during dry seasons when rainfall in the southern Amazon diminishes significantly. Simultaneously, climate change, spurred by escalating greenhouse gas concentrations, further curtails evapotranspiration due to CO2 fertilisation and the closing of stomata in response to escalating temperatures. Both mechanisms collectively decrease rainfall recycling across the Amazon, intensifying drought stress and elevating the likelihood of fires [(17)](https://www.nature.com/articles/s41558-022-01287-8).
+
+*Map information: NASA Evapotranspiration - LIS 10km Global DA. [View dataset](https://www.eodashboard.org/explore?search=World%3A+Evapotranspiration%2C+LIS&x=8381574.94156&y=-1001875.41714&z=2.64386&poi=World-LIS_Global_DA_Evap)*
+
+###
+
+Less trees mean a diminished release of water vapour in the atmosphere, consequently reducing cloud formation and precipitation, which ultimately lead to droughts and wildfires [(18)](https://www.scientificamerican.com/article/amazon-rain-forest-nears-dangerous-tipping-point/). This cycle forms a positive feedback loop, perpetuating reduced evapotranspiration and carbon stocks. Whether stemming from localised deforestation impacts or broader global climate shifts, scientific consensus asserts a future for the Amazon characterised by increased warmth and aridity. As a result, the Amazon rainforest is gradually losing its unique ability to ‘bounce back’ after disruptive occurrences, like droughts or other extreme events, leading to a downward spiral where rainforest will shift into a savanna [(19)](https://www.nature.com/articles/s41558-022-01287-8).
+
+*Map information: NASA Evapotranspiration - LIS 10km Global DA. [View dataset](https://www.eodashboard.org/explore?search=World%3A+Evapotranspiration%2C+LIS&x=8381574.94156&y=-1001875.41714&z=2.64386&poi=World-LIS_Global_DA_Evap)*
+
+###
+
+Savannas are generally less efficient than tropical forests at sequestering carbon dioxide from the atmosphere, and recent studies indicate that certain areas of the Amazon are now releasing more carbon dioxide than they absorb. However, there remains no definitive agreement on a tipping point leading to widespread rainforest depletion and the proliferation of savanna species (Cerrado) from the biome. Given the intricate interplay between regional land-use alterations and global climate shifts, scientists are working to gain more understanding about this potential 'point of no return' for the Amazon rainforest. The threshold has been estimated to occur when deforestation reaches 20-25%. Currently, the Amazon has already undergone approximately 17% deforestation, which highlights the urgency of conservation efforts to prevent reaching an ecological tiping point.
+
+*Map information: ESA Deforested Biomass CCI RECCAP-2. [View dataset](https://www.eodashboard.org/explore?search=World%3A+Deforestation+%28CCI+RECCAP2%29&x=-4728884.58935&y=-802462.43364&z=4.52712&poi=World-RECCAP2_6)*
+
+## Wildfires
+
+### Wildfires
+
+##
+
+###
+
+#### Wildfires crisis: increased severity
+
+Wildfires are becoming more destructive due to several factors, which include rising temperatures, land use changes, and drought [(20)](https://www.pbs.org/newshour/science/climate-change-is-causing-more-wildfires-and-governments-are-unprepared-says-u-n), which contribute to considerable alterations in vast forested areas, transforming them into barren lands that struggle to sustain diverse ecosystems. Savannas and boreal forests have opposite trajectories of fire activity. Fires are declining in savannas and grasslands. In fact, global burned area has declined by ~25% over the past 18 years, largely in savannas and grasslands because of agriculture expansion and intensification [(21)](https://www.science.org/doi/10.1126/science.aal4108). On the other hand, fires are increasing in boreal forest ecosystems, albeit with large interannual variability [(22)](https://www.fao.org/3/xii/0207-b3.htm), making it difficult to attribute recent high fire years to an overall positive trend in burned areas. The ESA CCI programme also delivers Global maps of burned area, based on the NASA's Moderate Resolution Imaging Spectroradiometer (MODIS) on board the Terra satellite.
+
+Find more information about the South American Fires in 2023 on the [NASA Earth Observatory](https://earthobservatory.nasa.gov/images/event/151021/south-american-fires-in-2023).
+
+*Map information: Carbon Dioxide (CO2) from NASA’s OCO-2. [View dataset](https://www.eodashboard.org/explore?search=World%3A+Carbon+Dioxide+%28daily%29&x=-17393.67044&y=-859057.16368&z=2.86573&indicator=N2_CO2_mean)*
+
+###
+
+#### Siberian Boreal forests
+
+
+
+In August 2021, wildfires in Siberia produced 800 megatons of carbon dioxide, nearly double the previous year [(23)](https://www.space.com/siberia-wildfires-greenhouse-gas-emissions-satellite-images). According to estimates by the European Copernicus Atmosphere Monitoring Service (CAMS), more carbon dioxide was released in two and half months than the world’s six most polluting countries emit in a year. Climate change is exacerbating both drier and warmer conditions, fueling more frequent and farther-reaching wildfires that release massive amount of carbon into the atmosphere [(24)](https://www.nrdc.org/stories/climate-tipping-points-are-closer-once-thought). Also, there is consistent evidence that the intervals between fires are shortening, meaning that more carbon is being released from organic soils in boreal forests than the ecosystems can reabsorb, adding up to the trend where boreal forests are leading to a tipping point in that they are becoming a source for global emissions from biomass burning [(25)](https://earthsky.org/earth/wildfires-turn-worlds-largest-forests-carbon-sinks-emitters/) [(26)](https://alaskabeacon.com/2023/03/03/extreme-wildfires-are-turning-worlds-largest-forest-ecosystem-from-carbon-sink-into-net-emitter/) [(27)](https://climate.nasa.gov/news/2905/boreal-forest-fires-could-release-deep-soil-carbon/).
+
+*Map information: Carbon Dioxide (CO2) from NASA’s OCO-2. [View dataset](https://www.eodashboard.org/explore?search=World%3A+Carbon+Dioxide+%28daily%29&x=-17393.67044&y=-859057.16368&z=2.86573&indicator=N2_CO2_mean)*
+
+###
+
+#### Grasslands and Savannas
+
+Some of the world’s most relevant woody biomes, the savannas, might be facing tipping point [(28)](https://www.researchgate.net/publication/257198227_Mega-fires_tipping_points_and_ecosystem_services_Managing_forests_and_woodlands_in_an_uncertain_future). Fires which play a crucial role in the maintenance and stabilisation of savannas in regions where forest is also a viable stable ecosystem state. Across the grasslands of Asia, the tropical forests of South America, and the savannas of Africa, shifting livelihoods are leading to a significant decline in burned area. By using space assets to detect fires and burn scars, researchers found an ongoing transition from nomadic cultures to settled lifestyles and intensifying agriculture, which has led to a steep drop in the use of fire for land clearing and an overall drop in natural and human-caused fires worldwide. In traditional savanna cultures, people often set fires to keep grazing lands productive and free of shrubs and trees. But as many of these communities have shifted to cultivating permanent fields and building more houses, roads, and villages, the use of fire has declined [(29)](https://earthobservatory.nasa.gov/images/90493/researchers-detect-a-global-drop-in-fires).
+
+Conversely, other activities such as fire suppression have allowed fuel loads to accumulate, resulting in a dramatic increase of wildfire intensity. While much of the evidence comes from Australia and the USA,
+additional insights can be gained from other regions as well.
+
+###
+
+In Central Africa, the slash-and-burn agriculture practice combined with the seasonal rise in temperature are primarily responsible for wildfires in Central Africa. In 2019, data from NASA's MODIS satellite revealed Central Africa experienced five times the number of wildfires as the Amazon, although the phenomena and impacts in the two regions are not equivalent [(30)](https://www.newsweek.com/nasa-images-show-africa-has-five-times-more-wildfires-burning-amazonheres-why-theyre-1456382) . The changes in savanna, grassland, and tropical forest fire patterns are so large that they have so far offset some of the increased risk of fire caused by global warming. The impact of a warming and drying climate is more obvious at higher latitudes, where fire has increased in Canada and the American West. Regions of China, India, Brazil, and southern Africa also showed increases in burned area.
+
+###
+
+#### California's giant sequoias
+
+
+
+According to the U.S. Forest Service, recent fires have killed from 13 to 19% of the world’s giant sequoias in 2020 and 2021 alone [(31)](https://insideclimatenews.org/news/23092022/california-sequioa-wildfires/). [(32)](https://www.nps.gov/articles/000/2021-fire-season-impacts-to-giant-sequoias.htm), causing concern in the scientific community that California forests may be nearing a tipping point from wildfires. Giant sequoias evolved to survive and thrive under lightning-ignited wildfires. In fact, the giant trees depend on fire to release the seeds inside their cones and to remove competing trees that would otherwise deprive them of the ample sunlight they need to flourish [(33)](https://150.parks.ca.gov/?page_id=27588).
+
+*Map information: EPA Methane Emissions [View dataset](https://www.eodashboard.org/explore?indicator=EPA_Field_burning_Monthly&x=-10575351.41304&y=4201451.01648&z=3.34556)*
+
+###
+
+However, the increased severity of fires in recent years, fueled by the racing pace of global warming, is threatening the giant sequoias. In 2021 two very large fires, the Kings Canyon National Park “(KNP) Complex Fire ”and the “Windy Fire”, burned in the southern Sierra Nevada mountains of California in 2021. They had a significant impact on the region's giant sequoia groves, killing thousands of trees. On September 15, 2021 the Operational Land Imager (OLI) on Landsat 8 [(34)](https://landsat.gsfc.nasa.gov/satellites/landsat-8/) acquired an imagery of the “KNP Complex fire” - the largest wildfire in California history at the time. The instrument allowed to depict fire fronts beneath the plumes thanks to the thermal signature provided by infrared data [(35)](https://earthobservatory.nasa.gov/images/148840/fire-encroaching-on-giant-sequoias). Satellite images of the KNP Complex and Windy Fire, both within the Sequoia National Park, were captured by the Geostationary Operational Environmental Satellite 17 (GOES-17) [(36)](https://www.goes-r.gov/multimedia/dataAndImageryImagesGoes-17.html), which prompted authorities to issue evacuation orders [(37)](https://earthobservatory.nasa.gov/images/148878/southern-california-under-smoke).
+
+###
+
+The following year, 4800 acres burned from 7th to 30th of July causing road closures for multiple weeks. These fires were part of a larger pattern of wildfires in the western United States, where wildland fires occur more frequently and over a longer period each year as the fire season extends. NASA Earth has been spatializing and mapping wildfires since 1950 [(38)](https://appliedsciences.nasa.gov/our-impact/news/washburn-fire-fits-pattern-longer-and-more-frequent-wildfires).
+
+## Human proximity and resilience
+
+### Human proximity and resilience
+
+##
+
+###
+
+#### Human Settlements impact resilience of temperate forests
+
+
+
+Due to their moderate climates, fertile soils, and vegetation productivity, temperate forest regions have historically attracted human settlement. Consequently, these forests are often situated in proximity to large human populations and have faced substantial impacts from human activities. These impacts encompass pollution, deforestation for agricultural expansion, and the introduction of invasive pests and diseases, all of which significantly affect the health and sustainability of these ecosystems [(39)](https://www.sciencedirect.com/topics/agricultural-and-biological-sciences/temperate-forest).
+
+###
+
+Recent studies [(41)](https://www.nature.com/articles/s41586-022-04959-9) indicate that this type of forest is on the verge of reaching a tipping point. This looming risk stems from several factors, including climate change, land-use alterations, the introduction of invasive species, and other disturbances. These factors can result in a notable decline in forest resilience, characterized by two primary aspects: the forest's ability to recover after a disturbance and its capacity to withstand the highest level of disturbance [(42)](https://besjournals.onlinelibrary.wiley.com/doi/pdf/10.1111/1365-2745.12337). Reductions in forest resilience are statistically associated with abrupt declines in forest primary productivity, occurring as a response to gradual movement toward a critical resilience threshold.
+
+###
+
+The biomass of some temperate forests exceeds that of any tropical forest. They provide critical ecosystem services, and recent evidence indicates the global importance of carbon sinks in the temperate forest zone, especially in eastern North America. While temperate forests generally have lower biodiversity compared to tropical forests, they do feature hotspots with high levels of endemism [(43)](https://www.sciencedirect.com/topics/agricultural-and-biological-sciences/temperate-forest). In Europe, the situation is concerning, with less than half of the continent’s original forested areas remaining. Deforestation is accelerating across the developing word, largely driven by human population growth [(44)](https://www.esa.int/Applications/Observing_the_Earth/Space_for_our_climate/Forests). A study published in Nature reported a worrying trend: canopy mortality has doubled in Europe’s temperate forests over the past three decades [(45)](https://www.nature.com/articles/s41467-018-07539-6).
+
+###
+
+Another article also published in the same journal estimated a global decline in forest resilience over the past two decades, affecting not just temperate forests but also tropical and arid forests. This decline is likely linked to increased water stress and the broader impacts of climate change [(41)](https://www.nature.com/articles/s41586-022-04959-9).
+
+## Restoration and conservation
+
+### Restoration and conservation
+
+##
+
+###
+
+#### Satellite for restoration and conservation and monitoring illegal activities
+
+One of the main drives of degradation in sub/tropical countries is unsustainable logging [(46)](https://iopscience.iop.org/article/10.1088/1748-9326/7/4/044009). To counter this, many private companies, public institutions and non-governmental organisations (NGOs) are stepping up their forestry conservation pledges. But given the size and accessibility of many locations on Earth, a crucial component in these efforts is the use of satellite-based forest monitoring systems. For instance, such system have been instrumental in slowing down deforestation in Brazil [(47)](https://earthobservatory.nasa.gov/images/145988/tracking-amazon-deforestation-from-above).
+
+*Map information: Secondary forest growth - CCI RECCAP2 [View dataset](https://www.eodashboard.org/explore?search=World%3A+Secondary+forest+growth+%28CCI+RECCAP2%29&x=-6860063.62014&y=-850287.36643&z=4.35591&indicator=RECCAP2_5)*
+
+##
+
+A series of USGS Landsat and Copernicus Sentinel-2 images showing secondary forest regrowth near Rio Capim, in the Brazilian Amazon, from 1985 to 2022.
+
+[Read full story]( https://www.esa.int/Applications/Observing_the_Earth/Space_for_our_climate/Recovering_forests_regain_a_quarter_of_carbon_lost_from_deforestation)
+
+###
+
+One notable example of these technologies in action is the Global Forest Watch. This online platform leverages satellite data to support monitoring and evaluation of conservation projects, playing a vital role in international efforts to reduce deforestation.
+
+###
+
+Synthetic aperture radar (SAR), which can observe land surface through clouds, is also useful technology for monitoring deforestation especially in tropical forests. Japan International Cooperation Agency (JICA) and JAXA are operating “the JICA-JAXA Forest Early Warning System in the Tropics” (JJ-FAST), which provides the latest information on deforestation and forest changes in tropical regions globally, on an average of once every 45 days by utilizing ALOS-2 observation data. JJ-FAST is utilized operationally in some countries in the South America and Africa for monitoring deforestation including illegal logging.
diff --git a/app/public/data/storytelling-md/new-storytelling-demo.md b/app/public/data/storytelling-md/new-storytelling-demo.md
new file mode 100644
index 0000000000..f8cab1e33d
--- /dev/null
+++ b/app/public/data/storytelling-md/new-storytelling-demo.md
@@ -0,0 +1,18 @@
+## Satellite data applications for environmental impacts on world crop (cereal) supply and demand
+
+**Advances in satellite monitoring** deliver a treasure-trove of data that scientists study and analyze for the betterment of humankind. These discoveries can help identify trends that better predict occurrences such as climate change and global warming. Since 2020, researchers at the European Space Agency, (ESA), the Japanese Space Agency, (JAXA), and NASA have been working together on a joint dashboard to combine their satellite data and openly share findings in an effort to elevate and protect the quality of life for the global population.
+
+Providing insight into agricultural production, crop conditions, and food supply are among some of the most impactful information afforded by Earth observing satellites. Information derived from the data retrieved can affect the price we pay at grocery stores, policy implementation from regional to global scales, and food security around the world. Not only can satellite data tell us about current and near-future food and commodity crop conditions, but researchers are also studying the long-term trends in climate change and its effects on our food supply in support of agricultural resilience.
+
+##
+
+###
+As demonstrated by recent global crises including the COVID-19 pandemic and the ongoing Russian war in Ukraine, the globally interconnected nature of the agrifood system has been thrust into the spotlight. These extreme disruptions to the global food supply underscore the importance of global agriculture monitoring, both of major producing countries and those who are major importers and therefore most vulnerable to food insecurity.
+
+###
+A key example of international coordination in support of better food information is the **G20 GEOGLAM Crop Monitor** developed in response to a request from the G20 Agricultural Market Information System (AMIS). The Crop Monitor provides a public good of open, timely, science-driven information on crop conditions in support of market transparency. The GEOGLAM Crop Monitor Initiative are supported by the global agriculture community and national space agencies - including the NASA Harvest Consortium and US-based institutions, JAXA and JASMIN, ESA and several European institutions, ministries of agriculture across the globe and many more.
+
+###
+It reflects an international, multi-source, consensus assessment of crop growing conditions, status, and agro-climatic factors likely to impact global production, focusing on the major producing and trading countries for the four primary crops monitored by AMIS (wheat, maize, rice, and soybean) as well as on the countries most at risk to food insecurity and their primary staple crops.
+
+##
diff --git a/app/public/data/trilateral/Field_burning_Monthly-EPA.md b/app/public/data/trilateral/Field_burning_Monthly-EPA.md
new file mode 100644
index 0000000000..7a26aec811
--- /dev/null
+++ b/app/public/data/trilateral/Field_burning_Monthly-EPA.md
@@ -0,0 +1,17 @@
+## Gridded 2012 EPA Methane Emissions - Field Burning (monthly)
+
+## Dataset Description:
+Dataset represents a gridded inventory of U.S. anthropogenic methane emissions from various sources. The inventory is designed to be consistent with the 2016 U.S. EPA [Inventory of U.S. Greenhouse Gas Emissions and Sinks](https://www.epa.gov/ghgemissions/us-greenhouse-gas-inventory-report-1990-2014) estimates for the year 2012, which presents national totals for different source types. The gridded inventory was developed using a wide range of databases at the state, county, local, and point source level to allocate the spatial and temporal distribution of emissions for individual source types.
+
+This data can be used by researchers to better compare the national-level inventory with measurement results that may be at other scales.
+
+- Resolution: 0.1° x 0.1°
+- GeographicalCoverage: North America (-128, 23, -72, 52)
+- TemporalAvailability: 2012-01-01 - 2012-12-31
+- TemporalResolution: monthly
+- Provider: "[EPA](https://www.epa.gov/ghgemissions/gridded-2012-methane-emissions)"
+- Host: "[VEDA](https://www.earthdata.nasa.gov/esds/veda)"
+
+## Data Access
+
+- "[VEDA Catalog](https://staging-stac.delta-backend.com/collections/EPA-monthly-emissions_4F_Field_Burning)"
diff --git a/app/public/data/trilateral/Forest_fire_Methane_Daily-EPA.md b/app/public/data/trilateral/Forest_fire_Methane_Daily-EPA.md
new file mode 100644
index 0000000000..26a4086207
--- /dev/null
+++ b/app/public/data/trilateral/Forest_fire_Methane_Daily-EPA.md
@@ -0,0 +1,17 @@
+## Gridded 2012 EPA Methane Emissions - Forest Fires (daily)
+
+## Dataset Description:
+Dataset represents a gridded inventory of U.S. anthropogenic methane emissions from various sources. The inventory is designed to be consistent with the 2016 U.S. EPA [Inventory of U.S. Greenhouse Gas Emissions and Sinks](https://www.epa.gov/ghgemissions/us-greenhouse-gas-inventory-report-1990-2014) estimates for the year 2012, which presents national totals for different source types. The gridded inventory was developed using a wide range of databases at the state, county, local, and point source level to allocate the spatial and temporal distribution of emissions for individual source types.
+
+This data can be used by researchers to better compare the national-level inventory with measurement results that may be at other scales.
+
+- Resolution: 0.1° x 0.1°
+- GeographicalCoverage: North America (-128, 23, -72, 52)
+- TemporalAvailability: 2012-01-01 - 2012-12-31
+- TemporalResolution: daily
+- Provider: "[EPA](https://www.epa.gov/ghgemissions/gridded-2012-methane-emissions)"
+- Host: "[VEDA](https://www.earthdata.nasa.gov/esds/veda)"
+
+## Data Access
+
+- "[VEDA Catalog](https://staging-stac.delta-backend.com/collections/EPA-daily-emissions_5_Forest_Fires)"
diff --git a/app/public/data/trilateral/Forest_fire_Methane_Yearly-EPA.md b/app/public/data/trilateral/Forest_fire_Methane_Yearly-EPA.md
new file mode 100644
index 0000000000..280bf55b3d
--- /dev/null
+++ b/app/public/data/trilateral/Forest_fire_Methane_Yearly-EPA.md
@@ -0,0 +1,17 @@
+## Gridded 2012 EPA Methane Emissions - Forest Fires
+
+## Dataset Description:
+Dataset represents a gridded inventory of U.S. anthropogenic methane emissions from various sources. The inventory is designed to be consistent with the 2016 U.S. EPA [Inventory of U.S. Greenhouse Gas Emissions and Sinks](https://www.epa.gov/ghgemissions/us-greenhouse-gas-inventory-report-1990-2014) estimates for the year 2012, which presents national totals for different source types. The gridded inventory was developed using a wide range of databases at the state, county, local, and point source level to allocate the spatial and temporal distribution of emissions for individual source types.
+
+This data can be used by researchers to better compare the national-level inventory with measurement results that may be at other scales.
+
+- Resolution: 0.1° x 0.1°
+- GeographicalCoverage: North America (-128, 23, -72, 52)
+- TemporalAvailability: 2012-01-01 - 2012-12-31
+- TemporalResolution: yearly composite
+- Provider: "[EPA](https://www.epa.gov/ghgemissions/gridded-2012-methane-emissions)"
+- Host: "[VEDA](https://www.earthdata.nasa.gov/esds/veda)"
+
+## Data Access
+
+- "[VEDA Catalog](https://staging-stac.delta-backend.com/collections/EPA-annual-emissions_5_Forest_Fires)"
diff --git a/app/public/data/trilateral/HLS_NDVI.md b/app/public/data/trilateral/HLS_NDVI.md
new file mode 100644
index 0000000000..72ee65dd0b
--- /dev/null
+++ b/app/public/data/trilateral/HLS_NDVI.md
@@ -0,0 +1,14 @@
+## Normalized difference vegetation index from HLS
+
+## Dataset Description:
+
+Dataset represents a NDVI calculated from Harmonized Landsat and Sentinel-2 Data over Punta Gorda, Florida, USA.
+
+- GeographicalCoverage: [-82.37,26.31,-81.9,27.03]
+- TemporalAvailability: 2022-09-05 - 2022-09-30
+- TemporalResolution: individual dates
+- Host: "[VEDA](https://www.earthdata.nasa.gov/esds/veda)"
+
+## Data Access
+
+- "[VEDA Catalog](https://staging-stac.delta-backend.com/collections/hls-ndvi)"
diff --git a/app/public/data/trilateral/LIS_Global_DA_Evap.md b/app/public/data/trilateral/LIS_Global_DA_Evap.md
new file mode 100644
index 0000000000..6f67b612a5
--- /dev/null
+++ b/app/public/data/trilateral/LIS_Global_DA_Evap.md
@@ -0,0 +1,14 @@
+# Evapotranspiration - LIS 10km Global DA
+
+## Dataset Description:
+Dataset represents Gridded total evapotranspiration (in kg m-2 s-1) from 10km global LIS with assimilation.
+
+- Resolution: 10km
+- GeographicalCoverage: Global
+- TemporalAvailability: 2002-08-02 - 2021-12-01
+- TemporalResolution: daily
+- Host: "[VEDA](https://www.earthdata.nasa.gov/esds/veda)"
+
+## Data Access
+
+- "[VEDA Catalog](https://staging-stac.delta-backend.com/collections/lis-global-da-evap)"
diff --git a/app/public/data/trilateral/Science-Hub_Challenge-240202_v2.jpg b/app/public/data/trilateral/Science-Hub_Challenge-240202_v2.jpg
new file mode 100644
index 0000000000..859e354349
Binary files /dev/null and b/app/public/data/trilateral/Science-Hub_Challenge-240202_v2.jpg differ
diff --git a/app/public/data/trilateral/globalDataLayerImages/Field_burning_Monthly-EPA.png b/app/public/data/trilateral/globalDataLayerImages/Field_burning_Monthly-EPA.png
new file mode 100644
index 0000000000..bb059484bc
Binary files /dev/null and b/app/public/data/trilateral/globalDataLayerImages/Field_burning_Monthly-EPA.png differ
diff --git a/app/public/data/trilateral/globalDataLayerImages/Forest_fire_Methane_Daily-EPA.png b/app/public/data/trilateral/globalDataLayerImages/Forest_fire_Methane_Daily-EPA.png
new file mode 100644
index 0000000000..1280879ffd
Binary files /dev/null and b/app/public/data/trilateral/globalDataLayerImages/Forest_fire_Methane_Daily-EPA.png differ
diff --git a/app/public/data/trilateral/globalDataLayerImages/Forest_fire_Methane_Yearly-EPA.png b/app/public/data/trilateral/globalDataLayerImages/Forest_fire_Methane_Yearly-EPA.png
new file mode 100644
index 0000000000..ca569483ba
Binary files /dev/null and b/app/public/data/trilateral/globalDataLayerImages/Forest_fire_Methane_Yearly-EPA.png differ
diff --git a/app/public/data/trilateral/globalDataLayerImages/World-HLS_NDVI.png b/app/public/data/trilateral/globalDataLayerImages/World-HLS_NDVI.png
new file mode 100644
index 0000000000..1f4e6e4d2d
Binary files /dev/null and b/app/public/data/trilateral/globalDataLayerImages/World-HLS_NDVI.png differ
diff --git a/app/public/data/trilateral/globalDataLayerImages/World-LIS_Global_DA_Evap.png b/app/public/data/trilateral/globalDataLayerImages/World-LIS_Global_DA_Evap.png
new file mode 100644
index 0000000000..8b7fae7a45
Binary files /dev/null and b/app/public/data/trilateral/globalDataLayerImages/World-LIS_Global_DA_Evap.png differ
diff --git a/app/public/data/trilateral/globalDataLayerImages/World-sen4ama.png b/app/public/data/trilateral/globalDataLayerImages/World-sen4ama.png
new file mode 100644
index 0000000000..b7cd1a4b18
Binary files /dev/null and b/app/public/data/trilateral/globalDataLayerImages/World-sen4ama.png differ
diff --git a/app/public/data/trilateral/sen4ama.md b/app/public/data/trilateral/sen4ama.md
new file mode 100644
index 0000000000..0880c277d5
--- /dev/null
+++ b/app/public/data/trilateral/sen4ama.md
@@ -0,0 +1,14 @@
+## Forest Loss Area from Sentinel-1
+
+This product was developed in the frame of the activity "Sentinel-1 for Science Amazonas" funded by the European Space Agency. The dataset covers the Amazon rainforest, showing the observed forest loss visible in red.
+The project developed a simple space-time data cube design (referred to as StatCubes), where statistical information relevant to identify deforestation is extracted at each point in the SAR backscatter time-series. The cubes do not rely on decades of historical data, and the effects of seasonality, including rainfall, are inherently masked out. With this approach, the project demonstrates the use of Sentinel-1 data to create a dynamic deforestation product over the Amazon basin. Sentinel-1 satellite observations from 2015 to December 2021, each representing a 20 x 20 m of forest, were harmonised under theStatCubes design, and a simple thresholding approach to detect forest loss wass demonstrated in the first version of the results.
+
+
+### Relevant Links:
+* Project website: https://sen4ama.gisat.cz/
+* Data Access: https://drive.google.com/file/d/14nNZqO44M3-dINF4ugqsQ0mvU0gBuooq/view?usp=drive_link
+* Documentation: https://drive.google.com/file/d/1WEEpEbnQBfYomVdiyu4mR31psVM07bMR/view?usp=drive_link
+* Algorithm: https://github.com/gisat/s14amazonas
+* ESA webstory: https://www.esa.int/Applications/Observing_the_Earth/Copernicus/Sentinel-1/Using_a_data_cube_to_monitor_forest_loss_in_the_Amazon
+
+
diff --git a/app/public/eodash-data/general/Polar-TEP-Logo-White-300x135.png b/app/public/eodash-data/general/Polar-TEP-Logo-White-300x135.png
new file mode 100644
index 0000000000..8f5e1f6563
Binary files /dev/null and b/app/public/eodash-data/general/Polar-TEP-Logo-White-300x135.png differ
diff --git a/app/public/eodash-data/stories/E13c_ship_detections.md b/app/public/eodash-data/stories/E13c_ship_detections.md
new file mode 100644
index 0000000000..48cdce8528
--- /dev/null
+++ b/app/public/eodash-data/stories/E13c_ship_detections.md
@@ -0,0 +1 @@
+placeholder
diff --git a/app/public/legends/legends.json b/app/public/legends/legends.json
index f1ad252ea5..999c56f7d5 100644
--- a/app/public/legends/legends.json
+++ b/app/public/legends/legends.json
@@ -364,6 +364,32 @@
"cm": [[0, [56, 56, 148]], [2,[82, 133, 140]], [4,[111, 213, 132]], [6,[136, 210, 111]], [8,[155, 116, 78]], [10,[175, 28, 47]]],
"label": "Turbidity [NTU]",
"ticks": [0, 2, 4, 6, 8, 10]
+ },
+ "EPA_Forest_fire_Methane_Yearly": {
+ "range": [0, 2],
+ "cm": "rainbow",
+ "label": "*10^10[molec/cm2/s]"
+ },
+ "EPA_Forest_fire_Methane_Daily": {
+ "range": [0, 2],
+ "cm": "rainbow",
+ "label": "*10^12[molec/cm2/s]"
+ },
+ "EPA_Field_burning_Monthly": {
+ "range": [0, 4.5],
+ "cm": "rainbow",
+ "label": "*10^9[molec/cm2/s]"
+ },
+ "LIS_Global_DA_Evap": {
+ "range": [0, 100],
+ "cm": "viridis",
+ "label": "mg/m2/s"
+ },
+ "HLS_NDVI": {
+ "range": [-1, 1],
+ "cm": "cfastie",
+ "label": "NDVI",
+ "ticks": [-1, -0.8, -0.6, -0.4, -0.2, 0, 0.2, 0.4, 0.6, 0.8, 1]
}
},
"gtif": {
diff --git a/app/public/legends/trilateral/EPA_Field_burning_Monthly.png b/app/public/legends/trilateral/EPA_Field_burning_Monthly.png
new file mode 100644
index 0000000000..a71fe4377d
Binary files /dev/null and b/app/public/legends/trilateral/EPA_Field_burning_Monthly.png differ
diff --git a/app/public/legends/trilateral/EPA_Forest_fire_Methane_Daily.png b/app/public/legends/trilateral/EPA_Forest_fire_Methane_Daily.png
new file mode 100644
index 0000000000..130e386162
Binary files /dev/null and b/app/public/legends/trilateral/EPA_Forest_fire_Methane_Daily.png differ
diff --git a/app/public/legends/trilateral/EPA_Forest_fire_Methane_Yearly.png b/app/public/legends/trilateral/EPA_Forest_fire_Methane_Yearly.png
new file mode 100644
index 0000000000..7fc81566be
Binary files /dev/null and b/app/public/legends/trilateral/EPA_Forest_fire_Methane_Yearly.png differ
diff --git a/app/public/legends/trilateral/HLS_NDVI.png b/app/public/legends/trilateral/HLS_NDVI.png
new file mode 100644
index 0000000000..819f172c26
Binary files /dev/null and b/app/public/legends/trilateral/HLS_NDVI.png differ
diff --git a/app/public/legends/trilateral/LIS_Global_DA_Evap.png b/app/public/legends/trilateral/LIS_Global_DA_Evap.png
new file mode 100644
index 0000000000..69418698f6
Binary files /dev/null and b/app/public/legends/trilateral/LIS_Global_DA_Evap.png differ
diff --git a/app/public/shConfig.js b/app/public/shConfig.js
index 231d920285..4f6d7344cb 100644
--- a/app/public/shConfig.js
+++ b/app/public/shConfig.js
@@ -1,7 +1,6 @@
const shConfig = {
shInstanceId: '$SH_INSTANCE_ID',
- shInstanceIdGtif: '$SH_INSTANCE_ID_GTIF',
- mbAccessToken: '$MAPBOX_ACCESS_TOKEN',
+ shInstanceIdPolar: '$SH_INSTANCE_ID_POLAR',
geodbInstanceId: '$GEODB_INSTANCE_ID',
listmonkApiKey: '$LISTMONK_API_KEY',
statApiClientId: '$STAT_API_CLIENT_ID',
diff --git a/app/src/App.vue b/app/src/App.vue
index cc89b3f3e2..adfb38d0fc 100644
--- a/app/src/App.vue
+++ b/app/src/App.vue
@@ -148,7 +148,7 @@ export default {
// Listen for initial loading of indicators and set possible indicator from url
this.$store.subscribe((mutation) => {
if (mutation.type === 'features/SET_FEATURES') {
- if (mutation.payload && this.startupFeatureSelection !== null) {
+ if (mutation.payload?.length && this.startupFeatureSelection !== null) {
const features = mutation.payload;
const selectedFeature = features.find((ft) => {
const indObj = ft.properties.indicatorObject;
@@ -168,7 +168,7 @@ export default {
if (mutation.type === 'indicators/SET_INDICATORS') {
// Read route query and set selected indicator, once indicator loaded set selected feature
- if (mutation.payload) {
+ if (mutation.payload?.length) {
const { poi, indicator } = this.$route.query;
// For legacy support we need to consider indicator not being set, only poi,
// then we need to extract the information from the poi
diff --git a/app/src/appConfig.js b/app/src/appConfig.js
index 6c921e0999..8d1156429c 100644
--- a/app/src/appConfig.js
+++ b/app/src/appConfig.js
@@ -1,7 +1,6 @@
module.exports = [
{
id: 'esa',
- catalogUrl: 'https://raw.githubusercontent.com/eurodatacube/eodash-catalog/collection_definition/build/RACE/catalog.json',
mailingList: {
development: 2,
staging: 2,
@@ -54,6 +53,9 @@ module.exports = [
'#22aa99', '#a37', '#47a', '#a67', '#283', '#302f2f',
'#6ce', '#994499', '#bbb', '#6633cc', '#e67300',
],
+ uiText: {
+ indicatorPanelheader: 'Choose an indicator to explore',
+ },
demoMode: {
egu2023: [
// custom story is not supported yet for new demo mode
@@ -189,6 +191,9 @@ module.exports = [
collectionLink.themes[j] = 'oceans';
}
},
+ uiText: {
+ indicatorPanelheader: 'Choose an indicator to explore',
+ },
demoMode: {
cop28: [
{
@@ -314,11 +319,11 @@ module.exports = [
src: './data/trilateral/new-precipitation-jaxa.png',
},
{
- poi: 'ThwaitesLandsat-ADD',
+ poi: 'ADD_L2_Thwaites-ADD_Landsat_L2_Antarctica',
src: './data/trilateral/landsat-antarctica.png',
},
{
- poi: 'S1GRD-ADD',
+ poi: 'World-ADD_West_Antarctica_S1',
src: './data/trilateral/s-1-antarctica.png',
},
],
@@ -386,6 +391,131 @@ module.exports = [
enableStories: false,
enableESALayout: true,
enableScrollyTelling: true,
+ },
+ {
+ id: 'polar',
+ mailingList: {
+ development: 3,
+ staging: 3,
+ production: 5,
+ },
+ demoMode: {
+ polartep: [
+ {
+ poi: 'World-TOPAZ5_P1D_SIAGE',
+ },
+ {
+ poi: 'World-TOPAZ5_P1D_SICONC',
+ },
+ {
+ poi: 'World-TOPAZ5_P1D_SISNTHICK',
+ },
+ {
+ poi: 'World-TOPAZ5_P1D_SITHICK',
+ },
+ {
+ poi: 'World-TOPAZ5_P1D_VXO',
+ },
+ {
+ poi: 'World-TOPAZ5_P1D_VXSI',
+ },
+ {
+ poi: 'World-TOPAZ5_P1D_VYO',
+ },
+ {
+ poi: 'World-TOPAZ5_P1D_VYSI',
+ },
+ {
+ poi: 'World-TOPAZ4_P1D_SICONC',
+ },
+ {
+ poi: 'World-TOPAZ4_P1D_SISNTHICK',
+ },
+ {
+ poi: 'World-TOPAZ4_P1D_SITHICK',
+ },
+ {
+ poi: 'World-TOPAZ4_P1D_VXO',
+ },
+ {
+ poi: 'World-TOPAZ4_P1D_VXSI',
+ },
+ {
+ poi: 'World-TOPAZ4_P1D_VYO',
+ },
+ {
+ poi: 'World-TOPAZ4_P1D_VYSI',
+ },
+ {
+ poi: 'World-SITI',
+ },
+ {
+ poi: 'World-N12_1_sea_ice_concentration_arctic',
+ },
+ {
+ poi: 'World-CDS3',
+ },
+ {
+ poi: 'World-CDS4',
+ },
+ {
+ poi: 'World-CDS1_temperature',
+ },
+ {
+ poi: 'World-Polartep_SeaIceDetection_tif_demo',
+ },
+ {
+ poi: 'World-Polartep_Snowgrain_diameter_demo',
+ },
+ {
+ poi: 'World-Polartep_Snow_specific_surface_area_demo',
+ },
+ {
+ poi: 'World-Polartep_S1_demo',
+ },
+ {
+ poi: 'World-Polartep_SeaIce_demo',
+ },
+ ],
+ },
+ match: ['polardashboard.org', 'polar.eox.world', 'polar.localhost', 'polar.eox.home', 'eodash-polar.eox.at', 'eodash-polar-testing.eox.at'],
+ branding: {
+ appName: 'Polar Dashboard',
+ primaryColor: '#003247',
+ secondaryColor: '#00ae9d',
+ headerLogo: './eodash-data/general/RACE_Logo.png',
+ faviconPath: './public/img/ESA/favicon.ico',
+ },
+ pageMeta: {
+ rootPath: 'https://polardashboard.org',
+ googleSiteVerification: '',
+ shortDescription: 'Polar Dashboard', // TODO: polar
+ twitterCardImagePath: '/img/ESA/twitter_card.jpg', // TODO: polar
+ imagePath: '/img/ESA', // TODO: polar
+ },
+ showNewsletterButton: false,
+ customCSS: 'esa',
+ newsBanner: {},
+ aboutText: '/eodash-data/general/about',
+ welcomeText: '/eodash-data/general/welcome',
+ tutorialText: '/eodash-data/general/tutorials',
+ showNewsCarousel: false,
+ newsCarouselitems: [
+ ],
+ privacyText: '/eodash-data/general/privacy',
+ termsText: '/eodash-data/general/terms',
+ challengesText: '/eodash-data/general/challenges',
+ feedbackTwitterHandles: ['esa_eo', 'EO_OPEN_SCIENCE', 'eurodatacube'],
+ refColors: [
+ '#22aa99', '#a37', '#47a', '#a67', '#283', '#302f2f',
+ '#6ce', '#994499', '#bbb', '#6633cc', '#e67300',
+ ],
+ enableStories: false,
+ enableESALayout: false,
+ enableScrollyTelling: false,
enableIndicatorSidebar: true,
+ uiText: {
+
+ },
},
];
diff --git a/app/src/components/DataPanel.vue b/app/src/components/DataPanel.vue
index be843ad29c..7de5441aa3 100644
--- a/app/src/components/DataPanel.vue
+++ b/app/src/components/DataPanel.vue
@@ -200,7 +200,12 @@
:vectorStyles="indicatorObject.vectorStyles"
>
-
+
+
@@ -243,7 +248,7 @@
Select a point of interest on the map to see more information
-
@@ -282,6 +287,7 @@ import DataMockupView from '@/components/DataMockupView.vue';
import AddToDashboardButton from '@/components/AddToDashboardButton.vue';
import WmsStyleControls from '@/components/map/WmsStyleControls.vue';
import VectorTileStyleControl from '@/components/map/VectorTileStyleControl.vue';
+import VectorStyleControl from '@/components/map/VectorStyleControl.vue';
import SelectionInfoBar from '@/components/SelectionInfoBar.vue';
import GTIFProcessingButtons from '@/components/GTIFProcessingButtons.vue';
@@ -297,6 +303,7 @@ export default {
DataMockupView,
SelectionInfoBar,
GTIFProcessingButtons,
+ VectorStyleControl,
},
data: () => ({
mounted: false,
@@ -316,6 +323,9 @@ export default {
...mapState('indicators', [
'customAreaIndicator',
]),
+ showingChart() {
+ return this.customAreaIndicator || this.customAreaIndicator || this.dataObject?.time;
+ },
indicatorObject() {
return this.$store.state.indicators.selectedIndicator;
},
@@ -410,6 +420,18 @@ export default {
const currDate = DateTime.utc().toFormat('yyyy-LL-dd');
return `user_AOI_${currDate}_${this.indicatorObject.indicator}.csv`;
},
+ useVectorStyleControl() {
+ return Array.isArray(this.indicatorObject?.queryParameters);
+ },
+ showVisualAnalysisAddons() {
+ let show = false;
+ if (['polar', 'gtif'].includes(this.appConfig.id)) {
+ const showVar = this.indicatorHasMapData;
+ const hideVar = this.mergedConfigsData[0].disableVisualAnalysisAddons;
+ show = showVar && !hideVar;
+ }
+ return show;
+ },
showMap() {
// show map means that only information on the map is shown and no indicator data is expected
// currently this seems to be only the case for indicatorobjects with no features
@@ -489,6 +511,16 @@ export default {
},
},
watch: {
+ showingChart() {
+ if (this.showingChart) {
+ // we only want to open if it is closed
+ if (!this.$parent.$parent.$el.classList.contains('v-expansion-panel--active')) {
+ this.$parent.$parent.$parent.$refs.header.$emit('click', {
+ currentTarget: this.$parent.$parent.$parent.$refs.header.$el,
+ });
+ }
+ }
+ },
selectedArea(area) {
this.showRegenerateButton = this.customAreaIndicator && !!area;
},
diff --git a/app/src/components/GlobalHeader.vue b/app/src/components/GlobalHeader.vue
index e8c19a6d0e..8511b83a2f 100644
--- a/app/src/components/GlobalHeader.vue
+++ b/app/src/components/GlobalHeader.vue
@@ -255,6 +255,7 @@
+
@@ -436,6 +441,10 @@ export default {
...mapGetters({
currentTheme: 'themes/getCurrentTheme',
}),
+ polartepTemp() {
+ // TODO remove when to be merged
+ return this.appConfig.id === 'polar';
+ },
isThemePageActive() {
switch (this.$route.name) {
diff --git a/app/src/components/IndicatorData.vue b/app/src/components/IndicatorData.vue
index eb1300dd14..b785ba0170 100644
--- a/app/src/components/IndicatorData.vue
+++ b/app/src/components/IndicatorData.vue
@@ -125,12 +125,12 @@ export default {
dataLayerTimeFromMap: null,
compareLayerTimeFromMap: null,
lineChartIndicators: [
- 'E12', 'E12b', 'E8', 'N1b', 'N1', 'N1_NO2_city_trilateral', 'NASACustomLineChart', 'XCubeCustomLineChart', 'SHCustomLineChart', 'N3', 'N3b_tsm', 'N3b_chl', 'SST',
- 'GG', 'E10a', 'E10a9', 'CV', 'OW', 'E10c', 'E10a10', 'OX', 'OX-EU',
+ 'E12b', 'E8', 'N1b', 'N1', 'N1_NO2_city_trilateral', 'NASACustomLineChart', 'XCubeCustomLineChart', 'SHCustomLineChart', 'N3', 'N3b_tsm', 'N3b_chl', 'SST',
+ 'GG', 'E10a', 'E10a9', 'CV', 'OW', 'E10c', 'E10a10', 'OX', 'OX_EU',
'N1a', 'N1c', 'N1d', 'LWE', 'LWL',
'AQA', 'AQB', 'AQC', 'AQ3', 'REP4_1', 'REP4_4', 'REP4_6',
'MOBI1', 'MOBI1_1', 'PRCTS', 'SMCTS', 'VITS', 'E12c', 'E12d', 'ADO', 'ADO_1', 'ADO_2', 'ADO_3',
- 'Lakes_SWT',
+ 'Lakes_SWT', 'CROPOM',
// Year overlap comparison
'E13e', 'E13f', 'E13g', 'E13h', 'E13i', 'E13l', 'E13m',
'E10a2', 'E10a6', 'N3a2', 'N3a2_chl_esa', 'N3a2_chl_jaxa', 'N3a2_TSM_esa', 'N3a2_TSM_jaxa', 'REP4_2', 'REP1', 'REP1_1', 'REP1_2',
@@ -876,6 +876,34 @@ export default {
borderWidth: 2,
});
}
+ if (['CROPOM'].includes(indicatorCode)) {
+ const data = [];
+ const refData = [];
+ featureData.time.forEach((t, i) => {
+ data.push({ t, y: featureData.measurement[i] });
+ refData.push({ t, y: featureData.referenceValue[i] });
+ });
+ datasets.push({
+ label: `Yield ${featureData.yAxis[0]}`,
+ yAxisID: 'y-axis-0',
+ data,
+ fill: false,
+ borderColor: refColors[0],
+ backgroundColor: refColors[0],
+ borderWidth: 2,
+ pointRadius: 2,
+ });
+ datasets.push({
+ label: `Biomass ${featureData.yAxis[1]}`,
+ yAxisID: 'y-axis-1',
+ data: refData,
+ fill: false,
+ borderColor: refColors[1],
+ backgroundColor: refColors[1],
+ borderWidth: 2,
+ pointRadius: 2,
+ });
+ }
if (['N3b_tsm', 'N3b_chl'].includes(indicatorCode)) {
const sensors = Array.from(new Set(featureData.eoSensor)).sort();
@@ -1010,7 +1038,7 @@ export default {
}
datasets.push(ds);
});
- } else if (['OX', 'OX-EU'].includes(indicatorCode)) {
+ } else if (['OX', 'OX_EU'].includes(indicatorCode)) {
const data = [];
const average = [];
let counter = 0;
@@ -1376,10 +1404,10 @@ export default {
if (this.enableMapTimeInteraction) {
// set listener to highlight points for selected time on map via annotations
if (event.data.command === 'chart:setTime') {
- this.dataLayerTimeFromMap = event.data.time;
+ this.dataLayerTimeFromMap = event?.data?.time;
}
if (event.data.command === 'chart:setCompareTime') {
- this.compareLayerTimeFromMap = event.data.time;
+ this.compareLayerTimeFromMap = event?.data?.time;
}
this.$nextTick(() => {
const chart = this.getChartObject();
@@ -1497,6 +1525,8 @@ export default {
}.bind(this),
},
};
+ // just one default yAxis
+ customSettings.yAxis = [this.indicatorObject.yAxis];
if (!Number.isNaN(reference) && ['E13b', 'E200'].includes(indicatorCode)) {
annotations.push({
@@ -1590,7 +1620,7 @@ export default {
customSettings.yAxisRange = [0, 8];
}
- if (['E13d', 'E13n', 'OX', 'OX-EU'].includes(indicatorCode)) {
+ if (['E13d', 'E13n', 'OX', 'OX_EU'].includes(indicatorCode)) {
customSettings.timeConfig = {
unit: 'month',
displayFormats: { month: 'MMM yy' },
@@ -1753,7 +1783,7 @@ export default {
}
// Special chart display for oilx data
- if (['OX', 'OX-EU'].includes(indicatorCode)) {
+ if (['OX', 'OX_EU'].includes(indicatorCode)) {
customSettings.hover = {
mode: 'nearest',
};
@@ -1911,6 +1941,10 @@ export default {
};
}
+ if (['CROPOM'].includes(indicatorCode)) {
+ customSettings.yAxis = ['t/ha', 'g/m2'];
+ }
+
if (['SOL1', 'SOL1_1', 'SOL1_2', 'SOL1_3', 'SOL1_4', 'SOL1_5', 'SOL1_6', 'SOL1_7', 'SOL2', 'SOL2_1', 'SOL2_2', 'SOL2_3'].includes(indicatorCode)) {
customSettings.tooltips = {
callbacks: {
@@ -1989,7 +2023,6 @@ export default {
animation: {
duration: 0,
},
- yAxis: this.indicatorObject.yAxis,
xAxis: this.indicatorObject.xAxis,
country: this.indicatorObject.country,
};
diff --git a/app/src/components/IndicatorFiltersDemo.vue b/app/src/components/IndicatorFiltersDemo.vue
index 0a61e41648..662a6e3e5c 100644
--- a/app/src/components/IndicatorFiltersDemo.vue
+++ b/app/src/components/IndicatorFiltersDemo.vue
@@ -28,9 +28,7 @@
-
-
- Filter
-
-
-
+
+
+
{{this.appConfig.id === "gtif" ? (toolsToggle ? "Tools" : "Narratives") : "Indicators"}}
@@ -138,12 +135,15 @@ export default {
{ key: 'tags', title: 'Tag' },
{ key: 'satellite', title: 'Satellite' },
{ key: 'sensor', title: 'Satellite sensor' },
+ /*
{ key: 'insituSources', title: 'In situ sources' },
{ key: 'otherSources', title: 'Other sources' },
+ */
{ key: 'countries', title: 'Country' },
- { key: 'cities', title: 'City' },
+ { key: 'cities', title: 'City/Location' },
],
aggregateResults: 'group',
+ autoSpreadSingle: true,
enableHighlighting: true,
onSelect: (item) => {
this.toggleSelectedItem(item);
@@ -159,19 +159,49 @@ export default {
expanded: true,
featured: true,
},
+ /*
{ key: 'tags', title: 'Tag' },
{ key: 'satellite', title: 'Satellite' },
{ key: 'sensor', title: 'Sensor' },
{ key: 'countries', title: 'Country' },
{ key: 'cities', title: 'City' },
{ key: 'themes', title: 'Theme', ...themesPresetState },
+ */
],
aggregateResults: 'themes',
+ autoSpreadSingle: false,
enableHighlighting: true,
onSelect: (item) => {
this.toggleSelectedItem(item);
},
},
+ polar: {
+ titleProperty: 'name',
+ filterProperties: [
+ // {
+ // keys: ['name', 'description'],
+ // title: 'Search',
+ // type: 'text',
+ // expanded: true,
+ // featured: true,
+ // },
+ /*
+ { key: 'tags', title: 'Tag' },
+ { key: 'satellite', title: 'Satellite' },
+ { key: 'sensor', title: 'Sensor' },
+ { key: 'countries', title: 'Country' },
+ { key: 'cities', title: 'City' },
+ { key: 'themes', title: 'Theme', ...themesPresetState },
+ */
+ ],
+ aggregateResults: 'group',
+ expandResults: false,
+ autoSpreadSingle: true,
+ enableHighlighting: false,
+ onSelect: (item) => {
+ this.toggleSelectedItem(item);
+ },
+ },
gtif: {
titleProperty: 'name',
filterProperties: [
@@ -277,25 +307,57 @@ export default {
// `;
// });
const flags = '';
- this.itemfilter.styleOverride = `
+ let newStyle = `
${this.itemFilterStyleOverride}
${flags}
${configs[this.appConfig.id].styleOverride}
#container-results{
- overflow:hidden;
- }
- form#itemfilter{
- overflow: auto;
- }
- * {
- font-family: 'NotesESA' !important;
- }
+ overflow:hidden;
+ }
+ form#itemfilter{
+ overflow: auto;
+ }
+ /* to fix strange double scroll bar in filters*/
+ eox-itemfilter-multiselect {
+ overflow-y: hidden!important;
+ }
+ /* to fix cutting of text in result names*/
+ label span {
+ height: 15px;
+ }
+ /* to have indicator results closer together */
+ #results li {
+ padding-top: 2px!important;
+ padding-bottom: 2px!important;
+ }
+ /* making reset button small and changing position */
+ #filter-reset {
+ height: 16px;
+ top: 39px!important;
+ right: 1px!important;
+ padding: 5px;
+ margin: 0px;
+ }
+ /* ading more indentation to summarized items */
+ details div ul li {
+ margin-left: 9px;
+ }
+ #filters>li:first-child {
+ margin-bottom: 10px!important;
+ }
`;
+ if (this.appConfig.id === 'gtif') {
+ newStyle = `${newStyle} * {
+ font-family: 'NotesESA' !important;
+ }`;
+ }
+ this.itemfilter.styleOverride = newStyle;
});
},
toggleSelectedItem(item) {
if (this.selectedIndicator && item.indicator === this.selectedIndicator.indicator) {
this.setSelectedIndicator(null);
+ // this does not reset the UI (the radiobutton is still checked...)
this.itemfilter.selectedResult = null;
this.itemfilter.requestUpdate();
} else {
@@ -304,6 +366,14 @@ export default {
// pick an indicator based on match of unique collection link instead
const match = this.indicators.find((indicator) => item.link === indicator.link);
this.setSelectedIndicator(match);
+
+ const uiPanels = this.$parent.$parent.$parent.$parent.$children;
+ // programatically open Layer Panel it exists and not open yet
+ if (!uiPanels[1].$refs.header.$el.classList.contains('v-expansion-panel-header--active')) {
+ uiPanels[1].$refs.header.$emit('click', {
+ currentTarget: uiPanels[1].$refs.header.$el,
+ });
+ }
}
},
},
diff --git a/app/src/components/LineChart.vue b/app/src/components/LineChart.vue
index f1653dae81..3624a64c91 100644
--- a/app/src/components/LineChart.vue
+++ b/app/src/components/LineChart.vue
@@ -23,6 +23,14 @@ export default {
}
},
data() {
+ const yAxes = this.options.yAxis.map((value) => (
+ {
+ scaleLabel: {
+ display: true,
+ labelString: value,
+ padding: 2,
+ },
+ }));
return {
defaultOptions: {
responsive: true,
@@ -90,13 +98,7 @@ export default {
distribution: this.options.distribution ? this.options.distribution : 'linear',
ticks: {},
}],
- yAxes: [{
- scaleLabel: {
- display: true,
- labelString: this.options.yAxis,
- padding: 2,
- },
- }],
+ yAxes,
},
pan: {
enabled: true,
diff --git a/app/src/components/StacInfo.vue b/app/src/components/StacInfo.vue
index dbc7ee1218..c7ed2fcac9 100644
--- a/app/src/components/StacInfo.vue
+++ b/app/src/components/StacInfo.vue
@@ -6,7 +6,11 @@
@loaded="onStacInfoLoad"
:for="getLink"
:allowHtml.prop="true"
- :styleOverride.prop="`#properties li > .value {
+ :styleOverride.prop="`
+ .single-property {
+ word-break: break-word
+ }
+ #properties li > .value {
font-weight: normal !important;
}
#properties li {
@@ -20,7 +24,58 @@
properties='["description"]'
featured="[]"
footer="[]"
- style="margin-left: -30px; margin-right: -30px;word-wrap: break-word;"
+ :style="`
+ margin-left: -30px;
+ margin-right: -30px;
+ word-wrap: break-word;
+ --color-primary: ${$vuetify.theme.currentTheme.main}`"
+ >
+
+
+
@@ -31,25 +86,49 @@
:for="getLink"
@loaded="onStacInfoLoad"
header='["title"]'
- subheader='["keywords"]'
- properties='["themes", "satellite", "sensor", "agency", "links"]'
- featured='["description", "providers", "extent", "sci:publications", "assets"]'
+ tags='["themes"]'
+ properties='["satellite","sensor","agency","extent","license"]'
+ featured='["description","providers","assets","links"]'
footer='["sci:citation"]'
:allowHtml.prop="true"
- style="margin-left: -30px; margin-right: -30px;"
- :styleOverride.prop="'#properties li > .value { font-weight: normal !important;}'"
+ :style="`
+ margin-left: -20px;
+ margin-right: -20px;
+ word-wrap: break-word;
+ --color-primary: ${$vuetify.theme.currentTheme.main}!important;
+ --color-primary-lighter: white;`"
+ :styleOverride.prop="`
+ .single-property {columns: 1!important;}
+ h1 {margin:0px!important;font-size:16px!important;}
+ header h1:after {
+ content:' ';
+ display:block;
+ border:1px solid #d0d0d0;
+ }
+ h2 {font-size:15px}
+ h3 {font-size:14px}
+ summary {cursor: pointer;}
+ #properties li > .value { font-weight: normal !important;}
+ main {padding-bottom: 10px;}
+ .footer-container {line-height:1;}
+ .footer-container button {margin-top: -10px;}
+ .footer-container small {font-size:10px;line-height:1;}
+ `"
>
- {{ $store.state.config.baseConfig.indicatorClassesIcons[theme] }}
+
+ {{ $store.state.config.baseConfig.indicatorClassesIcons[theme] }}
+
{{ theme }}
@@ -59,9 +138,7 @@
v-if="stacInfoLoaded">
Code examples:
-
{{ link.rel }}
@@ -73,7 +150,7 @@
Dataset metadata
@@ -112,6 +189,8 @@ export default {
data: () => ({
additionalGtifDataInfoContent: [],
stacInfoLoaded: null,
+ themesInStacInfo: [],
+ linksInStacInfo: [],
}),
computed: {
...mapState('config', [
@@ -172,6 +251,11 @@ export default {
} else {
this.$parent.$parent.$el.style.display = '';
}
+ this.themesInStacInfo = this.$refs.stacInfo?.stacProperties?.themes?.value || [];
+ const links = this.$refs.stacInfo?.stacProperties?.links?.value || [];
+ this.linksInStacInfo = links.filter(
+ (l) => l.rel === 'example' || l.rel === 'license',
+ );
this.stacInfoLoaded = true;
});
},
@@ -203,12 +287,15 @@ export default {
diff --git a/app/src/components/ThemesLandingPage/Hero.vue b/app/src/components/ThemesLandingPage/Hero.vue
index c5d79dafa0..223647334f 100644
--- a/app/src/components/ThemesLandingPage/Hero.vue
+++ b/app/src/components/ThemesLandingPage/Hero.vue
@@ -36,7 +36,7 @@ export default {
};
-
diff --git a/app/src/components/UiPanelsLayout.vue b/app/src/components/UiPanelsLayout.vue
index 7c80ed1a47..319329e723 100644
--- a/app/src/components/UiPanelsLayout.vue
+++ b/app/src/components/UiPanelsLayout.vue
@@ -5,12 +5,12 @@
-
+
-
+
@@ -27,6 +27,10 @@
+
+
diff --git a/app/src/components/map/DatePickerControl.vue b/app/src/components/map/DatePickerControl.vue
new file mode 100644
index 0000000000..a5ae307269
--- /dev/null
+++ b/app/src/components/map/DatePickerControl.vue
@@ -0,0 +1,74 @@
+
+
+
+
+
+ mdi-calendar
+
+
+ Choose date
+
+
+
+
+
+
+
+
diff --git a/app/src/components/map/LayerSwipe.vue b/app/src/components/map/LayerSwipe.vue
index 7f9b814d30..7d52fe3ee1 100644
--- a/app/src/components/map/LayerSwipe.vue
+++ b/app/src/components/map/LayerSwipe.vue
@@ -52,6 +52,7 @@ export default {
swipeLayerObject: null,
swipe: 0,
swipePixelX: null,
+ _time: null,
}),
computed: {
specialLayerOptions() {
@@ -106,16 +107,7 @@ export default {
const dataGroup = map.getLayers().getArray().find((l) => l.get('id') === 'dataGroup');
this.mergedConfigsData.forEach((config) => {
const swipeLayer = dataGroup.getLayers().getArray().find((l) => l.get('name') === `${config.name}_compare`);
- if (config.protocol === 'geoserverTileLayer' && swipeLayer) {
- loadIndicatorExternalData(
- time, config,
- ).then((data) => {
- this.$store.state.indicators.selectedIndicator.compareMapData = data;
- swipeLayer.changed();
- });
- } else if (swipeLayer) {
- swipeLayer.changed();
- }
+ swipeLayer.changed();
});
},
time(time) {
@@ -160,7 +152,6 @@ export default {
// clip the originalLayer from right, the comparing layer from left
if (this.$refs.container) {
const ctx = evt.context;
-
const sidePadding = document.querySelector('.data-panel') !== null // eslint-disable-line
? !document.querySelector('.data-panel').className.includes('v-navigation-drawer--open')
? 0
@@ -176,10 +167,17 @@ export default {
const isRightLayer = !evt.target.get('name').includes('_compare');
if (isRightLayer) {
if (ctx instanceof WebGLRenderingContext) {
+ if (this._time !== evt.frameState.time) {
+ ctx.clearColor(0, 0, 0, 0);
+ ctx.clear(ctx.COLOR_BUFFER_BIT);
+ this._time = evt.frameState.time;
+ }
ctx.enable(ctx.SCISSOR_TEST);
ctx.scissor(
this.swipePixelX, 0, actualWidth - this.swipePixelX, actualHeight,
);
+ ctx.clearColor(0, 0, 0, 0);
+ ctx.clear(ctx.COLOR_BUFFER_BIT);
} else {
ctx.save();
ctx.beginPath();
@@ -187,8 +185,16 @@ export default {
ctx.clip();
}
} else if (ctx instanceof WebGLRenderingContext) {
+ if (this._time !== evt.frameState.time) {
+ ctx.clearColor(0, 0, 0, 0);
+ ctx.clear(ctx.COLOR_BUFFER_BIT);
+ this._time = evt.frameState.time;
+ }
+ ctx.clearColor(0, 0, 0, 0);
ctx.enable(ctx.SCISSOR_TEST);
ctx.scissor(0, 0, this.swipePixelX, actualHeight);
+ ctx.clearColor(0, 0, 0, 0);
+ ctx.clear(ctx.COLOR_BUFFER_BIT);
} else {
ctx.save();
ctx.beginPath();
diff --git a/app/src/components/map/Map.vue b/app/src/components/map/Map.vue
index f6a07bf568..13c92d451f 100644
--- a/app/src/components/map/Map.vue
+++ b/app/src/components/map/Map.vue
@@ -81,16 +81,22 @@
:overlayRows="overlayRows"
:overlayCoordinate="overlayCoordinate"
/>
-
+
mdi-map-clock-outline
+
+
+
-
-
-
-
@@ -181,6 +201,9 @@ import getCluster from '@/components/map/Cluster';
import SpecialLayer from '@/components/map/SpecialLayer.vue';
import LayerSwipe from '@/components/map/LayerSwipe.vue';
import CustomAreaButtons from '@/components/map/CustomAreaButtons.vue';
+import DatePickerControl from '@/components/map/DatePickerControl.vue';
+import CustomFeaturesFetchButton from '@/components/map/CustomFeaturesFetchButton.vue';
+import SliderControl from '@/components/map/SliderControl.vue';
import { getMapInstance } from '@/components/map/map';
import { createLayerFromConfig } from '@/components/map/layers';
import MapOverlay from '@/components/map/MapOverlay.vue';
@@ -204,6 +227,7 @@ import { DateTime } from 'luxon';
import SubaoiLayer from '@/components/map/SubaoiLayer.vue';
import DarkOverlayLayer from '@/components/map/DarkOverlayLayer.vue';
import Link from 'ol/interaction/Link';
+import { Vector as VectorLayer } from 'ol/layer';
import {
loadIndicatorExternalData,
loadIndicatorData,
@@ -224,11 +248,14 @@ export default {
IndicatorTimeSelection,
LayerSwipe,
CustomAreaButtons,
+ DatePickerControl,
+ SliderControl,
SubaoiLayer,
MapOverlay,
IframeButton,
AddToDashboardButton,
DarkOverlayLayer,
+ CustomFeaturesFetchButton,
},
props: {
mapId: {
@@ -318,7 +345,7 @@ export default {
},
showSpecialLayer() {
return this.mergedConfigsData.length
- && this.indicatorHasMapData(this.indicator);
+ && this.indicatorHasMapData();
},
dataLayerConfigLayerControls() {
// SpecialLayer entries in LayerControl
@@ -349,15 +376,19 @@ export default {
};
},
displayTimeSelection() {
+ if (this.indicator?.indicator === 'E13d' && this.featureData) {
+ // custom overload for extra hassle with replaceMapTimes from config
+ return true;
+ }
return (
!this.indicator?.disableTimeSelection
&& this.featureData?.time
&& this.featureData.time?.length > 1
- && this.indicatorHasMapData(this.indicator)
+ && this.indicatorHasMapData()
) || (
this.indicator?.time?.length > 1
&& !this.indicator?.disableTimeSelection && this.dataLayerTime
- && this.indicatorHasMapData(this.indicator)
+ && this.indicatorHasMapData()
);
},
indicator() {
@@ -631,13 +662,13 @@ export default {
return window.self !== window.top;
},
calculatePosition() {
- let position = 'bottom: 155px';
+ let position = 'bottom: 40px';
if (this.$vuetify.breakpoint.xsOnly) {
position = `bottom: ${this.$vuetify.application.footer + 70}px`;
}
if (this.mapId === 'centerMap'
&& this.$vuetify.breakpoint.smAndUp && this.$route.name !== 'demo') {
- position = 'bottom: 155px';
+ position = 'bottom: 40px';
}
if (this.mapId === 'centerMap'
&& this.$vuetify.breakpoint.smAndUp && this.appConfig.enableESALayout) {
@@ -651,18 +682,23 @@ export default {
}
return position;
},
- mousePosConStyle() {
- let style = 'position:absolute;';
- if (this.$vuetify.breakpoint.smAndUp) {
- if (this.appConfig.id === 'gtif') {
- style = 'position:relative;';
- } else {
- style += 'bottom:0px;';
- }
- } else if (this.appConfig.id === 'gtif') {
- style += `bottom:${this.$vuetify.application.footer + 50}px;`;
+ calculatePadding() {
+ // It seems that the footer on gtif is somehow not evaluated need to handle it differently
+ let style;
+ if (this.appConfig.id === 'gtif') {
+ style = `padding-bottom: ${this.$vuetify.breakpoint.xsOnly
+ ? this.$vuetify.application.footer + 60 : this.$vuetify.application.footer + 11}px !important;`;
} else {
- style += 'bottom:60px;';
+ style = `padding-bottom: ${this.$vuetify.breakpoint.xsOnly
+ ? this.$vuetify.application.footer + 30 : 3}px !important;`;
+ }
+ return style;
+ },
+ mousePosConStyle() {
+ let style = 'position:absolute;bottom:-5px;';
+ // Trying to detect touch device, if it is, remove coordinates hover visualization
+ if (matchMedia('(hover: none), (pointer: coarse)').matches) {
+ style += 'display:none;';
}
return style;
},
@@ -736,11 +772,15 @@ export default {
// redraw all time-dependant layers, if time is passed via WMS params
const area = this.drawnArea;
this.mergedConfigsDataIndexAware.filter(
- (config) => config.timeFromProperty || config.usedTimes?.time?.length,
+ (config) => config.mapTimeDatepicker
+ || config.timeFromProperty
+ || config.usedTimes?.time?.length,
)
.forEach((config) => {
const layer = layers.find((l) => l.get('name') === config.name);
- if (layer) {
+ if (layer instanceof VectorLayer && config.mapTimeDatepicker) {
+ // do not fetch new features on time changeempty
+ } else if (layer) {
updateTimeLayer(layer, config, timeObj.value, area);
}
});
@@ -897,12 +937,25 @@ export default {
}
}
});
+
+ this.$store.subscribe((mutation) => {
+ if (mutation.type === 'features/SET_SELECTED_FEATURES') {
+ if (this.indicator && ['CROPOM'].includes(this.indicator.indicator) && this.mapId === 'centerMap') {
+ if (mutation.payload?.length > 0) {
+ window.dispatchEvent(new Event('fetch-custom-area-chart'));
+ } else {
+ // reset custom area chart
+ this.$store.commit('indicators/CUSTOM_AREA_INDICATOR_LOAD_FINISHED', null);
+ }
+ }
+ }
+ });
map.setTarget(/** @type {HTMLElement} */ (this.$refs.mapContainer));
// adding a necessary reference for eox-layercontrol plugin
this.$refs.mapContainer.map = map;
const attributions = new Attribution();
- attributions.setTarget(this.$refs.controlsContainer);
+ attributions.setTarget(this.$refs.bottomControlsContainer);
attributions.setMap(map);
map.addControl(new MousePosition({
@@ -1038,6 +1091,12 @@ export default {
this.$emit('update:center', e);
this.currentCenter = e;
},
+ setDateFromDatePicker(date) {
+ this.dataLayerTime = {
+ name: date,
+ value: DateTime.fromISO(date),
+ };
+ },
updateTime(time, compare) {
// Define a function to update the data layer
// direct match on name
@@ -1045,18 +1104,20 @@ export default {
if (timeEntry === undefined && time.isLuxonDateTime) {
// search for closest time to datetime if provided as such
const searchTimes = this.availableTimeEntries.map((e) => {
- if (e.value?.isLuxonDateTime) {
- return e.value;
+ const timeValue = Array.isArray(e.value) ? e.value[0] : e.value;
+ if (timeValue?.isLuxonDateTime) {
+ return timeValue;
}
- return DateTime.fromISO(e.value);
+ return DateTime.fromISO(timeValue);
});
const closestTime = findClosest(searchTimes, time);
// get back the original unmapped object with value and name
timeEntry = this.availableTimeEntries.find((e) => {
- if (e.value?.isLuxonDateTime) {
- return e.value.ts === closestTime.ts;
+ const timeValue = Array.isArray(e.value) ? e.value[0] : e.value;
+ if (timeValue?.isLuxonDateTime) {
+ return timeValue.ts === closestTime.ts;
}
- return DateTime.fromISO(e.value).ts === closestTime.ts;
+ return DateTime.fromISO(timeValue).ts === closestTime.ts;
});
} else {
// Use most recent time since there is none defined in the map timeline
@@ -1210,8 +1271,8 @@ export default {
return obj;
});
},
- indicatorHasMapData(indicatorObject) {
- return indicatorHasMapData(indicatorObject, this.featureData);
+ indicatorHasMapData() {
+ return indicatorHasMapData(this.indicator, this.featureData);
},
overlayCallback(headers, rows, coordinate) {
this.overlayHeaders = headers;
@@ -1239,18 +1300,26 @@ export default {
}
}
},
- updateSelectedAreaFeature() {
+ updateSelectedAreaFeature(manualTrigger = false) {
const { map } = getMapInstance(this.mapId);
const dataGroup = map.getLayers().getArray().find((l) => l.get('id') === 'dataGroup');
const layers = dataGroup.getLayers().getArray();
const area = this.drawnArea;
const time = this.dataLayerTime?.value;
- this.mergedConfigsDataIndexAware.filter((config) => config.usedTimes?.time?.length)
+ this.mergedConfigsDataIndexAware.filter(
+ (config) => config.mapTimeDatepicker || config.usedTimes?.time?.length,
+ )
.forEach((config) => {
const layer = layers.find((l) => l.get('name') === config.name);
const handler = 'updateArea';
if (layer && layer.getSource().get(handler)) {
- updateTimeLayer(layer, config, time, area, handler);
+ if (manualTrigger) {
+ updateTimeLayer(layer, config, time, area, handler);
+ } else if (layer instanceof VectorLayer && config.mapTimeDatepicker) {
+ // do nothing
+ } else {
+ updateTimeLayer(layer, config, time, area, handler);
+ }
}
});
},
@@ -1265,10 +1334,12 @@ export default {
return;
}
window.dispatchEvent(new CustomEvent('set-custom-area-indicator-loading', { detail: true }));
-
+ const options = {
+ currentTimeIndex: this.currentTimeIndex,
+ };
try {
const custom = await fetchCustomAreaObjects(
- {},
+ options,
this.drawnArea.area,
this.mergedConfigsData[0],
this.indicator,
@@ -1370,6 +1441,18 @@ export default {
opacity: 0 !important;
}
}
+ .bottomControlsContainer {
+ position: absolute;
+ right: 4px;
+ bottom: 0px;
+ min-width: 50px;
+ pointer-events: none;
+ z-index: 4;
+
+ &.hidden {
+ opacity: 0 !important;
+ }
+ }
.pointerEvents {
pointer-events: initial;
diff --git a/app/src/components/map/SliderControl.vue b/app/src/components/map/SliderControl.vue
new file mode 100644
index 0000000000..6b7004790b
--- /dev/null
+++ b/app/src/components/map/SliderControl.vue
@@ -0,0 +1,96 @@
+
+
+
+
+
+ mdi-dots-horizontal
+
+
+ {{config.title}}
+
+
+
+ {{config.title}}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/components/map/SpecialLayer.vue b/app/src/components/map/SpecialLayer.vue
index 608e2a4ec0..7414b2c181 100644
--- a/app/src/components/map/SpecialLayer.vue
+++ b/app/src/components/map/SpecialLayer.vue
@@ -111,7 +111,7 @@ export default {
let rows = [];
if (config?.tooltip?.tooltipFormatFunction) {
// has to return a list of rows
- rows = config?.tooltip?.tooltipFormatFunction(feature, config);
+ rows = config?.tooltip?.tooltipFormatFunction(feature, config, this.$store);
} else {
const props = feature.getProperties();
// some indicators have 'allowedParameters', which define the keys to display
diff --git a/app/src/components/map/VectorStyleControl.vue b/app/src/components/map/VectorStyleControl.vue
new file mode 100644
index 0000000000..b16678f113
--- /dev/null
+++ b/app/src/components/map/VectorStyleControl.vue
@@ -0,0 +1,68 @@
+
+
+
+
+
+ {{element.title}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/components/map/VectorTileStyleControl.vue b/app/src/components/map/VectorTileStyleControl.vue
index 25ba656675..bc28c0025c 100644
--- a/app/src/components/map/VectorTileStyleControl.vue
+++ b/app/src/components/map/VectorTileStyleControl.vue
@@ -1,7 +1,7 @@
+ v-if="queryParameters.items?.length > 1">
Data properties
@@ -42,7 +42,7 @@ export default {
const selected = this.queryParameters?.selected;
if (this.queryParameters?.selected && this.queryParameters?.items?.length > 1) {
this.select = this.queryParameters?.items.find((item) => item.id === selected);
- } else {
+ } else if (this.queryParameters?.items) {
[this.select] = this.queryParameters?.items;
}
},
diff --git a/app/src/components/map/layers.js b/app/src/components/map/layers.js
index c03a7ebf28..19e820ec45 100644
--- a/app/src/components/map/layers.js
+++ b/app/src/components/map/layers.js
@@ -60,8 +60,9 @@ export async function fetchData({
);
source.clear();
if (custom?.features && custom.features.length) {
+ const projection = config?.features?.projection ? getProjectionOl(config.features.projection) : 'EPSG:4326';
const features = geoJsonFormat.readFeatures(custom, {
- dataProjection: 'EPSG:4326',
+ dataProjection: projection,
featureProjection: map.getView().getProjection(),
});
features.forEach((ftr) => {
@@ -75,7 +76,7 @@ export async function fetchData({
}
if (ftr.geometry) {
ftr.setGeometry(geoJsonFormat.readGeometry(ftr.geometry, {
- dataProjection: 'EPSG:4326',
+ dataProjection: projection,
featureProjection: map.getView().getProjection(),
}));
}
@@ -210,7 +211,7 @@ function replaceUrlPlaceholders(baseUrl, config, options) {
return url;
}
-async function createWMTSSourceFromCapabilities(config, layer) {
+async function createWMTSSourceFromCapabilities(config, layer, options) {
const s = await fetch(config.url)
.then((response) => response.text())
.then((text) => {
@@ -225,6 +226,14 @@ async function createWMTSSourceFromCapabilities(config, layer) {
crossOrigin: config.crossOrigin,
};
const optsFromCapabilities = optionsFromCapabilities(result, selectionOpts);
+ if (config.usedTimes?.time?.length) {
+ const updatedDimensions = {
+ ...optsFromCapabilities.dimensions,
+ ...config.dimensions || {},
+ time: options.time,
+ };
+ optsFromCapabilities.dimensions = updatedDimensions;
+ }
const source = new WMTS({
attributions: config.attribution,
...optsFromCapabilities,
@@ -233,8 +242,11 @@ async function createWMTSSourceFromCapabilities(config, layer) {
return source;
});
s.set('updateTime', (updatedTime, area, configUpdate) => {
- const newSource = createWMTSSourceFromCapabilities(configUpdate, layer);
- layer.setSource(newSource);
+ const updatedDimensions = {
+ ...layer.getSource().getDimensions(),
+ time: configUpdate.dateFormatFunction(updatedTime),
+ };
+ layer.getSource().updateDimensions(updatedDimensions);
});
return s;
}
@@ -298,10 +310,15 @@ export function createLayerFromConfig(config, map, _options = {}) {
});
};
featuresSource.set('updateTime', featuresUpdateFn);
- const dynamicStyleFunction = createVectorLayerStyle(config.features, options);
+ let style;
+ if (config.features?.flatStyle) {
+ style = config.features?.flatStyle;
+ } else {
+ style = createVectorLayerStyle(config.features, options);
+ }
layer = new VectorLayer({
source: featuresSource,
- style: dynamicStyleFunction,
+ style,
});
} else if (config.protocol === 'cog') {
let updatedSources = config.sources;
@@ -321,10 +338,8 @@ export function createLayerFromConfig(config, map, _options = {}) {
source: wgSource,
style: config.style,
});
- layer.set('id', config.id);
} else if (config.protocol === 'vectortile') {
layer = new VectorTileLayer({});
- layer.set('id', config.id);
let layerSelector = '';
if (Array.isArray(config.selectedStyleLayer) && config.selectedStyleLayer.length > 0) {
layerSelector = config.selectedStyleLayer;
@@ -340,7 +355,7 @@ export function createLayerFromConfig(config, map, _options = {}) {
});
} else if (config.protocol === 'WMTSCapabilities') {
layer = new TileLayer({});
- createWMTSSourceFromCapabilities(config, layer);
+ createWMTSSourceFromCapabilities(config, layer, options);
} else if (config.protocol === 'geoserverTileLayer') {
const dynamicStyleFunction = createVectorLayerStyle(config, options);
const geoserverUrl = 'https://xcube-geodb.brockmann-consult.de/geoserver/geodb_debd884d-92f9-4979-87b6-eadef1139394/gwc/service/tms/1.0.0/';
@@ -353,21 +368,21 @@ export function createLayerFromConfig(config, map, _options = {}) {
url: `${geoserverUrl}${config.layerName}@${projString}@pbf/{z}/{x}/{-y}.pbf`,
}),
});
- layer.set('id', config.id);
} else if (config.protocol === 'GeoJSON') {
// mutually exclusive options, either direct features or url to fetch
const url = config.urlTemplateSelectedFeature
? renderTemplateSelectedFeature(config.urlTemplateSelectedFeature)
: config.url;
+ const projection = config.projection ? getProjectionOl(config.projection) : 'EPSG:4326';
const vectorSourceOpts = url ? {
url,
format: new GeoJSON({
- dataProjection: 'EPSG:4326',
+ dataProjection: projection,
featureProjection: map.getView().getProjection(),
}),
} : {
features: geoJsonFormat.readFeatures(config.data, {
- dataProjection: 'EPSG:4326',
+ dataProjection: projection,
featureProjection: map.getView().getProjection(),
}),
};
@@ -540,11 +555,13 @@ export function createLayerFromConfig(config, map, _options = {}) {
layer.setExtent(drawnAreaExtent);
}
const layerProperties = {
+ id: config?.features?.id ? config.features.id : config.id,
opacity: typeof config.opacity !== 'undefined' ? config.opacity : 1,
name: config.name,
maxZoom: typeof config.maxZoom !== 'undefined' ? config.maxZoom : 18,
minZoom: typeof config.minZoom !== 'undefined' ? config.minZoom : 1,
visible: config.visible,
+ layerControlHide: config?.features ? config.features.layerControlHide : config.layerControlHide,
layerControlOptional: config.layerControlOptional,
layerConfig: config.layerConfig,
};
diff --git a/app/src/config/data_dates.json b/app/src/config/data_dates.json
deleted file mode 100644
index 984651c097..0000000000
--- a/app/src/config/data_dates.json
+++ /dev/null
@@ -1,60070 +0,0 @@
-{
- "AWS_CH4_WEEKLY": [
- "2021-11-15",
- "2021-11-22",
- "2021-11-29",
- "2021-12-06",
- "2021-12-13",
- "2021-12-20",
- "2021-12-27",
- "2022-01-03",
- "2022-01-10",
- "2022-01-17",
- "2022-01-24",
- "2022-01-31",
- "2022-02-07",
- "2022-02-14",
- "2022-02-21",
- "2022-02-28",
- "2022-03-07",
- "2022-03-14",
- "2022-03-21",
- "2022-03-28",
- "2022-04-04",
- "2022-04-11",
- "2022-04-18",
- "2022-04-25",
- "2022-05-02",
- "2022-05-09",
- "2022-05-16",
- "2022-05-23",
- "2022-05-30",
- "2022-06-06",
- "2022-06-13",
- "2022-06-20",
- "2022-06-27",
- "2022-07-04",
- "2022-07-11",
- "2022-07-18",
- "2022-07-25",
- "2022-08-29",
- "2022-09-05",
- "2022-09-12",
- "2022-09-19",
- "2022-09-26",
- "2022-10-03",
- "2022-10-10",
- "2022-10-17",
- "2022-10-24",
- "2022-10-31",
- "2022-11-07",
- "2022-11-14",
- "2022-11-21",
- "2022-11-28",
- "2022-12-05",
- "2022-12-12",
- "2022-12-19",
- "2022-12-26",
- "2023-01-02",
- "2023-01-09",
- "2023-01-16",
- "2023-01-23",
- "2023-01-30",
- "2023-02-06",
- "2023-02-13",
- "2023-02-20",
- "2023-02-27",
- "2023-03-06",
- "2023-03-13",
- "2023-03-20",
- "2023-03-27",
- "2023-04-03",
- "2023-04-10",
- "2023-04-17",
- "2023-04-24",
- "2023-05-01",
- "2023-05-08",
- "2023-05-15",
- "2023-05-22",
- "2023-05-29",
- "2023-06-05",
- "2023-06-12",
- "2023-06-19",
- "2023-06-26",
- "2023-07-03",
- "2023-07-10",
- "2023-07-17",
- "2023-07-24",
- "2023-07-31",
- "2023-08-07",
- "2023-08-28",
- "2023-09-04",
- "2023-09-11",
- "2023-09-18",
- "2023-09-25",
- "2023-10-02",
- "2023-10-09",
- "2023-10-16",
- "2023-10-23",
- "2023-10-30",
- "2023-11-06",
- "2023-11-13",
- "2023-11-20"
- ],
- "AWS_ICEYE-E11": [
- "2020-03-20"
- ],
- "AWS_ICEYE-E11A": [
- "2020-02-07",
- "2020-04-13"
- ],
- "AWS_ICEYE-E12B": [
- "2020-08-29"
- ],
- "AWS_ICEYE-E13B": [
- "2020-02-04",
- "2020-02-07",
- "2020-03-20",
- "2020-03-27",
- "2020-04-13",
- "2020-05-12",
- "2020-07-17",
- "2020-08-25",
- "2020-08-29"
- ],
- "AWS_ICEYE-E3": [
- "2020-02-04",
- "2020-04-13",
- "2020-07-17"
- ],
- "AWS_JAXA_CHLA_JP01": [
- "2018-01-06",
- "2018-01-13",
- "2018-01-20",
- "2018-01-27",
- "2018-02-03",
- "2018-02-17",
- "2018-02-24",
- "2018-03-10",
- "2018-03-17",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-05",
- "2018-05-12",
- "2018-05-19",
- "2018-06-02",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-21",
- "2018-07-28",
- "2018-08-04",
- "2018-08-11",
- "2018-08-25",
- "2018-09-08",
- "2018-09-15",
- "2018-09-22",
- "2018-09-29",
- "2018-10-06",
- "2018-10-20",
- "2018-10-27",
- "2018-11-10",
- "2018-11-17",
- "2018-11-24",
- "2018-12-01",
- "2018-12-15",
- "2018-12-22",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-16",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-15",
- "2019-06-22",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-02-01",
- "2020-02-08",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-05-02",
- "2020-05-09",
- "2020-05-16",
- "2020-05-23",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-07-25",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-10-03",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2020-12-26",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-29",
- "2021-06-12",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-21",
- "2021-08-28",
- "2021-09-18",
- "2021-09-25",
- "2021-10-02",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-13",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-15",
- "2022-01-22",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-09",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-21",
- "2022-06-04",
- "2022-06-25",
- "2022-07-02",
- "2022-07-09",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-10-01",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-11",
- "2023-02-18",
- "2023-02-25",
- "2023-03-04",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-15",
- "2023-04-22",
- "2023-04-29",
- "2023-05-06",
- "2023-05-13",
- "2023-05-20",
- "2023-05-27",
- "2023-06-17",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26"
- ],
- "AWS_JAXA_CHLA_JP02": [
- "2018-01-06",
- "2018-01-13",
- "2018-01-27",
- "2018-02-03",
- "2018-02-17",
- "2018-02-24",
- "2018-03-10",
- "2018-03-17",
- "2018-03-24",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-05",
- "2018-05-12",
- "2018-05-19",
- "2018-05-26",
- "2018-06-02",
- "2018-06-09",
- "2018-06-16",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-14",
- "2018-07-21",
- "2018-07-28",
- "2018-08-04",
- "2018-08-11",
- "2018-08-18",
- "2018-08-25",
- "2018-09-01",
- "2018-09-08",
- "2018-09-15",
- "2018-09-22",
- "2018-09-29",
- "2018-10-06",
- "2018-10-20",
- "2018-10-27",
- "2018-11-03",
- "2018-11-10",
- "2018-11-17",
- "2018-11-24",
- "2018-12-01",
- "2018-12-15",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-08",
- "2019-06-22",
- "2019-07-06",
- "2019-07-13",
- "2019-07-20",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-09-07",
- "2019-09-14",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-19",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-07",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-02-01",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-06-27",
- "2020-07-18",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-19",
- "2020-10-03",
- "2020-10-10",
- "2020-10-17",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-29",
- "2021-06-12",
- "2021-07-10",
- "2021-07-24",
- "2021-08-07",
- "2021-08-28",
- "2021-09-18",
- "2021-09-25",
- "2021-10-02",
- "2021-10-09",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-13",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-21",
- "2022-05-28",
- "2022-06-04",
- "2022-06-11",
- "2022-07-02",
- "2022-07-09",
- "2022-07-16",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-27",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-10-01",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-04",
- "2023-02-25",
- "2023-06-03",
- "2023-06-17",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-26"
- ],
- "AWS_JAXA_CHLA_JP04": [
- "2018-01-27",
- "2018-02-03",
- "2018-02-17",
- "2018-02-24",
- "2018-03-10",
- "2018-03-17",
- "2018-03-24",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-12",
- "2018-05-19",
- "2018-06-02",
- "2018-06-09",
- "2018-06-16",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-21",
- "2018-08-04",
- "2018-08-11",
- "2018-08-18",
- "2018-08-25",
- "2018-09-01",
- "2018-09-08",
- "2018-09-29",
- "2018-10-06",
- "2018-10-20",
- "2018-10-27",
- "2018-11-10",
- "2018-11-17",
- "2018-11-24",
- "2018-12-01",
- "2018-12-15",
- "2018-12-22",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-08",
- "2019-06-22",
- "2019-06-29",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-07",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-02-01",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-16",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-07-18",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-05",
- "2020-09-12",
- "2020-09-19",
- "2020-09-26",
- "2020-10-03",
- "2020-10-10",
- "2020-10-17",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-22",
- "2021-06-12",
- "2021-06-19",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-28",
- "2021-09-25",
- "2021-10-02",
- "2021-10-09",
- "2021-10-16",
- "2021-10-23",
- "2021-11-06",
- "2021-11-13",
- "2021-11-20",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-22",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-21",
- "2022-05-28",
- "2022-06-04",
- "2022-07-02",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-09-24",
- "2022-10-01",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-04",
- "2023-02-11",
- "2023-02-25",
- "2023-05-13",
- "2023-05-20",
- "2023-05-27",
- "2023-06-17",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26"
- ],
- "AWS_JAXA_CHLA_NorthAdriatic_JAXA": [
- "2018-01-20",
- "2018-01-27",
- "2018-03-17",
- "2018-03-24",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-05",
- "2018-05-12",
- "2018-05-19",
- "2018-05-26",
- "2018-06-02",
- "2018-06-09",
- "2018-06-16",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-14",
- "2018-07-21",
- "2018-07-28",
- "2018-08-04",
- "2018-08-11",
- "2018-08-18",
- "2018-08-25",
- "2018-09-01",
- "2018-09-08",
- "2018-09-15",
- "2018-09-22",
- "2018-09-29",
- "2018-10-06",
- "2018-10-13",
- "2018-10-20",
- "2018-10-27",
- "2018-11-03",
- "2018-11-17",
- "2018-12-01",
- "2018-12-08",
- "2018-12-15",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-08",
- "2019-06-15",
- "2019-06-22",
- "2019-06-29",
- "2019-07-06",
- "2019-07-13",
- "2019-07-20",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-21",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-19",
- "2019-10-26",
- "2019-11-02",
- "2019-11-23",
- "2019-12-07",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-01-25",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-06-27",
- "2020-07-04",
- "2020-07-11",
- "2020-07-18",
- "2020-07-25",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-05",
- "2020-09-12",
- "2020-09-19",
- "2020-09-26",
- "2020-10-03",
- "2020-10-10",
- "2020-10-24",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-12",
- "2020-12-26",
- "2021-01-09",
- "2021-01-16",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-15",
- "2021-05-22",
- "2021-05-29",
- "2021-06-05",
- "2021-06-12",
- "2021-06-19",
- "2021-06-26",
- "2021-07-03",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-14",
- "2021-08-21",
- "2021-08-28",
- "2021-09-04",
- "2021-09-11",
- "2021-10-02",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-20",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2022-01-08",
- "2022-01-15",
- "2022-01-22",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-16",
- "2022-04-30",
- "2022-05-07",
- "2022-05-14",
- "2022-05-21",
- "2022-06-04",
- "2022-06-11",
- "2022-06-18",
- "2022-06-25",
- "2022-07-02",
- "2022-07-09",
- "2022-07-16",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-08-20",
- "2022-08-27",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-09-24",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-26",
- "2023-01-14",
- "2023-01-28",
- "2023-02-04",
- "2023-02-11",
- "2023-02-18",
- "2023-03-04",
- "2023-03-11",
- "2023-03-18",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-22",
- "2023-04-29",
- "2023-05-06",
- "2023-05-13",
- "2023-05-20",
- "2023-05-27",
- "2023-06-03",
- "2023-06-10",
- "2023-06-17",
- "2023-06-24",
- "2023-07-01",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26"
- ],
- "AWS_JAXA_TSM_JP01TSM": [
- "2018-01-06",
- "2018-01-13",
- "2018-01-20",
- "2018-01-27",
- "2018-02-03",
- "2018-02-17",
- "2018-02-24",
- "2018-03-10",
- "2018-03-17",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-05",
- "2018-05-12",
- "2018-05-19",
- "2018-06-02",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-21",
- "2018-07-28",
- "2018-08-04",
- "2018-08-11",
- "2018-08-25",
- "2018-09-08",
- "2018-09-15",
- "2018-09-22",
- "2018-09-29",
- "2018-10-06",
- "2018-10-20",
- "2018-10-27",
- "2018-11-10",
- "2018-11-17",
- "2018-11-24",
- "2018-12-01",
- "2018-12-15",
- "2018-12-22",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-16",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-15",
- "2019-06-22",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-02-01",
- "2020-02-08",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-05-02",
- "2020-05-09",
- "2020-05-16",
- "2020-05-23",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-07-25",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-10-03",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2020-12-26",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-29",
- "2021-06-12",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-21",
- "2021-08-28",
- "2021-09-18",
- "2021-09-25",
- "2021-10-02",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-13",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-15",
- "2022-01-22",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-09",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-21",
- "2022-06-04",
- "2022-06-25",
- "2022-07-02",
- "2022-07-09",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-10-01",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-11",
- "2023-02-18",
- "2023-02-25",
- "2023-03-04",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-15",
- "2023-04-22",
- "2023-04-29",
- "2023-05-06",
- "2023-05-13",
- "2023-05-20",
- "2023-05-27",
- "2023-06-17",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26"
- ],
- "AWS_JAXA_TSM_JP02TSM": [
- "2018-01-06",
- "2018-01-13",
- "2018-01-27",
- "2018-02-03",
- "2018-02-17",
- "2018-02-24",
- "2018-03-10",
- "2018-03-17",
- "2018-03-24",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-05",
- "2018-05-12",
- "2018-05-19",
- "2018-05-26",
- "2018-06-02",
- "2018-06-09",
- "2018-06-16",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-14",
- "2018-07-21",
- "2018-07-28",
- "2018-08-04",
- "2018-08-11",
- "2018-08-18",
- "2018-08-25",
- "2018-09-01",
- "2018-09-08",
- "2018-09-15",
- "2018-09-22",
- "2018-09-29",
- "2018-10-06",
- "2018-10-20",
- "2018-10-27",
- "2018-11-03",
- "2018-11-10",
- "2018-11-17",
- "2018-11-24",
- "2018-12-01",
- "2018-12-15",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-08",
- "2019-06-22",
- "2019-07-06",
- "2019-07-13",
- "2019-07-20",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-09-07",
- "2019-09-14",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-19",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-07",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-02-01",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-07-18",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-19",
- "2020-10-03",
- "2020-10-10",
- "2020-10-17",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-29",
- "2021-06-12",
- "2021-07-10",
- "2021-07-24",
- "2021-08-07",
- "2021-08-28",
- "2021-09-18",
- "2021-09-25",
- "2021-10-02",
- "2021-10-09",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-13",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-21",
- "2022-05-28",
- "2022-06-04",
- "2022-06-11",
- "2022-07-02",
- "2022-07-09",
- "2022-07-16",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-27",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-10-01",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-04",
- "2023-02-25",
- "2023-03-04",
- "2023-03-11",
- "2023-03-18",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-15",
- "2023-04-22",
- "2023-04-29",
- "2023-05-06",
- "2023-05-13",
- "2023-05-20",
- "2023-05-27",
- "2023-06-03",
- "2023-06-17",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-26"
- ],
- "AWS_JAXA_TSM_JP04TSM": [
- "2018-01-27",
- "2018-02-03",
- "2018-02-17",
- "2018-02-24",
- "2018-03-10",
- "2018-03-17",
- "2018-03-24",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-12",
- "2018-05-19",
- "2018-06-02",
- "2018-06-09",
- "2018-06-16",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-21",
- "2018-08-04",
- "2018-08-11",
- "2018-08-18",
- "2018-08-25",
- "2018-09-01",
- "2018-09-08",
- "2018-09-29",
- "2018-10-06",
- "2018-10-20",
- "2018-10-27",
- "2018-11-10",
- "2018-11-17",
- "2018-11-24",
- "2018-12-01",
- "2018-12-15",
- "2018-12-22",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-08",
- "2019-06-22",
- "2019-06-29",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-07",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-02-01",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-16",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-20",
- "2020-07-18",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-05",
- "2020-09-12",
- "2020-09-19",
- "2020-09-26",
- "2020-10-03",
- "2020-10-10",
- "2020-10-17",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-22",
- "2021-06-12",
- "2021-06-19",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-28",
- "2021-09-25",
- "2021-10-02",
- "2021-10-09",
- "2021-10-16",
- "2021-10-23",
- "2021-11-06",
- "2021-11-13",
- "2021-11-20",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-22",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-21",
- "2022-05-28",
- "2022-06-04",
- "2022-07-02",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-09-24",
- "2022-10-01",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-04",
- "2023-02-11",
- "2023-02-25",
- "2023-03-04",
- "2023-03-11",
- "2023-03-18",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-15",
- "2023-04-22",
- "2023-04-29",
- "2023-05-06",
- "2023-05-13",
- "2023-05-20",
- "2023-05-27",
- "2023-06-17",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26"
- ],
- "AWS_JAXA_TSM_NorthAdriaticTSM_JAXA": [
- "2018-01-20",
- "2018-01-27",
- "2018-03-17",
- "2018-03-24",
- "2018-03-31",
- "2018-04-07",
- "2018-04-14",
- "2018-04-21",
- "2018-04-28",
- "2018-05-05",
- "2018-05-12",
- "2018-05-19",
- "2018-05-26",
- "2018-06-02",
- "2018-06-09",
- "2018-06-16",
- "2018-06-23",
- "2018-06-30",
- "2018-07-07",
- "2018-07-14",
- "2018-07-21",
- "2018-07-28",
- "2018-08-04",
- "2018-08-11",
- "2018-08-18",
- "2018-08-25",
- "2018-09-01",
- "2018-09-08",
- "2018-09-15",
- "2018-09-22",
- "2018-09-29",
- "2018-10-06",
- "2018-10-13",
- "2018-10-20",
- "2018-10-27",
- "2018-11-03",
- "2018-11-17",
- "2018-12-01",
- "2018-12-08",
- "2018-12-15",
- "2018-12-29",
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-08",
- "2019-06-15",
- "2019-06-22",
- "2019-06-29",
- "2019-07-06",
- "2019-07-13",
- "2019-07-20",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-21",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-19",
- "2019-10-26",
- "2019-11-02",
- "2019-11-23",
- "2019-12-07",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-01-25",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-06-27",
- "2020-07-04",
- "2020-07-11",
- "2020-07-18",
- "2020-07-25",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-05",
- "2020-09-12",
- "2020-09-19",
- "2020-09-26",
- "2020-10-03",
- "2020-10-10",
- "2020-10-24",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-12",
- "2020-12-26",
- "2021-01-09",
- "2021-01-16",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-15",
- "2021-05-22",
- "2021-05-29",
- "2021-06-05",
- "2021-06-12",
- "2021-06-19",
- "2021-06-26",
- "2021-07-03",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-14",
- "2021-08-21",
- "2021-08-28",
- "2021-09-04",
- "2021-09-11",
- "2021-10-02",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-20",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2022-01-08",
- "2022-01-15",
- "2022-01-22",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-16",
- "2022-04-30",
- "2022-05-07",
- "2022-05-14",
- "2022-05-21",
- "2022-06-04",
- "2022-06-11",
- "2022-06-18",
- "2022-06-25",
- "2022-07-02",
- "2022-07-09",
- "2022-07-16",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-08-20",
- "2022-08-27",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-09-24",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-26",
- "2023-01-14",
- "2023-01-28",
- "2023-02-04",
- "2023-02-11",
- "2023-02-18",
- "2023-03-04",
- "2023-03-11",
- "2023-03-18",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-22",
- "2023-04-29",
- "2023-05-06",
- "2023-05-13",
- "2023-05-20",
- "2023-05-27",
- "2023-06-03",
- "2023-06-10",
- "2023-06-17",
- "2023-06-24",
- "2023-07-01",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26"
- ],
- "AWS_N3_CUSTOM": [
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-08",
- "2019-06-15",
- "2019-06-22",
- "2019-06-29",
- "2019-07-06",
- "2019-07-13",
- "2019-07-20",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-21",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-19",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-07",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-01-25",
- "2020-02-01",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-16",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-06-27",
- "2020-07-04",
- "2020-07-11",
- "2020-07-18",
- "2020-07-25",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-05",
- "2020-09-12",
- "2020-09-19",
- "2020-09-26",
- "2020-10-03",
- "2020-10-10",
- "2020-10-17",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2020-12-26",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-15",
- "2021-05-22",
- "2021-05-29",
- "2021-06-05",
- "2021-06-12",
- "2021-06-19",
- "2021-06-26",
- "2021-07-03",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-14",
- "2021-08-21",
- "2021-08-28",
- "2021-09-04",
- "2021-09-11",
- "2021-09-18",
- "2021-09-25",
- "2021-10-02",
- "2021-10-09",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-13",
- "2021-11-20",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-15",
- "2022-01-22",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-16",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-14",
- "2022-05-21",
- "2022-05-28",
- "2022-06-04",
- "2022-06-11",
- "2022-06-18",
- "2022-06-25",
- "2022-07-02",
- "2022-07-09",
- "2022-07-16",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-08-20",
- "2022-08-27",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-09-24",
- "2022-10-01",
- "2022-10-08",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-03",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-04",
- "2023-02-11",
- "2023-02-18",
- "2023-02-25",
- "2023-03-04",
- "2023-03-11",
- "2023-03-18",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-15",
- "2023-04-22",
- "2023-04-29",
- "2023-05-13",
- "2023-06-03",
- "2023-06-10",
- "2023-06-24",
- "2023-07-01",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26",
- "2023-09-02",
- "2023-09-09",
- "2023-09-16",
- "2023-09-23",
- "2023-09-30",
- "2023-10-07",
- "2023-10-14",
- "2023-10-21",
- "2023-10-28",
- "2023-11-04",
- "2023-11-11",
- "2023-11-18"
- ],
- "AWS_N3_CUSTOM_TSMNN": [
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-08",
- "2019-06-15",
- "2019-06-22",
- "2019-06-29",
- "2019-07-06",
- "2019-07-13",
- "2019-07-20",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-21",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-19",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-07",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-01-25",
- "2020-02-01",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-16",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-06-27",
- "2020-07-04",
- "2020-07-11",
- "2020-07-18",
- "2020-07-25",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-05",
- "2020-09-12",
- "2020-09-19",
- "2020-09-26",
- "2020-10-03",
- "2020-10-10",
- "2020-10-17",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2020-12-26",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-15",
- "2021-05-22",
- "2021-05-29",
- "2021-06-05",
- "2021-06-12",
- "2021-06-19",
- "2021-06-26",
- "2021-07-03",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-14",
- "2021-08-21",
- "2021-08-28",
- "2021-09-04",
- "2021-09-11",
- "2021-09-18",
- "2021-09-25",
- "2021-10-02",
- "2021-10-09",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-13",
- "2021-11-20",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-15",
- "2022-01-22",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-16",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-14",
- "2022-05-21",
- "2022-05-28",
- "2022-06-04",
- "2022-06-11",
- "2022-06-18",
- "2022-06-25",
- "2022-07-02",
- "2022-07-09",
- "2022-07-16",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-08-20",
- "2022-08-27",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-09-24",
- "2022-10-01",
- "2022-10-08",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-03",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-04",
- "2023-02-11",
- "2023-02-18",
- "2023-02-25",
- "2023-03-04",
- "2023-03-11",
- "2023-03-18",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-15",
- "2023-04-22",
- "2023-04-29",
- "2023-05-13",
- "2023-06-03",
- "2023-06-10",
- "2023-06-24",
- "2023-07-01",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26",
- "2023-09-02",
- "2023-09-09",
- "2023-09-16",
- "2023-09-23",
- "2023-09-30",
- "2023-10-07",
- "2023-10-14",
- "2023-10-21",
- "2023-10-28",
- "2023-11-04",
- "2023-11-11",
- "2023-11-18"
- ],
- "AWS_NO2-VISUALISATION": [
- "2018-04-30",
- "2018-05-07",
- "2018-05-14",
- "2018-05-21",
- "2018-05-28",
- "2018-06-04",
- "2018-06-11",
- "2018-06-18",
- "2018-06-25",
- "2018-07-02",
- "2018-07-09",
- "2018-07-16",
- "2018-07-23",
- "2018-07-30",
- "2018-08-06",
- "2018-08-13",
- "2018-08-20",
- "2018-08-27",
- "2018-09-03",
- "2018-09-10",
- "2018-09-17",
- "2018-09-24",
- "2018-10-01",
- "2018-10-08",
- "2018-10-15",
- "2018-10-22",
- "2018-10-29",
- "2018-11-05",
- "2018-11-12",
- "2018-11-19",
- "2018-11-26",
- "2018-12-03",
- "2018-12-10",
- "2018-12-17",
- "2018-12-24",
- "2018-12-31",
- "2019-01-07",
- "2019-01-14",
- "2019-01-21",
- "2019-01-28",
- "2019-02-04",
- "2019-02-11",
- "2019-02-18",
- "2019-02-25",
- "2019-03-04",
- "2019-03-11",
- "2019-03-18",
- "2019-03-25",
- "2019-04-01",
- "2019-04-08",
- "2019-04-15",
- "2019-04-22",
- "2019-04-29",
- "2019-05-06",
- "2019-05-13",
- "2019-05-20",
- "2019-05-27",
- "2019-06-03",
- "2019-06-10",
- "2019-06-17",
- "2019-06-24",
- "2019-07-01",
- "2019-07-08",
- "2019-07-15",
- "2019-07-22",
- "2019-07-29",
- "2019-08-05",
- "2019-08-12",
- "2019-08-19",
- "2019-08-26",
- "2019-09-02",
- "2019-09-09",
- "2019-09-16",
- "2019-09-23",
- "2019-09-30",
- "2019-10-07",
- "2019-10-14",
- "2019-10-21",
- "2019-10-28",
- "2019-11-04",
- "2019-11-11",
- "2019-11-18",
- "2019-11-25",
- "2019-12-02",
- "2019-12-09",
- "2019-12-16",
- "2019-12-23",
- "2019-12-30",
- "2020-01-06",
- "2020-01-13",
- "2020-01-20",
- "2020-01-27",
- "2020-02-03",
- "2020-02-10",
- "2020-02-17",
- "2020-02-24",
- "2020-03-02",
- "2020-03-09",
- "2020-03-16",
- "2020-03-23",
- "2020-03-30",
- "2020-04-06",
- "2020-04-13",
- "2020-04-20",
- "2020-04-27",
- "2020-05-04",
- "2020-05-11",
- "2020-05-18",
- "2020-05-25",
- "2020-06-01",
- "2020-06-08",
- "2020-06-15",
- "2020-06-22",
- "2020-06-29",
- "2020-07-06",
- "2020-07-13",
- "2020-07-20",
- "2020-07-27",
- "2020-08-03",
- "2020-08-10",
- "2020-08-17",
- "2020-08-24",
- "2020-08-31",
- "2020-09-07",
- "2020-09-14",
- "2020-09-21",
- "2020-09-28",
- "2020-10-05",
- "2020-10-12",
- "2020-10-19",
- "2020-10-26",
- "2020-11-02",
- "2020-11-09",
- "2020-11-16",
- "2020-11-23",
- "2020-11-30",
- "2020-12-07",
- "2020-12-14",
- "2020-12-21",
- "2020-12-28",
- "2021-01-04",
- "2021-01-11",
- "2021-01-18",
- "2021-01-25",
- "2021-02-01",
- "2021-02-08",
- "2021-02-15",
- "2021-02-22",
- "2021-03-01",
- "2021-03-08",
- "2021-03-15",
- "2021-03-22",
- "2021-03-29",
- "2021-04-05",
- "2021-04-12",
- "2021-04-19",
- "2021-04-26",
- "2021-05-03",
- "2021-05-10",
- "2021-05-17",
- "2021-05-24",
- "2021-05-31",
- "2021-06-07",
- "2021-06-14",
- "2021-06-21",
- "2021-06-28",
- "2021-07-05",
- "2021-07-12",
- "2021-07-19",
- "2021-07-26",
- "2021-08-02",
- "2021-08-09",
- "2021-08-16",
- "2021-08-23",
- "2021-08-30",
- "2021-09-06",
- "2021-09-13",
- "2021-09-20",
- "2021-09-27",
- "2021-10-04",
- "2021-10-11",
- "2021-10-18",
- "2021-10-25",
- "2021-11-01",
- "2021-11-08",
- "2021-11-15",
- "2021-11-22",
- "2021-11-29",
- "2021-12-06",
- "2021-12-13",
- "2021-12-20",
- "2021-12-27",
- "2022-01-03",
- "2022-01-10",
- "2022-01-17",
- "2022-01-24",
- "2022-01-31",
- "2022-02-07",
- "2022-02-14",
- "2022-02-21",
- "2022-02-28",
- "2022-03-07",
- "2022-03-14",
- "2022-03-21",
- "2022-03-28",
- "2022-04-04",
- "2022-04-11",
- "2022-04-18",
- "2022-04-25",
- "2022-05-02",
- "2022-05-09",
- "2022-05-16",
- "2022-05-23",
- "2022-05-30",
- "2022-06-06",
- "2022-06-13",
- "2022-06-20",
- "2022-06-27",
- "2022-07-04",
- "2022-07-11",
- "2022-07-18",
- "2022-07-25",
- "2022-08-01",
- "2022-08-08",
- "2022-08-15",
- "2022-08-22",
- "2022-08-29",
- "2022-09-05",
- "2022-09-12",
- "2022-09-19",
- "2022-09-26",
- "2022-10-03",
- "2022-10-10",
- "2022-10-17",
- "2022-10-24",
- "2022-10-31",
- "2022-11-07",
- "2022-11-14",
- "2022-11-21",
- "2022-11-28",
- "2022-12-05",
- "2022-12-12",
- "2022-12-19",
- "2022-12-26",
- "2023-01-02",
- "2023-01-09",
- "2023-01-16",
- "2023-01-23",
- "2023-01-30",
- "2023-02-06",
- "2023-02-13",
- "2023-02-20",
- "2023-02-27",
- "2023-03-06",
- "2023-03-13",
- "2023-03-20",
- "2023-03-27",
- "2023-04-03",
- "2023-04-10",
- "2023-04-17",
- "2023-04-24",
- "2023-05-01",
- "2023-05-08",
- "2023-05-15",
- "2023-05-22",
- "2023-05-29",
- "2023-06-05",
- "2023-06-12",
- "2023-06-19",
- "2023-06-26",
- "2023-07-03",
- "2023-07-10",
- "2023-07-17",
- "2023-07-24",
- "2023-07-31",
- "2023-08-07",
- "2023-08-14",
- "2023-08-21",
- "2023-08-28",
- "2023-09-04",
- "2023-09-11",
- "2023-09-18",
- "2023-09-25",
- "2023-10-02",
- "2023-10-09",
- "2023-10-16",
- "2023-10-23",
- "2023-10-30",
- "2023-11-06",
- "2023-11-13"
- ],
- "AWS_POPULATION_DENSITY": [
- "2020-05-01"
- ],
- "AWS_VIS_2MTEMPERATURE": [
- "1959-01-01",
- "1959-02-01",
- "1959-03-01",
- "1959-04-01",
- "1959-05-01",
- "1959-06-01",
- "1959-07-01",
- "1959-08-01",
- "1959-09-01",
- "1959-10-01",
- "1959-11-01",
- "1959-12-01",
- "1960-01-01",
- "1960-02-01",
- "1960-03-01",
- "1960-04-01",
- "1960-05-01",
- "1960-06-01",
- "1960-07-01",
- "1960-08-01",
- "1960-09-01",
- "1960-10-01",
- "1960-11-01",
- "1960-12-01",
- "1961-01-01",
- "1961-02-01",
- "1961-03-01",
- "1961-04-01",
- "1961-05-01",
- "1961-06-01",
- "1961-07-01",
- "1961-08-01",
- "1961-09-01",
- "1961-10-01",
- "1961-11-01",
- "1961-12-01",
- "1962-01-01",
- "1962-02-01",
- "1962-03-01",
- "1962-04-01",
- "1962-05-01",
- "1962-06-01",
- "1962-07-01",
- "1962-08-01",
- "1962-09-01",
- "1962-10-01",
- "1962-11-01",
- "1962-12-01",
- "1963-01-01",
- "1963-02-01",
- "1963-03-01",
- "1963-04-01",
- "1963-05-01",
- "1963-06-01",
- "1963-07-01",
- "1963-08-01",
- "1963-09-01",
- "1963-10-01",
- "1963-11-01",
- "1963-12-01",
- "1964-01-01",
- "1964-02-01",
- "1964-03-01",
- "1964-04-01",
- "1964-05-01",
- "1964-06-01",
- "1964-07-01",
- "1964-08-01",
- "1964-09-01",
- "1964-10-01",
- "1964-11-01",
- "1964-12-01",
- "1965-01-01",
- "1965-02-01",
- "1965-03-01",
- "1965-04-01",
- "1965-05-01",
- "1965-06-01",
- "1965-07-01",
- "1965-08-01",
- "1965-09-01",
- "1965-10-01",
- "1965-11-01",
- "1965-12-01",
- "1966-01-01",
- "1966-02-01",
- "1966-03-01",
- "1966-04-01",
- "1966-05-01",
- "1966-06-01",
- "1966-07-01",
- "1966-08-01",
- "1966-09-01",
- "1966-10-01",
- "1966-11-01",
- "1966-12-01",
- "1967-01-01",
- "1967-02-01",
- "1967-03-01",
- "1967-04-01",
- "1967-05-01",
- "1967-06-01",
- "1967-07-01",
- "1967-08-01",
- "1967-09-01",
- "1967-10-01",
- "1967-11-01",
- "1967-12-01",
- "1968-01-01",
- "1968-02-01",
- "1968-03-01",
- "1968-04-01",
- "1968-05-01",
- "1968-06-01",
- "1968-07-01",
- "1968-08-01",
- "1968-09-01",
- "1968-10-01",
- "1968-11-01",
- "1968-12-01",
- "1969-01-01",
- "1969-02-01",
- "1969-03-01",
- "1969-04-01",
- "1969-05-01",
- "1969-06-01",
- "1969-07-01",
- "1969-08-01",
- "1969-09-01",
- "1969-10-01",
- "1969-11-01",
- "1969-12-01",
- "1970-01-01",
- "1970-02-01",
- "1970-03-01",
- "1970-04-01",
- "1970-05-01",
- "1970-06-01",
- "1970-07-01",
- "1970-08-01",
- "1970-09-01",
- "1970-10-01",
- "1970-11-01",
- "1970-12-01",
- "1971-01-01",
- "1971-02-01",
- "1971-03-01",
- "1971-04-01",
- "1971-05-01",
- "1971-06-01",
- "1971-07-01",
- "1971-08-01",
- "1971-09-01",
- "1971-10-01",
- "1971-11-01",
- "1971-12-01",
- "1972-01-01",
- "1972-02-01",
- "1972-03-01",
- "1972-04-01",
- "1972-05-01",
- "1972-06-01",
- "1972-07-01",
- "1972-08-01",
- "1972-09-01",
- "1972-10-01",
- "1972-11-01",
- "1972-12-01",
- "1973-01-01",
- "1973-02-01",
- "1973-03-01",
- "1973-04-01",
- "1973-05-01",
- "1973-06-01",
- "1973-07-01",
- "1973-08-01",
- "1973-09-01",
- "1973-10-01",
- "1973-11-01",
- "1973-12-01",
- "1974-01-01",
- "1974-02-01",
- "1974-03-01",
- "1974-04-01",
- "1974-05-01",
- "1974-06-01",
- "1974-07-01",
- "1974-08-01",
- "1974-09-01",
- "1974-10-01",
- "1974-11-01",
- "1974-12-01",
- "1975-01-01",
- "1975-02-01",
- "1975-03-01",
- "1975-04-01",
- "1975-05-01",
- "1975-06-01",
- "1975-07-01",
- "1975-08-01",
- "1975-09-01",
- "1975-10-01",
- "1975-11-01",
- "1975-12-01",
- "1976-01-01",
- "1976-02-01",
- "1976-03-01",
- "1976-04-01",
- "1976-05-01",
- "1976-06-01",
- "1976-07-01",
- "1976-08-01",
- "1976-09-01",
- "1976-10-01",
- "1976-11-01",
- "1976-12-01",
- "1977-01-01",
- "1977-02-01",
- "1977-03-01",
- "1977-04-01",
- "1977-05-01",
- "1977-06-01",
- "1977-07-01",
- "1977-08-01",
- "1977-09-01",
- "1977-10-01",
- "1977-11-01",
- "1977-12-01",
- "1978-01-01",
- "1978-02-01",
- "1978-03-01",
- "1978-04-01",
- "1978-05-01",
- "1978-06-01",
- "1978-07-01",
- "1978-08-01",
- "1978-09-01",
- "1978-10-01",
- "1978-11-01",
- "1978-12-01",
- "1979-01-01",
- "1979-02-01",
- "1979-03-01",
- "1979-04-01",
- "1979-05-01",
- "1979-06-01",
- "1979-07-01",
- "1979-08-01",
- "1979-09-01",
- "1979-10-01",
- "1979-11-01",
- "1979-12-01",
- "1980-01-01",
- "1980-02-01",
- "1980-03-01",
- "1980-04-01",
- "1980-05-01",
- "1980-06-01",
- "1980-07-01",
- "1980-08-01",
- "1980-09-01",
- "1980-10-01",
- "1980-11-01",
- "1980-12-01",
- "1981-01-01",
- "1981-02-01",
- "1981-03-01",
- "1981-04-01",
- "1981-05-01",
- "1981-06-01",
- "1981-07-01",
- "1981-08-01",
- "1981-09-01",
- "1981-10-01",
- "1981-11-01",
- "1981-12-01",
- "1982-01-01",
- "1982-02-01",
- "1982-03-01",
- "1982-04-01",
- "1982-05-01",
- "1982-06-01",
- "1982-07-01",
- "1982-08-01",
- "1982-09-01",
- "1982-10-01",
- "1982-11-01",
- "1982-12-01",
- "1983-01-01",
- "1983-02-01",
- "1983-03-01",
- "1983-04-01",
- "1983-05-01",
- "1983-06-01",
- "1983-07-01",
- "1983-08-01",
- "1983-09-01",
- "1983-10-01",
- "1983-11-01",
- "1983-12-01",
- "1984-01-01",
- "1984-02-01",
- "1984-03-01",
- "1984-04-01",
- "1984-05-01",
- "1984-06-01",
- "1984-07-01",
- "1984-08-01",
- "1984-09-01",
- "1984-10-01",
- "1984-11-01",
- "1984-12-01",
- "1985-01-01",
- "1985-02-01",
- "1985-03-01",
- "1985-04-01",
- "1985-05-01",
- "1985-06-01",
- "1985-07-01",
- "1985-08-01",
- "1985-09-01",
- "1985-10-01",
- "1985-11-01",
- "1985-12-01",
- "1986-01-01",
- "1986-02-01",
- "1986-03-01",
- "1986-04-01",
- "1986-05-01",
- "1986-06-01",
- "1986-07-01",
- "1986-08-01",
- "1986-09-01",
- "1986-10-01",
- "1986-11-01",
- "1986-12-01",
- "1987-01-01",
- "1987-02-01",
- "1987-03-01",
- "1987-04-01",
- "1987-05-01",
- "1987-06-01",
- "1987-07-01",
- "1987-08-01",
- "1987-09-01",
- "1987-10-01",
- "1987-11-01",
- "1987-12-01",
- "1988-01-01",
- "1988-02-01",
- "1988-03-01",
- "1988-04-01",
- "1988-05-01",
- "1988-06-01",
- "1988-07-01",
- "1988-08-01",
- "1988-09-01",
- "1988-10-01",
- "1988-11-01",
- "1988-12-01",
- "1989-01-01",
- "1989-02-01",
- "1989-03-01",
- "1989-04-01",
- "1989-05-01",
- "1989-06-01",
- "1989-07-01",
- "1989-08-01",
- "1989-09-01",
- "1989-10-01",
- "1989-11-01",
- "1989-12-01",
- "1990-01-01",
- "1990-02-01",
- "1990-03-01",
- "1990-04-01",
- "1990-05-01",
- "1990-06-01",
- "1990-07-01",
- "1990-08-01",
- "1990-09-01",
- "1990-10-01",
- "1990-11-01",
- "1990-12-01",
- "1991-01-01",
- "1991-02-01",
- "1991-03-01",
- "1991-04-01",
- "1991-05-01",
- "1991-06-01",
- "1991-07-01",
- "1991-08-01",
- "1991-09-01",
- "1991-10-01",
- "1991-11-01",
- "1991-12-01",
- "1992-01-01",
- "1992-02-01",
- "1992-03-01",
- "1992-04-01",
- "1992-05-01",
- "1992-06-01",
- "1992-07-01",
- "1992-08-01",
- "1992-09-01",
- "1992-10-01",
- "1992-11-01",
- "1992-12-01",
- "1993-01-01",
- "1993-02-01",
- "1993-03-01",
- "1993-04-01",
- "1993-05-01",
- "1993-06-01",
- "1993-07-01",
- "1993-08-01",
- "1993-09-01",
- "1993-10-01",
- "1993-11-01",
- "1993-12-01",
- "1994-01-01",
- "1994-02-01",
- "1994-03-01",
- "1994-04-01",
- "1994-05-01",
- "1994-06-01",
- "1994-07-01",
- "1994-08-01",
- "1994-09-01",
- "1994-10-01",
- "1994-11-01",
- "1994-12-01",
- "1995-01-01",
- "1995-02-01",
- "1995-03-01",
- "1995-04-01",
- "1995-05-01",
- "1995-06-01",
- "1995-07-01",
- "1995-08-01",
- "1995-09-01",
- "1995-10-01",
- "1995-11-01",
- "1995-12-01",
- "1996-01-01",
- "1996-02-01",
- "1996-03-01",
- "1996-04-01",
- "1996-05-01",
- "1996-06-01",
- "1996-07-01",
- "1996-08-01",
- "1996-09-01",
- "1996-10-01",
- "1996-11-01",
- "1996-12-01",
- "1997-01-01",
- "1997-02-01",
- "1997-03-01",
- "1997-04-01",
- "1997-05-01",
- "1997-06-01",
- "1997-07-01",
- "1997-08-01",
- "1997-09-01",
- "1997-10-01",
- "1997-11-01",
- "1997-12-01",
- "1998-01-01",
- "1998-02-01",
- "1998-03-01",
- "1998-04-01",
- "1998-05-01",
- "1998-06-01",
- "1998-07-01",
- "1998-08-01",
- "1998-09-01",
- "1998-10-01",
- "1998-11-01",
- "1998-12-01",
- "1999-01-01",
- "1999-02-01",
- "1999-03-01",
- "1999-04-01",
- "1999-05-01",
- "1999-06-01",
- "1999-07-01",
- "1999-08-01",
- "1999-09-01",
- "1999-10-01",
- "1999-11-01",
- "1999-12-01",
- "2000-01-01",
- "2000-02-01",
- "2000-03-01",
- "2000-04-01",
- "2000-05-01",
- "2000-06-01",
- "2000-07-01",
- "2000-08-01",
- "2000-09-01",
- "2000-10-01",
- "2000-11-01",
- "2000-12-01",
- "2001-01-01",
- "2001-02-01",
- "2001-03-01",
- "2001-04-01",
- "2001-05-01",
- "2001-06-01",
- "2001-07-01",
- "2001-08-01",
- "2001-09-01",
- "2001-10-01",
- "2001-11-01",
- "2001-12-01",
- "2002-01-01",
- "2002-02-01",
- "2002-03-01",
- "2002-04-01",
- "2002-05-01",
- "2002-06-01",
- "2002-07-01",
- "2002-08-01",
- "2002-09-01",
- "2002-10-01",
- "2002-11-01",
- "2002-12-01",
- "2003-01-01",
- "2003-02-01",
- "2003-03-01",
- "2003-04-01",
- "2003-05-01",
- "2003-06-01",
- "2003-07-01",
- "2003-08-01",
- "2003-09-01",
- "2003-10-01",
- "2003-11-01",
- "2003-12-01",
- "2004-01-01",
- "2004-02-01",
- "2004-03-01",
- "2004-04-01",
- "2004-05-01",
- "2004-06-01",
- "2004-07-01",
- "2004-08-01",
- "2004-09-01",
- "2004-10-01",
- "2004-11-01",
- "2004-12-01",
- "2005-01-01",
- "2005-02-01",
- "2005-03-01",
- "2005-04-01",
- "2005-05-01",
- "2005-06-01",
- "2005-07-01",
- "2005-08-01",
- "2005-09-01",
- "2005-10-01",
- "2005-11-01",
- "2005-12-01",
- "2006-01-01",
- "2006-02-01",
- "2006-03-01",
- "2006-04-01",
- "2006-05-01",
- "2006-06-01",
- "2006-07-01",
- "2006-08-01",
- "2006-09-01",
- "2006-10-01",
- "2006-11-01",
- "2006-12-01",
- "2007-01-01",
- "2007-02-01",
- "2007-03-01",
- "2007-04-01",
- "2007-05-01",
- "2007-06-01",
- "2007-07-01",
- "2007-08-01",
- "2007-09-01",
- "2007-10-01",
- "2007-11-01",
- "2007-12-01",
- "2008-01-01",
- "2008-02-01",
- "2008-03-01",
- "2008-04-01",
- "2008-05-01",
- "2008-06-01",
- "2008-07-01",
- "2008-08-01",
- "2008-09-01",
- "2008-10-01",
- "2008-11-01",
- "2008-12-01",
- "2009-01-01",
- "2009-02-01",
- "2009-03-01",
- "2009-04-01",
- "2009-05-01",
- "2009-06-01",
- "2009-07-01",
- "2009-08-01",
- "2009-09-01",
- "2009-10-01",
- "2009-11-01",
- "2009-12-01",
- "2010-01-01",
- "2010-02-01",
- "2010-03-01",
- "2010-04-01",
- "2010-05-01",
- "2010-06-01",
- "2010-07-01",
- "2010-08-01",
- "2010-09-01",
- "2010-10-01",
- "2010-11-01",
- "2010-12-01",
- "2011-01-01",
- "2011-02-01",
- "2011-03-01",
- "2011-04-01",
- "2011-05-01",
- "2011-06-01",
- "2011-07-01",
- "2011-08-01",
- "2011-09-01",
- "2011-10-01",
- "2011-11-01",
- "2011-12-01",
- "2012-01-01",
- "2012-02-01",
- "2012-03-01",
- "2012-04-01",
- "2012-05-01",
- "2012-06-01",
- "2012-07-01",
- "2012-08-01",
- "2012-09-01",
- "2012-10-01",
- "2012-11-01",
- "2012-12-01",
- "2013-01-01",
- "2013-02-01",
- "2013-03-01",
- "2013-04-01",
- "2013-05-01",
- "2013-06-01",
- "2013-07-01",
- "2013-08-01",
- "2013-09-01",
- "2013-10-01",
- "2013-11-01",
- "2013-12-01",
- "2014-01-01",
- "2014-02-01",
- "2014-03-01",
- "2014-04-01",
- "2014-05-01",
- "2014-06-01",
- "2014-07-01",
- "2014-08-01",
- "2014-09-01",
- "2014-10-01",
- "2014-11-01",
- "2014-12-01",
- "2015-01-01",
- "2015-02-01",
- "2015-03-01",
- "2015-04-01",
- "2015-05-01",
- "2015-06-01",
- "2015-07-01",
- "2015-08-01",
- "2015-09-01",
- "2015-10-01",
- "2015-11-01",
- "2015-12-01",
- "2016-01-01",
- "2016-02-01",
- "2016-03-01",
- "2016-04-01",
- "2016-05-01",
- "2016-06-01",
- "2016-07-01",
- "2016-08-01",
- "2016-09-01",
- "2016-10-01",
- "2016-11-01",
- "2016-12-01",
- "2017-01-01",
- "2017-02-01",
- "2017-03-01",
- "2017-04-01",
- "2017-05-01",
- "2017-06-01",
- "2017-07-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2017-12-01",
- "2018-01-01",
- "2018-02-01",
- "2018-03-01",
- "2018-04-01",
- "2018-05-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-09-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-01-01",
- "2019-02-01",
- "2019-03-01",
- "2019-04-01",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-10-01",
- "2019-11-01",
- "2019-12-01",
- "2020-01-01",
- "2020-02-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-10-01",
- "2020-11-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-03-01",
- "2021-04-01",
- "2021-05-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-06-01",
- "2022-07-01",
- "2022-08-01",
- "2022-09-01",
- "2022-10-01",
- "2022-11-01",
- "2022-12-01",
- "2023-01-01",
- "2023-02-01",
- "2023-03-01",
- "2023-04-01",
- "2023-05-01",
- "2023-06-01",
- "2023-07-01"
- ],
- "AWS_VIS_CO_3DAILY_DATA": [
- "2018-04-30",
- "2018-05-01",
- "2018-05-02",
- "2018-05-03",
- "2018-05-04",
- "2018-05-05",
- "2018-05-06",
- "2018-05-07",
- "2018-05-08",
- "2018-05-09",
- "2018-05-10",
- "2018-05-11",
- "2018-05-12",
- "2018-05-13",
- "2018-05-14",
- "2018-05-15",
- "2018-05-16",
- "2018-05-17",
- "2018-05-18",
- "2018-05-19",
- "2018-05-20",
- "2018-05-21",
- "2018-05-22",
- "2018-05-23",
- "2018-05-24",
- "2018-05-25",
- "2018-05-26",
- "2018-05-27",
- "2018-05-28",
- "2018-05-29",
- "2018-05-30",
- "2018-05-31",
- "2018-06-01",
- "2018-06-02",
- "2018-06-03",
- "2018-06-04",
- "2018-06-05",
- "2018-06-06",
- "2018-06-07",
- "2018-06-08",
- "2018-06-09",
- "2018-06-10",
- "2018-06-11",
- "2018-06-12",
- "2018-06-13",
- "2018-06-14",
- "2018-06-15",
- "2018-06-16",
- "2018-06-17",
- "2018-06-18",
- "2018-06-19",
- "2018-06-20",
- "2018-06-21",
- "2018-06-22",
- "2018-06-23",
- "2018-06-24",
- "2018-06-25",
- "2018-06-26",
- "2018-06-27",
- "2018-06-28",
- "2018-06-29",
- "2018-06-30",
- "2018-07-01",
- "2018-07-02",
- "2018-07-03",
- "2018-07-04",
- "2018-07-05",
- "2018-07-06",
- "2018-07-07",
- "2018-07-08",
- "2018-07-09",
- "2018-07-10",
- "2018-07-11",
- "2018-07-12",
- "2018-07-13",
- "2018-07-14",
- "2018-07-15",
- "2018-07-16",
- "2018-07-17",
- "2018-07-18",
- "2018-07-19",
- "2018-07-20",
- "2018-07-21",
- "2018-07-22",
- "2018-07-23",
- "2018-07-24",
- "2018-07-25",
- "2018-07-26",
- "2018-07-27",
- "2018-07-28",
- "2018-07-29",
- "2018-07-30",
- "2018-07-31",
- "2018-08-01",
- "2018-08-02",
- "2018-08-03",
- "2018-08-04",
- "2018-08-05",
- "2018-08-06",
- "2018-08-07",
- "2018-08-08",
- "2018-08-09",
- "2018-08-10",
- "2018-08-11",
- "2018-08-12",
- "2018-08-13",
- "2018-08-14",
- "2018-08-15",
- "2018-08-16",
- "2018-08-17",
- "2018-08-18",
- "2018-08-19",
- "2018-08-20",
- "2018-08-21",
- "2018-08-22",
- "2018-08-23",
- "2018-08-24",
- "2018-08-25",
- "2018-08-26",
- "2018-08-27",
- "2018-08-28",
- "2018-08-29",
- "2018-08-30",
- "2018-08-31",
- "2018-09-01",
- "2018-09-02",
- "2018-09-03",
- "2018-09-04",
- "2018-09-05",
- "2018-09-06",
- "2018-09-07",
- "2018-09-08",
- "2018-09-09",
- "2018-09-10",
- "2018-09-11",
- "2018-09-12",
- "2018-09-13",
- "2018-09-14",
- "2018-09-15",
- "2018-09-16",
- "2018-09-17",
- "2018-09-18",
- "2018-09-19",
- "2018-09-20",
- "2018-09-21",
- "2018-09-22",
- "2018-09-23",
- "2018-09-24",
- "2018-09-25",
- "2018-09-26",
- "2018-09-27",
- "2018-09-28",
- "2018-09-29",
- "2018-09-30",
- "2018-10-01",
- "2018-10-02",
- "2018-10-03",
- "2018-10-04",
- "2018-10-05",
- "2018-10-06",
- "2018-10-07",
- "2018-10-08",
- "2018-10-09",
- "2018-10-10",
- "2018-10-11",
- "2018-10-12",
- "2018-10-13",
- "2018-10-14",
- "2018-10-15",
- "2018-10-16",
- "2018-10-17",
- "2018-10-18",
- "2018-10-19",
- "2018-10-20",
- "2018-10-21",
- "2018-10-22",
- "2018-10-23",
- "2018-10-24",
- "2018-10-25",
- "2018-10-26",
- "2018-10-27",
- "2018-10-28",
- "2018-10-29",
- "2018-10-30",
- "2018-10-31",
- "2018-11-01",
- "2018-11-02",
- "2018-11-03",
- "2018-11-04",
- "2018-11-05",
- "2018-11-06",
- "2018-11-07",
- "2018-11-08",
- "2018-11-09",
- "2018-11-10",
- "2018-11-11",
- "2018-11-12",
- "2018-11-13",
- "2018-11-14",
- "2018-11-15",
- "2018-11-16",
- "2018-11-17",
- "2018-11-18",
- "2018-11-19",
- "2018-11-20",
- "2018-11-21",
- "2018-11-22",
- "2018-11-23",
- "2018-11-24",
- "2018-11-25",
- "2018-11-26",
- "2018-11-27",
- "2018-11-28",
- "2018-11-29",
- "2018-11-30",
- "2018-12-01",
- "2018-12-02",
- "2018-12-03",
- "2018-12-04",
- "2018-12-05",
- "2018-12-06",
- "2018-12-07",
- "2018-12-08",
- "2018-12-09",
- "2018-12-10",
- "2018-12-11",
- "2018-12-12",
- "2018-12-13",
- "2018-12-14",
- "2018-12-15",
- "2018-12-16",
- "2018-12-17",
- "2018-12-18",
- "2018-12-19",
- "2018-12-20",
- "2018-12-21",
- "2018-12-22",
- "2018-12-23",
- "2018-12-24",
- "2018-12-25",
- "2018-12-26",
- "2018-12-27",
- "2018-12-28",
- "2018-12-29",
- "2018-12-30",
- "2018-12-31",
- "2019-01-01",
- "2019-01-02",
- "2019-01-03",
- "2019-01-04",
- "2019-01-05",
- "2019-01-06",
- "2019-01-07",
- "2019-01-08",
- "2019-01-09",
- "2019-01-10",
- "2019-01-11",
- "2019-01-12",
- "2019-01-13",
- "2019-01-14",
- "2019-01-15",
- "2019-01-16",
- "2019-01-17",
- "2019-01-18",
- "2019-01-19",
- "2019-01-20",
- "2019-01-21",
- "2019-01-22",
- "2019-01-23",
- "2019-01-24",
- "2019-01-25",
- "2019-01-26",
- "2019-01-27",
- "2019-01-28",
- "2019-01-29",
- "2019-01-30",
- "2019-01-31",
- "2019-02-01",
- "2019-02-02",
- "2019-02-03",
- "2019-02-04",
- "2019-02-05",
- "2019-02-06",
- "2019-02-07",
- "2019-02-08",
- "2019-02-09",
- "2019-02-10",
- "2019-02-11",
- "2019-02-12",
- "2019-02-13",
- "2019-02-14",
- "2019-02-15",
- "2019-02-16",
- "2019-02-17",
- "2019-02-18",
- "2019-02-19",
- "2019-02-20",
- "2019-02-21",
- "2019-02-22",
- "2019-02-23",
- "2019-02-24",
- "2019-02-25",
- "2019-02-26",
- "2019-02-27",
- "2019-02-28",
- "2019-03-01",
- "2019-03-02",
- "2019-03-03",
- "2019-03-04",
- "2019-03-05",
- "2019-03-06",
- "2019-03-07",
- "2019-03-08",
- "2019-03-09",
- "2019-03-10",
- "2019-03-11",
- "2019-03-12",
- "2019-03-13",
- "2019-03-14",
- "2019-03-15",
- "2019-03-16",
- "2019-03-17",
- "2019-03-18",
- "2019-03-19",
- "2019-03-20",
- "2019-03-21",
- "2019-03-22",
- "2019-03-23",
- "2019-03-24",
- "2019-03-25",
- "2019-03-26",
- "2019-03-27",
- "2019-03-28",
- "2019-03-29",
- "2019-03-30",
- "2019-03-31",
- "2019-04-01",
- "2019-04-02",
- "2019-04-03",
- "2019-04-04",
- "2019-04-05",
- "2019-04-06",
- "2019-04-07",
- "2019-04-08",
- "2019-04-09",
- "2019-04-10",
- "2019-04-11",
- "2019-04-12",
- "2019-04-13",
- "2019-04-14",
- "2019-04-15",
- "2019-04-16",
- "2019-04-17",
- "2019-04-18",
- "2019-04-19",
- "2019-04-20",
- "2019-04-21",
- "2019-04-22",
- "2019-04-23",
- "2019-04-24",
- "2019-04-25",
- "2019-04-26",
- "2019-04-27",
- "2019-04-28",
- "2019-04-29",
- "2019-04-30",
- "2019-05-01",
- "2019-05-02",
- "2019-05-03",
- "2019-05-04",
- "2019-05-05",
- "2019-05-06",
- "2019-05-07",
- "2019-05-08",
- "2019-05-09",
- "2019-05-10",
- "2019-05-11",
- "2019-05-12",
- "2019-05-13",
- "2019-05-14",
- "2019-05-15",
- "2019-05-16",
- "2019-05-17",
- "2019-05-18",
- "2019-05-19",
- "2019-05-20",
- "2019-05-21",
- "2019-05-22",
- "2019-05-23",
- "2019-05-24",
- "2019-05-25",
- "2019-05-26",
- "2019-05-27",
- "2019-05-28",
- "2019-05-29",
- "2019-05-30",
- "2019-05-31",
- "2019-06-01",
- "2019-06-02",
- "2019-06-03",
- "2019-06-04",
- "2019-06-05",
- "2019-06-06",
- "2019-06-07",
- "2019-06-08",
- "2019-06-09",
- "2019-06-10",
- "2019-06-11",
- "2019-06-12",
- "2019-06-13",
- "2019-06-14",
- "2019-06-15",
- "2019-06-16",
- "2019-06-17",
- "2019-06-18",
- "2019-06-19",
- "2019-06-20",
- "2019-06-21",
- "2019-06-22",
- "2019-06-23",
- "2019-06-24",
- "2019-06-25",
- "2019-06-26",
- "2019-06-27",
- "2019-06-28",
- "2019-06-29",
- "2019-06-30",
- "2019-07-01",
- "2019-07-02",
- "2019-07-03",
- "2019-07-04",
- "2019-07-05",
- "2019-07-06",
- "2019-07-07",
- "2019-07-08",
- "2019-07-09",
- "2019-07-10",
- "2019-07-11",
- "2019-07-12",
- "2019-07-13",
- "2019-07-14",
- "2019-07-15",
- "2019-07-16",
- "2019-07-17",
- "2019-07-18",
- "2019-07-19",
- "2019-07-20",
- "2019-07-21",
- "2019-07-22",
- "2019-07-23",
- "2019-07-24",
- "2019-07-25",
- "2019-07-26",
- "2019-07-27",
- "2019-07-28",
- "2019-07-29",
- "2019-07-30",
- "2019-07-31",
- "2019-08-01",
- "2019-08-02",
- "2019-08-03",
- "2019-08-04",
- "2019-08-05",
- "2019-08-06",
- "2019-08-07",
- "2019-08-08",
- "2019-08-09",
- "2019-08-10",
- "2019-08-11",
- "2019-08-12",
- "2019-08-13",
- "2019-08-14",
- "2019-08-15",
- "2019-08-16",
- "2019-08-17",
- "2019-08-18",
- "2019-08-19",
- "2019-08-20",
- "2019-08-21",
- "2019-08-22",
- "2019-08-23",
- "2019-08-24",
- "2019-08-25",
- "2019-08-26",
- "2019-08-27",
- "2019-08-28",
- "2019-08-29",
- "2019-08-30",
- "2019-08-31",
- "2019-09-01",
- "2019-09-02",
- "2019-09-03",
- "2019-09-04",
- "2019-09-05",
- "2019-09-06",
- "2019-09-07",
- "2019-09-08",
- "2019-09-09",
- "2019-09-10",
- "2019-09-11",
- "2019-09-12",
- "2019-09-13",
- "2019-09-14",
- "2019-09-15",
- "2019-09-16",
- "2019-09-17",
- "2019-09-18",
- "2019-09-19",
- "2019-09-20",
- "2019-09-21",
- "2019-09-22",
- "2019-09-23",
- "2019-09-24",
- "2019-09-25",
- "2019-09-26",
- "2019-09-27",
- "2019-09-28",
- "2019-09-29",
- "2019-09-30",
- "2019-10-01",
- "2019-10-02",
- "2019-10-03",
- "2019-10-04",
- "2019-10-05",
- "2019-10-06",
- "2019-10-07",
- "2019-10-08",
- "2019-10-09",
- "2019-10-10",
- "2019-10-11",
- "2019-10-12",
- "2019-10-13",
- "2019-10-14",
- "2019-10-15",
- "2019-10-16",
- "2019-10-17",
- "2019-10-18",
- "2019-10-19",
- "2019-10-20",
- "2019-10-21",
- "2019-10-22",
- "2019-10-23",
- "2019-10-24",
- "2019-10-25",
- "2019-10-26",
- "2019-10-27",
- "2019-10-28",
- "2019-10-29",
- "2019-10-30",
- "2019-10-31",
- "2019-11-01",
- "2019-11-02",
- "2019-11-03",
- "2019-11-04",
- "2019-11-05",
- "2019-11-06",
- "2019-11-07",
- "2019-11-08",
- "2019-11-09",
- "2019-11-10",
- "2019-11-11",
- "2019-11-12",
- "2019-11-13",
- "2019-11-14",
- "2019-11-15",
- "2019-11-16",
- "2019-11-17",
- "2019-11-18",
- "2019-11-19",
- "2019-11-20",
- "2019-11-21",
- "2019-11-22",
- "2019-11-23",
- "2019-11-24",
- "2019-11-25",
- "2019-11-26",
- "2019-11-27",
- "2019-11-28",
- "2019-11-29",
- "2019-11-30",
- "2019-12-01",
- "2019-12-02",
- "2019-12-03",
- "2019-12-04",
- "2019-12-05",
- "2019-12-06",
- "2019-12-07",
- "2019-12-08",
- "2019-12-09",
- "2019-12-10",
- "2019-12-11",
- "2019-12-12",
- "2019-12-13",
- "2019-12-14",
- "2019-12-15",
- "2019-12-16",
- "2019-12-17",
- "2019-12-18",
- "2019-12-19",
- "2019-12-20",
- "2019-12-21",
- "2019-12-22",
- "2019-12-23",
- "2019-12-24",
- "2019-12-25",
- "2019-12-26",
- "2019-12-27",
- "2019-12-28",
- "2019-12-29",
- "2019-12-30",
- "2019-12-31",
- "2020-01-01",
- "2020-01-02",
- "2020-01-03",
- "2020-01-04",
- "2020-01-05",
- "2020-01-06",
- "2020-01-07",
- "2020-01-08",
- "2020-01-09",
- "2020-01-10",
- "2020-01-11",
- "2020-01-12",
- "2020-01-13",
- "2020-01-14",
- "2020-01-15",
- "2020-01-16",
- "2020-01-17",
- "2020-01-18",
- "2020-01-19",
- "2020-01-20",
- "2020-01-21",
- "2020-01-22",
- "2020-01-23",
- "2020-01-24",
- "2020-01-25",
- "2020-01-26",
- "2020-01-27",
- "2020-01-28",
- "2020-01-29",
- "2020-01-30",
- "2020-01-31",
- "2020-02-01",
- "2020-02-02",
- "2020-02-03",
- "2020-02-04",
- "2020-02-05",
- "2020-02-06",
- "2020-02-07",
- "2020-02-08",
- "2020-02-09",
- "2020-02-10",
- "2020-02-11",
- "2020-02-12",
- "2020-02-13",
- "2020-02-14",
- "2020-02-15",
- "2020-02-16",
- "2020-02-17",
- "2020-02-18",
- "2020-02-19",
- "2020-02-20",
- "2020-02-21",
- "2020-02-22",
- "2020-02-23",
- "2020-02-24",
- "2020-02-25",
- "2020-02-26",
- "2020-02-27",
- "2020-02-28",
- "2020-02-29",
- "2020-03-01",
- "2020-03-02",
- "2020-03-03",
- "2020-03-04",
- "2020-03-05",
- "2020-03-06",
- "2020-03-07",
- "2020-03-08",
- "2020-03-09",
- "2020-03-10",
- "2020-03-11",
- "2020-03-12",
- "2020-03-13",
- "2020-03-14",
- "2020-03-15",
- "2020-03-16",
- "2020-03-17",
- "2020-03-18",
- "2020-03-19",
- "2020-03-20",
- "2020-03-21",
- "2020-03-22",
- "2020-03-23",
- "2020-03-24",
- "2020-03-25",
- "2020-03-26",
- "2020-03-27",
- "2020-03-28",
- "2020-03-29",
- "2020-03-30",
- "2020-03-31",
- "2020-04-01",
- "2020-04-02",
- "2020-04-03",
- "2020-04-04",
- "2020-04-05",
- "2020-04-06",
- "2020-04-07",
- "2020-04-08",
- "2020-04-09",
- "2020-04-10",
- "2020-04-11",
- "2020-04-12",
- "2020-04-13",
- "2020-04-14",
- "2020-04-15",
- "2020-04-16",
- "2020-04-17",
- "2020-04-18",
- "2020-04-19",
- "2020-04-20",
- "2020-04-21",
- "2020-04-22",
- "2020-04-23",
- "2020-04-24",
- "2020-04-25",
- "2020-04-26",
- "2020-04-27",
- "2020-04-28",
- "2020-04-29",
- "2020-04-30",
- "2020-05-01",
- "2020-05-02",
- "2020-05-03",
- "2020-05-04",
- "2020-05-05",
- "2020-05-06",
- "2020-05-07",
- "2020-05-08",
- "2020-05-09",
- "2020-05-10",
- "2020-05-11",
- "2020-05-12",
- "2020-05-13",
- "2020-05-14",
- "2020-05-15",
- "2020-05-16",
- "2020-05-17",
- "2020-05-18",
- "2020-05-19",
- "2020-05-20",
- "2020-05-21",
- "2020-05-22",
- "2020-05-23",
- "2020-05-24",
- "2020-05-25",
- "2020-05-26",
- "2020-05-27",
- "2020-05-28",
- "2020-05-29",
- "2020-05-30",
- "2020-05-31",
- "2020-06-01",
- "2020-06-02",
- "2020-06-03",
- "2020-06-04",
- "2020-06-05",
- "2020-06-06",
- "2020-06-07",
- "2020-06-08",
- "2020-06-09",
- "2020-06-10",
- "2020-06-11",
- "2020-06-12",
- "2020-06-13",
- "2020-06-14",
- "2020-06-15",
- "2020-06-16",
- "2020-06-17",
- "2020-06-18",
- "2020-06-19",
- "2020-06-20",
- "2020-06-21",
- "2020-06-22",
- "2020-06-23",
- "2020-06-24",
- "2020-06-25",
- "2020-06-26",
- "2020-06-27",
- "2020-06-28",
- "2020-06-29",
- "2020-06-30",
- "2020-07-01",
- "2020-07-02",
- "2020-07-03",
- "2020-07-04",
- "2020-07-05",
- "2020-07-06",
- "2020-07-07",
- "2020-07-08",
- "2020-07-09",
- "2020-07-10",
- "2020-07-11",
- "2020-07-12",
- "2020-07-13",
- "2020-07-14",
- "2020-07-15",
- "2020-07-16",
- "2020-07-17",
- "2020-07-18",
- "2020-07-19",
- "2020-07-20",
- "2020-07-21",
- "2020-07-22",
- "2020-07-23",
- "2020-07-24",
- "2020-07-25",
- "2020-07-26",
- "2020-07-27",
- "2020-07-28",
- "2020-07-29",
- "2020-07-30",
- "2020-07-31",
- "2020-08-01",
- "2020-08-02",
- "2020-08-03",
- "2020-08-04",
- "2020-08-05",
- "2020-08-06",
- "2020-08-07",
- "2020-08-08",
- "2020-08-09",
- "2020-08-10",
- "2020-08-11",
- "2020-08-12",
- "2020-08-13",
- "2020-08-14",
- "2020-08-15",
- "2020-08-16",
- "2020-08-17",
- "2020-08-18",
- "2020-08-19",
- "2020-08-20",
- "2020-08-21",
- "2020-08-22",
- "2020-08-23",
- "2020-08-24",
- "2020-08-25",
- "2020-08-26",
- "2020-08-27",
- "2020-08-28",
- "2020-08-29",
- "2020-08-30",
- "2020-08-31",
- "2020-09-01",
- "2020-09-02",
- "2020-09-03",
- "2020-09-04",
- "2020-09-05",
- "2020-09-06",
- "2020-09-07",
- "2020-09-08",
- "2020-09-09",
- "2020-09-10",
- "2020-09-11",
- "2020-09-12",
- "2020-09-13",
- "2020-09-14",
- "2020-09-15",
- "2020-09-16",
- "2020-09-17",
- "2020-09-18",
- "2020-09-19",
- "2020-09-20",
- "2020-09-21",
- "2020-09-22",
- "2020-09-23",
- "2020-09-24",
- "2020-09-25",
- "2020-09-26",
- "2020-09-27",
- "2020-09-28",
- "2020-09-29",
- "2020-09-30",
- "2020-10-01",
- "2020-10-02",
- "2020-10-03",
- "2020-10-04",
- "2020-10-05",
- "2020-10-06",
- "2020-10-07",
- "2020-10-08",
- "2020-10-09",
- "2020-10-10",
- "2020-10-11",
- "2020-10-12",
- "2020-10-13",
- "2020-10-14",
- "2020-10-15",
- "2020-10-16",
- "2020-10-17",
- "2020-10-18",
- "2020-10-19",
- "2020-10-20",
- "2020-10-21",
- "2020-10-22",
- "2020-10-23",
- "2020-10-24",
- "2020-10-25",
- "2020-10-26",
- "2020-10-27",
- "2020-10-28",
- "2020-10-29",
- "2020-10-30",
- "2020-10-31",
- "2020-11-01",
- "2020-11-02",
- "2020-11-03",
- "2020-11-04",
- "2020-11-05",
- "2020-11-06",
- "2020-11-07",
- "2020-11-08",
- "2020-11-09",
- "2020-11-10",
- "2020-11-11",
- "2020-11-12",
- "2020-11-13",
- "2020-11-14",
- "2020-11-15",
- "2020-11-16",
- "2020-11-17",
- "2020-11-18",
- "2020-11-19",
- "2020-11-20",
- "2020-11-21",
- "2020-11-22",
- "2020-11-23",
- "2020-11-24",
- "2020-11-25",
- "2020-11-26",
- "2020-11-27",
- "2020-11-28",
- "2020-11-29",
- "2020-11-30",
- "2020-12-01",
- "2020-12-02",
- "2020-12-03",
- "2020-12-04",
- "2020-12-05",
- "2020-12-06",
- "2020-12-07",
- "2020-12-08",
- "2020-12-09",
- "2020-12-10",
- "2020-12-11",
- "2020-12-12",
- "2020-12-13",
- "2020-12-14",
- "2020-12-15",
- "2020-12-16",
- "2020-12-17",
- "2020-12-18",
- "2020-12-19",
- "2020-12-20",
- "2020-12-21",
- "2020-12-22",
- "2020-12-23",
- "2020-12-24",
- "2020-12-25",
- "2020-12-26",
- "2020-12-27",
- "2020-12-28",
- "2020-12-29",
- "2020-12-30",
- "2020-12-31",
- "2021-01-01",
- "2021-01-02",
- "2021-01-03",
- "2021-01-04",
- "2021-01-05",
- "2021-01-06",
- "2021-01-07",
- "2021-01-08",
- "2021-01-09",
- "2021-01-10",
- "2021-01-11",
- "2021-01-12",
- "2021-01-13",
- "2021-01-14",
- "2021-01-15",
- "2021-01-16",
- "2021-01-17",
- "2021-01-18",
- "2021-01-19",
- "2021-01-20",
- "2021-01-21",
- "2021-01-22",
- "2021-01-23",
- "2021-01-24",
- "2021-01-25",
- "2021-01-26",
- "2021-01-27",
- "2021-01-28",
- "2021-01-29",
- "2021-01-30",
- "2021-01-31",
- "2021-02-01",
- "2021-02-02",
- "2021-02-03",
- "2021-02-04",
- "2021-02-05",
- "2021-02-06",
- "2021-02-07",
- "2021-02-08",
- "2021-02-09",
- "2021-02-10",
- "2021-02-11",
- "2021-02-12",
- "2021-02-13",
- "2021-02-14",
- "2021-02-15",
- "2021-02-16",
- "2021-02-17",
- "2021-02-18",
- "2021-02-19",
- "2021-02-20",
- "2021-02-21",
- "2021-02-22",
- "2021-02-23",
- "2021-02-24",
- "2021-02-25",
- "2021-02-26",
- "2021-02-27",
- "2021-02-28",
- "2021-03-01",
- "2021-03-02",
- "2021-03-03",
- "2021-03-04",
- "2021-03-05",
- "2021-03-06",
- "2021-03-07",
- "2021-03-08",
- "2021-03-09",
- "2021-03-10",
- "2021-03-11",
- "2021-03-12",
- "2021-03-13",
- "2021-03-14",
- "2021-03-15",
- "2021-03-16",
- "2021-03-17",
- "2021-03-18",
- "2021-03-19",
- "2021-03-20",
- "2021-03-21",
- "2021-03-22",
- "2021-03-23",
- "2021-03-24",
- "2021-03-25",
- "2021-03-26",
- "2021-03-27",
- "2021-03-28",
- "2021-03-29",
- "2021-03-30",
- "2021-03-31",
- "2021-04-01",
- "2021-04-02",
- "2021-04-03",
- "2021-04-04",
- "2021-04-05",
- "2021-04-06",
- "2021-04-07",
- "2021-04-08",
- "2021-04-09",
- "2021-04-10",
- "2021-04-11",
- "2021-04-12",
- "2021-04-13",
- "2021-04-14",
- "2021-04-15",
- "2021-04-16",
- "2021-04-17",
- "2021-04-18",
- "2021-04-19",
- "2021-04-20",
- "2021-04-21",
- "2021-04-22",
- "2021-04-23",
- "2021-04-24",
- "2021-04-25",
- "2021-04-26",
- "2021-04-27",
- "2021-04-28",
- "2021-04-29",
- "2021-04-30",
- "2021-05-01",
- "2021-05-02",
- "2021-05-03",
- "2021-05-04",
- "2021-05-05",
- "2021-05-06",
- "2021-05-07",
- "2021-05-08",
- "2021-05-09",
- "2021-05-10",
- "2021-05-11",
- "2021-05-12",
- "2021-05-13",
- "2021-05-14",
- "2021-05-15",
- "2021-05-16",
- "2021-05-17",
- "2021-05-18",
- "2021-05-19",
- "2021-05-20",
- "2021-05-21",
- "2021-05-22",
- "2021-05-23",
- "2021-05-24",
- "2021-05-25",
- "2021-05-26",
- "2021-05-27",
- "2021-05-28",
- "2021-05-29",
- "2021-05-30",
- "2021-05-31",
- "2021-06-01",
- "2021-06-02",
- "2021-06-03",
- "2021-06-04",
- "2021-06-05",
- "2021-06-06",
- "2021-06-07",
- "2021-06-08",
- "2021-06-09",
- "2021-06-10",
- "2021-06-11",
- "2021-06-12",
- "2021-06-13",
- "2021-06-14",
- "2021-06-15",
- "2021-06-16",
- "2021-06-17",
- "2021-06-18",
- "2021-06-19",
- "2021-06-20",
- "2021-06-21",
- "2021-06-22",
- "2021-06-23",
- "2021-06-24",
- "2021-06-25",
- "2021-06-26",
- "2021-06-27",
- "2021-06-28",
- "2021-06-29",
- "2021-06-30",
- "2021-07-01",
- "2021-07-02",
- "2021-07-03",
- "2021-07-04",
- "2021-07-05",
- "2021-07-06",
- "2021-07-07",
- "2021-07-08",
- "2021-07-09",
- "2021-07-10",
- "2021-07-11",
- "2021-07-12",
- "2021-07-13",
- "2021-07-14",
- "2021-07-15",
- "2021-07-16",
- "2021-07-17",
- "2021-07-18",
- "2021-07-19",
- "2021-07-20",
- "2021-07-21",
- "2021-07-22",
- "2021-07-23",
- "2021-07-24",
- "2021-07-25",
- "2021-07-26",
- "2021-07-27",
- "2021-07-28",
- "2021-07-29",
- "2021-07-30",
- "2021-07-31",
- "2021-08-01",
- "2021-08-02",
- "2021-08-03",
- "2021-08-04",
- "2021-08-05",
- "2021-08-06",
- "2021-08-07",
- "2021-08-08",
- "2021-08-09",
- "2021-08-10",
- "2021-08-11",
- "2021-08-12",
- "2021-08-13",
- "2021-08-14",
- "2021-08-15",
- "2021-08-16",
- "2021-08-17",
- "2021-08-18",
- "2021-08-19",
- "2021-08-20",
- "2021-08-21",
- "2021-08-22",
- "2021-08-23",
- "2021-08-24",
- "2021-08-25",
- "2021-08-26",
- "2021-08-27",
- "2021-08-28",
- "2021-08-29",
- "2021-08-30",
- "2021-08-31",
- "2021-09-01",
- "2021-09-02",
- "2021-09-03",
- "2021-09-04",
- "2021-09-05",
- "2021-09-06",
- "2021-09-07",
- "2021-09-08",
- "2021-09-09",
- "2021-09-10",
- "2021-09-11",
- "2021-09-12",
- "2021-09-13",
- "2021-09-14",
- "2021-09-15",
- "2021-09-16",
- "2021-09-17",
- "2021-09-18",
- "2021-09-19",
- "2021-09-20",
- "2021-09-21",
- "2021-09-22",
- "2021-09-23",
- "2021-09-24",
- "2021-09-25",
- "2021-09-26",
- "2021-09-27",
- "2021-09-28",
- "2021-09-29",
- "2021-09-30",
- "2021-10-01",
- "2021-10-02",
- "2021-10-03",
- "2021-10-04",
- "2021-10-05",
- "2021-10-06",
- "2021-10-07",
- "2021-10-08",
- "2021-10-09",
- "2021-10-10",
- "2021-10-11",
- "2021-10-12",
- "2021-10-13",
- "2021-10-14",
- "2021-10-15",
- "2021-10-16",
- "2021-10-17",
- "2021-10-18",
- "2021-10-19",
- "2021-10-20",
- "2021-10-21",
- "2021-10-22",
- "2021-10-23",
- "2021-10-24",
- "2021-10-25",
- "2021-10-26",
- "2021-10-27",
- "2021-10-28",
- "2021-10-29",
- "2021-10-30",
- "2021-10-31",
- "2021-11-01",
- "2021-11-02",
- "2021-11-03",
- "2021-11-04",
- "2021-11-05",
- "2021-11-06",
- "2021-11-07",
- "2021-11-08",
- "2021-11-09",
- "2021-11-10",
- "2021-11-11",
- "2021-11-12",
- "2021-11-13",
- "2021-11-14",
- "2021-11-15",
- "2021-11-16",
- "2021-11-17",
- "2021-11-18",
- "2021-11-19",
- "2021-11-20",
- "2021-11-21",
- "2021-11-22",
- "2021-11-23",
- "2021-11-24",
- "2021-11-25",
- "2021-11-26",
- "2021-11-27",
- "2021-11-28",
- "2021-11-29",
- "2021-11-30",
- "2021-12-01",
- "2021-12-02",
- "2021-12-03",
- "2021-12-04",
- "2021-12-05",
- "2021-12-06",
- "2021-12-07",
- "2021-12-08",
- "2021-12-09",
- "2021-12-10",
- "2021-12-11",
- "2021-12-12",
- "2021-12-13",
- "2021-12-14",
- "2021-12-15",
- "2021-12-16",
- "2021-12-17",
- "2021-12-18",
- "2021-12-19",
- "2021-12-20",
- "2021-12-21",
- "2021-12-22",
- "2021-12-23",
- "2021-12-24",
- "2021-12-25",
- "2021-12-26",
- "2021-12-27",
- "2021-12-28",
- "2021-12-29",
- "2021-12-30",
- "2021-12-31",
- "2022-01-01",
- "2022-01-02",
- "2022-01-03",
- "2022-01-04",
- "2022-01-05",
- "2022-01-06",
- "2022-01-07",
- "2022-01-08",
- "2022-01-09",
- "2022-01-10",
- "2022-01-11",
- "2022-01-12",
- "2022-01-13",
- "2022-01-14",
- "2022-01-15",
- "2022-01-16",
- "2022-01-17",
- "2022-01-18",
- "2022-01-19",
- "2022-01-20",
- "2022-01-21",
- "2022-01-22",
- "2022-01-23",
- "2022-01-24",
- "2022-01-25",
- "2022-01-26",
- "2022-01-27",
- "2022-01-28",
- "2022-01-29",
- "2022-01-30",
- "2022-01-31",
- "2022-02-01",
- "2022-02-02",
- "2022-02-03",
- "2022-02-04",
- "2022-02-05",
- "2022-02-06",
- "2022-02-07",
- "2022-02-08",
- "2022-02-09",
- "2022-02-10",
- "2022-02-11",
- "2022-02-12",
- "2022-02-13",
- "2022-02-14",
- "2022-02-15",
- "2022-02-16",
- "2022-02-17",
- "2022-02-18",
- "2022-02-19",
- "2022-02-20",
- "2022-02-21",
- "2022-02-22",
- "2022-02-23",
- "2022-02-24",
- "2022-02-25",
- "2022-02-26",
- "2022-02-27",
- "2022-02-28",
- "2022-03-01",
- "2022-03-02",
- "2022-03-03",
- "2022-03-04",
- "2022-03-05",
- "2022-03-06",
- "2022-03-07",
- "2022-03-08",
- "2022-03-09",
- "2022-03-10",
- "2022-03-11",
- "2022-03-12",
- "2022-03-13",
- "2022-03-14",
- "2022-03-15",
- "2022-03-16",
- "2022-03-17",
- "2022-03-18",
- "2022-03-19",
- "2022-03-20",
- "2022-03-21",
- "2022-03-22",
- "2022-03-23",
- "2022-03-24",
- "2022-03-25",
- "2022-03-26",
- "2022-03-27",
- "2022-03-28",
- "2022-03-29",
- "2022-03-30",
- "2022-03-31",
- "2022-04-01",
- "2022-04-02",
- "2022-04-03",
- "2022-04-04",
- "2022-04-05",
- "2022-04-06",
- "2022-04-07",
- "2022-04-08",
- "2022-04-09",
- "2022-04-10",
- "2022-04-11",
- "2022-04-12",
- "2022-04-13",
- "2022-04-14",
- "2022-04-15",
- "2022-04-16",
- "2022-04-17",
- "2022-04-18",
- "2022-04-19",
- "2022-04-20",
- "2022-04-21",
- "2022-04-22",
- "2022-04-23",
- "2022-04-24",
- "2022-04-25",
- "2022-04-26",
- "2022-04-27",
- "2022-04-28",
- "2022-04-29",
- "2022-04-30",
- "2022-05-01",
- "2022-05-02",
- "2022-05-03",
- "2022-05-04",
- "2022-05-05",
- "2022-05-06",
- "2022-05-07",
- "2022-05-08",
- "2022-05-09",
- "2022-05-10",
- "2022-05-11",
- "2022-05-12",
- "2022-05-13",
- "2022-05-14",
- "2022-05-15",
- "2022-05-16",
- "2022-05-17",
- "2022-05-18",
- "2022-05-19",
- "2022-05-20",
- "2022-05-21",
- "2022-05-22",
- "2022-05-23",
- "2022-05-24",
- "2022-05-25",
- "2022-05-26",
- "2022-05-27",
- "2022-05-28",
- "2022-05-29",
- "2022-05-30",
- "2022-05-31",
- "2022-06-01",
- "2022-06-02",
- "2022-06-03",
- "2022-06-04",
- "2022-06-05",
- "2022-06-06",
- "2022-06-07",
- "2022-06-08",
- "2022-06-09",
- "2022-06-10",
- "2022-06-11",
- "2022-06-12",
- "2022-06-13",
- "2022-06-14",
- "2022-06-15",
- "2022-06-16",
- "2022-06-17",
- "2022-06-18",
- "2022-06-19",
- "2022-06-20",
- "2022-06-21",
- "2022-06-22",
- "2022-06-23",
- "2022-06-24",
- "2022-06-25",
- "2022-06-26",
- "2022-06-27",
- "2022-06-28",
- "2022-06-29",
- "2022-06-30",
- "2022-07-01",
- "2022-07-02",
- "2022-07-03",
- "2022-07-04",
- "2022-07-05",
- "2022-07-06",
- "2022-07-07",
- "2022-07-08",
- "2022-07-09",
- "2022-07-10",
- "2022-07-11",
- "2022-07-12",
- "2022-07-13",
- "2022-07-14",
- "2022-07-15",
- "2022-07-16",
- "2022-07-17",
- "2022-07-18",
- "2022-07-19",
- "2022-07-20",
- "2022-07-21",
- "2022-07-22",
- "2022-07-23",
- "2022-07-24",
- "2022-07-25",
- "2022-07-26",
- "2022-07-27",
- "2022-07-28",
- "2022-07-29",
- "2022-07-30",
- "2022-07-31",
- "2022-08-01",
- "2022-08-02",
- "2022-08-03",
- "2022-08-04",
- "2022-08-05",
- "2022-08-06",
- "2022-08-07",
- "2022-08-08",
- "2022-08-09",
- "2022-08-10",
- "2022-08-11",
- "2022-08-12",
- "2022-08-13",
- "2022-08-14",
- "2022-08-15",
- "2022-08-16",
- "2022-08-17",
- "2022-08-18",
- "2022-08-19",
- "2022-08-20",
- "2022-08-21",
- "2022-08-22",
- "2022-08-23",
- "2022-08-24",
- "2022-08-25",
- "2022-08-26",
- "2022-08-27",
- "2022-08-28",
- "2022-08-29",
- "2022-08-30",
- "2022-08-31",
- "2022-09-01",
- "2022-09-02",
- "2022-09-03",
- "2022-09-04",
- "2022-09-05",
- "2022-09-06",
- "2022-09-07",
- "2022-09-08",
- "2022-09-09",
- "2022-09-10",
- "2022-09-11",
- "2022-09-12",
- "2022-09-13",
- "2022-09-14",
- "2022-09-15",
- "2022-09-16",
- "2022-09-17",
- "2022-09-18",
- "2022-09-19",
- "2022-09-20",
- "2022-09-21",
- "2022-09-22",
- "2022-09-23",
- "2022-09-24",
- "2022-09-25",
- "2022-09-26",
- "2022-09-27",
- "2022-09-28",
- "2022-09-29",
- "2022-09-30",
- "2022-10-01",
- "2022-10-02",
- "2022-10-03",
- "2022-10-04",
- "2022-10-05",
- "2022-10-06",
- "2022-10-07",
- "2022-10-08",
- "2022-10-09",
- "2022-10-10",
- "2022-10-11",
- "2022-10-12",
- "2022-10-13",
- "2022-10-14",
- "2022-10-15",
- "2022-10-16",
- "2022-10-17",
- "2022-10-18",
- "2022-10-19",
- "2022-10-20",
- "2022-10-21",
- "2022-10-22",
- "2022-10-23",
- "2022-10-24",
- "2022-10-25",
- "2022-10-26",
- "2022-10-27",
- "2022-10-28",
- "2022-10-29",
- "2022-10-30",
- "2022-10-31",
- "2022-11-01",
- "2022-11-02",
- "2022-11-03",
- "2022-11-04",
- "2022-11-05",
- "2022-11-06",
- "2022-11-07",
- "2022-11-08",
- "2022-11-09",
- "2022-11-10",
- "2022-11-11",
- "2022-11-12",
- "2022-11-13",
- "2022-11-14",
- "2022-11-15",
- "2022-11-16",
- "2022-11-17",
- "2022-11-18",
- "2022-11-19",
- "2022-11-20",
- "2022-11-21",
- "2022-11-22",
- "2022-11-23",
- "2022-11-24",
- "2022-11-25",
- "2022-11-26",
- "2022-11-27",
- "2022-11-28",
- "2022-11-29",
- "2022-11-30",
- "2022-12-01",
- "2022-12-02",
- "2022-12-03",
- "2022-12-04",
- "2022-12-05",
- "2022-12-06",
- "2022-12-07",
- "2022-12-08",
- "2022-12-09",
- "2022-12-10",
- "2022-12-11",
- "2022-12-12",
- "2022-12-13",
- "2022-12-14",
- "2022-12-15",
- "2022-12-16",
- "2022-12-17",
- "2022-12-18",
- "2022-12-19",
- "2022-12-20",
- "2022-12-21",
- "2022-12-22",
- "2022-12-23",
- "2022-12-24",
- "2022-12-25",
- "2022-12-26",
- "2022-12-27",
- "2022-12-28",
- "2022-12-29",
- "2022-12-30",
- "2022-12-31",
- "2023-01-01",
- "2023-01-02",
- "2023-01-03",
- "2023-01-04",
- "2023-01-05",
- "2023-01-06",
- "2023-01-07",
- "2023-01-08",
- "2023-01-09",
- "2023-01-10",
- "2023-01-11",
- "2023-01-12",
- "2023-01-13",
- "2023-01-14",
- "2023-01-15",
- "2023-01-16",
- "2023-01-17",
- "2023-01-18",
- "2023-01-19",
- "2023-01-20",
- "2023-01-21",
- "2023-01-22",
- "2023-01-23",
- "2023-01-24",
- "2023-01-25",
- "2023-01-26",
- "2023-01-27",
- "2023-01-28",
- "2023-01-29",
- "2023-01-30",
- "2023-01-31",
- "2023-02-01",
- "2023-02-02",
- "2023-02-03",
- "2023-02-04",
- "2023-02-05",
- "2023-02-06",
- "2023-02-07",
- "2023-02-08",
- "2023-02-09",
- "2023-02-10",
- "2023-02-11",
- "2023-02-12",
- "2023-02-13",
- "2023-02-14",
- "2023-02-15",
- "2023-02-16",
- "2023-02-17",
- "2023-02-18",
- "2023-02-19",
- "2023-02-20",
- "2023-02-21",
- "2023-02-22",
- "2023-02-23",
- "2023-02-24",
- "2023-02-25",
- "2023-02-26",
- "2023-02-27",
- "2023-02-28",
- "2023-03-01",
- "2023-03-02",
- "2023-03-03",
- "2023-03-04",
- "2023-03-05",
- "2023-03-06",
- "2023-03-07",
- "2023-03-08",
- "2023-03-09",
- "2023-03-10",
- "2023-03-11",
- "2023-03-12",
- "2023-03-13",
- "2023-03-14",
- "2023-03-15",
- "2023-03-16",
- "2023-03-17",
- "2023-03-18",
- "2023-03-19",
- "2023-03-20",
- "2023-03-21",
- "2023-03-22",
- "2023-03-23",
- "2023-03-24",
- "2023-03-25",
- "2023-03-26",
- "2023-03-27",
- "2023-03-28",
- "2023-03-29",
- "2023-03-30",
- "2023-03-31",
- "2023-04-01",
- "2023-04-02",
- "2023-04-03",
- "2023-04-04",
- "2023-04-05",
- "2023-04-06",
- "2023-04-07",
- "2023-04-08",
- "2023-04-09",
- "2023-04-10",
- "2023-04-11",
- "2023-04-12",
- "2023-04-13",
- "2023-04-14",
- "2023-04-15",
- "2023-04-16",
- "2023-04-17",
- "2023-04-18",
- "2023-04-19",
- "2023-04-20",
- "2023-04-21",
- "2023-04-22",
- "2023-04-23",
- "2023-04-24",
- "2023-04-25",
- "2023-04-26",
- "2023-04-27",
- "2023-04-28",
- "2023-04-29",
- "2023-04-30",
- "2023-05-01",
- "2023-05-02",
- "2023-05-03",
- "2023-05-04",
- "2023-05-05",
- "2023-05-06",
- "2023-05-07",
- "2023-05-08",
- "2023-05-09",
- "2023-05-10",
- "2023-05-11",
- "2023-05-12",
- "2023-05-13",
- "2023-05-14",
- "2023-05-15",
- "2023-05-16",
- "2023-05-17",
- "2023-05-18",
- "2023-05-19",
- "2023-05-20",
- "2023-05-21",
- "2023-05-22",
- "2023-05-23",
- "2023-05-24",
- "2023-05-25",
- "2023-05-26",
- "2023-05-27",
- "2023-05-28",
- "2023-05-29",
- "2023-05-30",
- "2023-05-31",
- "2023-06-01",
- "2023-06-02",
- "2023-06-03",
- "2023-06-04",
- "2023-06-05",
- "2023-06-06",
- "2023-06-07",
- "2023-06-08",
- "2023-06-09",
- "2023-06-10",
- "2023-06-11",
- "2023-06-12",
- "2023-06-13",
- "2023-06-14",
- "2023-06-15",
- "2023-06-16",
- "2023-06-17",
- "2023-06-18",
- "2023-06-19",
- "2023-06-20",
- "2023-06-21",
- "2023-06-22",
- "2023-06-23",
- "2023-06-24",
- "2023-06-25",
- "2023-06-26",
- "2023-06-27",
- "2023-06-28",
- "2023-06-29",
- "2023-06-30",
- "2023-07-01",
- "2023-07-02",
- "2023-07-03",
- "2023-07-04",
- "2023-07-05",
- "2023-07-06",
- "2023-07-07",
- "2023-07-08",
- "2023-07-09",
- "2023-07-10",
- "2023-07-11",
- "2023-07-12",
- "2023-07-13",
- "2023-07-14",
- "2023-07-15",
- "2023-07-16",
- "2023-07-17",
- "2023-07-18",
- "2023-07-19",
- "2023-07-20",
- "2023-07-21",
- "2023-07-22",
- "2023-07-23",
- "2023-07-24",
- "2023-07-25",
- "2023-07-26",
- "2023-07-27",
- "2023-07-28",
- "2023-07-29",
- "2023-07-30",
- "2023-07-31",
- "2023-08-01",
- "2023-08-02",
- "2023-08-03",
- "2023-08-04",
- "2023-08-05",
- "2023-08-06",
- "2023-08-07",
- "2023-08-08",
- "2023-08-09",
- "2023-08-10",
- "2023-08-11",
- "2023-08-12",
- "2023-08-13",
- "2023-08-14",
- "2023-08-15",
- "2023-08-16",
- "2023-08-17",
- "2023-08-18",
- "2023-08-19",
- "2023-08-20",
- "2023-08-21",
- "2023-08-22",
- "2023-08-23",
- "2023-08-24",
- "2023-08-25",
- "2023-08-26",
- "2023-08-27",
- "2023-08-28",
- "2023-08-29",
- "2023-08-30",
- "2023-08-31",
- "2023-09-01",
- "2023-09-02",
- "2023-09-03",
- "2023-09-04",
- "2023-09-05",
- "2023-09-06",
- "2023-09-07",
- "2023-09-08",
- "2023-09-09",
- "2023-09-10",
- "2023-09-11",
- "2023-09-12",
- "2023-09-13",
- "2023-09-14",
- "2023-09-15",
- "2023-09-16",
- "2023-09-17",
- "2023-09-18",
- "2023-09-19",
- "2023-09-20",
- "2023-09-21",
- "2023-09-22",
- "2023-09-23",
- "2023-09-24",
- "2023-09-25",
- "2023-09-26",
- "2023-09-27",
- "2023-09-28",
- "2023-09-29",
- "2023-09-30",
- "2023-10-01",
- "2023-10-02",
- "2023-10-03",
- "2023-10-04",
- "2023-10-05",
- "2023-10-06",
- "2023-10-07",
- "2023-10-08",
- "2023-10-09",
- "2023-10-10",
- "2023-10-11",
- "2023-10-12",
- "2023-10-13",
- "2023-10-14",
- "2023-10-15",
- "2023-10-16",
- "2023-10-17",
- "2023-10-18",
- "2023-10-19",
- "2023-10-20",
- "2023-10-21",
- "2023-10-22",
- "2023-10-23",
- "2023-10-24",
- "2023-10-25",
- "2023-10-26",
- "2023-10-27",
- "2023-10-28",
- "2023-10-29",
- "2023-10-30",
- "2023-10-31",
- "2023-11-01",
- "2023-11-02",
- "2023-11-03",
- "2023-11-04",
- "2023-11-05",
- "2023-11-06",
- "2023-11-07",
- "2023-11-08",
- "2023-11-09",
- "2023-11-10",
- "2023-11-11",
- "2023-11-12",
- "2023-11-13",
- "2023-11-14",
- "2023-11-15",
- "2023-11-16",
- "2023-11-17",
- "2023-11-18",
- "2023-11-19",
- "2023-11-20",
- "2023-11-21",
- "2023-11-22",
- "2023-11-23",
- "2023-11-24",
- "2023-11-25",
- "2023-11-26",
- "2023-11-27"
- ],
- "AWS_VIS_RELHUMIDITY1000HPA": [
- "1959-01-01",
- "1959-02-01",
- "1959-03-01",
- "1959-04-01",
- "1959-05-01",
- "1959-06-01",
- "1959-07-01",
- "1959-08-01",
- "1959-09-01",
- "1959-10-01",
- "1959-11-01",
- "1959-12-01",
- "1960-01-01",
- "1960-02-01",
- "1960-03-01",
- "1960-04-01",
- "1960-05-01",
- "1960-06-01",
- "1960-07-01",
- "1960-08-01",
- "1960-09-01",
- "1960-10-01",
- "1960-11-01",
- "1960-12-01",
- "1961-01-01",
- "1961-02-01",
- "1961-03-01",
- "1961-04-01",
- "1961-05-01",
- "1961-06-01",
- "1961-07-01",
- "1961-08-01",
- "1961-09-01",
- "1961-10-01",
- "1961-11-01",
- "1961-12-01",
- "1962-01-01",
- "1962-02-01",
- "1962-03-01",
- "1962-04-01",
- "1962-05-01",
- "1962-06-01",
- "1962-07-01",
- "1962-08-01",
- "1962-09-01",
- "1962-10-01",
- "1962-11-01",
- "1962-12-01",
- "1963-01-01",
- "1963-02-01",
- "1963-03-01",
- "1963-04-01",
- "1963-05-01",
- "1963-06-01",
- "1963-07-01",
- "1963-08-01",
- "1963-09-01",
- "1963-10-01",
- "1963-11-01",
- "1963-12-01",
- "1964-01-01",
- "1964-02-01",
- "1964-03-01",
- "1964-04-01",
- "1964-05-01",
- "1964-06-01",
- "1964-07-01",
- "1964-08-01",
- "1964-09-01",
- "1964-10-01",
- "1964-11-01",
- "1964-12-01",
- "1965-01-01",
- "1965-02-01",
- "1965-03-01",
- "1965-04-01",
- "1965-05-01",
- "1965-06-01",
- "1965-07-01",
- "1965-08-01",
- "1965-09-01",
- "1965-10-01",
- "1965-11-01",
- "1965-12-01",
- "1966-01-01",
- "1966-02-01",
- "1966-03-01",
- "1966-04-01",
- "1966-05-01",
- "1966-06-01",
- "1966-07-01",
- "1966-08-01",
- "1966-09-01",
- "1966-10-01",
- "1966-11-01",
- "1966-12-01",
- "1967-01-01",
- "1967-02-01",
- "1967-03-01",
- "1967-04-01",
- "1967-05-01",
- "1967-06-01",
- "1967-07-01",
- "1967-08-01",
- "1967-09-01",
- "1967-10-01",
- "1967-11-01",
- "1967-12-01",
- "1968-01-01",
- "1968-02-01",
- "1968-03-01",
- "1968-04-01",
- "1968-05-01",
- "1968-06-01",
- "1968-07-01",
- "1968-08-01",
- "1968-09-01",
- "1968-10-01",
- "1968-11-01",
- "1968-12-01",
- "1969-01-01",
- "1969-02-01",
- "1969-03-01",
- "1969-04-01",
- "1969-05-01",
- "1969-06-01",
- "1969-07-01",
- "1969-08-01",
- "1969-09-01",
- "1969-10-01",
- "1969-11-01",
- "1969-12-01",
- "1970-01-01",
- "1970-02-01",
- "1970-03-01",
- "1970-04-01",
- "1970-05-01",
- "1970-06-01",
- "1970-07-01",
- "1970-08-01",
- "1970-09-01",
- "1970-10-01",
- "1970-11-01",
- "1970-12-01",
- "1971-01-01",
- "1971-02-01",
- "1971-03-01",
- "1971-04-01",
- "1971-05-01",
- "1971-06-01",
- "1971-07-01",
- "1971-08-01",
- "1971-09-01",
- "1971-10-01",
- "1971-11-01",
- "1971-12-01",
- "1972-01-01",
- "1972-02-01",
- "1972-03-01",
- "1972-04-01",
- "1972-05-01",
- "1972-06-01",
- "1972-07-01",
- "1972-08-01",
- "1972-09-01",
- "1972-10-01",
- "1972-11-01",
- "1972-12-01",
- "1973-01-01",
- "1973-02-01",
- "1973-03-01",
- "1973-04-01",
- "1973-05-01",
- "1973-06-01",
- "1973-07-01",
- "1973-08-01",
- "1973-09-01",
- "1973-10-01",
- "1973-11-01",
- "1973-12-01",
- "1974-01-01",
- "1974-02-01",
- "1974-03-01",
- "1974-04-01",
- "1974-05-01",
- "1974-06-01",
- "1974-07-01",
- "1974-08-01",
- "1974-09-01",
- "1974-10-01",
- "1974-11-01",
- "1974-12-01",
- "1975-01-01",
- "1975-02-01",
- "1975-03-01",
- "1975-04-01",
- "1975-05-01",
- "1975-06-01",
- "1975-07-01",
- "1975-08-01",
- "1975-09-01",
- "1975-10-01",
- "1975-11-01",
- "1975-12-01",
- "1976-01-01",
- "1976-02-01",
- "1976-03-01",
- "1976-04-01",
- "1976-05-01",
- "1976-06-01",
- "1976-07-01",
- "1976-08-01",
- "1976-09-01",
- "1976-10-01",
- "1976-11-01",
- "1976-12-01",
- "1977-01-01",
- "1977-02-01",
- "1977-03-01",
- "1977-04-01",
- "1977-05-01",
- "1977-06-01",
- "1977-07-01",
- "1977-08-01",
- "1977-09-01",
- "1977-10-01",
- "1977-11-01",
- "1977-12-01",
- "1978-01-01",
- "1978-02-01",
- "1978-03-01",
- "1978-04-01",
- "1978-05-01",
- "1978-06-01",
- "1978-07-01",
- "1978-08-01",
- "1978-09-01",
- "1978-10-01",
- "1978-11-01",
- "1978-12-01",
- "1979-01-01",
- "1979-02-01",
- "1979-03-01",
- "1979-04-01",
- "1979-05-01",
- "1979-06-01",
- "1979-07-01",
- "1979-08-01",
- "1979-09-01",
- "1979-10-01",
- "1979-11-01",
- "1979-12-01",
- "1980-01-01",
- "1980-02-01",
- "1980-03-01",
- "1980-04-01",
- "1980-05-01",
- "1980-06-01",
- "1980-07-01",
- "1980-08-01",
- "1980-09-01",
- "1980-10-01",
- "1980-11-01",
- "1980-12-01",
- "1981-01-01",
- "1981-02-01",
- "1981-03-01",
- "1981-04-01",
- "1981-05-01",
- "1981-06-01",
- "1981-07-01",
- "1981-08-01",
- "1981-09-01",
- "1981-10-01",
- "1981-11-01",
- "1981-12-01",
- "1982-01-01",
- "1982-02-01",
- "1982-03-01",
- "1982-04-01",
- "1982-05-01",
- "1982-06-01",
- "1982-07-01",
- "1982-08-01",
- "1982-09-01",
- "1982-10-01",
- "1982-11-01",
- "1982-12-01",
- "1983-01-01",
- "1983-02-01",
- "1983-03-01",
- "1983-04-01",
- "1983-05-01",
- "1983-06-01",
- "1983-07-01",
- "1983-08-01",
- "1983-09-01",
- "1983-10-01",
- "1983-11-01",
- "1983-12-01",
- "1984-01-01",
- "1984-02-01",
- "1984-03-01",
- "1984-04-01",
- "1984-05-01",
- "1984-06-01",
- "1984-07-01",
- "1984-08-01",
- "1984-09-01",
- "1984-10-01",
- "1984-11-01",
- "1984-12-01",
- "1985-01-01",
- "1985-02-01",
- "1985-03-01",
- "1985-04-01",
- "1985-05-01",
- "1985-06-01",
- "1985-07-01",
- "1985-08-01",
- "1985-09-01",
- "1985-10-01",
- "1985-11-01",
- "1985-12-01",
- "1986-01-01",
- "1986-02-01",
- "1986-03-01",
- "1986-04-01",
- "1986-05-01",
- "1986-06-01",
- "1986-07-01",
- "1986-08-01",
- "1986-09-01",
- "1986-10-01",
- "1986-11-01",
- "1986-12-01",
- "1987-01-01",
- "1987-02-01",
- "1987-03-01",
- "1987-04-01",
- "1987-05-01",
- "1987-06-01",
- "1987-07-01",
- "1987-08-01",
- "1987-09-01",
- "1987-10-01",
- "1987-11-01",
- "1987-12-01",
- "1988-01-01",
- "1988-02-01",
- "1988-03-01",
- "1988-04-01",
- "1988-05-01",
- "1988-06-01",
- "1988-07-01",
- "1988-08-01",
- "1988-09-01",
- "1988-10-01",
- "1988-11-01",
- "1988-12-01",
- "1989-01-01",
- "1989-02-01",
- "1989-03-01",
- "1989-04-01",
- "1989-05-01",
- "1989-06-01",
- "1989-07-01",
- "1989-08-01",
- "1989-09-01",
- "1989-10-01",
- "1989-11-01",
- "1989-12-01",
- "1990-01-01",
- "1990-02-01",
- "1990-03-01",
- "1990-04-01",
- "1990-05-01",
- "1990-06-01",
- "1990-07-01",
- "1990-08-01",
- "1990-09-01",
- "1990-10-01",
- "1990-11-01",
- "1990-12-01",
- "1991-01-01",
- "1991-02-01",
- "1991-03-01",
- "1991-04-01",
- "1991-05-01",
- "1991-06-01",
- "1991-07-01",
- "1991-08-01",
- "1991-09-01",
- "1991-10-01",
- "1991-11-01",
- "1991-12-01",
- "1992-01-01",
- "1992-02-01",
- "1992-03-01",
- "1992-04-01",
- "1992-05-01",
- "1992-06-01",
- "1992-07-01",
- "1992-08-01",
- "1992-09-01",
- "1992-10-01",
- "1992-11-01",
- "1992-12-01",
- "1993-01-01",
- "1993-02-01",
- "1993-03-01",
- "1993-04-01",
- "1993-05-01",
- "1993-06-01",
- "1993-07-01",
- "1993-08-01",
- "1993-09-01",
- "1993-10-01",
- "1993-11-01",
- "1993-12-01",
- "1994-01-01",
- "1994-02-01",
- "1994-03-01",
- "1994-04-01",
- "1994-05-01",
- "1994-06-01",
- "1994-07-01",
- "1994-08-01",
- "1994-09-01",
- "1994-10-01",
- "1994-11-01",
- "1994-12-01",
- "1995-01-01",
- "1995-02-01",
- "1995-03-01",
- "1995-04-01",
- "1995-05-01",
- "1995-06-01",
- "1995-07-01",
- "1995-08-01",
- "1995-09-01",
- "1995-10-01",
- "1995-11-01",
- "1995-12-01",
- "1996-01-01",
- "1996-02-01",
- "1996-03-01",
- "1996-04-01",
- "1996-05-01",
- "1996-06-01",
- "1996-07-01",
- "1996-08-01",
- "1996-09-01",
- "1996-10-01",
- "1996-11-01",
- "1996-12-01",
- "1997-01-01",
- "1997-02-01",
- "1997-03-01",
- "1997-04-01",
- "1997-05-01",
- "1997-06-01",
- "1997-07-01",
- "1997-08-01",
- "1997-09-01",
- "1997-10-01",
- "1997-11-01",
- "1997-12-01",
- "1998-01-01",
- "1998-02-01",
- "1998-03-01",
- "1998-04-01",
- "1998-05-01",
- "1998-06-01",
- "1998-07-01",
- "1998-08-01",
- "1998-09-01",
- "1998-10-01",
- "1998-11-01",
- "1998-12-01",
- "1999-01-01",
- "1999-02-01",
- "1999-03-01",
- "1999-04-01",
- "1999-05-01",
- "1999-06-01",
- "1999-07-01",
- "1999-08-01",
- "1999-09-01",
- "1999-10-01",
- "1999-11-01",
- "1999-12-01",
- "2000-01-01",
- "2000-02-01",
- "2000-03-01",
- "2000-04-01",
- "2000-05-01",
- "2000-06-01",
- "2000-07-01",
- "2000-08-01",
- "2000-09-01",
- "2000-10-01",
- "2000-11-01",
- "2000-12-01",
- "2001-01-01",
- "2001-02-01",
- "2001-03-01",
- "2001-04-01",
- "2001-05-01",
- "2001-06-01",
- "2001-07-01",
- "2001-08-01",
- "2001-09-01",
- "2001-10-01",
- "2001-11-01",
- "2001-12-01",
- "2002-01-01",
- "2002-02-01",
- "2002-03-01",
- "2002-04-01",
- "2002-05-01",
- "2002-06-01",
- "2002-07-01",
- "2002-08-01",
- "2002-09-01",
- "2002-10-01",
- "2002-11-01",
- "2002-12-01",
- "2003-01-01",
- "2003-02-01",
- "2003-03-01",
- "2003-04-01",
- "2003-05-01",
- "2003-06-01",
- "2003-07-01",
- "2003-08-01",
- "2003-09-01",
- "2003-10-01",
- "2003-11-01",
- "2003-12-01",
- "2004-01-01",
- "2004-02-01",
- "2004-03-01",
- "2004-04-01",
- "2004-05-01",
- "2004-06-01",
- "2004-07-01",
- "2004-08-01",
- "2004-09-01",
- "2004-10-01",
- "2004-11-01",
- "2004-12-01",
- "2005-01-01",
- "2005-02-01",
- "2005-03-01",
- "2005-04-01",
- "2005-05-01",
- "2005-06-01",
- "2005-07-01",
- "2005-08-01",
- "2005-09-01",
- "2005-10-01",
- "2005-11-01",
- "2005-12-01",
- "2006-01-01",
- "2006-02-01",
- "2006-03-01",
- "2006-04-01",
- "2006-05-01",
- "2006-06-01",
- "2006-07-01",
- "2006-08-01",
- "2006-09-01",
- "2006-10-01",
- "2006-11-01",
- "2006-12-01",
- "2007-01-01",
- "2007-02-01",
- "2007-03-01",
- "2007-04-01",
- "2007-05-01",
- "2007-06-01",
- "2007-07-01",
- "2007-08-01",
- "2007-09-01",
- "2007-10-01",
- "2007-11-01",
- "2007-12-01",
- "2008-01-01",
- "2008-02-01",
- "2008-03-01",
- "2008-04-01",
- "2008-05-01",
- "2008-06-01",
- "2008-07-01",
- "2008-08-01",
- "2008-09-01",
- "2008-10-01",
- "2008-11-01",
- "2008-12-01",
- "2009-01-01",
- "2009-02-01",
- "2009-03-01",
- "2009-04-01",
- "2009-05-01",
- "2009-06-01",
- "2009-07-01",
- "2009-08-01",
- "2009-09-01",
- "2009-10-01",
- "2009-11-01",
- "2009-12-01",
- "2010-01-01",
- "2010-02-01",
- "2010-03-01",
- "2010-04-01",
- "2010-05-01",
- "2010-06-01",
- "2010-07-01",
- "2010-08-01",
- "2010-09-01",
- "2010-10-01",
- "2010-11-01",
- "2010-12-01",
- "2011-01-01",
- "2011-02-01",
- "2011-03-01",
- "2011-04-01",
- "2011-05-01",
- "2011-06-01",
- "2011-07-01",
- "2011-08-01",
- "2011-09-01",
- "2011-10-01",
- "2011-11-01",
- "2011-12-01",
- "2012-01-01",
- "2012-02-01",
- "2012-03-01",
- "2012-04-01",
- "2012-05-01",
- "2012-06-01",
- "2012-07-01",
- "2012-08-01",
- "2012-09-01",
- "2012-10-01",
- "2012-11-01",
- "2012-12-01",
- "2013-01-01",
- "2013-02-01",
- "2013-03-01",
- "2013-04-01",
- "2013-05-01",
- "2013-06-01",
- "2013-07-01",
- "2013-08-01",
- "2013-09-01",
- "2013-10-01",
- "2013-11-01",
- "2013-12-01",
- "2014-01-01",
- "2014-02-01",
- "2014-03-01",
- "2014-04-01",
- "2014-05-01",
- "2014-06-01",
- "2014-07-01",
- "2014-08-01",
- "2014-09-01",
- "2014-10-01",
- "2014-11-01",
- "2014-12-01",
- "2015-01-01",
- "2015-02-01",
- "2015-03-01",
- "2015-04-01",
- "2015-05-01",
- "2015-06-01",
- "2015-07-01",
- "2015-08-01",
- "2015-09-01",
- "2015-10-01",
- "2015-11-01",
- "2015-12-01",
- "2016-01-01",
- "2016-02-01",
- "2016-03-01",
- "2016-04-01",
- "2016-05-01",
- "2016-06-01",
- "2016-07-01",
- "2016-08-01",
- "2016-09-01",
- "2016-10-01",
- "2016-11-01",
- "2016-12-01",
- "2017-01-01",
- "2017-02-01",
- "2017-03-01",
- "2017-04-01",
- "2017-05-01",
- "2017-06-01",
- "2017-07-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2017-12-01",
- "2018-01-01",
- "2018-02-01",
- "2018-03-01",
- "2018-04-01",
- "2018-05-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-09-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-01-01",
- "2019-02-01",
- "2019-03-01",
- "2019-04-01",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-10-01",
- "2019-11-01",
- "2019-12-01",
- "2020-01-01",
- "2020-02-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-10-01",
- "2020-11-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-03-01",
- "2021-04-01",
- "2021-05-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-06-01",
- "2022-07-01",
- "2022-08-01",
- "2022-09-01",
- "2022-10-01",
- "2022-11-01",
- "2022-12-01",
- "2023-01-01",
- "2023-02-01",
- "2023-03-01",
- "2023-04-01",
- "2023-05-01",
- "2023-06-01",
- "2023-07-01"
- ],
- "AWS_VIS_SO2_DAILY_DATA": [
- "2018-09-05",
- "2021-09-19",
- "2021-09-20",
- "2021-09-21",
- "2021-09-22",
- "2021-09-23",
- "2021-09-24",
- "2021-09-25",
- "2021-09-26",
- "2021-09-27",
- "2021-09-28",
- "2021-09-29",
- "2021-09-30",
- "2021-10-01",
- "2021-10-02",
- "2021-10-03",
- "2021-10-04",
- "2021-10-05",
- "2021-10-06",
- "2021-10-07",
- "2021-10-08",
- "2021-10-09",
- "2021-10-10",
- "2021-10-11",
- "2021-10-12",
- "2021-10-13",
- "2021-10-14",
- "2021-10-15",
- "2021-10-16",
- "2021-10-17",
- "2021-10-18",
- "2021-10-19",
- "2021-10-20",
- "2021-10-21",
- "2021-10-22",
- "2021-10-23",
- "2021-10-24",
- "2021-10-25",
- "2021-10-26",
- "2021-10-27",
- "2021-10-28",
- "2021-10-29",
- "2021-10-30",
- "2021-10-31",
- "2021-11-01",
- "2021-11-02",
- "2021-11-03",
- "2021-11-04",
- "2021-11-05",
- "2021-11-06",
- "2021-11-07",
- "2021-11-08",
- "2021-11-09",
- "2021-11-10",
- "2021-11-11",
- "2021-11-12",
- "2021-11-13",
- "2021-11-14",
- "2021-11-15",
- "2021-11-16",
- "2021-11-17",
- "2021-11-18",
- "2021-11-19",
- "2021-11-20",
- "2021-11-21",
- "2021-11-22",
- "2021-11-23",
- "2021-11-24",
- "2021-11-25",
- "2021-11-26",
- "2021-11-27",
- "2021-11-28",
- "2021-11-29",
- "2021-11-30",
- "2021-12-01",
- "2021-12-02",
- "2021-12-03",
- "2021-12-04",
- "2021-12-05",
- "2021-12-06",
- "2021-12-07",
- "2021-12-08",
- "2021-12-09",
- "2021-12-10",
- "2021-12-11",
- "2021-12-12",
- "2021-12-13",
- "2021-12-14",
- "2021-12-15",
- "2021-12-16",
- "2021-12-17",
- "2021-12-18",
- "2021-12-19",
- "2021-12-20",
- "2021-12-21",
- "2021-12-22",
- "2021-12-23",
- "2021-12-24",
- "2021-12-25",
- "2021-12-26",
- "2021-12-27",
- "2021-12-28",
- "2021-12-29",
- "2021-12-30",
- "2021-12-31",
- "2022-01-01",
- "2022-01-02",
- "2022-01-03",
- "2022-01-04",
- "2022-01-05",
- "2022-01-06",
- "2022-01-07",
- "2022-01-08",
- "2022-01-09",
- "2022-01-10",
- "2022-01-11",
- "2022-01-12",
- "2022-01-13",
- "2022-01-14",
- "2022-01-15",
- "2022-01-16",
- "2022-01-17",
- "2022-01-18",
- "2022-01-19",
- "2022-01-20",
- "2022-01-21",
- "2022-01-22",
- "2022-01-23",
- "2022-01-24",
- "2022-01-25",
- "2022-01-26",
- "2022-01-27",
- "2022-01-28",
- "2022-01-29",
- "2022-01-30",
- "2022-01-31",
- "2022-02-01",
- "2022-02-02",
- "2022-02-03",
- "2022-02-04",
- "2022-02-05",
- "2022-02-06",
- "2022-02-07",
- "2022-02-08",
- "2022-02-09",
- "2022-02-10",
- "2022-02-11",
- "2022-02-12",
- "2022-02-13",
- "2022-02-14",
- "2022-02-15",
- "2022-02-16",
- "2022-02-17",
- "2022-02-18",
- "2022-02-19",
- "2022-02-20",
- "2022-02-21",
- "2022-02-22",
- "2022-02-23",
- "2022-02-24",
- "2022-02-25",
- "2022-02-26",
- "2022-02-27",
- "2022-02-28",
- "2022-03-01",
- "2022-03-02",
- "2022-03-03",
- "2022-03-04",
- "2022-03-05",
- "2022-03-06",
- "2022-03-07",
- "2022-03-08",
- "2022-03-09",
- "2022-03-10",
- "2022-03-11",
- "2022-03-12",
- "2022-03-13",
- "2022-03-14",
- "2022-03-15",
- "2022-03-16",
- "2022-03-17",
- "2022-03-18",
- "2022-03-19",
- "2022-03-20",
- "2022-03-21",
- "2022-03-22",
- "2022-03-23",
- "2022-03-24",
- "2022-03-25",
- "2022-03-26",
- "2022-03-27",
- "2022-03-28",
- "2022-03-29",
- "2022-03-30",
- "2022-03-31",
- "2022-04-01",
- "2022-04-02",
- "2022-04-03",
- "2022-04-04",
- "2022-04-05",
- "2022-04-06",
- "2022-04-07",
- "2022-04-08",
- "2022-04-09",
- "2022-04-10",
- "2022-04-11",
- "2022-04-12",
- "2022-04-13",
- "2022-04-14",
- "2022-04-15",
- "2022-04-16",
- "2022-04-17",
- "2022-04-18",
- "2022-04-19",
- "2022-04-20",
- "2022-04-21",
- "2022-04-22",
- "2022-04-23",
- "2022-04-24",
- "2022-04-25",
- "2022-04-26",
- "2022-04-27",
- "2022-04-28",
- "2022-04-29",
- "2022-04-30",
- "2022-05-01",
- "2022-05-02",
- "2022-05-03",
- "2022-05-04",
- "2022-05-05",
- "2022-05-06",
- "2022-05-07",
- "2022-05-08",
- "2022-05-09",
- "2022-05-10",
- "2022-05-11",
- "2022-05-12",
- "2022-05-13",
- "2022-05-14",
- "2022-05-15",
- "2022-05-16",
- "2022-05-17",
- "2022-05-18",
- "2022-05-19",
- "2022-05-20",
- "2022-05-21",
- "2022-05-22",
- "2022-05-23",
- "2022-05-24",
- "2022-05-25",
- "2022-05-26",
- "2022-05-27",
- "2022-05-28",
- "2022-05-29",
- "2022-05-30",
- "2022-05-31",
- "2022-06-01",
- "2022-06-02",
- "2022-06-03",
- "2022-06-04",
- "2022-06-05",
- "2022-06-06",
- "2022-06-07",
- "2022-06-08",
- "2022-06-09",
- "2022-06-10",
- "2022-06-11",
- "2022-06-12",
- "2022-06-13",
- "2022-06-14",
- "2022-06-15",
- "2022-06-16",
- "2022-06-17",
- "2022-06-18",
- "2022-06-19",
- "2022-06-20",
- "2022-06-21",
- "2022-06-22",
- "2022-06-23",
- "2022-06-24",
- "2022-06-25",
- "2022-06-26",
- "2022-06-27",
- "2022-06-28",
- "2022-06-29",
- "2022-06-30",
- "2022-07-01",
- "2022-07-02",
- "2022-07-03",
- "2022-07-04",
- "2022-07-05",
- "2022-07-06",
- "2022-07-07",
- "2022-07-08",
- "2022-07-09",
- "2022-07-10",
- "2022-07-11",
- "2022-07-12",
- "2022-07-13",
- "2022-07-14",
- "2022-07-15",
- "2022-07-16",
- "2022-07-17",
- "2022-07-18",
- "2022-07-19",
- "2022-07-20",
- "2022-07-21",
- "2022-07-22",
- "2022-07-23",
- "2022-07-24",
- "2022-07-25",
- "2022-07-26",
- "2022-07-27",
- "2022-07-28",
- "2022-07-29",
- "2022-07-30",
- "2022-07-31",
- "2022-08-01",
- "2022-08-02",
- "2022-08-03",
- "2022-08-04",
- "2022-08-05",
- "2022-08-06",
- "2022-08-07",
- "2022-08-08",
- "2022-08-09",
- "2022-08-10",
- "2022-08-11",
- "2022-08-12",
- "2022-08-13",
- "2022-08-14",
- "2022-08-15",
- "2022-08-16",
- "2022-08-17",
- "2022-08-18",
- "2022-08-19",
- "2022-08-20",
- "2022-08-21",
- "2022-08-22",
- "2022-08-23",
- "2022-08-24",
- "2022-08-25",
- "2022-08-26",
- "2022-08-27",
- "2022-08-28",
- "2022-08-29",
- "2022-08-30",
- "2022-08-31",
- "2022-09-01",
- "2022-09-02",
- "2022-09-03",
- "2022-09-04",
- "2022-09-05",
- "2022-09-06",
- "2022-09-07",
- "2022-09-08",
- "2022-09-09",
- "2022-09-10",
- "2022-09-11",
- "2022-09-12",
- "2022-09-13",
- "2022-09-14",
- "2022-09-15",
- "2022-09-16",
- "2022-09-17",
- "2022-09-18",
- "2022-09-19",
- "2022-09-20",
- "2022-09-21",
- "2022-09-22",
- "2022-09-23",
- "2022-09-24",
- "2022-09-25",
- "2022-09-26",
- "2022-09-27",
- "2022-09-28",
- "2022-09-29",
- "2022-09-30",
- "2022-10-01",
- "2022-10-02",
- "2022-10-03",
- "2022-10-04",
- "2022-10-05",
- "2022-10-06",
- "2022-10-07",
- "2022-10-08",
- "2022-10-09",
- "2022-10-10",
- "2022-10-11",
- "2022-10-12",
- "2022-10-13",
- "2022-10-14",
- "2022-10-15",
- "2022-10-16",
- "2022-10-17",
- "2022-10-18",
- "2022-10-19",
- "2022-10-20",
- "2022-10-21",
- "2022-10-22",
- "2022-10-23",
- "2022-10-24",
- "2022-10-25",
- "2022-10-26",
- "2022-10-27",
- "2022-10-28",
- "2022-10-29",
- "2022-10-30",
- "2022-10-31",
- "2022-11-01",
- "2022-11-02",
- "2022-11-03",
- "2022-11-04",
- "2022-11-05",
- "2022-11-06",
- "2022-11-07",
- "2022-11-08",
- "2022-11-09",
- "2022-11-10",
- "2022-11-11",
- "2022-11-12",
- "2022-11-13",
- "2022-11-14",
- "2022-11-15",
- "2022-11-16",
- "2022-11-17",
- "2022-11-18",
- "2022-11-19",
- "2022-11-20",
- "2022-11-21",
- "2022-11-22",
- "2022-11-23",
- "2022-11-24",
- "2022-11-25",
- "2022-11-26",
- "2022-11-27",
- "2022-11-28",
- "2022-11-29",
- "2022-11-30",
- "2022-12-01",
- "2022-12-02",
- "2022-12-03",
- "2022-12-04",
- "2022-12-05",
- "2022-12-06",
- "2022-12-07",
- "2022-12-08",
- "2022-12-09",
- "2022-12-10",
- "2022-12-11",
- "2022-12-12",
- "2022-12-13",
- "2022-12-14",
- "2022-12-15",
- "2022-12-16",
- "2022-12-17",
- "2022-12-18",
- "2022-12-19",
- "2022-12-20",
- "2022-12-21",
- "2022-12-22",
- "2022-12-23",
- "2022-12-24",
- "2022-12-25",
- "2022-12-26",
- "2022-12-27",
- "2022-12-28",
- "2022-12-29",
- "2022-12-30",
- "2022-12-31",
- "2023-01-01",
- "2023-01-02",
- "2023-01-03",
- "2023-01-04",
- "2023-01-05",
- "2023-01-06",
- "2023-01-07",
- "2023-01-08",
- "2023-01-09",
- "2023-01-10",
- "2023-01-11",
- "2023-01-12",
- "2023-01-13",
- "2023-01-14",
- "2023-01-15",
- "2023-01-16",
- "2023-01-17",
- "2023-01-18",
- "2023-01-19",
- "2023-01-20",
- "2023-01-21",
- "2023-01-22",
- "2023-01-23",
- "2023-01-24",
- "2023-01-25",
- "2023-01-26",
- "2023-01-27",
- "2023-01-28",
- "2023-01-29",
- "2023-01-30",
- "2023-01-31",
- "2023-02-01",
- "2023-02-02",
- "2023-02-03",
- "2023-02-04",
- "2023-02-05",
- "2023-02-06",
- "2023-02-07",
- "2023-02-08",
- "2023-02-09",
- "2023-02-10",
- "2023-02-11",
- "2023-02-12",
- "2023-02-13",
- "2023-02-14",
- "2023-02-15",
- "2023-02-16",
- "2023-02-17",
- "2023-02-18",
- "2023-02-19",
- "2023-02-20",
- "2023-02-21",
- "2023-02-22",
- "2023-02-23",
- "2023-02-24",
- "2023-02-25",
- "2023-02-26",
- "2023-02-27",
- "2023-02-28",
- "2023-03-01",
- "2023-03-02",
- "2023-03-03",
- "2023-03-04",
- "2023-03-05",
- "2023-03-06",
- "2023-03-07",
- "2023-03-08",
- "2023-03-09",
- "2023-03-10",
- "2023-03-11",
- "2023-03-12",
- "2023-03-13",
- "2023-03-14",
- "2023-03-15",
- "2023-03-16",
- "2023-03-17",
- "2023-03-18",
- "2023-03-19",
- "2023-03-20",
- "2023-03-21",
- "2023-03-22",
- "2023-03-23",
- "2023-03-24",
- "2023-03-25",
- "2023-03-26",
- "2023-03-27",
- "2023-03-28",
- "2023-03-29",
- "2023-03-30",
- "2023-03-31",
- "2023-04-01",
- "2023-04-02",
- "2023-04-03",
- "2023-04-04",
- "2023-04-05",
- "2023-04-06",
- "2023-04-07",
- "2023-04-08",
- "2023-04-09",
- "2023-04-10",
- "2023-04-11",
- "2023-04-12",
- "2023-04-13",
- "2023-04-14",
- "2023-04-16",
- "2023-04-17",
- "2023-04-18",
- "2023-04-19",
- "2023-04-20",
- "2023-04-21",
- "2023-04-22",
- "2023-04-23",
- "2023-04-24",
- "2023-04-25",
- "2023-04-26",
- "2023-04-27",
- "2023-04-28",
- "2023-04-29",
- "2023-04-30",
- "2023-05-01",
- "2023-05-02",
- "2023-05-03",
- "2023-05-04",
- "2023-05-05",
- "2023-05-06",
- "2023-05-07",
- "2023-05-08",
- "2023-05-09",
- "2023-05-10",
- "2023-05-11",
- "2023-05-12",
- "2023-05-13",
- "2023-05-14",
- "2023-05-15",
- "2023-05-16",
- "2023-05-17",
- "2023-05-18",
- "2023-05-19",
- "2023-05-20",
- "2023-05-21",
- "2023-05-22",
- "2023-05-23",
- "2023-05-24",
- "2023-05-25",
- "2023-05-26",
- "2023-05-27",
- "2023-05-28",
- "2023-05-29",
- "2023-05-30",
- "2023-05-31",
- "2023-06-01",
- "2023-06-02",
- "2023-06-03",
- "2023-06-04",
- "2023-06-05",
- "2023-06-06",
- "2023-06-07",
- "2023-06-08",
- "2023-06-09",
- "2023-06-10",
- "2023-06-11",
- "2023-06-12",
- "2023-06-13",
- "2023-06-14",
- "2023-06-15",
- "2023-06-16",
- "2023-06-17",
- "2023-06-18",
- "2023-06-19",
- "2023-06-20",
- "2023-06-21",
- "2023-06-22",
- "2023-06-23",
- "2023-06-24",
- "2023-06-25",
- "2023-06-26",
- "2023-06-27",
- "2023-06-28",
- "2023-06-29",
- "2023-06-30",
- "2023-07-01",
- "2023-07-02",
- "2023-07-03",
- "2023-07-04",
- "2023-07-05",
- "2023-07-06",
- "2023-07-07",
- "2023-07-08",
- "2023-07-09",
- "2023-07-10",
- "2023-07-11",
- "2023-07-12",
- "2023-07-13",
- "2023-07-14",
- "2023-07-15",
- "2023-07-16",
- "2023-07-17",
- "2023-07-18",
- "2023-07-19",
- "2023-07-20",
- "2023-07-21",
- "2023-07-22",
- "2023-07-23",
- "2023-07-24",
- "2023-07-25",
- "2023-07-26",
- "2023-07-27",
- "2023-07-28",
- "2023-07-29",
- "2023-07-30",
- "2023-07-31",
- "2023-08-01",
- "2023-08-02",
- "2023-08-03",
- "2023-08-04",
- "2023-08-05",
- "2023-08-06",
- "2023-08-07",
- "2023-08-08",
- "2023-08-09",
- "2023-08-10",
- "2023-08-11",
- "2023-08-12",
- "2023-08-13",
- "2023-08-14",
- "2023-08-15",
- "2023-08-16",
- "2023-08-17",
- "2023-08-18",
- "2023-08-19",
- "2023-08-20",
- "2023-08-21",
- "2023-08-22",
- "2023-08-23",
- "2023-08-24",
- "2023-08-25",
- "2023-08-26",
- "2023-08-27",
- "2023-08-28",
- "2023-08-29",
- "2023-08-30",
- "2023-08-31",
- "2023-09-02",
- "2023-09-03",
- "2023-09-04",
- "2023-09-05",
- "2023-09-06",
- "2023-09-07",
- "2023-09-08",
- "2023-09-09",
- "2023-09-10",
- "2023-09-11",
- "2023-09-12",
- "2023-09-13",
- "2023-09-14",
- "2023-09-15",
- "2023-09-16",
- "2023-09-17",
- "2023-09-18",
- "2023-09-19",
- "2023-09-20",
- "2023-09-21",
- "2023-09-22",
- "2023-09-23",
- "2023-09-24",
- "2023-09-25",
- "2023-09-26",
- "2023-09-27",
- "2023-09-28",
- "2023-09-29",
- "2023-09-30",
- "2023-10-01",
- "2023-10-02",
- "2023-10-03",
- "2023-10-04",
- "2023-10-05",
- "2023-10-06",
- "2023-10-07",
- "2023-10-08",
- "2023-10-09",
- "2023-10-10",
- "2023-10-11",
- "2023-10-12",
- "2023-10-13",
- "2023-10-14",
- "2023-10-15",
- "2023-10-16",
- "2023-10-17",
- "2023-10-18",
- "2023-10-19",
- "2023-10-20",
- "2023-10-21",
- "2023-10-22",
- "2023-10-23",
- "2023-10-24",
- "2023-10-25",
- "2023-10-26",
- "2023-10-27",
- "2023-10-28",
- "2023-10-29",
- "2023-10-30",
- "2023-10-31",
- "2023-11-01",
- "2023-11-02",
- "2023-11-03",
- "2023-11-04",
- "2023-11-05",
- "2023-11-06",
- "2023-11-07",
- "2023-11-08",
- "2023-11-09",
- "2023-11-10",
- "2023-11-11",
- "2023-11-12",
- "2023-11-13",
- "2023-11-14",
- "2023-11-15",
- "2023-11-16",
- "2023-11-17",
- "2023-11-18",
- "2023-11-19",
- "2023-11-20",
- "2023-11-21",
- "2023-11-22",
- "2023-11-23",
- "2023-11-24",
- "2023-11-25",
- "2023-11-26",
- "2023-11-27",
- "2023-11-28",
- "2023-11-29"
- ],
- "AWS_VIS_SST_MAPS": [
- "2019-01-05",
- "2019-01-12",
- "2019-01-19",
- "2019-01-26",
- "2019-02-02",
- "2019-02-09",
- "2019-02-16",
- "2019-02-23",
- "2019-03-02",
- "2019-03-09",
- "2019-03-16",
- "2019-03-23",
- "2019-03-30",
- "2019-04-06",
- "2019-04-13",
- "2019-04-20",
- "2019-04-27",
- "2019-05-04",
- "2019-05-11",
- "2019-05-18",
- "2019-05-25",
- "2019-06-01",
- "2019-06-08",
- "2019-06-15",
- "2019-06-22",
- "2019-06-29",
- "2019-07-06",
- "2019-07-13",
- "2019-07-20",
- "2019-07-27",
- "2019-08-03",
- "2019-08-10",
- "2019-08-17",
- "2019-08-24",
- "2019-08-31",
- "2019-09-07",
- "2019-09-14",
- "2019-09-21",
- "2019-09-28",
- "2019-10-05",
- "2019-10-12",
- "2019-10-19",
- "2019-10-26",
- "2019-11-02",
- "2019-11-09",
- "2019-11-16",
- "2019-11-23",
- "2019-11-30",
- "2019-12-07",
- "2019-12-14",
- "2019-12-21",
- "2019-12-28",
- "2020-01-04",
- "2020-01-11",
- "2020-01-18",
- "2020-01-25",
- "2020-02-01",
- "2020-02-08",
- "2020-02-15",
- "2020-02-22",
- "2020-02-29",
- "2020-03-07",
- "2020-03-14",
- "2020-03-21",
- "2020-03-28",
- "2020-04-04",
- "2020-04-11",
- "2020-04-18",
- "2020-04-25",
- "2020-05-02",
- "2020-05-09",
- "2020-05-16",
- "2020-05-23",
- "2020-05-30",
- "2020-06-06",
- "2020-06-13",
- "2020-06-20",
- "2020-06-27",
- "2020-07-04",
- "2020-07-11",
- "2020-07-18",
- "2020-07-25",
- "2020-08-01",
- "2020-08-08",
- "2020-08-15",
- "2020-08-22",
- "2020-08-29",
- "2020-09-05",
- "2020-09-12",
- "2020-09-19",
- "2020-09-26",
- "2020-10-03",
- "2020-10-10",
- "2020-10-17",
- "2020-10-24",
- "2020-10-31",
- "2020-11-07",
- "2020-11-14",
- "2020-11-21",
- "2020-11-28",
- "2020-12-05",
- "2020-12-12",
- "2020-12-19",
- "2020-12-26",
- "2021-01-02",
- "2021-01-09",
- "2021-01-16",
- "2021-01-23",
- "2021-01-30",
- "2021-02-06",
- "2021-02-13",
- "2021-02-20",
- "2021-02-27",
- "2021-03-06",
- "2021-03-13",
- "2021-03-20",
- "2021-03-27",
- "2021-04-03",
- "2021-04-10",
- "2021-04-17",
- "2021-04-24",
- "2021-05-01",
- "2021-05-08",
- "2021-05-15",
- "2021-05-22",
- "2021-05-29",
- "2021-06-05",
- "2021-06-12",
- "2021-06-19",
- "2021-06-26",
- "2021-07-03",
- "2021-07-10",
- "2021-07-17",
- "2021-07-24",
- "2021-07-31",
- "2021-08-07",
- "2021-08-14",
- "2021-08-21",
- "2021-08-28",
- "2021-09-04",
- "2021-09-11",
- "2021-09-18",
- "2021-09-25",
- "2021-10-02",
- "2021-10-09",
- "2021-10-16",
- "2021-10-23",
- "2021-10-30",
- "2021-11-06",
- "2021-11-13",
- "2021-11-20",
- "2021-11-27",
- "2021-12-04",
- "2021-12-11",
- "2021-12-18",
- "2021-12-25",
- "2022-01-01",
- "2022-01-08",
- "2022-01-15",
- "2022-01-22",
- "2022-01-29",
- "2022-02-05",
- "2022-02-12",
- "2022-02-19",
- "2022-02-26",
- "2022-03-05",
- "2022-03-12",
- "2022-03-19",
- "2022-03-26",
- "2022-04-02",
- "2022-04-09",
- "2022-04-16",
- "2022-04-23",
- "2022-04-30",
- "2022-05-07",
- "2022-05-14",
- "2022-05-21",
- "2022-05-28",
- "2022-06-04",
- "2022-06-11",
- "2022-06-18",
- "2022-06-25",
- "2022-07-02",
- "2022-07-09",
- "2022-07-16",
- "2022-07-23",
- "2022-07-30",
- "2022-08-06",
- "2022-08-13",
- "2022-08-20",
- "2022-08-27",
- "2022-09-03",
- "2022-09-10",
- "2022-09-17",
- "2022-09-24",
- "2022-10-01",
- "2022-10-08",
- "2022-10-15",
- "2022-10-22",
- "2022-10-29",
- "2022-11-05",
- "2022-11-12",
- "2022-11-19",
- "2022-11-26",
- "2022-12-03",
- "2022-12-10",
- "2022-12-17",
- "2022-12-24",
- "2022-12-31",
- "2023-01-07",
- "2023-01-14",
- "2023-01-21",
- "2023-01-28",
- "2023-02-04",
- "2023-02-11",
- "2023-02-18",
- "2023-02-25",
- "2023-03-04",
- "2023-03-11",
- "2023-03-18",
- "2023-03-25",
- "2023-04-01",
- "2023-04-08",
- "2023-04-15",
- "2023-04-22",
- "2023-04-29",
- "2023-05-13",
- "2023-06-03",
- "2023-06-10",
- "2023-06-24",
- "2023-07-01",
- "2023-07-08",
- "2023-07-15",
- "2023-07-22",
- "2023-07-29",
- "2023-08-05",
- "2023-08-12",
- "2023-08-19",
- "2023-08-26",
- "2023-09-02",
- "2023-09-09",
- "2023-09-16",
- "2023-09-23",
- "2023-09-30",
- "2023-10-07",
- "2023-10-14",
- "2023-10-21",
- "2023-10-28",
- "2023-11-04",
- "2023-11-11",
- "2023-11-18"
- ],
- "AWS_VIS_WIND_U_10M": [
- "1959-01-01",
- "1959-02-01",
- "1959-03-01",
- "1959-04-01",
- "1959-05-01",
- "1959-06-01",
- "1959-07-01",
- "1959-08-01",
- "1959-09-01",
- "1959-10-01",
- "1959-11-01",
- "1959-12-01",
- "1960-01-01",
- "1960-02-01",
- "1960-03-01",
- "1960-04-01",
- "1960-05-01",
- "1960-06-01",
- "1960-07-01",
- "1960-08-01",
- "1960-09-01",
- "1960-10-01",
- "1960-11-01",
- "1960-12-01",
- "1961-01-01",
- "1961-02-01",
- "1961-03-01",
- "1961-04-01",
- "1961-05-01",
- "1961-06-01",
- "1961-07-01",
- "1961-08-01",
- "1961-09-01",
- "1961-10-01",
- "1961-11-01",
- "1961-12-01",
- "1962-01-01",
- "1962-02-01",
- "1962-03-01",
- "1962-04-01",
- "1962-05-01",
- "1962-06-01",
- "1962-07-01",
- "1962-08-01",
- "1962-09-01",
- "1962-10-01",
- "1962-11-01",
- "1962-12-01",
- "1963-01-01",
- "1963-02-01",
- "1963-03-01",
- "1963-04-01",
- "1963-05-01",
- "1963-06-01",
- "1963-07-01",
- "1963-08-01",
- "1963-09-01",
- "1963-10-01",
- "1963-11-01",
- "1963-12-01",
- "1964-01-01",
- "1964-02-01",
- "1964-03-01",
- "1964-04-01",
- "1964-05-01",
- "1964-06-01",
- "1964-07-01",
- "1964-08-01",
- "1964-09-01",
- "1964-10-01",
- "1964-11-01",
- "1964-12-01",
- "1965-01-01",
- "1965-02-01",
- "1965-03-01",
- "1965-04-01",
- "1965-05-01",
- "1965-06-01",
- "1965-07-01",
- "1965-08-01",
- "1965-09-01",
- "1965-10-01",
- "1965-11-01",
- "1965-12-01",
- "1966-01-01",
- "1966-02-01",
- "1966-03-01",
- "1966-04-01",
- "1966-05-01",
- "1966-06-01",
- "1966-07-01",
- "1966-08-01",
- "1966-09-01",
- "1966-10-01",
- "1966-11-01",
- "1966-12-01",
- "1967-01-01",
- "1967-02-01",
- "1967-03-01",
- "1967-04-01",
- "1967-05-01",
- "1967-06-01",
- "1967-07-01",
- "1967-08-01",
- "1967-09-01",
- "1967-10-01",
- "1967-11-01",
- "1967-12-01",
- "1968-01-01",
- "1968-02-01",
- "1968-03-01",
- "1968-04-01",
- "1968-05-01",
- "1968-06-01",
- "1968-07-01",
- "1968-08-01",
- "1968-09-01",
- "1968-10-01",
- "1968-11-01",
- "1968-12-01",
- "1969-01-01",
- "1969-02-01",
- "1969-03-01",
- "1969-04-01",
- "1969-05-01",
- "1969-06-01",
- "1969-07-01",
- "1969-08-01",
- "1969-09-01",
- "1969-10-01",
- "1969-11-01",
- "1969-12-01",
- "1970-01-01",
- "1970-02-01",
- "1970-03-01",
- "1970-04-01",
- "1970-05-01",
- "1970-06-01",
- "1970-07-01",
- "1970-08-01",
- "1970-09-01",
- "1970-10-01",
- "1970-11-01",
- "1970-12-01",
- "1971-01-01",
- "1971-02-01",
- "1971-03-01",
- "1971-04-01",
- "1971-05-01",
- "1971-06-01",
- "1971-07-01",
- "1971-08-01",
- "1971-09-01",
- "1971-10-01",
- "1971-11-01",
- "1971-12-01",
- "1972-01-01",
- "1972-02-01",
- "1972-03-01",
- "1972-04-01",
- "1972-05-01",
- "1972-06-01",
- "1972-07-01",
- "1972-08-01",
- "1972-09-01",
- "1972-10-01",
- "1972-11-01",
- "1972-12-01",
- "1973-01-01",
- "1973-02-01",
- "1973-03-01",
- "1973-04-01",
- "1973-05-01",
- "1973-06-01",
- "1973-07-01",
- "1973-08-01",
- "1973-09-01",
- "1973-10-01",
- "1973-11-01",
- "1973-12-01",
- "1974-01-01",
- "1974-02-01",
- "1974-03-01",
- "1974-04-01",
- "1974-05-01",
- "1974-06-01",
- "1974-07-01",
- "1974-08-01",
- "1974-09-01",
- "1974-10-01",
- "1974-11-01",
- "1974-12-01",
- "1975-01-01",
- "1975-02-01",
- "1975-03-01",
- "1975-04-01",
- "1975-05-01",
- "1975-06-01",
- "1975-07-01",
- "1975-08-01",
- "1975-09-01",
- "1975-10-01",
- "1975-11-01",
- "1975-12-01",
- "1976-01-01",
- "1976-02-01",
- "1976-03-01",
- "1976-04-01",
- "1976-05-01",
- "1976-06-01",
- "1976-07-01",
- "1976-08-01",
- "1976-09-01",
- "1976-10-01",
- "1976-11-01",
- "1976-12-01",
- "1977-01-01",
- "1977-02-01",
- "1977-03-01",
- "1977-04-01",
- "1977-05-01",
- "1977-06-01",
- "1977-07-01",
- "1977-08-01",
- "1977-09-01",
- "1977-10-01",
- "1977-11-01",
- "1977-12-01",
- "1978-01-01",
- "1978-02-01",
- "1978-03-01",
- "1978-04-01",
- "1978-05-01",
- "1978-06-01",
- "1978-07-01",
- "1978-08-01",
- "1978-09-01",
- "1978-10-01",
- "1978-11-01",
- "1978-12-01",
- "1979-01-01",
- "1979-02-01",
- "1979-03-01",
- "1979-04-01",
- "1979-05-01",
- "1979-06-01",
- "1979-07-01",
- "1979-08-01",
- "1979-09-01",
- "1979-10-01",
- "1979-11-01",
- "1979-12-01",
- "1980-01-01",
- "1980-02-01",
- "1980-03-01",
- "1980-04-01",
- "1980-05-01",
- "1980-06-01",
- "1980-07-01",
- "1980-08-01",
- "1980-09-01",
- "1980-10-01",
- "1980-11-01",
- "1980-12-01",
- "1981-01-01",
- "1981-02-01",
- "1981-03-01",
- "1981-04-01",
- "1981-05-01",
- "1981-06-01",
- "1981-07-01",
- "1981-08-01",
- "1981-09-01",
- "1981-10-01",
- "1981-11-01",
- "1981-12-01",
- "1982-01-01",
- "1982-02-01",
- "1982-03-01",
- "1982-04-01",
- "1982-05-01",
- "1982-06-01",
- "1982-07-01",
- "1982-08-01",
- "1982-09-01",
- "1982-10-01",
- "1982-11-01",
- "1982-12-01",
- "1983-01-01",
- "1983-02-01",
- "1983-03-01",
- "1983-04-01",
- "1983-05-01",
- "1983-06-01",
- "1983-07-01",
- "1983-08-01",
- "1983-09-01",
- "1983-10-01",
- "1983-11-01",
- "1983-12-01",
- "1984-01-01",
- "1984-02-01",
- "1984-03-01",
- "1984-04-01",
- "1984-05-01",
- "1984-06-01",
- "1984-07-01",
- "1984-08-01",
- "1984-09-01",
- "1984-10-01",
- "1984-11-01",
- "1984-12-01",
- "1985-01-01",
- "1985-02-01",
- "1985-03-01",
- "1985-04-01",
- "1985-05-01",
- "1985-06-01",
- "1985-07-01",
- "1985-08-01",
- "1985-09-01",
- "1985-10-01",
- "1985-11-01",
- "1985-12-01",
- "1986-01-01",
- "1986-02-01",
- "1986-03-01",
- "1986-04-01",
- "1986-05-01",
- "1986-06-01",
- "1986-07-01",
- "1986-08-01",
- "1986-09-01",
- "1986-10-01",
- "1986-11-01",
- "1986-12-01",
- "1987-01-01",
- "1987-02-01",
- "1987-03-01",
- "1987-04-01",
- "1987-05-01",
- "1987-06-01",
- "1987-07-01",
- "1987-08-01",
- "1987-09-01",
- "1987-10-01",
- "1987-11-01",
- "1987-12-01",
- "1988-01-01",
- "1988-02-01",
- "1988-03-01",
- "1988-04-01",
- "1988-05-01",
- "1988-06-01",
- "1988-07-01",
- "1988-08-01",
- "1988-09-01",
- "1988-10-01",
- "1988-11-01",
- "1988-12-01",
- "1989-01-01",
- "1989-02-01",
- "1989-03-01",
- "1989-04-01",
- "1989-05-01",
- "1989-06-01",
- "1989-07-01",
- "1989-08-01",
- "1989-09-01",
- "1989-10-01",
- "1989-11-01",
- "1989-12-01",
- "1990-01-01",
- "1990-02-01",
- "1990-03-01",
- "1990-04-01",
- "1990-05-01",
- "1990-06-01",
- "1990-07-01",
- "1990-08-01",
- "1990-09-01",
- "1990-10-01",
- "1990-11-01",
- "1990-12-01",
- "1991-01-01",
- "1991-02-01",
- "1991-03-01",
- "1991-04-01",
- "1991-05-01",
- "1991-06-01",
- "1991-07-01",
- "1991-08-01",
- "1991-09-01",
- "1991-10-01",
- "1991-11-01",
- "1991-12-01",
- "1992-01-01",
- "1992-02-01",
- "1992-03-01",
- "1992-04-01",
- "1992-05-01",
- "1992-06-01",
- "1992-07-01",
- "1992-08-01",
- "1992-09-01",
- "1992-10-01",
- "1992-11-01",
- "1992-12-01",
- "1993-01-01",
- "1993-02-01",
- "1993-03-01",
- "1993-04-01",
- "1993-05-01",
- "1993-06-01",
- "1993-07-01",
- "1993-08-01",
- "1993-09-01",
- "1993-10-01",
- "1993-11-01",
- "1993-12-01",
- "1994-01-01",
- "1994-02-01",
- "1994-03-01",
- "1994-04-01",
- "1994-05-01",
- "1994-06-01",
- "1994-07-01",
- "1994-08-01",
- "1994-09-01",
- "1994-10-01",
- "1994-11-01",
- "1994-12-01",
- "1995-01-01",
- "1995-02-01",
- "1995-03-01",
- "1995-04-01",
- "1995-05-01",
- "1995-06-01",
- "1995-07-01",
- "1995-08-01",
- "1995-09-01",
- "1995-10-01",
- "1995-11-01",
- "1995-12-01",
- "1996-01-01",
- "1996-02-01",
- "1996-03-01",
- "1996-04-01",
- "1996-05-01",
- "1996-06-01",
- "1996-07-01",
- "1996-08-01",
- "1996-09-01",
- "1996-10-01",
- "1996-11-01",
- "1996-12-01",
- "1997-01-01",
- "1997-02-01",
- "1997-03-01",
- "1997-04-01",
- "1997-05-01",
- "1997-06-01",
- "1997-07-01",
- "1997-08-01",
- "1997-09-01",
- "1997-10-01",
- "1997-11-01",
- "1997-12-01",
- "1998-01-01",
- "1998-02-01",
- "1998-03-01",
- "1998-04-01",
- "1998-05-01",
- "1998-06-01",
- "1998-07-01",
- "1998-08-01",
- "1998-09-01",
- "1998-10-01",
- "1998-11-01",
- "1998-12-01",
- "1999-01-01",
- "1999-02-01",
- "1999-03-01",
- "1999-04-01",
- "1999-05-01",
- "1999-06-01",
- "1999-07-01",
- "1999-08-01",
- "1999-09-01",
- "1999-10-01",
- "1999-11-01",
- "1999-12-01",
- "2000-01-01",
- "2000-02-01",
- "2000-03-01",
- "2000-04-01",
- "2000-05-01",
- "2000-06-01",
- "2000-07-01",
- "2000-08-01",
- "2000-09-01",
- "2000-10-01",
- "2000-11-01",
- "2000-12-01",
- "2001-01-01",
- "2001-02-01",
- "2001-03-01",
- "2001-04-01",
- "2001-05-01",
- "2001-06-01",
- "2001-07-01",
- "2001-08-01",
- "2001-09-01",
- "2001-10-01",
- "2001-11-01",
- "2001-12-01",
- "2002-01-01",
- "2002-02-01",
- "2002-03-01",
- "2002-04-01",
- "2002-05-01",
- "2002-06-01",
- "2002-07-01",
- "2002-08-01",
- "2002-09-01",
- "2002-10-01",
- "2002-11-01",
- "2002-12-01",
- "2003-01-01",
- "2003-02-01",
- "2003-03-01",
- "2003-04-01",
- "2003-05-01",
- "2003-06-01",
- "2003-07-01",
- "2003-08-01",
- "2003-09-01",
- "2003-10-01",
- "2003-11-01",
- "2003-12-01",
- "2004-01-01",
- "2004-02-01",
- "2004-03-01",
- "2004-04-01",
- "2004-05-01",
- "2004-06-01",
- "2004-07-01",
- "2004-08-01",
- "2004-09-01",
- "2004-10-01",
- "2004-11-01",
- "2004-12-01",
- "2005-01-01",
- "2005-02-01",
- "2005-03-01",
- "2005-04-01",
- "2005-05-01",
- "2005-06-01",
- "2005-07-01",
- "2005-08-01",
- "2005-09-01",
- "2005-10-01",
- "2005-11-01",
- "2005-12-01",
- "2006-01-01",
- "2006-02-01",
- "2006-03-01",
- "2006-04-01",
- "2006-05-01",
- "2006-06-01",
- "2006-07-01",
- "2006-08-01",
- "2006-09-01",
- "2006-10-01",
- "2006-11-01",
- "2006-12-01",
- "2007-01-01",
- "2007-02-01",
- "2007-03-01",
- "2007-04-01",
- "2007-05-01",
- "2007-06-01",
- "2007-07-01",
- "2007-08-01",
- "2007-09-01",
- "2007-10-01",
- "2007-11-01",
- "2007-12-01",
- "2008-01-01",
- "2008-02-01",
- "2008-03-01",
- "2008-04-01",
- "2008-05-01",
- "2008-06-01",
- "2008-07-01",
- "2008-08-01",
- "2008-09-01",
- "2008-10-01",
- "2008-11-01",
- "2008-12-01",
- "2009-01-01",
- "2009-02-01",
- "2009-03-01",
- "2009-04-01",
- "2009-05-01",
- "2009-06-01",
- "2009-07-01",
- "2009-08-01",
- "2009-09-01",
- "2009-10-01",
- "2009-11-01",
- "2009-12-01",
- "2010-01-01",
- "2010-02-01",
- "2010-03-01",
- "2010-04-01",
- "2010-05-01",
- "2010-06-01",
- "2010-07-01",
- "2010-08-01",
- "2010-09-01",
- "2010-10-01",
- "2010-11-01",
- "2010-12-01",
- "2011-01-01",
- "2011-02-01",
- "2011-03-01",
- "2011-04-01",
- "2011-05-01",
- "2011-06-01",
- "2011-07-01",
- "2011-08-01",
- "2011-09-01",
- "2011-10-01",
- "2011-11-01",
- "2011-12-01",
- "2012-01-01",
- "2012-02-01",
- "2012-03-01",
- "2012-04-01",
- "2012-05-01",
- "2012-06-01",
- "2012-07-01",
- "2012-08-01",
- "2012-09-01",
- "2012-10-01",
- "2012-11-01",
- "2012-12-01",
- "2013-01-01",
- "2013-02-01",
- "2013-03-01",
- "2013-04-01",
- "2013-05-01",
- "2013-06-01",
- "2013-07-01",
- "2013-08-01",
- "2013-09-01",
- "2013-10-01",
- "2013-11-01",
- "2013-12-01",
- "2014-01-01",
- "2014-02-01",
- "2014-03-01",
- "2014-04-01",
- "2014-05-01",
- "2014-06-01",
- "2014-07-01",
- "2014-08-01",
- "2014-09-01",
- "2014-10-01",
- "2014-11-01",
- "2014-12-01",
- "2015-01-01",
- "2015-02-01",
- "2015-03-01",
- "2015-04-01",
- "2015-05-01",
- "2015-06-01",
- "2015-07-01",
- "2015-08-01",
- "2015-09-01",
- "2015-10-01",
- "2015-11-01",
- "2015-12-01",
- "2016-01-01",
- "2016-02-01",
- "2016-03-01",
- "2016-04-01",
- "2016-05-01",
- "2016-06-01",
- "2016-07-01",
- "2016-08-01",
- "2016-09-01",
- "2016-10-01",
- "2016-11-01",
- "2016-12-01",
- "2017-01-01",
- "2017-02-01",
- "2017-03-01",
- "2017-04-01",
- "2017-05-01",
- "2017-06-01",
- "2017-07-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2017-12-01",
- "2018-01-01",
- "2018-02-01",
- "2018-03-01",
- "2018-04-01",
- "2018-05-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-09-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-01-01",
- "2019-02-01",
- "2019-03-01",
- "2019-04-01",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-10-01",
- "2019-11-01",
- "2019-12-01",
- "2020-01-01",
- "2020-02-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-10-01",
- "2020-11-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-03-01",
- "2021-04-01",
- "2021-05-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-06-01",
- "2022-07-01",
- "2022-08-01",
- "2022-09-01",
- "2022-10-01",
- "2022-11-01",
- "2022-12-01",
- "2023-01-01",
- "2023-02-01",
- "2023-03-01",
- "2023-04-01",
- "2023-05-01",
- "2023-06-01",
- "2023-07-01"
- ],
- "AWS_VIS_WIND_V_10M": [
- "1959-01-01",
- "1959-02-01",
- "1959-03-01",
- "1959-04-01",
- "1959-05-01",
- "1959-06-01",
- "1959-07-01",
- "1959-08-01",
- "1959-09-01",
- "1959-10-01",
- "1959-11-01",
- "1959-12-01",
- "1960-01-01",
- "1960-02-01",
- "1960-03-01",
- "1960-04-01",
- "1960-05-01",
- "1960-06-01",
- "1960-07-01",
- "1960-08-01",
- "1960-09-01",
- "1960-10-01",
- "1960-11-01",
- "1960-12-01",
- "1961-01-01",
- "1961-02-01",
- "1961-03-01",
- "1961-04-01",
- "1961-05-01",
- "1961-06-01",
- "1961-07-01",
- "1961-08-01",
- "1961-09-01",
- "1961-10-01",
- "1961-11-01",
- "1961-12-01",
- "1962-01-01",
- "1962-02-01",
- "1962-03-01",
- "1962-04-01",
- "1962-05-01",
- "1962-06-01",
- "1962-07-01",
- "1962-08-01",
- "1962-09-01",
- "1962-10-01",
- "1962-11-01",
- "1962-12-01",
- "1963-01-01",
- "1963-02-01",
- "1963-03-01",
- "1963-04-01",
- "1963-05-01",
- "1963-06-01",
- "1963-07-01",
- "1963-08-01",
- "1963-09-01",
- "1963-10-01",
- "1963-11-01",
- "1963-12-01",
- "1964-01-01",
- "1964-02-01",
- "1964-03-01",
- "1964-04-01",
- "1964-05-01",
- "1964-06-01",
- "1964-07-01",
- "1964-08-01",
- "1964-09-01",
- "1964-10-01",
- "1964-11-01",
- "1964-12-01",
- "1965-01-01",
- "1965-02-01",
- "1965-03-01",
- "1965-04-01",
- "1965-05-01",
- "1965-06-01",
- "1965-07-01",
- "1965-08-01",
- "1965-09-01",
- "1965-10-01",
- "1965-11-01",
- "1965-12-01",
- "1966-01-01",
- "1966-02-01",
- "1966-03-01",
- "1966-04-01",
- "1966-05-01",
- "1966-06-01",
- "1966-07-01",
- "1966-08-01",
- "1966-09-01",
- "1966-10-01",
- "1966-11-01",
- "1966-12-01",
- "1967-01-01",
- "1967-02-01",
- "1967-03-01",
- "1967-04-01",
- "1967-05-01",
- "1967-06-01",
- "1967-07-01",
- "1967-08-01",
- "1967-09-01",
- "1967-10-01",
- "1967-11-01",
- "1967-12-01",
- "1968-01-01",
- "1968-02-01",
- "1968-03-01",
- "1968-04-01",
- "1968-05-01",
- "1968-06-01",
- "1968-07-01",
- "1968-08-01",
- "1968-09-01",
- "1968-10-01",
- "1968-11-01",
- "1968-12-01",
- "1969-01-01",
- "1969-02-01",
- "1969-03-01",
- "1969-04-01",
- "1969-05-01",
- "1969-06-01",
- "1969-07-01",
- "1969-08-01",
- "1969-09-01",
- "1969-10-01",
- "1969-11-01",
- "1969-12-01",
- "1970-01-01",
- "1970-02-01",
- "1970-03-01",
- "1970-04-01",
- "1970-05-01",
- "1970-06-01",
- "1970-07-01",
- "1970-08-01",
- "1970-09-01",
- "1970-10-01",
- "1970-11-01",
- "1970-12-01",
- "1971-01-01",
- "1971-02-01",
- "1971-03-01",
- "1971-04-01",
- "1971-05-01",
- "1971-06-01",
- "1971-07-01",
- "1971-08-01",
- "1971-09-01",
- "1971-10-01",
- "1971-11-01",
- "1971-12-01",
- "1972-01-01",
- "1972-02-01",
- "1972-03-01",
- "1972-04-01",
- "1972-05-01",
- "1972-06-01",
- "1972-07-01",
- "1972-08-01",
- "1972-09-01",
- "1972-10-01",
- "1972-11-01",
- "1972-12-01",
- "1973-01-01",
- "1973-02-01",
- "1973-03-01",
- "1973-04-01",
- "1973-05-01",
- "1973-06-01",
- "1973-07-01",
- "1973-08-01",
- "1973-09-01",
- "1973-10-01",
- "1973-11-01",
- "1973-12-01",
- "1974-01-01",
- "1974-02-01",
- "1974-03-01",
- "1974-04-01",
- "1974-05-01",
- "1974-06-01",
- "1974-07-01",
- "1974-08-01",
- "1974-09-01",
- "1974-10-01",
- "1974-11-01",
- "1974-12-01",
- "1975-01-01",
- "1975-02-01",
- "1975-03-01",
- "1975-04-01",
- "1975-05-01",
- "1975-06-01",
- "1975-07-01",
- "1975-08-01",
- "1975-09-01",
- "1975-10-01",
- "1975-11-01",
- "1975-12-01",
- "1976-01-01",
- "1976-02-01",
- "1976-03-01",
- "1976-04-01",
- "1976-05-01",
- "1976-06-01",
- "1976-07-01",
- "1976-08-01",
- "1976-09-01",
- "1976-10-01",
- "1976-11-01",
- "1976-12-01",
- "1977-01-01",
- "1977-02-01",
- "1977-03-01",
- "1977-04-01",
- "1977-05-01",
- "1977-06-01",
- "1977-07-01",
- "1977-08-01",
- "1977-09-01",
- "1977-10-01",
- "1977-11-01",
- "1977-12-01",
- "1978-01-01",
- "1978-02-01",
- "1978-03-01",
- "1978-04-01",
- "1978-05-01",
- "1978-06-01",
- "1978-07-01",
- "1978-08-01",
- "1978-09-01",
- "1978-10-01",
- "1978-11-01",
- "1978-12-01",
- "1979-01-01",
- "1979-02-01",
- "1979-03-01",
- "1979-04-01",
- "1979-05-01",
- "1979-06-01",
- "1979-07-01",
- "1979-08-01",
- "1979-09-01",
- "1979-10-01",
- "1979-11-01",
- "1979-12-01",
- "1980-01-01",
- "1980-02-01",
- "1980-03-01",
- "1980-04-01",
- "1980-05-01",
- "1980-06-01",
- "1980-07-01",
- "1980-08-01",
- "1980-09-01",
- "1980-10-01",
- "1980-11-01",
- "1980-12-01",
- "1981-01-01",
- "1981-02-01",
- "1981-03-01",
- "1981-04-01",
- "1981-05-01",
- "1981-06-01",
- "1981-07-01",
- "1981-08-01",
- "1981-09-01",
- "1981-10-01",
- "1981-11-01",
- "1981-12-01",
- "1982-01-01",
- "1982-02-01",
- "1982-03-01",
- "1982-04-01",
- "1982-05-01",
- "1982-06-01",
- "1982-07-01",
- "1982-08-01",
- "1982-09-01",
- "1982-10-01",
- "1982-11-01",
- "1982-12-01",
- "1983-01-01",
- "1983-02-01",
- "1983-03-01",
- "1983-04-01",
- "1983-05-01",
- "1983-06-01",
- "1983-07-01",
- "1983-08-01",
- "1983-09-01",
- "1983-10-01",
- "1983-11-01",
- "1983-12-01",
- "1984-01-01",
- "1984-02-01",
- "1984-03-01",
- "1984-04-01",
- "1984-05-01",
- "1984-06-01",
- "1984-07-01",
- "1984-08-01",
- "1984-09-01",
- "1984-10-01",
- "1984-11-01",
- "1984-12-01",
- "1985-01-01",
- "1985-02-01",
- "1985-03-01",
- "1985-04-01",
- "1985-05-01",
- "1985-06-01",
- "1985-07-01",
- "1985-08-01",
- "1985-09-01",
- "1985-10-01",
- "1985-11-01",
- "1985-12-01",
- "1986-01-01",
- "1986-02-01",
- "1986-03-01",
- "1986-04-01",
- "1986-05-01",
- "1986-06-01",
- "1986-07-01",
- "1986-08-01",
- "1986-09-01",
- "1986-10-01",
- "1986-11-01",
- "1986-12-01",
- "1987-01-01",
- "1987-02-01",
- "1987-03-01",
- "1987-04-01",
- "1987-05-01",
- "1987-06-01",
- "1987-07-01",
- "1987-08-01",
- "1987-09-01",
- "1987-10-01",
- "1987-11-01",
- "1987-12-01",
- "1988-01-01",
- "1988-02-01",
- "1988-03-01",
- "1988-04-01",
- "1988-05-01",
- "1988-06-01",
- "1988-07-01",
- "1988-08-01",
- "1988-09-01",
- "1988-10-01",
- "1988-11-01",
- "1988-12-01",
- "1989-01-01",
- "1989-02-01",
- "1989-03-01",
- "1989-04-01",
- "1989-05-01",
- "1989-06-01",
- "1989-07-01",
- "1989-08-01",
- "1989-09-01",
- "1989-10-01",
- "1989-11-01",
- "1989-12-01",
- "1990-01-01",
- "1990-02-01",
- "1990-03-01",
- "1990-04-01",
- "1990-05-01",
- "1990-06-01",
- "1990-07-01",
- "1990-08-01",
- "1990-09-01",
- "1990-10-01",
- "1990-11-01",
- "1990-12-01",
- "1991-01-01",
- "1991-02-01",
- "1991-03-01",
- "1991-04-01",
- "1991-05-01",
- "1991-06-01",
- "1991-07-01",
- "1991-08-01",
- "1991-09-01",
- "1991-10-01",
- "1991-11-01",
- "1991-12-01",
- "1992-01-01",
- "1992-02-01",
- "1992-03-01",
- "1992-04-01",
- "1992-05-01",
- "1992-06-01",
- "1992-07-01",
- "1992-08-01",
- "1992-09-01",
- "1992-10-01",
- "1992-11-01",
- "1992-12-01",
- "1993-01-01",
- "1993-02-01",
- "1993-03-01",
- "1993-04-01",
- "1993-05-01",
- "1993-06-01",
- "1993-07-01",
- "1993-08-01",
- "1993-09-01",
- "1993-10-01",
- "1993-11-01",
- "1993-12-01",
- "1994-01-01",
- "1994-02-01",
- "1994-03-01",
- "1994-04-01",
- "1994-05-01",
- "1994-06-01",
- "1994-07-01",
- "1994-08-01",
- "1994-09-01",
- "1994-10-01",
- "1994-11-01",
- "1994-12-01",
- "1995-01-01",
- "1995-02-01",
- "1995-03-01",
- "1995-04-01",
- "1995-05-01",
- "1995-06-01",
- "1995-07-01",
- "1995-08-01",
- "1995-09-01",
- "1995-10-01",
- "1995-11-01",
- "1995-12-01",
- "1996-01-01",
- "1996-02-01",
- "1996-03-01",
- "1996-04-01",
- "1996-05-01",
- "1996-06-01",
- "1996-07-01",
- "1996-08-01",
- "1996-09-01",
- "1996-10-01",
- "1996-11-01",
- "1996-12-01",
- "1997-01-01",
- "1997-02-01",
- "1997-03-01",
- "1997-04-01",
- "1997-05-01",
- "1997-06-01",
- "1997-07-01",
- "1997-08-01",
- "1997-09-01",
- "1997-10-01",
- "1997-11-01",
- "1997-12-01",
- "1998-01-01",
- "1998-02-01",
- "1998-03-01",
- "1998-04-01",
- "1998-05-01",
- "1998-06-01",
- "1998-07-01",
- "1998-08-01",
- "1998-09-01",
- "1998-10-01",
- "1998-11-01",
- "1998-12-01",
- "1999-01-01",
- "1999-02-01",
- "1999-03-01",
- "1999-04-01",
- "1999-05-01",
- "1999-06-01",
- "1999-07-01",
- "1999-08-01",
- "1999-09-01",
- "1999-10-01",
- "1999-11-01",
- "1999-12-01",
- "2000-01-01",
- "2000-02-01",
- "2000-03-01",
- "2000-04-01",
- "2000-05-01",
- "2000-06-01",
- "2000-07-01",
- "2000-08-01",
- "2000-09-01",
- "2000-10-01",
- "2000-11-01",
- "2000-12-01",
- "2001-01-01",
- "2001-02-01",
- "2001-03-01",
- "2001-04-01",
- "2001-05-01",
- "2001-06-01",
- "2001-07-01",
- "2001-08-01",
- "2001-09-01",
- "2001-10-01",
- "2001-11-01",
- "2001-12-01",
- "2002-01-01",
- "2002-02-01",
- "2002-03-01",
- "2002-04-01",
- "2002-05-01",
- "2002-06-01",
- "2002-07-01",
- "2002-08-01",
- "2002-09-01",
- "2002-10-01",
- "2002-11-01",
- "2002-12-01",
- "2003-01-01",
- "2003-02-01",
- "2003-03-01",
- "2003-04-01",
- "2003-05-01",
- "2003-06-01",
- "2003-07-01",
- "2003-08-01",
- "2003-09-01",
- "2003-10-01",
- "2003-11-01",
- "2003-12-01",
- "2004-01-01",
- "2004-02-01",
- "2004-03-01",
- "2004-04-01",
- "2004-05-01",
- "2004-06-01",
- "2004-07-01",
- "2004-08-01",
- "2004-09-01",
- "2004-10-01",
- "2004-11-01",
- "2004-12-01",
- "2005-01-01",
- "2005-02-01",
- "2005-03-01",
- "2005-04-01",
- "2005-05-01",
- "2005-06-01",
- "2005-07-01",
- "2005-08-01",
- "2005-09-01",
- "2005-10-01",
- "2005-11-01",
- "2005-12-01",
- "2006-01-01",
- "2006-02-01",
- "2006-03-01",
- "2006-04-01",
- "2006-05-01",
- "2006-06-01",
- "2006-07-01",
- "2006-08-01",
- "2006-09-01",
- "2006-10-01",
- "2006-11-01",
- "2006-12-01",
- "2007-01-01",
- "2007-02-01",
- "2007-03-01",
- "2007-04-01",
- "2007-05-01",
- "2007-06-01",
- "2007-07-01",
- "2007-08-01",
- "2007-09-01",
- "2007-10-01",
- "2007-11-01",
- "2007-12-01",
- "2008-01-01",
- "2008-02-01",
- "2008-03-01",
- "2008-04-01",
- "2008-05-01",
- "2008-06-01",
- "2008-07-01",
- "2008-08-01",
- "2008-09-01",
- "2008-10-01",
- "2008-11-01",
- "2008-12-01",
- "2009-01-01",
- "2009-02-01",
- "2009-03-01",
- "2009-04-01",
- "2009-05-01",
- "2009-06-01",
- "2009-07-01",
- "2009-08-01",
- "2009-09-01",
- "2009-10-01",
- "2009-11-01",
- "2009-12-01",
- "2010-01-01",
- "2010-02-01",
- "2010-03-01",
- "2010-04-01",
- "2010-05-01",
- "2010-06-01",
- "2010-07-01",
- "2010-08-01",
- "2010-09-01",
- "2010-10-01",
- "2010-11-01",
- "2010-12-01",
- "2011-01-01",
- "2011-02-01",
- "2011-03-01",
- "2011-04-01",
- "2011-05-01",
- "2011-06-01",
- "2011-07-01",
- "2011-08-01",
- "2011-09-01",
- "2011-10-01",
- "2011-11-01",
- "2011-12-01",
- "2012-01-01",
- "2012-02-01",
- "2012-03-01",
- "2012-04-01",
- "2012-05-01",
- "2012-06-01",
- "2012-07-01",
- "2012-08-01",
- "2012-09-01",
- "2012-10-01",
- "2012-11-01",
- "2012-12-01",
- "2013-01-01",
- "2013-02-01",
- "2013-03-01",
- "2013-04-01",
- "2013-05-01",
- "2013-06-01",
- "2013-07-01",
- "2013-08-01",
- "2013-09-01",
- "2013-10-01",
- "2013-11-01",
- "2013-12-01",
- "2014-01-01",
- "2014-02-01",
- "2014-03-01",
- "2014-04-01",
- "2014-05-01",
- "2014-06-01",
- "2014-07-01",
- "2014-08-01",
- "2014-09-01",
- "2014-10-01",
- "2014-11-01",
- "2014-12-01",
- "2015-01-01",
- "2015-02-01",
- "2015-03-01",
- "2015-04-01",
- "2015-05-01",
- "2015-06-01",
- "2015-07-01",
- "2015-08-01",
- "2015-09-01",
- "2015-10-01",
- "2015-11-01",
- "2015-12-01",
- "2016-01-01",
- "2016-02-01",
- "2016-03-01",
- "2016-04-01",
- "2016-05-01",
- "2016-06-01",
- "2016-07-01",
- "2016-08-01",
- "2016-09-01",
- "2016-10-01",
- "2016-11-01",
- "2016-12-01",
- "2017-01-01",
- "2017-02-01",
- "2017-03-01",
- "2017-04-01",
- "2017-05-01",
- "2017-06-01",
- "2017-07-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2017-12-01",
- "2018-01-01",
- "2018-02-01",
- "2018-03-01",
- "2018-04-01",
- "2018-05-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-09-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-01-01",
- "2019-02-01",
- "2019-03-01",
- "2019-04-01",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-10-01",
- "2019-11-01",
- "2019-12-01",
- "2020-01-01",
- "2020-02-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-10-01",
- "2020-11-01",
- "2020-12-01",
- "2021-01-01",
- "2021-02-01",
- "2021-03-01",
- "2021-04-01",
- "2021-05-01",
- "2021-06-01",
- "2021-07-01",
- "2021-08-01",
- "2021-09-01",
- "2021-10-01",
- "2021-11-01",
- "2021-12-01",
- "2022-01-01",
- "2022-02-01",
- "2022-03-01",
- "2022-04-01",
- "2022-05-01",
- "2022-06-01",
- "2022-07-01",
- "2022-08-01",
- "2022-09-01",
- "2022-10-01",
- "2022-11-01",
- "2022-12-01",
- "2023-01-01",
- "2023-02-01",
- "2023-03-01",
- "2023-04-01",
- "2023-05-01",
- "2023-06-01",
- "2023-07-01"
- ],
- "BICEP_NPP_VIS_PP": [
- "1998-01-01",
- "1998-02-01",
- "1998-03-01",
- "1998-04-01",
- "1998-05-01",
- "1998-06-01",
- "1998-07-01",
- "1998-08-01",
- "1998-09-01",
- "1998-10-01",
- "1998-11-01",
- "1998-12-01",
- "1999-01-01",
- "1999-02-01",
- "1999-03-01",
- "1999-04-01",
- "1999-05-01",
- "1999-06-01",
- "1999-07-01",
- "1999-08-01",
- "1999-09-01",
- "1999-10-01",
- "1999-11-01",
- "1999-12-01",
- "2000-01-01",
- "2000-02-01",
- "2000-03-01",
- "2000-04-01",
- "2000-05-01",
- "2000-06-01",
- "2000-07-01",
- "2000-08-01",
- "2000-09-01",
- "2000-10-01",
- "2000-11-01",
- "2000-12-01",
- "2001-01-01",
- "2001-02-01",
- "2001-03-01",
- "2001-04-01",
- "2001-05-01",
- "2001-06-01",
- "2001-07-01",
- "2001-08-01",
- "2001-09-01",
- "2001-10-01",
- "2001-11-01",
- "2001-12-01",
- "2002-01-01",
- "2002-02-01",
- "2002-03-01",
- "2002-04-01",
- "2002-05-01",
- "2002-06-01",
- "2002-07-01",
- "2002-08-01",
- "2002-09-01",
- "2002-10-01",
- "2002-11-01",
- "2002-12-01",
- "2003-01-01",
- "2003-02-01",
- "2003-03-01",
- "2003-04-01",
- "2003-05-01",
- "2003-06-01",
- "2003-07-01",
- "2003-08-01",
- "2003-09-01",
- "2003-10-01",
- "2003-11-01",
- "2003-12-01",
- "2004-01-01",
- "2004-02-01",
- "2004-03-01",
- "2004-04-01",
- "2004-05-01",
- "2004-06-01",
- "2004-07-01",
- "2004-08-01",
- "2004-09-01",
- "2004-10-01",
- "2004-11-01",
- "2004-12-01",
- "2005-01-01",
- "2005-02-01",
- "2005-03-01",
- "2005-04-01",
- "2005-05-01",
- "2005-06-01",
- "2005-07-01",
- "2005-08-01",
- "2005-09-01",
- "2005-10-01",
- "2005-11-01",
- "2005-12-01",
- "2006-01-01",
- "2006-02-01",
- "2006-03-01",
- "2006-04-01",
- "2006-05-01",
- "2006-06-01",
- "2006-07-01",
- "2006-08-01",
- "2006-09-01",
- "2006-10-01",
- "2006-11-01",
- "2006-12-01",
- "2007-01-01",
- "2007-02-01",
- "2007-03-01",
- "2007-04-01",
- "2007-05-01",
- "2007-06-01",
- "2007-07-01",
- "2007-08-01",
- "2007-09-01",
- "2007-10-01",
- "2007-11-01",
- "2007-12-01",
- "2008-01-01",
- "2008-02-01",
- "2008-03-01",
- "2008-04-01",
- "2008-05-01",
- "2008-06-01",
- "2008-07-01",
- "2008-08-01",
- "2008-09-01",
- "2008-10-01",
- "2008-11-01",
- "2008-12-01",
- "2009-01-01",
- "2009-02-01",
- "2009-03-01",
- "2009-04-01",
- "2009-05-01",
- "2009-06-01",
- "2009-07-01",
- "2009-08-01",
- "2009-09-01",
- "2009-10-01",
- "2009-11-01",
- "2009-12-01",
- "2010-01-01",
- "2010-02-01",
- "2010-03-01",
- "2010-04-01",
- "2010-05-01",
- "2010-06-01",
- "2010-07-01",
- "2010-08-01",
- "2010-09-01",
- "2010-10-01",
- "2010-11-01",
- "2010-12-01",
- "2011-01-01",
- "2011-02-01",
- "2011-03-01",
- "2011-04-01",
- "2011-05-01",
- "2011-06-01",
- "2011-07-01",
- "2011-08-01",
- "2011-09-01",
- "2011-10-01",
- "2011-11-01",
- "2011-12-01",
- "2012-01-01",
- "2012-02-01",
- "2012-03-01",
- "2012-04-01",
- "2012-05-01",
- "2012-06-01",
- "2012-07-01",
- "2012-08-01",
- "2012-09-01",
- "2012-10-01",
- "2012-11-01",
- "2012-12-01",
- "2013-01-01",
- "2013-02-01",
- "2013-03-01",
- "2013-04-01",
- "2013-05-01",
- "2013-06-01",
- "2013-07-01",
- "2013-08-01",
- "2013-09-01",
- "2013-10-01",
- "2013-11-01",
- "2013-12-01",
- "2014-01-01",
- "2014-02-01",
- "2014-03-01",
- "2014-04-01",
- "2014-05-01",
- "2014-06-01",
- "2014-07-01",
- "2014-08-01",
- "2014-09-01",
- "2014-10-01",
- "2014-11-01",
- "2014-12-01",
- "2015-01-01",
- "2015-02-01",
- "2015-03-01",
- "2015-04-01",
- "2015-05-01",
- "2015-06-01",
- "2015-07-01",
- "2015-08-01",
- "2015-09-01",
- "2015-10-01",
- "2015-11-01",
- "2015-12-01",
- "2016-01-01",
- "2016-02-01",
- "2016-03-01",
- "2016-04-01",
- "2016-05-01",
- "2016-06-01",
- "2016-07-01",
- "2016-08-01",
- "2016-09-01",
- "2016-10-01",
- "2016-11-01",
- "2016-12-01",
- "2017-01-01",
- "2017-02-01",
- "2017-03-01",
- "2017-04-01",
- "2017-05-01",
- "2017-06-01",
- "2017-07-01",
- "2017-08-01",
- "2017-09-01",
- "2017-10-01",
- "2017-11-01",
- "2017-12-01",
- "2018-01-01",
- "2018-02-01",
- "2018-03-01",
- "2018-04-01",
- "2018-05-01",
- "2018-06-01",
- "2018-07-01",
- "2018-08-01",
- "2018-09-01",
- "2018-10-01",
- "2018-11-01",
- "2018-12-01",
- "2019-01-01",
- "2019-02-01",
- "2019-03-01",
- "2019-04-01",
- "2019-05-01",
- "2019-06-01",
- "2019-07-01",
- "2019-08-01",
- "2019-09-01",
- "2019-10-01",
- "2019-11-01",
- "2019-12-01",
- "2020-01-01",
- "2020-02-01",
- "2020-03-01",
- "2020-04-01",
- "2020-05-01",
- "2020-06-01",
- "2020-07-01",
- "2020-08-01",
- "2020-09-01",
- "2020-10-01",
- "2020-11-01",
- "2020-12-01"
- ],
- "CHL": [
- "1997-09-01T00:00:00.000Z",
- "1997-10-01T00:00:00.000Z",
- "1997-11-01T00:00:00.000Z",
- "1997-12-01T00:00:00.000Z",
- "1998-01-01T00:00:00.000Z",
- "1998-02-01T00:00:00.000Z",
- "1998-03-01T00:00:00.000Z",
- "1998-04-01T00:00:00.000Z",
- "1998-05-01T00:00:00.000Z",
- "1998-06-01T00:00:00.000Z",
- "1998-07-01T00:00:00.000Z",
- "1998-08-01T00:00:00.000Z",
- "1998-09-01T00:00:00.000Z",
- "1998-10-01T00:00:00.000Z",
- "1998-11-01T00:00:00.000Z",
- "1998-12-01T00:00:00.000Z",
- "1999-01-01T00:00:00.000Z",
- "1999-02-01T00:00:00.000Z",
- "1999-03-01T00:00:00.000Z",
- "1999-04-01T00:00:00.000Z",
- "1999-05-01T00:00:00.000Z",
- "1999-06-01T00:00:00.000Z",
- "1999-07-01T00:00:00.000Z",
- "1999-08-01T00:00:00.000Z",
- "1999-09-01T00:00:00.000Z",
- "1999-10-01T00:00:00.000Z",
- "1999-11-01T00:00:00.000Z",
- "1999-12-01T00:00:00.000Z",
- "2000-01-01T00:00:00.000Z",
- "2000-02-01T00:00:00.000Z",
- "2000-03-01T00:00:00.000Z",
- "2000-04-01T00:00:00.000Z",
- "2000-05-01T00:00:00.000Z",
- "2000-06-01T00:00:00.000Z",
- "2000-07-01T00:00:00.000Z",
- "2000-08-01T00:00:00.000Z",
- "2000-09-01T00:00:00.000Z",
- "2000-10-01T00:00:00.000Z",
- "2000-11-01T00:00:00.000Z",
- "2000-12-01T00:00:00.000Z",
- "2001-01-01T00:00:00.000Z",
- "2001-02-01T00:00:00.000Z",
- "2001-03-01T00:00:00.000Z",
- "2001-04-01T00:00:00.000Z",
- "2001-05-01T00:00:00.000Z",
- "2001-06-01T00:00:00.000Z",
- "2001-07-01T00:00:00.000Z",
- "2001-08-01T00:00:00.000Z",
- "2001-09-01T00:00:00.000Z",
- "2001-10-01T00:00:00.000Z",
- "2001-11-01T00:00:00.000Z",
- "2001-12-01T00:00:00.000Z",
- "2002-01-01T00:00:00.000Z",
- "2002-02-01T00:00:00.000Z",
- "2002-03-01T00:00:00.000Z",
- "2002-04-01T00:00:00.000Z",
- "2002-05-01T00:00:00.000Z",
- "2002-06-01T00:00:00.000Z",
- "2002-07-01T00:00:00.000Z",
- "2002-08-01T00:00:00.000Z",
- "2002-09-01T00:00:00.000Z",
- "2002-10-01T00:00:00.000Z",
- "2002-11-01T00:00:00.000Z",
- "2002-12-01T00:00:00.000Z",
- "2003-01-01T00:00:00.000Z",
- "2003-02-01T00:00:00.000Z",
- "2003-03-01T00:00:00.000Z",
- "2003-04-01T00:00:00.000Z",
- "2003-05-01T00:00:00.000Z",
- "2003-06-01T00:00:00.000Z",
- "2003-07-01T00:00:00.000Z",
- "2003-08-01T00:00:00.000Z",
- "2003-09-01T00:00:00.000Z",
- "2003-10-01T00:00:00.000Z",
- "2003-11-01T00:00:00.000Z",
- "2003-12-01T00:00:00.000Z",
- "2004-01-01T00:00:00.000Z",
- "2004-02-01T00:00:00.000Z",
- "2004-03-01T00:00:00.000Z",
- "2004-04-01T00:00:00.000Z",
- "2004-05-01T00:00:00.000Z",
- "2004-06-01T00:00:00.000Z",
- "2004-07-01T00:00:00.000Z",
- "2004-08-01T00:00:00.000Z",
- "2004-09-01T00:00:00.000Z",
- "2004-10-01T00:00:00.000Z",
- "2004-11-01T00:00:00.000Z",
- "2004-12-01T00:00:00.000Z",
- "2005-01-01T00:00:00.000Z",
- "2005-02-01T00:00:00.000Z",
- "2005-03-01T00:00:00.000Z",
- "2005-04-01T00:00:00.000Z",
- "2005-05-01T00:00:00.000Z",
- "2005-06-01T00:00:00.000Z",
- "2005-07-01T00:00:00.000Z",
- "2005-08-01T00:00:00.000Z",
- "2005-09-01T00:00:00.000Z",
- "2005-10-01T00:00:00.000Z",
- "2005-11-01T00:00:00.000Z",
- "2005-12-01T00:00:00.000Z",
- "2006-01-01T00:00:00.000Z",
- "2006-02-01T00:00:00.000Z",
- "2006-03-01T00:00:00.000Z",
- "2006-04-01T00:00:00.000Z",
- "2006-05-01T00:00:00.000Z",
- "2006-06-01T00:00:00.000Z",
- "2006-07-01T00:00:00.000Z",
- "2006-08-01T00:00:00.000Z",
- "2006-09-01T00:00:00.000Z",
- "2006-10-01T00:00:00.000Z",
- "2006-11-01T00:00:00.000Z",
- "2006-12-01T00:00:00.000Z",
- "2007-01-01T00:00:00.000Z",
- "2007-02-01T00:00:00.000Z",
- "2007-03-01T00:00:00.000Z",
- "2007-04-01T00:00:00.000Z",
- "2007-05-01T00:00:00.000Z",
- "2007-06-01T00:00:00.000Z",
- "2007-07-01T00:00:00.000Z",
- "2007-08-01T00:00:00.000Z",
- "2007-09-01T00:00:00.000Z",
- "2007-10-01T00:00:00.000Z",
- "2007-11-01T00:00:00.000Z",
- "2007-12-01T00:00:00.000Z",
- "2008-01-01T00:00:00.000Z",
- "2008-02-01T00:00:00.000Z",
- "2008-03-01T00:00:00.000Z",
- "2008-04-01T00:00:00.000Z",
- "2008-05-01T00:00:00.000Z",
- "2008-06-01T00:00:00.000Z",
- "2008-07-01T00:00:00.000Z",
- "2008-08-01T00:00:00.000Z",
- "2008-09-01T00:00:00.000Z",
- "2008-10-01T00:00:00.000Z",
- "2008-11-01T00:00:00.000Z",
- "2008-12-01T00:00:00.000Z",
- "2009-01-01T00:00:00.000Z",
- "2009-02-01T00:00:00.000Z",
- "2009-03-01T00:00:00.000Z",
- "2009-04-01T00:00:00.000Z",
- "2009-05-01T00:00:00.000Z",
- "2009-06-01T00:00:00.000Z",
- "2009-07-01T00:00:00.000Z",
- "2009-08-01T00:00:00.000Z",
- "2009-09-01T00:00:00.000Z",
- "2009-10-01T00:00:00.000Z",
- "2009-11-01T00:00:00.000Z",
- "2009-12-01T00:00:00.000Z",
- "2010-01-01T00:00:00.000Z",
- "2010-02-01T00:00:00.000Z",
- "2010-03-01T00:00:00.000Z",
- "2010-04-01T00:00:00.000Z",
- "2010-05-01T00:00:00.000Z",
- "2010-06-01T00:00:00.000Z",
- "2010-07-01T00:00:00.000Z",
- "2010-08-01T00:00:00.000Z",
- "2010-09-01T00:00:00.000Z",
- "2010-10-01T00:00:00.000Z",
- "2010-11-01T00:00:00.000Z",
- "2010-12-01T00:00:00.000Z",
- "2011-01-01T00:00:00.000Z",
- "2011-02-01T00:00:00.000Z",
- "2011-03-01T00:00:00.000Z",
- "2011-04-01T00:00:00.000Z",
- "2011-05-01T00:00:00.000Z",
- "2011-06-01T00:00:00.000Z",
- "2011-07-01T00:00:00.000Z",
- "2011-08-01T00:00:00.000Z",
- "2011-09-01T00:00:00.000Z",
- "2011-10-01T00:00:00.000Z",
- "2011-11-01T00:00:00.000Z",
- "2011-12-01T00:00:00.000Z",
- "2012-01-01T00:00:00.000Z",
- "2012-02-01T00:00:00.000Z",
- "2012-03-01T00:00:00.000Z",
- "2012-04-01T00:00:00.000Z",
- "2012-05-01T00:00:00.000Z",
- "2012-06-01T00:00:00.000Z",
- "2012-07-01T00:00:00.000Z",
- "2012-08-01T00:00:00.000Z",
- "2012-09-01T00:00:00.000Z",
- "2012-10-01T00:00:00.000Z",
- "2012-11-01T00:00:00.000Z",
- "2012-12-01T00:00:00.000Z",
- "2013-01-01T00:00:00.000Z",
- "2013-02-01T00:00:00.000Z",
- "2013-03-01T00:00:00.000Z",
- "2013-04-01T00:00:00.000Z",
- "2013-05-01T00:00:00.000Z",
- "2013-06-01T00:00:00.000Z",
- "2013-07-01T00:00:00.000Z",
- "2013-08-01T00:00:00.000Z",
- "2013-09-01T00:00:00.000Z",
- "2013-10-01T00:00:00.000Z",
- "2013-11-01T00:00:00.000Z",
- "2013-12-01T00:00:00.000Z",
- "2014-01-01T00:00:00.000Z",
- "2014-02-01T00:00:00.000Z",
- "2014-03-01T00:00:00.000Z",
- "2014-04-01T00:00:00.000Z",
- "2014-05-01T00:00:00.000Z",
- "2014-06-01T00:00:00.000Z",
- "2014-07-01T00:00:00.000Z",
- "2014-08-01T00:00:00.000Z",
- "2014-09-01T00:00:00.000Z",
- "2014-10-01T00:00:00.000Z",
- "2014-11-01T00:00:00.000Z",
- "2014-12-01T00:00:00.000Z",
- "2015-01-01T00:00:00.000Z",
- "2015-02-01T00:00:00.000Z",
- "2015-03-01T00:00:00.000Z",
- "2015-04-01T00:00:00.000Z",
- "2015-05-01T00:00:00.000Z",
- "2015-06-01T00:00:00.000Z",
- "2015-07-01T00:00:00.000Z",
- "2015-08-01T00:00:00.000Z",
- "2015-09-01T00:00:00.000Z",
- "2015-10-01T00:00:00.000Z",
- "2015-11-01T00:00:00.000Z",
- "2015-12-01T00:00:00.000Z",
- "2016-01-01T00:00:00.000Z",
- "2016-02-01T00:00:00.000Z",
- "2016-03-01T00:00:00.000Z",
- "2016-04-01T00:00:00.000Z",
- "2016-05-01T00:00:00.000Z",
- "2016-06-01T00:00:00.000Z",
- "2016-07-01T00:00:00.000Z",
- "2016-08-01T00:00:00.000Z",
- "2016-09-01T00:00:00.000Z",
- "2016-10-01T00:00:00.000Z",
- "2016-11-01T00:00:00.000Z",
- "2016-12-01T00:00:00.000Z",
- "2017-01-01T00:00:00.000Z",
- "2017-02-01T00:00:00.000Z",
- "2017-03-01T00:00:00.000Z",
- "2017-04-01T00:00:00.000Z",
- "2017-05-01T00:00:00.000Z",
- "2017-06-01T00:00:00.000Z",
- "2017-07-01T00:00:00.000Z",
- "2017-08-01T00:00:00.000Z",
- "2017-09-01T00:00:00.000Z",
- "2017-10-01T00:00:00.000Z",
- "2017-11-01T00:00:00.000Z",
- "2017-12-01T00:00:00.000Z",
- "2018-01-01T00:00:00.000Z",
- "2018-02-01T00:00:00.000Z",
- "2018-03-01T00:00:00.000Z",
- "2018-04-01T00:00:00.000Z",
- "2018-05-01T00:00:00.000Z",
- "2018-06-01T00:00:00.000Z",
- "2018-07-01T00:00:00.000Z",
- "2018-08-01T00:00:00.000Z",
- "2018-09-01T00:00:00.000Z",
- "2018-10-01T00:00:00.000Z",
- "2018-11-01T00:00:00.000Z",
- "2018-12-01T00:00:00.000Z",
- "2019-01-01T00:00:00.000Z",
- "2019-02-01T00:00:00.000Z",
- "2019-03-01T00:00:00.000Z",
- "2019-04-01T00:00:00.000Z",
- "2019-05-01T00:00:00.000Z",
- "2019-06-01T00:00:00.000Z",
- "2019-07-01T00:00:00.000Z",
- "2019-08-01T00:00:00.000Z",
- "2019-09-01T00:00:00.000Z",
- "2019-10-01T00:00:00.000Z",
- "2019-11-01T00:00:00.000Z",
- "2019-12-01T00:00:00.000Z",
- "2020-01-01T00:00:00.000Z",
- "2020-02-01T00:00:00.000Z",
- "2020-03-01T00:00:00.000Z",
- "2020-04-01T00:00:00.000Z",
- "2020-05-01T00:00:00.000Z",
- "2020-06-01T00:00:00.000Z",
- "2020-07-01T00:00:00.000Z",
- "2020-08-01T00:00:00.000Z",
- "2020-09-01T00:00:00.000Z",
- "2020-10-01T00:00:00.000Z",
- "2020-11-01T00:00:00.000Z",
- "2020-12-01T00:00:00.000Z",
- "2021-01-01T00:00:00.000Z",
- "2021-02-01T00:00:00.000Z",
- "2021-03-01T00:00:00.000Z",
- "2021-04-01T00:00:00.000Z",
- "2021-05-01T00:00:00.000Z",
- "2021-06-01T00:00:00.000Z",
- "2021-07-01T00:00:00.000Z",
- "2021-08-01T00:00:00.000Z",
- "2021-09-01T00:00:00.000Z",
- "2021-10-01T00:00:00.000Z",
- "2021-11-01T00:00:00.000Z",
- "2021-12-01T00:00:00.000Z",
- "2022-01-01T00:00:00.000Z",
- "2022-02-01T00:00:00.000Z",
- "2022-03-01T00:00:00.000Z",
- "2022-04-01T00:00:00.000Z",
- "2022-05-01T00:00:00.000Z",
- "2022-06-01T00:00:00.000Z",
- "2022-07-01T00:00:00.000Z",
- "2022-08-01T00:00:00.000Z",
- "2022-09-01T00:00:00.000Z",
- "2022-10-01T00:00:00.000Z",
- "2022-11-01T00:00:00.000Z",
- "2022-12-01T00:00:00.000Z",
- "2023-01-01T00:00:00.000Z",
- "2023-02-01T00:00:00.000Z",
- "2023-03-01T00:00:00.000Z",
- "2023-04-01T00:00:00.000Z",
- "2023-05-01T00:00:00.000Z",
- "2023-06-01T00:00:00.000Z",
- "2023-07-01T00:00:00.000Z"
- ],
- "ESA-CCI-V2-CRYOSAT": [
- "2010-11-01",
- "2010-12-01",
- "2011-01-01",
- "2011-02-01",
- "2011-03-01",
- "2011-04-01",
- "2011-10-01",
- "2011-11-01",
- "2011-12-01",
- "2012-01-01",
- "2012-02-01",
- "2012-03-01",
- "2012-04-01",
- "2012-10-01",
- "2012-11-01",
- "2012-12-01",
- "2013-01-01",
- "2013-02-01",
- "2013-03-01",
- "2013-04-01",
- "2013-10-01",
- "2013-11-01",
- "2013-12-01",
- "2014-01-01",
- "2014-02-01",
- "2014-03-01",
- "2014-04-01",
- "2014-10-01",
- "2014-11-01",
- "2014-12-01",
- "2015-01-01",
- "2015-02-01",
- "2015-03-01",
- "2015-04-01",
- "2015-10-01",
- "2015-11-01",
- "2015-12-01",
- "2016-01-01",
- "2016-02-01",
- "2016-03-01",
- "2016-04-01",
- "2016-10-01",
- "2016-11-01",
- "2016-12-01",
- "2017-01-01",
- "2017-02-01",
- "2017-03-01",
- "2017-04-01"
- ],
- "ESA-CCI-V2-ENVISAT": [
- "2002-10-01",
- "2002-11-01",
- "2002-12-01",
- "2003-01-01",
- "2003-02-01",
- "2003-03-01",
- "2003-04-01",
- "2003-10-01",
- "2003-11-01",
- "2003-12-01",
- "2004-01-01",
- "2004-02-01",
- "2004-03-01",
- "2004-04-01",
- "2004-10-01",
- "2004-11-01",
- "2004-12-01",
- "2005-01-01",
- "2005-02-01",
- "2005-03-01",
- "2005-04-01",
- "2005-10-01",
- "2005-11-01",
- "2005-12-01",
- "2006-01-01",
- "2006-02-01",
- "2006-03-01",
- "2006-04-01",
- "2006-10-01",
- "2006-11-01",
- "2006-12-01",
- "2007-01-01",
- "2007-02-01",
- "2007-03-01",
- "2007-04-01",
- "2007-10-01",
- "2007-11-01",
- "2007-12-01",
- "2008-01-01",
- "2008-02-01",
- "2008-03-01",
- "2008-04-01",
- "2008-10-01",
- "2008-11-01",
- "2008-12-01",
- "2009-01-01",
- "2009-02-01",
- "2009-03-01",
- "2009-04-01",
- "2009-10-01",
- "2009-11-01",
- "2009-12-01",
- "2010-01-01",
- "2010-02-01",
- "2010-03-01",
- "2010-04-01",
- "2010-10-01",
- "2010-11-01",
- "2010-12-01",
- "2011-01-01",
- "2011-02-01",
- "2011-03-01",
- "2011-04-01",
- "2011-10-01",
- "2011-11-01",
- "2011-12-01",
- "2012-01-01",
- "2012-02-01",
- "2012-03-01"
- ],
- "GHS_BUILT_S": [
- "1975-01-01",
- "1980-01-01",
- "1985-01-01",
- "1990-01-01",
- "1995-01-01",
- "2000-01-01",
- "2005-01-01",
- "2010-01-01",
- "2015-01-01",
- "2020-01-01",
- "2025-01-01",
- "2030-01-01"
- ],
- "IS2SITMOGR4-cog": [
- [
- "2018-11-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201811_005_002.tif"
- ],
- [
- "2018-12-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201812_005_002.tif"
- ],
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201901_005_002.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201902_005_002.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201903_005_002.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201904_005_002.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201909_005_002.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201910_005_002.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201911_005_002.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_201912_005_002.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202001_005_002.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202002_005_002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202003_005_002.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202004_005_002.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202009_005_002.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202010_005_002.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202011_005_002.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202012_005_002.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202101_005_002.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202102_005_002.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202103_005_002.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/IS2SITMOGR4-cog/IS2SITMOGR4_01_202104_005_002.tif"
- ]
- ],
- "LAKES_SURFACE_WATER_TEMPERATURE_Aral": [
- "2010-01-02",
- "2010-01-03",
- "2010-01-05",
- "2010-01-06",
- "2010-01-07",
- "2010-01-08",
- "2010-01-09",
- "2010-01-13",
- "2010-01-14",
- "2010-01-17",
- "2010-01-19",
- "2010-01-20",
- "2010-01-24",
- "2010-01-30",
- "2010-01-31",
- "2010-02-17",
- "2010-02-19",
- "2010-02-20",
- "2010-02-21",
- "2010-02-24",
- "2010-02-25",
- "2010-02-26",
- "2010-02-27",
- "2010-02-28",
- "2010-03-01",
- "2010-03-02",
- "2010-03-03",
- "2010-03-04",
- "2010-03-05",
- "2010-03-07",
- "2010-03-08",
- "2010-03-11",
- "2010-03-12",
- "2010-03-13",
- "2010-03-14",
- "2010-03-17",
- "2010-03-18",
- "2010-03-20",
- "2010-03-21",
- "2010-03-22",
- "2010-03-23",
- "2010-03-24",
- "2010-03-25",
- "2010-03-26",
- "2010-03-27",
- "2010-03-28",
- "2010-03-29",
- "2010-03-30",
- "2010-03-31",
- "2010-04-01",
- "2010-04-02",
- "2010-04-03",
- "2010-04-04",
- "2010-04-06",
- "2010-04-07",
- "2010-04-08",
- "2010-04-10",
- "2010-04-11",
- "2010-04-12",
- "2010-04-13",
- "2010-04-14",
- "2010-04-15",
- "2010-04-16",
- "2010-04-17",
- "2010-04-18",
- "2010-04-19",
- "2010-04-20",
- "2010-04-21",
- "2010-04-22",
- "2010-04-23",
- "2010-04-24",
- "2010-04-25",
- "2010-04-26",
- "2010-04-27",
- "2010-04-29",
- "2010-04-30",
- "2010-05-01",
- "2010-05-02",
- "2010-05-03",
- "2010-05-04",
- "2010-05-05",
- "2010-05-06",
- "2010-05-07",
- "2010-05-08",
- "2010-05-09",
- "2010-05-10",
- "2010-05-11",
- "2010-05-12",
- "2010-05-13",
- "2010-05-14",
- "2010-05-15",
- "2010-05-16",
- "2010-05-17",
- "2010-05-18",
- "2010-05-19",
- "2010-05-20",
- "2010-05-21",
- "2010-05-22",
- "2010-05-23",
- "2010-05-24",
- "2010-05-25",
- "2010-05-26",
- "2010-05-27",
- "2010-05-28",
- "2010-05-29",
- "2010-05-30",
- "2010-05-31",
- "2010-06-01",
- "2010-06-02",
- "2010-06-03",
- "2010-06-04",
- "2010-06-05",
- "2010-06-06",
- "2010-06-07",
- "2010-06-08",
- "2010-06-09",
- "2010-06-10",
- "2010-06-11",
- "2010-06-12",
- "2010-06-13",
- "2010-06-14",
- "2010-06-15",
- "2010-06-16",
- "2010-06-17",
- "2010-06-18",
- "2010-06-19",
- "2010-06-20",
- "2010-06-21",
- "2010-06-22",
- "2010-06-23",
- "2010-06-24",
- "2010-06-25",
- "2010-06-26",
- "2010-06-27",
- "2010-06-28",
- "2010-06-29",
- "2010-06-30",
- "2010-07-01",
- "2010-07-02",
- "2010-07-03",
- "2010-07-04",
- "2010-07-05",
- "2010-07-06",
- "2010-07-07",
- "2010-07-08",
- "2010-07-09",
- "2010-07-10",
- "2010-07-11",
- "2010-07-12",
- "2010-07-13",
- "2010-07-14",
- "2010-07-15",
- "2010-07-16",
- "2010-07-17",
- "2010-07-18",
- "2010-07-19",
- "2010-07-20",
- "2010-07-21",
- "2010-07-22",
- "2010-07-23",
- "2010-07-24",
- "2010-07-25",
- "2010-07-26",
- "2010-07-27",
- "2010-07-28",
- "2010-07-29",
- "2010-07-30",
- "2010-07-31",
- "2010-08-01",
- "2010-08-02",
- "2010-08-03",
- "2010-08-04",
- "2010-08-05",
- "2010-08-06",
- "2010-08-07",
- "2010-08-08",
- "2010-08-09",
- "2010-08-10",
- "2010-08-11",
- "2010-08-12",
- "2010-08-13",
- "2010-08-14",
- "2010-08-15",
- "2010-08-16",
- "2010-08-17",
- "2010-08-18",
- "2010-08-19",
- "2010-08-20",
- "2010-08-21",
- "2010-08-22",
- "2010-08-23",
- "2010-08-24",
- "2010-08-25",
- "2010-08-26",
- "2010-08-27",
- "2010-08-28",
- "2010-08-29",
- "2010-08-30",
- "2010-08-31",
- "2010-09-01",
- "2010-09-02",
- "2010-09-03",
- "2010-09-04",
- "2010-09-05",
- "2010-09-06",
- "2010-09-07",
- "2010-09-08",
- "2010-09-09",
- "2010-09-11",
- "2010-09-12",
- "2010-09-13",
- "2010-09-15",
- "2010-09-16",
- "2010-09-17",
- "2010-09-18",
- "2010-09-19",
- "2010-09-20",
- "2010-09-21",
- "2010-09-22",
- "2010-09-23",
- "2010-09-24",
- "2010-09-25",
- "2010-09-26",
- "2010-09-27",
- "2010-09-28",
- "2010-09-29",
- "2010-09-30",
- "2010-10-01",
- "2010-10-02",
- "2010-10-03",
- "2010-10-04",
- "2010-10-05",
- "2010-10-06",
- "2010-10-07",
- "2010-10-08",
- "2010-10-09",
- "2010-10-10",
- "2010-10-11",
- "2010-10-12",
- "2010-10-13",
- "2010-10-14",
- "2010-10-15",
- "2010-10-17",
- "2010-10-18",
- "2010-10-19",
- "2010-10-20",
- "2010-10-21",
- "2010-10-22",
- "2010-10-23",
- "2010-10-24",
- "2010-10-25",
- "2010-10-26",
- "2010-10-27",
- "2010-10-28",
- "2010-10-29",
- "2010-10-30",
- "2010-11-01",
- "2010-11-03",
- "2010-11-04",
- "2010-11-05",
- "2010-11-06",
- "2010-11-07",
- "2010-11-08",
- "2010-11-09",
- "2010-11-10",
- "2010-11-11",
- "2010-11-12",
- "2010-11-13",
- "2010-11-14",
- "2010-11-15",
- "2010-11-16",
- "2010-11-17",
- "2010-11-18",
- "2010-11-19",
- "2010-11-20",
- "2010-11-21",
- "2010-11-22",
- "2010-11-23",
- "2010-11-24",
- "2010-11-25",
- "2010-11-26",
- "2010-11-27",
- "2010-11-28",
- "2010-11-29",
- "2010-11-30",
- "2010-12-01",
- "2010-12-02",
- "2010-12-03",
- "2010-12-05",
- "2010-12-06",
- "2010-12-07",
- "2010-12-08",
- "2010-12-09",
- "2010-12-10",
- "2010-12-11",
- "2010-12-12",
- "2010-12-13",
- "2010-12-14",
- "2010-12-15",
- "2010-12-16",
- "2010-12-17",
- "2010-12-18",
- "2010-12-19",
- "2010-12-21",
- "2010-12-22",
- "2010-12-23",
- "2010-12-24",
- "2010-12-25",
- "2010-12-26",
- "2010-12-27",
- "2010-12-28",
- "2010-12-29",
- "2010-12-30",
- "2010-12-31",
- "2011-01-03",
- "2011-01-05",
- "2011-01-06",
- "2011-01-07",
- "2011-01-08",
- "2011-01-09",
- "2011-01-10",
- "2011-01-11",
- "2011-01-12",
- "2011-01-13",
- "2011-01-14",
- "2011-01-15",
- "2011-01-16",
- "2011-02-01",
- "2011-02-05",
- "2011-02-06",
- "2011-02-08",
- "2011-02-09",
- "2011-02-10",
- "2011-02-11",
- "2011-02-12",
- "2011-02-15",
- "2011-03-06",
- "2011-03-07",
- "2011-03-08",
- "2011-03-10",
- "2011-03-12",
- "2011-03-14",
- "2011-03-15",
- "2011-03-16",
- "2011-03-17",
- "2011-03-18",
- "2011-03-19",
- "2011-03-20",
- "2011-03-21",
- "2011-03-22",
- "2011-03-23",
- "2011-03-25",
- "2011-03-26",
- "2011-03-27",
- "2011-03-28",
- "2011-03-29",
- "2011-03-30",
- "2011-03-31",
- "2011-04-01",
- "2011-04-02",
- "2011-04-03",
- "2011-04-04",
- "2011-04-05",
- "2011-04-06",
- "2011-04-07",
- "2011-04-08",
- "2011-04-09",
- "2011-04-10",
- "2011-04-11",
- "2011-04-12",
- "2011-04-13",
- "2011-04-14",
- "2011-04-15",
- "2011-04-16",
- "2011-04-17",
- "2011-04-18",
- "2011-04-19",
- "2011-04-20",
- "2011-04-21",
- "2011-04-22",
- "2011-04-24",
- "2011-04-25",
- "2011-04-26",
- "2011-04-27",
- "2011-04-28",
- "2011-04-29",
- "2011-04-30",
- "2011-05-01",
- "2011-05-02",
- "2011-05-03",
- "2011-05-04",
- "2011-05-05",
- "2011-05-06",
- "2011-05-07",
- "2011-05-08",
- "2011-05-09",
- "2011-05-10",
- "2011-05-11",
- "2011-05-12",
- "2011-05-13",
- "2011-05-14",
- "2011-05-15",
- "2011-05-16",
- "2011-05-17",
- "2011-05-18",
- "2011-05-19",
- "2011-05-20",
- "2011-05-21",
- "2011-05-22",
- "2011-05-23",
- "2011-05-24",
- "2011-05-25",
- "2011-05-26",
- "2011-05-27",
- "2011-05-28",
- "2011-05-29",
- "2011-05-30",
- "2011-05-31",
- "2011-06-01",
- "2011-06-02",
- "2011-06-03",
- "2011-06-04",
- "2011-06-05",
- "2011-06-06",
- "2011-06-07",
- "2011-06-08",
- "2011-06-09",
- "2011-06-10",
- "2011-06-11",
- "2011-06-12",
- "2011-06-13",
- "2011-06-14",
- "2011-06-15",
- "2011-06-16",
- "2011-06-17",
- "2011-06-18",
- "2011-06-19",
- "2011-06-20",
- "2011-06-21",
- "2011-06-22",
- "2011-06-23",
- "2011-06-24",
- "2011-06-25",
- "2011-06-26",
- "2011-06-27",
- "2011-06-28",
- "2011-06-29",
- "2011-06-30",
- "2011-07-01",
- "2011-07-02",
- "2011-07-03",
- "2011-07-04",
- "2011-07-05",
- "2011-07-06",
- "2011-07-07",
- "2011-07-08",
- "2011-07-09",
- "2011-07-10",
- "2011-07-11",
- "2011-07-12",
- "2011-07-13",
- "2011-07-14",
- "2011-07-15",
- "2011-07-16",
- "2011-07-17",
- "2011-07-18",
- "2011-07-19",
- "2011-07-20",
- "2011-07-21",
- "2011-07-22",
- "2011-07-23",
- "2011-07-24",
- "2011-07-25",
- "2011-07-26",
- "2011-07-27",
- "2011-07-28",
- "2011-07-29",
- "2011-07-30",
- "2011-07-31",
- "2011-08-01",
- "2011-08-02",
- "2011-08-03",
- "2011-08-04",
- "2011-08-05",
- "2011-08-06",
- "2011-08-07",
- "2011-08-08",
- "2011-08-09",
- "2011-08-10",
- "2011-08-11",
- "2011-08-12",
- "2011-08-13",
- "2011-08-14",
- "2011-08-15",
- "2011-08-16",
- "2011-08-17",
- "2011-08-18",
- "2011-08-19",
- "2011-08-20",
- "2011-08-21",
- "2011-08-22",
- "2011-08-23",
- "2011-08-24",
- "2011-08-25",
- "2011-08-26",
- "2011-08-27",
- "2011-08-28",
- "2011-08-29",
- "2011-08-30",
- "2011-08-31",
- "2011-09-01",
- "2011-09-02",
- "2011-09-03",
- "2011-09-04",
- "2011-09-05",
- "2011-09-06",
- "2011-09-07",
- "2011-09-08",
- "2011-09-09",
- "2011-09-10",
- "2011-09-11",
- "2011-09-12",
- "2011-09-13",
- "2011-09-14",
- "2011-09-15",
- "2011-09-16",
- "2011-09-17",
- "2011-09-18",
- "2011-09-19",
- "2011-09-20",
- "2011-09-21",
- "2011-09-22",
- "2011-09-23",
- "2011-09-24",
- "2011-09-25",
- "2011-09-26",
- "2011-09-27",
- "2011-09-28",
- "2011-09-29",
- "2011-09-30",
- "2011-10-01",
- "2011-10-02",
- "2011-10-03",
- "2011-10-04",
- "2011-10-05",
- "2011-10-06",
- "2011-10-07",
- "2011-10-08",
- "2011-10-09",
- "2011-10-10",
- "2011-10-11",
- "2011-10-12",
- "2011-10-13",
- "2011-10-14",
- "2011-10-15",
- "2011-10-16",
- "2011-10-17",
- "2011-10-18",
- "2011-10-19",
- "2011-10-20",
- "2011-10-21",
- "2011-10-22",
- "2011-10-23",
- "2011-10-24",
- "2011-10-25",
- "2011-10-26",
- "2011-10-27",
- "2011-10-28",
- "2011-10-29",
- "2011-10-30",
- "2011-10-31",
- "2011-11-01",
- "2011-11-02",
- "2011-11-03",
- "2011-11-04",
- "2011-11-05",
- "2011-11-06",
- "2011-11-07",
- "2011-11-08",
- "2011-11-09",
- "2011-11-10",
- "2011-11-11",
- "2011-11-12",
- "2011-11-14",
- "2011-11-16",
- "2011-11-17",
- "2011-11-18",
- "2011-11-19",
- "2011-11-20",
- "2011-11-21",
- "2011-11-22",
- "2011-11-23",
- "2011-11-24",
- "2011-11-25",
- "2011-11-26",
- "2011-11-27",
- "2011-11-28",
- "2011-11-29",
- "2011-11-30",
- "2011-12-01",
- "2011-12-02",
- "2011-12-03",
- "2011-12-04",
- "2011-12-05",
- "2011-12-06",
- "2011-12-07",
- "2011-12-08",
- "2011-12-09",
- "2011-12-10",
- "2011-12-11",
- "2011-12-12",
- "2011-12-13",
- "2011-12-14",
- "2011-12-15",
- "2011-12-16",
- "2011-12-17",
- "2011-12-18",
- "2011-12-19",
- "2011-12-20",
- "2011-12-21",
- "2011-12-28",
- "2011-12-29",
- "2011-12-30",
- "2011-12-31",
- "2012-01-01",
- "2012-01-02",
- "2012-01-05",
- "2012-01-09",
- "2012-01-10",
- "2012-01-11",
- "2012-01-17",
- "2012-01-18",
- "2012-02-22",
- "2012-02-26",
- "2012-02-27",
- "2012-02-28",
- "2012-02-29",
- "2012-03-01",
- "2012-03-05",
- "2012-03-06",
- "2012-03-08",
- "2012-03-09",
- "2012-03-12",
- "2012-03-14",
- "2012-03-15",
- "2012-03-16",
- "2012-03-18",
- "2012-03-20",
- "2012-03-21",
- "2012-03-22",
- "2012-03-23",
- "2012-03-24",
- "2012-03-25",
- "2012-03-26",
- "2012-03-27",
- "2012-03-29",
- "2012-03-30",
- "2012-04-01",
- "2012-04-02",
- "2012-04-03",
- "2012-04-04",
- "2012-04-05",
- "2012-04-06",
- "2012-04-07",
- "2012-04-08",
- "2012-04-09",
- "2012-04-10",
- "2012-04-11",
- "2012-04-12",
- "2012-04-13",
- "2012-04-14",
- "2012-04-15",
- "2012-04-16",
- "2012-04-17",
- "2012-04-18",
- "2012-04-19",
- "2012-04-20",
- "2012-04-21",
- "2012-04-22",
- "2012-04-23",
- "2012-04-24",
- "2012-04-25",
- "2012-04-26",
- "2012-04-27",
- "2012-04-28",
- "2012-04-29",
- "2012-04-30",
- "2012-05-01",
- "2012-05-02",
- "2012-05-03",
- "2012-05-04",
- "2012-05-05",
- "2012-05-06",
- "2012-05-07",
- "2012-05-08",
- "2012-05-09",
- "2012-05-10",
- "2012-05-11",
- "2012-05-12",
- "2012-05-13",
- "2012-05-14",
- "2012-05-15",
- "2012-05-16",
- "2012-05-17",
- "2012-05-18",
- "2012-05-19",
- "2012-05-20",
- "2012-05-21",
- "2012-05-22",
- "2012-05-23",
- "2012-05-24",
- "2012-05-25",
- "2012-05-26",
- "2012-05-27",
- "2012-05-28",
- "2012-05-29",
- "2012-05-30",
- "2012-05-31",
- "2012-06-01",
- "2012-06-02",
- "2012-06-03",
- "2012-06-04",
- "2012-06-05",
- "2012-06-06",
- "2012-06-07",
- "2012-06-08",
- "2012-06-09",
- "2012-06-10",
- "2012-06-11",
- "2012-06-12",
- "2012-06-13",
- "2012-06-14",
- "2012-06-15",
- "2012-06-16",
- "2012-06-17",
- "2012-06-18",
- "2012-06-19",
- "2012-06-20",
- "2012-06-21",
- "2012-06-22",
- "2012-06-23",
- "2012-06-24",
- "2012-06-25",
- "2012-06-26",
- "2012-06-27",
- "2012-06-28",
- "2012-06-29",
- "2012-06-30",
- "2012-07-01",
- "2012-07-02",
- "2012-07-03",
- "2012-07-04",
- "2012-07-05",
- "2012-07-06",
- "2012-07-07",
- "2012-07-08",
- "2012-07-09",
- "2012-07-10",
- "2012-07-11",
- "2012-07-12",
- "2012-07-13",
- "2012-07-14",
- "2012-07-15",
- "2012-07-16",
- "2012-07-17",
- "2012-07-18",
- "2012-07-19",
- "2012-07-20",
- "2012-07-21",
- "2012-07-22",
- "2012-07-23",
- "2012-07-24",
- "2012-07-25",
- "2012-07-26",
- "2012-07-27",
- "2012-07-28",
- "2012-07-29",
- "2012-07-30",
- "2012-07-31",
- "2012-08-01",
- "2012-08-02",
- "2012-08-03",
- "2012-08-04",
- "2012-08-05",
- "2012-08-06",
- "2012-08-07",
- "2012-08-08",
- "2012-08-09",
- "2012-08-10",
- "2012-08-11",
- "2012-08-12",
- "2012-08-13",
- "2012-08-14",
- "2012-08-15",
- "2012-08-16",
- "2012-08-17",
- "2012-08-18",
- "2012-08-19",
- "2012-08-20",
- "2012-08-21",
- "2012-08-22",
- "2012-08-23",
- "2012-08-24",
- "2012-08-25",
- "2012-08-26",
- "2012-08-27",
- "2012-08-28",
- "2012-08-29",
- "2012-08-30",
- "2012-08-31",
- "2012-09-01",
- "2012-09-02",
- "2012-09-03",
- "2012-09-04",
- "2012-09-05",
- "2012-09-06",
- "2012-09-07",
- "2012-09-08",
- "2012-09-09",
- "2012-09-10",
- "2012-09-11",
- "2012-09-12",
- "2012-09-13",
- "2012-09-14",
- "2012-09-15",
- "2012-09-16",
- "2012-09-17",
- "2012-09-18",
- "2012-09-19",
- "2012-09-20",
- "2012-09-21",
- "2012-09-22",
- "2012-09-23",
- "2012-09-24",
- "2012-09-25",
- "2012-09-26",
- "2012-09-27",
- "2012-09-28",
- "2012-09-29",
- "2012-09-30",
- "2012-10-01",
- "2012-10-02",
- "2012-10-03",
- "2012-10-04",
- "2012-10-05",
- "2012-10-06",
- "2012-10-07",
- "2012-10-08",
- "2012-10-09",
- "2012-10-10",
- "2012-10-11",
- "2012-10-12",
- "2012-10-13",
- "2012-10-14",
- "2012-10-15",
- "2012-10-16",
- "2012-10-17",
- "2012-10-18",
- "2012-10-19",
- "2012-10-20",
- "2012-10-21",
- "2012-10-22",
- "2012-10-23",
- "2012-10-24",
- "2012-10-25",
- "2012-10-26",
- "2012-10-27",
- "2012-10-28",
- "2012-10-29",
- "2012-10-30",
- "2012-10-31",
- "2012-11-01",
- "2012-11-02",
- "2012-11-03",
- "2012-11-04",
- "2012-11-05",
- "2012-11-06",
- "2012-11-07",
- "2012-11-08",
- "2012-11-09",
- "2012-11-10",
- "2012-11-11",
- "2012-11-12",
- "2012-11-13",
- "2012-11-14",
- "2012-11-15",
- "2012-11-17",
- "2012-11-18",
- "2012-11-19",
- "2012-11-20",
- "2012-11-21",
- "2012-11-22",
- "2012-11-23",
- "2012-11-24",
- "2012-11-25",
- "2012-11-26",
- "2012-11-27",
- "2012-11-28",
- "2012-11-29",
- "2012-11-30",
- "2012-12-01",
- "2012-12-02",
- "2012-12-03",
- "2012-12-04",
- "2012-12-05",
- "2012-12-06",
- "2012-12-07",
- "2012-12-08",
- "2012-12-10",
- "2012-12-11",
- "2012-12-12",
- "2012-12-13",
- "2012-12-14",
- "2012-12-15",
- "2012-12-16",
- "2012-12-17",
- "2012-12-18",
- "2012-12-19",
- "2012-12-23",
- "2012-12-29",
- "2012-12-30",
- "2013-01-01",
- "2013-01-02",
- "2013-01-03",
- "2013-01-09",
- "2013-01-10",
- "2013-01-24",
- "2013-01-25",
- "2013-01-27",
- "2013-01-29",
- "2013-01-31",
- "2013-02-02",
- "2013-02-04",
- "2013-02-05",
- "2013-02-06",
- "2013-02-07",
- "2013-02-09",
- "2013-02-10",
- "2013-02-11",
- "2013-02-12",
- "2013-02-13",
- "2013-02-14",
- "2013-02-15",
- "2013-02-16",
- "2013-02-20",
- "2013-02-21",
- "2013-02-23",
- "2013-02-24",
- "2013-02-25",
- "2013-02-26",
- "2013-02-27",
- "2013-02-28",
- "2013-03-01",
- "2013-03-02",
- "2013-03-03",
- "2013-03-04",
- "2013-03-05",
- "2013-03-06",
- "2013-03-07",
- "2013-03-08",
- "2013-03-09",
- "2013-03-10",
- "2013-03-11",
- "2013-03-12",
- "2013-03-13",
- "2013-03-14",
- "2013-03-15",
- "2013-03-17",
- "2013-03-18",
- "2013-03-19",
- "2013-03-20",
- "2013-03-21",
- "2013-03-22",
- "2013-03-23",
- "2013-03-24",
- "2013-03-25",
- "2013-03-26",
- "2013-03-28",
- "2013-03-29",
- "2013-03-30",
- "2013-03-31",
- "2013-04-01",
- "2013-04-02",
- "2013-04-03",
- "2013-04-04",
- "2013-04-05",
- "2013-04-06",
- "2013-04-07",
- "2013-04-08",
- "2013-04-09",
- "2013-04-10",
- "2013-04-11",
- "2013-04-12",
- "2013-04-13",
- "2013-04-15",
- "2013-04-16",
- "2013-04-17",
- "2013-04-18",
- "2013-04-19",
- "2013-04-20",
- "2013-04-21",
- "2013-04-22",
- "2013-04-23",
- "2013-04-24",
- "2013-04-25",
- "2013-04-26",
- "2013-04-27",
- "2013-04-28",
- "2013-04-29",
- "2013-04-30",
- "2013-05-01",
- "2013-05-02",
- "2013-05-03",
- "2013-05-04",
- "2013-05-05",
- "2013-05-06",
- "2013-05-07",
- "2013-05-08",
- "2013-05-09",
- "2013-05-10",
- "2013-05-11",
- "2013-05-12",
- "2013-05-13",
- "2013-05-14",
- "2013-05-15",
- "2013-05-16",
- "2013-05-17",
- "2013-05-18",
- "2013-05-19",
- "2013-05-20",
- "2013-05-21",
- "2013-05-22",
- "2013-05-23",
- "2013-05-24",
- "2013-05-25",
- "2013-05-26",
- "2013-05-27",
- "2013-05-28",
- "2013-05-29",
- "2013-05-30",
- "2013-05-31",
- "2013-06-01",
- "2013-06-02",
- "2013-06-03",
- "2013-06-04",
- "2013-06-05",
- "2013-06-06",
- "2013-06-07",
- "2013-06-08",
- "2013-06-09",
- "2013-06-10",
- "2013-06-11",
- "2013-06-12",
- "2013-06-13",
- "2013-06-14",
- "2013-06-15",
- "2013-06-16",
- "2013-06-17",
- "2013-06-18",
- "2013-06-19",
- "2013-06-20",
- "2013-06-21",
- "2013-06-22",
- "2013-06-23",
- "2013-06-24",
- "2013-06-25",
- "2013-06-26",
- "2013-06-27",
- "2013-06-28",
- "2013-06-29",
- "2013-06-30",
- "2013-07-01",
- "2013-07-02",
- "2013-07-03",
- "2013-07-04",
- "2013-07-05",
- "2013-07-06",
- "2013-07-07",
- "2013-07-08",
- "2013-07-09",
- "2013-07-10",
- "2013-07-11",
- "2013-07-12",
- "2013-07-13",
- "2013-07-14",
- "2013-07-15",
- "2013-07-16",
- "2013-07-17",
- "2013-07-18",
- "2013-07-19",
- "2013-07-20",
- "2013-07-21",
- "2013-07-22",
- "2013-07-23",
- "2013-07-24",
- "2013-07-25",
- "2013-07-26",
- "2013-07-27",
- "2013-07-28",
- "2013-07-29",
- "2013-07-30",
- "2013-07-31",
- "2013-08-01",
- "2013-08-02",
- "2013-08-03",
- "2013-08-04",
- "2013-08-05",
- "2013-08-06",
- "2013-08-07",
- "2013-08-08",
- "2013-08-09",
- "2013-08-10",
- "2013-08-11",
- "2013-08-12",
- "2013-08-13",
- "2013-08-14",
- "2013-08-15",
- "2013-08-16",
- "2013-08-17",
- "2013-08-18",
- "2013-08-19",
- "2013-08-20",
- "2013-08-21",
- "2013-08-22",
- "2013-08-23",
- "2013-08-24",
- "2013-08-25",
- "2013-08-26",
- "2013-08-27",
- "2013-08-28",
- "2013-08-29",
- "2013-08-30",
- "2013-08-31",
- "2013-09-01",
- "2013-09-02",
- "2013-09-03",
- "2013-09-04",
- "2013-09-05",
- "2013-09-06",
- "2013-09-07",
- "2013-09-08",
- "2013-09-09",
- "2013-09-10",
- "2013-09-11",
- "2013-09-12",
- "2013-09-13",
- "2013-09-14",
- "2013-09-15",
- "2013-09-16",
- "2013-09-17",
- "2013-09-18",
- "2013-09-19",
- "2013-09-20",
- "2013-09-21",
- "2013-09-22",
- "2013-09-23",
- "2013-09-24",
- "2013-09-25",
- "2013-09-26",
- "2013-09-27",
- "2013-09-28",
- "2013-09-29",
- "2013-09-30",
- "2013-10-01",
- "2013-10-02",
- "2013-10-03",
- "2013-10-04",
- "2013-10-05",
- "2013-10-06",
- "2013-10-07",
- "2013-10-08",
- "2013-10-09",
- "2013-10-10",
- "2013-10-11",
- "2013-10-12",
- "2013-10-13",
- "2013-10-14",
- "2013-10-15",
- "2013-10-16",
- "2013-10-17",
- "2013-10-18",
- "2013-10-19",
- "2013-10-20",
- "2013-10-21",
- "2013-10-22",
- "2013-10-23",
- "2013-10-24",
- "2013-10-25",
- "2013-10-26",
- "2013-10-27",
- "2013-10-28",
- "2013-10-29",
- "2013-10-30",
- "2013-10-31",
- "2013-11-01",
- "2013-11-02",
- "2013-11-03",
- "2013-11-04",
- "2013-11-05",
- "2013-11-06",
- "2013-11-07",
- "2013-11-08",
- "2013-11-09",
- "2013-11-10",
- "2013-11-11",
- "2013-11-12",
- "2013-11-13",
- "2013-11-14",
- "2013-11-15",
- "2013-11-16",
- "2013-11-18",
- "2013-11-19",
- "2013-11-20",
- "2013-11-21",
- "2013-11-22",
- "2013-11-23",
- "2013-11-24",
- "2013-11-25",
- "2013-11-26",
- "2013-11-27",
- "2013-11-28",
- "2013-12-01",
- "2013-12-02",
- "2013-12-03",
- "2013-12-04",
- "2013-12-05",
- "2013-12-06",
- "2013-12-07",
- "2013-12-08",
- "2013-12-09",
- "2013-12-11",
- "2013-12-13",
- "2013-12-15",
- "2013-12-16",
- "2013-12-17",
- "2013-12-18",
- "2013-12-19",
- "2013-12-20",
- "2013-12-21",
- "2013-12-22",
- "2013-12-23",
- "2013-12-24",
- "2013-12-25",
- "2013-12-26",
- "2013-12-27",
- "2013-12-29",
- "2013-12-30",
- "2013-12-31",
- "2014-01-01",
- "2014-01-02",
- "2014-01-04",
- "2014-01-05",
- "2014-01-12",
- "2014-01-13",
- "2014-01-15",
- "2014-01-18",
- "2014-01-20",
- "2014-01-21",
- "2014-01-22",
- "2014-01-26",
- "2014-01-27",
- "2014-02-15",
- "2014-02-18",
- "2014-02-20",
- "2014-02-25",
- "2014-02-27",
- "2014-02-28",
- "2014-03-02",
- "2014-03-03",
- "2014-03-05",
- "2014-03-06",
- "2014-03-07",
- "2014-03-08",
- "2014-03-09",
- "2014-03-10",
- "2014-03-11",
- "2014-03-13",
- "2014-03-14",
- "2014-03-15",
- "2014-03-16",
- "2014-03-17",
- "2014-03-18",
- "2014-03-19",
- "2014-03-20",
- "2014-03-21",
- "2014-03-22",
- "2014-03-23",
- "2014-03-24",
- "2014-03-25",
- "2014-03-26",
- "2014-03-27",
- "2014-03-28",
- "2014-03-29",
- "2014-03-30",
- "2014-03-31",
- "2014-04-01",
- "2014-04-02",
- "2014-04-03",
- "2014-04-04",
- "2014-04-05",
- "2014-04-07",
- "2014-04-08",
- "2014-04-09",
- "2014-04-10",
- "2014-04-11",
- "2014-04-12",
- "2014-04-13",
- "2014-04-14",
- "2014-04-15",
- "2014-04-16",
- "2014-04-17",
- "2014-04-18",
- "2014-04-19",
- "2014-04-20",
- "2014-04-21",
- "2014-04-22",
- "2014-04-23",
- "2014-04-24",
- "2014-04-25",
- "2014-04-26",
- "2014-04-27",
- "2014-04-28",
- "2014-04-29",
- "2014-04-30",
- "2014-05-01",
- "2014-05-02",
- "2014-05-03",
- "2014-05-04",
- "2014-05-05",
- "2014-05-06",
- "2014-05-07",
- "2014-05-08",
- "2014-05-09",
- "2014-05-10",
- "2014-05-11",
- "2014-05-12",
- "2014-05-13",
- "2014-05-14",
- "2014-05-15",
- "2014-05-16",
- "2014-05-17",
- "2014-05-18",
- "2014-05-19",
- "2014-05-20",
- "2014-05-21",
- "2014-05-22",
- "2014-05-23",
- "2014-05-24",
- "2014-05-25",
- "2014-05-26",
- "2014-05-27",
- "2014-05-28",
- "2014-05-29",
- "2014-05-30",
- "2014-05-31",
- "2014-06-01",
- "2014-06-02",
- "2014-06-03",
- "2014-06-04",
- "2014-06-05",
- "2014-06-06",
- "2014-06-07",
- "2014-06-08",
- "2014-06-09",
- "2014-06-10",
- "2014-06-11",
- "2014-06-12",
- "2014-06-13",
- "2014-06-14",
- "2014-06-15",
- "2014-06-16",
- "2014-06-17",
- "2014-06-18",
- "2014-06-19",
- "2014-06-20",
- "2014-06-21",
- "2014-06-22",
- "2014-06-23",
- "2014-06-24",
- "2014-06-25",
- "2014-06-26",
- "2014-06-27",
- "2014-06-28",
- "2014-06-29",
- "2014-06-30",
- "2014-07-01",
- "2014-07-02",
- "2014-07-03",
- "2014-07-04",
- "2014-07-05",
- "2014-07-06",
- "2014-07-07",
- "2014-07-08",
- "2014-07-09",
- "2014-07-10",
- "2014-07-11",
- "2014-07-12",
- "2014-07-13",
- "2014-07-14",
- "2014-07-15",
- "2014-07-16",
- "2014-07-17",
- "2014-07-18",
- "2014-07-19",
- "2014-07-20",
- "2014-07-21",
- "2014-07-22",
- "2014-07-23",
- "2014-07-24",
- "2014-07-25",
- "2014-07-26",
- "2014-07-27",
- "2014-07-28",
- "2014-07-29",
- "2014-07-30",
- "2014-07-31",
- "2014-08-01",
- "2014-08-02",
- "2014-08-03",
- "2014-08-04",
- "2014-08-05",
- "2014-08-06",
- "2014-08-07",
- "2014-08-08",
- "2014-08-09",
- "2014-08-10",
- "2014-08-11",
- "2014-08-12",
- "2014-08-13",
- "2014-08-14",
- "2014-08-15",
- "2014-08-16",
- "2014-08-17",
- "2014-08-18",
- "2014-08-19",
- "2014-08-20",
- "2014-08-21",
- "2014-08-22",
- "2014-08-23",
- "2014-08-24",
- "2014-08-25",
- "2014-08-26",
- "2014-08-27",
- "2014-08-28",
- "2014-08-29",
- "2014-08-30",
- "2014-08-31",
- "2014-09-01",
- "2014-09-02",
- "2014-09-03",
- "2014-09-04",
- "2014-09-05",
- "2014-09-06",
- "2014-09-07",
- "2014-09-08",
- "2014-09-09",
- "2014-09-10",
- "2014-09-11",
- "2014-09-12",
- "2014-09-13",
- "2014-09-14",
- "2014-09-15",
- "2014-09-16",
- "2014-09-17",
- "2014-09-18",
- "2014-09-19",
- "2014-09-20",
- "2014-09-21",
- "2014-09-22",
- "2014-09-23",
- "2014-09-24",
- "2014-09-25",
- "2014-09-26",
- "2014-09-27",
- "2014-09-28",
- "2014-09-29",
- "2014-09-30",
- "2014-10-01",
- "2014-10-02",
- "2014-10-03",
- "2014-10-04",
- "2014-10-05",
- "2014-10-06",
- "2014-10-07",
- "2014-10-08",
- "2014-10-09",
- "2014-10-10",
- "2014-10-11",
- "2014-10-12",
- "2014-10-13",
- "2014-10-14",
- "2014-10-15",
- "2014-10-16",
- "2014-10-17",
- "2014-10-18",
- "2014-10-19",
- "2014-10-20",
- "2014-10-21",
- "2014-10-22",
- "2014-10-23",
- "2014-10-24",
- "2014-10-25",
- "2014-10-26",
- "2014-10-27",
- "2014-10-28",
- "2014-10-29",
- "2014-10-30",
- "2014-10-31",
- "2014-11-01",
- "2014-11-02",
- "2014-11-04",
- "2014-11-05",
- "2014-11-06",
- "2014-11-07",
- "2014-11-08",
- "2014-11-09",
- "2014-11-10",
- "2014-11-11",
- "2014-11-12",
- "2014-11-13",
- "2014-11-16",
- "2014-11-17",
- "2014-11-18",
- "2014-11-19",
- "2014-11-20",
- "2014-11-21",
- "2014-11-22",
- "2014-11-23",
- "2014-11-24",
- "2014-11-25",
- "2014-11-26",
- "2014-11-27",
- "2014-11-28",
- "2014-11-29",
- "2014-11-30",
- "2014-12-01",
- "2014-12-02",
- "2014-12-03",
- "2014-12-04",
- "2014-12-05",
- "2014-12-06",
- "2014-12-07",
- "2014-12-08",
- "2014-12-09",
- "2014-12-10",
- "2014-12-11",
- "2014-12-12",
- "2014-12-13",
- "2014-12-16",
- "2014-12-17",
- "2014-12-18",
- "2014-12-19",
- "2014-12-20",
- "2014-12-21",
- "2014-12-22",
- "2014-12-25",
- "2014-12-26",
- "2014-12-27",
- "2014-12-28",
- "2015-01-01",
- "2015-01-02",
- "2015-01-06",
- "2015-01-07",
- "2015-01-09",
- "2015-01-10",
- "2015-01-11",
- "2015-01-12",
- "2015-01-14",
- "2015-01-15",
- "2015-01-16",
- "2015-01-17",
- "2015-01-18",
- "2015-01-19",
- "2015-01-20",
- "2015-01-23",
- "2015-01-24",
- "2015-01-25",
- "2015-01-26",
- "2015-01-27",
- "2015-01-28",
- "2015-01-31",
- "2015-02-01",
- "2015-02-03",
- "2015-02-06",
- "2015-02-08",
- "2015-02-09",
- "2015-02-11",
- "2015-02-12",
- "2015-02-13",
- "2015-02-14",
- "2015-02-17",
- "2015-02-18",
- "2015-02-19",
- "2015-02-20",
- "2015-02-21",
- "2015-02-22",
- "2015-02-25",
- "2015-02-26",
- "2015-02-27",
- "2015-02-28",
- "2015-03-01",
- "2015-03-02",
- "2015-03-03",
- "2015-03-04",
- "2015-03-05",
- "2015-03-07",
- "2015-03-09",
- "2015-03-10",
- "2015-03-11",
- "2015-03-12",
- "2015-03-13",
- "2015-03-14",
- "2015-03-15",
- "2015-03-16",
- "2015-03-17",
- "2015-03-18",
- "2015-03-19",
- "2015-03-20",
- "2015-03-22",
- "2015-03-24",
- "2015-03-25",
- "2015-03-26",
- "2015-03-27",
- "2015-03-28",
- "2015-03-29",
- "2015-03-30",
- "2015-03-31",
- "2015-04-01",
- "2015-04-02",
- "2015-04-03",
- "2015-04-04",
- "2015-04-05",
- "2015-04-06",
- "2015-04-07",
- "2015-04-08",
- "2015-04-09",
- "2015-04-10",
- "2015-04-11",
- "2015-04-12",
- "2015-04-13",
- "2015-04-14",
- "2015-04-15",
- "2015-04-16",
- "2015-04-17",
- "2015-04-18",
- "2015-04-19",
- "2015-04-20",
- "2015-04-21",
- "2015-04-22",
- "2015-04-23",
- "2015-04-24",
- "2015-04-25",
- "2015-04-26",
- "2015-04-27",
- "2015-04-28",
- "2015-04-29",
- "2015-04-30",
- "2015-05-01",
- "2015-05-02",
- "2015-05-03",
- "2015-05-04",
- "2015-05-05",
- "2015-05-06",
- "2015-05-07",
- "2015-05-08",
- "2015-05-09",
- "2015-05-10",
- "2015-05-11",
- "2015-05-12",
- "2015-05-13",
- "2015-05-14",
- "2015-05-15",
- "2015-05-16",
- "2015-05-17",
- "2015-05-18",
- "2015-05-19",
- "2015-05-20",
- "2015-05-21",
- "2015-05-22",
- "2015-05-23",
- "2015-05-24",
- "2015-05-25",
- "2015-05-26",
- "2015-05-27",
- "2015-05-28",
- "2015-05-29",
- "2015-05-30",
- "2015-05-31",
- "2015-06-01",
- "2015-06-02",
- "2015-06-03",
- "2015-06-04",
- "2015-06-05",
- "2015-06-06",
- "2015-06-07",
- "2015-06-08",
- "2015-06-09",
- "2015-06-10",
- "2015-06-11",
- "2015-06-12",
- "2015-06-13",
- "2015-06-14",
- "2015-06-15",
- "2015-06-16",
- "2015-06-17",
- "2015-06-18",
- "2015-06-19",
- "2015-06-20",
- "2015-06-21",
- "2015-06-22",
- "2015-06-23",
- "2015-06-24",
- "2015-06-25",
- "2015-06-26",
- "2015-06-27",
- "2015-06-28",
- "2015-06-29",
- "2015-06-30",
- "2015-07-01",
- "2015-07-02",
- "2015-07-03",
- "2015-07-04",
- "2015-07-05",
- "2015-07-06",
- "2015-07-07",
- "2015-07-08",
- "2015-07-09",
- "2015-07-10",
- "2015-07-11",
- "2015-07-12",
- "2015-07-13",
- "2015-07-14",
- "2015-07-15",
- "2015-07-16",
- "2015-07-17",
- "2015-07-18",
- "2015-07-19",
- "2015-07-20",
- "2015-07-21",
- "2015-07-22",
- "2015-07-23",
- "2015-07-24",
- "2015-07-25",
- "2015-07-26",
- "2015-07-27",
- "2015-07-28",
- "2015-07-29",
- "2015-07-30",
- "2015-07-31",
- "2015-08-01",
- "2015-08-02",
- "2015-08-03",
- "2015-08-04",
- "2015-08-05",
- "2015-08-06",
- "2015-08-07",
- "2015-08-08",
- "2015-08-09",
- "2015-08-10",
- "2015-08-11",
- "2015-08-12",
- "2015-08-13",
- "2015-08-14",
- "2015-08-15",
- "2015-08-16",
- "2015-08-17",
- "2015-08-18",
- "2015-08-19",
- "2015-08-20",
- "2015-08-21",
- "2015-08-22",
- "2015-08-23",
- "2015-08-24",
- "2015-08-25",
- "2015-08-26",
- "2015-08-27",
- "2015-08-28",
- "2015-08-29",
- "2015-08-30",
- "2015-08-31",
- "2015-09-01",
- "2015-09-02",
- "2015-09-03",
- "2015-09-04",
- "2015-09-05",
- "2015-09-06",
- "2015-09-07",
- "2015-09-08",
- "2015-09-09",
- "2015-09-10",
- "2015-09-11",
- "2015-09-12",
- "2015-09-13",
- "2015-09-14",
- "2015-09-15",
- "2015-09-16",
- "2015-09-17",
- "2015-09-18",
- "2015-09-19",
- "2015-09-20",
- "2015-09-21",
- "2015-09-22",
- "2015-09-23",
- "2015-09-24",
- "2015-09-25",
- "2015-09-26",
- "2015-09-27",
- "2015-09-28",
- "2015-09-29",
- "2015-09-30",
- "2015-10-01",
- "2015-10-02",
- "2015-10-03",
- "2015-10-04",
- "2015-10-05",
- "2015-10-06",
- "2015-10-07",
- "2015-10-08",
- "2015-10-09",
- "2015-10-10",
- "2015-10-11",
- "2015-10-12",
- "2015-10-13",
- "2015-10-14",
- "2015-10-15",
- "2015-10-17",
- "2015-10-18",
- "2015-10-19",
- "2015-10-20",
- "2015-10-21",
- "2015-10-22",
- "2015-10-23",
- "2015-10-24",
- "2015-10-25",
- "2015-10-26",
- "2015-10-27",
- "2015-10-28",
- "2015-10-30",
- "2015-11-01",
- "2015-11-02",
- "2015-11-03",
- "2015-11-05",
- "2015-11-06",
- "2015-11-07",
- "2015-11-09",
- "2015-11-10",
- "2015-11-11",
- "2015-11-12",
- "2015-11-13",
- "2015-11-15",
- "2015-11-17",
- "2015-11-18",
- "2015-11-19",
- "2015-11-20",
- "2015-11-23",
- "2015-11-24",
- "2015-11-25",
- "2015-11-27",
- "2015-11-28",
- "2015-11-29",
- "2015-12-02",
- "2015-12-03",
- "2015-12-04",
- "2015-12-06",
- "2015-12-07",
- "2015-12-08",
- "2015-12-09",
- "2015-12-10",
- "2015-12-11",
- "2015-12-12",
- "2015-12-13",
- "2015-12-14",
- "2015-12-15",
- "2015-12-16",
- "2015-12-17",
- "2015-12-18",
- "2015-12-20",
- "2015-12-22",
- "2015-12-23",
- "2015-12-24",
- "2015-12-25",
- "2015-12-26",
- "2015-12-27",
- "2015-12-28",
- "2015-12-29",
- "2015-12-31",
- "2016-01-01",
- "2016-01-02",
- "2016-01-03",
- "2016-01-04",
- "2016-01-06",
- "2016-01-07",
- "2016-01-10",
- "2016-01-11",
- "2016-01-12",
- "2016-01-13",
- "2016-01-14",
- "2016-01-15",
- "2016-01-16",
- "2016-01-17",
- "2016-01-18",
- "2016-01-19",
- "2016-01-20",
- "2016-01-21",
- "2016-01-22",
- "2016-01-23",
- "2016-01-24",
- "2016-01-25",
- "2016-01-26",
- "2016-01-27",
- "2016-01-28",
- "2016-01-29",
- "2016-01-30",
- "2016-01-31",
- "2016-02-01",
- "2016-02-02",
- "2016-02-03",
- "2016-02-04",
- "2016-02-05",
- "2016-02-06",
- "2016-02-07",
- "2016-02-08",
- "2016-02-09",
- "2016-02-10",
- "2016-02-11",
- "2016-02-12",
- "2016-02-13",
- "2016-02-14",
- "2016-02-15",
- "2016-02-16",
- "2016-02-17",
- "2016-02-18",
- "2016-02-19",
- "2016-02-20",
- "2016-02-21",
- "2016-02-22",
- "2016-02-24",
- "2016-02-25",
- "2016-02-26",
- "2016-02-27",
- "2016-02-28",
- "2016-02-29",
- "2016-03-02",
- "2016-03-03",
- "2016-03-04",
- "2016-03-05",
- "2016-03-06",
- "2016-03-07",
- "2016-03-08",
- "2016-03-09",
- "2016-03-10",
- "2016-03-11",
- "2016-03-12",
- "2016-03-13",
- "2016-03-14",
- "2016-03-16",
- "2016-03-17",
- "2016-03-18",
- "2016-03-19",
- "2016-03-20",
- "2016-03-21",
- "2016-03-22",
- "2016-03-23",
- "2016-03-24",
- "2016-03-25",
- "2016-03-26",
- "2016-03-27",
- "2016-03-28",
- "2016-03-29",
- "2016-03-30",
- "2016-04-01",
- "2016-04-02",
- "2016-04-03",
- "2016-04-04",
- "2016-04-05",
- "2016-04-06",
- "2016-04-07",
- "2016-04-08",
- "2016-04-09",
- "2016-04-10",
- "2016-04-11",
- "2016-04-12",
- "2016-04-13",
- "2016-04-14",
- "2016-04-15",
- "2016-04-16",
- "2016-04-19",
- "2016-04-20",
- "2016-04-21",
- "2016-04-22",
- "2016-04-23",
- "2016-04-24",
- "2016-04-25",
- "2016-04-26",
- "2016-04-27",
- "2016-04-28",
- "2016-04-29",
- "2016-04-30",
- "2016-05-01",
- "2016-05-02",
- "2016-05-03",
- "2016-05-04",
- "2016-05-05",
- "2016-05-06",
- "2016-05-07",
- "2016-05-08",
- "2016-05-09",
- "2016-05-10",
- "2016-05-11",
- "2016-05-12",
- "2016-05-13",
- "2016-05-14",
- "2016-05-15",
- "2016-05-16",
- "2016-05-17",
- "2016-05-18",
- "2016-05-19",
- "2016-05-20",
- "2016-05-21",
- "2016-05-22",
- "2016-05-23",
- "2016-05-24",
- "2016-05-25",
- "2016-05-26",
- "2016-05-27",
- "2016-05-28",
- "2016-05-29",
- "2016-05-30",
- "2016-05-31",
- "2016-06-01",
- "2016-06-02",
- "2016-06-03",
- "2016-06-05",
- "2016-06-06",
- "2016-06-07",
- "2016-06-08",
- "2016-06-10",
- "2016-06-11",
- "2016-06-12",
- "2016-06-13",
- "2016-06-15",
- "2016-06-16",
- "2016-06-18",
- "2016-06-19",
- "2016-06-20",
- "2016-06-21",
- "2016-06-22",
- "2016-06-23",
- "2016-06-24",
- "2016-06-25",
- "2016-06-26",
- "2016-06-27",
- "2016-06-28",
- "2016-06-29",
- "2016-06-30",
- "2016-07-01",
- "2016-07-02",
- "2016-07-03",
- "2016-07-04",
- "2016-07-05",
- "2016-07-07",
- "2016-07-08",
- "2016-07-09",
- "2016-07-11",
- "2016-07-12",
- "2016-07-13",
- "2016-07-15",
- "2016-07-16",
- "2016-07-17",
- "2016-07-18",
- "2016-07-19",
- "2016-07-20",
- "2016-07-21",
- "2016-07-22",
- "2016-07-23",
- "2016-07-24",
- "2016-07-25",
- "2016-07-27",
- "2016-07-28",
- "2016-07-29",
- "2016-07-30",
- "2016-07-31",
- "2016-08-01",
- "2016-08-03",
- "2016-08-04",
- "2016-08-05",
- "2016-08-07",
- "2016-08-08",
- "2016-08-09",
- "2016-08-11",
- "2016-08-12",
- "2016-08-13",
- "2016-08-14",
- "2016-08-15",
- "2016-08-16",
- "2016-08-18",
- "2016-08-19",
- "2016-08-20",
- "2016-08-21",
- "2016-08-22",
- "2016-08-23",
- "2016-08-24",
- "2016-08-25",
- "2016-08-26",
- "2016-08-27",
- "2016-08-28",
- "2016-08-29",
- "2016-08-30",
- "2016-08-31",
- "2016-09-01",
- "2016-09-03",
- "2016-09-04",
- "2016-09-05",
- "2016-09-07",
- "2016-09-08",
- "2016-09-09",
- "2016-09-10",
- "2016-09-11",
- "2016-09-12",
- "2016-09-13",
- "2016-09-14",
- "2016-09-15",
- "2016-09-16",
- "2016-09-17",
- "2016-09-18",
- "2016-09-19",
- "2016-09-20",
- "2016-09-21",
- "2016-09-22",
- "2016-09-23",
- "2016-09-24",
- "2016-09-25",
- "2016-09-26",
- "2016-09-27",
- "2016-09-28",
- "2016-09-30",
- "2016-10-01",
- "2016-10-02",
- "2016-10-03",
- "2016-10-04",
- "2016-10-05",
- "2016-10-07",
- "2016-10-08",
- "2016-10-09",
- "2016-10-10",
- "2016-10-11",
- "2016-10-12",
- "2016-10-13",
- "2016-10-14",
- "2016-10-16",
- "2016-10-17",
- "2016-10-18",
- "2016-10-19",
- "2016-10-20",
- "2016-10-21",
- "2016-10-22",
- "2016-10-23",
- "2016-10-24",
- "2016-10-25",
- "2016-10-28",
- "2016-10-29",
- "2016-11-02",
- "2016-11-04",
- "2016-11-05",
- "2016-11-06",
- "2016-11-07",
- "2016-11-08",
- "2016-11-09",
- "2016-11-10",
- "2016-11-11",
- "2016-11-12",
- "2016-11-13",
- "2016-11-14",
- "2016-11-16",
- "2016-11-17",
- "2016-11-19",
- "2016-11-20",
- "2016-11-21",
- "2016-11-23",
- "2016-11-25",
- "2016-11-27",
- "2016-11-28",
- "2016-11-29",
- "2016-12-01",
- "2016-12-02",
- "2016-12-03",
- "2016-12-04",
- "2016-12-06",
- "2016-12-07",
- "2016-12-09",
- "2016-12-12",
- "2016-12-13",
- "2016-12-14",
- "2016-12-17",
- "2016-12-18",
- "2016-12-20",
- "2016-12-21",
- "2016-12-24",
- "2016-12-25",
- "2016-12-29",
- "2017-01-03",
- "2017-01-04",
- "2017-01-05",
- "2017-01-06",
- "2017-01-09",
- "2017-01-10",
- "2017-01-12",
- "2017-01-16",
- "2017-01-17",
- "2017-01-18",
- "2017-01-21",
- "2017-01-24",
- "2017-01-28",
- "2017-02-02",
- "2017-02-17",
- "2017-02-18",
- "2017-02-21",
- "2017-02-22",
- "2017-02-23",
- "2017-02-24",
- "2017-02-25",
- "2017-02-26",
- "2017-02-27",
- "2017-02-28",
- "2017-03-03",
- "2017-03-04",
- "2017-03-05",
- "2017-03-07",
- "2017-03-08",
- "2017-03-09",
- "2017-03-11",
- "2017-03-12",
- "2017-03-13",
- "2017-03-15",
- "2017-03-19",
- "2017-03-20",
- "2017-03-21",
- "2017-03-22",
- "2017-03-24",
- "2017-03-26",
- "2017-03-27",
- "2017-03-28",
- "2017-03-29",
- "2017-03-30",
- "2017-03-31",
- "2017-04-01",
- "2017-04-02",
- "2017-04-03",
- "2017-04-04",
- "2017-04-05",
- "2017-04-07",
- "2017-04-08",
- "2017-04-09",
- "2017-04-11",
- "2017-04-12",
- "2017-04-13",
- "2017-04-15",
- "2017-04-16",
- "2017-04-17",
- "2017-04-18",
- "2017-04-19",
- "2017-04-20",
- "2017-04-21",
- "2017-04-22",
- "2017-04-23",
- "2017-04-24",
- "2017-04-26",
- "2017-04-27",
- "2017-04-28",
- "2017-04-29",
- "2017-04-30",
- "2017-05-01",
- "2017-05-02",
- "2017-05-04",
- "2017-05-05",
- "2017-05-06",
- "2017-05-08",
- "2017-05-09",
- "2017-05-10",
- "2017-05-12",
- "2017-05-13",
- "2017-05-14",
- "2017-05-15",
- "2017-05-16",
- "2017-05-17",
- "2017-05-18",
- "2017-05-19",
- "2017-05-20",
- "2017-05-21",
- "2017-05-23",
- "2017-05-24",
- "2017-05-25",
- "2017-05-27",
- "2017-05-28",
- "2017-05-29",
- "2017-05-31",
- "2017-06-01",
- "2017-06-02",
- "2017-06-04",
- "2017-06-05",
- "2017-06-06",
- "2017-06-07",
- "2017-06-08",
- "2017-06-09",
- "2017-06-10",
- "2017-06-11",
- "2017-06-12",
- "2017-06-13",
- "2017-06-15",
- "2017-06-16",
- "2017-06-17",
- "2017-06-18",
- "2017-06-19",
- "2017-06-20",
- "2017-06-21",
- "2017-06-23",
- "2017-06-24",
- "2017-06-25",
- "2017-06-27",
- "2017-06-28",
- "2017-06-29",
- "2017-07-01",
- "2017-07-02",
- "2017-07-03",
- "2017-07-04",
- "2017-07-05",
- "2017-07-06",
- "2017-07-07",
- "2017-07-08",
- "2017-07-09",
- "2017-07-10",
- "2017-07-11",
- "2017-07-12",
- "2017-07-13",
- "2017-07-14",
- "2017-07-15",
- "2017-07-16",
- "2017-07-17",
- "2017-07-18",
- "2017-07-19",
- "2017-07-20",
- "2017-07-21",
- "2017-07-22",
- "2017-07-24",
- "2017-07-25",
- "2017-07-26",
- "2017-07-28",
- "2017-07-29",
- "2017-07-30",
- "2017-07-31",
- "2017-08-01",
- "2017-08-02",
- "2017-08-03",
- "2017-08-04",
- "2017-08-05",
- "2017-08-07",
- "2017-08-08",
- "2017-08-09",
- "2017-08-10",
- "2017-08-11",
- "2017-08-12",
- "2017-08-13",
- "2017-08-14",
- "2017-08-15",
- "2017-08-16",
- "2017-08-17",
- "2017-08-18",
- "2017-08-20",
- "2017-08-21",
- "2017-08-22",
- "2017-08-24",
- "2017-08-25",
- "2017-08-26",
- "2017-08-27",
- "2017-08-28",
- "2017-08-29",
- "2017-08-30",
- "2017-08-31",
- "2017-09-01",
- "2017-09-02",
- "2017-09-03",
- "2017-09-04",
- "2017-09-05",
- "2017-09-06",
- "2017-09-07",
- "2017-09-08",
- "2017-09-09",
- "2017-09-10",
- "2017-09-11",
- "2017-09-12",
- "2017-09-13",
- "2017-09-14",
- "2017-09-16",
- "2017-09-17",
- "2017-09-18",
- "2017-09-20",
- "2017-09-21",
- "2017-09-22",
- "2017-09-24",
- "2017-09-25",
- "2017-09-26",
- "2017-09-27",
- "2017-09-28",
- "2017-09-29",
- "2017-10-01",
- "2017-10-02",
- "2017-10-03",
- "2017-10-04",
- "2017-10-05",
- "2017-10-06",
- "2017-10-07",
- "2017-10-08",
- "2017-10-09",
- "2017-10-10",
- "2017-10-11",
- "2017-10-13",
- "2017-10-14",
- "2017-10-15",
- "2017-10-18",
- "2017-10-19",
- "2017-10-21",
- "2017-10-22",
- "2017-10-23",
- "2017-10-24",
- "2017-10-25",
- "2017-10-26",
- "2017-10-28",
- "2017-10-29",
- "2017-10-30",
- "2017-10-31",
- "2017-11-01",
- "2017-11-02",
- "2017-11-03",
- "2017-11-05",
- "2017-11-06",
- "2017-11-07",
- "2017-11-09",
- "2017-11-10",
- "2017-11-11",
- "2017-11-13",
- "2017-11-14",
- "2017-11-15",
- "2017-11-17",
- "2017-11-18",
- "2017-11-19",
- "2017-11-20",
- "2017-11-21",
- "2017-11-22",
- "2017-11-24",
- "2017-11-25",
- "2017-11-26",
- "2017-11-27",
- "2017-11-28",
- "2017-11-29",
- "2017-11-30",
- "2017-12-02",
- "2017-12-03",
- "2017-12-04",
- "2017-12-06",
- "2017-12-07",
- "2017-12-08",
- "2017-12-10",
- "2017-12-11",
- "2017-12-12",
- "2017-12-14",
- "2017-12-15",
- "2017-12-16",
- "2017-12-17",
- "2017-12-18",
- "2017-12-19",
- "2017-12-21",
- "2017-12-22",
- "2017-12-26",
- "2017-12-27",
- "2017-12-29",
- "2017-12-30",
- "2017-12-31",
- "2018-01-03",
- "2018-01-04",
- "2018-01-06",
- "2018-01-10",
- "2018-01-11",
- "2018-01-14",
- "2018-01-15",
- "2018-01-21",
- "2018-01-22",
- "2018-01-25",
- "2018-02-22",
- "2018-02-23",
- "2018-02-25",
- "2018-03-01",
- "2018-03-02",
- "2018-03-05",
- "2018-03-06",
- "2018-03-07",
- "2018-03-12",
- "2018-03-13",
- "2018-03-14",
- "2018-03-15",
- "2018-03-16",
- "2018-03-18",
- "2018-03-20",
- "2018-03-21",
- "2018-03-22",
- "2018-03-24",
- "2018-03-25",
- "2018-03-26",
- "2018-03-28",
- "2018-03-29",
- "2018-04-01",
- "2018-04-02",
- "2018-04-03",
- "2018-04-04",
- "2018-04-05",
- "2018-04-06",
- "2018-04-07",
- "2018-04-08",
- "2018-04-09",
- "2018-04-10",
- "2018-04-11",
- "2018-04-12",
- "2018-04-13",
- "2018-04-14",
- "2018-04-16",
- "2018-04-17",
- "2018-04-18",
- "2018-04-20",
- "2018-04-21",
- "2018-04-22",
- "2018-04-24",
- "2018-04-25",
- "2018-04-26",
- "2018-04-27",
- "2018-04-28",
- "2018-04-29",
- "2018-04-30",
- "2018-05-01",
- "2018-05-02",
- "2018-05-03",
- "2018-05-04",
- "2018-05-05",
- "2018-05-06",
- "2018-05-07",
- "2018-05-08",
- "2018-05-10",
- "2018-05-11",
- "2018-05-13",
- "2018-05-14",
- "2018-05-15",
- "2018-05-17",
- "2018-05-18",
- "2018-05-19",
- "2018-05-21",
- "2018-05-22",
- "2018-05-23",
- "2018-05-25",
- "2018-05-26",
- "2018-05-27",
- "2018-05-28",
- "2018-05-29",
- "2018-05-30",
- "2018-05-31",
- "2018-06-01",
- "2018-06-02",
- "2018-06-03",
- "2018-06-04",
- "2018-06-05",
- "2018-06-06",
- "2018-06-07",
- "2018-06-08",
- "2018-06-09",
- "2018-06-10",
- "2018-06-11",
- "2018-06-13",
- "2018-06-14",
- "2018-06-15",
- "2018-06-17",
- "2018-06-18",
- "2018-06-19",
- "2018-06-21",
- "2018-06-22",
- "2018-06-23",
- "2018-06-24",
- "2018-06-25",
- "2018-06-26",
- "2018-06-27",
- "2018-06-28",
- "2018-06-29",
- "2018-06-30",
- "2018-07-01",
- "2018-07-02",
- "2018-07-03",
- "2018-07-04",
- "2018-07-05",
- "2018-07-06",
- "2018-07-07",
- "2018-07-08",
- "2018-07-10",
- "2018-07-11",
- "2018-07-12",
- "2018-07-14",
- "2018-07-15",
- "2018-07-17",
- "2018-07-18",
- "2018-07-19",
- "2018-07-20",
- "2018-07-21",
- "2018-07-22",
- "2018-07-23",
- "2018-07-24",
- "2018-07-25",
- "2018-07-26",
- "2018-07-27",
- "2018-07-28",
- "2018-07-29",
- "2018-07-30",
- "2018-07-31",
- "2018-08-01",
- "2018-08-02",
- "2018-08-03",
- "2018-08-04",
- "2018-08-06",
- "2018-08-07",
- "2018-08-08",
- "2018-08-10",
- "2018-08-11",
- "2018-08-12",
- "2018-08-14",
- "2018-08-15",
- "2018-08-16",
- "2018-08-17",
- "2018-08-18",
- "2018-08-19",
- "2018-08-20",
- "2018-08-21",
- "2018-08-22",
- "2018-08-23",
- "2018-08-24",
- "2018-08-25",
- "2018-08-26",
- "2018-08-27",
- "2018-08-28",
- "2018-08-29",
- "2018-08-30",
- "2018-08-31",
- "2018-09-02",
- "2018-09-03",
- "2018-09-04",
- "2018-09-06",
- "2018-09-07",
- "2018-09-08",
- "2018-09-09",
- "2018-09-10",
- "2018-09-11",
- "2018-09-12",
- "2018-09-13",
- "2018-09-14",
- "2018-09-15",
- "2018-09-16",
- "2018-09-17",
- "2018-09-18",
- "2018-09-20",
- "2018-09-21",
- "2018-09-22",
- "2018-09-23",
- "2018-09-24",
- "2018-09-25",
- "2018-09-26",
- "2018-09-27",
- "2018-09-29",
- "2018-09-30",
- "2018-10-01",
- "2018-10-03",
- "2018-10-04",
- "2018-10-05",
- "2018-10-07",
- "2018-10-08",
- "2018-10-09",
- "2018-10-10",
- "2018-10-11",
- "2018-10-12",
- "2018-10-13",
- "2018-10-14",
- "2018-10-15",
- "2018-10-16",
- "2018-10-18",
- "2018-10-19",
- "2018-10-20",
- "2018-10-21",
- "2018-10-22",
- "2018-10-23",
- "2018-10-24",
- "2018-10-26",
- "2018-10-27",
- "2018-10-28",
- "2018-10-30",
- "2018-10-31",
- "2018-11-01",
- "2018-11-02",
- "2018-11-03",
- "2018-11-04",
- "2018-11-05",
- "2018-11-06",
- "2018-11-07",
- "2018-11-08",
- "2018-11-12",
- "2018-11-13",
- "2018-11-14",
- "2018-11-15",
- "2018-11-16",
- "2018-11-17",
- "2018-11-18",
- "2018-11-19",
- "2018-11-20",
- "2018-11-22",
- "2018-11-23",
- "2018-11-24",
- "2018-11-27",
- "2018-11-28",
- "2018-11-30",
- "2018-12-01",
- "2018-12-02",
- "2018-12-04",
- "2018-12-05",
- "2018-12-06",
- "2018-12-07",
- "2018-12-08",
- "2018-12-09",
- "2018-12-11",
- "2018-12-13",
- "2018-12-15",
- "2018-12-16",
- "2018-12-17",
- "2018-12-19",
- "2018-12-20",
- "2018-12-21",
- "2018-12-23",
- "2018-12-24",
- "2018-12-30",
- "2019-01-01",
- "2019-01-03",
- "2019-01-04",
- "2019-01-07",
- "2019-01-11",
- "2019-01-15",
- "2019-01-16",
- "2019-01-17",
- "2019-01-20",
- "2019-01-21",
- "2019-01-25",
- "2019-01-26",
- "2019-01-27",
- "2019-01-28",
- "2019-01-30",
- "2019-01-31",
- "2019-02-01",
- "2019-02-03",
- "2019-02-04",
- "2019-02-05",
- "2019-02-09",
- "2019-02-11",
- "2019-02-12",
- "2019-02-15",
- "2019-02-19",
- "2019-02-21",
- "2019-02-22",
- "2019-02-23",
- "2019-02-27",
- "2019-02-28",
- "2019-03-02",
- "2019-03-03",
- "2019-03-04",
- "2019-03-06",
- "2019-03-07",
- "2019-03-08",
- "2019-03-10",
- "2019-03-11",
- "2019-03-12",
- "2019-03-14",
- "2019-03-15",
- "2019-03-18",
- "2019-03-19",
- "2019-03-20",
- "2019-03-21",
- "2019-03-22",
- "2019-03-23",
- "2019-03-24",
- "2019-03-25",
- "2019-03-27",
- "2019-03-29",
- "2019-03-30",
- "2019-04-01",
- "2019-04-03",
- "2019-04-04",
- "2019-04-06",
- "2019-04-07",
- "2019-04-08",
- "2019-04-10",
- "2019-04-11",
- "2019-04-12",
- "2019-04-14",
- "2019-04-15",
- "2019-04-16",
- "2019-04-18",
- "2019-04-20",
- "2019-04-22",
- "2019-04-23",
- "2019-04-24",
- "2019-04-25",
- "2019-04-26",
- "2019-04-27",
- "2019-04-29",
- "2019-04-30",
- "2019-05-01",
- "2019-05-03",
- "2019-05-04",
- "2019-05-05",
- "2019-05-07",
- "2019-05-08",
- "2019-05-09",
- "2019-05-10",
- "2019-05-11",
- "2019-05-12",
- "2019-05-13",
- "2019-05-14",
- "2019-05-15",
- "2019-05-16",
- "2019-05-17",
- "2019-05-18",
- "2019-05-19",
- "2019-05-20",
- "2019-05-21",
- "2019-05-22",
- "2019-05-23",
- "2019-05-24",
- "2019-05-25",
- "2019-05-27",
- "2019-05-28",
- "2019-05-30",
- "2019-05-31",
- "2019-06-01",
- "2019-06-03",
- "2019-06-04",
- "2019-06-05",
- "2019-06-07",
- "2019-06-08",
- "2019-06-09",
- "2019-06-10",
- "2019-06-11",
- "2019-06-12",
- "2019-06-14",
- "2019-06-15",
- "2019-06-16",
- "2019-06-17",
- "2019-06-18",
- "2019-06-19",
- "2019-06-20",
- "2019-06-21",
- "2019-06-22",
- "2019-06-23",
- "2019-06-24",
- "2019-06-26",
- "2019-06-27",
- "2019-06-28",
- "2019-06-30",
- "2019-07-01",
- "2019-07-02",
- "2019-07-04",
- "2019-07-05",
- "2019-07-06",
- "2019-07-08",
- "2019-07-09",
- "2019-07-10",
- "2019-07-11",
- "2019-07-12",
- "2019-07-13",
- "2019-07-14",
- "2019-07-15",
- "2019-07-16",
- "2019-07-17",
- "2019-07-18",
- "2019-07-19",
- "2019-07-20",
- "2019-07-21",
- "2019-07-23",
- "2019-07-24",
- "2019-07-25",
- "2019-07-27",
- "2019-07-28",
- "2019-07-29",
- "2019-07-31",
- "2019-08-01",
- "2019-08-02",
- "2019-08-03",
- "2019-08-04",
- "2019-08-05",
- "2019-08-06",
- "2019-08-07",
- "2019-08-08",
- "2019-08-09",
- "2019-08-10",
- "2019-08-11",
- "2019-08-12",
- "2019-08-13",
- "2019-08-15",
- "2019-08-16",
- "2019-08-17",
- "2019-08-19",
- "2019-08-20",
- "2019-08-21",
- "2019-08-23",
- "2019-08-24",
- "2019-08-25",
- "2019-08-27",
- "2019-08-28",
- "2019-08-29",
- "2019-08-30",
- "2019-08-31",
- "2019-09-01",
- "2019-09-02",
- "2019-09-03",
- "2019-09-04",
- "2019-09-06",
- "2019-09-07",
- "2019-09-08",
- "2019-09-09",
- "2019-09-10",
- "2019-09-11",
- "2019-09-12",
- "2019-09-13",
- "2019-09-15",
- "2019-09-16",
- "2019-09-17",
- "2019-09-19",
- "2019-09-20",
- "2019-09-21",
- "2019-09-23",
- "2019-09-24",
- "2019-09-25",
- "2019-09-26",
- "2019-09-27",
- "2019-09-28",
- "2019-09-29",
- "2019-09-30",
- "2019-10-01",
- "2019-10-02",
- "2019-10-03",
- "2019-10-04",
- "2019-10-05",
- "2019-10-06",
- "2019-10-07",
- "2019-10-08",
- "2019-10-09",
- "2019-10-10",
- "2019-10-12",
- "2019-10-14",
- "2019-10-16",
- "2019-10-17",
- "2019-10-18",
- "2019-10-19",
- "2019-10-20",
- "2019-10-21",
- "2019-10-22",
- "2019-10-23",
- "2019-10-24",
- "2019-10-25",
- "2019-10-26",
- "2019-10-27",
- "2019-10-28",
- "2019-10-29",
- "2019-10-31",
- "2019-11-01",
- "2019-11-02",
- "2019-11-04",
- "2019-11-05",
- "2019-11-06",
- "2019-11-08",
- "2019-11-09",
- "2019-11-10",
- "2019-11-12",
- "2019-11-13",
- "2019-11-14",
- "2019-11-16",
- "2019-11-17",
- "2019-11-18",
- "2019-11-19",
- "2019-11-20",
- "2019-11-21",
- "2019-11-22",
- "2019-11-23",
- "2019-11-24",
- "2019-11-25",
- "2019-11-27",
- "2019-11-28",
- "2019-11-29",
- "2019-12-01",
- "2019-12-03",
- "2019-12-06",
- "2019-12-07",
- "2019-12-09",
- "2019-12-10",
- "2019-12-11",
- "2019-12-13",
- "2019-12-14",
- "2019-12-15",
- "2019-12-18",
- "2019-12-19",
- "2019-12-20",
- "2019-12-21",
- "2019-12-22",
- "2019-12-24",
- "2019-12-25",
- "2019-12-28",
- "2019-12-29",
- "2019-12-30",
- "2020-01-01",
- "2020-01-02",
- "2020-01-06",
- "2020-01-07",
- "2020-01-09",
- "2020-01-10",
- "2020-01-12",
- "2020-01-13",
- "2020-01-17",
- "2020-01-20",
- "2020-01-21",
- "2020-01-25",
- "2020-01-26",
- "2020-01-28",
- "2020-02-01",
- "2020-02-02",
- "2020-02-03",
- "2020-02-04",
- "2020-02-07",
- "2020-02-09",
- "2020-02-11",
- "2020-02-12",
- "2020-02-13",
- "2020-02-14",
- "2020-02-17",
- "2020-02-18",
- "2020-02-20",
- "2020-02-22",
- "2020-02-25",
- "2020-02-26",
- "2020-02-28",
- "2020-02-29",
- "2020-03-01",
- "2020-03-02",
- "2020-03-03",
- "2020-03-04",
- "2020-03-05",
- "2020-03-06",
- "2020-03-07",
- "2020-03-08",
- "2020-03-09",
- "2020-03-10",
- "2020-03-11",
- "2020-03-12",
- "2020-03-13",
- "2020-03-14",
- "2020-03-15",
- "2020-03-16",
- "2020-03-18",
- "2020-03-19",
- "2020-03-20",
- "2020-03-22",
- "2020-03-23",
- "2020-03-24",
- "2020-03-26",
- "2020-03-27",
- "2020-03-28",
- "2020-03-29",
- "2020-03-30",
- "2020-04-02",
- "2020-04-03",
- "2020-04-04",
- "2020-04-05",
- "2020-04-06",
- "2020-04-07",
- "2020-04-08",
- "2020-04-10",
- "2020-04-11",
- "2020-04-12",
- "2020-04-14",
- "2020-04-15",
- "2020-04-16",
- "2020-04-18",
- "2020-04-19",
- "2020-04-20",
- "2020-04-23",
- "2020-04-24",
- "2020-04-25",
- "2020-04-26",
- "2020-04-27",
- "2020-04-28",
- "2020-04-29",
- "2020-04-30",
- "2020-05-01",
- "2020-05-02",
- "2020-05-03",
- "2020-05-04",
- "2020-05-05",
- "2020-05-06",
- "2020-05-07",
- "2020-05-08",
- "2020-05-09",
- "2020-05-11",
- "2020-05-12",
- "2020-05-13",
- "2020-05-14",
- "2020-05-15",
- "2020-05-16",
- "2020-05-18",
- "2020-05-19",
- "2020-05-20",
- "2020-05-21",
- "2020-05-22",
- "2020-05-23",
- "2020-05-24",
- "2020-05-25",
- "2020-05-26",
- "2020-05-27",
- "2020-05-28",
- "2020-05-29",
- "2020-05-30",
- "2020-05-31",
- "2020-06-01",
- "2020-06-02",
- "2020-06-03",
- "2020-06-04",
- "2020-06-05",
- "2020-06-07",
- "2020-06-08",
- "2020-06-09",
- "2020-06-11",
- "2020-06-12",
- "2020-06-13",
- "2020-06-15",
- "2020-06-16",
- "2020-06-17",
- "2020-06-18",
- "2020-06-19",
- "2020-06-20",
- "2020-06-21",
- "2020-06-22",
- "2020-06-23",
- "2020-06-24",
- "2020-06-25",
- "2020-06-26",
- "2020-06-27",
- "2020-06-28",
- "2020-06-29",
- "2020-06-30",
- "2020-07-01",
- "2020-07-02",
- "2020-07-04",
- "2020-07-05",
- "2020-07-06",
- "2020-07-08",
- "2020-07-09",
- "2020-07-10",
- "2020-07-12",
- "2020-07-13",
- "2020-07-14",
- "2020-07-16",
- "2020-07-17",
- "2020-07-18",
- "2020-07-19",
- "2020-07-20",
- "2020-07-21",
- "2020-07-23",
- "2020-07-24",
- "2020-07-25",
- "2020-07-26",
- "2020-07-27",
- "2020-07-28",
- "2020-07-29",
- "2020-07-31",
- "2020-08-01",
- "2020-08-02",
- "2020-08-04",
- "2020-08-05",
- "2020-08-06",
- "2020-08-08",
- "2020-08-09",
- "2020-08-10",
- "2020-08-12",
- "2020-08-13",
- "2020-08-14",
- "2020-08-15",
- "2020-08-16",
- "2020-08-17",
- "2020-08-18",
- "2020-08-19",
- "2020-08-20",
- "2020-08-21",
- "2020-08-23",
- "2020-08-24",
- "2020-08-25",
- "2020-08-26",
- "2020-08-27",
- "2020-08-28",
- "2020-08-29",
- "2020-08-30",
- "2020-08-31",
- "2020-09-01",
- "2020-09-02",
- "2020-09-03",
- "2020-09-06",
- "2020-09-09",
- "2020-09-10",
- "2020-09-11",
- "2020-09-12",
- "2020-09-13",
- "2020-09-14",
- "2020-09-19",
- "2020-09-25",
- "2020-10-01",
- "2020-10-05",
- "2020-10-08",
- "2020-10-09",
- "2020-10-10",
- "2020-10-11",
- "2020-10-18",
- "2020-10-19",
- "2020-10-20",
- "2020-10-26",
- "2020-10-28",
- "2020-10-29",
- "2020-10-30",
- "2020-10-31",
- "2020-11-01",
- "2020-11-02",
- "2020-11-03",
- "2020-11-04",
- "2020-11-05",
- "2020-11-06",
- "2020-11-07",
- "2020-11-08",
- "2020-11-09",
- "2020-11-10",
- "2020-11-11",
- "2020-11-12",
- "2020-11-13",
- "2020-11-14",
- "2020-11-15",
- "2020-11-16",
- "2020-11-17",
- "2020-11-18",
- "2020-11-19",
- "2020-11-20",
- "2020-11-21",
- "2020-11-22",
- "2020-11-23",
- "2020-11-24",
- "2020-11-25",
- "2020-11-28",
- "2020-11-29",
- "2020-11-30",
- "2020-12-01",
- "2020-12-02",
- "2020-12-03",
- "2020-12-04",
- "2020-12-06",
- "2020-12-07",
- "2020-12-08",
- "2020-12-09",
- "2020-12-10",
- "2020-12-11",
- "2020-12-12",
- "2020-12-13",
- "2020-12-14",
- "2020-12-15",
- "2020-12-16",
- "2020-12-17",
- "2020-12-22",
- "2020-12-23",
- "2020-12-24",
- "2020-12-26",
- "2020-12-27",
- "2020-12-29",
- "2020-12-31"
- ],
- "LAKES_SURFACE_WATER_TEMPERATURE_Balaton": [
- "2010-01-03",
- "2010-01-04",
- "2010-01-12",
- "2010-01-13",
- "2010-01-15",
- "2010-01-19",
- "2010-01-20",
- "2010-02-04",
- "2010-02-21",
- "2010-02-23",
- "2010-02-24",
- "2010-02-27",
- "2010-03-03",
- "2010-03-05",
- "2010-03-06",
- "2010-03-07",
- "2010-03-08",
- "2010-03-14",
- "2010-03-15",
- "2010-03-17",
- "2010-03-18",
- "2010-03-19",
- "2010-03-20",
- "2010-03-24",
- "2010-03-25",
- "2010-03-26",
- "2010-03-27",
- "2010-03-28",
- "2010-03-29",
- "2010-03-30",
- "2010-03-31",
- "2010-04-01",
- "2010-04-02",
- "2010-04-03",
- "2010-04-06",
- "2010-04-07",
- "2010-04-08",
- "2010-04-09",
- "2010-04-10",
- "2010-04-11",
- "2010-04-14",
- "2010-04-16",
- "2010-04-17",
- "2010-04-18",
- "2010-04-19",
- "2010-04-20",
- "2010-04-21",
- "2010-04-22",
- "2010-04-24",
- "2010-04-25",
- "2010-04-26",
- "2010-04-27",
- "2010-04-28",
- "2010-04-29",
- "2010-04-30",
- "2010-05-01",
- "2010-05-02",
- "2010-05-03",
- "2010-05-04",
- "2010-05-05",
- "2010-05-06",
- "2010-05-07",
- "2010-05-09",
- "2010-05-10",
- "2010-05-11",
- "2010-05-14",
- "2010-05-19",
- "2010-05-21",
- "2010-05-22",
- "2010-05-24",
- "2010-05-25",
- "2010-05-26",
- "2010-05-27",
- "2010-05-28",
- "2010-05-29",
- "2010-05-30",
- "2010-06-05",
- "2010-06-06",
- "2010-06-07",
- "2010-06-08",
- "2010-06-09",
- "2010-06-10",
- "2010-06-11",
- "2010-06-12",
- "2010-06-13",
- "2010-06-14",
- "2010-06-15",
- "2010-06-17",
- "2010-06-18",
- "2010-06-19",
- "2010-06-23",
- "2010-06-24",
- "2010-06-25",
- "2010-06-27",
- "2010-06-28",
- "2010-06-29",
- "2010-06-30",
- "2010-07-01",
- "2010-07-02",
- "2010-07-03",
- "2010-07-04",
- "2010-07-05",
- "2010-07-06",
- "2010-07-07",
- "2010-07-08",
- "2010-07-09",
- "2010-07-10",
- "2010-07-11",
- "2010-07-12",
- "2010-07-13",
- "2010-07-14",
- "2010-07-15",
- "2010-07-16",
- "2010-07-17",
- "2010-07-18",
- "2010-07-19",
- "2010-07-20",
- "2010-07-21",
- "2010-07-22",
- "2010-07-23",
- "2010-07-24",
- "2010-07-27",
- "2010-07-28",
- "2010-07-29",
- "2010-07-31",
- "2010-08-01",
- "2010-08-02",
- "2010-08-03",
- "2010-08-04",
- "2010-08-05",
- "2010-08-08",
- "2010-08-10",
- "2010-08-11",
- "2010-08-12",
- "2010-08-13",
- "2010-08-14",
- "2010-08-15",
- "2010-08-17",
- "2010-08-18",
- "2010-08-19",
- "2010-08-20",
- "2010-08-21",
- "2010-08-22",
- "2010-08-23",
- "2010-08-24",
- "2010-08-26",
- "2010-08-27",
- "2010-08-29",
- "2010-08-30",
- "2010-08-31",
- "2010-09-01",
- "2010-09-02",
- "2010-09-05",
- "2010-09-09",
- "2010-09-13",
- "2010-09-14",
- "2010-09-15",
- "2010-09-20",
- "2010-09-21",
- "2010-09-22",
- "2010-09-23",
- "2010-09-24",
- "2010-09-28",
- "2010-09-29",
- "2010-09-30",
- "2010-10-05",
- "2010-10-07",
- "2010-10-08",
- "2010-10-09",
- "2010-10-10",
- "2010-10-11",
- "2010-10-12",
- "2010-10-14",
- "2010-10-15",
- "2010-10-16",
- "2010-10-21",
- "2010-10-22",
- "2010-10-23",
- "2010-10-24",
- "2010-10-27",
- "2010-10-28",
- "2010-10-29",
- "2010-10-30",
- "2010-10-31",
- "2010-11-04",
- "2010-11-05",
- "2010-11-06",
- "2010-11-11",
- "2010-11-12",
- "2010-11-13",
- "2010-11-14",
- "2010-11-15",
- "2010-11-16",
- "2010-11-17",
- "2010-11-24",
- "2010-11-25",
- "2010-11-26",
- "2010-11-27",
- "2010-11-29",
- "2010-12-03",
- "2010-12-04",
- "2010-12-05",
- "2010-12-06",
- "2010-12-10",
- "2010-12-13",
- "2010-12-14",
- "2010-12-16",
- "2010-12-17",
- "2010-12-21",
- "2010-12-23",
- "2010-12-24",
- "2010-12-27",
- "2010-12-29",
- "2011-01-03",
- "2011-01-07",
- "2011-01-09",
- "2011-01-17",
- "2011-01-18",
- "2011-01-22",
- "2011-01-23",
- "2011-01-24",
- "2011-01-26",
- "2011-01-28",
- "2011-01-29",
- "2011-01-30",
- "2011-02-02",
- "2011-02-04",
- "2011-02-05",
- "2011-02-06",
- "2011-02-07",
- "2011-02-08",
- "2011-02-09",
- "2011-02-10",
- "2011-02-11",
- "2011-02-12",
- "2011-02-20",
- "2011-02-23",
- "2011-02-24",
- "2011-02-25",
- "2011-02-26",
- "2011-02-28",
- "2011-03-02",
- "2011-03-04",
- "2011-03-05",
- "2011-03-06",
- "2011-03-07",
- "2011-03-08",
- "2011-03-09",
- "2011-03-10",
- "2011-03-11",
- "2011-03-12",
- "2011-03-14",
- "2011-03-15",
- "2011-03-20",
- "2011-03-21",
- "2011-03-22",
- "2011-03-23",
- "2011-03-24",
- "2011-03-25",
- "2011-03-26",
- "2011-03-29",
- "2011-03-30",
- "2011-03-31",
- "2011-04-02",
- "2011-04-03",
- "2011-04-04",
- "2011-04-05",
- "2011-04-06",
- "2011-04-07",
- "2011-04-08",
- "2011-04-09",
- "2011-04-10",
- "2011-04-11",
- "2011-04-12",
- "2011-04-13",
- "2011-04-14",
- "2011-04-15",
- "2011-04-16",
- "2011-04-17",
- "2011-04-18",
- "2011-04-19",
- "2011-04-20",
- "2011-04-21",
- "2011-04-22",
- "2011-04-23",
- "2011-04-24",
- "2011-04-25",
- "2011-04-28",
- "2011-04-29",
- "2011-04-30",
- "2011-05-02",
- "2011-05-03",
- "2011-05-04",
- "2011-05-05",
- "2011-05-06",
- "2011-05-07",
- "2011-05-09",
- "2011-05-10",
- "2011-05-11",
- "2011-05-12",
- "2011-05-13",
- "2011-05-14",
- "2011-05-17",
- "2011-05-18",
- "2011-05-19",
- "2011-05-20",
- "2011-05-21",
- "2011-05-22",
- "2011-05-23",
- "2011-05-24",
- "2011-05-25",
- "2011-05-26",
- "2011-05-27",
- "2011-05-29",
- "2011-05-30",
- "2011-05-31",
- "2011-06-01",
- "2011-06-02",
- "2011-06-03",
- "2011-06-04",
- "2011-06-05",
- "2011-06-06",
- "2011-06-07",
- "2011-06-10",
- "2011-06-11",
- "2011-06-12",
- "2011-06-13",
- "2011-06-15",
- "2011-06-16",
- "2011-06-17",
- "2011-06-18",
- "2011-06-20",
- "2011-06-21",
- "2011-06-22",
- "2011-06-23",
- "2011-06-25",
- "2011-06-27",
- "2011-06-28",
- "2011-06-29",
- "2011-06-30",
- "2011-07-01",
- "2011-07-02",
- "2011-07-04",
- "2011-07-05",
- "2011-07-06",
- "2011-07-07",
- "2011-07-08",
- "2011-07-09",
- "2011-07-10",
- "2011-07-11",
- "2011-07-12",
- "2011-07-13",
- "2011-07-14",
- "2011-07-15",
- "2011-07-16",
- "2011-07-17",
- "2011-07-18",
- "2011-07-19",
- "2011-07-22",
- "2011-07-27",
- "2011-08-02",
- "2011-08-03",
- "2011-08-05",
- "2011-08-06",
- "2011-08-07",
- "2011-08-08",
- "2011-08-09",
- "2011-08-10",
- "2011-08-11",
- "2011-08-12",
- "2011-08-13",
- "2011-08-14",
- "2011-08-15",
- "2011-08-16",
- "2011-08-17",
- "2011-08-18",
- "2011-08-19",
- "2011-08-20",
- "2011-08-21",
- "2011-08-22",
- "2011-08-23",
- "2011-08-24",
- "2011-08-25",
- "2011-08-26",
- "2011-08-27",
- "2011-08-28",
- "2011-08-29",
- "2011-08-30",
- "2011-08-31",
- "2011-09-01",
- "2011-09-02",
- "2011-09-03",
- "2011-09-04",
- "2011-09-05",
- "2011-09-06",
- "2011-09-07",
- "2011-09-09",
- "2011-09-10",
- "2011-09-11",
- "2011-09-12",
- "2011-09-13",
- "2011-09-14",
- "2011-09-15",
- "2011-09-16",
- "2011-09-17",
- "2011-09-18",
- "2011-09-19",
- "2011-09-21",
- "2011-09-22",
- "2011-09-23",
- "2011-09-24",
- "2011-09-25",
- "2011-09-26",
- "2011-09-27",
- "2011-09-28",
- "2011-09-29",
- "2011-09-30",
- "2011-10-01",
- "2011-10-02",
- "2011-10-03",
- "2011-10-04",
- "2011-10-05",
- "2011-10-06",
- "2011-10-08",
- "2011-10-09",
- "2011-10-12",
- "2011-10-13",
- "2011-10-14",
- "2011-10-15",
- "2011-10-16",
- "2011-10-17",
- "2011-10-18",
- "2011-10-19",
- "2011-10-21",
- "2011-10-22",
- "2011-10-27",
- "2011-10-28",
- "2011-10-30",
- "2011-10-31",
- "2011-11-01",
- "2011-11-04",
- "2011-11-05",
- "2011-11-06",
- "2011-11-07",
- "2011-11-08",
- "2011-11-09",
- "2011-11-10",
- "2011-11-11",
- "2011-11-12",
- "2011-11-13",
- "2011-11-14",
- "2011-11-15",
- "2011-11-16",
- "2011-11-18",
- "2011-11-28",
- "2011-12-02",
- "2011-12-03",
- "2011-12-06",
- "2011-12-08",
- "2011-12-11",
- "2011-12-12",
- "2011-12-13",
- "2011-12-14",
- "2011-12-16",
- "2011-12-18",
- "2011-12-20",
- "2011-12-22",
- "2011-12-24",
- "2011-12-25",
- "2011-12-31",
- "2012-01-01",
- "2012-01-02",
- "2012-01-03",
- "2012-01-04",
- "2012-01-06",
- "2012-01-07",
- "2012-01-08",
- "2012-01-09",
- "2012-01-10",
- "2012-01-12",
- "2012-01-13",
- "2012-01-14",
- "2012-01-15",
- "2012-01-16",
- "2012-01-21",
- "2012-01-22",
- "2012-01-23",
- "2012-01-25",
- "2012-01-26",
- "2012-01-27",
- "2012-01-28",
- "2012-01-30",
- "2012-01-31",
- "2012-02-01",
- "2012-02-08",
- "2012-02-16",
- "2012-02-18",
- "2012-02-21",
- "2012-02-22",
- "2012-02-24",
- "2012-02-25",
- "2012-02-26",
- "2012-02-27",
- "2012-02-29",
- "2012-03-02",
- "2012-03-03",
- "2012-03-04",
- "2012-03-05",
- "2012-03-06",
- "2012-03-07",
- "2012-03-09",
- "2012-03-10",
- "2012-03-14",
- "2012-03-15",
- "2012-03-16",
- "2012-03-17",
- "2012-03-18",
- "2012-03-19",
- "2012-03-20",
- "2012-03-21",
- "2012-03-22",
- "2012-03-23",
- "2012-03-24",
- "2012-03-25",
- "2012-03-26",
- "2012-03-27",
- "2012-03-28",
- "2012-03-29",
- "2012-03-30",
- "2012-03-31",
- "2012-04-01",
- "2012-04-02",
- "2012-04-03",
- "2012-04-04",
- "2012-04-05",
- "2012-04-08",
- "2012-04-09",
- "2012-04-10",
- "2012-04-11",
- "2012-04-15",
- "2012-04-19",
- "2012-04-20",
- "2012-04-21",
- "2012-04-22",
- "2012-04-23",
- "2012-04-24",
- "2012-04-25",
- "2012-04-26",
- "2012-04-27",
- "2012-04-28",
- "2012-04-29",
- "2012-04-30",
- "2012-05-01",
- "2012-05-02",
- "2012-05-03",
- "2012-05-04",
- "2012-05-05",
- "2012-05-06",
- "2012-05-08",
- "2012-05-09",
- "2012-05-10",
- "2012-05-11",
- "2012-05-12",
- "2012-05-14",
- "2012-05-17",
- "2012-05-18",
- "2012-05-19",
- "2012-05-20",
- "2012-05-21",
- "2012-05-23",
- "2012-05-24",
- "2012-05-25",
- "2012-05-26",
- "2012-05-27",
- "2012-05-28",
- "2012-05-30",
- "2012-05-31",
- "2012-06-01",
- "2012-06-03",
- "2012-06-04",
- "2012-06-05",
- "2012-06-06",
- "2012-06-07",
- "2012-06-08",
- "2012-06-09",
- "2012-06-10",
- "2012-06-11",
- "2012-06-14",
- "2012-06-15",
- "2012-06-16",
- "2012-06-17",
- "2012-06-18",
- "2012-06-19",
- "2012-06-20",
- "2012-06-21",
- "2012-06-22",
- "2012-06-23",
- "2012-06-24",
- "2012-06-26",
- "2012-06-27",
- "2012-06-28",
- "2012-06-29",
- "2012-06-30",
- "2012-07-01",
- "2012-07-02",
- "2012-07-03",
- "2012-07-04",
- "2012-07-05",
- "2012-07-06",
- "2012-07-07",
- "2012-07-08",
- "2012-07-09",
- "2012-07-10",
- "2012-07-11",
- "2012-07-12",
- "2012-07-14",
- "2012-07-16",
- "2012-07-17",
- "2012-07-18",
- "2012-07-19",
- "2012-07-20",
- "2012-07-22",
- "2012-07-23",
- "2012-07-25",
- "2012-07-26",
- "2012-07-27",
- "2012-07-28",
- "2012-07-29",
- "2012-07-30",
- "2012-08-01",
- "2012-08-02",
- "2012-08-03",
- "2012-08-04",
- "2012-08-05",
- "2012-08-06",
- "2012-08-07",
- "2012-08-09",
- "2012-08-10",
- "2012-08-12",
- "2012-08-13",
- "2012-08-14",
- "2012-08-15",
- "2012-08-16",
- "2012-08-17",
- "2012-08-18",
- "2012-08-19",
- "2012-08-20",
- "2012-08-21",
- "2012-08-22",
- "2012-08-23",
- "2012-08-24",
- "2012-08-25",
- "2012-08-26",
- "2012-08-27",
- "2012-08-28",
- "2012-08-29",
- "2012-08-30",
- "2012-08-31",
- "2012-09-02",
- "2012-09-03",
- "2012-09-04",
- "2012-09-05",
- "2012-09-07",
- "2012-09-08",
- "2012-09-09",
- "2012-09-10",
- "2012-09-11",
- "2012-09-12",
- "2012-09-15",
- "2012-09-16",
- "2012-09-17",
- "2012-09-18",
- "2012-09-20",
- "2012-09-21",
- "2012-09-22",
- "2012-09-23",
- "2012-09-24",
- "2012-09-25",
- "2012-09-26",
- "2012-09-28",
- "2012-09-29",
- "2012-09-30",
- "2012-10-01",
- "2012-10-03",
- "2012-10-04",
- "2012-10-05",
- "2012-10-06",
- "2012-10-07",
- "2012-10-08",
- "2012-10-09",
- "2012-10-11",
- "2012-10-15",
- "2012-10-18",
- "2012-10-19",
- "2012-10-20",
- "2012-10-21",
- "2012-10-22",
- "2012-10-23",
- "2012-10-26",
- "2012-10-30",
- "2012-10-31",
- "2012-11-02",
- "2012-11-03",
- "2012-11-04",
- "2012-11-06",
- "2012-11-07",
- "2012-11-08",
- "2012-11-09",
- "2012-11-10",
- "2012-11-11",
- "2012-11-13",
- "2012-11-14",
- "2012-11-15",
- "2012-11-18",
- "2012-11-27",
- "2012-11-28",
- "2012-11-29",
- "2012-12-01",
- "2012-12-03",
- "2012-12-05",
- "2012-12-06",
- "2012-12-07",
- "2012-12-09",
- "2012-12-10",
- "2012-12-11",
- "2012-12-12",
- "2012-12-13",
- "2012-12-20",
- "2012-12-24",
- "2012-12-27",
- "2012-12-29",
- "2012-12-30",
- "2012-12-31",
- "2013-01-01",
- "2013-01-03",
- "2013-01-04",
- "2013-01-05",
- "2013-01-08",
- "2013-01-11",
- "2013-01-15",
- "2013-01-16",
- "2013-01-19",
- "2013-01-29",
- "2013-01-30",
- "2013-01-31",
- "2013-02-01",
- "2013-02-04",
- "2013-02-07",
- "2013-02-08",
- "2013-02-11",
- "2013-02-16",
- "2013-02-18",
- "2013-02-19",
- "2013-02-20",
- "2013-02-21",
- "2013-02-25",
- "2013-02-28",
- "2013-03-02",
- "2013-03-03",
- "2013-03-04",
- "2013-03-05",
- "2013-03-08",
- "2013-03-11",
- "2013-03-13",
- "2013-03-16",
- "2013-03-17",
- "2013-03-19",
- "2013-03-20",
- "2013-03-22",
- "2013-03-28",
- "2013-04-01",
- "2013-04-04",
- "2013-04-06",
- "2013-04-07",
- "2013-04-08",
- "2013-04-09",
- "2013-04-10",
- "2013-04-11",
- "2013-04-12",
- "2013-04-13",
- "2013-04-14",
- "2013-04-15",
- "2013-04-16",
- "2013-04-17",
- "2013-04-18",
- "2013-04-19",
- "2013-04-20",
- "2013-04-21",
- "2013-04-22",
- "2013-04-23",
- "2013-04-24",
- "2013-04-25",
- "2013-04-26",
- "2013-04-27",
- "2013-04-28",
- "2013-04-29",
- "2013-04-30",
- "2013-05-01",
- "2013-05-02",
- "2013-05-03",
- "2013-05-04",
- "2013-05-05",
- "2013-05-07",
- "2013-05-08",
- "2013-05-09",
- "2013-05-10",
- "2013-05-11",
- "2013-05-13",
- "2013-05-14",
- "2013-05-15",
- "2013-05-16",
- "2013-05-18",
- "2013-05-19",
- "2013-05-20",
- "2013-05-21",
- "2013-05-22",
- "2013-05-23",
- "2013-05-24",
- "2013-05-25",
- "2013-05-29",
- "2013-06-02",
- "2013-06-06",
- "2013-06-07",
- "2013-06-08",
- "2013-06-09",
- "2013-06-10",
- "2013-06-12",
- "2013-06-13",
- "2013-06-14",
- "2013-06-15",
- "2013-06-16",
- "2013-06-17",
- "2013-06-18",
- "2013-06-19",
- "2013-06-20",
- "2013-06-21",
- "2013-06-22",
- "2013-06-23",
- "2013-06-24",
- "2013-06-26",
- "2013-06-27",
- "2013-06-29",
- "2013-06-30",
- "2013-07-01",
- "2013-07-02",
- "2013-07-03",
- "2013-07-04",
- "2013-07-05",
- "2013-07-06",
- "2013-07-07",
- "2013-07-08",
- "2013-07-09",
- "2013-07-10",
- "2013-07-12",
- "2013-07-13",
- "2013-07-14",
- "2013-07-15",
- "2013-07-16",
- "2013-07-17",
- "2013-07-18",
- "2013-07-19",
- "2013-07-20",
- "2013-07-21",
- "2013-07-22",
- "2013-07-23",
- "2013-07-24",
- "2013-07-26",
- "2013-07-27",
- "2013-07-28",
- "2013-07-29",
- "2013-07-30",
- "2013-07-31",
- "2013-08-01",
- "2013-08-02",
- "2013-08-03",
- "2013-08-04",
- "2013-08-05",
- "2013-08-06",
- "2013-08-07",
- "2013-08-08",
- "2013-08-09",
- "2013-08-11",
- "2013-08-12",
- "2013-08-13",
- "2013-08-15",
- "2013-08-16",
- "2013-08-17",
- "2013-08-18",
- "2013-08-19",
- "2013-08-20",
- "2013-08-21",
- "2013-08-22",
- "2013-08-23",
- "2013-08-27",
- "2013-08-28",
- "2013-08-29",
- "2013-08-30",
- "2013-08-31",
- "2013-09-02",
- "2013-09-03",
- "2013-09-04",
- "2013-09-05",
- "2013-09-06",
- "2013-09-07",
- "2013-09-08",
- "2013-09-10",
- "2013-09-11",
- "2013-09-13",
- "2013-09-15",
- "2013-09-16",
- "2013-09-18",
- "2013-09-19",
- "2013-09-20",
- "2013-09-21",
- "2013-09-22",
- "2013-09-23",
- "2013-09-24",
- "2013-09-25",
- "2013-09-26",
- "2013-09-28",
- "2013-10-01",
- "2013-10-03",
- "2013-10-04",
- "2013-10-05",
- "2013-10-07",
- "2013-10-08",
- "2013-10-11",
- "2013-10-12",
- "2013-10-13",
- "2013-10-15",
- "2013-10-17",
- "2013-10-18",
- "2013-10-19",
- "2013-10-20",
- "2013-10-22",
- "2013-10-23",
- "2013-10-24",
- "2013-10-25",
- "2013-10-26",
- "2013-10-27",
- "2013-10-28",
- "2013-10-29",
- "2013-10-30",
- "2013-10-31",
- "2013-11-01",
- "2013-11-02",
- "2013-11-04",
- "2013-11-06",
- "2013-11-07",
- "2013-11-08",
- "2013-11-09",
- "2013-11-12",
- "2013-11-14",
- "2013-11-18",
- "2013-11-20",
- "2013-11-23",
- "2013-11-26",
- "2013-11-27",
- "2013-11-28",
- "2013-11-29",
- "2013-11-30",
- "2013-12-01",
- "2013-12-02",
- "2013-12-03",
- "2013-12-04",
- "2013-12-05",
- "2013-12-06",
- "2013-12-07",
- "2013-12-08",
- "2013-12-09",
- "2013-12-10",
- "2013-12-11",
- "2013-12-12",
- "2013-12-21",
- "2013-12-22",
- "2013-12-23",
- "2013-12-24",
- "2013-12-28",
- "2013-12-29",
- "2013-12-31",
- "2014-01-02",
- "2014-01-03",
- "2014-01-06",
- "2014-01-12",
- "2014-01-13",
- "2014-01-16",
- "2014-01-25",
- "2014-01-26",
- "2014-01-31",
- "2014-02-03",
- "2014-02-04",
- "2014-02-05",
- "2014-02-06",
- "2014-02-07",
- "2014-02-10",
- "2014-02-13",
- "2014-02-15",
- "2014-02-16",
- "2014-02-18",
- "2014-02-24",
- "2014-02-26",
- "2014-02-27",
- "2014-03-01",
- "2014-03-04",
- "2014-03-07",
- "2014-03-08",
- "2014-03-09",
- "2014-03-10",
- "2014-03-11",
- "2014-03-12",
- "2014-03-13",
- "2014-03-14",
- "2014-03-15",
- "2014-03-17",
- "2014-03-18",
- "2014-03-19",
- "2014-03-20",
- "2014-03-21",
- "2014-03-22",
- "2014-03-23",
- "2014-03-25",
- "2014-03-26",
- "2014-03-27",
- "2014-03-28",
- "2014-03-29",
- "2014-03-30",
- "2014-03-31",
- "2014-04-01",
- "2014-04-03",
- "2014-04-05",
- "2014-04-07",
- "2014-04-08",
- "2014-04-09",
- "2014-04-10",
- "2014-04-11",
- "2014-04-12",
- "2014-04-13",
- "2014-04-14",
- "2014-04-15",
- "2014-04-16",
- "2014-04-18",
- "2014-04-19",
- "2014-04-20",
- "2014-04-21",
- "2014-04-22",
- "2014-04-23",
- "2014-04-27",
- "2014-04-28",
- "2014-04-29",
- "2014-04-30",
- "2014-05-01",
- "2014-05-02",
- "2014-05-05",
- "2014-05-06",
- "2014-05-07",
- "2014-05-08",
- "2014-05-09",
- "2014-05-10",
- "2014-05-12",
- "2014-05-19",
- "2014-05-20",
- "2014-05-21",
- "2014-05-22",
- "2014-05-23",
- "2014-05-24",
- "2014-05-25",
- "2014-05-26",
- "2014-05-27",
- "2014-05-28",
- "2014-05-29",
- "2014-06-03",
- "2014-06-04",
- "2014-06-05",
- "2014-06-06",
- "2014-06-07",
- "2014-06-08",
- "2014-06-09",
- "2014-06-10",
- "2014-06-11",
- "2014-06-12",
- "2014-06-13",
- "2014-06-14",
- "2014-06-15",
- "2014-06-16",
- "2014-06-18",
- "2014-06-19",
- "2014-06-20",
- "2014-06-21",
- "2014-06-22",
- "2014-06-23",
- "2014-06-26",
- "2014-06-27",
- "2014-06-28",
- "2014-06-29",
- "2014-07-01",
- "2014-07-02",
- "2014-07-03",
- "2014-07-04",
- "2014-07-05",
- "2014-07-06",
- "2014-07-07",
- "2014-07-08",
- "2014-07-09",
- "2014-07-10",
- "2014-07-12",
- "2014-07-13",
- "2014-07-15",
- "2014-07-16",
- "2014-07-17",
- "2014-07-18",
- "2014-07-19",
- "2014-07-20",
- "2014-07-21",
- "2014-07-23",
- "2014-07-24",
- "2014-07-25",
- "2014-07-26",
- "2014-07-27",
- "2014-07-29",
- "2014-07-30",
- "2014-07-31",
- "2014-08-01",
- "2014-08-02",
- "2014-08-03",
- "2014-08-04",
- "2014-08-05",
- "2014-08-07",
- "2014-08-08",
- "2014-08-09",
- "2014-08-10",
- "2014-08-11",
- "2014-08-12",
- "2014-08-13",
- "2014-08-15",
- "2014-08-16",
- "2014-08-17",
- "2014-08-18",
- "2014-08-19",
- "2014-08-21",
- "2014-08-22",
- "2014-08-24",
- "2014-08-25",
- "2014-08-26",
- "2014-08-28",
- "2014-08-29",
- "2014-08-30",
- "2014-08-31",
- "2014-09-03",
- "2014-09-05",
- "2014-09-08",
- "2014-09-09",
- "2014-09-13",
- "2014-09-15",
- "2014-09-16",
- "2014-09-17",
- "2014-09-18",
- "2014-09-19",
- "2014-09-20",
- "2014-09-21",
- "2014-09-23",
- "2014-09-24",
- "2014-09-28",
- "2014-09-29",
- "2014-09-30",
- "2014-10-01",
- "2014-10-04",
- "2014-10-05",
- "2014-10-06",
- "2014-10-08",
- "2014-10-09",
- "2014-10-10",
- "2014-10-11",
- "2014-10-12",
- "2014-10-13",
- "2014-10-14",
- "2014-10-16",
- "2014-10-18",
- "2014-10-19",
- "2014-10-20",
- "2014-10-25",
- "2014-10-26",
- "2014-10-27",
- "2014-10-28",
- "2014-10-29",
- "2014-10-30",
- "2014-10-31",
- "2014-11-02",
- "2014-11-03",
- "2014-11-04",
- "2014-11-05",
- "2014-11-08",
- "2014-11-09",
- "2014-11-11",
- "2014-11-14",
- "2014-11-18",
- "2014-11-19",
- "2014-11-20",
- "2014-11-21",
- "2014-11-22",
- "2014-11-24",
- "2014-11-26",
- "2014-11-28",
- "2014-12-04",
- "2014-12-05",
- "2014-12-10",
- "2014-12-12",
- "2014-12-13",
- "2014-12-14",
- "2014-12-17",
- "2014-12-18",
- "2014-12-19",
- "2014-12-20",
- "2014-12-21",
- "2014-12-22",
- "2014-12-24",
- "2014-12-26",
- "2014-12-27",
- "2014-12-29",
- "2014-12-30",
- "2014-12-31",
- "2015-01-03",
- "2015-01-04",
- "2015-01-05",
- "2015-01-06",
- "2015-01-07",
- "2015-01-10",
- "2015-01-12",
- "2015-01-13",
- "2015-01-14",
- "2015-01-15",
- "2015-01-16",
- "2015-01-22",
- "2015-01-26",
- "2015-01-28",
- "2015-01-31",
- "2015-02-02",
- "2015-02-03",
- "2015-02-07",
- "2015-02-08",
- "2015-02-11",
- "2015-02-13",
- "2015-02-14",
- "2015-02-15",
- "2015-02-16",
- "2015-02-18",
- "2015-02-19",
- "2015-02-20",
- "2015-02-21",
- "2015-02-27",
- "2015-02-28",
- "2015-03-03",
- "2015-03-04",
- "2015-03-06",
- "2015-03-07",
- "2015-03-08",
- "2015-03-09",
- "2015-03-10",
- "2015-03-11",
- "2015-03-14",
- "2015-03-16",
- "2015-03-17",
- "2015-03-18",
- "2015-03-19",
- "2015-03-20",
- "2015-03-21",
- "2015-03-22",
- "2015-03-23",
- "2015-03-24",
- "2015-03-26",
- "2015-03-27",
- "2015-03-28",
- "2015-03-29",
- "2015-03-30",
- "2015-04-01",
- "2015-04-03",
- "2015-04-04",
- "2015-04-05",
- "2015-04-06",
- "2015-04-07",
- "2015-04-08",
- "2015-04-09",
- "2015-04-10",
- "2015-04-11",
- "2015-04-12",
- "2015-04-13",
- "2015-04-15",
- "2015-04-16",
- "2015-04-17",
- "2015-04-19",
- "2015-04-20",
- "2015-04-21",
- "2015-04-22",
- "2015-04-23",
- "2015-04-24",
- "2015-04-25",
- "2015-04-26",
- "2015-04-27",
- "2015-04-29",
- "2015-04-30",
- "2015-05-01",
- "2015-05-02",
- "2015-05-04",
- "2015-05-05",
- "2015-05-06",
- "2015-05-07",
- "2015-05-08",
- "2015-05-09",
- "2015-05-10",
- "2015-05-11",
- "2015-05-12",
- "2015-05-13",
- "2015-05-14",
- "2015-05-16",
- "2015-05-17",
- "2015-05-18",
- "2015-05-19",
- "2015-05-20",
- "2015-05-24",
- "2015-05-27",
- "2015-05-28",
- "2015-05-29",
- "2015-05-30",
- "2015-06-01",
- "2015-06-02",
- "2015-06-03",
- "2015-06-04",
- "2015-06-05",
- "2015-06-06",
- "2015-06-07",
- "2015-06-08",
- "2015-06-09",
- "2015-06-10",
- "2015-06-11",
- "2015-06-12",
- "2015-06-13",
- "2015-06-14",
- "2015-06-15",
- "2015-06-16",
- "2015-06-17",
- "2015-06-18",
- "2015-06-21",
- "2015-06-22",
- "2015-06-25",
- "2015-06-26",
- "2015-06-29",
- "2015-06-30",
- "2015-07-01",
- "2015-07-02",
- "2015-07-03",
- "2015-07-04",
- "2015-07-05",
- "2015-07-06",
- "2015-07-07",
- "2015-07-08",
- "2015-07-10",
- "2015-07-11",
- "2015-07-12",
- "2015-07-14",
- "2015-07-15",
- "2015-07-16",
- "2015-07-17",
- "2015-07-18",
- "2015-07-19",
- "2015-07-20",
- "2015-07-21",
- "2015-07-22",
- "2015-07-23",
- "2015-07-24",
- "2015-07-25",
- "2015-08-01",
- "2015-08-03",
- "2015-08-04",
- "2015-08-05",
- "2015-08-06",
- "2015-08-07",
- "2015-08-08",
- "2015-08-09",
- "2015-08-10",
- "2015-08-11",
- "2015-08-12",
- "2015-08-13",
- "2015-08-14",
- "2015-08-15",
- "2015-08-16",
- "2015-08-21",
- "2015-08-22",
- "2015-08-23",
- "2015-08-24",
- "2015-08-26",
- "2015-08-27",
- "2015-08-28",
- "2015-08-29",
- "2015-08-30",
- "2015-08-31",
- "2015-09-01",
- "2015-09-02",
- "2015-09-03",
- "2015-09-04",
- "2015-09-06",
- "2015-09-07",
- "2015-09-08",
- "2015-09-09",
- "2015-09-10",
- "2015-09-12",
- "2015-09-13",
- "2015-09-14",
- "2015-09-15",
- "2015-09-16",
- "2015-09-17",
- "2015-09-18",
- "2015-09-19",
- "2015-09-20",
- "2015-09-21",
- "2015-09-22",
- "2015-09-23",
- "2015-09-24",
- "2015-09-28",
- "2015-09-29",
- "2015-10-01",
- "2015-10-02",
- "2015-10-03",
- "2015-10-04",
- "2015-10-05",
- "2015-10-07",
- "2015-10-09",
- "2015-10-12",
- "2015-10-17",
- "2015-10-18",
- "2015-10-21",
- "2015-10-22",
- "2015-10-24",
- "2015-10-25",
- "2015-10-26",
- "2015-10-27",
- "2015-10-29",
- "2015-10-30",
- "2015-10-31",
- "2015-11-01",
- "2015-11-02",
- "2015-11-03",
- "2015-11-04",
- "2015-11-05",
- "2015-11-06",
- "2015-11-07",
- "2015-11-08",
- "2015-11-09",
- "2015-11-11",
- "2015-11-12",
- "2015-11-13",
- "2015-11-14",
- "2015-11-16",
- "2015-11-17",
- "2015-11-18",
- "2015-11-19",
- "2015-11-23",
- "2015-11-24",
- "2015-11-27",
- "2015-11-29",
- "2015-12-02",
- "2015-12-04",
- "2015-12-11",
- "2015-12-14",
- "2015-12-15",
- "2015-12-19",
- "2015-12-22",
- "2015-12-23",
- "2015-12-26",
- "2015-12-28",
- "2015-12-30",
- "2015-12-31",
- "2016-01-07",
- "2016-01-12",
- "2016-01-13",
- "2016-01-14",
- "2016-01-16",
- "2016-01-17",
- "2016-01-18",
- "2016-01-19",
- "2016-01-20",
- "2016-01-21",
- "2016-01-22",
- "2016-01-23",
- "2016-01-26",
- "2016-01-28",
- "2016-01-29",
- "2016-01-30",
- "2016-02-04",
- "2016-02-05",
- "2016-02-06",
- "2016-02-09",
- "2016-02-11",
- "2016-02-12",
- "2016-02-14",
- "2016-02-19",
- "2016-02-20",
- "2016-02-22",
- "2016-02-24",
- "2016-02-26",
- "2016-02-27",
- "2016-03-02",
- "2016-03-06",
- "2016-03-07",
- "2016-03-08",
- "2016-03-09",
- "2016-03-10",
- "2016-03-12",
- "2016-03-14",
- "2016-03-16",
- "2016-03-17",
- "2016-03-18",
- "2016-03-19",
- "2016-03-20",
- "2016-03-21",
- "2016-03-22",
- "2016-03-24",
- "2016-03-25",
- "2016-03-27",
- "2016-03-28",
- "2016-03-29",
- "2016-03-31",
- "2016-04-03",
- "2016-04-04",
- "2016-04-05",
- "2016-04-06",
- "2016-04-07",
- "2016-04-10",
- "2016-04-11",
- "2016-04-12",
- "2016-04-13",
- "2016-04-14",
- "2016-04-15",
- "2016-04-16",
- "2016-04-17",
- "2016-04-18",
- "2016-04-19",
- "2016-04-20",
- "2016-04-21",
- "2016-04-22",
- "2016-04-23",
- "2016-04-26",
- "2016-04-28",
- "2016-04-29",
- "2016-04-30",
- "2016-05-04",
- "2016-05-05",
- "2016-05-06",
- "2016-05-07",
- "2016-05-08",
- "2016-05-09",
- "2016-05-13",
- "2016-05-16",
- "2016-05-17",
- "2016-05-18",
- "2016-05-19",
- "2016-05-20",
- "2016-05-21",
- "2016-05-22",
- "2016-05-23",
- "2016-05-24",
- "2016-05-25",
- "2016-05-26",
- "2016-05-27",
- "2016-05-28",
- "2016-05-29",
- "2016-05-30",
- "2016-05-31",
- "2016-06-01",
- "2016-06-02",
- "2016-06-03",
- "2016-06-04",
- "2016-06-05",
- "2016-06-06",
- "2016-06-07",
- "2016-06-08",
- "2016-06-09",
- "2016-06-11",
- "2016-06-13",
- "2016-06-16",
- "2016-06-17",
- "2016-06-20",
- "2016-06-21",
- "2016-06-23",
- "2016-06-24",
- "2016-06-25",
- "2016-06-28",
- "2016-06-29",
- "2016-06-30",
- "2016-07-01",
- "2016-07-02",
- "2016-07-03",
- "2016-07-04",
- "2016-07-05",
- "2016-07-08",
- "2016-07-09",
- "2016-07-10",
- "2016-07-12",
- "2016-07-13",
- "2016-07-14",
- "2016-07-18",
- "2016-07-20",
- "2016-07-21",
- "2016-07-22",
- "2016-07-24",
- "2016-07-27",
- "2016-07-29",
- "2016-07-30",
- "2016-07-31",
- "2016-08-01",
- "2016-08-02",
- "2016-08-04",
- "2016-08-05",
- "2016-08-06",
- "2016-08-08",
- "2016-08-09",
- "2016-08-10",
- "2016-08-12",
- "2016-08-13",
- "2016-08-14",
- "2016-08-16",
- "2016-08-17",
- "2016-08-18",
- "2016-08-20",
- "2016-08-23",
- "2016-08-24",
- "2016-08-25",
- "2016-08-26",
- "2016-08-27",
- "2016-08-28",
- "2016-08-29",
- "2016-08-31",
- "2016-09-01",
- "2016-09-02",
- "2016-09-08",
- "2016-09-09",
- "2016-09-10",
- "2016-09-12",
- "2016-09-13",
- "2016-09-14",
- "2016-09-16",
- "2016-09-17",
- "2016-09-20",
- "2016-09-21",
- "2016-09-22",
- "2016-09-23",
- "2016-09-24",
- "2016-09-25",
- "2016-09-26",
- "2016-09-27",
- "2016-09-28",
- "2016-09-29",
- "2016-10-01",
- "2016-10-03",
- "2016-10-05",
- "2016-10-09",
- "2016-10-10",
- "2016-10-13",
- "2016-10-14",
- "2016-10-15",
- "2016-10-16",
- "2016-10-19",
- "2016-10-22",
- "2016-10-24",
- "2016-10-25",
- "2016-10-26",
- "2016-10-28",
- "2016-10-29",
- "2016-10-30",
- "2016-11-01",
- "2016-11-02",
- "2016-11-03",
- "2016-11-07",
- "2016-11-09",
- "2016-11-10",
- "2016-11-11",
- "2016-11-13",
- "2016-11-14",
- "2016-11-15",
- "2016-11-17",
- "2016-11-18",
- "2016-11-20",
- "2016-11-21",
- "2016-11-22",
- "2016-11-24",
- "2016-11-26",
- "2016-11-28",
- "2016-11-29",
- "2016-11-30",
- "2016-12-02",
- "2016-12-03",
- "2016-12-04",
- "2016-12-06",
- "2016-12-07",
- "2016-12-09",
- "2016-12-10",
- "2016-12-11",
- "2016-12-12",
- "2016-12-13",
- "2016-12-15",
- "2016-12-17",
- "2016-12-26",
- "2016-12-27",
- "2016-12-29",
- "2016-12-30",
- "2016-12-31",
- "2017-01-03",
- "2017-01-05",
- "2017-01-06",
- "2017-01-07",
- "2017-01-15",
- "2017-02-03",
- "2017-02-04",
- "2017-02-05",
- "2017-02-07",
- "2017-02-10",
- "2017-02-11",
- "2017-02-12",
- "2017-02-13",
- "2017-02-14",
- "2017-02-15",
- "2017-02-18",
- "2017-02-25",
- "2017-02-26",
- "2017-03-02",
- "2017-03-03",
- "2017-03-04",
- "2017-03-06",
- "2017-03-08",
- "2017-03-09",
- "2017-03-10",
- "2017-03-12",
- "2017-03-13",
- "2017-03-14",
- "2017-03-21",
- "2017-03-22",
- "2017-03-24",
- "2017-03-25",
- "2017-03-26",
- "2017-03-27",
- "2017-03-28",
- "2017-03-29",
- "2017-03-30",
- "2017-03-31",
- "2017-04-01",
- "2017-04-02",
- "2017-04-04",
- "2017-04-05",
- "2017-04-06",
- "2017-04-08",
- "2017-04-09",
- "2017-04-10",
- "2017-04-14",
- "2017-04-16",
- "2017-04-17",
- "2017-04-18",
- "2017-04-21",
- "2017-04-23",
- "2017-04-24",
- "2017-04-25",
- "2017-04-27",
- "2017-04-29",
- "2017-05-01",
- "2017-05-02",
- "2017-05-05",
- "2017-05-06",
- "2017-05-10",
- "2017-05-11",
- "2017-05-14",
- "2017-05-17",
- "2017-05-18",
- "2017-05-19",
- "2017-05-20",
- "2017-05-21",
- "2017-05-22",
- "2017-05-23",
- "2017-05-25",
- "2017-05-26",
- "2017-05-28",
- "2017-05-29",
- "2017-05-30",
- "2017-06-01",
- "2017-06-03",
- "2017-06-05",
- "2017-06-06",
- "2017-06-07",
- "2017-06-09",
- "2017-06-11",
- "2017-06-13",
- "2017-06-14",
- "2017-06-15",
- "2017-06-17",
- "2017-06-18",
- "2017-06-19",
- "2017-06-20",
- "2017-06-21",
- "2017-06-22",
- "2017-06-24",
- "2017-06-25",
- "2017-06-26",
- "2017-06-28",
- "2017-06-29",
- "2017-06-30",
- "2017-07-02",
- "2017-07-03",
- "2017-07-04",
- "2017-07-06",
- "2017-07-07",
- "2017-07-08",
- "2017-07-10",
- "2017-07-11",
- "2017-07-12",
- "2017-07-13",
- "2017-07-15",
- "2017-07-16",
- "2017-07-17",
- "2017-07-18",
- "2017-07-19",
- "2017-07-21",
- "2017-07-22",
- "2017-07-23",
- "2017-07-25",
- "2017-07-26",
- "2017-07-29",
- "2017-07-30",
- "2017-07-31",
- "2017-08-01",
- "2017-08-02",
- "2017-08-03",
- "2017-08-04",
- "2017-08-05",
- "2017-08-07",
- "2017-08-08",
- "2017-08-09",
- "2017-08-10",
- "2017-08-11",
- "2017-08-13",
- "2017-08-14",
- "2017-08-15",
- "2017-08-17",
- "2017-08-18",
- "2017-08-19",
- "2017-08-21",
- "2017-08-22",
- "2017-08-23",
- "2017-08-25",
- "2017-08-26",
- "2017-08-27",
- "2017-08-29",
- "2017-08-30",
- "2017-08-31",
- "2017-09-02",
- "2017-09-04",
- "2017-09-05",
- "2017-09-06",
- "2017-09-09",
- "2017-09-10",
- "2017-09-13",
- "2017-09-14",
- "2017-09-15",
- "2017-09-18",
- "2017-09-22",
- "2017-09-23",
- "2017-09-25",
- "2017-09-26",
- "2017-09-29",
- "2017-09-30",
- "2017-10-01",
- "2017-10-02",
- "2017-10-04",
- "2017-10-05",
- "2017-10-06",
- "2017-10-07",
- "2017-10-10",
- "2017-10-11",
- "2017-10-12",
- "2017-10-14",
- "2017-10-15",
- "2017-10-16",
- "2017-10-18",
- "2017-10-19",
- "2017-10-20",
- "2017-10-24",
- "2017-10-26",
- "2017-10-30",
- "2017-11-01",
- "2017-11-02",
- "2017-11-03",
- "2017-11-04",
- "2017-11-06",
- "2017-11-07",
- "2017-11-11",
- "2017-11-15",
- "2017-11-19",
- "2017-11-20",
- "2017-11-23",
- "2017-11-25",
- "2017-11-26",
- "2017-11-27",
- "2017-11-28",
- "2017-12-01",
- "2017-12-02",
- "2017-12-05",
- "2017-12-07",
- "2017-12-08",
- "2017-12-09",
- "2017-12-17",
- "2017-12-19",
- "2017-12-20",
- "2017-12-23",
- "2017-12-24",
- "2017-12-25",
- "2017-12-26",
- "2017-12-27",
- "2017-12-28",
- "2017-12-29",
- "2017-12-30",
- "2018-01-03",
- "2018-01-04",
- "2018-01-05",
- "2018-01-07",
- "2018-01-15",
- "2018-01-18",
- "2018-01-20",
- "2018-01-21",
- "2018-01-22",
- "2018-01-23",
- "2018-01-24",
- "2018-01-28",
- "2018-01-30",
- "2018-01-31",
- "2018-02-01",
- "2018-02-04",
- "2018-02-05",
- "2018-02-09",
- "2018-02-11",
- "2018-02-16",
- "2018-02-17",
- "2018-02-19",
- "2018-02-24",
- "2018-02-28",
- "2018-03-07",
- "2018-03-10",
- "2018-03-11",
- "2018-03-12",
- "2018-03-13",
- "2018-03-14",
- "2018-03-15",
- "2018-03-21",
- "2018-03-22",
- "2018-03-26",
- "2018-03-27",
- "2018-04-02",
- "2018-04-03",
- "2018-04-06",
- "2018-04-08",
- "2018-04-09",
- "2018-04-10",
- "2018-04-11",
- "2018-04-12",
- "2018-04-13",
- "2018-04-14",
- "2018-04-15",
- "2018-04-18",
- "2018-04-19",
- "2018-04-21",
- "2018-04-22",
- "2018-04-23",
- "2018-04-25",
- "2018-04-26",
- "2018-04-29",
- "2018-04-30",
- "2018-05-01",
- "2018-05-03",
- "2018-05-04",
- "2018-05-05",
- "2018-05-06",
- "2018-05-07",
- "2018-05-08",
- "2018-05-10",
- "2018-05-11",
- "2018-05-12",
- "2018-05-15",
- "2018-05-16",
- "2018-05-18",
- "2018-05-19",
- "2018-05-20",
- "2018-05-22",
- "2018-05-23",
- "2018-05-24",
- "2018-05-26",
- "2018-05-27",
- "2018-05-28",
- "2018-05-30",
- "2018-05-31",
- "2018-06-01",
- "2018-06-02",
- "2018-06-03",
- "2018-06-05",
- "2018-06-07",
- "2018-06-08",
- "2018-06-11",
- "2018-06-12",
- "2018-06-16",
- "2018-06-20",
- "2018-06-23",
- "2018-06-24",
- "2018-06-26",
- "2018-06-27",
- "2018-06-28",
- "2018-06-29",
- "2018-06-30",
- "2018-07-01",
- "2018-07-02",
- "2018-07-03",
- "2018-07-05",
- "2018-07-07",
- "2018-07-08",
- "2018-07-09",
- "2018-07-12",
- "2018-07-13",
- "2018-07-15",
- "2018-07-16",
- "2018-07-17",
- "2018-07-19",
- "2018-07-20",
- "2018-07-24",
- "2018-07-25",
- "2018-07-26",
- "2018-07-27",
- "2018-07-29",
- "2018-07-30",
- "2018-07-31",
- "2018-08-01",
- "2018-08-03",
- "2018-08-04",
- "2018-08-05",
- "2018-08-07",
- "2018-08-08",
- "2018-08-09",
- "2018-08-11",
- "2018-08-12",
- "2018-08-13",
- "2018-08-16",
- "2018-08-17",
- "2018-08-19",
- "2018-08-20",
- "2018-08-21",
- "2018-08-22",
- "2018-08-23",
- "2018-08-24",
- "2018-08-25",
- "2018-08-27",
- "2018-08-30",
- "2018-08-31",
- "2018-09-01",
- "2018-09-05",
- "2018-09-07",
- "2018-09-08",
- "2018-09-09",
- "2018-09-11",
- "2018-09-12",
- "2018-09-13",
- "2018-09-14",
- "2018-09-15",
- "2018-09-16",
- "2018-09-17",
- "2018-09-18",
- "2018-09-20",
- "2018-09-21",
- "2018-09-24",
- "2018-09-25",
- "2018-09-26",
- "2018-09-27",
- "2018-09-28",
- "2018-09-30",
- "2018-10-01",
- "2018-10-04",
- "2018-10-05",
- "2018-10-06",
- "2018-10-08",
- "2018-10-09",
- "2018-10-10",
- "2018-10-12",
- "2018-10-13",
- "2018-10-14",
- "2018-10-15",
- "2018-10-17",
- "2018-10-19",
- "2018-10-20",
- "2018-10-21",
- "2018-10-23",
- "2018-10-24",
- "2018-10-25",
- "2018-10-28",
- "2018-10-29",
- "2018-10-31",
- "2018-11-01",
- "2018-11-02",
- "2018-11-04",
- "2018-11-05",
- "2018-11-06",
- "2018-11-08",
- "2018-11-09",
- "2018-11-10",
- "2018-11-11",
- "2018-11-12",
- "2018-11-13",
- "2018-11-14",
- "2018-11-15",
- "2018-11-16",
- "2018-11-17",
- "2018-11-18",
- "2018-11-28",
- "2018-11-29",
- "2018-12-02",
- "2018-12-05",
- "2018-12-10",
- "2018-12-11",
- "2018-12-12",
- "2018-12-13",
- "2018-12-20",
- "2018-12-26",
- "2018-12-29",
- "2019-01-02",
- "2019-01-03",
- "2019-01-04",
- "2019-01-06",
- "2019-01-07",
- "2019-01-09",
- "2019-01-11",
- "2019-01-14",
- "2019-01-16",
- "2019-01-17",
- "2019-01-21",
- "2019-01-24",
- "2019-01-30",
- "2019-02-04",
- "2019-02-06",
- "2019-02-07",
- "2019-02-12",
- "2019-02-13",
- "2019-02-14",
- "2019-02-16",
- "2019-02-17",
- "2019-02-18",
- "2019-02-21",
- "2019-02-25",
- "2019-02-27",
- "2019-02-28",
- "2019-03-01",
- "2019-03-03",
- "2019-03-04",
- "2019-03-05",
- "2019-03-08",
- "2019-03-09",
- "2019-03-12",
- "2019-03-15",
- "2019-03-17",
- "2019-03-20",
- "2019-03-21",
- "2019-03-23",
- "2019-03-24",
- "2019-03-26",
- "2019-03-27",
- "2019-03-28",
- "2019-03-29",
- "2019-03-30",
- "2019-03-31",
- "2019-04-01",
- "2019-04-03",
- "2019-04-04",
- "2019-04-07",
- "2019-04-08",
- "2019-04-09",
- "2019-04-15",
- "2019-04-16",
- "2019-04-17",
- "2019-04-19",
- "2019-04-20",
- "2019-04-21",
- "2019-04-22",
- "2019-04-24",
- "2019-04-25",
- "2019-04-26",
- "2019-04-28",
- "2019-04-30",
- "2019-05-01",
- "2019-05-02",
- "2019-05-08",
- "2019-05-10",
- "2019-05-12",
- "2019-05-18",
- "2019-05-20",
- "2019-05-21",
- "2019-05-23",
- "2019-05-24",
- "2019-05-25",
- "2019-05-28",
- "2019-05-31",
- "2019-06-01",
- "2019-06-02",
- "2019-06-04",
- "2019-06-05",
- "2019-06-06",
- "2019-06-08",
- "2019-06-09",
- "2019-06-10",
- "2019-06-12",
- "2019-06-13",
- "2019-06-14",
- "2019-06-16",
- "2019-06-17",
- "2019-06-18",
- "2019-06-19",
- "2019-06-20",
- "2019-06-21",
- "2019-06-24",
- "2019-06-25",
- "2019-06-27",
- "2019-06-28",
- "2019-06-29",
- "2019-07-01",
- "2019-07-02",
- "2019-07-03",
- "2019-07-05",
- "2019-07-06",
- "2019-07-07",
- "2019-07-09",
- "2019-07-10",
- "2019-07-11",
- "2019-07-14",
- "2019-07-15",
- "2019-07-16",
- "2019-07-17",
- "2019-07-20",
- "2019-07-21",
- "2019-07-22",
- "2019-07-24",
- "2019-07-25",
- "2019-07-26",
- "2019-07-28",
- "2019-07-30",
- "2019-08-01",
- "2019-08-03",
- "2019-08-05",
- "2019-08-06",
- "2019-08-07",
- "2019-08-09",
- "2019-08-10",
- "2019-08-11",
- "2019-08-12",
- "2019-08-13",
- "2019-08-14",
- "2019-08-16",
- "2019-08-17",
- "2019-08-18",
- "2019-08-20",
- "2019-08-21",
- "2019-08-22",
- "2019-08-25",
- "2019-08-28",
- "2019-08-29",
- "2019-08-30",
- "2019-09-01",
- "2019-09-02",
- "2019-09-04",
- "2019-09-05",
- "2019-09-09",
- "2019-09-10",
- "2019-09-12",
- "2019-09-13",
- "2019-09-14",
- "2019-09-16",
- "2019-09-18",
- "2019-09-20",
- "2019-09-21",
- "2019-09-22",
- "2019-09-24",
- "2019-09-26",
- "2019-09-28",
- "2019-09-29",
- "2019-09-30",
- "2019-10-01",
- "2019-10-02",
- "2019-10-03",
- "2019-10-04",
- "2019-10-06",
- "2019-10-09",
- "2019-10-11",
- "2019-10-13",
- "2019-10-14",
- "2019-10-15",
- "2019-10-17",
- "2019-10-18",
- "2019-10-19",
- "2019-10-21",
- "2019-10-22",
- "2019-10-23",
- "2019-10-25",
- "2019-10-26",
- "2019-10-27",
- "2019-11-01",
- "2019-11-02",
- "2019-11-03",
- "2019-11-05",
- "2019-11-06",
- "2019-11-07",
- "2019-11-09",
- "2019-11-11",
- "2019-11-13",
- "2019-11-14",
- "2019-11-17",
- "2019-11-18",
- "2019-11-19",
- "2019-11-21",
- "2019-11-22",
- "2019-11-23",
- "2019-11-24",
- "2019-11-25",
- "2019-11-30",
- "2019-12-03",
- "2019-12-10",
- "2019-12-11",
- "2019-12-14",
- "2019-12-15",
- "2019-12-16",
- "2019-12-18",
- "2019-12-20",
- "2019-12-24",
- "2019-12-25",
- "2019-12-26",
- "2019-12-27",
- "2019-12-29",
- "2019-12-30",
- "2019-12-31",
- "2020-01-02",
- "2020-01-03",
- "2020-01-06",
- "2020-01-07",
- "2020-01-08",
- "2020-01-10",
- "2020-01-11",
- "2020-01-12",
- "2020-01-20",
- "2020-01-21",
- "2020-01-22",
- "2020-01-23",
- "2020-01-27",
- "2020-01-30",
- "2020-01-31",
- "2020-02-05",
- "2020-02-06",
- "2020-02-07",
- "2020-02-08",
- "2020-02-09",
- "2020-02-10",
- "2020-02-12",
- "2020-02-15",
- "2020-02-16",
- "2020-02-19",
- "2020-02-21",
- "2020-02-22",
- "2020-02-25",
- "2020-02-27",
- "2020-02-29",
- "2020-03-01",
- "2020-03-02",
- "2020-03-04",
- "2020-03-05",
- "2020-03-08",
- "2020-03-09",
- "2020-03-10",
- "2020-03-12",
- "2020-03-14",
- "2020-03-15",
- "2020-03-16",
- "2020-03-17",
- "2020-03-19",
- "2020-03-20",
- "2020-03-21",
- "2020-03-27",
- "2020-03-28",
- "2020-03-29",
- "2020-03-31",
- "2020-04-01",
- "2020-04-02",
- "2020-04-04",
- "2020-04-05",
- "2020-04-06",
- "2020-04-07",
- "2020-04-08",
- "2020-04-09",
- "2020-04-10",
- "2020-04-11",
- "2020-04-12",
- "2020-04-13",
- "2020-04-15",
- "2020-04-16",
- "2020-04-17",
- "2020-04-20",
- "2020-04-21",
- "2020-04-23",
- "2020-04-24",
- "2020-04-25",
- "2020-04-27",
- "2020-04-29",
- "2020-05-02",
- "2020-05-03",
- "2020-05-04",
- "2020-05-06",
- "2020-05-07",
- "2020-05-08",
- "2020-05-09",
- "2020-05-10",
- "2020-05-13",
- "2020-05-14",
- "2020-05-17",
- "2020-05-18",
- "2020-05-21",
- "2020-05-22",
- "2020-05-24",
- "2020-05-25",
- "2020-05-26",
- "2020-05-28",
- "2020-05-30",
- "2020-06-01",
- "2020-06-02",
- "2020-06-03",
- "2020-06-04",
- "2020-06-05",
- "2020-06-06",
- "2020-06-09",
- "2020-06-12",
- "2020-06-13",
- "2020-06-14",
- "2020-06-17",
- "2020-06-21",
- "2020-06-24",
- "2020-06-25",
- "2020-06-26",
- "2020-06-27",
- "2020-06-28",
- "2020-06-29",
- "2020-06-30",
- "2020-07-01",
- "2020-07-02",
- "2020-07-05",
- "2020-07-06",
- "2020-07-07",
- "2020-07-09",
- "2020-07-10",
- "2020-07-11",
- "2020-07-13",
- "2020-07-14",
- "2020-07-15",
- "2020-07-18",
- "2020-07-19",
- "2020-07-21",
- "2020-07-22",
- "2020-07-26",
- "2020-07-27",
- "2020-07-28",
- "2020-07-29",
- "2020-07-30",
- "2020-08-01",
- "2020-08-02",
- "2020-08-06",
- "2020-08-07",
- "2020-08-09",
- "2020-08-10",
- "2020-08-11",
- "2020-08-13",
- "2020-08-15",
- "2020-08-17",
- "2020-08-18",
- "2020-08-19",
- "2020-08-20",
- "2020-08-21",
- "2020-08-22",
- "2020-08-24",
- "2020-08-25",
- "2020-08-26",
- "2020-08-27",
- "2020-08-28",
- "2020-08-29",
- "2020-08-30",
- "2020-08-31",
- "2020-09-01",
- "2020-09-02",
- "2020-09-03",
- "2020-09-04",
- "2020-09-05",
- "2020-09-06",
- "2020-09-07",
- "2020-09-08",
- "2020-09-09",
- "2020-09-10",
- "2020-09-11",
- "2020-09-12",
- "2020-09-13",
- "2020-09-14",
- "2020-09-15",
- "2020-09-16",
- "2020-09-17",
- "2020-09-18",
- "2020-09-19",
- "2020-09-20",
- "2020-09-21",
- "2020-09-22",
- "2020-09-23",
- "2020-09-24",
- "2020-09-27",
- "2020-09-28",
- "2020-09-29",
- "2020-09-30",
- "2020-10-02",
- "2020-10-04",
- "2020-10-05",
- "2020-10-06",
- "2020-10-08",
- "2020-10-09",
- "2020-10-10",
- "2020-10-14",
- "2020-10-18",
- "2020-10-20",
- "2020-10-21",
- "2020-10-22",
- "2020-10-23",
- "2020-10-26",
- "2020-10-27",
- "2020-10-28",
- "2020-10-30",
- "2020-10-31",
- "2020-11-01",
- "2020-11-06",
- "2020-11-07",
- "2020-11-17",
- "2020-11-18",
- "2020-11-21",
- "2020-11-22",
- "2020-11-23",
- "2020-11-24",
- "2020-11-29",
- "2020-11-30",
- "2020-12-01",
- "2020-12-05",
- "2020-12-06",
- "2020-12-14",
- "2020-12-23",
- "2020-12-26",
- "2020-12-29",
- "2020-12-30"
- ],
- "LAKES_SURFACE_WATER_TEMPERATURE_Biwa": [
- "2010-01-02",
- "2010-01-04",
- "2010-01-06",
- "2010-01-13",
- "2010-01-15",
- "2010-01-19",
- "2010-01-24",
- "2010-02-03",
- "2010-02-05",
- "2010-02-14",
- "2010-02-18",
- "2010-02-21",
- "2010-02-23",
- "2010-02-27",
- "2010-03-02",
- "2010-03-08",
- "2010-03-11",
- "2010-03-17",
- "2010-03-19",
- "2010-03-20",
- "2010-03-22",
- "2010-03-26",
- "2010-04-03",
- "2010-04-07",
- "2010-04-10",
- "2010-04-18",
- "2010-04-25",
- "2010-04-29",
- "2010-04-30",
- "2010-05-02",
- "2010-05-06",
- "2010-05-08",
- "2010-05-15",
- "2010-05-17",
- "2010-05-28",
- "2010-06-01",
- "2010-06-05",
- "2010-06-09",
- "2010-06-10",
- "2010-06-23",
- "2010-07-06",
- "2010-07-08",
- "2010-07-17",
- "2010-07-19",
- "2010-07-22",
- "2010-07-24",
- "2010-07-26",
- "2010-07-31",
- "2010-08-03",
- "2010-08-07",
- "2010-08-09",
- "2010-08-16",
- "2010-08-18",
- "2010-08-21",
- "2010-08-23",
- "2010-08-25",
- "2010-08-27",
- "2010-08-29",
- "2010-08-30",
- "2010-09-02",
- "2010-09-04",
- "2010-09-06",
- "2010-09-15",
- "2010-09-22",
- "2010-09-26",
- "2010-09-28",
- "2010-10-06",
- "2010-10-11",
- "2010-10-13",
- "2010-11-01",
- "2010-11-05",
- "2010-11-09",
- "2010-11-10",
- "2010-11-12",
- "2010-11-18",
- "2010-11-21",
- "2010-11-23",
- "2010-11-27",
- "2010-11-29",
- "2010-11-30",
- "2010-12-02",
- "2010-12-04",
- "2010-12-08",
- "2010-12-17",
- "2010-12-19",
- "2010-12-20",
- "2010-12-22",
- "2010-12-26",
- "2010-12-28",
- "2011-01-01",
- "2011-01-03",
- "2011-01-05",
- "2011-01-09",
- "2011-01-10",
- "2011-01-12",
- "2011-01-14",
- "2011-01-18",
- "2011-01-27",
- "2011-01-30",
- "2011-02-04",
- "2011-02-08",
- "2011-02-13",
- "2011-02-19",
- "2011-02-20",
- "2011-02-22",
- "2011-02-26",
- "2011-03-03",
- "2011-03-09",
- "2011-03-10",
- "2011-03-16",
- "2011-03-18",
- "2011-03-21",
- "2011-03-25",
- "2011-03-27",
- "2011-03-29",
- "2011-03-30",
- "2011-04-02",
- "2011-04-06",
- "2011-04-11",
- "2011-04-17",
- "2011-04-19",
- "2011-04-24",
- "2011-05-07",
- "2011-05-14",
- "2011-05-18",
- "2011-05-23",
- "2011-06-04",
- "2011-06-06",
- "2011-06-08",
- "2011-06-17",
- "2011-06-26",
- "2011-06-28",
- "2011-07-05",
- "2011-07-09",
- "2011-07-14",
- "2011-07-16",
- "2011-07-23",
- "2011-07-25",
- "2011-07-30",
- "2011-08-04",
- "2011-08-06",
- "2011-08-08",
- "2011-08-13",
- "2011-08-17",
- "2011-08-28",
- "2011-08-31",
- "2011-09-09",
- "2011-09-10",
- "2011-09-12",
- "2011-09-14",
- "2011-09-16",
- "2011-09-23",
- "2011-09-27",
- "2011-09-29",
- "2011-10-01",
- "2011-10-03",
- "2011-10-05",
- "2011-10-09",
- "2011-10-10",
- "2011-10-12",
- "2011-10-18",
- "2011-10-21",
- "2011-10-27",
- "2011-10-29",
- "2011-11-02",
- "2011-11-04",
- "2011-11-08",
- "2011-11-13",
- "2011-11-17",
- "2011-11-20",
- "2011-11-22",
- "2011-11-26",
- "2011-12-07",
- "2011-12-09",
- "2011-12-10",
- "2011-12-12",
- "2011-12-16",
- "2011-12-18",
- "2011-12-21",
- "2011-12-25",
- "2011-12-27",
- "2011-12-29",
- "2011-12-30",
- "2012-01-02",
- "2012-01-04",
- "2012-01-08",
- "2012-01-11",
- "2012-01-13",
- "2012-01-17",
- "2012-01-19",
- "2012-01-28",
- "2012-01-31",
- "2012-02-01",
- "2012-02-03",
- "2012-02-09",
- "2012-02-10",
- "2012-02-12",
- "2012-02-21",
- "2012-02-27",
- "2012-03-11",
- "2012-03-15",
- "2012-03-20",
- "2012-03-26",
- "2012-03-28",
- "2012-04-01",
- "2012-04-05",
- "2012-04-09",
- "2012-04-10",
- "2012-04-18",
- "2012-04-25",
- "2012-04-27",
- "2012-04-29",
- "2012-05-13",
- "2012-05-19",
- "2012-05-28",
- "2012-06-03",
- "2012-06-07",
- "2012-06-14",
- "2012-06-25",
- "2012-06-29",
- "2012-06-30",
- "2012-07-02",
- "2012-07-11",
- "2012-07-17",
- "2012-07-22",
- "2012-07-24",
- "2012-07-26",
- "2012-07-28",
- "2012-07-31",
- "2012-08-03",
- "2012-08-05",
- "2012-08-09",
- "2012-08-10",
- "2012-08-12",
- "2012-08-16",
- "2012-08-18",
- "2012-08-23",
- "2012-08-25",
- "2012-08-27",
- "2012-08-29",
- "2012-08-30",
- "2012-09-02",
- "2012-09-04",
- "2012-09-06",
- "2012-09-13",
- "2012-09-15",
- "2012-09-17",
- "2012-09-19",
- "2012-09-20",
- "2012-09-22",
- "2012-09-26",
- "2012-09-28",
- "2012-10-02",
- "2012-10-04",
- "2012-10-08",
- "2012-10-11",
- "2012-10-13",
- "2012-10-19",
- "2012-10-20",
- "2012-10-22",
- "2012-10-26",
- "2012-10-31",
- "2012-11-01",
- "2012-11-03",
- "2012-11-07",
- "2012-11-09",
- "2012-11-10",
- "2012-11-12",
- "2012-11-16",
- "2012-11-18",
- "2012-11-21",
- "2012-11-25",
- "2012-11-27",
- "2012-11-29",
- "2012-11-30",
- "2012-12-02",
- "2012-12-06",
- "2012-12-08",
- "2012-12-11",
- "2012-12-15",
- "2012-12-17",
- "2012-12-19",
- "2012-12-20",
- "2012-12-24",
- "2012-12-26",
- "2013-01-01",
- "2013-01-03",
- "2013-01-07",
- "2013-01-09",
- "2013-01-10",
- "2013-01-12",
- "2013-01-16",
- "2013-01-18",
- "2013-01-21",
- "2013-01-25",
- "2013-01-27",
- "2013-01-29",
- "2013-01-30",
- "2013-02-02",
- "2013-02-08",
- "2013-02-11",
- "2013-02-19",
- "2013-02-20",
- "2013-02-24",
- "2013-02-26",
- "2013-02-28",
- "2013-03-05",
- "2013-03-07",
- "2013-03-09",
- "2013-03-10",
- "2013-03-14",
- "2013-03-16",
- "2013-03-23",
- "2013-04-04",
- "2013-04-08",
- "2013-04-13",
- "2013-04-15",
- "2013-04-19",
- "2013-04-22",
- "2013-04-26",
- "2013-05-03",
- "2013-05-05",
- "2013-05-07",
- "2013-05-12",
- "2013-05-14",
- "2013-05-18",
- "2013-05-21",
- "2013-05-23",
- "2013-05-25",
- "2013-06-04",
- "2013-06-08",
- "2013-06-11",
- "2013-06-13",
- "2013-06-15",
- "2013-06-17",
- "2013-06-24",
- "2013-06-28",
- "2013-07-01",
- "2013-07-07",
- "2013-07-09",
- "2013-07-10",
- "2013-07-12",
- "2013-07-14",
- "2013-07-18",
- "2013-07-23",
- "2013-07-25",
- "2013-07-27",
- "2013-07-30",
- "2013-08-02",
- "2013-08-04",
- "2013-08-06",
- "2013-08-08",
- "2013-08-11",
- "2013-08-13",
- "2013-08-15",
- "2013-08-17",
- "2013-08-19",
- "2013-08-20",
- "2013-08-22",
- "2013-08-26",
- "2013-08-28",
- "2013-09-03",
- "2013-09-05",
- "2013-09-09",
- "2013-09-10",
- "2013-09-12",
- "2013-09-14",
- "2013-09-18",
- "2013-09-21",
- "2013-09-23",
- "2013-09-25",
- "2013-09-27",
- "2013-09-29",
- "2013-09-30",
- "2013-10-01",
- "2013-10-03",
- "2013-10-07",
- "2013-10-09",
- "2013-10-10",
- "2013-10-12",
- "2013-10-16",
- "2013-10-18",
- "2013-10-21",
- "2013-10-27",
- "2013-10-30",
- "2013-11-02",
- "2013-11-06",
- "2013-11-08",
- "2013-11-11",
- "2013-11-17",
- "2013-11-19",
- "2013-11-20",
- "2013-11-24",
- "2013-11-26",
- "2013-11-28",
- "2013-12-01",
- "2013-12-05",
- "2013-12-07",
- "2013-12-09",
- "2013-12-10",
- "2013-12-14",
- "2013-12-16",
- "2013-12-23",
- "2013-12-25",
- "2013-12-27",
- "2013-12-29",
- "2014-01-02",
- "2014-01-06",
- "2014-01-11",
- "2014-01-15",
- "2014-01-17",
- "2014-01-19",
- "2014-01-20",
- "2014-01-24",
- "2014-01-26",
- "2014-01-28",
- "2014-02-01",
- "2014-02-05",
- "2014-02-07",
- "2014-02-09",
- "2014-02-10",
- "2014-02-16",
- "2014-02-18",
- "2014-02-23",
- "2014-02-25",
- "2014-03-04",
- "2014-03-06",
- "2014-03-08",
- "2014-03-15",
- "2014-03-17",
- "2014-03-19",
- "2014-03-22",
- "2014-03-24",
- "2014-03-28",
- "2014-03-31",
- "2014-04-03",
- "2014-04-05",
- "2014-04-07",
- "2014-04-09",
- "2014-04-12",
- "2014-04-14",
- "2014-04-16",
- "2014-04-18",
- "2014-04-23",
- "2014-04-25",
- "2014-04-27",
- "2014-05-02",
- "2014-05-04",
- "2014-05-06",
- "2014-05-08",
- "2014-05-11",
- "2014-05-13",
- "2014-05-17",
- "2014-05-19",
- "2014-05-22",
- "2014-05-24",
- "2014-05-28",
- "2014-05-31",
- "2014-06-01",
- "2014-06-03",
- "2014-06-09",
- "2014-06-14",
- "2014-06-16",
- "2014-06-21",
- "2014-06-23",
- "2014-06-25",
- "2014-06-29",
- "2014-06-30",
- "2014-07-02",
- "2014-07-04",
- "2014-07-08",
- "2014-07-15",
- "2014-07-17",
- "2014-07-19",
- "2014-07-20",
- "2014-07-22",
- "2014-07-24",
- "2014-07-26",
- "2014-07-28",
- "2014-07-31",
- "2014-08-01",
- "2014-08-05",
- "2014-08-07",
- "2014-08-12",
- "2014-08-18",
- "2014-08-23",
- "2014-08-25",
- "2014-08-30",
- "2014-09-02",
- "2014-09-06",
- "2014-09-11",
- "2014-09-13",
- "2014-09-15",
- "2014-09-20",
- "2014-09-22",
- "2014-09-26",
- "2014-09-28",
- "2014-10-02",
- "2014-10-06",
- "2014-10-08",
- "2014-10-15",
- "2014-10-17",
- "2014-10-19",
- "2014-10-24",
- "2014-10-26",
- "2014-10-28",
- "2014-11-07",
- "2014-11-09",
- "2014-11-10",
- "2014-11-14",
- "2014-11-16",
- "2014-11-18",
- "2014-11-23",
- "2014-11-27",
- "2014-12-06",
- "2014-12-08",
- "2014-12-13",
- "2014-12-17",
- "2014-12-22",
- "2014-12-24",
- "2014-12-26",
- "2014-12-28",
- "2014-12-31",
- "2015-01-01",
- "2015-01-05",
- "2015-01-07",
- "2015-01-09",
- "2015-01-10",
- "2015-01-14",
- "2015-01-16",
- "2015-01-18",
- "2015-01-25",
- "2015-01-29",
- "2015-02-04",
- "2015-02-06",
- "2015-02-13",
- "2015-02-15",
- "2015-02-19",
- "2015-02-24",
- "2015-02-26",
- "2015-02-28",
- "2015-03-03",
- "2015-03-05",
- "2015-03-12",
- "2015-03-16",
- "2015-03-18",
- "2015-03-21",
- "2015-03-23",
- "2015-03-25",
- "2015-03-27",
- "2015-03-30",
- "2015-04-02",
- "2015-04-04",
- "2015-04-11",
- "2015-04-15",
- "2015-04-17",
- "2015-04-22",
- "2015-04-24",
- "2015-04-26",
- "2015-04-28",
- "2015-05-01",
- "2015-05-03",
- "2015-05-05",
- "2015-05-07",
- "2015-05-10",
- "2015-05-12",
- "2015-05-14",
- "2015-05-18",
- "2015-05-21",
- "2015-05-25",
- "2015-05-27",
- "2015-05-29",
- "2015-05-30",
- "2015-06-02",
- "2015-06-04",
- "2015-06-06",
- "2015-06-13",
- "2015-06-15",
- "2015-06-17",
- "2015-06-22",
- "2015-06-24",
- "2015-06-28",
- "2015-07-09",
- "2015-07-10",
- "2015-07-12",
- "2015-07-14",
- "2015-07-21",
- "2015-07-23",
- "2015-07-25",
- "2015-07-27",
- "2015-07-29",
- "2015-07-30",
- "2015-08-02",
- "2015-08-04",
- "2015-08-08",
- "2015-08-15",
- "2015-08-24",
- "2015-08-26",
- "2015-08-28",
- "2015-09-05",
- "2015-09-10",
- "2015-09-12",
- "2015-09-14",
- "2015-09-18",
- "2015-09-21",
- "2015-09-23",
- "2015-09-27",
- "2015-09-30",
- "2015-10-05",
- "2015-10-07",
- "2015-10-09",
- "2015-10-14",
- "2015-10-16",
- "2015-10-18",
- "2015-10-23",
- "2015-10-25",
- "2015-10-27",
- "2015-10-29",
- "2015-11-04",
- "2015-11-06",
- "2015-11-19",
- "2015-11-24",
- "2015-11-26",
- "2015-11-28",
- "2015-12-05",
- "2015-12-07",
- "2015-12-09",
- "2015-12-12",
- "2015-12-14",
- "2015-12-16",
- "2015-12-25",
- "2015-12-27",
- "2015-12-29",
- "2015-12-30",
- "2016-01-04",
- "2016-01-06",
- "2016-01-08",
- "2016-01-13",
- "2016-01-15",
- "2016-01-17",
- "2016-01-19",
- "2016-01-22",
- "2016-01-24",
- "2016-01-26",
- "2016-01-28",
- "2016-01-31",
- "2016-02-03",
- "2016-02-05",
- "2016-02-07",
- "2016-02-09",
- "2016-02-14",
- "2016-02-16",
- "2016-02-18",
- "2016-02-21",
- "2016-02-23",
- "2016-02-25",
- "2016-02-27",
- "2016-03-02",
- "2016-03-04",
- "2016-03-11",
- "2016-03-13",
- "2016-03-15",
- "2016-03-17",
- "2016-03-20",
- "2016-03-22",
- "2016-03-24",
- "2016-03-26",
- "2016-03-28",
- "2016-03-31",
- "2016-04-09",
- "2016-04-12",
- "2016-04-14",
- "2016-04-16",
- "2016-04-23",
- "2016-04-25",
- "2016-04-29",
- "2016-04-30",
- "2016-05-02",
- "2016-05-04",
- "2016-05-08",
- "2016-05-11",
- "2016-05-13",
- "2016-05-15",
- "2016-05-17",
- "2016-05-19",
- "2016-05-20",
- "2016-05-22",
- "2016-05-24",
- "2016-05-31",
- "2016-06-27",
- "2016-07-02",
- "2016-07-06",
- "2016-07-19",
- "2016-07-20",
- "2016-07-24",
- "2016-07-31",
- "2016-08-01",
- "2016-08-05",
- "2016-08-09",
- "2016-08-12",
- "2016-08-16",
- "2016-08-21",
- "2016-08-23",
- "2016-08-25",
- "2016-09-02",
- "2016-09-04",
- "2016-10-13",
- "2016-10-24",
- "2016-10-26",
- "2016-11-05",
- "2016-11-12",
- "2016-11-16",
- "2016-11-18",
- "2016-11-25",
- "2016-11-29",
- "2016-12-02",
- "2016-12-06",
- "2016-12-11",
- "2016-12-15",
- "2016-12-17",
- "2016-12-19",
- "2016-12-26",
- "2016-12-28",
- "2017-01-03",
- "2017-01-05",
- "2017-01-07",
- "2017-01-14",
- "2017-01-18",
- "2017-01-21",
- "2017-01-25",
- "2017-01-29",
- "2017-02-02",
- "2017-02-06",
- "2017-02-11",
- "2017-02-13",
- "2017-02-15",
- "2017-02-22",
- "2017-02-24",
- "2017-02-26",
- "2017-02-28",
- "2017-03-01",
- "2017-03-05",
- "2017-03-09",
- "2017-03-10",
- "2017-03-12",
- "2017-03-16",
- "2017-03-25",
- "2017-03-27",
- "2017-03-29",
- "2017-04-02",
- "2017-04-04",
- "2017-04-13",
- "2017-04-19",
- "2017-04-20",
- "2017-04-28",
- "2017-05-01",
- "2017-05-14",
- "2017-05-18",
- "2017-05-29",
- "2017-05-30",
- "2017-06-02",
- "2017-06-06",
- "2017-06-13",
- "2017-06-17",
- "2017-06-24",
- "2017-07-03",
- "2017-07-07",
- "2017-07-14",
- "2017-07-18",
- "2017-08-02",
- "2017-08-04",
- "2017-08-13",
- "2017-08-24",
- "2017-08-26",
- "2017-09-01",
- "2017-09-03",
- "2017-09-10",
- "2017-09-14",
- "2017-09-21",
- "2017-09-25",
- "2017-09-29",
- "2017-09-30",
- "2017-10-03",
- "2017-10-18",
- "2017-10-23",
- "2017-10-25",
- "2017-10-27",
- "2017-10-30",
- "2017-11-02",
- "2017-11-06",
- "2017-11-11",
- "2017-11-13",
- "2017-11-15",
- "2017-11-17",
- "2017-11-19",
- "2017-12-01",
- "2017-12-03",
- "2017-12-05",
- "2017-12-07",
- "2017-12-12",
- "2017-12-14",
- "2017-12-16",
- "2017-12-18",
- "2017-12-23",
- "2017-12-27",
- "2017-12-30",
- "2018-01-04",
- "2018-01-11",
- "2018-01-15",
- "2018-01-19",
- "2018-01-20",
- "2018-01-24",
- "2018-01-26",
- "2018-01-31",
- "2018-02-03",
- "2018-02-07",
- "2018-02-12",
- "2018-02-14",
- "2018-02-16",
- "2018-02-18",
- "2018-02-23",
- "2018-02-27",
- "2018-03-02",
- "2018-03-11",
- "2018-03-13",
- "2018-03-15",
- "2018-03-17",
- "2018-03-22",
- "2018-03-24",
- "2018-03-26",
- "2018-03-28",
- "2018-04-01",
- "2018-04-03",
- "2018-04-05",
- "2018-04-10",
- "2018-04-14",
- "2018-04-21",
- "2018-04-29",
- "2018-04-30",
- "2018-05-04",
- "2018-05-11",
- "2018-05-15",
- "2018-05-19",
- "2018-05-22",
- "2018-06-03",
- "2018-06-07",
- "2018-06-12",
- "2018-06-25",
- "2018-06-27",
- "2018-06-30",
- "2018-07-08",
- "2018-07-11",
- "2018-07-15",
- "2018-07-20",
- "2018-07-22",
- "2018-07-24",
- "2018-07-26",
- "2018-07-31",
- "2018-08-01",
- "2018-08-03",
- "2018-08-05",
- "2018-08-07",
- "2018-08-12",
- "2018-08-14",
- "2018-08-23",
- "2018-08-30",
- "2018-09-11",
- "2018-09-22",
- "2018-09-28",
- "2018-10-08",
- "2018-10-13",
- "2018-10-17",
- "2018-10-19",
- "2018-10-20",
- "2018-10-24",
- "2018-10-26",
- "2018-10-28",
- "2018-10-31",
- "2018-11-01",
- "2018-11-03",
- "2018-11-05",
- "2018-11-07",
- "2018-11-09",
- "2018-11-12",
- "2018-11-21",
- "2018-11-23",
- "2018-11-27",
- "2018-11-30",
- "2018-12-02",
- "2018-12-04",
- "2018-12-08",
- "2018-12-13",
- "2018-12-17",
- "2018-12-19",
- "2018-12-20",
- "2018-12-24",
- "2018-12-28",
- "2018-12-31",
- "2019-01-01",
- "2019-01-09",
- "2019-01-14",
- "2019-01-16",
- "2019-01-21",
- "2019-01-23",
- "2019-01-25",
- "2019-01-27",
- "2019-01-29",
- "2019-02-02",
- "2019-02-04",
- "2019-02-13",
- "2019-02-15",
- "2019-02-17",
- "2019-02-20",
- "2019-02-24",
- "2019-03-01",
- "2019-03-05",
- "2019-03-07",
- "2019-03-09",
- "2019-03-12",
- "2019-03-16",
- "2019-03-18",
- "2019-03-27",
- "2019-04-04",
- "2019-04-08",
- "2019-04-11",
- "2019-04-15",
- "2019-04-19",
- "2019-04-20",
- "2019-04-26",
- "2019-05-05",
- "2019-05-12",
- "2019-05-16",
- "2019-05-21",
- "2019-05-23",
- "2019-05-25",
- "2019-06-04",
- "2019-06-13",
- "2019-06-17",
- "2019-06-20",
- "2019-06-24",
- "2019-07-10",
- "2019-07-12",
- "2019-07-25",
- "2019-07-29",
- "2019-08-02",
- "2019-08-04",
- "2019-08-06",
- "2019-08-13",
- "2019-08-24",
- "2019-08-31",
- "2019-09-01",
- "2019-09-09",
- "2019-09-10",
- "2019-09-12",
- "2019-09-27",
- "2019-09-29",
- "2019-10-01",
- "2019-10-03",
- "2019-10-05",
- "2019-10-07",
- "2019-10-09",
- "2019-10-10",
- "2019-10-30",
- "2019-11-02",
- "2019-11-06",
- "2019-11-08",
- "2019-11-13",
- "2019-11-17",
- "2019-11-20",
- "2019-11-22",
- "2019-11-26",
- "2019-12-03",
- "2019-12-09",
- "2019-12-10",
- "2019-12-14",
- "2019-12-21",
- "2019-12-23",
- "2019-12-25",
- "2019-12-29",
- "2020-01-03",
- "2020-01-09",
- "2020-01-10",
- "2020-01-14",
- "2020-01-18",
- "2020-01-21",
- "2020-01-29",
- "2020-01-30",
- "2020-02-02",
- "2020-02-08",
- "2020-02-13",
- "2020-02-17",
- "2020-02-19",
- "2020-02-26",
- "2020-03-01",
- "2020-03-03",
- "2020-03-07",
- "2020-03-09",
- "2020-03-12",
- "2020-03-16",
- "2020-04-08",
- "2020-04-11",
- "2020-04-15",
- "2020-04-19",
- "2020-04-24",
- "2020-04-28",
- "2020-05-01",
- "2020-05-05",
- "2020-05-14",
- "2020-05-23",
- "2020-05-25",
- "2020-05-27",
- "2020-05-29",
- "2020-06-08",
- "2020-06-17",
- "2020-06-24",
- "2020-06-28",
- "2020-07-05",
- "2020-07-21",
- "2020-07-30",
- "2020-08-06",
- "2020-08-13",
- "2020-08-20",
- "2020-08-22",
- "2020-08-24",
- "2020-08-26",
- "2020-08-31",
- "2020-09-05",
- "2020-09-12",
- "2020-09-14",
- "2020-09-21",
- "2020-09-23",
- "2020-09-27",
- "2020-09-30",
- "2020-10-01",
- "2020-10-03",
- "2020-10-05",
- "2020-10-12",
- "2020-10-14",
- "2020-10-21",
- "2020-10-27",
- "2020-10-29",
- "2020-10-30",
- "2020-11-04",
- "2020-11-08",
- "2020-11-11",
- "2020-11-13",
- "2020-11-17",
- "2020-11-19",
- "2020-11-20",
- "2020-11-22",
- "2020-11-26",
- "2020-11-28",
- "2020-12-01",
- "2020-12-03",
- "2020-12-07",
- "2020-12-09",
- "2020-12-10",
- "2020-12-12",
- "2020-12-16",
- "2020-12-18",
- "2020-12-21",
- "2020-12-25",
- "2020-12-27"
- ],
- "LAKES_SURFACE_WATER_TEMPERATURE_Tonlesap": [
- "2010-01-02",
- "2010-01-03",
- "2010-01-04",
- "2010-01-05",
- "2010-01-06",
- "2010-01-07",
- "2010-01-08",
- "2010-01-09",
- "2010-01-10",
- "2010-01-11",
- "2010-01-12",
- "2010-01-13",
- "2010-01-14",
- "2010-01-15",
- "2010-01-16",
- "2010-01-17",
- "2010-01-18",
- "2010-01-19",
- "2010-01-22",
- "2010-01-23",
- "2010-01-24",
- "2010-01-25",
- "2010-01-26",
- "2010-01-27",
- "2010-01-28",
- "2010-01-29",
- "2010-01-30",
- "2010-01-31",
- "2010-02-01",
- "2010-02-02",
- "2010-02-03",
- "2010-02-04",
- "2010-02-05",
- "2010-02-06",
- "2010-02-07",
- "2010-02-08",
- "2010-02-09",
- "2010-02-10",
- "2010-02-11",
- "2010-02-12",
- "2010-02-13",
- "2010-02-14",
- "2010-02-15",
- "2010-02-16",
- "2010-02-17",
- "2010-02-18",
- "2010-02-19",
- "2010-02-20",
- "2010-02-21",
- "2010-02-22",
- "2010-02-23",
- "2010-02-24",
- "2010-02-25",
- "2010-02-26",
- "2010-02-27",
- "2010-02-28",
- "2010-03-01",
- "2010-03-02",
- "2010-03-03",
- "2010-03-04",
- "2010-03-05",
- "2010-03-06",
- "2010-03-07",
- "2010-03-08",
- "2010-03-09",
- "2010-03-11",
- "2010-03-12",
- "2010-03-13",
- "2010-03-14",
- "2010-03-15",
- "2010-03-17",
- "2010-03-18",
- "2010-03-19",
- "2010-03-21",
- "2010-03-22",
- "2010-03-23",
- "2010-03-24",
- "2010-03-25",
- "2010-03-27",
- "2010-03-28",
- "2010-03-29",
- "2010-03-30",
- "2010-03-31",
- "2010-04-01",
- "2010-04-02",
- "2010-04-03",
- "2010-04-04",
- "2010-04-05",
- "2010-04-06",
- "2010-04-07",
- "2010-04-08",
- "2010-04-09",
- "2010-04-10",
- "2010-04-11",
- "2010-04-12",
- "2010-04-13",
- "2010-04-15",
- "2010-04-18",
- "2010-04-19",
- "2010-04-20",
- "2010-04-21",
- "2010-04-22",
- "2010-04-23",
- "2010-04-24",
- "2010-04-25",
- "2010-04-26",
- "2010-04-27",
- "2010-04-28",
- "2010-04-29",
- "2010-04-30",
- "2010-05-02",
- "2010-05-04",
- "2010-05-05",
- "2010-05-06",
- "2010-05-07",
- "2010-05-08",
- "2010-05-09",
- "2010-05-10",
- "2010-05-11",
- "2010-05-12",
- "2010-05-13",
- "2010-05-14",
- "2010-05-15",
- "2010-05-16",
- "2010-05-18",
- "2010-05-19",
- "2010-05-20",
- "2010-05-21",
- "2010-05-22",
- "2010-05-23",
- "2010-05-24",
- "2010-05-25",
- "2010-05-27",
- "2010-05-28",
- "2010-05-29",
- "2010-05-30",
- "2010-05-31",
- "2010-06-01",
- "2010-06-02",
- "2010-06-03",
- "2010-06-04",
- "2010-06-05",
- "2010-06-06",
- "2010-06-07",
- "2010-06-11",
- "2010-06-12",
- "2010-06-13",
- "2010-06-14",
- "2010-06-15",
- "2010-06-16",
- "2010-06-17",
- "2010-06-18",
- "2010-06-19",
- "2010-06-20",
- "2010-06-22",
- "2010-06-23",
- "2010-06-24",
- "2010-06-25",
- "2010-06-26",
- "2010-06-28",
- "2010-06-29",
- "2010-06-30",
- "2010-07-04",
- "2010-07-05",
- "2010-07-06",
- "2010-07-07",
- "2010-07-08",
- "2010-07-09",
- "2010-07-10",
- "2010-07-11",
- "2010-07-12",
- "2010-07-14",
- "2010-07-15",
- "2010-07-16",
- "2010-07-17",
- "2010-07-19",
- "2010-07-20",
- "2010-07-21",
- "2010-07-22",
- "2010-07-23",
- "2010-07-27",
- "2010-07-28",
- "2010-07-30",
- "2010-07-31",
- "2010-08-03",
- "2010-08-04",
- "2010-08-06",
- "2010-08-07",
- "2010-08-09",
- "2010-08-10",
- "2010-08-11",
- "2010-08-12",
- "2010-08-13",
- "2010-08-14",
- "2010-08-15",
- "2010-08-17",
- "2010-08-19",
- "2010-08-22",
- "2010-08-24",
- "2010-08-26",
- "2010-08-27",
- "2010-08-30",
- "2010-09-01",
- "2010-09-03",
- "2010-09-05",
- "2010-09-07",
- "2010-09-08",
- "2010-09-09",
- "2010-09-12",
- "2010-09-15",
- "2010-09-18",
- "2010-09-25",
- "2010-10-01",
- "2010-10-14",
- "2010-10-17",
- "2010-10-20",
- "2010-10-29",
- "2010-11-06",
- "2010-11-09",
- "2010-11-10",
- "2010-11-11",
- "2010-11-12",
- "2010-11-13",
- "2010-11-14",
- "2010-11-16",
- "2010-11-17",
- "2010-11-18",
- "2010-11-19",
- "2010-11-21",
- "2010-11-22",
- "2010-11-23",
- "2010-11-24",
- "2010-11-25",
- "2010-11-26",
- "2010-11-27",
- "2010-11-28",
- "2010-11-29",
- "2010-12-01",
- "2010-12-02",
- "2010-12-03",
- "2010-12-04",
- "2010-12-06",
- "2010-12-07",
- "2010-12-08",
- "2010-12-09",
- "2010-12-10",
- "2010-12-11",
- "2010-12-12",
- "2010-12-13",
- "2010-12-15",
- "2010-12-16",
- "2010-12-17",
- "2010-12-18",
- "2010-12-19",
- "2010-12-20",
- "2010-12-21",
- "2010-12-22",
- "2010-12-23",
- "2010-12-24",
- "2010-12-25",
- "2010-12-26",
- "2010-12-27",
- "2010-12-28",
- "2010-12-29",
- "2010-12-30",
- "2010-12-31",
- "2011-01-01",
- "2011-01-02",
- "2011-01-03",
- "2011-01-04",
- "2011-01-05",
- "2011-01-07",
- "2011-01-08",
- "2011-01-09",
- "2011-01-10",
- "2011-01-11",
- "2011-01-13",
- "2011-01-14",
- "2011-01-15",
- "2011-01-16",
- "2011-01-17",
- "2011-01-18",
- "2011-01-19",
- "2011-01-20",
- "2011-01-21",
- "2011-01-22",
- "2011-01-23",
- "2011-01-24",
- "2011-01-25",
- "2011-01-26",
- "2011-01-27",
- "2011-01-28",
- "2011-01-29",
- "2011-01-30",
- "2011-01-31",
- "2011-02-01",
- "2011-02-02",
- "2011-02-03",
- "2011-02-04",
- "2011-02-05",
- "2011-02-06",
- "2011-02-07",
- "2011-02-08",
- "2011-02-09",
- "2011-02-10",
- "2011-02-11",
- "2011-02-12",
- "2011-02-13",
- "2011-02-14",
- "2011-02-15",
- "2011-02-17",
- "2011-02-18",
- "2011-02-19",
- "2011-02-20",
- "2011-02-21",
- "2011-02-22",
- "2011-02-23",
- "2011-02-24",
- "2011-02-25",
- "2011-02-26",
- "2011-02-27",
- "2011-02-28",
- "2011-03-01",
- "2011-03-05",
- "2011-03-06",
- "2011-03-09",
- "2011-03-10",
- "2011-03-11",
- "2011-03-12",
- "2011-03-14",
- "2011-03-15",
- "2011-03-17",
- "2011-03-19",
- "2011-03-20",
- "2011-03-21",
- "2011-03-24",
- "2011-03-25",
- "2011-03-29",
- "2011-03-30",
- "2011-04-01",
- "2011-04-02",
- "2011-04-03",
- "2011-04-04",
- "2011-04-06",
- "2011-04-07",
- "2011-04-10",
- "2011-04-11",
- "2011-04-12",
- "2011-04-13",
- "2011-04-14",
- "2011-04-15",
- "2011-04-16",
- "2011-04-17",
- "2011-04-18",
- "2011-04-20",
- "2011-04-22",
- "2011-04-23",
- "2011-04-24",
- "2011-04-26",
- "2011-04-27",
- "2011-04-28",
- "2011-04-30",
- "2011-05-02",
- "2011-05-05",
- "2011-05-06",
- "2011-05-07",
- "2011-05-08",
- "2011-05-09",
- "2011-05-11",
- "2011-05-12",
- "2011-05-15",
- "2011-05-16",
- "2011-05-19",
- "2011-05-20",
- "2011-05-21",
- "2011-05-22",
- "2011-05-23",
- "2011-05-24",
- "2011-05-27",
- "2011-05-28",
- "2011-05-29",
- "2011-05-31",
- "2011-06-01",
- "2011-06-02",
- "2011-06-03",
- "2011-06-04",
- "2011-06-06",
- "2011-06-07",
- "2011-06-08",
- "2011-06-09",
- "2011-06-10",
- "2011-06-11",
- "2011-06-15",
- "2011-06-17",
- "2011-06-18",
- "2011-06-21",
- "2011-06-22",
- "2011-06-26",
- "2011-06-27",
- "2011-06-28",
- "2011-06-30",
- "2011-07-02",
- "2011-07-03",
- "2011-07-04",
- "2011-07-05",
- "2011-07-06",
- "2011-07-07",
- "2011-07-08",
- "2011-07-09",
- "2011-07-10",
- "2011-07-11",
- "2011-07-12",
- "2011-07-13",
- "2011-07-14",
- "2011-07-17",
- "2011-07-18",
- "2011-07-22",
- "2011-07-23",
- "2011-07-24",
- "2011-07-26",
- "2011-07-27",
- "2011-07-28",
- "2011-08-02",
- "2011-08-03",
- "2011-08-04",
- "2011-08-05",
- "2011-08-06",
- "2011-08-07",
- "2011-08-11",
- "2011-08-12",
- "2011-08-13",
- "2011-08-14",
- "2011-08-16",
- "2011-08-17",
- "2011-08-18",
- "2011-08-20",
- "2011-08-21",
- "2011-08-22",
- "2011-08-23",
- "2011-08-24",
- "2011-08-25",
- "2011-08-30",
- "2011-08-31",
- "2011-09-01",
- "2011-09-02",
- "2011-09-03",
- "2011-09-04",
- "2011-09-05",
- "2011-09-06",
- "2011-09-09",
- "2011-09-13",
- "2011-09-14",
- "2011-09-16",
- "2011-09-17",
- "2011-09-18",
- "2011-09-19",
- "2011-09-25",
- "2011-09-28",
- "2011-09-29",
- "2011-09-30",
- "2011-10-01",
- "2011-10-02",
- "2011-10-05",
- "2011-10-06",
- "2011-10-08",
- "2011-10-09",
- "2011-10-11",
- "2011-10-12",
- "2011-10-16",
- "2011-10-18",
- "2011-10-19",
- "2011-10-20",
- "2011-10-21",
- "2011-10-22",
- "2011-10-24",
- "2011-10-25",
- "2011-10-26",
- "2011-10-27",
- "2011-10-28",
- "2011-10-29",
- "2011-10-30",
- "2011-10-31",
- "2011-11-01",
- "2011-11-02",
- "2011-11-03",
- "2011-11-04",
- "2011-11-05",
- "2011-11-10",
- "2011-11-11",
- "2011-11-12",
- "2011-11-13",
- "2011-11-14",
- "2011-11-15",
- "2011-11-16",
- "2011-11-17",
- "2011-11-18",
- "2011-11-19",
- "2011-11-20",
- "2011-11-21",
- "2011-11-22",
- "2011-11-23",
- "2011-11-24",
- "2011-11-25",
- "2011-11-26",
- "2011-11-27",
- "2011-11-28",
- "2011-11-29",
- "2011-11-30",
- "2011-12-01",
- "2011-12-02",
- "2011-12-03",
- "2011-12-04",
- "2011-12-05",
- "2011-12-06",
- "2011-12-08",
- "2011-12-09",
- "2011-12-10",
- "2011-12-11",
- "2011-12-12",
- "2011-12-14",
- "2011-12-15",
- "2011-12-16",
- "2011-12-17",
- "2011-12-18",
- "2011-12-19",
- "2011-12-20",
- "2011-12-21",
- "2011-12-22",
- "2011-12-23",
- "2011-12-24",
- "2011-12-25",
- "2011-12-26",
- "2011-12-27",
- "2011-12-28",
- "2011-12-29",
- "2011-12-30",
- "2012-01-02",
- "2012-01-03",
- "2012-01-04",
- "2012-01-05",
- "2012-01-06",
- "2012-01-07",
- "2012-01-08",
- "2012-01-09",
- "2012-01-10",
- "2012-01-11",
- "2012-01-13",
- "2012-01-14",
- "2012-01-16",
- "2012-01-18",
- "2012-01-19",
- "2012-01-20",
- "2012-01-21",
- "2012-01-22",
- "2012-01-23",
- "2012-01-24",
- "2012-01-25",
- "2012-01-26",
- "2012-01-27",
- "2012-01-28",
- "2012-01-29",
- "2012-01-30",
- "2012-01-31",
- "2012-02-01",
- "2012-02-02",
- "2012-02-03",
- "2012-02-04",
- "2012-02-05",
- "2012-02-06",
- "2012-02-07",
- "2012-02-08",
- "2012-02-09",
- "2012-02-10",
- "2012-02-11",
- "2012-02-12",
- "2012-02-13",
- "2012-02-14",
- "2012-02-15",
- "2012-02-16",
- "2012-02-18",
- "2012-02-19",
- "2012-02-20",
- "2012-02-21",
- "2012-02-22",
- "2012-02-23",
- "2012-02-24",
- "2012-02-25",
- "2012-02-26",
- "2012-02-27",
- "2012-02-29",
- "2012-03-01",
- "2012-03-02",
- "2012-03-03",
- "2012-03-06",
- "2012-03-07",
- "2012-03-08",
- "2012-03-10",
- "2012-03-11",
- "2012-03-13",
- "2012-03-14",
- "2012-03-15",
- "2012-03-16",
- "2012-03-17",
- "2012-03-18",
- "2012-03-19",
- "2012-03-20",
- "2012-03-21",
- "2012-03-22",
- "2012-03-23",
- "2012-03-25",
- "2012-03-26",
- "2012-03-27",
- "2012-03-30",
- "2012-03-31",
- "2012-04-01",
- "2012-04-02",
- "2012-04-03",
- "2012-04-04",
- "2012-04-05",
- "2012-04-07",
- "2012-04-09",
- "2012-04-10",
- "2012-04-11",
- "2012-04-13",
- "2012-04-14",
- "2012-04-15",
- "2012-04-16",
- "2012-04-17",
- "2012-04-19",
- "2012-04-20",
- "2012-04-22",
- "2012-04-23",
- "2012-04-24",
- "2012-04-25",
- "2012-04-28",
- "2012-04-29",
- "2012-04-30",
- "2012-05-01",
- "2012-05-02",
- "2012-05-03",
- "2012-05-04",
- "2012-05-05",
- "2012-05-08",
- "2012-05-09",
- "2012-05-10",
- "2012-05-11",
- "2012-05-12",
- "2012-05-13",
- "2012-05-14",
- "2012-05-16",
- "2012-05-17",
- "2012-05-18",
- "2012-05-19",
- "2012-05-20",
- "2012-05-21",
- "2012-05-22",
- "2012-05-24",
- "2012-05-28",
- "2012-06-01",
- "2012-06-05",
- "2012-06-06",
- "2012-06-07",
- "2012-06-09",
- "2012-06-10",
- "2012-06-11",
- "2012-06-12",
- "2012-06-15",
- "2012-06-19",
- "2012-06-20",
- "2012-06-21",
- "2012-06-24",
- "2012-06-25",
- "2012-06-26",
- "2012-06-28",
- "2012-06-29",
- "2012-06-30",
- "2012-07-01",
- "2012-07-02",
- "2012-07-03",
- "2012-07-05",
- "2012-07-07",
- "2012-07-08",
- "2012-07-09",
- "2012-07-10",
- "2012-07-11",
- "2012-07-12",
- "2012-07-13",
- "2012-07-14",
- "2012-07-15",
- "2012-07-16",
- "2012-07-19",
- "2012-07-20",
- "2012-07-21",
- "2012-07-24",
- "2012-07-26",
- "2012-07-27",
- "2012-07-28",
- "2012-08-03",
- "2012-08-04",
- "2012-08-05",
- "2012-08-06",
- "2012-08-07",
- "2012-08-08",
- "2012-08-09",
- "2012-08-10",
- "2012-08-11",
- "2012-08-12",
- "2012-08-13",
- "2012-08-14",
- "2012-08-15",
- "2012-08-17",
- "2012-08-19",
- "2012-08-22",
- "2012-08-24",
- "2012-08-25",
- "2012-08-27",
- "2012-08-30",
- "2012-09-01",
- "2012-09-04",
- "2012-09-06",
- "2012-09-07",
- "2012-09-09",
- "2012-09-11",
- "2012-09-13",
- "2012-09-14",
- "2012-09-15",
- "2012-09-20",
- "2012-09-21",
- "2012-09-26",
- "2012-09-29",
- "2012-09-30",
- "2012-10-02",
- "2012-10-04",
- "2012-10-05",
- "2012-10-09",
- "2012-10-10",
- "2012-10-11",
- "2012-10-12",
- "2012-10-13",
- "2012-10-14",
- "2012-10-15",
- "2012-10-17",
- "2012-10-18",
- "2012-10-19",
- "2012-10-20",
- "2012-10-21",
- "2012-10-22",
- "2012-10-25",
- "2012-10-26",
- "2012-10-27",
- "2012-10-28",
- "2012-10-29",
- "2012-10-30",
- "2012-11-01",
- "2012-11-02",
- "2012-11-03",
- "2012-11-04",
- "2012-11-05",
- "2012-11-06",
- "2012-11-07",
- "2012-11-08",
- "2012-11-09",
- "2012-11-10",
- "2012-11-11",
- "2012-11-12",
- "2012-11-14",
- "2012-11-16",
- "2012-11-17",
- "2012-11-18",
- "2012-11-19",
- "2012-11-20",
- "2012-11-21",
- "2012-11-22",
- "2012-11-23",
- "2012-11-24",
- "2012-11-26",
- "2012-11-27",
- "2012-11-28",
- "2012-11-29",
- "2012-11-30",
- "2012-12-01",
- "2012-12-02",
- "2012-12-03",
- "2012-12-05",
- "2012-12-06",
- "2012-12-07",
- "2012-12-08",
- "2012-12-09",
- "2012-12-10",
- "2012-12-11",
- "2012-12-12",
- "2012-12-13",
- "2012-12-14",
- "2012-12-15",
- "2012-12-16",
- "2012-12-17",
- "2012-12-18",
- "2012-12-19",
- "2012-12-20",
- "2012-12-21",
- "2012-12-22",
- "2012-12-23",
- "2012-12-24",
- "2012-12-25",
- "2012-12-26",
- "2012-12-27",
- "2012-12-28",
- "2012-12-29",
- "2012-12-30",
- "2012-12-31",
- "2013-01-01",
- "2013-01-02",
- "2013-01-03",
- "2013-01-04",
- "2013-01-05",
- "2013-01-06",
- "2013-01-08",
- "2013-01-09",
- "2013-01-10",
- "2013-01-11",
- "2013-01-12",
- "2013-01-13",
- "2013-01-14",
- "2013-01-15",
- "2013-01-16",
- "2013-01-17",
- "2013-01-18",
- "2013-01-19",
- "2013-01-20",
- "2013-01-21",
- "2013-01-22",
- "2013-01-23",
- "2013-01-24",
- "2013-01-25",
- "2013-01-26",
- "2013-01-27",
- "2013-01-28",
- "2013-01-29",
- "2013-01-30",
- "2013-01-31",
- "2013-02-01",
- "2013-02-02",
- "2013-02-03",
- "2013-02-04",
- "2013-02-05",
- "2013-02-06",
- "2013-02-07",
- "2013-02-08",
- "2013-02-09",
- "2013-02-10",
- "2013-02-11",
- "2013-02-12",
- "2013-02-13",
- "2013-02-14",
- "2013-02-15",
- "2013-02-16",
- "2013-02-17",
- "2013-02-18",
- "2013-02-19",
- "2013-02-20",
- "2013-02-21",
- "2013-02-22",
- "2013-02-23",
- "2013-02-24",
- "2013-02-25",
- "2013-02-26",
- "2013-02-27",
- "2013-02-28",
- "2013-03-01",
- "2013-03-02",
- "2013-03-03",
- "2013-03-04",
- "2013-03-05",
- "2013-03-06",
- "2013-03-07",
- "2013-03-08",
- "2013-03-09",
- "2013-03-10",
- "2013-03-11",
- "2013-03-12",
- "2013-03-13",
- "2013-03-14",
- "2013-03-15",
- "2013-03-16",
- "2013-03-17",
- "2013-03-18",
- "2013-03-19",
- "2013-03-20",
- "2013-03-21",
- "2013-03-22",
- "2013-03-23",
- "2013-03-24",
- "2013-03-25",
- "2013-03-26",
- "2013-03-27",
- "2013-03-28",
- "2013-03-29",
- "2013-03-30",
- "2013-03-31",
- "2013-04-01",
- "2013-04-04",
- "2013-04-05",
- "2013-04-06",
- "2013-04-07",
- "2013-04-08",
- "2013-04-09",
- "2013-04-10",
- "2013-04-11",
- "2013-04-12",
- "2013-04-13",
- "2013-04-14",
- "2013-04-15",
- "2013-04-16",
- "2013-04-18",
- "2013-04-19",
- "2013-04-20",
- "2013-04-21",
- "2013-04-22",
- "2013-04-23",
- "2013-04-24",
- "2013-04-25",
- "2013-04-26",
- "2013-04-27",
- "2013-04-28",
- "2013-04-29",
- "2013-04-30",
- "2013-05-01",
- "2013-05-02",
- "2013-05-03",
- "2013-05-04",
- "2013-05-05",
- "2013-05-06",
- "2013-05-07",
- "2013-05-08",
- "2013-05-09",
- "2013-05-10",
- "2013-05-11",
- "2013-05-13",
- "2013-05-14",
- "2013-05-15",
- "2013-05-16",
- "2013-05-17",
- "2013-05-20",
- "2013-05-21",
- "2013-05-22",
- "2013-05-25",
- "2013-05-26",
- "2013-05-27",
- "2013-05-28",
- "2013-05-29",
- "2013-05-31",
- "2013-06-01",
- "2013-06-02",
- "2013-06-03",
- "2013-06-05",
- "2013-06-06",
- "2013-06-07",
- "2013-06-08",
- "2013-06-09",
- "2013-06-10",
- "2013-06-14",
- "2013-06-17",
- "2013-06-18",
- "2013-06-19",
- "2013-06-20",
- "2013-06-21",
- "2013-06-24",
- "2013-06-25",
- "2013-06-26",
- "2013-06-27",
- "2013-06-28",
- "2013-06-29",
- "2013-06-30",
- "2013-07-01",
- "2013-07-02",
- "2013-07-03",
- "2013-07-04",
- "2013-07-05",
- "2013-07-06",
- "2013-07-07",
- "2013-07-08",
- "2013-07-11",
- "2013-07-12",
- "2013-07-13",
- "2013-07-14",
- "2013-07-15",
- "2013-07-17",
- "2013-07-18",
- "2013-07-22",
- "2013-07-24",
- "2013-07-25",
- "2013-07-27",
- "2013-07-29",
- "2013-07-30",
- "2013-07-31",
- "2013-08-01",
- "2013-08-02",
- "2013-08-04",
- "2013-08-05",
- "2013-08-08",
- "2013-08-09",
- "2013-08-10",
- "2013-08-11",
- "2013-08-13",
- "2013-08-14",
- "2013-08-16",
- "2013-08-17",
- "2013-08-18",
- "2013-08-19",
- "2013-08-20",
- "2013-08-21",
- "2013-08-22",
- "2013-08-23",
- "2013-08-24",
- "2013-08-25",
- "2013-08-27",
- "2013-08-28",
- "2013-08-29",
- "2013-08-30",
- "2013-08-31",
- "2013-09-01",
- "2013-09-02",
- "2013-09-03",
- "2013-09-04",
- "2013-09-05",
- "2013-09-06",
- "2013-09-07",
- "2013-09-08",
- "2013-09-09",
- "2013-09-10",
- "2013-09-11",
- "2013-09-12",
- "2013-09-14",
- "2013-09-15",
- "2013-09-16",
- "2013-09-20",
- "2013-09-21",
- "2013-09-22",
- "2013-09-23",
- "2013-09-24",
- "2013-09-25",
- "2013-09-26",
- "2013-09-29",
- "2013-10-01",
- "2013-10-02",
- "2013-10-07",
- "2013-10-08",
- "2013-10-09",
- "2013-10-10",
- "2013-10-11",
- "2013-10-12",
- "2013-10-13",
- "2013-10-14",
- "2013-10-16",
- "2013-10-17",
- "2013-10-18",
- "2013-10-19",
- "2013-10-20",
- "2013-10-21",
- "2013-10-22",
- "2013-10-23",
- "2013-10-24",
- "2013-10-25",
- "2013-10-26",
- "2013-10-27",
- "2013-10-28",
- "2013-10-29",
- "2013-10-30",
- "2013-10-31",
- "2013-11-01",
- "2013-11-02",
- "2013-11-03",
- "2013-11-04",
- "2013-11-05",
- "2013-11-06",
- "2013-11-08",
- "2013-11-10",
- "2013-11-11",
- "2013-11-12",
- "2013-11-13",
- "2013-11-14",
- "2013-11-16",
- "2013-11-17",
- "2013-11-18",
- "2013-11-19",
- "2013-11-20",
- "2013-11-21",
- "2013-11-22",
- "2013-11-23",
- "2013-11-24",
- "2013-11-25",
- "2013-11-26",
- "2013-11-27",
- "2013-11-28",
- "2013-11-29",
- "2013-11-30",
- "2013-12-01",
- "2013-12-02",
- "2013-12-03",
- "2013-12-04",
- "2013-12-05",
- "2013-12-06",
- "2013-12-07",
- "2013-12-08",
- "2013-12-09",
- "2013-12-10",
- "2013-12-11",
- "2013-12-12",
- "2013-12-13",
- "2013-12-14",
- "2013-12-15",
- "2013-12-16",
- "2013-12-19",
- "2013-12-20",
- "2013-12-21",
- "2013-12-22",
- "2013-12-23",
- "2013-12-24",
- "2013-12-25",
- "2013-12-26",
- "2013-12-27",
- "2013-12-28",
- "2013-12-29",
- "2013-12-30",
- "2013-12-31",
- "2014-01-01",
- "2014-01-02",
- "2014-01-03",
- "2014-01-04",
- "2014-01-05",
- "2014-01-06",
- "2014-01-07",
- "2014-01-08",
- "2014-01-09",
- "2014-01-10",
- "2014-01-11",
- "2014-01-12",
- "2014-01-13",
- "2014-01-14",
- "2014-01-15",
- "2014-01-16",
- "2014-01-17",
- "2014-01-18",
- "2014-01-19",
- "2014-01-20",
- "2014-01-21",
- "2014-01-22",
- "2014-01-23",
- "2014-01-24",
- "2014-01-25",
- "2014-01-26",
- "2014-01-27",
- "2014-01-28",
- "2014-01-29",
- "2014-01-30",
- "2014-01-31",
- "2014-02-01",
- "2014-02-02",
- "2014-02-03",
- "2014-02-04",
- "2014-02-05",
- "2014-02-06",
- "2014-02-07",
- "2014-02-08",
- "2014-02-09",
- "2014-02-10",
- "2014-02-11",
- "2014-02-12",
- "2014-02-13",
- "2014-02-14",
- "2014-02-15",
- "2014-02-16",
- "2014-02-17",
- "2014-02-18",
- "2014-02-19",
- "2014-02-21",
- "2014-02-22",
- "2014-02-23",
- "2014-02-24",
- "2014-02-25",
- "2014-02-26",
- "2014-02-27",
- "2014-02-28",
- "2014-03-01",
- "2014-03-02",
- "2014-03-03",
- "2014-03-04",
- "2014-03-05",
- "2014-03-06",
- "2014-03-07",
- "2014-03-08",
- "2014-03-09",
- "2014-03-10",
- "2014-03-11",
- "2014-03-12",
- "2014-03-13",
- "2014-03-14",
- "2014-03-15",
- "2014-03-16",
- "2014-03-17",
- "2014-03-18",
- "2014-03-19",
- "2014-03-20",
- "2014-03-21",
- "2014-03-22",
- "2014-03-23",
- "2014-03-24",
- "2014-03-25",
- "2014-03-26",
- "2014-03-27",
- "2014-03-28",
- "2014-03-29",
- "2014-03-30",
- "2014-03-31",
- "2014-04-01",
- "2014-04-02",
- "2014-04-03",
- "2014-04-05",
- "2014-04-06",
- "2014-04-07",
- "2014-04-08",
- "2014-04-09",
- "2014-04-10",
- "2014-04-11",
- "2014-04-12",
- "2014-04-13",
- "2014-04-14",
- "2014-04-15",
- "2014-04-16",
- "2014-04-17",
- "2014-04-18",
- "2014-04-19",
- "2014-04-20",
- "2014-04-22",
- "2014-04-23",
- "2014-04-24",
- "2014-04-25",
- "2014-04-26",
- "2014-04-27",
- "2014-04-28",
- "2014-04-29",
- "2014-04-30",
- "2014-05-01",
- "2014-05-02",
- "2014-05-03",
- "2014-05-04",
- "2014-05-05",
- "2014-05-06",
- "2014-05-08",
- "2014-05-09",
- "2014-05-10",
- "2014-05-11",
- "2014-05-12",
- "2014-05-13",
- "2014-05-14",
- "2014-05-15",
- "2014-05-16",
- "2014-05-17",
- "2014-05-18",
- "2014-05-19",
- "2014-05-20",
- "2014-05-21",
- "2014-05-22",
- "2014-05-23",
- "2014-05-24",
- "2014-05-25",
- "2014-05-26",
- "2014-05-27",
- "2014-05-29",
- "2014-05-30",
- "2014-05-31",
- "2014-06-01",
- "2014-06-02",
- "2014-06-03",
- "2014-06-04",
- "2014-06-05",
- "2014-06-08",
- "2014-06-09",
- "2014-06-10",
- "2014-06-13",
- "2014-06-15",
- "2014-06-17",
- "2014-06-18",
- "2014-06-19",
- "2014-06-20",
- "2014-06-24",
- "2014-06-25",
- "2014-06-27",
- "2014-06-28",
- "2014-07-01",
- "2014-07-02",
- "2014-07-03",
- "2014-07-04",
- "2014-07-05",
- "2014-07-06",
- "2014-07-07",
- "2014-07-08",
- "2014-07-09",
- "2014-07-10",
- "2014-07-11",
- "2014-07-12",
- "2014-07-13",
- "2014-07-14",
- "2014-07-15",
- "2014-07-16",
- "2014-07-17",
- "2014-07-18",
- "2014-07-21",
- "2014-07-24",
- "2014-07-25",
- "2014-07-26",
- "2014-07-27",
- "2014-07-28",
- "2014-07-29",
- "2014-08-02",
- "2014-08-03",
- "2014-08-06",
- "2014-08-08",
- "2014-08-09",
- "2014-08-10",
- "2014-08-11",
- "2014-08-12",
- "2014-08-13",
- "2014-08-15",
- "2014-08-16",
- "2014-08-17",
- "2014-08-18",
- "2014-08-19",
- "2014-08-20",
- "2014-08-21",
- "2014-08-22",
- "2014-08-23",
- "2014-08-24",
- "2014-08-27",
- "2014-08-28",
- "2014-09-01",
- "2014-09-03",
- "2014-09-04",
- "2014-09-06",
- "2014-09-08",
- "2014-09-09",
- "2014-09-10",
- "2014-09-11",
- "2014-09-12",
- "2014-09-13",
- "2014-09-14",
- "2014-09-15",
- "2014-09-18",
- "2014-09-19",
- "2014-09-20",
- "2014-09-21",
- "2014-09-22",
- "2014-09-23",
- "2014-09-24",
- "2014-09-25",
- "2014-09-26",
- "2014-09-27",
- "2014-09-29",
- "2014-09-30",
- "2014-10-02",
- "2014-10-03",
- "2014-10-04",
- "2014-10-06",
- "2014-10-07",
- "2014-10-08",
- "2014-10-09",
- "2014-10-10",
- "2014-10-11",
- "2014-10-12",
- "2014-10-14",
- "2014-10-15",
- "2014-10-16",
- "2014-10-17",
- "2014-10-19",
- "2014-10-20",
- "2014-10-21",
- "2014-10-23",
- "2014-10-24",
- "2014-10-25",
- "2014-10-26",
- "2014-10-27",
- "2014-10-28",
- "2014-10-29",
- "2014-10-30",
- "2014-10-31",
- "2014-11-01",
- "2014-11-02",
- "2014-11-03",
- "2014-11-04",
- "2014-11-05",
- "2014-11-06",
- "2014-11-07",
- "2014-11-08",
- "2014-11-09",
- "2014-11-10",
- "2014-11-11",
- "2014-11-12",
- "2014-11-13",
- "2014-11-14",
- "2014-11-15",
- "2014-11-16",
- "2014-11-17",
- "2014-11-18",
- "2014-11-19",
- "2014-11-20",
- "2014-11-21",
- "2014-11-22",
- "2014-11-23",
- "2014-11-24",
- "2014-11-25",
- "2014-11-26",
- "2014-11-27",
- "2014-11-28",
- "2014-11-30",
- "2014-12-01",
- "2014-12-02",
- "2014-12-03",
- "2014-12-04",
- "2014-12-05",
- "2014-12-06",
- "2014-12-07",
- "2014-12-08",
- "2014-12-09",
- "2014-12-10",
- "2014-12-11",
- "2014-12-12",
- "2014-12-13",
- "2014-12-14",
- "2014-12-15",
- "2014-12-16",
- "2014-12-18",
- "2014-12-19",
- "2014-12-20",
- "2014-12-21",
- "2014-12-22",
- "2014-12-23",
- "2014-12-24",
- "2014-12-25",
- "2014-12-26",
- "2014-12-27",
- "2014-12-28",
- "2014-12-29",
- "2014-12-30",
- "2014-12-31",
- "2015-01-01",
- "2015-01-02",
- "2015-01-03",
- "2015-01-04",
- "2015-01-05",
- "2015-01-06",
- "2015-01-07",
- "2015-01-08",
- "2015-01-09",
- "2015-01-10",
- "2015-01-11",
- "2015-01-12",
- "2015-01-13",
- "2015-01-14",
- "2015-01-15",
- "2015-01-16",
- "2015-01-17",
- "2015-01-18",
- "2015-01-19",
- "2015-01-20",
- "2015-01-21",
- "2015-01-22",
- "2015-01-23",
- "2015-01-24",
- "2015-01-25",
- "2015-01-26",
- "2015-01-27",
- "2015-01-28",
- "2015-01-29",
- "2015-01-30",
- "2015-01-31",
- "2015-02-01",
- "2015-02-02",
- "2015-02-03",
- "2015-02-04",
- "2015-02-05",
- "2015-02-06",
- "2015-02-07",
- "2015-02-08",
- "2015-02-09",
- "2015-02-10",
- "2015-02-11",
- "2015-02-12",
- "2015-02-13",
- "2015-02-14",
- "2015-02-15",
- "2015-02-16",
- "2015-02-17",
- "2015-02-18",
- "2015-02-19",
- "2015-02-21",
- "2015-02-22",
- "2015-02-23",
- "2015-02-24",
- "2015-02-25",
- "2015-02-26",
- "2015-02-27",
- "2015-02-28",
- "2015-03-01",
- "2015-03-02",
- "2015-03-03",
- "2015-03-04",
- "2015-03-05",
- "2015-03-06",
- "2015-03-07",
- "2015-03-08",
- "2015-03-09",
- "2015-03-10",
- "2015-03-11",
- "2015-03-12",
- "2015-03-13",
- "2015-03-14",
- "2015-03-15",
- "2015-03-16",
- "2015-03-17",
- "2015-03-18",
- "2015-03-19",
- "2015-03-20",
- "2015-03-21",
- "2015-03-23",
- "2015-03-24",
- "2015-03-25",
- "2015-03-26",
- "2015-03-28",
- "2015-03-29",
- "2015-03-30",
- "2015-03-31",
- "2015-04-01",
- "2015-04-02",
- "2015-04-03",
- "2015-04-04",
- "2015-04-05",
- "2015-04-06",
- "2015-04-07",
- "2015-04-08",
- "2015-04-09",
- "2015-04-10",
- "2015-04-11",
- "2015-04-12",
- "2015-04-13",
- "2015-04-14",
- "2015-04-15",
- "2015-04-16",
- "2015-04-17",
- "2015-04-18",
- "2015-04-19",
- "2015-04-20",
- "2015-04-21",
- "2015-04-23",
- "2015-04-24",
- "2015-04-25",
- "2015-04-27",
- "2015-04-28",
- "2015-04-29",
- "2015-04-30",
- "2015-05-01",
- "2015-05-02",
- "2015-05-03",
- "2015-05-04",
- "2015-05-05",
- "2015-05-06",
- "2015-05-07",
- "2015-05-08",
- "2015-05-09",
- "2015-05-10",
- "2015-05-11",
- "2015-05-12",
- "2015-05-13",
- "2015-05-14",
- "2015-05-15",
- "2015-05-16",
- "2015-05-17",
- "2015-05-18",
- "2015-05-19",
- "2015-05-20",
- "2015-05-21",
- "2015-05-22",
- "2015-05-23",
- "2015-05-24",
- "2015-05-25",
- "2015-05-26",
- "2015-05-27",
- "2015-05-28",
- "2015-05-29",
- "2015-05-30",
- "2015-05-31",
- "2015-06-01",
- "2015-06-03",
- "2015-06-04",
- "2015-06-05",
- "2015-06-06",
- "2015-06-07",
- "2015-06-08",
- "2015-06-09",
- "2015-06-10",
- "2015-06-11",
- "2015-06-12",
- "2015-06-13",
- "2015-06-14",
- "2015-06-15",
- "2015-06-16",
- "2015-06-17",
- "2015-06-18",
- "2015-06-19",
- "2015-06-20",
- "2015-06-21",
- "2015-06-27",
- "2015-06-28",
- "2015-06-29",
- "2015-06-30",
- "2015-07-01",
- "2015-07-02",
- "2015-07-03",
- "2015-07-04",
- "2015-07-05",
- "2015-07-06",
- "2015-07-10",
- "2015-07-11",
- "2015-07-13",
- "2015-07-14",
- "2015-07-15",
- "2015-07-16",
- "2015-07-22",
- "2015-07-23",
- "2015-07-24",
- "2015-07-25",
- "2015-07-26",
- "2015-07-27",
- "2015-07-28",
- "2015-08-02",
- "2015-08-03",
- "2015-08-04",
- "2015-08-05",
- "2015-08-06",
- "2015-08-07",
- "2015-08-08",
- "2015-08-12",
- "2015-08-13",
- "2015-08-14",
- "2015-08-15",
- "2015-08-16",
- "2015-08-17",
- "2015-08-18",
- "2015-08-19",
- "2015-08-20",
- "2015-08-21",
- "2015-08-22",
- "2015-08-23",
- "2015-08-24",
- "2015-08-25",
- "2015-08-27",
- "2015-08-28",
- "2015-08-29",
- "2015-08-30",
- "2015-09-01",
- "2015-09-02",
- "2015-09-03",
- "2015-09-04",
- "2015-09-05",
- "2015-09-06",
- "2015-09-07",
- "2015-09-08",
- "2015-09-10",
- "2015-09-11",
- "2015-09-12",
- "2015-09-17",
- "2015-09-19",
- "2015-09-20",
- "2015-09-21",
- "2015-09-22",
- "2015-09-23",
- "2015-09-24",
- "2015-09-25",
- "2015-09-26",
- "2015-09-27",
- "2015-09-28",
- "2015-09-29",
- "2015-09-30",
- "2015-10-01",
- "2015-10-04",
- "2015-10-05",
- "2015-10-07",
- "2015-10-08",
- "2015-10-09",
- "2015-10-10",
- "2015-10-12",
- "2015-10-13",
- "2015-10-14",
- "2015-10-16",
- "2015-10-17",
- "2015-10-18",
- "2015-10-19",
- "2015-10-20",
- "2015-10-21",
- "2015-10-22",
- "2015-10-23",
- "2015-10-24",
- "2015-10-25",
- "2015-10-26",
- "2015-10-27",
- "2015-10-28",
- "2015-10-29",
- "2015-10-30",
- "2015-10-31",
- "2015-11-01",
- "2015-11-02",
- "2015-11-03",
- "2015-11-04",
- "2015-11-05",
- "2015-11-06",
- "2015-11-07",
- "2015-11-08",
- "2015-11-09",
- "2015-11-10",
- "2015-11-11",
- "2015-11-12",
- "2015-11-13",
- "2015-11-14",
- "2015-11-15",
- "2015-11-16",
- "2015-11-17",
- "2015-11-18",
- "2015-11-19",
- "2015-11-20",
- "2015-11-21",
- "2015-11-22",
- "2015-11-23",
- "2015-11-24",
- "2015-11-25",
- "2015-11-26",
- "2015-11-27",
- "2015-11-28",
- "2015-11-29",
- "2015-11-30",
- "2015-12-01",
- "2015-12-02",
- "2015-12-03",
- "2015-12-04",
- "2015-12-05",
- "2015-12-06",
- "2015-12-07",
- "2015-12-08",
- "2015-12-09",
- "2015-12-10",
- "2015-12-11",
- "2015-12-12",
- "2015-12-13",
- "2015-12-14",
- "2015-12-15",
- "2015-12-16",
- "2015-12-17",
- "2015-12-18",
- "2015-12-19",
- "2015-12-20",
- "2015-12-21",
- "2015-12-22",
- "2015-12-23",
- "2015-12-24",
- "2015-12-25",
- "2015-12-26",
- "2015-12-27",
- "2015-12-28",
- "2015-12-29",
- "2015-12-30",
- "2015-12-31",
- "2016-01-01",
- "2016-01-02",
- "2016-01-03",
- "2016-01-04",
- "2016-01-05",
- "2016-01-06",
- "2016-01-07",
- "2016-01-09",
- "2016-01-10",
- "2016-01-11",
- "2016-01-12",
- "2016-01-13",
- "2016-01-14",
- "2016-01-15",
- "2016-01-16",
- "2016-01-17",
- "2016-01-18",
- "2016-01-19",
- "2016-01-20",
- "2016-01-21",
- "2016-01-22",
- "2016-01-23",
- "2016-01-24",
- "2016-01-25",
- "2016-01-26",
- "2016-01-27",
- "2016-01-28",
- "2016-01-29",
- "2016-01-30",
- "2016-01-31",
- "2016-02-01",
- "2016-02-02",
- "2016-02-03",
- "2016-02-04",
- "2016-02-05",
- "2016-02-06",
- "2016-02-07",
- "2016-02-08",
- "2016-02-09",
- "2016-02-10",
- "2016-02-11",
- "2016-02-12",
- "2016-02-13",
- "2016-02-14",
- "2016-02-15",
- "2016-02-16",
- "2016-02-17",
- "2016-02-18",
- "2016-02-19",
- "2016-02-20",
- "2016-02-21",
- "2016-02-22",
- "2016-02-23",
- "2016-02-24",
- "2016-02-25",
- "2016-02-26",
- "2016-02-27",
- "2016-02-28",
- "2016-02-29",
- "2016-03-01",
- "2016-03-02",
- "2016-03-03",
- "2016-03-04",
- "2016-03-05",
- "2016-03-06",
- "2016-03-07",
- "2016-03-08",
- "2016-03-09",
- "2016-03-10",
- "2016-03-11",
- "2016-03-12",
- "2016-03-13",
- "2016-03-14",
- "2016-03-15",
- "2016-03-16",
- "2016-03-17",
- "2016-03-18",
- "2016-03-19",
- "2016-03-20",
- "2016-03-21",
- "2016-03-22",
- "2016-03-24",
- "2016-03-25",
- "2016-03-26",
- "2016-03-27",
- "2016-03-28",
- "2016-03-29",
- "2016-03-30",
- "2016-03-31",
- "2016-04-01",
- "2016-04-02",
- "2016-04-03",
- "2016-04-04",
- "2016-04-05",
- "2016-04-06",
- "2016-04-07",
- "2016-04-08",
- "2016-04-09",
- "2016-04-10",
- "2016-04-11",
- "2016-04-12",
- "2016-04-13",
- "2016-04-14",
- "2016-04-15",
- "2016-04-16",
- "2016-04-17",
- "2016-04-18",
- "2016-04-19",
- "2016-04-20",
- "2016-04-21",
- "2016-04-22",
- "2016-04-23",
- "2016-04-24",
- "2016-04-25",
- "2016-04-26",
- "2016-04-27",
- "2016-04-28",
- "2016-04-29",
- "2016-04-30",
- "2016-05-01",
- "2016-05-02",
- "2016-05-03",
- "2016-05-04",
- "2016-05-05",
- "2016-05-06",
- "2016-05-07",
- "2016-05-08",
- "2016-05-09",
- "2016-05-10",
- "2016-05-11",
- "2016-05-12",
- "2016-05-13",
- "2016-05-14",
- "2016-05-15",
- "2016-05-16",
- "2016-05-17",
- "2016-05-18",
- "2016-05-19",
- "2016-05-20",
- "2016-05-21",
- "2016-05-23",
- "2016-05-24",
- "2016-05-26",
- "2016-05-27",
- "2016-05-28",
- "2016-05-29",
- "2016-05-30",
- "2016-05-31",
- "2016-06-01",
- "2016-06-03",
- "2016-06-04",
- "2016-06-05",
- "2016-06-07",
- "2016-06-08",
- "2016-06-11",
- "2016-06-12",
- "2016-06-13",
- "2016-06-15",
- "2016-06-16",
- "2016-06-19",
- "2016-06-23",
- "2016-06-30",
- "2016-07-01",
- "2016-07-02",
- "2016-07-04",
- "2016-07-08",
- "2016-07-09",
- "2016-07-11",
- "2016-07-15",
- "2016-07-16",
- "2016-07-17",
- "2016-07-19",
- "2016-07-20",
- "2016-07-21",
- "2016-07-23",
- "2016-07-24",
- "2016-07-25",
- "2016-07-27",
- "2016-07-28",
- "2016-07-29",
- "2016-07-31",
- "2016-08-01",
- "2016-08-04",
- "2016-08-05",
- "2016-08-08",
- "2016-08-09",
- "2016-08-12",
- "2016-08-13",
- "2016-08-15",
- "2016-08-16",
- "2016-08-17",
- "2016-08-20",
- "2016-08-23",
- "2016-08-27",
- "2016-08-31",
- "2016-09-01",
- "2016-09-04",
- "2016-09-09",
- "2016-09-15",
- "2016-09-16",
- "2016-09-17",
- "2016-09-19",
- "2016-09-20",
- "2016-09-23",
- "2016-09-24",
- "2016-09-27",
- "2016-09-28",
- "2016-10-01",
- "2016-10-02",
- "2016-10-03",
- "2016-10-05",
- "2016-10-12",
- "2016-10-13",
- "2016-10-16",
- "2016-10-17",
- "2016-10-20",
- "2016-10-21",
- "2016-10-25",
- "2016-10-27",
- "2016-10-28",
- "2016-10-31",
- "2016-11-01",
- "2016-11-02",
- "2016-11-04",
- "2016-11-05",
- "2016-11-08",
- "2016-11-09",
- "2016-11-12",
- "2016-11-13",
- "2016-11-14",
- "2016-11-16",
- "2016-11-17",
- "2016-11-20",
- "2016-11-21",
- "2016-11-24",
- "2016-11-25",
- "2016-11-27",
- "2016-11-28",
- "2016-11-29",
- "2016-12-01",
- "2016-12-02",
- "2016-12-03",
- "2016-12-05",
- "2016-12-06",
- "2016-12-07",
- "2016-12-09",
- "2016-12-10",
- "2016-12-11",
- "2016-12-17",
- "2016-12-20",
- "2016-12-21",
- "2016-12-22",
- "2016-12-24",
- "2016-12-25",
- "2016-12-26",
- "2016-12-28",
- "2016-12-29",
- "2016-12-30",
- "2017-01-01",
- "2017-01-02",
- "2017-01-03",
- "2017-01-05",
- "2017-01-06",
- "2017-01-07",
- "2017-01-09",
- "2017-01-10",
- "2017-01-13",
- "2017-01-14",
- "2017-01-17",
- "2017-01-18",
- "2017-01-20",
- "2017-01-21",
- "2017-01-22",
- "2017-01-24",
- "2017-01-25",
- "2017-01-26",
- "2017-01-28",
- "2017-01-29",
- "2017-01-30",
- "2017-02-01",
- "2017-02-02",
- "2017-02-03",
- "2017-02-05",
- "2017-02-06",
- "2017-02-09",
- "2017-02-10",
- "2017-02-12",
- "2017-02-13",
- "2017-02-14",
- "2017-02-15",
- "2017-02-16",
- "2017-02-17",
- "2017-02-18",
- "2017-02-20",
- "2017-02-21",
- "2017-02-24",
- "2017-02-25",
- "2017-02-26",
- "2017-02-28",
- "2017-03-01",
- "2017-03-02",
- "2017-03-04",
- "2017-03-05",
- "2017-03-08",
- "2017-03-09",
- "2017-03-12",
- "2017-03-13",
- "2017-03-16",
- "2017-03-19",
- "2017-03-20",
- "2017-03-21",
- "2017-03-23",
- "2017-03-24",
- "2017-03-27",
- "2017-03-28",
- "2017-03-31",
- "2017-04-04",
- "2017-04-05",
- "2017-04-07",
- "2017-04-08",
- "2017-04-09",
- "2017-04-11",
- "2017-04-12",
- "2017-04-15",
- "2017-04-16",
- "2017-04-17",
- "2017-04-19",
- "2017-04-20",
- "2017-04-21",
- "2017-04-23",
- "2017-04-24",
- "2017-04-25",
- "2017-04-27",
- "2017-04-28",
- "2017-05-01",
- "2017-05-02",
- "2017-05-04",
- "2017-05-06",
- "2017-05-08",
- "2017-05-09",
- "2017-05-10",
- "2017-05-12",
- "2017-05-13",
- "2017-05-14",
- "2017-05-16",
- "2017-05-17",
- "2017-05-18",
- "2017-05-20",
- "2017-05-21",
- "2017-05-24",
- "2017-05-25",
- "2017-05-28",
- "2017-06-01",
- "2017-06-02",
- "2017-06-04",
- "2017-06-05",
- "2017-06-06",
- "2017-06-08",
- "2017-06-09",
- "2017-06-10",
- "2017-06-12",
- "2017-06-13",
- "2017-06-16",
- "2017-06-17",
- "2017-06-20",
- "2017-06-21",
- "2017-06-24",
- "2017-06-27",
- "2017-06-28",
- "2017-06-29",
- "2017-07-03",
- "2017-07-05",
- "2017-07-06",
- "2017-07-07",
- "2017-07-09",
- "2017-07-10",
- "2017-07-13",
- "2017-07-14",
- "2017-07-21",
- "2017-07-22",
- "2017-07-29",
- "2017-07-30",
- "2017-07-31",
- "2017-08-01",
- "2017-08-02",
- "2017-08-03",
- "2017-08-09",
- "2017-08-10",
- "2017-08-11",
- "2017-08-13",
- "2017-08-14",
- "2017-08-17",
- "2017-08-21",
- "2017-08-22",
- "2017-08-25",
- "2017-08-28",
- "2017-08-30",
- "2017-09-01",
- "2017-09-02",
- "2017-09-03",
- "2017-09-05",
- "2017-09-06",
- "2017-09-09",
- "2017-09-10",
- "2017-09-13",
- "2017-09-17",
- "2017-09-18",
- "2017-09-21",
- "2017-09-22",
- "2017-09-24",
- "2017-09-26",
- "2017-09-29",
- "2017-09-30",
- "2017-10-06",
- "2017-10-10",
- "2017-10-14",
- "2017-10-15",
- "2017-10-18",
- "2017-10-19",
- "2017-10-21",
- "2017-10-22",
- "2017-10-23",
- "2017-10-25",
- "2017-10-26",
- "2017-10-27",
- "2017-10-29",
- "2017-10-30",
- "2017-11-02",
- "2017-11-03",
- "2017-11-06",
- "2017-11-07",
- "2017-11-09",
- "2017-11-10",
- "2017-11-11",
- "2017-11-14",
- "2017-11-17",
- "2017-11-18",
- "2017-11-21",
- "2017-11-22",
- "2017-11-23",
- "2017-11-25",
- "2017-11-26",
- "2017-11-27",
- "2017-11-29",
- "2017-11-30",
- "2017-12-03",
- "2017-12-04",
- "2017-12-06",
- "2017-12-07",
- "2017-12-08",
- "2017-12-10",
- "2017-12-11",
- "2017-12-12",
- "2017-12-14",
- "2017-12-15",
- "2017-12-16",
- "2017-12-18",
- "2017-12-19",
- "2017-12-20",
- "2017-12-22",
- "2017-12-23",
- "2017-12-24",
- "2017-12-27",
- "2017-12-30",
- "2017-12-31",
- "2018-01-02",
- "2018-01-03",
- "2018-01-04",
- "2018-01-06",
- "2018-01-07",
- "2018-01-08",
- "2018-01-10",
- "2018-01-11",
- "2018-01-12",
- "2018-01-14",
- "2018-01-15",
- "2018-01-16",
- "2018-01-18",
- "2018-01-19",
- "2018-01-20",
- "2018-01-22",
- "2018-01-23",
- "2018-01-26",
- "2018-01-27",
- "2018-01-29",
- "2018-01-30",
- "2018-01-31",
- "2018-02-02",
- "2018-02-03",
- "2018-02-04",
- "2018-02-06",
- "2018-02-07",
- "2018-02-08",
- "2018-02-10",
- "2018-02-11",
- "2018-02-12",
- "2018-02-14",
- "2018-02-15",
- "2018-02-16",
- "2018-02-17",
- "2018-02-18",
- "2018-02-19",
- "2018-02-20",
- "2018-02-22",
- "2018-02-23",
- "2018-02-25",
- "2018-02-26",
- "2018-02-27",
- "2018-03-01",
- "2018-03-02",
- "2018-03-03",
- "2018-03-05",
- "2018-03-06",
- "2018-03-07",
- "2018-03-09",
- "2018-03-10",
- "2018-03-11",
- "2018-03-13",
- "2018-03-14",
- "2018-03-15",
- "2018-03-17",
- "2018-03-18",
- "2018-03-21",
- "2018-03-22",
- "2018-03-25",
- "2018-03-26",
- "2018-03-29",
- "2018-03-30",
- "2018-04-02",
- "2018-04-03",
- "2018-04-05",
- "2018-04-06",
- "2018-04-09",
- "2018-04-10",
- "2018-04-11",
- "2018-04-13",
- "2018-04-14",
- "2018-04-18",
- "2018-04-21",
- "2018-04-24",
- "2018-04-25",
- "2018-05-03",
- "2018-05-04",
- "2018-05-06",
- "2018-05-07",
- "2018-05-08",
- "2018-05-10",
- "2018-05-11",
- "2018-05-14",
- "2018-05-15",
- "2018-05-18",
- "2018-05-19",
- "2018-05-21",
- "2018-05-22",
- "2018-05-23",
- "2018-05-25",
- "2018-05-26",
- "2018-05-29",
- "2018-05-30",
- "2018-06-06",
- "2018-06-07",
- "2018-06-10",
- "2018-06-11",
- "2018-06-14",
- "2018-06-15",
- "2018-06-19",
- "2018-06-21",
- "2018-06-22",
- "2018-06-23",
- "2018-06-29",
- "2018-06-30",
- "2018-07-01",
- "2018-07-03",
- "2018-07-04",
- "2018-07-07",
- "2018-07-10",
- "2018-07-11",
- "2018-07-12",
- "2018-07-15",
- "2018-07-19",
- "2018-07-20",
- "2018-07-22",
- "2018-07-26",
- "2018-07-30",
- "2018-07-31",
- "2018-08-03",
- "2018-08-04",
- "2018-08-07",
- "2018-08-11",
- "2018-08-12",
- "2018-08-18",
- "2018-08-19",
- "2018-08-20",
- "2018-08-22",
- "2018-08-23",
- "2018-08-27",
- "2018-08-30",
- "2018-08-31",
- "2018-09-04",
- "2018-09-07",
- "2018-09-10",
- "2018-09-11",
- "2018-09-14",
- "2018-09-15",
- "2018-09-16",
- "2018-09-17",
- "2018-09-18",
- "2018-09-20",
- "2018-09-22",
- "2018-09-23",
- "2018-09-26",
- "2018-09-27",
- "2018-09-30",
- "2018-10-04",
- "2018-10-05",
- "2018-10-07",
- "2018-10-08",
- "2018-10-09",
- "2018-10-11",
- "2018-10-12",
- "2018-10-13",
- "2018-10-15",
- "2018-10-16",
- "2018-10-19",
- "2018-10-20",
- "2018-10-23",
- "2018-10-24",
- "2018-10-27",
- "2018-10-28",
- "2018-10-30",
- "2018-10-31",
- "2018-11-01",
- "2018-11-03",
- "2018-11-04",
- "2018-11-05",
- "2018-11-08",
- "2018-11-09",
- "2018-11-11",
- "2018-11-12",
- "2018-11-13",
- "2018-11-15",
- "2018-11-16",
- "2018-11-19",
- "2018-11-20",
- "2018-11-22",
- "2018-11-23",
- "2018-11-24",
- "2018-11-28",
- "2018-11-30",
- "2018-12-01",
- "2018-12-02",
- "2018-12-04",
- "2018-12-05",
- "2018-12-06",
- "2018-12-08",
- "2018-12-09",
- "2018-12-10",
- "2018-12-12",
- "2018-12-13",
- "2018-12-16",
- "2018-12-17",
- "2018-12-19",
- "2018-12-20",
- "2018-12-21",
- "2018-12-23",
- "2018-12-24",
- "2018-12-25",
- "2018-12-27",
- "2018-12-28",
- "2018-12-29",
- "2018-12-31",
- "2019-01-01",
- "2019-01-02",
- "2019-01-04",
- "2019-01-05",
- "2019-01-06",
- "2019-01-08",
- "2019-01-09",
- "2019-01-12",
- "2019-01-13",
- "2019-01-15",
- "2019-01-16",
- "2019-01-17",
- "2019-01-19",
- "2019-01-20",
- "2019-01-21",
- "2019-01-23",
- "2019-01-24",
- "2019-01-25",
- "2019-01-27",
- "2019-01-28",
- "2019-01-29",
- "2019-01-31",
- "2019-02-01",
- "2019-02-02",
- "2019-02-04",
- "2019-02-05",
- "2019-02-08",
- "2019-02-09",
- "2019-02-11",
- "2019-02-12",
- "2019-02-13",
- "2019-02-15",
- "2019-02-16",
- "2019-02-17",
- "2019-02-19",
- "2019-02-20",
- "2019-02-21",
- "2019-02-23",
- "2019-02-24",
- "2019-02-25",
- "2019-02-27",
- "2019-02-28",
- "2019-03-01",
- "2019-03-03",
- "2019-03-04",
- "2019-03-07",
- "2019-03-08",
- "2019-03-10",
- "2019-03-11",
- "2019-03-12",
- "2019-03-15",
- "2019-03-19",
- "2019-03-20",
- "2019-03-22",
- "2019-03-23",
- "2019-03-26",
- "2019-03-27",
- "2019-03-28",
- "2019-03-30",
- "2019-04-03",
- "2019-04-04",
- "2019-04-07",
- "2019-04-08",
- "2019-04-11",
- "2019-04-12",
- "2019-04-15",
- "2019-04-16",
- "2019-04-18",
- "2019-04-19",
- "2019-04-20",
- "2019-04-22",
- "2019-04-23",
- "2019-04-24",
- "2019-04-26",
- "2019-04-27",
- "2019-04-30",
- "2019-05-01",
- "2019-05-04",
- "2019-05-05",
- "2019-05-08",
- "2019-05-15",
- "2019-05-16",
- "2019-05-17",
- "2019-05-19",
- "2019-05-20",
- "2019-05-21",
- "2019-05-22",
- "2019-05-23",
- "2019-05-24",
- "2019-05-25",
- "2019-05-27",
- "2019-05-28",
- "2019-05-30",
- "2019-05-31",
- "2019-06-01",
- "2019-06-04",
- "2019-06-05",
- "2019-06-07",
- "2019-06-08",
- "2019-06-09",
- "2019-06-11",
- "2019-06-12",
- "2019-06-13",
- "2019-06-15",
- "2019-06-16",
- "2019-06-19",
- "2019-06-20",
- "2019-06-23",
- "2019-06-24",
- "2019-06-27",
- "2019-06-28",
- "2019-07-01",
- "2019-07-05",
- "2019-07-06",
- "2019-07-08",
- "2019-07-09",
- "2019-07-10",
- "2019-07-12",
- "2019-07-13",
- "2019-07-14",
- "2019-07-16",
- "2019-07-17",
- "2019-07-20",
- "2019-07-21",
- "2019-07-28",
- "2019-08-01",
- "2019-08-09",
- "2019-08-12",
- "2019-08-13",
- "2019-08-21",
- "2019-08-24",
- "2019-08-27",
- "2019-08-28",
- "2019-09-01",
- "2019-09-08",
- "2019-09-09",
- "2019-09-12",
- "2019-09-13",
- "2019-09-16",
- "2019-09-20",
- "2019-09-21",
- "2019-09-23",
- "2019-09-24",
- "2019-09-25",
- "2019-09-28",
- "2019-10-01",
- "2019-10-02",
- "2019-10-05",
- "2019-10-09",
- "2019-10-10",
- "2019-10-13",
- "2019-10-14",
- "2019-10-17",
- "2019-10-18",
- "2019-10-20",
- "2019-10-21",
- "2019-10-22",
- "2019-10-24",
- "2019-10-25",
- "2019-10-28",
- "2019-10-29",
- "2019-11-01",
- "2019-11-02",
- "2019-11-05",
- "2019-11-06",
- "2019-11-10",
- "2019-11-13",
- "2019-11-14",
- "2019-11-16",
- "2019-11-17",
- "2019-11-18",
- "2019-11-20",
- "2019-11-21",
- "2019-11-24",
- "2019-11-25",
- "2019-11-28",
- "2019-11-29",
- "2019-12-02",
- "2019-12-06",
- "2019-12-07",
- "2019-12-10",
- "2019-12-11",
- "2019-12-13",
- "2019-12-14",
- "2019-12-15",
- "2019-12-17",
- "2019-12-18",
- "2019-12-21",
- "2019-12-22",
- "2019-12-25",
- "2019-12-26",
- "2019-12-29",
- "2019-12-30",
- "2020-01-02",
- "2020-01-03",
- "2020-01-06",
- "2020-01-07",
- "2020-01-09",
- "2020-01-10",
- "2020-01-11",
- "2020-01-13",
- "2020-01-14",
- "2020-01-17",
- "2020-01-18",
- "2020-01-21",
- "2020-01-22",
- "2020-01-25",
- "2020-01-26",
- "2020-01-29",
- "2020-02-02",
- "2020-02-03",
- "2020-02-14",
- "2020-02-17",
- "2020-02-18",
- "2020-02-21",
- "2020-02-22",
- "2020-02-25",
- "2020-02-26",
- "2020-02-29",
- "2020-03-03",
- "2020-03-04",
- "2020-03-07",
- "2020-03-08",
- "2020-03-16",
- "2020-03-20",
- "2020-03-23",
- "2020-03-27",
- "2020-03-28",
- "2020-03-31",
- "2020-04-03",
- "2020-04-04",
- "2020-04-07",
- "2020-04-08",
- "2020-04-11",
- "2020-04-12",
- "2020-04-19",
- "2020-04-20",
- "2020-04-23",
- "2020-04-26",
- "2020-04-27",
- "2020-04-28",
- "2020-04-30",
- "2020-05-01",
- "2020-05-04",
- "2020-05-05",
- "2020-05-08",
- "2020-05-09",
- "2020-05-12",
- "2020-05-13",
- "2020-05-25",
- "2020-05-27",
- "2020-05-28",
- "2020-05-31",
- "2020-06-01",
- "2020-06-04",
- "2020-06-05",
- "2020-06-08",
- "2020-06-09",
- "2020-06-12",
- "2020-06-13",
- "2020-06-16",
- "2020-06-19",
- "2020-06-20",
- "2020-06-23",
- "2020-06-24",
- "2020-06-27",
- "2020-06-28",
- "2020-07-01",
- "2020-07-02",
- "2020-07-05",
- "2020-07-06",
- "2020-07-09",
- "2020-07-10",
- "2020-07-13",
- "2020-07-14",
- "2020-07-16",
- "2020-07-17",
- "2020-07-18",
- "2020-07-20",
- "2020-07-24",
- "2020-07-25",
- "2020-07-28",
- "2020-07-29",
- "2020-08-05",
- "2020-08-06",
- "2020-08-10",
- "2020-08-12",
- "2020-08-13",
- "2020-08-16",
- "2020-08-17",
- "2020-08-22",
- "2020-08-23",
- "2020-08-24",
- "2020-08-25",
- "2020-08-26",
- "2020-08-28",
- "2020-08-29",
- "2020-08-30",
- "2020-08-31",
- "2020-09-01",
- "2020-09-02",
- "2020-09-04",
- "2020-09-05",
- "2020-09-06",
- "2020-09-07",
- "2020-09-08",
- "2020-09-09",
- "2020-09-10",
- "2020-09-11",
- "2020-09-12",
- "2020-09-13",
- "2020-09-15",
- "2020-09-16",
- "2020-09-17",
- "2020-09-21",
- "2020-09-22",
- "2020-09-23",
- "2020-09-24",
- "2020-09-25",
- "2020-09-27",
- "2020-09-28",
- "2020-09-30",
- "2020-10-01",
- "2020-10-03",
- "2020-10-04",
- "2020-10-10",
- "2020-10-12",
- "2020-10-14",
- "2020-10-21",
- "2020-10-22",
- "2020-10-23",
- "2020-10-24",
- "2020-10-25",
- "2020-10-26",
- "2020-10-27",
- "2020-10-30",
- "2020-10-31",
- "2020-11-01",
- "2020-11-02",
- "2020-11-03",
- "2020-11-04",
- "2020-11-05",
- "2020-11-06",
- "2020-11-09",
- "2020-11-10",
- "2020-11-13",
- "2020-11-14",
- "2020-11-15",
- "2020-11-16",
- "2020-11-17",
- "2020-11-18",
- "2020-11-19",
- "2020-11-20",
- "2020-11-21",
- "2020-11-23",
- "2020-11-24",
- "2020-11-25",
- "2020-11-26",
- "2020-11-27",
- "2020-11-28",
- "2020-11-30",
- "2020-12-01",
- "2020-12-02",
- "2020-12-03",
- "2020-12-05",
- "2020-12-06",
- "2020-12-07",
- "2020-12-08",
- "2020-12-09",
- "2020-12-10",
- "2020-12-11",
- "2020-12-12",
- "2020-12-13",
- "2020-12-14",
- "2020-12-15",
- "2020-12-16",
- "2020-12-18",
- "2020-12-19",
- "2020-12-21",
- "2020-12-22",
- "2020-12-23",
- "2020-12-24",
- "2020-12-25",
- "2020-12-26",
- "2020-12-27",
- "2020-12-28",
- "2020-12-29",
- "2020-12-30"
- ],
- "LAKES_SURFACE_WATER_TEMPERATURE_Vanern": [
- "2010-01-01",
- "2010-01-02",
- "2010-01-03",
- "2010-01-04",
- "2010-01-05",
- "2010-01-06",
- "2010-01-08",
- "2010-01-09",
- "2010-01-10",
- "2010-01-11",
- "2010-01-12",
- "2010-01-13",
- "2010-01-15",
- "2010-01-23",
- "2010-01-25",
- "2010-01-28",
- "2010-01-30",
- "2010-01-31",
- "2010-02-04",
- "2010-02-05",
- "2010-02-07",
- "2010-02-09",
- "2010-02-10",
- "2010-02-11",
- "2010-02-12",
- "2010-02-13",
- "2010-02-14",
- "2010-02-16",
- "2010-02-17",
- "2010-02-21",
- "2010-03-02",
- "2010-03-03",
- "2010-03-04",
- "2010-03-05",
- "2010-03-08",
- "2010-03-10",
- "2010-03-12",
- "2010-03-13",
- "2010-03-15",
- "2010-03-16",
- "2010-03-20",
- "2010-03-21",
- "2010-03-25",
- "2010-03-28",
- "2010-03-30",
- "2010-04-01",
- "2010-04-02",
- "2010-04-03",
- "2010-04-04",
- "2010-04-06",
- "2010-04-09",
- "2010-04-10",
- "2010-04-11",
- "2010-04-12",
- "2010-04-13",
- "2010-04-14",
- "2010-04-15",
- "2010-04-16",
- "2010-04-17",
- "2010-04-18",
- "2010-04-19",
- "2010-04-20",
- "2010-04-21",
- "2010-04-22",
- "2010-04-23",
- "2010-04-24",
- "2010-04-25",
- "2010-04-27",
- "2010-04-29",
- "2010-04-30",
- "2010-05-02",
- "2010-05-03",
- "2010-05-04",
- "2010-05-05",
- "2010-05-06",
- "2010-05-07",
- "2010-05-09",
- "2010-05-10",
- "2010-05-11",
- "2010-05-14",
- "2010-05-18",
- "2010-05-19",
- "2010-05-20",
- "2010-05-22",
- "2010-05-23",
- "2010-05-24",
- "2010-05-26",
- "2010-05-27",
- "2010-05-28",
- "2010-05-29",
- "2010-05-30",
- "2010-05-31",
- "2010-06-01",
- "2010-06-02",
- "2010-06-03",
- "2010-06-04",
- "2010-06-05",
- "2010-06-06",
- "2010-06-07",
- "2010-06-08",
- "2010-06-09",
- "2010-06-10",
- "2010-06-12",
- "2010-06-13",
- "2010-06-14",
- "2010-06-15",
- "2010-06-16",
- "2010-06-17",
- "2010-06-18",
- "2010-06-19",
- "2010-06-20",
- "2010-06-21",
- "2010-06-22",
- "2010-06-23",
- "2010-06-24",
- "2010-06-25",
- "2010-06-26",
- "2010-06-27",
- "2010-06-28",
- "2010-06-29",
- "2010-06-30",
- "2010-07-01",
- "2010-07-02",
- "2010-07-03",
- "2010-07-04",
- "2010-07-05",
- "2010-07-06",
- "2010-07-07",
- "2010-07-09",
- "2010-07-10",
- "2010-07-11",
- "2010-07-12",
- "2010-07-13",
- "2010-07-14",
- "2010-07-15",
- "2010-07-16",
- "2010-07-17",
- "2010-07-18",
- "2010-07-19",
- "2010-07-20",
- "2010-07-21",
- "2010-07-22",
- "2010-07-23",
- "2010-07-27",
- "2010-07-28",
- "2010-07-31",
- "2010-08-01",
- "2010-08-02",
- "2010-08-03",
- "2010-08-04",
- "2010-08-05",
- "2010-08-06",
- "2010-08-07",
- "2010-08-08",
- "2010-08-10",
- "2010-08-12",
- "2010-08-14",
- "2010-08-15",
- "2010-08-16",
- "2010-08-17",
- "2010-08-18",
- "2010-08-20",
- "2010-08-22",
- "2010-08-23",
- "2010-08-24",
- "2010-08-25",
- "2010-08-26",
- "2010-08-27",
- "2010-08-28",
- "2010-08-29",
- "2010-08-30",
- "2010-08-31",
- "2010-09-01",
- "2010-09-02",
- "2010-09-03",
- "2010-09-04",
- "2010-09-05",
- "2010-09-06",
- "2010-09-07",
- "2010-09-08",
- "2010-09-09",
- "2010-09-11",
- "2010-09-12",
- "2010-09-13",
- "2010-09-15",
- "2010-09-16",
- "2010-09-17",
- "2010-09-18",
- "2010-09-19",
- "2010-09-21",
- "2010-09-24",
- "2010-09-27",
- "2010-09-28",
- "2010-09-29",
- "2010-09-30",
- "2010-10-02",
- "2010-10-04",
- "2010-10-05",
- "2010-10-07",
- "2010-10-09",
- "2010-10-11",
- "2010-10-12",
- "2010-10-14",
- "2010-10-15",
- "2010-10-16",
- "2010-10-17",
- "2010-10-19",
- "2010-10-20",
- "2010-10-21",
- "2010-10-22",
- "2010-10-25",
- "2010-10-26",
- "2010-10-28",
- "2010-10-31",
- "2010-11-01",
- "2010-11-03",
- "2010-11-04",
- "2010-11-05",
- "2010-11-06",
- "2010-11-07",
- "2010-11-08",
- "2010-11-11",
- "2010-11-12",
- "2010-11-13",
- "2010-11-14",
- "2010-11-16",
- "2010-11-17",
- "2010-11-18",
- "2010-11-25",
- "2010-11-26",
- "2010-11-29",
- "2010-11-30",
- "2010-12-01",
- "2010-12-02",
- "2010-12-03",
- "2010-12-04",
- "2010-12-07",
- "2010-12-08",
- "2010-12-09",
- "2010-12-10",
- "2010-12-11",
- "2010-12-12",
- "2010-12-13",
- "2010-12-14",
- "2010-12-15",
- "2010-12-21",
- "2010-12-22",
- "2010-12-23",
- "2010-12-24",
- "2010-12-25",
- "2010-12-27",
- "2010-12-28",
- "2010-12-29",
- "2010-12-31",
- "2011-01-01",
- "2011-01-02",
- "2011-01-07",
- "2011-01-09",
- "2011-01-10",
- "2011-01-12",
- "2011-01-13",
- "2011-01-17",
- "2011-01-18",
- "2011-01-19",
- "2011-01-20",
- "2011-01-21",
- "2011-01-23",
- "2011-01-24",
- "2011-01-26",
- "2011-01-27",
- "2011-01-29",
- "2011-01-31",
- "2011-02-02",
- "2011-02-03",
- "2011-02-04",
- "2011-02-05",
- "2011-02-06",
- "2011-02-08",
- "2011-02-09",
- "2011-02-12",
- "2011-02-13",
- "2011-03-03",
- "2011-03-05",
- "2011-03-08",
- "2011-03-09",
- "2011-03-11",
- "2011-03-12",
- "2011-03-15",
- "2011-03-16",
- "2011-03-17",
- "2011-03-19",
- "2011-03-20",
- "2011-03-21",
- "2011-03-22",
- "2011-03-23",
- "2011-03-24",
- "2011-03-25",
- "2011-03-26",
- "2011-03-27",
- "2011-03-28",
- "2011-03-29",
- "2011-03-30",
- "2011-04-04",
- "2011-04-07",
- "2011-04-08",
- "2011-04-09",
- "2011-04-10",
- "2011-04-11",
- "2011-04-12",
- "2011-04-13",
- "2011-04-14",
- "2011-04-15",
- "2011-04-16",
- "2011-04-17",
- "2011-04-18",
- "2011-04-19",
- "2011-04-20",
- "2011-04-21",
- "2011-04-22",
- "2011-04-23",
- "2011-04-24",
- "2011-04-25",
- "2011-04-26",
- "2011-04-27",
- "2011-04-28",
- "2011-04-29",
- "2011-04-30",
- "2011-05-01",
- "2011-05-02",
- "2011-05-03",
- "2011-05-04",
- "2011-05-05",
- "2011-05-06",
- "2011-05-07",
- "2011-05-08",
- "2011-05-09",
- "2011-05-10",
- "2011-05-11",
- "2011-05-12",
- "2011-05-13",
- "2011-05-14",
- "2011-05-15",
- "2011-05-16",
- "2011-05-17",
- "2011-05-18",
- "2011-05-19",
- "2011-05-20",
- "2011-05-21",
- "2011-05-22",
- "2011-05-23",
- "2011-05-24",
- "2011-05-25",
- "2011-05-26",
- "2011-05-27",
- "2011-05-28",
- "2011-05-29",
- "2011-05-30",
- "2011-05-31",
- "2011-06-01",
- "2011-06-02",
- "2011-06-03",
- "2011-06-04",
- "2011-06-05",
- "2011-06-06",
- "2011-06-07",
- "2011-06-08",
- "2011-06-09",
- "2011-06-10",
- "2011-06-11",
- "2011-06-12",
- "2011-06-13",
- "2011-06-14",
- "2011-06-15",
- "2011-06-16",
- "2011-06-17",
- "2011-06-18",
- "2011-06-19",
- "2011-06-20",
- "2011-06-21",
- "2011-06-22",
- "2011-06-23",
- "2011-06-24",
- "2011-06-25",
- "2011-06-26",
- "2011-06-27",
- "2011-06-28",
- "2011-06-29",
- "2011-06-30",
- "2011-07-01",
- "2011-07-02",
- "2011-07-03",
- "2011-07-04",
- "2011-07-05",
- "2011-07-06",
- "2011-07-07",
- "2011-07-08",
- "2011-07-09",
- "2011-07-10",
- "2011-07-11",
- "2011-07-12",
- "2011-07-13",
- "2011-07-14",
- "2011-07-15",
- "2011-07-16",
- "2011-07-17",
- "2011-07-18",
- "2011-07-19",
- "2011-07-20",
- "2011-07-21",
- "2011-07-22",
- "2011-07-23",
- "2011-07-24",
- "2011-07-25",
- "2011-07-26",
- "2011-07-27",
- "2011-07-28",
- "2011-07-29",
- "2011-07-30",
- "2011-07-31",
- "2011-08-01",
- "2011-08-02",
- "2011-08-03",
- "2011-08-04",
- "2011-08-06",
- "2011-08-08",
- "2011-08-09",
- "2011-08-10",
- "2011-08-11",
- "2011-08-12",
- "2011-08-13",
- "2011-08-14",
- "2011-08-16",
- "2011-08-17",
- "2011-08-18",
- "2011-08-20",
- "2011-08-21",
- "2011-08-22",
- "2011-08-23",
- "2011-08-25",
- "2011-08-26",
- "2011-08-27",
- "2011-08-28",
- "2011-08-29",
- "2011-08-30",
- "2011-08-31",
- "2011-09-01",
- "2011-09-02",
- "2011-09-03",
- "2011-09-04",
- "2011-09-06",
- "2011-09-07",
- "2011-09-08",
- "2011-09-09",
- "2011-09-10",
- "2011-09-11",
- "2011-09-12",
- "2011-09-13",
- "2011-09-14",
- "2011-09-15",
- "2011-09-16",
- "2011-09-17",
- "2011-09-19",
- "2011-09-22",
- "2011-09-23",
- "2011-09-24",
- "2011-09-25",
- "2011-09-26",
- "2011-09-27",
- "2011-09-29",
- "2011-09-30",
- "2011-10-01",
- "2011-10-02",
- "2011-10-03",
- "2011-10-04",
- "2011-10-05",
- "2011-10-06",
- "2011-10-07",
- "2011-10-11",
- "2011-10-12",
- "2011-10-13",
- "2011-10-15",
- "2011-10-16",
- "2011-10-17",
- "2011-10-19",
- "2011-10-20",
- "2011-10-21",
- "2011-10-22",
- "2011-10-23",
- "2011-10-24",
- "2011-10-25",
- "2011-10-26",
- "2011-10-27",
- "2011-10-28",
- "2011-10-29",
- "2011-10-30",
- "2011-10-31",
- "2011-11-02",
- "2011-11-04",
- "2011-11-08",
- "2011-11-09",
- "2011-11-13",
- "2011-11-14",
- "2011-11-15",
- "2011-11-16",
- "2011-11-17",
- "2011-11-18",
- "2011-11-19",
- "2011-11-20",
- "2011-11-21",
- "2011-11-22",
- "2011-11-24",
- "2011-11-25",
- "2011-11-26",
- "2011-11-27",
- "2011-11-28",
- "2011-11-30",
- "2011-12-01",
- "2011-12-02",
- "2011-12-04",
- "2011-12-05",
- "2011-12-06",
- "2011-12-07",
- "2011-12-08",
- "2011-12-09",
- "2011-12-10",
- "2011-12-11",
- "2011-12-14",
- "2011-12-16",
- "2011-12-18",
- "2011-12-19",
- "2011-12-20",
- "2011-12-21",
- "2011-12-23",
- "2011-12-24",
- "2011-12-25",
- "2011-12-27",
- "2011-12-29",
- "2011-12-30",
- "2011-12-31",
- "2012-01-02",
- "2012-01-03",
- "2012-01-04",
- "2012-01-06",
- "2012-01-08",
- "2012-01-11",
- "2012-01-13",
- "2012-01-14",
- "2012-01-17",
- "2012-01-19",
- "2012-01-20",
- "2012-01-22",
- "2012-01-23",
- "2012-01-24",
- "2012-01-25",
- "2012-01-26",
- "2012-01-27",
- "2012-01-30",
- "2012-01-31",
- "2012-02-01",
- "2012-02-02",
- "2012-02-03",
- "2012-02-04",
- "2012-02-05",
- "2012-02-06",
- "2012-02-09",
- "2012-02-10",
- "2012-02-11",
- "2012-02-12",
- "2012-02-14",
- "2012-02-15",
- "2012-02-17",
- "2012-02-19",
- "2012-02-20",
- "2012-02-21",
- "2012-02-23",
- "2012-02-24",
- "2012-02-25",
- "2012-02-26",
- "2012-02-28",
- "2012-02-29",
- "2012-03-01",
- "2012-03-02",
- "2012-03-03",
- "2012-03-05",
- "2012-03-06",
- "2012-03-07",
- "2012-03-10",
- "2012-03-11",
- "2012-03-12",
- "2012-03-13",
- "2012-03-14",
- "2012-03-15",
- "2012-03-18",
- "2012-03-19",
- "2012-03-21",
- "2012-03-22",
- "2012-03-23",
- "2012-03-24",
- "2012-03-25",
- "2012-03-26",
- "2012-03-27",
- "2012-03-29",
- "2012-03-30",
- "2012-03-31",
- "2012-04-01",
- "2012-04-02",
- "2012-04-03",
- "2012-04-04",
- "2012-04-05",
- "2012-04-07",
- "2012-04-08",
- "2012-04-12",
- "2012-04-13",
- "2012-04-14",
- "2012-04-15",
- "2012-04-16",
- "2012-04-17",
- "2012-04-18",
- "2012-04-19",
- "2012-04-21",
- "2012-04-22",
- "2012-04-23",
- "2012-04-24",
- "2012-04-25",
- "2012-04-27",
- "2012-04-28",
- "2012-04-29",
- "2012-04-30",
- "2012-05-01",
- "2012-05-02",
- "2012-05-03",
- "2012-05-04",
- "2012-05-05",
- "2012-05-06",
- "2012-05-07",
- "2012-05-08",
- "2012-05-10",
- "2012-05-11",
- "2012-05-12",
- "2012-05-13",
- "2012-05-15",
- "2012-05-16",
- "2012-05-17",
- "2012-05-18",
- "2012-05-19",
- "2012-05-20",
- "2012-05-21",
- "2012-05-22",
- "2012-05-23",
- "2012-05-24",
- "2012-05-25",
- "2012-05-26",
- "2012-05-27",
- "2012-05-28",
- "2012-05-29",
- "2012-05-30",
- "2012-05-31",
- "2012-06-01",
- "2012-06-02",
- "2012-06-03",
- "2012-06-04",
- "2012-06-05",
- "2012-06-06",
- "2012-06-07",
- "2012-06-08",
- "2012-06-09",
- "2012-06-10",
- "2012-06-11",
- "2012-06-12",
- "2012-06-13",
- "2012-06-14",
- "2012-06-15",
- "2012-06-16",
- "2012-06-17",
- "2012-06-18",
- "2012-06-19",
- "2012-06-20",
- "2012-06-21",
- "2012-06-22",
- "2012-06-23",
- "2012-06-24",
- "2012-06-26",
- "2012-06-27",
- "2012-06-28",
- "2012-06-29",
- "2012-06-30",
- "2012-07-01",
- "2012-07-02",
- "2012-07-03",
- "2012-07-04",
- "2012-07-05",
- "2012-07-06",
- "2012-07-07",
- "2012-07-08",
- "2012-07-09",
- "2012-07-10",
- "2012-07-11",
- "2012-07-12",
- "2012-07-13",
- "2012-07-14",
- "2012-07-15",
- "2012-07-16",
- "2012-07-17",
- "2012-07-18",
- "2012-07-19",
- "2012-07-20",
- "2012-07-21",
- "2012-07-22",
- "2012-07-24",
- "2012-07-25",
- "2012-07-26",
- "2012-07-27",
- "2012-07-28",
- "2012-07-29",
- "2012-07-30",
- "2012-07-31",
- "2012-08-01",
- "2012-08-02",
- "2012-08-03",
- "2012-08-04",
- "2012-08-05",
- "2012-08-06",
- "2012-08-07",
- "2012-08-08",
- "2012-08-09",
- "2012-08-10",
- "2012-08-11",
- "2012-08-12",
- "2012-08-13",
- "2012-08-14",
- "2012-08-15",
- "2012-08-16",
- "2012-08-17",
- "2012-08-19",
- "2012-08-20",
- "2012-08-21",
- "2012-08-22",
- "2012-08-23",
- "2012-08-24",
- "2012-08-25",
- "2012-08-26",
- "2012-08-27",
- "2012-08-29",
- "2012-08-31",
- "2012-09-01",
- "2012-09-02",
- "2012-09-03",
- "2012-09-05",
- "2012-09-06",
- "2012-09-07",
- "2012-09-09",
- "2012-09-10",
- "2012-09-11",
- "2012-09-12",
- "2012-09-13",
- "2012-09-14",
- "2012-09-15",
- "2012-09-16",
- "2012-09-17",
- "2012-09-18",
- "2012-09-19",
- "2012-09-20",
- "2012-09-21",
- "2012-09-24",
- "2012-09-26",
- "2012-09-27",
- "2012-09-28",
- "2012-09-29",
- "2012-09-30",
- "2012-10-01",
- "2012-10-02",
- "2012-10-04",
- "2012-10-05",
- "2012-10-06",
- "2012-10-07",
- "2012-10-08",
- "2012-10-09",
- "2012-10-10",
- "2012-10-11",
- "2012-10-12",
- "2012-10-13",
- "2012-10-16",
- "2012-10-17",
- "2012-10-18",
- "2012-10-22",
- "2012-10-23",
- "2012-10-24",
- "2012-10-25",
- "2012-10-26",
- "2012-10-27",
- "2012-10-28",
- "2012-10-30",
- "2012-11-01",
- "2012-11-02",
- "2012-11-03",
- "2012-11-04",
- "2012-11-05",
- "2012-11-06",
- "2012-11-07",
- "2012-11-08",
- "2012-11-09",
- "2012-11-10",
- "2012-11-11",
- "2012-11-12",
- "2012-11-13",
- "2012-11-14",
- "2012-11-15",
- "2012-11-16",
- "2012-11-17",
- "2012-11-18",
- "2012-11-19",
- "2012-11-21",
- "2012-11-22",
- "2012-11-23",
- "2012-11-24",
- "2012-11-28",
- "2012-11-29",
- "2012-11-30",
- "2012-12-01",
- "2012-12-02",
- "2012-12-03",
- "2012-12-04",
- "2012-12-06",
- "2012-12-07",
- "2012-12-08",
- "2012-12-09",
- "2012-12-10",
- "2012-12-11",
- "2012-12-12",
- "2012-12-13",
- "2012-12-14",
- "2012-12-20",
- "2012-12-21",
- "2012-12-22",
- "2012-12-27",
- "2012-12-28",
- "2012-12-30",
- "2013-01-01",
- "2013-01-02",
- "2013-01-03",
- "2013-01-04",
- "2013-01-05",
- "2013-01-06",
- "2013-01-07",
- "2013-01-10",
- "2013-01-11",
- "2013-01-13",
- "2013-01-14",
- "2013-01-16",
- "2013-01-17",
- "2013-01-18",
- "2013-01-19",
- "2013-01-20",
- "2013-01-22",
- "2013-01-23",
- "2013-01-24",
- "2013-01-28",
- "2013-01-30",
- "2013-01-31",
- "2013-02-01",
- "2013-02-02",
- "2013-02-03",
- "2013-02-05",
- "2013-02-06",
- "2013-02-08",
- "2013-02-09",
- "2013-02-19",
- "2013-02-20",
- "2013-02-23",
- "2013-02-24",
- "2013-02-25",
- "2013-02-28",
- "2013-03-01",
- "2013-03-03",
- "2013-03-04",
- "2013-03-06",
- "2013-03-07",
- "2013-03-08",
- "2013-03-09",
- "2013-03-10",
- "2013-03-11",
- "2013-03-12",
- "2013-03-13",
- "2013-03-14",
- "2013-03-15",
- "2013-03-18",
- "2013-03-21",
- "2013-03-22",
- "2013-03-23",
- "2013-03-24",
- "2013-03-25",
- "2013-03-26",
- "2013-03-27",
- "2013-03-28",
- "2013-03-29",
- "2013-03-30",
- "2013-03-31",
- "2013-04-01",
- "2013-04-02",
- "2013-04-03",
- "2013-04-04",
- "2013-04-05",
- "2013-04-06",
- "2013-04-07",
- "2013-04-08",
- "2013-04-09",
- "2013-04-10",
- "2013-04-11",
- "2013-04-12",
- "2013-04-16",
- "2013-04-17",
- "2013-04-18",
- "2013-04-20",
- "2013-04-21",
- "2013-04-23",
- "2013-04-25",
- "2013-04-26",
- "2013-04-27",
- "2013-04-28",
- "2013-04-29",
- "2013-04-30",
- "2013-05-01",
- "2013-05-02",
- "2013-05-03",
- "2013-05-05",
- "2013-05-06",
- "2013-05-07",
- "2013-05-08",
- "2013-05-09",
- "2013-05-10",
- "2013-05-11",
- "2013-05-12",
- "2013-05-13",
- "2013-05-14",
- "2013-05-15",
- "2013-05-16",
- "2013-05-17",
- "2013-05-18",
- "2013-05-19",
- "2013-05-20",
- "2013-05-21",
- "2013-05-22",
- "2013-05-23",
- "2013-05-24",
- "2013-05-25",
- "2013-05-26",
- "2013-05-27",
- "2013-05-28",
- "2013-05-29",
- "2013-05-30",
- "2013-05-31",
- "2013-06-01",
- "2013-06-02",
- "2013-06-03",
- "2013-06-04",
- "2013-06-05",
- "2013-06-06",
- "2013-06-07",
- "2013-06-08",
- "2013-06-09",
- "2013-06-10",
- "2013-06-11",
- "2013-06-12",
- "2013-06-13",
- "2013-06-14",
- "2013-06-15",
- "2013-06-16",
- "2013-06-17",
- "2013-06-18",
- "2013-06-19",
- "2013-06-20",
- "2013-06-21",
- "2013-06-22",
- "2013-06-23",
- "2013-06-24",
- "2013-06-25",
- "2013-06-26",
- "2013-06-27",
- "2013-06-28",
- "2013-06-29",
- "2013-06-30",
- "2013-07-01",
- "2013-07-02",
- "2013-07-03",
- "2013-07-04",
- "2013-07-05",
- "2013-07-06",
- "2013-07-07",
- "2013-07-08",
- "2013-07-09",
- "2013-07-10",
- "2013-07-11",
- "2013-07-12",
- "2013-07-13",
- "2013-07-14",
- "2013-07-15",
- "2013-07-16",
- "2013-07-17",
- "2013-07-18",
- "2013-07-19",
- "2013-07-20",
- "2013-07-21",
- "2013-07-22",
- "2013-07-23",
- "2013-07-24",
- "2013-07-25",
- "2013-07-26",
- "2013-07-27",
- "2013-07-28",
- "2013-07-29",
- "2013-07-31",
- "2013-08-01",
- "2013-08-02",
- "2013-08-03",
- "2013-08-04",
- "2013-08-05",
- "2013-08-06",
- "2013-08-07",
- "2013-08-08",
- "2013-08-09",
- "2013-08-10",
- "2013-08-11",
- "2013-08-12",
- "2013-08-13",
- "2013-08-14",
- "2013-08-15",
- "2013-08-16",
- "2013-08-17",
- "2013-08-19",
- "2013-08-20",
- "2013-08-21",
- "2013-08-22",
- "2013-08-23",
- "2013-08-24",
- "2013-08-25",
- "2013-08-26",
- "2013-08-27",
- "2013-08-28",
- "2013-08-29",
- "2013-08-30",
- "2013-08-31",
- "2013-09-01",
- "2013-09-02",
- "2013-09-03",
- "2013-09-04",
- "2013-09-05",
- "2013-09-06",
- "2013-09-07",
- "2013-09-08",
- "2013-09-09",
- "2013-09-10",
- "2013-09-11",
- "2013-09-12",
- "2013-09-13",
- "2013-09-14",
- "2013-09-15",
- "2013-09-17",
- "2013-09-18",
- "2013-09-19",
- "2013-09-20",
- "2013-09-21",
- "2013-09-23",
- "2013-09-24",
- "2013-09-25",
- "2013-09-26",
- "2013-09-27",
- "2013-09-28",
- "2013-09-29",
- "2013-09-30",
- "2013-10-01",
- "2013-10-02",
- "2013-10-03",
- "2013-10-04",
- "2013-10-06",
- "2013-10-07",
- "2013-10-09",
- "2013-10-10",
- "2013-10-11",
- "2013-10-12",
- "2013-10-13",
- "2013-10-14",
- "2013-10-15",
- "2013-10-16",
- "2013-10-18",
- "2013-10-23",
- "2013-10-24",
- "2013-10-25",
- "2013-10-26",
- "2013-10-27",
- "2013-10-28",
- "2013-10-29",
- "2013-10-30",
- "2013-10-31",
- "2013-11-01",
- "2013-11-02",
- "2013-11-04",
- "2013-11-05",
- "2013-11-06",
- "2013-11-07",
- "2013-11-08",
- "2013-11-10",
- "2013-11-11",
- "2013-11-13",
- "2013-11-16",
- "2013-11-17",
- "2013-11-18",
- "2013-11-19",
- "2013-11-20",
- "2013-11-21",
- "2013-11-22",
- "2013-11-23",
- "2013-11-24",
- "2013-11-25",
- "2013-11-26",
- "2013-11-27",
- "2013-11-28",
- "2013-11-30",
- "2013-12-01",
- "2013-12-02",
- "2013-12-03",
- "2013-12-04",
- "2013-12-05",
- "2013-12-07",
- "2013-12-10",
- "2013-12-11",
- "2013-12-12",
- "2013-12-13",
- "2013-12-14",
- "2013-12-15",
- "2013-12-16",
- "2013-12-17",
- "2013-12-18",
- "2013-12-20",
- "2013-12-21",
- "2013-12-22",
- "2013-12-23",
- "2013-12-26",
- "2013-12-27",
- "2013-12-28",
- "2013-12-29",
- "2013-12-30",
- "2013-12-31",
- "2014-01-04",
- "2014-01-05",
- "2014-01-06",
- "2014-01-07",
- "2014-01-08",
- "2014-01-10",
- "2014-01-11",
- "2014-01-12",
- "2014-01-18",
- "2014-01-19",
- "2014-01-20",
- "2014-01-21",
- "2014-01-23",
- "2014-01-29",
- "2014-02-02",
- "2014-02-03",
- "2014-02-04",
- "2014-02-05",
- "2014-02-08",
- "2014-02-12",
- "2014-02-14",
- "2014-02-17",
- "2014-02-21",
- "2014-02-25",
- "2014-02-27",
- "2014-02-28",
- "2014-03-03",
- "2014-03-04",
- "2014-03-05",
- "2014-03-06",
- "2014-03-08",
- "2014-03-09",
- "2014-03-11",
- "2014-03-12",
- "2014-03-13",
- "2014-03-14",
- "2014-03-15",
- "2014-03-16",
- "2014-03-17",
- "2014-03-21",
- "2014-03-22",
- "2014-03-23",
- "2014-03-24",
- "2014-03-25",
- "2014-03-27",
- "2014-03-28",
- "2014-03-29",
- "2014-03-30",
- "2014-03-31",
- "2014-04-01",
- "2014-04-02",
- "2014-04-03",
- "2014-04-04",
- "2014-04-05",
- "2014-04-07",
- "2014-04-10",
- "2014-04-11",
- "2014-04-13",
- "2014-04-14",
- "2014-04-15",
- "2014-04-16",
- "2014-04-17",
- "2014-04-18",
- "2014-04-19",
- "2014-04-20",
- "2014-04-21",
- "2014-04-22",
- "2014-04-23",
- "2014-04-24",
- "2014-04-25",
- "2014-04-26",
- "2014-04-27",
- "2014-04-28",
- "2014-04-29",
- "2014-04-30",
- "2014-05-01",
- "2014-05-02",
- "2014-05-03",
- "2014-05-04",
- "2014-05-05",
- "2014-05-09",
- "2014-05-10",
- "2014-05-11",
- "2014-05-12",
- "2014-05-13",
- "2014-05-14",
- "2014-05-15",
- "2014-05-16",
- "2014-05-17",
- "2014-05-18",
- "2014-05-19",
- "2014-05-20",
- "2014-05-21",
- "2014-05-22",
- "2014-05-23",
- "2014-05-24",
- "2014-05-25",
- "2014-05-26",
- "2014-05-27",
- "2014-05-28",
- "2014-05-29",
- "2014-05-30",
- "2014-05-31",
- "2014-06-01",
- "2014-06-02",
- "2014-06-03",
- "2014-06-04",
- "2014-06-05",
- "2014-06-06",
- "2014-06-07",
- "2014-06-08",
- "2014-06-09",
- "2014-06-10",
- "2014-06-11",
- "2014-06-12",
- "2014-06-13",
- "2014-06-14",
- "2014-06-15",
- "2014-06-16",
- "2014-06-17",
- "2014-06-18",
- "2014-06-19",
- "2014-06-20",
- "2014-06-21",
- "2014-06-22",
- "2014-06-23",
- "2014-06-24",
- "2014-06-25",
- "2014-06-26",
- "2014-06-27",
- "2014-06-29",
- "2014-06-30",
- "2014-07-01",
- "2014-07-02",
- "2014-07-03",
- "2014-07-04",
- "2014-07-05",
- "2014-07-06",
- "2014-07-07",
- "2014-07-08",
- "2014-07-09",
- "2014-07-10",
- "2014-07-11",
- "2014-07-12",
- "2014-07-13",
- "2014-07-14",
- "2014-07-15",
- "2014-07-16",
- "2014-07-17",
- "2014-07-18",
- "2014-07-19",
- "2014-07-20",
- "2014-07-21",
- "2014-07-22",
- "2014-07-23",
- "2014-07-24",
- "2014-07-25",
- "2014-07-26",
- "2014-07-27",
- "2014-07-28",
- "2014-07-29",
- "2014-07-30",
- "2014-07-31",
- "2014-08-01",
- "2014-08-02",
- "2014-08-03",
- "2014-08-04",
- "2014-08-05",
- "2014-08-06",
- "2014-08-07",
- "2014-08-08",
- "2014-08-09",
- "2014-08-10",
- "2014-08-11",
- "2014-08-12",
- "2014-08-13",
- "2014-08-14",
- "2014-08-15",
- "2014-08-16",
- "2014-08-18",
- "2014-08-19",
- "2014-08-20",
- "2014-08-21",
- "2014-08-22",
- "2014-08-23",
- "2014-08-24",
- "2014-08-25",
- "2014-08-26",
- "2014-08-27",
- "2014-08-28",
- "2014-08-29",
- "2014-08-30",
- "2014-08-31",
- "2014-09-01",
- "2014-09-02",
- "2014-09-03",
- "2014-09-04",
- "2014-09-05",
- "2014-09-06",
- "2014-09-07",
- "2014-09-08",
- "2014-09-09",
- "2014-09-10",
- "2014-09-11",
- "2014-09-12",
- "2014-09-13",
- "2014-09-14",
- "2014-09-15",
- "2014-09-16",
- "2014-09-17",
- "2014-09-18",
- "2014-09-19",
- "2014-09-20",
- "2014-09-21",
- "2014-09-22",
- "2014-09-23",
- "2014-09-25",
- "2014-09-26",
- "2014-09-27",
- "2014-09-28",
- "2014-09-29",
- "2014-09-30",
- "2014-10-01",
- "2014-10-02",
- "2014-10-03",
- "2014-10-04",
- "2014-10-05",
- "2014-10-06",
- "2014-10-07",
- "2014-10-08",
- "2014-10-09",
- "2014-10-10",
- "2014-10-11",
- "2014-10-12",
- "2014-10-13",
- "2014-10-14",
- "2014-10-15",
- "2014-10-17",
- "2014-10-20",
- "2014-10-21",
- "2014-10-25",
- "2014-10-27",
- "2014-10-29",
- "2014-10-30",
- "2014-10-31",
- "2014-11-02",
- "2014-11-03",
- "2014-11-07",
- "2014-11-08",
- "2014-11-09",
- "2014-11-11",
- "2014-11-12",
- "2014-11-14",
- "2014-11-17",
- "2014-11-21",
- "2014-11-22",
- "2014-11-23",
- "2014-11-25",
- "2014-11-26",
- "2014-11-27",
- "2014-11-28",
- "2014-11-30",
- "2014-12-01",
- "2014-12-03",
- "2014-12-04",
- "2014-12-06",
- "2014-12-07",
- "2014-12-08",
- "2014-12-09",
- "2014-12-11",
- "2014-12-12",
- "2014-12-13",
- "2014-12-14",
- "2014-12-15",
- "2014-12-16",
- "2014-12-17",
- "2014-12-19",
- "2014-12-20",
- "2014-12-22",
- "2014-12-23",
- "2014-12-24",
- "2014-12-25",
- "2014-12-26",
- "2014-12-27",
- "2014-12-30",
- "2014-12-31",
- "2015-01-01",
- "2015-01-02",
- "2015-01-03",
- "2015-01-04",
- "2015-01-05",
- "2015-01-07",
- "2015-01-08",
- "2015-01-09",
- "2015-01-13",
- "2015-01-14",
- "2015-01-16",
- "2015-01-17",
- "2015-01-18",
- "2015-01-19",
- "2015-01-22",
- "2015-01-23",
- "2015-01-25",
- "2015-01-27",
- "2015-01-29",
- "2015-01-30",
- "2015-02-02",
- "2015-02-03",
- "2015-02-07",
- "2015-02-08",
- "2015-02-09",
- "2015-02-10",
- "2015-02-11",
- "2015-02-14",
- "2015-02-19",
- "2015-02-20",
- "2015-02-22",
- "2015-02-24",
- "2015-02-25",
- "2015-02-26",
- "2015-02-28",
- "2015-03-02",
- "2015-03-03",
- "2015-03-04",
- "2015-03-05",
- "2015-03-06",
- "2015-03-08",
- "2015-03-09",
- "2015-03-10",
- "2015-03-11",
- "2015-03-12",
- "2015-03-13",
- "2015-03-14",
- "2015-03-15",
- "2015-03-16",
- "2015-03-17",
- "2015-03-18",
- "2015-03-19",
- "2015-03-21",
- "2015-03-24",
- "2015-03-27",
- "2015-03-28",
- "2015-03-31",
- "2015-04-01",
- "2015-04-02",
- "2015-04-03",
- "2015-04-04",
- "2015-04-05",
- "2015-04-06",
- "2015-04-07",
- "2015-04-08",
- "2015-04-09",
- "2015-04-10",
- "2015-04-11",
- "2015-04-12",
- "2015-04-13",
- "2015-04-16",
- "2015-04-17",
- "2015-04-18",
- "2015-04-19",
- "2015-04-20",
- "2015-04-21",
- "2015-04-22",
- "2015-04-23",
- "2015-04-24",
- "2015-04-25",
- "2015-04-26",
- "2015-04-27",
- "2015-04-28",
- "2015-04-29",
- "2015-05-01",
- "2015-05-02",
- "2015-05-03",
- "2015-05-06",
- "2015-05-07",
- "2015-05-08",
- "2015-05-09",
- "2015-05-10",
- "2015-05-11",
- "2015-05-13",
- "2015-05-14",
- "2015-05-15",
- "2015-05-16",
- "2015-05-17",
- "2015-05-18",
- "2015-05-19",
- "2015-05-20",
- "2015-05-21",
- "2015-05-22",
- "2015-05-23",
- "2015-05-24",
- "2015-05-25",
- "2015-05-26",
- "2015-05-27",
- "2015-05-28",
- "2015-05-29",
- "2015-05-30",
- "2015-05-31",
- "2015-06-01",
- "2015-06-02",
- "2015-06-03",
- "2015-06-04",
- "2015-06-05",
- "2015-06-06",
- "2015-06-07",
- "2015-06-08",
- "2015-06-09",
- "2015-06-10",
- "2015-06-11",
- "2015-06-12",
- "2015-06-13",
- "2015-06-14",
- "2015-06-15",
- "2015-06-16",
- "2015-06-17",
- "2015-06-18",
- "2015-06-19",
- "2015-06-20",
- "2015-06-21",
- "2015-06-22",
- "2015-06-23",
- "2015-06-24",
- "2015-06-25",
- "2015-06-26",
- "2015-06-27",
- "2015-06-28",
- "2015-06-29",
- "2015-06-30",
- "2015-07-01",
- "2015-07-02",
- "2015-07-03",
- "2015-07-04",
- "2015-07-05",
- "2015-07-06",
- "2015-07-07",
- "2015-07-08",
- "2015-07-10",
- "2015-07-11",
- "2015-07-12",
- "2015-07-13",
- "2015-07-14",
- "2015-07-15",
- "2015-07-16",
- "2015-07-17",
- "2015-07-18",
- "2015-07-19",
- "2015-07-20",
- "2015-07-21",
- "2015-07-22",
- "2015-07-23",
- "2015-07-24",
- "2015-07-25",
- "2015-07-26",
- "2015-07-27",
- "2015-07-28",
- "2015-07-29",
- "2015-07-30",
- "2015-07-31",
- "2015-08-01",
- "2015-08-02",
- "2015-08-03",
- "2015-08-04",
- "2015-08-05",
- "2015-08-06",
- "2015-08-07",
- "2015-08-08",
- "2015-08-09",
- "2015-08-10",
- "2015-08-11",
- "2015-08-12",
- "2015-08-13",
- "2015-08-14",
- "2015-08-15",
- "2015-08-16",
- "2015-08-17",
- "2015-08-18",
- "2015-08-19",
- "2015-08-20",
- "2015-08-21",
- "2015-08-22",
- "2015-08-23",
- "2015-08-24",
- "2015-08-25",
- "2015-08-26",
- "2015-08-28",
- "2015-08-29",
- "2015-08-30",
- "2015-09-02",
- "2015-09-03",
- "2015-09-04",
- "2015-09-05",
- "2015-09-06",
- "2015-09-07",
- "2015-09-08",
- "2015-09-09",
- "2015-09-10",
- "2015-09-11",
- "2015-09-12",
- "2015-09-13",
- "2015-09-14",
- "2015-09-16",
- "2015-09-17",
- "2015-09-18",
- "2015-09-19",
- "2015-09-20",
- "2015-09-21",
- "2015-09-23",
- "2015-09-24",
- "2015-09-25",
- "2015-09-26",
- "2015-09-27",
- "2015-09-28",
- "2015-09-29",
- "2015-09-30",
- "2015-10-01",
- "2015-10-02",
- "2015-10-03",
- "2015-10-04",
- "2015-10-05",
- "2015-10-06",
- "2015-10-07",
- "2015-10-08",
- "2015-10-09",
- "2015-10-10",
- "2015-10-12",
- "2015-10-14",
- "2015-10-15",
- "2015-10-16",
- "2015-10-17",
- "2015-10-18",
- "2015-10-19",
- "2015-10-20",
- "2015-10-21",
- "2015-10-22",
- "2015-10-23",
- "2015-10-25",
- "2015-10-26",
- "2015-10-27",
- "2015-10-28",
- "2015-10-29",
- "2015-10-30",
- "2015-10-31",
- "2015-11-02",
- "2015-11-03",
- "2015-11-04",
- "2015-11-06",
- "2015-11-07",
- "2015-11-08",
- "2015-11-09",
- "2015-11-10",
- "2015-11-11",
- "2015-11-12",
- "2015-11-14",
- "2015-11-15",
- "2015-11-17",
- "2015-11-18",
- "2015-11-19",
- "2015-11-20",
- "2015-11-21",
- "2015-11-22",
- "2015-11-23",
- "2015-11-24",
- "2015-11-25",
- "2015-11-26",
- "2015-11-27",
- "2015-11-29",
- "2015-11-30",
- "2015-12-01",
- "2015-12-02",
- "2015-12-03",
- "2015-12-04",
- "2015-12-06",
- "2015-12-07",
- "2015-12-09",
- "2015-12-10",
- "2015-12-11",
- "2015-12-12",
- "2015-12-13",
- "2015-12-14",
- "2015-12-15",
- "2015-12-16",
- "2015-12-18",
- "2015-12-19",
- "2015-12-20",
- "2015-12-21",
- "2015-12-22",
- "2015-12-23",
- "2015-12-24",
- "2015-12-25",
- "2015-12-26",
- "2015-12-27",
- "2015-12-28",
- "2015-12-29",
- "2016-01-03",
- "2016-01-04",
- "2016-01-05",
- "2016-01-06",
- "2016-01-07",
- "2016-01-13",
- "2016-01-14",
- "2016-01-15",
- "2016-01-16",
- "2016-01-17",
- "2016-01-18",
- "2016-01-19",
- "2016-01-20",
- "2016-01-21",
- "2016-01-22",
- "2016-01-26",
- "2016-01-27",
- "2016-01-28",
- "2016-01-31",
- "2016-02-01",
- "2016-02-02",
- "2016-02-03",
- "2016-02-04",
- "2016-02-05",
- "2016-02-08",
- "2016-02-09",
- "2016-02-11",
- "2016-02-12",
- "2016-02-13",
- "2016-02-14",
- "2016-02-15",
- "2016-02-16",
- "2016-02-18",
- "2016-02-21",
- "2016-02-22",
- "2016-02-24",
- "2016-02-25",
- "2016-02-26",
- "2016-02-27",
- "2016-02-28",
- "2016-02-29",
- "2016-03-05",
- "2016-03-09",
- "2016-03-10",
- "2016-03-11",
- "2016-03-15",
- "2016-03-16",
- "2016-03-17",
- "2016-03-18",
- "2016-03-19",
- "2016-03-20",
- "2016-03-21",
- "2016-03-22",
- "2016-03-23",
- "2016-03-24",
- "2016-03-26",
- "2016-03-27",
- "2016-03-28",
- "2016-03-29",
- "2016-03-30",
- "2016-03-31",
- "2016-04-01",
- "2016-04-04",
- "2016-04-08",
- "2016-04-09",
- "2016-04-10",
- "2016-04-11",
- "2016-04-12",
- "2016-04-13",
- "2016-04-14",
- "2016-04-15",
- "2016-04-16",
- "2016-04-17",
- "2016-04-18",
- "2016-04-19",
- "2016-04-20",
- "2016-04-21",
- "2016-04-22",
- "2016-04-23",
- "2016-04-24",
- "2016-04-25",
- "2016-04-26",
- "2016-04-27",
- "2016-04-29",
- "2016-05-01",
- "2016-05-02",
- "2016-05-03",
- "2016-05-04",
- "2016-05-05",
- "2016-05-06",
- "2016-05-07",
- "2016-05-08",
- "2016-05-09",
- "2016-05-10",
- "2016-05-11",
- "2016-05-12",
- "2016-05-13",
- "2016-05-15",
- "2016-05-17",
- "2016-05-18",
- "2016-05-19",
- "2016-05-20",
- "2016-05-21",
- "2016-05-22",
- "2016-05-23",
- "2016-05-24",
- "2016-05-25",
- "2016-05-26",
- "2016-05-27",
- "2016-05-28",
- "2016-05-29",
- "2016-05-30",
- "2016-05-31",
- "2016-06-01",
- "2016-06-02",
- "2016-06-03",
- "2016-06-04",
- "2016-06-05",
- "2016-06-06",
- "2016-06-07",
- "2016-06-08",
- "2016-06-09",
- "2016-06-10",
- "2016-06-11",
- "2016-06-12",
- "2016-06-13",
- "2016-06-15",
- "2016-06-16",
- "2016-06-17",
- "2016-06-18",
- "2016-06-20",
- "2016-06-22",
- "2016-06-23",
- "2016-06-24",
- "2016-06-25",
- "2016-06-26",
- "2016-06-27",
- "2016-06-28",
- "2016-06-29",
- "2016-07-01",
- "2016-07-03",
- "2016-07-04",
- "2016-07-05",
- "2016-07-06",
- "2016-07-07",
- "2016-07-08",
- "2016-07-09",
- "2016-07-10",
- "2016-07-11",
- "2016-07-12",
- "2016-07-13",
- "2016-07-14",
- "2016-07-15",
- "2016-07-16",
- "2016-07-17",
- "2016-07-18",
- "2016-07-19",
- "2016-07-20",
- "2016-07-21",
- "2016-07-22",
- "2016-07-23",
- "2016-07-24",
- "2016-07-27",
- "2016-07-28",
- "2016-07-29",
- "2016-07-30",
- "2016-07-31",
- "2016-08-01",
- "2016-08-02",
- "2016-08-03",
- "2016-08-04",
- "2016-08-05",
- "2016-08-06",
- "2016-08-07",
- "2016-08-08",
- "2016-08-09",
- "2016-08-10",
- "2016-08-11",
- "2016-08-12",
- "2016-08-13",
- "2016-08-14",
- "2016-08-15",
- "2016-08-16",
- "2016-08-17",
- "2016-08-18",
- "2016-08-19",
- "2016-08-20",
- "2016-08-21",
- "2016-08-22",
- "2016-08-23",
- "2016-08-24",
- "2016-08-25",
- "2016-08-26",
- "2016-08-27",
- "2016-08-30",
- "2016-08-31",
- "2016-09-02",
- "2016-09-03",
- "2016-09-04",
- "2016-09-05",
- "2016-09-06",
- "2016-09-07",
- "2016-09-08",
- "2016-09-09",
- "2016-09-10",
- "2016-09-11",
- "2016-09-12",
- "2016-09-13",
- "2016-09-14",
- "2016-09-15",
- "2016-09-16",
- "2016-09-17",
- "2016-09-18",
- "2016-09-19",
- "2016-09-20",
- "2016-09-21",
- "2016-09-23",
- "2016-09-24",
- "2016-09-25",
- "2016-09-26",
- "2016-09-27",
- "2016-09-28",
- "2016-10-01",
- "2016-10-02",
- "2016-10-03",
- "2016-10-04",
- "2016-10-05",
- "2016-10-07",
- "2016-10-08",
- "2016-10-09",
- "2016-10-10",
- "2016-10-15",
- "2016-10-16",
- "2016-10-18",
- "2016-10-19",
- "2016-10-25",
- "2016-10-26",
- "2016-10-27",
- "2016-10-28",
- "2016-10-29",
- "2016-10-30",
- "2016-11-01",
- "2016-11-02",
- "2016-11-03",
- "2016-11-04",
- "2016-11-07",
- "2016-11-08",
- "2016-11-09",
- "2016-11-10",
- "2016-11-11",
- "2016-11-12",
- "2016-11-13",
- "2016-11-14",
- "2016-11-16",
- "2016-11-17",
- "2016-11-18",
- "2016-11-19",
- "2016-11-20",
- "2016-11-21",
- "2016-11-23",
- "2016-11-24",
- "2016-11-26",
- "2016-11-27",
- "2016-11-28",
- "2016-11-30",
- "2016-12-01",
- "2016-12-02",
- "2016-12-03",
- "2016-12-04",
- "2016-12-05",
- "2016-12-06",
- "2016-12-08",
- "2016-12-09",
- "2016-12-10",
- "2016-12-11",
- "2016-12-12",
- "2016-12-13",
- "2016-12-14",
- "2016-12-15",
- "2016-12-17",
- "2016-12-18",
- "2016-12-19",
- "2016-12-20",
- "2016-12-22",
- "2016-12-23",
- "2016-12-24",
- "2016-12-25",
- "2016-12-26",
- "2016-12-27",
- "2016-12-28",
- "2016-12-31",
- "2017-01-01",
- "2017-01-02",
- "2017-01-04",
- "2017-01-05",
- "2017-01-06",
- "2017-01-07",
- "2017-01-08",
- "2017-01-09",
- "2017-01-12",
- "2017-01-13",
- "2017-01-14",
- "2017-01-15",
- "2017-01-16",
- "2017-01-18",
- "2017-01-19",
- "2017-01-20",
- "2017-01-21",
- "2017-01-24",
- "2017-01-26",
- "2017-01-30",
- "2017-01-31",
- "2017-02-02",
- "2017-02-07",
- "2017-02-08",
- "2017-02-11",
- "2017-02-12",
- "2017-02-13",
- "2017-02-14",
- "2017-02-15",
- "2017-02-17",
- "2017-02-21",
- "2017-02-22",
- "2017-02-23",
- "2017-02-24",
- "2017-02-25",
- "2017-02-27",
- "2017-02-28",
- "2017-03-01",
- "2017-03-02",
- "2017-03-03",
- "2017-03-06",
- "2017-03-07",
- "2017-03-08",
- "2017-03-10",
- "2017-03-11",
- "2017-03-15",
- "2017-03-18",
- "2017-03-19",
- "2017-03-20",
- "2017-03-21",
- "2017-03-22",
- "2017-03-23",
- "2017-03-24",
- "2017-03-26",
- "2017-03-27",
- "2017-03-28",
- "2017-04-01",
- "2017-04-02",
- "2017-04-04",
- "2017-04-05",
- "2017-04-07",
- "2017-04-08",
- "2017-04-09",
- "2017-04-10",
- "2017-04-11",
- "2017-04-12",
- "2017-04-13",
- "2017-04-14",
- "2017-04-15",
- "2017-04-16",
- "2017-04-17",
- "2017-04-18",
- "2017-04-19",
- "2017-04-21",
- "2017-04-22",
- "2017-04-23",
- "2017-04-25",
- "2017-04-26",
- "2017-04-27",
- "2017-04-29",
- "2017-04-30",
- "2017-05-01",
- "2017-05-02",
- "2017-05-03",
- "2017-05-04",
- "2017-05-06",
- "2017-05-07",
- "2017-05-08",
- "2017-05-09",
- "2017-05-10",
- "2017-05-12",
- "2017-05-13",
- "2017-05-15",
- "2017-05-16",
- "2017-05-18",
- "2017-05-19",
- "2017-05-20",
- "2017-05-21",
- "2017-05-23",
- "2017-05-24",
- "2017-05-25",
- "2017-05-26",
- "2017-05-27",
- "2017-05-28",
- "2017-05-29",
- "2017-05-31",
- "2017-06-01",
- "2017-06-02",
- "2017-06-05",
- "2017-06-06",
- "2017-06-08",
- "2017-06-10",
- "2017-06-12",
- "2017-06-13",
- "2017-06-14",
- "2017-06-15",
- "2017-06-17",
- "2017-06-18",
- "2017-06-19",
- "2017-06-20",
- "2017-06-21",
- "2017-06-22",
- "2017-06-23",
- "2017-06-24",
- "2017-06-25",
- "2017-06-26",
- "2017-06-27",
- "2017-06-28",
- "2017-06-29",
- "2017-06-30",
- "2017-07-01",
- "2017-07-02",
- "2017-07-03",
- "2017-07-04",
- "2017-07-05",
- "2017-07-06",
- "2017-07-07",
- "2017-07-08",
- "2017-07-09",
- "2017-07-10",
- "2017-07-11",
- "2017-07-12",
- "2017-07-13",
- "2017-07-14",
- "2017-07-15",
- "2017-07-17",
- "2017-07-18",
- "2017-07-19",
- "2017-07-20",
- "2017-07-21",
- "2017-07-22",
- "2017-07-23",
- "2017-07-24",
- "2017-07-26",
- "2017-07-27",
- "2017-07-28",
- "2017-07-29",
- "2017-07-30",
- "2017-07-31",
- "2017-08-01",
- "2017-08-02",
- "2017-08-03",
- "2017-08-04",
- "2017-08-05",
- "2017-08-07",
- "2017-08-08",
- "2017-08-10",
- "2017-08-11",
- "2017-08-12",
- "2017-08-13",
- "2017-08-14",
- "2017-08-15",
- "2017-08-16",
- "2017-08-17",
- "2017-08-18",
- "2017-08-19",
- "2017-08-20",
- "2017-08-21",
- "2017-08-22",
- "2017-08-23",
- "2017-08-24",
- "2017-08-25",
- "2017-08-26",
- "2017-08-27",
- "2017-08-28",
- "2017-08-29",
- "2017-08-30",
- "2017-09-01",
- "2017-09-02",
- "2017-09-03",
- "2017-09-07",
- "2017-09-08",
- "2017-09-09",
- "2017-09-10",
- "2017-09-12",
- "2017-09-13",
- "2017-09-14",
- "2017-09-15",
- "2017-09-16",
- "2017-09-17",
- "2017-09-18",
- "2017-09-20",
- "2017-09-21",
- "2017-09-22",
- "2017-09-26",
- "2017-09-27",
- "2017-09-28",
- "2017-09-30",
- "2017-10-01",
- "2017-10-03",
- "2017-10-04",
- "2017-10-05",
- "2017-10-06",
- "2017-10-08",
- "2017-10-09",
- "2017-10-10",
- "2017-10-11",
- "2017-10-12",
- "2017-10-13",
- "2017-10-14",
- "2017-10-16",
- "2017-10-17",
- "2017-10-18",
- "2017-10-19",
- "2017-10-20",
- "2017-10-21",
- "2017-10-23",
- "2017-10-26",
- "2017-10-27",
- "2017-10-28",
- "2017-10-29",
- "2017-10-30",
- "2017-10-31",
- "2017-11-01",
- "2017-11-02",
- "2017-11-03",
- "2017-11-04",
- "2017-11-05",
- "2017-11-06",
- "2017-11-07",
- "2017-11-08",
- "2017-11-09",
- "2017-11-10",
- "2017-11-11",
- "2017-11-12",
- "2017-11-13",
- "2017-11-15",
- "2017-11-16",
- "2017-11-17",
- "2017-11-18",
- "2017-11-19",
- "2017-11-20",
- "2017-11-21",
- "2017-11-23",
- "2017-11-24",
- "2017-11-25",
- "2017-11-26",
- "2017-11-27",
- "2017-11-29",
- "2017-12-01",
- "2017-12-02",
- "2017-12-03",
- "2017-12-04",
- "2017-12-05",
- "2017-12-08",
- "2017-12-09",
- "2017-12-10",
- "2017-12-11",
- "2017-12-12",
- "2017-12-14",
- "2017-12-15",
- "2017-12-17",
- "2017-12-19",
- "2017-12-21",
- "2017-12-22",
- "2017-12-27",
- "2017-12-28",
- "2017-12-29",
- "2017-12-31",
- "2018-01-02",
- "2018-01-05",
- "2018-01-06",
- "2018-01-07",
- "2018-01-08",
- "2018-01-10",
- "2018-01-11",
- "2018-01-12",
- "2018-01-17",
- "2018-01-18",
- "2018-01-19",
- "2018-01-20",
- "2018-01-21",
- "2018-01-22",
- "2018-01-24",
- "2018-01-25",
- "2018-01-26",
- "2018-01-27",
- "2018-01-28",
- "2018-01-30",
- "2018-02-01",
- "2018-02-02",
- "2018-02-04",
- "2018-02-05",
- "2018-02-08",
- "2018-02-09",
- "2018-02-10",
- "2018-02-11",
- "2018-02-13",
- "2018-02-14",
- "2018-02-16",
- "2018-02-17",
- "2018-02-18",
- "2018-02-19",
- "2018-02-20",
- "2018-02-24",
- "2018-02-25",
- "2018-02-26",
- "2018-02-27",
- "2018-02-28",
- "2018-03-01",
- "2018-03-09",
- "2018-03-10",
- "2018-03-14",
- "2018-03-15",
- "2018-03-16",
- "2018-03-17",
- "2018-03-18",
- "2018-03-19",
- "2018-03-20",
- "2018-03-21",
- "2018-03-23",
- "2018-03-25",
- "2018-03-27",
- "2018-03-28",
- "2018-03-29",
- "2018-03-30",
- "2018-03-31",
- "2018-04-01",
- "2018-04-02",
- "2018-04-03",
- "2018-04-06",
- "2018-04-10",
- "2018-04-11",
- "2018-04-12",
- "2018-04-13",
- "2018-04-14",
- "2018-04-15",
- "2018-04-17",
- "2018-04-18",
- "2018-04-19",
- "2018-04-20",
- "2018-04-21",
- "2018-04-22",
- "2018-04-25",
- "2018-04-26",
- "2018-04-27",
- "2018-04-28",
- "2018-04-29",
- "2018-05-02",
- "2018-05-04",
- "2018-05-05",
- "2018-05-06",
- "2018-05-07",
- "2018-05-08",
- "2018-05-09",
- "2018-05-10",
- "2018-05-11",
- "2018-05-12",
- "2018-05-13",
- "2018-05-14",
- "2018-05-15",
- "2018-05-16",
- "2018-05-17",
- "2018-05-18",
- "2018-05-19",
- "2018-05-20",
- "2018-05-21",
- "2018-05-22",
- "2018-05-23",
- "2018-05-24",
- "2018-05-25",
- "2018-05-26",
- "2018-05-27",
- "2018-05-28",
- "2018-05-29",
- "2018-05-30",
- "2018-05-31",
- "2018-06-01",
- "2018-06-02",
- "2018-06-03",
- "2018-06-05",
- "2018-06-07",
- "2018-06-08",
- "2018-06-09",
- "2018-06-10",
- "2018-06-11",
- "2018-06-12",
- "2018-06-13",
- "2018-06-15",
- "2018-06-16",
- "2018-06-21",
- "2018-06-22",
- "2018-06-23",
- "2018-06-24",
- "2018-06-25",
- "2018-06-26",
- "2018-06-27",
- "2018-06-28",
- "2018-06-29",
- "2018-06-30",
- "2018-07-01",
- "2018-07-02",
- "2018-07-03",
- "2018-07-04",
- "2018-07-05",
- "2018-07-06",
- "2018-07-07",
- "2018-07-08",
- "2018-07-09",
- "2018-07-10",
- "2018-07-11",
- "2018-07-12",
- "2018-07-13",
- "2018-07-14",
- "2018-07-15",
- "2018-07-16",
- "2018-07-17",
- "2018-07-19",
- "2018-07-20",
- "2018-07-21",
- "2018-07-22",
- "2018-07-23",
- "2018-07-24",
- "2018-07-25",
- "2018-07-26",
- "2018-07-27",
- "2018-07-28",
- "2018-07-29",
- "2018-07-30",
- "2018-07-31",
- "2018-08-01",
- "2018-08-02",
- "2018-08-03",
- "2018-08-04",
- "2018-08-05",
- "2018-08-06",
- "2018-08-07",
- "2018-08-08",
- "2018-08-09",
- "2018-08-10",
- "2018-08-11",
- "2018-08-12",
- "2018-08-13",
- "2018-08-15",
- "2018-08-16",
- "2018-08-17",
- "2018-08-18",
- "2018-08-19",
- "2018-08-20",
- "2018-08-21",
- "2018-08-22",
- "2018-08-24",
- "2018-08-25",
- "2018-08-26",
- "2018-08-27",
- "2018-08-29",
- "2018-08-30",
- "2018-09-01",
- "2018-09-02",
- "2018-09-03",
- "2018-09-04",
- "2018-09-06",
- "2018-09-07",
- "2018-09-08",
- "2018-09-09",
- "2018-09-10",
- "2018-09-12",
- "2018-09-13",
- "2018-09-14",
- "2018-09-15",
- "2018-09-16",
- "2018-09-17",
- "2018-09-18",
- "2018-09-20",
- "2018-09-21",
- "2018-09-22",
- "2018-09-23",
- "2018-09-24",
- "2018-09-25",
- "2018-09-26",
- "2018-09-28",
- "2018-09-29",
- "2018-09-30",
- "2018-10-01",
- "2018-10-03",
- "2018-10-04",
- "2018-10-05",
- "2018-10-06",
- "2018-10-07",
- "2018-10-09",
- "2018-10-10",
- "2018-10-11",
- "2018-10-12",
- "2018-10-13",
- "2018-10-14",
- "2018-10-15",
- "2018-10-16",
- "2018-10-18",
- "2018-10-19",
- "2018-10-20",
- "2018-10-22",
- "2018-10-23",
- "2018-10-24",
- "2018-10-25",
- "2018-10-26",
- "2018-10-27",
- "2018-10-28",
- "2018-10-29",
- "2018-10-31",
- "2018-11-01",
- "2018-11-02",
- "2018-11-03",
- "2018-11-04",
- "2018-11-06",
- "2018-11-08",
- "2018-11-09",
- "2018-11-10",
- "2018-11-12",
- "2018-11-13",
- "2018-11-14",
- "2018-11-15",
- "2018-11-16",
- "2018-11-17",
- "2018-11-18",
- "2018-11-19",
- "2018-11-20",
- "2018-11-21",
- "2018-11-24",
- "2018-11-25",
- "2018-11-26",
- "2018-11-27",
- "2018-11-28",
- "2018-12-01",
- "2018-12-03",
- "2018-12-04",
- "2018-12-05",
- "2018-12-06",
- "2018-12-09",
- "2018-12-10",
- "2018-12-11",
- "2018-12-12",
- "2018-12-13",
- "2018-12-14",
- "2018-12-17",
- "2018-12-18",
- "2018-12-23",
- "2018-12-24",
- "2018-12-28",
- "2018-12-30",
- "2019-01-01",
- "2019-01-02",
- "2019-01-03",
- "2019-01-04",
- "2019-01-05",
- "2019-01-06",
- "2019-01-09",
- "2019-01-11",
- "2019-01-12",
- "2019-01-14",
- "2019-01-17",
- "2019-01-18",
- "2019-01-19",
- "2019-01-20",
- "2019-01-21",
- "2019-01-22",
- "2019-01-23",
- "2019-01-25",
- "2019-01-26",
- "2019-01-29",
- "2019-01-30",
- "2019-02-03",
- "2019-02-04",
- "2019-02-05",
- "2019-02-08",
- "2019-02-10",
- "2019-02-11",
- "2019-02-12",
- "2019-02-13",
- "2019-02-16",
- "2019-02-18",
- "2019-02-19",
- "2019-02-20",
- "2019-02-22",
- "2019-02-24",
- "2019-02-26",
- "2019-02-27",
- "2019-02-28",
- "2019-03-01",
- "2019-03-02",
- "2019-03-03",
- "2019-03-09",
- "2019-03-10",
- "2019-03-11",
- "2019-03-12",
- "2019-03-13",
- "2019-03-14",
- "2019-03-16",
- "2019-03-17",
- "2019-03-18",
- "2019-03-19",
- "2019-03-20",
- "2019-03-22",
- "2019-03-23",
- "2019-03-24",
- "2019-03-25",
- "2019-03-26",
- "2019-03-27",
- "2019-03-28",
- "2019-03-29",
- "2019-03-30",
- "2019-03-31",
- "2019-04-01",
- "2019-04-02",
- "2019-04-03",
- "2019-04-04",
- "2019-04-05",
- "2019-04-06",
- "2019-04-07",
- "2019-04-08",
- "2019-04-09",
- "2019-04-10",
- "2019-04-11",
- "2019-04-12",
- "2019-04-13",
- "2019-04-14",
- "2019-04-15",
- "2019-04-16",
- "2019-04-17",
- "2019-04-18",
- "2019-04-19",
- "2019-04-20",
- "2019-04-21",
- "2019-04-22",
- "2019-04-23",
- "2019-04-24",
- "2019-04-25",
- "2019-04-26",
- "2019-04-27",
- "2019-04-28",
- "2019-04-29",
- "2019-04-30",
- "2019-05-01",
- "2019-05-02",
- "2019-05-03",
- "2019-05-04",
- "2019-05-05",
- "2019-05-06",
- "2019-05-07",
- "2019-05-08",
- "2019-05-10",
- "2019-05-11",
- "2019-05-13",
- "2019-05-14",
- "2019-05-15",
- "2019-05-16",
- "2019-05-17",
- "2019-05-19",
- "2019-05-20",
- "2019-05-21",
- "2019-05-22",
- "2019-05-23",
- "2019-05-24",
- "2019-05-25",
- "2019-05-28",
- "2019-05-29",
- "2019-05-31",
- "2019-06-02",
- "2019-06-03",
- "2019-06-04",
- "2019-06-05",
- "2019-06-06",
- "2019-06-07",
- "2019-06-08",
- "2019-06-09",
- "2019-06-10",
- "2019-06-14",
- "2019-06-15",
- "2019-06-16",
- "2019-06-17",
- "2019-06-19",
- "2019-06-20",
- "2019-06-21",
- "2019-06-22",
- "2019-06-23",
- "2019-06-24",
- "2019-06-25",
- "2019-06-26",
- "2019-06-27",
- "2019-06-28",
- "2019-06-29",
- "2019-06-30",
- "2019-07-01",
- "2019-07-02",
- "2019-07-03",
- "2019-07-04",
- "2019-07-05",
- "2019-07-06",
- "2019-07-07",
- "2019-07-08",
- "2019-07-09",
- "2019-07-10",
- "2019-07-11",
- "2019-07-12",
- "2019-07-13",
- "2019-07-14",
- "2019-07-15",
- "2019-07-16",
- "2019-07-17",
- "2019-07-18",
- "2019-07-19",
- "2019-07-20",
- "2019-07-21",
- "2019-07-22",
- "2019-07-23",
- "2019-07-24",
- "2019-07-25",
- "2019-07-26",
- "2019-07-27",
- "2019-07-28",
- "2019-07-29",
- "2019-07-30",
- "2019-07-31",
- "2019-08-01",
- "2019-08-02",
- "2019-08-03",
- "2019-08-04",
- "2019-08-05",
- "2019-08-06",
- "2019-08-07",
- "2019-08-08",
- "2019-08-09",
- "2019-08-11",
- "2019-08-12",
- "2019-08-13",
- "2019-08-14",
- "2019-08-15",
- "2019-08-16",
- "2019-08-18",
- "2019-08-19",
- "2019-08-20",
- "2019-08-21",
- "2019-08-22",
- "2019-08-24",
- "2019-08-25",
- "2019-08-26",
- "2019-08-27",
- "2019-08-29",
- "2019-08-31",
- "2019-09-01",
- "2019-09-02",
- "2019-09-03",
- "2019-09-05",
- "2019-09-06",
- "2019-09-07",
- "2019-09-08",
- "2019-09-10",
- "2019-09-11",
- "2019-09-12",
- "2019-09-13",
- "2019-09-14",
- "2019-09-15",
- "2019-09-16",
- "2019-09-17",
- "2019-09-18",
- "2019-09-19",
- "2019-09-20",
- "2019-09-21",
- "2019-09-22",
- "2019-09-23",
- "2019-09-24",
- "2019-09-25",
- "2019-09-26",
- "2019-09-29",
- "2019-10-01",
- "2019-10-03",
- "2019-10-04",
- "2019-10-05",
- "2019-10-06",
- "2019-10-07",
- "2019-10-09",
- "2019-10-10",
- "2019-10-11",
- "2019-10-12",
- "2019-10-13",
- "2019-10-14",
- "2019-10-17",
- "2019-10-18",
- "2019-10-19",
- "2019-10-20",
- "2019-10-21",
- "2019-10-22",
- "2019-10-23",
- "2019-10-24",
- "2019-10-25",
- "2019-10-27",
- "2019-10-28",
- "2019-10-29",
- "2019-10-31",
- "2019-11-01",
- "2019-11-03",
- "2019-11-04",
- "2019-11-05",
- "2019-11-06",
- "2019-11-07",
- "2019-11-09",
- "2019-11-10",
- "2019-11-11",
- "2019-11-13",
- "2019-11-14",
- "2019-11-19",
- "2019-11-20",
- "2019-11-23",
- "2019-11-27",
- "2019-11-29",
- "2019-11-30",
- "2019-12-02",
- "2019-12-04",
- "2019-12-05",
- "2019-12-06",
- "2019-12-07",
- "2019-12-09",
- "2019-12-10",
- "2019-12-11",
- "2019-12-15",
- "2019-12-17",
- "2019-12-18",
- "2019-12-20",
- "2019-12-22",
- "2019-12-24",
- "2019-12-25",
- "2019-12-26",
- "2019-12-27",
- "2019-12-30",
- "2019-12-31",
- "2020-01-02",
- "2020-01-03",
- "2020-01-04",
- "2020-01-06",
- "2020-01-07",
- "2020-01-08",
- "2020-01-10",
- "2020-01-12",
- "2020-01-13",
- "2020-01-16",
- "2020-01-17",
- "2020-01-18",
- "2020-01-19",
- "2020-01-20",
- "2020-01-21",
- "2020-01-22",
- "2020-01-23",
- "2020-01-24",
- "2020-01-29",
- "2020-01-30",
- "2020-02-01",
- "2020-02-02",
- "2020-02-05",
- "2020-02-06",
- "2020-02-07",
- "2020-02-10",
- "2020-02-11",
- "2020-02-12",
- "2020-02-13",
- "2020-02-14",
- "2020-02-15",
- "2020-02-17",
- "2020-02-18",
- "2020-02-19",
- "2020-02-21",
- "2020-02-22",
- "2020-02-23",
- "2020-02-24",
- "2020-02-25",
- "2020-02-26",
- "2020-02-27",
- "2020-02-28",
- "2020-03-02",
- "2020-03-05",
- "2020-03-06",
- "2020-03-07",
- "2020-03-09",
- "2020-03-10",
- "2020-03-11",
- "2020-03-14",
- "2020-03-16",
- "2020-03-17",
- "2020-03-18",
- "2020-03-19",
- "2020-03-20",
- "2020-03-21",
- "2020-03-22",
- "2020-03-23",
- "2020-03-24",
- "2020-03-25",
- "2020-03-26",
- "2020-03-27",
- "2020-03-28",
- "2020-03-29",
- "2020-03-30",
- "2020-03-31",
- "2020-04-02",
- "2020-04-03",
- "2020-04-04",
- "2020-04-06",
- "2020-04-07",
- "2020-04-08",
- "2020-04-09",
- "2020-04-10",
- "2020-04-13",
- "2020-04-14",
- "2020-04-15",
- "2020-04-16",
- "2020-04-17",
- "2020-04-18",
- "2020-04-19",
- "2020-04-20",
- "2020-04-21",
- "2020-04-22",
- "2020-04-23",
- "2020-04-24",
- "2020-04-25",
- "2020-04-26",
- "2020-04-29",
- "2020-04-30",
- "2020-05-02",
- "2020-05-03",
- "2020-05-04",
- "2020-05-05",
- "2020-05-06",
- "2020-05-07",
- "2020-05-08",
- "2020-05-09",
- "2020-05-11",
- "2020-05-12",
- "2020-05-13",
- "2020-05-14",
- "2020-05-15",
- "2020-05-16",
- "2020-05-17",
- "2020-05-18",
- "2020-05-19",
- "2020-05-20",
- "2020-05-21",
- "2020-05-22",
- "2020-05-23",
- "2020-05-24",
- "2020-05-25",
- "2020-05-26",
- "2020-05-28",
- "2020-05-29",
- "2020-05-30",
- "2020-05-31",
- "2020-06-01",
- "2020-06-02",
- "2020-06-03",
- "2020-06-04",
- "2020-06-06",
- "2020-06-07",
- "2020-06-08",
- "2020-06-09",
- "2020-06-10",
- "2020-06-11",
- "2020-06-12",
- "2020-06-13",
- "2020-06-14",
- "2020-06-15",
- "2020-06-16",
- "2020-06-17",
- "2020-06-18",
- "2020-06-19",
- "2020-06-20",
- "2020-06-21",
- "2020-06-23",
- "2020-06-24",
- "2020-06-25",
- "2020-06-26",
- "2020-06-27",
- "2020-06-28",
- "2020-06-29",
- "2020-06-30",
- "2020-07-01",
- "2020-07-02",
- "2020-07-03",
- "2020-07-04",
- "2020-07-06",
- "2020-07-07",
- "2020-07-08",
- "2020-07-09",
- "2020-07-10",
- "2020-07-11",
- "2020-07-12",
- "2020-07-13",
- "2020-07-15",
- "2020-07-16",
- "2020-07-17",
- "2020-07-18",
- "2020-07-21",
- "2020-07-22",
- "2020-07-23",
- "2020-07-24",
- "2020-07-25",
- "2020-07-26",
- "2020-07-27",
- "2020-07-30",
- "2020-07-31",
- "2020-08-01",
- "2020-08-02",
- "2020-08-03",
- "2020-08-04",
- "2020-08-06",
- "2020-08-07",
- "2020-08-08",
- "2020-08-09",
- "2020-08-10",
- "2020-08-11",
- "2020-08-12",
- "2020-08-13",
- "2020-08-14",
- "2020-08-15",
- "2020-08-16",
- "2020-08-17",
- "2020-08-18",
- "2020-08-19",
- "2020-08-20",
- "2020-08-22",
- "2020-08-23",
- "2020-08-24",
- "2020-08-25",
- "2020-08-27",
- "2020-08-28",
- "2020-08-29",
- "2020-08-30",
- "2020-08-31",
- "2020-09-01",
- "2020-09-02",
- "2020-09-03",
- "2020-09-04",
- "2020-09-05",
- "2020-09-06",
- "2020-09-07",
- "2020-09-08",
- "2020-09-09",
- "2020-09-10",
- "2020-09-11",
- "2020-09-14",
- "2020-09-15",
- "2020-09-16",
- "2020-09-17",
- "2020-09-18",
- "2020-09-19",
- "2020-09-20",
- "2020-09-21",
- "2020-09-22",
- "2020-09-23",
- "2020-09-24",
- "2020-09-25",
- "2020-09-26",
- "2020-09-29",
- "2020-09-30",
- "2020-10-02",
- "2020-10-04",
- "2020-10-05",
- "2020-10-07",
- "2020-10-08",
- "2020-10-09",
- "2020-10-10",
- "2020-10-12",
- "2020-10-13",
- "2020-10-14",
- "2020-10-15",
- "2020-10-16",
- "2020-10-17",
- "2020-10-18",
- "2020-10-19",
- "2020-10-21",
- "2020-10-22",
- "2020-10-23",
- "2020-10-24",
- "2020-10-27",
- "2020-10-28",
- "2020-10-29",
- "2020-10-30",
- "2020-10-31",
- "2020-11-02",
- "2020-11-03",
- "2020-11-04",
- "2020-11-05",
- "2020-11-06",
- "2020-11-07",
- "2020-11-08",
- "2020-11-09",
- "2020-11-10",
- "2020-11-12",
- "2020-11-13",
- "2020-11-14",
- "2020-11-15",
- "2020-11-16",
- "2020-11-18",
- "2020-11-19",
- "2020-11-20",
- "2020-11-21",
- "2020-11-22",
- "2020-11-23",
- "2020-11-25",
- "2020-11-26",
- "2020-11-27",
- "2020-11-28",
- "2020-11-29",
- "2020-11-30",
- "2020-12-01",
- "2020-12-02",
- "2020-12-07",
- "2020-12-10",
- "2020-12-13",
- "2020-12-14",
- "2020-12-16",
- "2020-12-18",
- "2020-12-19",
- "2020-12-21",
- "2020-12-23",
- "2020-12-24",
- "2020-12-25",
- "2020-12-26",
- "2020-12-31"
- ],
- "LAKE_WATER_QUALITY_TURBIDITY_MEAN": [
- "2018-01-01",
- "2018-01-11",
- "2018-01-21",
- "2018-02-01",
- "2018-02-11",
- "2018-02-21",
- "2018-03-01",
- "2018-03-11",
- "2018-03-21",
- "2018-04-01",
- "2018-04-11",
- "2018-04-21",
- "2018-05-01",
- "2018-05-11",
- "2018-05-21",
- "2018-06-01",
- "2018-06-11",
- "2018-06-21",
- "2018-07-01",
- "2018-07-11",
- "2018-07-21",
- "2018-08-01",
- "2018-08-11",
- "2018-08-21",
- "2018-09-01",
- "2018-09-11",
- "2018-09-21",
- "2018-10-01",
- "2018-10-11",
- "2018-10-21",
- "2018-11-01",
- "2018-11-11",
- "2018-11-21",
- "2018-12-01",
- "2018-12-11",
- "2018-12-21",
- "2019-01-01",
- "2019-01-11",
- "2019-01-21",
- "2019-02-01",
- "2019-02-11",
- "2019-02-21",
- "2019-03-01",
- "2019-03-11",
- "2019-03-21",
- "2019-04-01",
- "2019-04-11",
- "2019-04-21",
- "2019-05-01",
- "2019-05-11",
- "2019-05-21",
- "2019-06-01",
- "2019-06-11",
- "2019-06-21",
- "2019-07-01",
- "2019-07-11",
- "2019-07-21",
- "2019-08-01",
- "2019-08-11",
- "2019-08-21",
- "2019-09-01",
- "2019-09-11",
- "2019-09-21",
- "2019-10-01",
- "2019-10-11",
- "2019-10-21",
- "2019-11-01",
- "2019-11-11",
- "2019-11-21",
- "2019-12-01",
- "2019-12-11",
- "2019-12-21",
- "2020-01-01",
- "2020-01-11",
- "2020-01-21",
- "2020-02-01",
- "2020-02-11",
- "2020-02-21",
- "2020-03-01",
- "2020-03-11",
- "2020-03-21",
- "2020-04-01",
- "2020-04-11",
- "2020-04-21",
- "2020-05-01",
- "2020-05-11",
- "2020-05-21",
- "2020-06-01",
- "2020-06-11",
- "2020-06-21",
- "2020-07-01",
- "2020-07-11",
- "2020-07-21",
- "2020-08-01",
- "2020-08-11",
- "2020-08-21",
- "2020-09-01",
- "2020-09-11",
- "2020-09-21",
- "2020-10-01",
- "2020-10-11",
- "2020-10-21",
- "2020-11-01",
- "2020-11-11",
- "2020-11-21",
- "2020-12-01",
- "2020-12-11",
- "2020-12-21"
- ],
- "MO_NPP_npp_vgpm": [
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202001.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202002.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202003.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202004.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202005.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202006.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202007.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202008.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202009.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202010.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202011.L3m_MO_NPP_npp_vgpm_4km.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/MO_NPP_npp_vgpm/A_202012.L3m_MO_NPP_npp_vgpm_4km.tif"
- ]
- ],
- "NDVI-GCOMC-World-Monthly": [
- "2022-01-16T11:59:30.000Z",
- "2022-02-14T23:59:30.000Z",
- "2022-03-16T11:59:30.000Z",
- "2022-04-15T23:59:30.000Z",
- "2022-05-16T11:59:30.000Z",
- "2022-06-15T23:59:30.000Z",
- "2023-01-16T11:59:30.000Z",
- "2023-02-14T23:59:30.000Z",
- "2023-03-16T11:59:30.000Z",
- "2023-04-15T23:59:30.000Z",
- "2023-05-16T11:59:30.000Z",
- "2023-06-15T23:59:30.000Z"
- ],
- "OMI_trno2-COG": [
- [
- "2005-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2005_Col3_V4.tif"
- ],
- [
- "2006-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2006_Col3_V4.tif"
- ],
- [
- "2007-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2007_Col3_V4.tif"
- ],
- [
- "2008-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2008_Col3_V4.tif"
- ],
- [
- "2009-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2009_Col3_V4.tif"
- ],
- [
- "2010-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2010_Col3_V4.tif"
- ],
- [
- "2011-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2011_Col3_V4.tif"
- ],
- [
- "2012-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2012_Col3_V4.tif"
- ],
- [
- "2013-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2013_Col3_V4.tif"
- ],
- [
- "2014-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2014_Col3_V4.tif"
- ],
- [
- "2015-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2015_Col3_V4.tif"
- ],
- [
- "2016-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2016_Col3_V4.tif"
- ],
- [
- "2017-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2017_Col3_V4.tif"
- ],
- [
- "2018-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2018_Col3_V4.tif"
- ],
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2019_Col3_V4.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2020_Col3_V4.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2021_Col3_V4.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/OMI_trno2-COG/OMI_trno2_0.10x0.10_2022_Col3_V4.tif"
- ]
- ],
- "OMSO2PCA-COG": [
- [
- "2005-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2005.tif"
- ],
- [
- "2006-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2006.tif"
- ],
- [
- "2007-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2007.tif"
- ],
- [
- "2008-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2008.tif"
- ],
- [
- "2009-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2009.tif"
- ],
- [
- "2010-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2010.tif"
- ],
- [
- "2011-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2011.tif"
- ],
- [
- "2012-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2012.tif"
- ],
- [
- "2013-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2013.tif"
- ],
- [
- "2014-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2014.tif"
- ],
- [
- "2015-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2015.tif"
- ],
- [
- "2016-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2016.tif"
- ],
- [
- "2017-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2017.tif"
- ],
- [
- "2018-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2018.tif"
- ],
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2019.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2020.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/OMSO2PCA-COG/OMSO2PCA_LUT_SCD_2021.tif"
- ]
- ],
- "ONPP-GCOMC-World-Monthly": [
- "2018-01-16T11:59:30.000Z",
- "2018-02-14T23:59:30.000Z",
- "2018-03-16T11:59:30.000Z",
- "2018-04-15T23:59:30.000Z",
- "2018-05-16T11:59:30.000Z",
- "2018-06-15T23:59:30.000Z",
- "2018-07-16T11:59:30.000Z",
- "2018-08-16T11:59:30.000Z",
- "2018-09-15T23:59:30.000Z",
- "2018-10-16T11:59:30.000Z",
- "2018-11-15T23:59:30.000Z",
- "2018-12-16T11:59:30.000Z",
- "2019-01-16T11:59:30.000Z",
- "2019-02-14T23:59:30.000Z",
- "2019-03-16T11:59:30.000Z",
- "2019-04-15T23:59:30.000Z",
- "2019-05-16T11:59:30.000Z",
- "2019-06-15T23:59:30.000Z",
- "2019-07-16T11:59:30.000Z",
- "2019-08-16T11:59:30.000Z",
- "2019-09-15T23:59:30.000Z",
- "2019-10-16T11:59:30.000Z",
- "2019-11-15T23:59:30.000Z",
- "2019-12-16T11:59:30.000Z",
- "2020-01-16T11:59:30.000Z",
- "2020-02-15T11:59:30.000Z",
- "2020-03-16T11:59:30.000Z",
- "2020-04-15T23:59:30.000Z",
- "2020-05-16T11:59:30.000Z",
- "2020-06-15T23:59:30.000Z",
- "2020-07-16T11:59:30.000Z",
- "2020-08-16T11:59:30.000Z",
- "2020-09-15T23:59:30.000Z",
- "2020-10-16T11:59:30.000Z",
- "2020-11-15T23:59:30.000Z",
- "2020-12-16T11:59:30.000Z",
- "2021-01-16T11:59:30.000Z",
- "2021-02-14T23:59:30.000Z",
- "2021-03-16T11:59:30.000Z",
- "2021-04-15T23:59:30.000Z",
- "2021-05-16T11:59:30.000Z",
- "2021-06-15T23:59:30.000Z",
- "2021-07-16T11:59:30.000Z",
- "2021-08-16T11:59:30.000Z",
- "2021-09-15T23:59:30.000Z",
- "2021-10-16T11:59:30.000Z",
- "2021-11-15T23:59:30.000Z",
- "2021-12-16T11:59:30.000Z",
- "2022-01-16T11:59:30.000Z",
- "2022-02-14T23:59:30.000Z",
- "2022-03-16T11:59:30.000Z",
- "2022-04-15T23:59:30.000Z",
- "2022-05-16T11:59:30.000Z",
- "2022-06-15T23:59:30.000Z",
- "2022-07-16T11:59:30.000Z",
- "2022-08-16T11:59:30.000Z",
- "2022-09-15T23:59:30.000Z",
- "2022-10-16T11:59:30.000Z",
- "2022-11-15T23:59:30.000Z",
- "2022-12-16T11:59:30.000Z",
- "2023-01-16T11:59:30.000Z",
- "2023-02-14T23:59:30.000Z",
- "2023-03-16T11:59:30.000Z",
- "2023-04-15T23:59:30.000Z",
- "2023-05-16T11:59:30.000Z",
- "2023-06-15T23:59:30.000Z",
- "2023-07-16T11:59:30.000Z",
- "2023-08-16T11:59:30.000Z",
- "2023-09-15T23:59:30.000Z",
- "2023-10-16T11:59:30.000Z",
- "2023-11-15T23:59:30.000Z"
- ],
- "PRC-Anomaly-GSMaP-World-Monthly": [
- "2022-01-16T11:59:30.000Z",
- "2022-02-14T23:59:30.000Z",
- "2022-03-16T11:59:30.000Z",
- "2022-04-15T23:59:30.000Z",
- "2022-05-16T11:59:30.000Z",
- "2022-06-15T23:59:30.000Z",
- "2023-01-16T11:59:30.000Z",
- "2023-02-14T23:59:30.000Z",
- "2023-03-16T11:59:30.000Z",
- "2023-04-15T23:59:30.000Z",
- "2023-05-16T11:59:30.000Z",
- "2023-06-15T23:59:30.000Z"
- ],
- "PRC-GSMaP-World-Monthly": [
- "2022-01-16T11:59:30.000Z",
- "2022-02-14T23:59:30.000Z",
- "2022-03-16T11:59:30.000Z",
- "2022-04-15T23:59:30.000Z",
- "2022-05-16T11:59:30.000Z",
- "2022-06-15T23:59:30.000Z",
- "2023-01-16T11:59:30.000Z",
- "2023-02-14T23:59:30.000Z",
- "2023-03-16T11:59:30.000Z",
- "2023-04-15T23:59:30.000Z",
- "2023-05-16T11:59:30.000Z",
- "2023-06-15T23:59:30.000Z"
- ],
- "SMC-Anomaly-GCOMW-World-Monthly": [
- "2022-01-16T11:59:30.000Z",
- "2022-02-14T23:59:30.000Z",
- "2022-03-16T11:59:30.000Z",
- "2022-04-15T23:59:30.000Z",
- "2022-05-16T11:59:30.000Z",
- "2022-06-15T23:59:30.000Z",
- "2023-01-16T11:59:30.000Z",
- "2023-02-14T23:59:30.000Z",
- "2023-03-16T11:59:30.000Z",
- "2023-04-15T23:59:30.000Z",
- "2023-05-16T11:59:30.000Z",
- "2023-06-15T23:59:30.000Z"
- ],
- "SMC-GCOMW-World-Monthly": [
- "2022-01-16T11:59:30.000Z",
- "2022-02-14T23:59:30.000Z",
- "2022-03-16T11:59:30.000Z",
- "2022-04-15T23:59:30.000Z",
- "2022-05-16T11:59:30.000Z",
- "2022-06-15T23:59:30.000Z",
- "2023-01-16T11:59:30.000Z",
- "2023-02-14T23:59:30.000Z",
- "2023-03-16T11:59:30.000Z",
- "2023-04-15T23:59:30.000Z",
- "2023-05-16T11:59:30.000Z",
- "2023-06-15T23:59:30.000Z"
- ],
- "blue-tarp-detection-det1": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70130_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70130_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70130_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70130_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70130_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70130_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det10": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70117_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70117_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70117_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70117_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70117_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det11": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70116_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70116_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70116_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70116_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70116_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70116_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det12": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70115_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70115_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70115_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70115_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70115_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70115_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det13": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70114_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70114_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70114_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70114_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70114_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det14": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70113_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70113_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70113_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70113_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70113_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70113_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det15": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70112_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70112_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70112_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70112_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70112_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70112_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det16": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70094_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70094_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70094_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70094_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70094_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det17": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70072_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70072_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70072_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70072_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70072_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det18": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70065_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70065_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70065_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70065_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70065_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70065_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det19": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70062_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70062_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70062_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70062_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70062_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70062_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det2": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70126_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70126_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70126_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70126_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70126_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det20": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70058_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70058_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70058_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70058_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70058_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det21": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70056_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70056_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70056_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70056_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70056_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det22": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70053_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70053_detections_2021-09-26.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70053_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70053_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70053_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det23": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70006_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70006_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70006_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70006_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70006_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70006_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det24": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70005_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70005_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70005_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70005_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70005_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70005_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det25": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70003_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70003_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70003_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70003_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70003_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70003_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det26": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70002_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70002_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70002_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70002_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70002_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70002_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det27": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70001_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70001_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70001_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70001_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70001_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70001_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det28": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00987_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00987_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det29": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00983_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00983_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det3": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70125_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70125_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70125_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70125_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70125_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70125_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det30": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00982_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00982_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00982_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00982_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00982_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det31": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00979_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00979_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00979_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00979_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00979_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00979_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det32": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00976_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00976_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det33": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00971_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00971_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det34": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00969_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00969_detections_2017-09-24.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00969_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00969_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00969_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det35": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00968_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00968_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00968_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00968_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00968_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00968_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det36": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00966_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00966_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00966_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00966_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00966_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00966_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det37": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00965_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00965_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00965_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00965_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00965_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00965_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det38": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00962_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00962_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00962_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00962_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00962_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00962_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det39": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00961_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00961_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00961_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00961_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00961_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00961_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det4": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70124_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70124_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70124_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70124_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70124_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70124_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det40": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00960_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00960_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00960_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00960_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00960_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00960_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det41": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00959_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00959_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00959_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00959_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00959_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00959_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det42": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00956_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00956_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det43": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00949_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00949_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00949_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00949_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00949_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00949_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det44": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00934_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00934_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00934_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00934_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00934_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00934_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det45": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00927_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00927_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00927_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00927_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00927_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00927_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det46": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00926_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00926_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det47": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00925_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00925_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00925_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00925_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00925_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00925_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det48": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00924_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00924_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00924_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00924_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00924_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00924_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det49": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00923_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00923_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00923_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00923_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00923_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00923_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det5": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70123_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70123_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70123_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70123_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70123_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70123_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det50": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00921_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00921_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00921_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00921_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00921_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00921_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det51": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00920_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00920_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00920_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det52": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00918_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00918_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00918_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00918_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00918_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00918_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det53": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00917_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00917_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00917_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00917_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00917_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00917_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det54": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00915_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00915_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00915_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00915_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00915_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00915_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det55": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00913_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00913_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00913_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00913_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00913_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00913_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det56": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00912_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00912_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00912_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00912_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00912_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00912_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det57": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00911_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00911_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00911_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00911_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00911_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00911_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det58": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00909_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00909_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00909_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00909_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00909_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00909_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det59": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00907_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00907_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00907_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00907_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00907_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00907_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det6": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70122_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70122_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70122_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70122_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70122_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70122_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det60": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00901_detections_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00901_detections_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00901_detections_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00901_detections_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00901_detections_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00901_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det61": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00772_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00772_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det62": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00725_detections_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/00725_detections_2019-10-12.tif"
- ]
- ],
- "blue-tarp-detection-det7": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70121_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70121_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70121_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70121_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70121_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70121_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det8": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70119_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70119_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70119_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70119_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70119_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70119_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-detection-det9": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70118_detections_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70118_detections_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70118_detections_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70118_detections_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70118_detections_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-detection/70118_detections_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det10": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70118_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70118_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70118_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70118_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70118_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70118_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det11": [
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70117_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det12": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70116_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70116_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70116_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70116_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70116_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70116_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det13": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70115_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70115_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70115_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70115_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70115_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70115_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det14": [
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70114_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70114_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det15": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70113_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70113_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70113_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70113_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70113_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70113_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det16": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70112_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70112_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70112_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70112_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70112_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70112_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det17": [
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70094_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det18": [
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70072_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det19": [
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70065_raw_2021-12-15.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70065_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det2": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70130_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70130_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70130_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70130_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70130_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70130_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det20": [
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70062_raw_2021-12-15.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70062_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det21": [
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70058_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det22": [
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70056_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det23": [
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70053_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det24": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70006_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70006_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70006_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70006_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70006_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70006_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det25": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70005_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70005_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70005_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70005_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70005_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70005_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det26": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70003_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70003_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70003_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70003_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70003_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70003_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det27": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70002_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70002_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70002_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70002_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70002_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70002_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det28": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70001_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70001_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70001_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70001_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70001_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70001_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det29": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00987_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00987_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det3": [
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70126_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det30": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00983_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00983_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det31": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00982_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00982_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00982_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00982_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00982_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det32": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00979_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00979_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00979_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00979_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00979_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00979_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det33": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00976_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00976_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det34": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00971_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00971_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det35": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00969_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00969_raw_2017-09-24.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00969_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00969_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00969_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det36": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00968_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00968_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00968_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00968_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00968_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00968_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det37": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00966_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00966_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00966_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00966_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00966_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00966_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det38": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00965_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00965_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00965_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00965_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00965_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00965_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det39": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00962_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00962_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00962_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00962_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00962_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00962_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det4": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70125_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70125_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70125_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70125_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70125_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70125_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det40": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00961_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00961_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00961_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00961_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00961_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00961_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det41": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00960_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00960_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00960_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00960_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00960_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00960_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det42": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00959_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00959_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00959_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00959_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00959_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00959_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det43": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00956_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00956_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det44": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00949_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00949_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00949_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00949_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00949_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00949_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det45": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00934_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00934_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00934_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00934_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00934_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00934_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det46": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00927_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00927_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00927_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00927_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00927_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00927_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det47": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00926_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00926_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det48": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00925_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00925_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00925_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00925_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00925_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00925_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det49": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00924_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00924_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00924_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00924_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00924_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00924_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det5": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70124_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70124_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70124_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70124_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70124_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70124_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det50": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00923_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00923_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00923_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00923_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00923_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00923_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det51": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00921_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00921_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00921_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00921_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00921_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00921_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det52": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00920_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00920_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00920_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det53": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00918_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00918_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00918_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00918_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00918_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00918_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det54": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00917_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00917_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00917_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00917_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00917_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00917_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det55": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00915_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00915_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00915_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00915_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00915_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00915_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det56": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00913_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00913_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00913_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00913_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00913_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00913_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det57": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00912_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00912_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00912_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00912_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00912_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00912_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det58": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00911_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00911_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00911_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00911_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00911_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00911_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det59": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00909_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00909_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00909_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00909_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00909_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00909_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det6": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70123_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70123_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70123_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70123_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70123_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70123_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det60": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00907_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00907_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00907_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00907_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00907_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00907_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det61": [
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00901_raw_2017-02-11.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00901_raw_2017-09-24.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00901_raw_2017-10-30.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00901_raw_2018-01-02.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00901_raw_2018-11-29.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00901_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det62": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00772_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00772_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det63": [
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00725_raw_2018-01-02.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/00725_raw_2019-10-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det7": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70122_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70122_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70122_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70122_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70122_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70122_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det8": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70121_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70121_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70121_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70121_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70121_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70121_raw_2022-02-12.tif"
- ]
- ],
- "blue-tarp-planetscope-det9": [
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70119_raw_2021-08-23.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70119_raw_2021-09-26.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70119_raw_2021-11-24.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70119_raw_2021-12-15.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70119_raw_2022-01-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/blue-tarp-planetscope/70119_raw_2022-02-12.tif"
- ]
- ],
- "co2-diff": [
- [
- "2015-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-01.tif"
- ],
- [
- "2015-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-02.tif"
- ],
- [
- "2015-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-03.tif"
- ],
- [
- "2015-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-04.tif"
- ],
- [
- "2015-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-05.tif"
- ],
- [
- "2015-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-06.tif"
- ],
- [
- "2015-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-07.tif"
- ],
- [
- "2015-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-08.tif"
- ],
- [
- "2015-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-09.tif"
- ],
- [
- "2015-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-10.tif"
- ],
- [
- "2015-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-11.tif"
- ],
- [
- "2015-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-12.tif"
- ],
- [
- "2015-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-13.tif"
- ],
- [
- "2015-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-14.tif"
- ],
- [
- "2015-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-15.tif"
- ],
- [
- "2015-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-16.tif"
- ],
- [
- "2015-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-17.tif"
- ],
- [
- "2015-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-18.tif"
- ],
- [
- "2015-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-19.tif"
- ],
- [
- "2015-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-20.tif"
- ],
- [
- "2015-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-21.tif"
- ],
- [
- "2015-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-22.tif"
- ],
- [
- "2015-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-23.tif"
- ],
- [
- "2015-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-24.tif"
- ],
- [
- "2015-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-25.tif"
- ],
- [
- "2015-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-26.tif"
- ],
- [
- "2015-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-27.tif"
- ],
- [
- "2015-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-28.tif"
- ],
- [
- "2015-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-29.tif"
- ],
- [
- "2015-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-30.tif"
- ],
- [
- "2015-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-01-31.tif"
- ],
- [
- "2015-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-01.tif"
- ],
- [
- "2015-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-02.tif"
- ],
- [
- "2015-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-03.tif"
- ],
- [
- "2015-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-04.tif"
- ],
- [
- "2015-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-05.tif"
- ],
- [
- "2015-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-06.tif"
- ],
- [
- "2015-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-07.tif"
- ],
- [
- "2015-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-08.tif"
- ],
- [
- "2015-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-09.tif"
- ],
- [
- "2015-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-10.tif"
- ],
- [
- "2015-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-11.tif"
- ],
- [
- "2015-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-12.tif"
- ],
- [
- "2015-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-13.tif"
- ],
- [
- "2015-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-14.tif"
- ],
- [
- "2015-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-15.tif"
- ],
- [
- "2015-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-16.tif"
- ],
- [
- "2015-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-17.tif"
- ],
- [
- "2015-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-18.tif"
- ],
- [
- "2015-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-19.tif"
- ],
- [
- "2015-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-20.tif"
- ],
- [
- "2015-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-21.tif"
- ],
- [
- "2015-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-22.tif"
- ],
- [
- "2015-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-23.tif"
- ],
- [
- "2015-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-24.tif"
- ],
- [
- "2015-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-25.tif"
- ],
- [
- "2015-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-26.tif"
- ],
- [
- "2015-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-27.tif"
- ],
- [
- "2015-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-02-28.tif"
- ],
- [
- "2015-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-01.tif"
- ],
- [
- "2015-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-02.tif"
- ],
- [
- "2015-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-03.tif"
- ],
- [
- "2015-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-04.tif"
- ],
- [
- "2015-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-05.tif"
- ],
- [
- "2015-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-06.tif"
- ],
- [
- "2015-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-07.tif"
- ],
- [
- "2015-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-08.tif"
- ],
- [
- "2015-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-09.tif"
- ],
- [
- "2015-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-10.tif"
- ],
- [
- "2015-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-11.tif"
- ],
- [
- "2015-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-12.tif"
- ],
- [
- "2015-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-13.tif"
- ],
- [
- "2015-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-14.tif"
- ],
- [
- "2015-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-15.tif"
- ],
- [
- "2015-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-16.tif"
- ],
- [
- "2015-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-17.tif"
- ],
- [
- "2015-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-18.tif"
- ],
- [
- "2015-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-19.tif"
- ],
- [
- "2015-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-20.tif"
- ],
- [
- "2015-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-21.tif"
- ],
- [
- "2015-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-22.tif"
- ],
- [
- "2015-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-23.tif"
- ],
- [
- "2015-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-24.tif"
- ],
- [
- "2015-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-25.tif"
- ],
- [
- "2015-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-26.tif"
- ],
- [
- "2015-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-27.tif"
- ],
- [
- "2015-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-28.tif"
- ],
- [
- "2015-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-29.tif"
- ],
- [
- "2015-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-30.tif"
- ],
- [
- "2015-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-03-31.tif"
- ],
- [
- "2015-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-01.tif"
- ],
- [
- "2015-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-02.tif"
- ],
- [
- "2015-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-03.tif"
- ],
- [
- "2015-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-04.tif"
- ],
- [
- "2015-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-05.tif"
- ],
- [
- "2015-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-06.tif"
- ],
- [
- "2015-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-07.tif"
- ],
- [
- "2015-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-08.tif"
- ],
- [
- "2015-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-09.tif"
- ],
- [
- "2015-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-10.tif"
- ],
- [
- "2015-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-11.tif"
- ],
- [
- "2015-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-12.tif"
- ],
- [
- "2015-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-13.tif"
- ],
- [
- "2015-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-14.tif"
- ],
- [
- "2015-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-15.tif"
- ],
- [
- "2015-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-16.tif"
- ],
- [
- "2015-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-17.tif"
- ],
- [
- "2015-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-18.tif"
- ],
- [
- "2015-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-19.tif"
- ],
- [
- "2015-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-20.tif"
- ],
- [
- "2015-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-21.tif"
- ],
- [
- "2015-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-22.tif"
- ],
- [
- "2015-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-23.tif"
- ],
- [
- "2015-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-24.tif"
- ],
- [
- "2015-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-25.tif"
- ],
- [
- "2015-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-26.tif"
- ],
- [
- "2015-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-27.tif"
- ],
- [
- "2015-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-28.tif"
- ],
- [
- "2015-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-29.tif"
- ],
- [
- "2015-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-04-30.tif"
- ],
- [
- "2015-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-01.tif"
- ],
- [
- "2015-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-02.tif"
- ],
- [
- "2015-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-03.tif"
- ],
- [
- "2015-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-04.tif"
- ],
- [
- "2015-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-05.tif"
- ],
- [
- "2015-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-06.tif"
- ],
- [
- "2015-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-07.tif"
- ],
- [
- "2015-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-08.tif"
- ],
- [
- "2015-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-09.tif"
- ],
- [
- "2015-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-10.tif"
- ],
- [
- "2015-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-11.tif"
- ],
- [
- "2015-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-12.tif"
- ],
- [
- "2015-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-13.tif"
- ],
- [
- "2015-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-14.tif"
- ],
- [
- "2015-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-15.tif"
- ],
- [
- "2015-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-16.tif"
- ],
- [
- "2015-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-17.tif"
- ],
- [
- "2015-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-18.tif"
- ],
- [
- "2015-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-19.tif"
- ],
- [
- "2015-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-20.tif"
- ],
- [
- "2015-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-21.tif"
- ],
- [
- "2015-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-22.tif"
- ],
- [
- "2015-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-23.tif"
- ],
- [
- "2015-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-24.tif"
- ],
- [
- "2015-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-25.tif"
- ],
- [
- "2015-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-26.tif"
- ],
- [
- "2015-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-27.tif"
- ],
- [
- "2015-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-28.tif"
- ],
- [
- "2015-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-29.tif"
- ],
- [
- "2015-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-30.tif"
- ],
- [
- "2015-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-05-31.tif"
- ],
- [
- "2015-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-01.tif"
- ],
- [
- "2015-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-02.tif"
- ],
- [
- "2015-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-03.tif"
- ],
- [
- "2015-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-04.tif"
- ],
- [
- "2015-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-05.tif"
- ],
- [
- "2015-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-06.tif"
- ],
- [
- "2015-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-07.tif"
- ],
- [
- "2015-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-08.tif"
- ],
- [
- "2015-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-09.tif"
- ],
- [
- "2015-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-10.tif"
- ],
- [
- "2015-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-11.tif"
- ],
- [
- "2015-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-12.tif"
- ],
- [
- "2015-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-13.tif"
- ],
- [
- "2015-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-14.tif"
- ],
- [
- "2015-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-15.tif"
- ],
- [
- "2015-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-16.tif"
- ],
- [
- "2015-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-17.tif"
- ],
- [
- "2015-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-18.tif"
- ],
- [
- "2015-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-19.tif"
- ],
- [
- "2015-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-20.tif"
- ],
- [
- "2015-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-21.tif"
- ],
- [
- "2015-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-22.tif"
- ],
- [
- "2015-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-23.tif"
- ],
- [
- "2015-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-24.tif"
- ],
- [
- "2015-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-25.tif"
- ],
- [
- "2015-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-26.tif"
- ],
- [
- "2015-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-27.tif"
- ],
- [
- "2015-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-28.tif"
- ],
- [
- "2015-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-29.tif"
- ],
- [
- "2015-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-06-30.tif"
- ],
- [
- "2015-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-01.tif"
- ],
- [
- "2015-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-02.tif"
- ],
- [
- "2015-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-03.tif"
- ],
- [
- "2015-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-04.tif"
- ],
- [
- "2015-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-05.tif"
- ],
- [
- "2015-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-06.tif"
- ],
- [
- "2015-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-07.tif"
- ],
- [
- "2015-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-08.tif"
- ],
- [
- "2015-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-09.tif"
- ],
- [
- "2015-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-10.tif"
- ],
- [
- "2015-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-11.tif"
- ],
- [
- "2015-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-12.tif"
- ],
- [
- "2015-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-13.tif"
- ],
- [
- "2015-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-14.tif"
- ],
- [
- "2015-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-15.tif"
- ],
- [
- "2015-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-16.tif"
- ],
- [
- "2015-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-17.tif"
- ],
- [
- "2015-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-18.tif"
- ],
- [
- "2015-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-19.tif"
- ],
- [
- "2015-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-20.tif"
- ],
- [
- "2015-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-21.tif"
- ],
- [
- "2015-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-22.tif"
- ],
- [
- "2015-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-23.tif"
- ],
- [
- "2015-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-24.tif"
- ],
- [
- "2015-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-25.tif"
- ],
- [
- "2015-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-26.tif"
- ],
- [
- "2015-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-27.tif"
- ],
- [
- "2015-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-28.tif"
- ],
- [
- "2015-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-29.tif"
- ],
- [
- "2015-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-30.tif"
- ],
- [
- "2015-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-07-31.tif"
- ],
- [
- "2015-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-01.tif"
- ],
- [
- "2015-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-02.tif"
- ],
- [
- "2015-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-03.tif"
- ],
- [
- "2015-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-04.tif"
- ],
- [
- "2015-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-05.tif"
- ],
- [
- "2015-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-06.tif"
- ],
- [
- "2015-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-07.tif"
- ],
- [
- "2015-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-08.tif"
- ],
- [
- "2015-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-09.tif"
- ],
- [
- "2015-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-10.tif"
- ],
- [
- "2015-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-11.tif"
- ],
- [
- "2015-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-12.tif"
- ],
- [
- "2015-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-13.tif"
- ],
- [
- "2015-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-14.tif"
- ],
- [
- "2015-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-15.tif"
- ],
- [
- "2015-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-16.tif"
- ],
- [
- "2015-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-17.tif"
- ],
- [
- "2015-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-18.tif"
- ],
- [
- "2015-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-19.tif"
- ],
- [
- "2015-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-20.tif"
- ],
- [
- "2015-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-21.tif"
- ],
- [
- "2015-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-22.tif"
- ],
- [
- "2015-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-23.tif"
- ],
- [
- "2015-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-24.tif"
- ],
- [
- "2015-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-25.tif"
- ],
- [
- "2015-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-26.tif"
- ],
- [
- "2015-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-27.tif"
- ],
- [
- "2015-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-28.tif"
- ],
- [
- "2015-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-29.tif"
- ],
- [
- "2015-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-30.tif"
- ],
- [
- "2015-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-08-31.tif"
- ],
- [
- "2015-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-01.tif"
- ],
- [
- "2015-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-02.tif"
- ],
- [
- "2015-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-03.tif"
- ],
- [
- "2015-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-04.tif"
- ],
- [
- "2015-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-05.tif"
- ],
- [
- "2015-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-06.tif"
- ],
- [
- "2015-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-07.tif"
- ],
- [
- "2015-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-08.tif"
- ],
- [
- "2015-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-09.tif"
- ],
- [
- "2015-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-10.tif"
- ],
- [
- "2015-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-11.tif"
- ],
- [
- "2015-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-12.tif"
- ],
- [
- "2015-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-13.tif"
- ],
- [
- "2015-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-14.tif"
- ],
- [
- "2015-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-15.tif"
- ],
- [
- "2015-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-16.tif"
- ],
- [
- "2015-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-17.tif"
- ],
- [
- "2015-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-18.tif"
- ],
- [
- "2015-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-19.tif"
- ],
- [
- "2015-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-20.tif"
- ],
- [
- "2015-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-21.tif"
- ],
- [
- "2015-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-22.tif"
- ],
- [
- "2015-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-23.tif"
- ],
- [
- "2015-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-24.tif"
- ],
- [
- "2015-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-25.tif"
- ],
- [
- "2015-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-26.tif"
- ],
- [
- "2015-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-27.tif"
- ],
- [
- "2015-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-28.tif"
- ],
- [
- "2015-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-29.tif"
- ],
- [
- "2015-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-09-30.tif"
- ],
- [
- "2015-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-01.tif"
- ],
- [
- "2015-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-02.tif"
- ],
- [
- "2015-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-03.tif"
- ],
- [
- "2015-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-04.tif"
- ],
- [
- "2015-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-05.tif"
- ],
- [
- "2015-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-06.tif"
- ],
- [
- "2015-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-07.tif"
- ],
- [
- "2015-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-08.tif"
- ],
- [
- "2015-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-09.tif"
- ],
- [
- "2015-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-10.tif"
- ],
- [
- "2015-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-11.tif"
- ],
- [
- "2015-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-12.tif"
- ],
- [
- "2015-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-13.tif"
- ],
- [
- "2015-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-14.tif"
- ],
- [
- "2015-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-15.tif"
- ],
- [
- "2015-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-16.tif"
- ],
- [
- "2015-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-17.tif"
- ],
- [
- "2015-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-18.tif"
- ],
- [
- "2015-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-19.tif"
- ],
- [
- "2015-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-20.tif"
- ],
- [
- "2015-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-21.tif"
- ],
- [
- "2015-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-22.tif"
- ],
- [
- "2015-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-23.tif"
- ],
- [
- "2015-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-24.tif"
- ],
- [
- "2015-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-25.tif"
- ],
- [
- "2015-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-26.tif"
- ],
- [
- "2015-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-27.tif"
- ],
- [
- "2015-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-28.tif"
- ],
- [
- "2015-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-29.tif"
- ],
- [
- "2015-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-30.tif"
- ],
- [
- "2015-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-10-31.tif"
- ],
- [
- "2015-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-01.tif"
- ],
- [
- "2015-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-02.tif"
- ],
- [
- "2015-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-03.tif"
- ],
- [
- "2015-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-04.tif"
- ],
- [
- "2015-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-05.tif"
- ],
- [
- "2015-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-06.tif"
- ],
- [
- "2015-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-07.tif"
- ],
- [
- "2015-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-08.tif"
- ],
- [
- "2015-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-09.tif"
- ],
- [
- "2015-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-10.tif"
- ],
- [
- "2015-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-11.tif"
- ],
- [
- "2015-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-12.tif"
- ],
- [
- "2015-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-13.tif"
- ],
- [
- "2015-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-14.tif"
- ],
- [
- "2015-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-15.tif"
- ],
- [
- "2015-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-16.tif"
- ],
- [
- "2015-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-17.tif"
- ],
- [
- "2015-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-18.tif"
- ],
- [
- "2015-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-19.tif"
- ],
- [
- "2015-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-20.tif"
- ],
- [
- "2015-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-21.tif"
- ],
- [
- "2015-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-22.tif"
- ],
- [
- "2015-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-23.tif"
- ],
- [
- "2015-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-24.tif"
- ],
- [
- "2015-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-25.tif"
- ],
- [
- "2015-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-26.tif"
- ],
- [
- "2015-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-27.tif"
- ],
- [
- "2015-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-28.tif"
- ],
- [
- "2015-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-29.tif"
- ],
- [
- "2015-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-11-30.tif"
- ],
- [
- "2015-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-01.tif"
- ],
- [
- "2015-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-02.tif"
- ],
- [
- "2015-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-03.tif"
- ],
- [
- "2015-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-04.tif"
- ],
- [
- "2015-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-05.tif"
- ],
- [
- "2015-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-06.tif"
- ],
- [
- "2015-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-07.tif"
- ],
- [
- "2015-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-08.tif"
- ],
- [
- "2015-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-09.tif"
- ],
- [
- "2015-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-10.tif"
- ],
- [
- "2015-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-11.tif"
- ],
- [
- "2015-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-12.tif"
- ],
- [
- "2015-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-13.tif"
- ],
- [
- "2015-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-14.tif"
- ],
- [
- "2015-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-15.tif"
- ],
- [
- "2015-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2015-12-16.tif"
- ],
- [
- "2016-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-01.tif"
- ],
- [
- "2016-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-02.tif"
- ],
- [
- "2016-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-03.tif"
- ],
- [
- "2016-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-04.tif"
- ],
- [
- "2016-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-05.tif"
- ],
- [
- "2016-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-06.tif"
- ],
- [
- "2016-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-07.tif"
- ],
- [
- "2016-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-08.tif"
- ],
- [
- "2016-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-09.tif"
- ],
- [
- "2016-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-10.tif"
- ],
- [
- "2016-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-11.tif"
- ],
- [
- "2016-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-12.tif"
- ],
- [
- "2016-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-13.tif"
- ],
- [
- "2016-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-14.tif"
- ],
- [
- "2016-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-15.tif"
- ],
- [
- "2016-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-16.tif"
- ],
- [
- "2016-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-17.tif"
- ],
- [
- "2016-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-18.tif"
- ],
- [
- "2016-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-19.tif"
- ],
- [
- "2016-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-20.tif"
- ],
- [
- "2016-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-21.tif"
- ],
- [
- "2016-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-22.tif"
- ],
- [
- "2016-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-23.tif"
- ],
- [
- "2016-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-24.tif"
- ],
- [
- "2016-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-25.tif"
- ],
- [
- "2016-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-26.tif"
- ],
- [
- "2016-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-27.tif"
- ],
- [
- "2016-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-28.tif"
- ],
- [
- "2016-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-29.tif"
- ],
- [
- "2016-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-30.tif"
- ],
- [
- "2016-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-01-31.tif"
- ],
- [
- "2016-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-01.tif"
- ],
- [
- "2016-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-02.tif"
- ],
- [
- "2016-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-03.tif"
- ],
- [
- "2016-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-04.tif"
- ],
- [
- "2016-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-05.tif"
- ],
- [
- "2016-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-06.tif"
- ],
- [
- "2016-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-07.tif"
- ],
- [
- "2016-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-08.tif"
- ],
- [
- "2016-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-09.tif"
- ],
- [
- "2016-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-10.tif"
- ],
- [
- "2016-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-11.tif"
- ],
- [
- "2016-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-12.tif"
- ],
- [
- "2016-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-13.tif"
- ],
- [
- "2016-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-14.tif"
- ],
- [
- "2016-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-15.tif"
- ],
- [
- "2016-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-16.tif"
- ],
- [
- "2016-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-17.tif"
- ],
- [
- "2016-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-18.tif"
- ],
- [
- "2016-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-19.tif"
- ],
- [
- "2016-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-20.tif"
- ],
- [
- "2016-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-21.tif"
- ],
- [
- "2016-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-22.tif"
- ],
- [
- "2016-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-23.tif"
- ],
- [
- "2016-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-24.tif"
- ],
- [
- "2016-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-25.tif"
- ],
- [
- "2016-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-26.tif"
- ],
- [
- "2016-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-27.tif"
- ],
- [
- "2016-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-28.tif"
- ],
- [
- "2016-02-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-02-29.tif"
- ],
- [
- "2016-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-01.tif"
- ],
- [
- "2016-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-02.tif"
- ],
- [
- "2016-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-03.tif"
- ],
- [
- "2016-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-04.tif"
- ],
- [
- "2016-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-05.tif"
- ],
- [
- "2016-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-06.tif"
- ],
- [
- "2016-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-07.tif"
- ],
- [
- "2016-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-08.tif"
- ],
- [
- "2016-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-09.tif"
- ],
- [
- "2016-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-10.tif"
- ],
- [
- "2016-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-11.tif"
- ],
- [
- "2016-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-12.tif"
- ],
- [
- "2016-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-13.tif"
- ],
- [
- "2016-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-14.tif"
- ],
- [
- "2016-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-15.tif"
- ],
- [
- "2016-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-16.tif"
- ],
- [
- "2016-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-17.tif"
- ],
- [
- "2016-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-18.tif"
- ],
- [
- "2016-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-19.tif"
- ],
- [
- "2016-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-20.tif"
- ],
- [
- "2016-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-21.tif"
- ],
- [
- "2016-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-22.tif"
- ],
- [
- "2016-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-23.tif"
- ],
- [
- "2016-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-24.tif"
- ],
- [
- "2016-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-25.tif"
- ],
- [
- "2016-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-26.tif"
- ],
- [
- "2016-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-27.tif"
- ],
- [
- "2016-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-28.tif"
- ],
- [
- "2016-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-29.tif"
- ],
- [
- "2016-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-30.tif"
- ],
- [
- "2016-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-03-31.tif"
- ],
- [
- "2016-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-01.tif"
- ],
- [
- "2016-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-02.tif"
- ],
- [
- "2016-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-03.tif"
- ],
- [
- "2016-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-04.tif"
- ],
- [
- "2016-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-05.tif"
- ],
- [
- "2016-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-06.tif"
- ],
- [
- "2016-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-07.tif"
- ],
- [
- "2016-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-08.tif"
- ],
- [
- "2016-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-09.tif"
- ],
- [
- "2016-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-10.tif"
- ],
- [
- "2016-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-11.tif"
- ],
- [
- "2016-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-12.tif"
- ],
- [
- "2016-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-13.tif"
- ],
- [
- "2016-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-14.tif"
- ],
- [
- "2016-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-15.tif"
- ],
- [
- "2016-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-16.tif"
- ],
- [
- "2016-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-17.tif"
- ],
- [
- "2016-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-18.tif"
- ],
- [
- "2016-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-19.tif"
- ],
- [
- "2016-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-20.tif"
- ],
- [
- "2016-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-21.tif"
- ],
- [
- "2016-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-22.tif"
- ],
- [
- "2016-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-23.tif"
- ],
- [
- "2016-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-24.tif"
- ],
- [
- "2016-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-25.tif"
- ],
- [
- "2016-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-26.tif"
- ],
- [
- "2016-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-27.tif"
- ],
- [
- "2016-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-28.tif"
- ],
- [
- "2016-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-29.tif"
- ],
- [
- "2016-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-04-30.tif"
- ],
- [
- "2016-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-01.tif"
- ],
- [
- "2016-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-02.tif"
- ],
- [
- "2016-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-03.tif"
- ],
- [
- "2016-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-04.tif"
- ],
- [
- "2016-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-05.tif"
- ],
- [
- "2016-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-06.tif"
- ],
- [
- "2016-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-07.tif"
- ],
- [
- "2016-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-08.tif"
- ],
- [
- "2016-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-09.tif"
- ],
- [
- "2016-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-10.tif"
- ],
- [
- "2016-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-11.tif"
- ],
- [
- "2016-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-12.tif"
- ],
- [
- "2016-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-13.tif"
- ],
- [
- "2016-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-14.tif"
- ],
- [
- "2016-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-15.tif"
- ],
- [
- "2016-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-16.tif"
- ],
- [
- "2016-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-17.tif"
- ],
- [
- "2016-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-18.tif"
- ],
- [
- "2016-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-19.tif"
- ],
- [
- "2016-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-20.tif"
- ],
- [
- "2016-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-21.tif"
- ],
- [
- "2016-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-22.tif"
- ],
- [
- "2016-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-23.tif"
- ],
- [
- "2016-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-24.tif"
- ],
- [
- "2016-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-25.tif"
- ],
- [
- "2016-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-26.tif"
- ],
- [
- "2016-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-27.tif"
- ],
- [
- "2016-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-28.tif"
- ],
- [
- "2016-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-29.tif"
- ],
- [
- "2016-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-30.tif"
- ],
- [
- "2016-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-05-31.tif"
- ],
- [
- "2016-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-01.tif"
- ],
- [
- "2016-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-02.tif"
- ],
- [
- "2016-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-03.tif"
- ],
- [
- "2016-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-04.tif"
- ],
- [
- "2016-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-05.tif"
- ],
- [
- "2016-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-06.tif"
- ],
- [
- "2016-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-07.tif"
- ],
- [
- "2016-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-08.tif"
- ],
- [
- "2016-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-09.tif"
- ],
- [
- "2016-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-10.tif"
- ],
- [
- "2016-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-11.tif"
- ],
- [
- "2016-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-12.tif"
- ],
- [
- "2016-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-13.tif"
- ],
- [
- "2016-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-14.tif"
- ],
- [
- "2016-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-15.tif"
- ],
- [
- "2016-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-16.tif"
- ],
- [
- "2016-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-17.tif"
- ],
- [
- "2016-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-18.tif"
- ],
- [
- "2016-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-19.tif"
- ],
- [
- "2016-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-20.tif"
- ],
- [
- "2016-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-21.tif"
- ],
- [
- "2016-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-22.tif"
- ],
- [
- "2016-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-23.tif"
- ],
- [
- "2016-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-24.tif"
- ],
- [
- "2016-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-25.tif"
- ],
- [
- "2016-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-26.tif"
- ],
- [
- "2016-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-27.tif"
- ],
- [
- "2016-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-28.tif"
- ],
- [
- "2016-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-29.tif"
- ],
- [
- "2016-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-06-30.tif"
- ],
- [
- "2016-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-01.tif"
- ],
- [
- "2016-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-02.tif"
- ],
- [
- "2016-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-03.tif"
- ],
- [
- "2016-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-04.tif"
- ],
- [
- "2016-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-05.tif"
- ],
- [
- "2016-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-06.tif"
- ],
- [
- "2016-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-07.tif"
- ],
- [
- "2016-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-08.tif"
- ],
- [
- "2016-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-09.tif"
- ],
- [
- "2016-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-10.tif"
- ],
- [
- "2016-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-11.tif"
- ],
- [
- "2016-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-12.tif"
- ],
- [
- "2016-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-13.tif"
- ],
- [
- "2016-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-14.tif"
- ],
- [
- "2016-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-15.tif"
- ],
- [
- "2016-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-16.tif"
- ],
- [
- "2016-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-17.tif"
- ],
- [
- "2016-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-18.tif"
- ],
- [
- "2016-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-19.tif"
- ],
- [
- "2016-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-20.tif"
- ],
- [
- "2016-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-21.tif"
- ],
- [
- "2016-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-22.tif"
- ],
- [
- "2016-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-23.tif"
- ],
- [
- "2016-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-24.tif"
- ],
- [
- "2016-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-25.tif"
- ],
- [
- "2016-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-26.tif"
- ],
- [
- "2016-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-27.tif"
- ],
- [
- "2016-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-28.tif"
- ],
- [
- "2016-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-29.tif"
- ],
- [
- "2016-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-30.tif"
- ],
- [
- "2016-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-07-31.tif"
- ],
- [
- "2016-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-01.tif"
- ],
- [
- "2016-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-02.tif"
- ],
- [
- "2016-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-03.tif"
- ],
- [
- "2016-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-04.tif"
- ],
- [
- "2016-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-05.tif"
- ],
- [
- "2016-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-06.tif"
- ],
- [
- "2016-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-07.tif"
- ],
- [
- "2016-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-08.tif"
- ],
- [
- "2016-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-09.tif"
- ],
- [
- "2016-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-10.tif"
- ],
- [
- "2016-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-11.tif"
- ],
- [
- "2016-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-12.tif"
- ],
- [
- "2016-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-13.tif"
- ],
- [
- "2016-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-14.tif"
- ],
- [
- "2016-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-15.tif"
- ],
- [
- "2016-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-16.tif"
- ],
- [
- "2016-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-17.tif"
- ],
- [
- "2016-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-18.tif"
- ],
- [
- "2016-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-19.tif"
- ],
- [
- "2016-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-20.tif"
- ],
- [
- "2016-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-21.tif"
- ],
- [
- "2016-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-22.tif"
- ],
- [
- "2016-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-23.tif"
- ],
- [
- "2016-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-24.tif"
- ],
- [
- "2016-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-25.tif"
- ],
- [
- "2016-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-26.tif"
- ],
- [
- "2016-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-27.tif"
- ],
- [
- "2016-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-28.tif"
- ],
- [
- "2016-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-29.tif"
- ],
- [
- "2016-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-30.tif"
- ],
- [
- "2016-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-08-31.tif"
- ],
- [
- "2016-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-01.tif"
- ],
- [
- "2016-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-02.tif"
- ],
- [
- "2016-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-03.tif"
- ],
- [
- "2016-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-04.tif"
- ],
- [
- "2016-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-05.tif"
- ],
- [
- "2016-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-06.tif"
- ],
- [
- "2016-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-07.tif"
- ],
- [
- "2016-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-08.tif"
- ],
- [
- "2016-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-09.tif"
- ],
- [
- "2016-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-10.tif"
- ],
- [
- "2016-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-11.tif"
- ],
- [
- "2016-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-12.tif"
- ],
- [
- "2016-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-13.tif"
- ],
- [
- "2016-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-14.tif"
- ],
- [
- "2016-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-15.tif"
- ],
- [
- "2016-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-16.tif"
- ],
- [
- "2016-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-17.tif"
- ],
- [
- "2016-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-18.tif"
- ],
- [
- "2016-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-19.tif"
- ],
- [
- "2016-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-20.tif"
- ],
- [
- "2016-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-21.tif"
- ],
- [
- "2016-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-22.tif"
- ],
- [
- "2016-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-23.tif"
- ],
- [
- "2016-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-24.tif"
- ],
- [
- "2016-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-25.tif"
- ],
- [
- "2016-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-26.tif"
- ],
- [
- "2016-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-27.tif"
- ],
- [
- "2016-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-28.tif"
- ],
- [
- "2016-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-29.tif"
- ],
- [
- "2016-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-09-30.tif"
- ],
- [
- "2016-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-01.tif"
- ],
- [
- "2016-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-02.tif"
- ],
- [
- "2016-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-03.tif"
- ],
- [
- "2016-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-04.tif"
- ],
- [
- "2016-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-05.tif"
- ],
- [
- "2016-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-06.tif"
- ],
- [
- "2016-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-07.tif"
- ],
- [
- "2016-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-08.tif"
- ],
- [
- "2016-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-09.tif"
- ],
- [
- "2016-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-10.tif"
- ],
- [
- "2016-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-11.tif"
- ],
- [
- "2016-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-12.tif"
- ],
- [
- "2016-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-13.tif"
- ],
- [
- "2016-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-14.tif"
- ],
- [
- "2016-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-15.tif"
- ],
- [
- "2016-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-16.tif"
- ],
- [
- "2016-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-17.tif"
- ],
- [
- "2016-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-18.tif"
- ],
- [
- "2016-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-19.tif"
- ],
- [
- "2016-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-20.tif"
- ],
- [
- "2016-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-21.tif"
- ],
- [
- "2016-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-22.tif"
- ],
- [
- "2016-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-23.tif"
- ],
- [
- "2016-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-24.tif"
- ],
- [
- "2016-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-25.tif"
- ],
- [
- "2016-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-26.tif"
- ],
- [
- "2016-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-27.tif"
- ],
- [
- "2016-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-28.tif"
- ],
- [
- "2016-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-29.tif"
- ],
- [
- "2016-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-30.tif"
- ],
- [
- "2016-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-10-31.tif"
- ],
- [
- "2016-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-01.tif"
- ],
- [
- "2016-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-02.tif"
- ],
- [
- "2016-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-03.tif"
- ],
- [
- "2016-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-04.tif"
- ],
- [
- "2016-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-05.tif"
- ],
- [
- "2016-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-06.tif"
- ],
- [
- "2016-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-07.tif"
- ],
- [
- "2016-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-08.tif"
- ],
- [
- "2016-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-09.tif"
- ],
- [
- "2016-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-10.tif"
- ],
- [
- "2016-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-11.tif"
- ],
- [
- "2016-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-12.tif"
- ],
- [
- "2016-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-13.tif"
- ],
- [
- "2016-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-14.tif"
- ],
- [
- "2016-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-15.tif"
- ],
- [
- "2016-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-16.tif"
- ],
- [
- "2016-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-17.tif"
- ],
- [
- "2016-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-18.tif"
- ],
- [
- "2016-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-19.tif"
- ],
- [
- "2016-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-20.tif"
- ],
- [
- "2016-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-21.tif"
- ],
- [
- "2016-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-22.tif"
- ],
- [
- "2016-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-23.tif"
- ],
- [
- "2016-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-24.tif"
- ],
- [
- "2016-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-25.tif"
- ],
- [
- "2016-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-26.tif"
- ],
- [
- "2016-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-27.tif"
- ],
- [
- "2016-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-28.tif"
- ],
- [
- "2016-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-29.tif"
- ],
- [
- "2016-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-11-30.tif"
- ],
- [
- "2016-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-01.tif"
- ],
- [
- "2016-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-02.tif"
- ],
- [
- "2016-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-03.tif"
- ],
- [
- "2016-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-04.tif"
- ],
- [
- "2016-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-05.tif"
- ],
- [
- "2016-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-06.tif"
- ],
- [
- "2016-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-07.tif"
- ],
- [
- "2016-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-08.tif"
- ],
- [
- "2016-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-09.tif"
- ],
- [
- "2016-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-10.tif"
- ],
- [
- "2016-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-11.tif"
- ],
- [
- "2016-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-12.tif"
- ],
- [
- "2016-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-13.tif"
- ],
- [
- "2016-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-14.tif"
- ],
- [
- "2016-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-15.tif"
- ],
- [
- "2016-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2016-12-16.tif"
- ],
- [
- "2017-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-01.tif"
- ],
- [
- "2017-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-02.tif"
- ],
- [
- "2017-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-03.tif"
- ],
- [
- "2017-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-04.tif"
- ],
- [
- "2017-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-05.tif"
- ],
- [
- "2017-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-06.tif"
- ],
- [
- "2017-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-07.tif"
- ],
- [
- "2017-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-08.tif"
- ],
- [
- "2017-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-09.tif"
- ],
- [
- "2017-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-10.tif"
- ],
- [
- "2017-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-11.tif"
- ],
- [
- "2017-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-12.tif"
- ],
- [
- "2017-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-13.tif"
- ],
- [
- "2017-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-14.tif"
- ],
- [
- "2017-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-15.tif"
- ],
- [
- "2017-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-16.tif"
- ],
- [
- "2017-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-17.tif"
- ],
- [
- "2017-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-18.tif"
- ],
- [
- "2017-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-19.tif"
- ],
- [
- "2017-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-20.tif"
- ],
- [
- "2017-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-21.tif"
- ],
- [
- "2017-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-22.tif"
- ],
- [
- "2017-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-23.tif"
- ],
- [
- "2017-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-24.tif"
- ],
- [
- "2017-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-25.tif"
- ],
- [
- "2017-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-26.tif"
- ],
- [
- "2017-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-27.tif"
- ],
- [
- "2017-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-28.tif"
- ],
- [
- "2017-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-29.tif"
- ],
- [
- "2017-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-30.tif"
- ],
- [
- "2017-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-01-31.tif"
- ],
- [
- "2017-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-01.tif"
- ],
- [
- "2017-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-02.tif"
- ],
- [
- "2017-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-03.tif"
- ],
- [
- "2017-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-04.tif"
- ],
- [
- "2017-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-05.tif"
- ],
- [
- "2017-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-06.tif"
- ],
- [
- "2017-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-07.tif"
- ],
- [
- "2017-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-08.tif"
- ],
- [
- "2017-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-09.tif"
- ],
- [
- "2017-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-10.tif"
- ],
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-11.tif"
- ],
- [
- "2017-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-12.tif"
- ],
- [
- "2017-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-13.tif"
- ],
- [
- "2017-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-14.tif"
- ],
- [
- "2017-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-15.tif"
- ],
- [
- "2017-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-16.tif"
- ],
- [
- "2017-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-17.tif"
- ],
- [
- "2017-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-18.tif"
- ],
- [
- "2017-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-19.tif"
- ],
- [
- "2017-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-20.tif"
- ],
- [
- "2017-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-21.tif"
- ],
- [
- "2017-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-22.tif"
- ],
- [
- "2017-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-23.tif"
- ],
- [
- "2017-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-24.tif"
- ],
- [
- "2017-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-25.tif"
- ],
- [
- "2017-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-26.tif"
- ],
- [
- "2017-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-27.tif"
- ],
- [
- "2017-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-02-28.tif"
- ],
- [
- "2017-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-01.tif"
- ],
- [
- "2017-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-02.tif"
- ],
- [
- "2017-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-03.tif"
- ],
- [
- "2017-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-04.tif"
- ],
- [
- "2017-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-05.tif"
- ],
- [
- "2017-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-06.tif"
- ],
- [
- "2017-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-07.tif"
- ],
- [
- "2017-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-08.tif"
- ],
- [
- "2017-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-09.tif"
- ],
- [
- "2017-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-10.tif"
- ],
- [
- "2017-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-11.tif"
- ],
- [
- "2017-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-12.tif"
- ],
- [
- "2017-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-13.tif"
- ],
- [
- "2017-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-14.tif"
- ],
- [
- "2017-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-15.tif"
- ],
- [
- "2017-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-16.tif"
- ],
- [
- "2017-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-17.tif"
- ],
- [
- "2017-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-18.tif"
- ],
- [
- "2017-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-19.tif"
- ],
- [
- "2017-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-20.tif"
- ],
- [
- "2017-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-21.tif"
- ],
- [
- "2017-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-22.tif"
- ],
- [
- "2017-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-23.tif"
- ],
- [
- "2017-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-24.tif"
- ],
- [
- "2017-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-25.tif"
- ],
- [
- "2017-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-26.tif"
- ],
- [
- "2017-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-27.tif"
- ],
- [
- "2017-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-28.tif"
- ],
- [
- "2017-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-29.tif"
- ],
- [
- "2017-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-30.tif"
- ],
- [
- "2017-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-03-31.tif"
- ],
- [
- "2017-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-01.tif"
- ],
- [
- "2017-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-02.tif"
- ],
- [
- "2017-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-03.tif"
- ],
- [
- "2017-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-04.tif"
- ],
- [
- "2017-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-05.tif"
- ],
- [
- "2017-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-06.tif"
- ],
- [
- "2017-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-07.tif"
- ],
- [
- "2017-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-08.tif"
- ],
- [
- "2017-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-09.tif"
- ],
- [
- "2017-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-10.tif"
- ],
- [
- "2017-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-11.tif"
- ],
- [
- "2017-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-12.tif"
- ],
- [
- "2017-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-13.tif"
- ],
- [
- "2017-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-14.tif"
- ],
- [
- "2017-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-15.tif"
- ],
- [
- "2017-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-16.tif"
- ],
- [
- "2017-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-17.tif"
- ],
- [
- "2017-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-18.tif"
- ],
- [
- "2017-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-19.tif"
- ],
- [
- "2017-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-20.tif"
- ],
- [
- "2017-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-21.tif"
- ],
- [
- "2017-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-22.tif"
- ],
- [
- "2017-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-23.tif"
- ],
- [
- "2017-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-24.tif"
- ],
- [
- "2017-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-25.tif"
- ],
- [
- "2017-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-26.tif"
- ],
- [
- "2017-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-27.tif"
- ],
- [
- "2017-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-28.tif"
- ],
- [
- "2017-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-29.tif"
- ],
- [
- "2017-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-04-30.tif"
- ],
- [
- "2017-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-01.tif"
- ],
- [
- "2017-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-02.tif"
- ],
- [
- "2017-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-03.tif"
- ],
- [
- "2017-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-04.tif"
- ],
- [
- "2017-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-05.tif"
- ],
- [
- "2017-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-06.tif"
- ],
- [
- "2017-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-07.tif"
- ],
- [
- "2017-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-08.tif"
- ],
- [
- "2017-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-09.tif"
- ],
- [
- "2017-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-10.tif"
- ],
- [
- "2017-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-11.tif"
- ],
- [
- "2017-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-12.tif"
- ],
- [
- "2017-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-13.tif"
- ],
- [
- "2017-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-14.tif"
- ],
- [
- "2017-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-15.tif"
- ],
- [
- "2017-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-16.tif"
- ],
- [
- "2017-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-17.tif"
- ],
- [
- "2017-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-18.tif"
- ],
- [
- "2017-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-19.tif"
- ],
- [
- "2017-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-20.tif"
- ],
- [
- "2017-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-21.tif"
- ],
- [
- "2017-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-22.tif"
- ],
- [
- "2017-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-23.tif"
- ],
- [
- "2017-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-24.tif"
- ],
- [
- "2017-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-25.tif"
- ],
- [
- "2017-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-26.tif"
- ],
- [
- "2017-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-27.tif"
- ],
- [
- "2017-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-28.tif"
- ],
- [
- "2017-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-29.tif"
- ],
- [
- "2017-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-30.tif"
- ],
- [
- "2017-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-05-31.tif"
- ],
- [
- "2017-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-01.tif"
- ],
- [
- "2017-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-02.tif"
- ],
- [
- "2017-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-03.tif"
- ],
- [
- "2017-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-04.tif"
- ],
- [
- "2017-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-05.tif"
- ],
- [
- "2017-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-06.tif"
- ],
- [
- "2017-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-07.tif"
- ],
- [
- "2017-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-08.tif"
- ],
- [
- "2017-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-09.tif"
- ],
- [
- "2017-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-10.tif"
- ],
- [
- "2017-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-11.tif"
- ],
- [
- "2017-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-12.tif"
- ],
- [
- "2017-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-13.tif"
- ],
- [
- "2017-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-14.tif"
- ],
- [
- "2017-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-15.tif"
- ],
- [
- "2017-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-16.tif"
- ],
- [
- "2017-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-17.tif"
- ],
- [
- "2017-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-18.tif"
- ],
- [
- "2017-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-19.tif"
- ],
- [
- "2017-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-20.tif"
- ],
- [
- "2017-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-21.tif"
- ],
- [
- "2017-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-22.tif"
- ],
- [
- "2017-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-23.tif"
- ],
- [
- "2017-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-24.tif"
- ],
- [
- "2017-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-25.tif"
- ],
- [
- "2017-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-26.tif"
- ],
- [
- "2017-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-27.tif"
- ],
- [
- "2017-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-28.tif"
- ],
- [
- "2017-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-29.tif"
- ],
- [
- "2017-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-06-30.tif"
- ],
- [
- "2017-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-01.tif"
- ],
- [
- "2017-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-02.tif"
- ],
- [
- "2017-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-03.tif"
- ],
- [
- "2017-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-04.tif"
- ],
- [
- "2017-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-05.tif"
- ],
- [
- "2017-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-06.tif"
- ],
- [
- "2017-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-07.tif"
- ],
- [
- "2017-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-08.tif"
- ],
- [
- "2017-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-09.tif"
- ],
- [
- "2017-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-10.tif"
- ],
- [
- "2017-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-11.tif"
- ],
- [
- "2017-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-12.tif"
- ],
- [
- "2017-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-13.tif"
- ],
- [
- "2017-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-14.tif"
- ],
- [
- "2017-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-15.tif"
- ],
- [
- "2017-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-16.tif"
- ],
- [
- "2017-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-17.tif"
- ],
- [
- "2017-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-18.tif"
- ],
- [
- "2017-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-19.tif"
- ],
- [
- "2017-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-20.tif"
- ],
- [
- "2017-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-21.tif"
- ],
- [
- "2017-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-22.tif"
- ],
- [
- "2017-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-23.tif"
- ],
- [
- "2017-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-24.tif"
- ],
- [
- "2017-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-25.tif"
- ],
- [
- "2017-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-26.tif"
- ],
- [
- "2017-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-27.tif"
- ],
- [
- "2017-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-28.tif"
- ],
- [
- "2017-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-29.tif"
- ],
- [
- "2017-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-30.tif"
- ],
- [
- "2017-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-07-31.tif"
- ],
- [
- "2017-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-01.tif"
- ],
- [
- "2017-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-02.tif"
- ],
- [
- "2017-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-03.tif"
- ],
- [
- "2017-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-04.tif"
- ],
- [
- "2017-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-05.tif"
- ],
- [
- "2017-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-06.tif"
- ],
- [
- "2017-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-07.tif"
- ],
- [
- "2017-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-08.tif"
- ],
- [
- "2017-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-09.tif"
- ],
- [
- "2017-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-10.tif"
- ],
- [
- "2017-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-11.tif"
- ],
- [
- "2017-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-12.tif"
- ],
- [
- "2017-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-13.tif"
- ],
- [
- "2017-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-14.tif"
- ],
- [
- "2017-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-15.tif"
- ],
- [
- "2017-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-16.tif"
- ],
- [
- "2017-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-17.tif"
- ],
- [
- "2017-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-18.tif"
- ],
- [
- "2017-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-19.tif"
- ],
- [
- "2017-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-20.tif"
- ],
- [
- "2017-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-21.tif"
- ],
- [
- "2017-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-22.tif"
- ],
- [
- "2017-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-23.tif"
- ],
- [
- "2017-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-24.tif"
- ],
- [
- "2017-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-25.tif"
- ],
- [
- "2017-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-26.tif"
- ],
- [
- "2017-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-27.tif"
- ],
- [
- "2017-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-28.tif"
- ],
- [
- "2017-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-29.tif"
- ],
- [
- "2017-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-30.tif"
- ],
- [
- "2017-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-08-31.tif"
- ],
- [
- "2017-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-01.tif"
- ],
- [
- "2017-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-02.tif"
- ],
- [
- "2017-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-03.tif"
- ],
- [
- "2017-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-04.tif"
- ],
- [
- "2017-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-05.tif"
- ],
- [
- "2017-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-06.tif"
- ],
- [
- "2017-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-07.tif"
- ],
- [
- "2017-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-08.tif"
- ],
- [
- "2017-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-09.tif"
- ],
- [
- "2017-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-10.tif"
- ],
- [
- "2017-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-11.tif"
- ],
- [
- "2017-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-12.tif"
- ],
- [
- "2017-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-13.tif"
- ],
- [
- "2017-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-14.tif"
- ],
- [
- "2017-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-15.tif"
- ],
- [
- "2017-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-16.tif"
- ],
- [
- "2017-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-17.tif"
- ],
- [
- "2017-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-18.tif"
- ],
- [
- "2017-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-19.tif"
- ],
- [
- "2017-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-20.tif"
- ],
- [
- "2017-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-21.tif"
- ],
- [
- "2017-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-22.tif"
- ],
- [
- "2017-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-23.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-24.tif"
- ],
- [
- "2017-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-25.tif"
- ],
- [
- "2017-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-26.tif"
- ],
- [
- "2017-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-27.tif"
- ],
- [
- "2017-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-28.tif"
- ],
- [
- "2017-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-29.tif"
- ],
- [
- "2017-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-09-30.tif"
- ],
- [
- "2017-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-01.tif"
- ],
- [
- "2017-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-02.tif"
- ],
- [
- "2017-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-03.tif"
- ],
- [
- "2017-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-04.tif"
- ],
- [
- "2017-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-05.tif"
- ],
- [
- "2017-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-06.tif"
- ],
- [
- "2017-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-07.tif"
- ],
- [
- "2017-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-08.tif"
- ],
- [
- "2017-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-09.tif"
- ],
- [
- "2017-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-10.tif"
- ],
- [
- "2017-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-11.tif"
- ],
- [
- "2017-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-12.tif"
- ],
- [
- "2017-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-13.tif"
- ],
- [
- "2017-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-14.tif"
- ],
- [
- "2017-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-15.tif"
- ],
- [
- "2017-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-16.tif"
- ],
- [
- "2017-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-17.tif"
- ],
- [
- "2017-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-18.tif"
- ],
- [
- "2017-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-19.tif"
- ],
- [
- "2017-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-20.tif"
- ],
- [
- "2017-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-21.tif"
- ],
- [
- "2017-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-22.tif"
- ],
- [
- "2017-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-23.tif"
- ],
- [
- "2017-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-24.tif"
- ],
- [
- "2017-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-25.tif"
- ],
- [
- "2017-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-26.tif"
- ],
- [
- "2017-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-27.tif"
- ],
- [
- "2017-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-28.tif"
- ],
- [
- "2017-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-29.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-30.tif"
- ],
- [
- "2017-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-10-31.tif"
- ],
- [
- "2017-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-01.tif"
- ],
- [
- "2017-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-02.tif"
- ],
- [
- "2017-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-03.tif"
- ],
- [
- "2017-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-04.tif"
- ],
- [
- "2017-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-05.tif"
- ],
- [
- "2017-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-06.tif"
- ],
- [
- "2017-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-07.tif"
- ],
- [
- "2017-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-08.tif"
- ],
- [
- "2017-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-09.tif"
- ],
- [
- "2017-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-10.tif"
- ],
- [
- "2017-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-11.tif"
- ],
- [
- "2017-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-12.tif"
- ],
- [
- "2017-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-13.tif"
- ],
- [
- "2017-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-14.tif"
- ],
- [
- "2017-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-15.tif"
- ],
- [
- "2017-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-16.tif"
- ],
- [
- "2017-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-17.tif"
- ],
- [
- "2017-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-18.tif"
- ],
- [
- "2017-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-19.tif"
- ],
- [
- "2017-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-20.tif"
- ],
- [
- "2017-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-21.tif"
- ],
- [
- "2017-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-22.tif"
- ],
- [
- "2017-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-23.tif"
- ],
- [
- "2017-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-24.tif"
- ],
- [
- "2017-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-25.tif"
- ],
- [
- "2017-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-26.tif"
- ],
- [
- "2017-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-27.tif"
- ],
- [
- "2017-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-28.tif"
- ],
- [
- "2017-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-29.tif"
- ],
- [
- "2017-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-11-30.tif"
- ],
- [
- "2017-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-01.tif"
- ],
- [
- "2017-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-02.tif"
- ],
- [
- "2017-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-03.tif"
- ],
- [
- "2017-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-04.tif"
- ],
- [
- "2017-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-05.tif"
- ],
- [
- "2017-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-06.tif"
- ],
- [
- "2017-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-07.tif"
- ],
- [
- "2017-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-08.tif"
- ],
- [
- "2017-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-09.tif"
- ],
- [
- "2017-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-10.tif"
- ],
- [
- "2017-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-11.tif"
- ],
- [
- "2017-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-12.tif"
- ],
- [
- "2017-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-13.tif"
- ],
- [
- "2017-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-14.tif"
- ],
- [
- "2017-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-15.tif"
- ],
- [
- "2017-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2017-12-16.tif"
- ],
- [
- "2018-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-01.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-02.tif"
- ],
- [
- "2018-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-03.tif"
- ],
- [
- "2018-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-04.tif"
- ],
- [
- "2018-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-05.tif"
- ],
- [
- "2018-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-06.tif"
- ],
- [
- "2018-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-07.tif"
- ],
- [
- "2018-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-08.tif"
- ],
- [
- "2018-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-09.tif"
- ],
- [
- "2018-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-10.tif"
- ],
- [
- "2018-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-11.tif"
- ],
- [
- "2018-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-12.tif"
- ],
- [
- "2018-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-13.tif"
- ],
- [
- "2018-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-14.tif"
- ],
- [
- "2018-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-15.tif"
- ],
- [
- "2018-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-16.tif"
- ],
- [
- "2018-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-17.tif"
- ],
- [
- "2018-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-18.tif"
- ],
- [
- "2018-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-19.tif"
- ],
- [
- "2018-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-20.tif"
- ],
- [
- "2018-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-21.tif"
- ],
- [
- "2018-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-22.tif"
- ],
- [
- "2018-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-23.tif"
- ],
- [
- "2018-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-24.tif"
- ],
- [
- "2018-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-25.tif"
- ],
- [
- "2018-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-26.tif"
- ],
- [
- "2018-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-27.tif"
- ],
- [
- "2018-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-28.tif"
- ],
- [
- "2018-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-29.tif"
- ],
- [
- "2018-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-30.tif"
- ],
- [
- "2018-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-01-31.tif"
- ],
- [
- "2018-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-01.tif"
- ],
- [
- "2018-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-02.tif"
- ],
- [
- "2018-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-03.tif"
- ],
- [
- "2018-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-04.tif"
- ],
- [
- "2018-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-05.tif"
- ],
- [
- "2018-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-06.tif"
- ],
- [
- "2018-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-07.tif"
- ],
- [
- "2018-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-08.tif"
- ],
- [
- "2018-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-09.tif"
- ],
- [
- "2018-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-10.tif"
- ],
- [
- "2018-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-11.tif"
- ],
- [
- "2018-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-12.tif"
- ],
- [
- "2018-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-13.tif"
- ],
- [
- "2018-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-14.tif"
- ],
- [
- "2018-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-15.tif"
- ],
- [
- "2018-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-16.tif"
- ],
- [
- "2018-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-17.tif"
- ],
- [
- "2018-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-18.tif"
- ],
- [
- "2018-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-19.tif"
- ],
- [
- "2018-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-20.tif"
- ],
- [
- "2018-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-21.tif"
- ],
- [
- "2018-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-22.tif"
- ],
- [
- "2018-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-23.tif"
- ],
- [
- "2018-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-24.tif"
- ],
- [
- "2018-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-25.tif"
- ],
- [
- "2018-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-26.tif"
- ],
- [
- "2018-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-27.tif"
- ],
- [
- "2018-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-02-28.tif"
- ],
- [
- "2018-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-01.tif"
- ],
- [
- "2018-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-02.tif"
- ],
- [
- "2018-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-03.tif"
- ],
- [
- "2018-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-04.tif"
- ],
- [
- "2018-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-05.tif"
- ],
- [
- "2018-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-06.tif"
- ],
- [
- "2018-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-07.tif"
- ],
- [
- "2018-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-08.tif"
- ],
- [
- "2018-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-09.tif"
- ],
- [
- "2018-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-10.tif"
- ],
- [
- "2018-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-11.tif"
- ],
- [
- "2018-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-12.tif"
- ],
- [
- "2018-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-13.tif"
- ],
- [
- "2018-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-14.tif"
- ],
- [
- "2018-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-15.tif"
- ],
- [
- "2018-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-16.tif"
- ],
- [
- "2018-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-17.tif"
- ],
- [
- "2018-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-18.tif"
- ],
- [
- "2018-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-19.tif"
- ],
- [
- "2018-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-20.tif"
- ],
- [
- "2018-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-21.tif"
- ],
- [
- "2018-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-22.tif"
- ],
- [
- "2018-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-23.tif"
- ],
- [
- "2018-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-24.tif"
- ],
- [
- "2018-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-25.tif"
- ],
- [
- "2018-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-26.tif"
- ],
- [
- "2018-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-27.tif"
- ],
- [
- "2018-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-28.tif"
- ],
- [
- "2018-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-29.tif"
- ],
- [
- "2018-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-30.tif"
- ],
- [
- "2018-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-03-31.tif"
- ],
- [
- "2018-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-01.tif"
- ],
- [
- "2018-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-02.tif"
- ],
- [
- "2018-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-03.tif"
- ],
- [
- "2018-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-04.tif"
- ],
- [
- "2018-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-05.tif"
- ],
- [
- "2018-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-06.tif"
- ],
- [
- "2018-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-07.tif"
- ],
- [
- "2018-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-08.tif"
- ],
- [
- "2018-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-09.tif"
- ],
- [
- "2018-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-10.tif"
- ],
- [
- "2018-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-11.tif"
- ],
- [
- "2018-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-12.tif"
- ],
- [
- "2018-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-13.tif"
- ],
- [
- "2018-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-14.tif"
- ],
- [
- "2018-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-15.tif"
- ],
- [
- "2018-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-16.tif"
- ],
- [
- "2018-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-17.tif"
- ],
- [
- "2018-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-18.tif"
- ],
- [
- "2018-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-19.tif"
- ],
- [
- "2018-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-20.tif"
- ],
- [
- "2018-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-21.tif"
- ],
- [
- "2018-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-22.tif"
- ],
- [
- "2018-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-23.tif"
- ],
- [
- "2018-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-24.tif"
- ],
- [
- "2018-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-25.tif"
- ],
- [
- "2018-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-26.tif"
- ],
- [
- "2018-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-27.tif"
- ],
- [
- "2018-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-28.tif"
- ],
- [
- "2018-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-29.tif"
- ],
- [
- "2018-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-04-30.tif"
- ],
- [
- "2018-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-01.tif"
- ],
- [
- "2018-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-02.tif"
- ],
- [
- "2018-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-03.tif"
- ],
- [
- "2018-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-04.tif"
- ],
- [
- "2018-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-05.tif"
- ],
- [
- "2018-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-06.tif"
- ],
- [
- "2018-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-07.tif"
- ],
- [
- "2018-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-08.tif"
- ],
- [
- "2018-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-09.tif"
- ],
- [
- "2018-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-10.tif"
- ],
- [
- "2018-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-11.tif"
- ],
- [
- "2018-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-12.tif"
- ],
- [
- "2018-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-13.tif"
- ],
- [
- "2018-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-14.tif"
- ],
- [
- "2018-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-15.tif"
- ],
- [
- "2018-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-16.tif"
- ],
- [
- "2018-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-17.tif"
- ],
- [
- "2018-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-18.tif"
- ],
- [
- "2018-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-19.tif"
- ],
- [
- "2018-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-20.tif"
- ],
- [
- "2018-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-21.tif"
- ],
- [
- "2018-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-22.tif"
- ],
- [
- "2018-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-23.tif"
- ],
- [
- "2018-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-24.tif"
- ],
- [
- "2018-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-25.tif"
- ],
- [
- "2018-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-26.tif"
- ],
- [
- "2018-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-27.tif"
- ],
- [
- "2018-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-28.tif"
- ],
- [
- "2018-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-29.tif"
- ],
- [
- "2018-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-30.tif"
- ],
- [
- "2018-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-05-31.tif"
- ],
- [
- "2018-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-01.tif"
- ],
- [
- "2018-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-02.tif"
- ],
- [
- "2018-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-03.tif"
- ],
- [
- "2018-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-04.tif"
- ],
- [
- "2018-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-05.tif"
- ],
- [
- "2018-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-06.tif"
- ],
- [
- "2018-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-07.tif"
- ],
- [
- "2018-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-08.tif"
- ],
- [
- "2018-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-09.tif"
- ],
- [
- "2018-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-10.tif"
- ],
- [
- "2018-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-11.tif"
- ],
- [
- "2018-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-12.tif"
- ],
- [
- "2018-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-13.tif"
- ],
- [
- "2018-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-14.tif"
- ],
- [
- "2018-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-15.tif"
- ],
- [
- "2018-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-16.tif"
- ],
- [
- "2018-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-17.tif"
- ],
- [
- "2018-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-18.tif"
- ],
- [
- "2018-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-19.tif"
- ],
- [
- "2018-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-20.tif"
- ],
- [
- "2018-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-21.tif"
- ],
- [
- "2018-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-22.tif"
- ],
- [
- "2018-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-23.tif"
- ],
- [
- "2018-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-24.tif"
- ],
- [
- "2018-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-25.tif"
- ],
- [
- "2018-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-26.tif"
- ],
- [
- "2018-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-27.tif"
- ],
- [
- "2018-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-28.tif"
- ],
- [
- "2018-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-29.tif"
- ],
- [
- "2018-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-06-30.tif"
- ],
- [
- "2018-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-01.tif"
- ],
- [
- "2018-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-02.tif"
- ],
- [
- "2018-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-03.tif"
- ],
- [
- "2018-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-04.tif"
- ],
- [
- "2018-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-05.tif"
- ],
- [
- "2018-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-06.tif"
- ],
- [
- "2018-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-07.tif"
- ],
- [
- "2018-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-08.tif"
- ],
- [
- "2018-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-09.tif"
- ],
- [
- "2018-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-10.tif"
- ],
- [
- "2018-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-11.tif"
- ],
- [
- "2018-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-12.tif"
- ],
- [
- "2018-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-13.tif"
- ],
- [
- "2018-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-14.tif"
- ],
- [
- "2018-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-15.tif"
- ],
- [
- "2018-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-16.tif"
- ],
- [
- "2018-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-17.tif"
- ],
- [
- "2018-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-18.tif"
- ],
- [
- "2018-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-19.tif"
- ],
- [
- "2018-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-20.tif"
- ],
- [
- "2018-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-21.tif"
- ],
- [
- "2018-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-22.tif"
- ],
- [
- "2018-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-23.tif"
- ],
- [
- "2018-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-24.tif"
- ],
- [
- "2018-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-25.tif"
- ],
- [
- "2018-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-26.tif"
- ],
- [
- "2018-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-27.tif"
- ],
- [
- "2018-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-28.tif"
- ],
- [
- "2018-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-29.tif"
- ],
- [
- "2018-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-30.tif"
- ],
- [
- "2018-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-07-31.tif"
- ],
- [
- "2018-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-01.tif"
- ],
- [
- "2018-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-02.tif"
- ],
- [
- "2018-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-03.tif"
- ],
- [
- "2018-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-04.tif"
- ],
- [
- "2018-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-05.tif"
- ],
- [
- "2018-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-06.tif"
- ],
- [
- "2018-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-07.tif"
- ],
- [
- "2018-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-08.tif"
- ],
- [
- "2018-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-09.tif"
- ],
- [
- "2018-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-10.tif"
- ],
- [
- "2018-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-11.tif"
- ],
- [
- "2018-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-12.tif"
- ],
- [
- "2018-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-13.tif"
- ],
- [
- "2018-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-14.tif"
- ],
- [
- "2018-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-15.tif"
- ],
- [
- "2018-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-16.tif"
- ],
- [
- "2018-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-17.tif"
- ],
- [
- "2018-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-18.tif"
- ],
- [
- "2018-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-19.tif"
- ],
- [
- "2018-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-20.tif"
- ],
- [
- "2018-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-21.tif"
- ],
- [
- "2018-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-22.tif"
- ],
- [
- "2018-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-23.tif"
- ],
- [
- "2018-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-24.tif"
- ],
- [
- "2018-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-25.tif"
- ],
- [
- "2018-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-26.tif"
- ],
- [
- "2018-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-27.tif"
- ],
- [
- "2018-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-28.tif"
- ],
- [
- "2018-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-29.tif"
- ],
- [
- "2018-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-30.tif"
- ],
- [
- "2018-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-08-31.tif"
- ],
- [
- "2018-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-01.tif"
- ],
- [
- "2018-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-02.tif"
- ],
- [
- "2018-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-03.tif"
- ],
- [
- "2018-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-04.tif"
- ],
- [
- "2018-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-05.tif"
- ],
- [
- "2018-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-06.tif"
- ],
- [
- "2018-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-07.tif"
- ],
- [
- "2018-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-08.tif"
- ],
- [
- "2018-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-09.tif"
- ],
- [
- "2018-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-10.tif"
- ],
- [
- "2018-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-11.tif"
- ],
- [
- "2018-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-12.tif"
- ],
- [
- "2018-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-13.tif"
- ],
- [
- "2018-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-14.tif"
- ],
- [
- "2018-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-15.tif"
- ],
- [
- "2018-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-16.tif"
- ],
- [
- "2018-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-17.tif"
- ],
- [
- "2018-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-18.tif"
- ],
- [
- "2018-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-19.tif"
- ],
- [
- "2018-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-20.tif"
- ],
- [
- "2018-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-21.tif"
- ],
- [
- "2018-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-22.tif"
- ],
- [
- "2018-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-23.tif"
- ],
- [
- "2018-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-24.tif"
- ],
- [
- "2018-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-25.tif"
- ],
- [
- "2018-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-26.tif"
- ],
- [
- "2018-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-27.tif"
- ],
- [
- "2018-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-28.tif"
- ],
- [
- "2018-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-29.tif"
- ],
- [
- "2018-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-09-30.tif"
- ],
- [
- "2018-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-01.tif"
- ],
- [
- "2018-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-02.tif"
- ],
- [
- "2018-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-03.tif"
- ],
- [
- "2018-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-04.tif"
- ],
- [
- "2018-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-05.tif"
- ],
- [
- "2018-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-06.tif"
- ],
- [
- "2018-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-07.tif"
- ],
- [
- "2018-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-08.tif"
- ],
- [
- "2018-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-09.tif"
- ],
- [
- "2018-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-10.tif"
- ],
- [
- "2018-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-11.tif"
- ],
- [
- "2018-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-12.tif"
- ],
- [
- "2018-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-13.tif"
- ],
- [
- "2018-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-14.tif"
- ],
- [
- "2018-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-15.tif"
- ],
- [
- "2018-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-16.tif"
- ],
- [
- "2018-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-17.tif"
- ],
- [
- "2018-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-18.tif"
- ],
- [
- "2018-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-19.tif"
- ],
- [
- "2018-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-20.tif"
- ],
- [
- "2018-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-21.tif"
- ],
- [
- "2018-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-22.tif"
- ],
- [
- "2018-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-23.tif"
- ],
- [
- "2018-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-24.tif"
- ],
- [
- "2018-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-25.tif"
- ],
- [
- "2018-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-26.tif"
- ],
- [
- "2018-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-27.tif"
- ],
- [
- "2018-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-28.tif"
- ],
- [
- "2018-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-29.tif"
- ],
- [
- "2018-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-30.tif"
- ],
- [
- "2018-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-10-31.tif"
- ],
- [
- "2018-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-01.tif"
- ],
- [
- "2018-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-02.tif"
- ],
- [
- "2018-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-03.tif"
- ],
- [
- "2018-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-04.tif"
- ],
- [
- "2018-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-05.tif"
- ],
- [
- "2018-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-06.tif"
- ],
- [
- "2018-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-07.tif"
- ],
- [
- "2018-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-08.tif"
- ],
- [
- "2018-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-09.tif"
- ],
- [
- "2018-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-10.tif"
- ],
- [
- "2018-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-11.tif"
- ],
- [
- "2018-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-12.tif"
- ],
- [
- "2018-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-13.tif"
- ],
- [
- "2018-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-14.tif"
- ],
- [
- "2018-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-15.tif"
- ],
- [
- "2018-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-16.tif"
- ],
- [
- "2018-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-17.tif"
- ],
- [
- "2018-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-18.tif"
- ],
- [
- "2018-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-19.tif"
- ],
- [
- "2018-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-20.tif"
- ],
- [
- "2018-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-21.tif"
- ],
- [
- "2018-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-22.tif"
- ],
- [
- "2018-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-23.tif"
- ],
- [
- "2018-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-24.tif"
- ],
- [
- "2018-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-25.tif"
- ],
- [
- "2018-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-26.tif"
- ],
- [
- "2018-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-27.tif"
- ],
- [
- "2018-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-28.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-29.tif"
- ],
- [
- "2018-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-11-30.tif"
- ],
- [
- "2018-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-01.tif"
- ],
- [
- "2018-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-02.tif"
- ],
- [
- "2018-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-03.tif"
- ],
- [
- "2018-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-04.tif"
- ],
- [
- "2018-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-05.tif"
- ],
- [
- "2018-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-06.tif"
- ],
- [
- "2018-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-07.tif"
- ],
- [
- "2018-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-08.tif"
- ],
- [
- "2018-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-09.tif"
- ],
- [
- "2018-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-10.tif"
- ],
- [
- "2018-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-11.tif"
- ],
- [
- "2018-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-12.tif"
- ],
- [
- "2018-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-13.tif"
- ],
- [
- "2018-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-14.tif"
- ],
- [
- "2018-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-15.tif"
- ],
- [
- "2018-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2018-12-16.tif"
- ],
- [
- "2019-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-01.tif"
- ],
- [
- "2019-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-02.tif"
- ],
- [
- "2019-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-03.tif"
- ],
- [
- "2019-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-04.tif"
- ],
- [
- "2019-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-05.tif"
- ],
- [
- "2019-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-06.tif"
- ],
- [
- "2019-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-07.tif"
- ],
- [
- "2019-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-08.tif"
- ],
- [
- "2019-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-09.tif"
- ],
- [
- "2019-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-10.tif"
- ],
- [
- "2019-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-11.tif"
- ],
- [
- "2019-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-12.tif"
- ],
- [
- "2019-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-13.tif"
- ],
- [
- "2019-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-14.tif"
- ],
- [
- "2019-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-15.tif"
- ],
- [
- "2019-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-16.tif"
- ],
- [
- "2019-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-17.tif"
- ],
- [
- "2019-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-18.tif"
- ],
- [
- "2019-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-19.tif"
- ],
- [
- "2019-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-20.tif"
- ],
- [
- "2019-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-21.tif"
- ],
- [
- "2019-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-22.tif"
- ],
- [
- "2019-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-23.tif"
- ],
- [
- "2019-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-24.tif"
- ],
- [
- "2019-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-25.tif"
- ],
- [
- "2019-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-26.tif"
- ],
- [
- "2019-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-27.tif"
- ],
- [
- "2019-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-28.tif"
- ],
- [
- "2019-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-29.tif"
- ],
- [
- "2019-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-30.tif"
- ],
- [
- "2019-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-01-31.tif"
- ],
- [
- "2019-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-01.tif"
- ],
- [
- "2019-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-02.tif"
- ],
- [
- "2019-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-03.tif"
- ],
- [
- "2019-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-04.tif"
- ],
- [
- "2019-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-05.tif"
- ],
- [
- "2019-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-06.tif"
- ],
- [
- "2019-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-07.tif"
- ],
- [
- "2019-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-08.tif"
- ],
- [
- "2019-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-09.tif"
- ],
- [
- "2019-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-10.tif"
- ],
- [
- "2019-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-11.tif"
- ],
- [
- "2019-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-12.tif"
- ],
- [
- "2019-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-13.tif"
- ],
- [
- "2019-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-14.tif"
- ],
- [
- "2019-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-15.tif"
- ],
- [
- "2019-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-16.tif"
- ],
- [
- "2019-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-17.tif"
- ],
- [
- "2019-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-18.tif"
- ],
- [
- "2019-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-19.tif"
- ],
- [
- "2019-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-20.tif"
- ],
- [
- "2019-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-21.tif"
- ],
- [
- "2019-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-22.tif"
- ],
- [
- "2019-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-23.tif"
- ],
- [
- "2019-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-24.tif"
- ],
- [
- "2019-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-25.tif"
- ],
- [
- "2019-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-26.tif"
- ],
- [
- "2019-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-27.tif"
- ],
- [
- "2019-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-02-28.tif"
- ],
- [
- "2019-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-01.tif"
- ],
- [
- "2019-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-02.tif"
- ],
- [
- "2019-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-03.tif"
- ],
- [
- "2019-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-04.tif"
- ],
- [
- "2019-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-05.tif"
- ],
- [
- "2019-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-06.tif"
- ],
- [
- "2019-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-07.tif"
- ],
- [
- "2019-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-08.tif"
- ],
- [
- "2019-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-09.tif"
- ],
- [
- "2019-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-10.tif"
- ],
- [
- "2019-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-11.tif"
- ],
- [
- "2019-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-12.tif"
- ],
- [
- "2019-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-13.tif"
- ],
- [
- "2019-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-14.tif"
- ],
- [
- "2019-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-15.tif"
- ],
- [
- "2019-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-16.tif"
- ],
- [
- "2019-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-17.tif"
- ],
- [
- "2019-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-18.tif"
- ],
- [
- "2019-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-19.tif"
- ],
- [
- "2019-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-20.tif"
- ],
- [
- "2019-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-21.tif"
- ],
- [
- "2019-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-22.tif"
- ],
- [
- "2019-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-23.tif"
- ],
- [
- "2019-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-24.tif"
- ],
- [
- "2019-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-25.tif"
- ],
- [
- "2019-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-26.tif"
- ],
- [
- "2019-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-27.tif"
- ],
- [
- "2019-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-28.tif"
- ],
- [
- "2019-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-29.tif"
- ],
- [
- "2019-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-30.tif"
- ],
- [
- "2019-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-03-31.tif"
- ],
- [
- "2019-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-01.tif"
- ],
- [
- "2019-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-02.tif"
- ],
- [
- "2019-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-03.tif"
- ],
- [
- "2019-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-04.tif"
- ],
- [
- "2019-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-05.tif"
- ],
- [
- "2019-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-06.tif"
- ],
- [
- "2019-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-07.tif"
- ],
- [
- "2019-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-08.tif"
- ],
- [
- "2019-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-09.tif"
- ],
- [
- "2019-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-10.tif"
- ],
- [
- "2019-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-11.tif"
- ],
- [
- "2019-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-12.tif"
- ],
- [
- "2019-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-13.tif"
- ],
- [
- "2019-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-14.tif"
- ],
- [
- "2019-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-15.tif"
- ],
- [
- "2019-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-16.tif"
- ],
- [
- "2019-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-17.tif"
- ],
- [
- "2019-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-18.tif"
- ],
- [
- "2019-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-19.tif"
- ],
- [
- "2019-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-20.tif"
- ],
- [
- "2019-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-21.tif"
- ],
- [
- "2019-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-22.tif"
- ],
- [
- "2019-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-23.tif"
- ],
- [
- "2019-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-24.tif"
- ],
- [
- "2019-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-25.tif"
- ],
- [
- "2019-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-26.tif"
- ],
- [
- "2019-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-27.tif"
- ],
- [
- "2019-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-28.tif"
- ],
- [
- "2019-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-29.tif"
- ],
- [
- "2019-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-04-30.tif"
- ],
- [
- "2019-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-01.tif"
- ],
- [
- "2019-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-02.tif"
- ],
- [
- "2019-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-03.tif"
- ],
- [
- "2019-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-04.tif"
- ],
- [
- "2019-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-05.tif"
- ],
- [
- "2019-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-06.tif"
- ],
- [
- "2019-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-07.tif"
- ],
- [
- "2019-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-08.tif"
- ],
- [
- "2019-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-09.tif"
- ],
- [
- "2019-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-10.tif"
- ],
- [
- "2019-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-11.tif"
- ],
- [
- "2019-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-12.tif"
- ],
- [
- "2019-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-13.tif"
- ],
- [
- "2019-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-14.tif"
- ],
- [
- "2019-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-15.tif"
- ],
- [
- "2019-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-16.tif"
- ],
- [
- "2019-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-17.tif"
- ],
- [
- "2019-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-18.tif"
- ],
- [
- "2019-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-19.tif"
- ],
- [
- "2019-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-20.tif"
- ],
- [
- "2019-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-21.tif"
- ],
- [
- "2019-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-22.tif"
- ],
- [
- "2019-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-23.tif"
- ],
- [
- "2019-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-24.tif"
- ],
- [
- "2019-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-25.tif"
- ],
- [
- "2019-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-26.tif"
- ],
- [
- "2019-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-27.tif"
- ],
- [
- "2019-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-28.tif"
- ],
- [
- "2019-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-29.tif"
- ],
- [
- "2019-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-30.tif"
- ],
- [
- "2019-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-05-31.tif"
- ],
- [
- "2019-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-01.tif"
- ],
- [
- "2019-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-02.tif"
- ],
- [
- "2019-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-03.tif"
- ],
- [
- "2019-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-04.tif"
- ],
- [
- "2019-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-05.tif"
- ],
- [
- "2019-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-06.tif"
- ],
- [
- "2019-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-07.tif"
- ],
- [
- "2019-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-08.tif"
- ],
- [
- "2019-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-09.tif"
- ],
- [
- "2019-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-10.tif"
- ],
- [
- "2019-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-11.tif"
- ],
- [
- "2019-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-12.tif"
- ],
- [
- "2019-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-13.tif"
- ],
- [
- "2019-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-14.tif"
- ],
- [
- "2019-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-15.tif"
- ],
- [
- "2019-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-16.tif"
- ],
- [
- "2019-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-17.tif"
- ],
- [
- "2019-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-18.tif"
- ],
- [
- "2019-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-19.tif"
- ],
- [
- "2019-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-20.tif"
- ],
- [
- "2019-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-21.tif"
- ],
- [
- "2019-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-22.tif"
- ],
- [
- "2019-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-23.tif"
- ],
- [
- "2019-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-24.tif"
- ],
- [
- "2019-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-25.tif"
- ],
- [
- "2019-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-26.tif"
- ],
- [
- "2019-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-27.tif"
- ],
- [
- "2019-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-28.tif"
- ],
- [
- "2019-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-29.tif"
- ],
- [
- "2019-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-06-30.tif"
- ],
- [
- "2019-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-01.tif"
- ],
- [
- "2019-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-02.tif"
- ],
- [
- "2019-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-03.tif"
- ],
- [
- "2019-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-04.tif"
- ],
- [
- "2019-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-05.tif"
- ],
- [
- "2019-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-06.tif"
- ],
- [
- "2019-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-07.tif"
- ],
- [
- "2019-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-08.tif"
- ],
- [
- "2019-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-09.tif"
- ],
- [
- "2019-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-10.tif"
- ],
- [
- "2019-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-11.tif"
- ],
- [
- "2019-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-12.tif"
- ],
- [
- "2019-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-13.tif"
- ],
- [
- "2019-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-14.tif"
- ],
- [
- "2019-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-15.tif"
- ],
- [
- "2019-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-16.tif"
- ],
- [
- "2019-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-17.tif"
- ],
- [
- "2019-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-18.tif"
- ],
- [
- "2019-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-19.tif"
- ],
- [
- "2019-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-20.tif"
- ],
- [
- "2019-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-21.tif"
- ],
- [
- "2019-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-22.tif"
- ],
- [
- "2019-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-23.tif"
- ],
- [
- "2019-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-24.tif"
- ],
- [
- "2019-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-25.tif"
- ],
- [
- "2019-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-26.tif"
- ],
- [
- "2019-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-27.tif"
- ],
- [
- "2019-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-28.tif"
- ],
- [
- "2019-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-29.tif"
- ],
- [
- "2019-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-30.tif"
- ],
- [
- "2019-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-07-31.tif"
- ],
- [
- "2019-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-01.tif"
- ],
- [
- "2019-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-02.tif"
- ],
- [
- "2019-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-03.tif"
- ],
- [
- "2019-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-04.tif"
- ],
- [
- "2019-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-05.tif"
- ],
- [
- "2019-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-06.tif"
- ],
- [
- "2019-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-07.tif"
- ],
- [
- "2019-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-08.tif"
- ],
- [
- "2019-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-09.tif"
- ],
- [
- "2019-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-10.tif"
- ],
- [
- "2019-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-11.tif"
- ],
- [
- "2019-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-12.tif"
- ],
- [
- "2019-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-13.tif"
- ],
- [
- "2019-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-14.tif"
- ],
- [
- "2019-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-15.tif"
- ],
- [
- "2019-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-16.tif"
- ],
- [
- "2019-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-17.tif"
- ],
- [
- "2019-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-18.tif"
- ],
- [
- "2019-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-19.tif"
- ],
- [
- "2019-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-20.tif"
- ],
- [
- "2019-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-21.tif"
- ],
- [
- "2019-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-22.tif"
- ],
- [
- "2019-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-23.tif"
- ],
- [
- "2019-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-24.tif"
- ],
- [
- "2019-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-25.tif"
- ],
- [
- "2019-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-26.tif"
- ],
- [
- "2019-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-27.tif"
- ],
- [
- "2019-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-28.tif"
- ],
- [
- "2019-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-29.tif"
- ],
- [
- "2019-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-30.tif"
- ],
- [
- "2019-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-08-31.tif"
- ],
- [
- "2019-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-01.tif"
- ],
- [
- "2019-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-02.tif"
- ],
- [
- "2019-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-03.tif"
- ],
- [
- "2019-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-04.tif"
- ],
- [
- "2019-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-05.tif"
- ],
- [
- "2019-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-06.tif"
- ],
- [
- "2019-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-07.tif"
- ],
- [
- "2019-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-08.tif"
- ],
- [
- "2019-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-09.tif"
- ],
- [
- "2019-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-10.tif"
- ],
- [
- "2019-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-11.tif"
- ],
- [
- "2019-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-12.tif"
- ],
- [
- "2019-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-13.tif"
- ],
- [
- "2019-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-14.tif"
- ],
- [
- "2019-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-15.tif"
- ],
- [
- "2019-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-16.tif"
- ],
- [
- "2019-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-17.tif"
- ],
- [
- "2019-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-18.tif"
- ],
- [
- "2019-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-19.tif"
- ],
- [
- "2019-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-20.tif"
- ],
- [
- "2019-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-21.tif"
- ],
- [
- "2019-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-22.tif"
- ],
- [
- "2019-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-23.tif"
- ],
- [
- "2019-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-24.tif"
- ],
- [
- "2019-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-25.tif"
- ],
- [
- "2019-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-26.tif"
- ],
- [
- "2019-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-27.tif"
- ],
- [
- "2019-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-28.tif"
- ],
- [
- "2019-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-29.tif"
- ],
- [
- "2019-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-09-30.tif"
- ],
- [
- "2019-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-01.tif"
- ],
- [
- "2019-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-02.tif"
- ],
- [
- "2019-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-03.tif"
- ],
- [
- "2019-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-04.tif"
- ],
- [
- "2019-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-05.tif"
- ],
- [
- "2019-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-06.tif"
- ],
- [
- "2019-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-07.tif"
- ],
- [
- "2019-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-08.tif"
- ],
- [
- "2019-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-09.tif"
- ],
- [
- "2019-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-10.tif"
- ],
- [
- "2019-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-11.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-12.tif"
- ],
- [
- "2019-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-13.tif"
- ],
- [
- "2019-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-14.tif"
- ],
- [
- "2019-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-15.tif"
- ],
- [
- "2019-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-16.tif"
- ],
- [
- "2019-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-17.tif"
- ],
- [
- "2019-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-18.tif"
- ],
- [
- "2019-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-19.tif"
- ],
- [
- "2019-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-20.tif"
- ],
- [
- "2019-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-21.tif"
- ],
- [
- "2019-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-22.tif"
- ],
- [
- "2019-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-23.tif"
- ],
- [
- "2019-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-24.tif"
- ],
- [
- "2019-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-25.tif"
- ],
- [
- "2019-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-26.tif"
- ],
- [
- "2019-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-27.tif"
- ],
- [
- "2019-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-28.tif"
- ],
- [
- "2019-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-29.tif"
- ],
- [
- "2019-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-30.tif"
- ],
- [
- "2019-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-10-31.tif"
- ],
- [
- "2019-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-01.tif"
- ],
- [
- "2019-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-02.tif"
- ],
- [
- "2019-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-03.tif"
- ],
- [
- "2019-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-04.tif"
- ],
- [
- "2019-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-05.tif"
- ],
- [
- "2019-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-06.tif"
- ],
- [
- "2019-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-07.tif"
- ],
- [
- "2019-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-08.tif"
- ],
- [
- "2019-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-09.tif"
- ],
- [
- "2019-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-10.tif"
- ],
- [
- "2019-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-11.tif"
- ],
- [
- "2019-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-12.tif"
- ],
- [
- "2019-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-13.tif"
- ],
- [
- "2019-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-14.tif"
- ],
- [
- "2019-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-15.tif"
- ],
- [
- "2019-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-16.tif"
- ],
- [
- "2019-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-17.tif"
- ],
- [
- "2019-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-18.tif"
- ],
- [
- "2019-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-19.tif"
- ],
- [
- "2019-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-20.tif"
- ],
- [
- "2019-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-21.tif"
- ],
- [
- "2019-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-22.tif"
- ],
- [
- "2019-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-23.tif"
- ],
- [
- "2019-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-24.tif"
- ],
- [
- "2019-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-25.tif"
- ],
- [
- "2019-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-26.tif"
- ],
- [
- "2019-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-27.tif"
- ],
- [
- "2019-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-28.tif"
- ],
- [
- "2019-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-29.tif"
- ],
- [
- "2019-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-11-30.tif"
- ],
- [
- "2019-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-01.tif"
- ],
- [
- "2019-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-02.tif"
- ],
- [
- "2019-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-03.tif"
- ],
- [
- "2019-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-04.tif"
- ],
- [
- "2019-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-05.tif"
- ],
- [
- "2019-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-06.tif"
- ],
- [
- "2019-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-07.tif"
- ],
- [
- "2019-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-08.tif"
- ],
- [
- "2019-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-09.tif"
- ],
- [
- "2019-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-10.tif"
- ],
- [
- "2019-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-11.tif"
- ],
- [
- "2019-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-12.tif"
- ],
- [
- "2019-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-13.tif"
- ],
- [
- "2019-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-14.tif"
- ],
- [
- "2019-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-15.tif"
- ],
- [
- "2019-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2019-12-16.tif"
- ],
- [
- "2020-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-01.tif"
- ],
- [
- "2020-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-02.tif"
- ],
- [
- "2020-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-03.tif"
- ],
- [
- "2020-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-04.tif"
- ],
- [
- "2020-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-05.tif"
- ],
- [
- "2020-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-06.tif"
- ],
- [
- "2020-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-07.tif"
- ],
- [
- "2020-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-08.tif"
- ],
- [
- "2020-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-09.tif"
- ],
- [
- "2020-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-10.tif"
- ],
- [
- "2020-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-11.tif"
- ],
- [
- "2020-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-12.tif"
- ],
- [
- "2020-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-13.tif"
- ],
- [
- "2020-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-14.tif"
- ],
- [
- "2020-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-15.tif"
- ],
- [
- "2020-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-16.tif"
- ],
- [
- "2020-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-17.tif"
- ],
- [
- "2020-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-18.tif"
- ],
- [
- "2020-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-19.tif"
- ],
- [
- "2020-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-20.tif"
- ],
- [
- "2020-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-21.tif"
- ],
- [
- "2020-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-22.tif"
- ],
- [
- "2020-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-23.tif"
- ],
- [
- "2020-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-24.tif"
- ],
- [
- "2020-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-25.tif"
- ],
- [
- "2020-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-26.tif"
- ],
- [
- "2020-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-27.tif"
- ],
- [
- "2020-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-28.tif"
- ],
- [
- "2020-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-29.tif"
- ],
- [
- "2020-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-30.tif"
- ],
- [
- "2020-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-01-31.tif"
- ],
- [
- "2020-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-01.tif"
- ],
- [
- "2020-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-02.tif"
- ],
- [
- "2020-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-03.tif"
- ],
- [
- "2020-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-04.tif"
- ],
- [
- "2020-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-05.tif"
- ],
- [
- "2020-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-06.tif"
- ],
- [
- "2020-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-07.tif"
- ],
- [
- "2020-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-08.tif"
- ],
- [
- "2020-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-09.tif"
- ],
- [
- "2020-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-10.tif"
- ],
- [
- "2020-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-11.tif"
- ],
- [
- "2020-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-12.tif"
- ],
- [
- "2020-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-13.tif"
- ],
- [
- "2020-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-14.tif"
- ],
- [
- "2020-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-15.tif"
- ],
- [
- "2020-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-16.tif"
- ],
- [
- "2020-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-17.tif"
- ],
- [
- "2020-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-18.tif"
- ],
- [
- "2020-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-19.tif"
- ],
- [
- "2020-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-20.tif"
- ],
- [
- "2020-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-21.tif"
- ],
- [
- "2020-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-22.tif"
- ],
- [
- "2020-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-23.tif"
- ],
- [
- "2020-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-24.tif"
- ],
- [
- "2020-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-25.tif"
- ],
- [
- "2020-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-26.tif"
- ],
- [
- "2020-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-27.tif"
- ],
- [
- "2020-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-28.tif"
- ],
- [
- "2020-02-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-02-29.tif"
- ],
- [
- "2020-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-01.tif"
- ],
- [
- "2020-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-02.tif"
- ],
- [
- "2020-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-03.tif"
- ],
- [
- "2020-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-04.tif"
- ],
- [
- "2020-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-05.tif"
- ],
- [
- "2020-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-06.tif"
- ],
- [
- "2020-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-07.tif"
- ],
- [
- "2020-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-08.tif"
- ],
- [
- "2020-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-09.tif"
- ],
- [
- "2020-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-10.tif"
- ],
- [
- "2020-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-11.tif"
- ],
- [
- "2020-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-12.tif"
- ],
- [
- "2020-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-13.tif"
- ],
- [
- "2020-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-14.tif"
- ],
- [
- "2020-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-15.tif"
- ],
- [
- "2020-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-16.tif"
- ],
- [
- "2020-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-17.tif"
- ],
- [
- "2020-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-18.tif"
- ],
- [
- "2020-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-19.tif"
- ],
- [
- "2020-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-20.tif"
- ],
- [
- "2020-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-21.tif"
- ],
- [
- "2020-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-22.tif"
- ],
- [
- "2020-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-23.tif"
- ],
- [
- "2020-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-24.tif"
- ],
- [
- "2020-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-25.tif"
- ],
- [
- "2020-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-26.tif"
- ],
- [
- "2020-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-27.tif"
- ],
- [
- "2020-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-28.tif"
- ],
- [
- "2020-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-29.tif"
- ],
- [
- "2020-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-30.tif"
- ],
- [
- "2020-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-03-31.tif"
- ],
- [
- "2020-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-01.tif"
- ],
- [
- "2020-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-02.tif"
- ],
- [
- "2020-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-03.tif"
- ],
- [
- "2020-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-04.tif"
- ],
- [
- "2020-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-05.tif"
- ],
- [
- "2020-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-06.tif"
- ],
- [
- "2020-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-07.tif"
- ],
- [
- "2020-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-08.tif"
- ],
- [
- "2020-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-09.tif"
- ],
- [
- "2020-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-10.tif"
- ],
- [
- "2020-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-11.tif"
- ],
- [
- "2020-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-12.tif"
- ],
- [
- "2020-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-13.tif"
- ],
- [
- "2020-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-14.tif"
- ],
- [
- "2020-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-15.tif"
- ],
- [
- "2020-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-16.tif"
- ],
- [
- "2020-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-17.tif"
- ],
- [
- "2020-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-18.tif"
- ],
- [
- "2020-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-19.tif"
- ],
- [
- "2020-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-20.tif"
- ],
- [
- "2020-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-21.tif"
- ],
- [
- "2020-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-22.tif"
- ],
- [
- "2020-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-23.tif"
- ],
- [
- "2020-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-24.tif"
- ],
- [
- "2020-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-25.tif"
- ],
- [
- "2020-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-26.tif"
- ],
- [
- "2020-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-27.tif"
- ],
- [
- "2020-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-28.tif"
- ],
- [
- "2020-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-29.tif"
- ],
- [
- "2020-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-04-30.tif"
- ],
- [
- "2020-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-01.tif"
- ],
- [
- "2020-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-02.tif"
- ],
- [
- "2020-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-03.tif"
- ],
- [
- "2020-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-04.tif"
- ],
- [
- "2020-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-05.tif"
- ],
- [
- "2020-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-06.tif"
- ],
- [
- "2020-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-07.tif"
- ],
- [
- "2020-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-08.tif"
- ],
- [
- "2020-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-09.tif"
- ],
- [
- "2020-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-10.tif"
- ],
- [
- "2020-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-11.tif"
- ],
- [
- "2020-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-12.tif"
- ],
- [
- "2020-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-13.tif"
- ],
- [
- "2020-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-14.tif"
- ],
- [
- "2020-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-15.tif"
- ],
- [
- "2020-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-16.tif"
- ],
- [
- "2020-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-17.tif"
- ],
- [
- "2020-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-18.tif"
- ],
- [
- "2020-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-19.tif"
- ],
- [
- "2020-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-20.tif"
- ],
- [
- "2020-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-21.tif"
- ],
- [
- "2020-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-22.tif"
- ],
- [
- "2020-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-23.tif"
- ],
- [
- "2020-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-24.tif"
- ],
- [
- "2020-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-25.tif"
- ],
- [
- "2020-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-26.tif"
- ],
- [
- "2020-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-27.tif"
- ],
- [
- "2020-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-28.tif"
- ],
- [
- "2020-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-29.tif"
- ],
- [
- "2020-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-30.tif"
- ],
- [
- "2020-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-05-31.tif"
- ],
- [
- "2020-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-01.tif"
- ],
- [
- "2020-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-02.tif"
- ],
- [
- "2020-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-03.tif"
- ],
- [
- "2020-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-04.tif"
- ],
- [
- "2020-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-05.tif"
- ],
- [
- "2020-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-06.tif"
- ],
- [
- "2020-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-07.tif"
- ],
- [
- "2020-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-08.tif"
- ],
- [
- "2020-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-09.tif"
- ],
- [
- "2020-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-10.tif"
- ],
- [
- "2020-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-11.tif"
- ],
- [
- "2020-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-12.tif"
- ],
- [
- "2020-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-13.tif"
- ],
- [
- "2020-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-14.tif"
- ],
- [
- "2020-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-15.tif"
- ],
- [
- "2020-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-16.tif"
- ],
- [
- "2020-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-17.tif"
- ],
- [
- "2020-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-18.tif"
- ],
- [
- "2020-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-19.tif"
- ],
- [
- "2020-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-20.tif"
- ],
- [
- "2020-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-21.tif"
- ],
- [
- "2020-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-22.tif"
- ],
- [
- "2020-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-23.tif"
- ],
- [
- "2020-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-24.tif"
- ],
- [
- "2020-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-25.tif"
- ],
- [
- "2020-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-26.tif"
- ],
- [
- "2020-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-27.tif"
- ],
- [
- "2020-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-28.tif"
- ],
- [
- "2020-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-29.tif"
- ],
- [
- "2020-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-06-30.tif"
- ],
- [
- "2020-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-01.tif"
- ],
- [
- "2020-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-02.tif"
- ],
- [
- "2020-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-03.tif"
- ],
- [
- "2020-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-04.tif"
- ],
- [
- "2020-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-05.tif"
- ],
- [
- "2020-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-06.tif"
- ],
- [
- "2020-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-07.tif"
- ],
- [
- "2020-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-08.tif"
- ],
- [
- "2020-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-09.tif"
- ],
- [
- "2020-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-10.tif"
- ],
- [
- "2020-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-11.tif"
- ],
- [
- "2020-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-12.tif"
- ],
- [
- "2020-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-13.tif"
- ],
- [
- "2020-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-14.tif"
- ],
- [
- "2020-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-15.tif"
- ],
- [
- "2020-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-16.tif"
- ],
- [
- "2020-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-17.tif"
- ],
- [
- "2020-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-18.tif"
- ],
- [
- "2020-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-19.tif"
- ],
- [
- "2020-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-20.tif"
- ],
- [
- "2020-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-21.tif"
- ],
- [
- "2020-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-22.tif"
- ],
- [
- "2020-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-23.tif"
- ],
- [
- "2020-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-24.tif"
- ],
- [
- "2020-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-25.tif"
- ],
- [
- "2020-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-26.tif"
- ],
- [
- "2020-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-27.tif"
- ],
- [
- "2020-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-28.tif"
- ],
- [
- "2020-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-29.tif"
- ],
- [
- "2020-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-30.tif"
- ],
- [
- "2020-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-07-31.tif"
- ],
- [
- "2020-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-01.tif"
- ],
- [
- "2020-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-02.tif"
- ],
- [
- "2020-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-03.tif"
- ],
- [
- "2020-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-04.tif"
- ],
- [
- "2020-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-05.tif"
- ],
- [
- "2020-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-06.tif"
- ],
- [
- "2020-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-07.tif"
- ],
- [
- "2020-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-08.tif"
- ],
- [
- "2020-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-09.tif"
- ],
- [
- "2020-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-10.tif"
- ],
- [
- "2020-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-11.tif"
- ],
- [
- "2020-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-12.tif"
- ],
- [
- "2020-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-13.tif"
- ],
- [
- "2020-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-14.tif"
- ],
- [
- "2020-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-15.tif"
- ],
- [
- "2020-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-16.tif"
- ],
- [
- "2020-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-17.tif"
- ],
- [
- "2020-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-18.tif"
- ],
- [
- "2020-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-19.tif"
- ],
- [
- "2020-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-20.tif"
- ],
- [
- "2020-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-21.tif"
- ],
- [
- "2020-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-22.tif"
- ],
- [
- "2020-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-23.tif"
- ],
- [
- "2020-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-24.tif"
- ],
- [
- "2020-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-25.tif"
- ],
- [
- "2020-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-26.tif"
- ],
- [
- "2020-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-27.tif"
- ],
- [
- "2020-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-28.tif"
- ],
- [
- "2020-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-29.tif"
- ],
- [
- "2020-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-30.tif"
- ],
- [
- "2020-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-08-31.tif"
- ],
- [
- "2020-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-01.tif"
- ],
- [
- "2020-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-02.tif"
- ],
- [
- "2020-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-03.tif"
- ],
- [
- "2020-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-04.tif"
- ],
- [
- "2020-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-05.tif"
- ],
- [
- "2020-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-06.tif"
- ],
- [
- "2020-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-07.tif"
- ],
- [
- "2020-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-08.tif"
- ],
- [
- "2020-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-09.tif"
- ],
- [
- "2020-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-10.tif"
- ],
- [
- "2020-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-11.tif"
- ],
- [
- "2020-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-12.tif"
- ],
- [
- "2020-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-13.tif"
- ],
- [
- "2020-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-14.tif"
- ],
- [
- "2020-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-15.tif"
- ],
- [
- "2020-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-16.tif"
- ],
- [
- "2020-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-17.tif"
- ],
- [
- "2020-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-18.tif"
- ],
- [
- "2020-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-19.tif"
- ],
- [
- "2020-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-20.tif"
- ],
- [
- "2020-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-21.tif"
- ],
- [
- "2020-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-22.tif"
- ],
- [
- "2020-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-23.tif"
- ],
- [
- "2020-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-24.tif"
- ],
- [
- "2020-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-25.tif"
- ],
- [
- "2020-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-26.tif"
- ],
- [
- "2020-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-27.tif"
- ],
- [
- "2020-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-28.tif"
- ],
- [
- "2020-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-29.tif"
- ],
- [
- "2020-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-09-30.tif"
- ],
- [
- "2020-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-01.tif"
- ],
- [
- "2020-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-02.tif"
- ],
- [
- "2020-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-03.tif"
- ],
- [
- "2020-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-04.tif"
- ],
- [
- "2020-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-05.tif"
- ],
- [
- "2020-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-06.tif"
- ],
- [
- "2020-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-07.tif"
- ],
- [
- "2020-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-08.tif"
- ],
- [
- "2020-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-09.tif"
- ],
- [
- "2020-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-10.tif"
- ],
- [
- "2020-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-11.tif"
- ],
- [
- "2020-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-12.tif"
- ],
- [
- "2020-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-13.tif"
- ],
- [
- "2020-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-14.tif"
- ],
- [
- "2020-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-15.tif"
- ],
- [
- "2020-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-16.tif"
- ],
- [
- "2020-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-17.tif"
- ],
- [
- "2020-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-18.tif"
- ],
- [
- "2020-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-19.tif"
- ],
- [
- "2020-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-20.tif"
- ],
- [
- "2020-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-21.tif"
- ],
- [
- "2020-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-22.tif"
- ],
- [
- "2020-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-23.tif"
- ],
- [
- "2020-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-24.tif"
- ],
- [
- "2020-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-25.tif"
- ],
- [
- "2020-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-26.tif"
- ],
- [
- "2020-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-27.tif"
- ],
- [
- "2020-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-28.tif"
- ],
- [
- "2020-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-29.tif"
- ],
- [
- "2020-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-30.tif"
- ],
- [
- "2020-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-10-31.tif"
- ],
- [
- "2020-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-01.tif"
- ],
- [
- "2020-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-02.tif"
- ],
- [
- "2020-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-03.tif"
- ],
- [
- "2020-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-04.tif"
- ],
- [
- "2020-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-05.tif"
- ],
- [
- "2020-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-06.tif"
- ],
- [
- "2020-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-07.tif"
- ],
- [
- "2020-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-08.tif"
- ],
- [
- "2020-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-09.tif"
- ],
- [
- "2020-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-10.tif"
- ],
- [
- "2020-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-11.tif"
- ],
- [
- "2020-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-12.tif"
- ],
- [
- "2020-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-13.tif"
- ],
- [
- "2020-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-14.tif"
- ],
- [
- "2020-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-15.tif"
- ],
- [
- "2020-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-16.tif"
- ],
- [
- "2020-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-17.tif"
- ],
- [
- "2020-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-18.tif"
- ],
- [
- "2020-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-19.tif"
- ],
- [
- "2020-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-20.tif"
- ],
- [
- "2020-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-21.tif"
- ],
- [
- "2020-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-22.tif"
- ],
- [
- "2020-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-23.tif"
- ],
- [
- "2020-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-24.tif"
- ],
- [
- "2020-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-25.tif"
- ],
- [
- "2020-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-26.tif"
- ],
- [
- "2020-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-27.tif"
- ],
- [
- "2020-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-28.tif"
- ],
- [
- "2020-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-29.tif"
- ],
- [
- "2020-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-11-30.tif"
- ],
- [
- "2020-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-01.tif"
- ],
- [
- "2020-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-02.tif"
- ],
- [
- "2020-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-03.tif"
- ],
- [
- "2020-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-04.tif"
- ],
- [
- "2020-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-05.tif"
- ],
- [
- "2020-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-06.tif"
- ],
- [
- "2020-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-07.tif"
- ],
- [
- "2020-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-08.tif"
- ],
- [
- "2020-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-09.tif"
- ],
- [
- "2020-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-10.tif"
- ],
- [
- "2020-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-11.tif"
- ],
- [
- "2020-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-12.tif"
- ],
- [
- "2020-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-13.tif"
- ],
- [
- "2020-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-14.tif"
- ],
- [
- "2020-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-15.tif"
- ],
- [
- "2020-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2020-12-16.tif"
- ],
- [
- "2021-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-01.tif"
- ],
- [
- "2021-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-02.tif"
- ],
- [
- "2021-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-03.tif"
- ],
- [
- "2021-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-04.tif"
- ],
- [
- "2021-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-05.tif"
- ],
- [
- "2021-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-06.tif"
- ],
- [
- "2021-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-07.tif"
- ],
- [
- "2021-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-08.tif"
- ],
- [
- "2021-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-09.tif"
- ],
- [
- "2021-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-10.tif"
- ],
- [
- "2021-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-11.tif"
- ],
- [
- "2021-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-12.tif"
- ],
- [
- "2021-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-13.tif"
- ],
- [
- "2021-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-14.tif"
- ],
- [
- "2021-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-15.tif"
- ],
- [
- "2021-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-16.tif"
- ],
- [
- "2021-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-17.tif"
- ],
- [
- "2021-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-18.tif"
- ],
- [
- "2021-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-19.tif"
- ],
- [
- "2021-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-20.tif"
- ],
- [
- "2021-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-21.tif"
- ],
- [
- "2021-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-22.tif"
- ],
- [
- "2021-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-23.tif"
- ],
- [
- "2021-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-24.tif"
- ],
- [
- "2021-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-25.tif"
- ],
- [
- "2021-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-26.tif"
- ],
- [
- "2021-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-27.tif"
- ],
- [
- "2021-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-28.tif"
- ],
- [
- "2021-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-29.tif"
- ],
- [
- "2021-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-30.tif"
- ],
- [
- "2021-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-01-31.tif"
- ],
- [
- "2021-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-01.tif"
- ],
- [
- "2021-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-02.tif"
- ],
- [
- "2021-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-03.tif"
- ],
- [
- "2021-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-04.tif"
- ],
- [
- "2021-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-05.tif"
- ],
- [
- "2021-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-06.tif"
- ],
- [
- "2021-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-07.tif"
- ],
- [
- "2021-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-08.tif"
- ],
- [
- "2021-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-09.tif"
- ],
- [
- "2021-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-10.tif"
- ],
- [
- "2021-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-11.tif"
- ],
- [
- "2021-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-12.tif"
- ],
- [
- "2021-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-13.tif"
- ],
- [
- "2021-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-14.tif"
- ],
- [
- "2021-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-15.tif"
- ],
- [
- "2021-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-16.tif"
- ],
- [
- "2021-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-17.tif"
- ],
- [
- "2021-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-18.tif"
- ],
- [
- "2021-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-19.tif"
- ],
- [
- "2021-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-20.tif"
- ],
- [
- "2021-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-21.tif"
- ],
- [
- "2021-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-22.tif"
- ],
- [
- "2021-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-23.tif"
- ],
- [
- "2021-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-24.tif"
- ],
- [
- "2021-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-25.tif"
- ],
- [
- "2021-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-26.tif"
- ],
- [
- "2021-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-27.tif"
- ],
- [
- "2021-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-02-28.tif"
- ],
- [
- "2021-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-01.tif"
- ],
- [
- "2021-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-02.tif"
- ],
- [
- "2021-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-03.tif"
- ],
- [
- "2021-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-04.tif"
- ],
- [
- "2021-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-05.tif"
- ],
- [
- "2021-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-06.tif"
- ],
- [
- "2021-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-07.tif"
- ],
- [
- "2021-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-08.tif"
- ],
- [
- "2021-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-09.tif"
- ],
- [
- "2021-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-10.tif"
- ],
- [
- "2021-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-11.tif"
- ],
- [
- "2021-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-12.tif"
- ],
- [
- "2021-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-13.tif"
- ],
- [
- "2021-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-14.tif"
- ],
- [
- "2021-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-15.tif"
- ],
- [
- "2021-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-16.tif"
- ],
- [
- "2021-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-17.tif"
- ],
- [
- "2021-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-18.tif"
- ],
- [
- "2021-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-19.tif"
- ],
- [
- "2021-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-20.tif"
- ],
- [
- "2021-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-21.tif"
- ],
- [
- "2021-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-22.tif"
- ],
- [
- "2021-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-23.tif"
- ],
- [
- "2021-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-24.tif"
- ],
- [
- "2021-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-25.tif"
- ],
- [
- "2021-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-26.tif"
- ],
- [
- "2021-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-27.tif"
- ],
- [
- "2021-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-28.tif"
- ],
- [
- "2021-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-29.tif"
- ],
- [
- "2021-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-30.tif"
- ],
- [
- "2021-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-03-31.tif"
- ],
- [
- "2021-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-01.tif"
- ],
- [
- "2021-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-02.tif"
- ],
- [
- "2021-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-03.tif"
- ],
- [
- "2021-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-04.tif"
- ],
- [
- "2021-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-05.tif"
- ],
- [
- "2021-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-06.tif"
- ],
- [
- "2021-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-07.tif"
- ],
- [
- "2021-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-08.tif"
- ],
- [
- "2021-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-09.tif"
- ],
- [
- "2021-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-10.tif"
- ],
- [
- "2021-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-11.tif"
- ],
- [
- "2021-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-12.tif"
- ],
- [
- "2021-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-13.tif"
- ],
- [
- "2021-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-14.tif"
- ],
- [
- "2021-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-15.tif"
- ],
- [
- "2021-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-16.tif"
- ],
- [
- "2021-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-17.tif"
- ],
- [
- "2021-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-18.tif"
- ],
- [
- "2021-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-19.tif"
- ],
- [
- "2021-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-20.tif"
- ],
- [
- "2021-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-21.tif"
- ],
- [
- "2021-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-22.tif"
- ],
- [
- "2021-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-23.tif"
- ],
- [
- "2021-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-24.tif"
- ],
- [
- "2021-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-25.tif"
- ],
- [
- "2021-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-26.tif"
- ],
- [
- "2021-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-27.tif"
- ],
- [
- "2021-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-28.tif"
- ],
- [
- "2021-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-29.tif"
- ],
- [
- "2021-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-04-30.tif"
- ],
- [
- "2021-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-01.tif"
- ],
- [
- "2021-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-02.tif"
- ],
- [
- "2021-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-03.tif"
- ],
- [
- "2021-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-04.tif"
- ],
- [
- "2021-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-05.tif"
- ],
- [
- "2021-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-06.tif"
- ],
- [
- "2021-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-07.tif"
- ],
- [
- "2021-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-08.tif"
- ],
- [
- "2021-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-09.tif"
- ],
- [
- "2021-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-10.tif"
- ],
- [
- "2021-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-11.tif"
- ],
- [
- "2021-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-12.tif"
- ],
- [
- "2021-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-13.tif"
- ],
- [
- "2021-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-14.tif"
- ],
- [
- "2021-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-15.tif"
- ],
- [
- "2021-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-16.tif"
- ],
- [
- "2021-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-17.tif"
- ],
- [
- "2021-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-18.tif"
- ],
- [
- "2021-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-19.tif"
- ],
- [
- "2021-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-20.tif"
- ],
- [
- "2021-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-21.tif"
- ],
- [
- "2021-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-22.tif"
- ],
- [
- "2021-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-23.tif"
- ],
- [
- "2021-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-24.tif"
- ],
- [
- "2021-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-25.tif"
- ],
- [
- "2021-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-26.tif"
- ],
- [
- "2021-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-27.tif"
- ],
- [
- "2021-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-28.tif"
- ],
- [
- "2021-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-29.tif"
- ],
- [
- "2021-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-30.tif"
- ],
- [
- "2021-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-05-31.tif"
- ],
- [
- "2021-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-01.tif"
- ],
- [
- "2021-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-02.tif"
- ],
- [
- "2021-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-03.tif"
- ],
- [
- "2021-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-04.tif"
- ],
- [
- "2021-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-05.tif"
- ],
- [
- "2021-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-06.tif"
- ],
- [
- "2021-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-07.tif"
- ],
- [
- "2021-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-08.tif"
- ],
- [
- "2021-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-09.tif"
- ],
- [
- "2021-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-10.tif"
- ],
- [
- "2021-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-11.tif"
- ],
- [
- "2021-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-12.tif"
- ],
- [
- "2021-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-13.tif"
- ],
- [
- "2021-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-14.tif"
- ],
- [
- "2021-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-15.tif"
- ],
- [
- "2021-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-16.tif"
- ],
- [
- "2021-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-17.tif"
- ],
- [
- "2021-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-18.tif"
- ],
- [
- "2021-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-19.tif"
- ],
- [
- "2021-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-20.tif"
- ],
- [
- "2021-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-21.tif"
- ],
- [
- "2021-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-22.tif"
- ],
- [
- "2021-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-23.tif"
- ],
- [
- "2021-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-24.tif"
- ],
- [
- "2021-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-25.tif"
- ],
- [
- "2021-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-26.tif"
- ],
- [
- "2021-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-27.tif"
- ],
- [
- "2021-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-28.tif"
- ],
- [
- "2021-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-29.tif"
- ],
- [
- "2021-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-06-30.tif"
- ],
- [
- "2021-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-01.tif"
- ],
- [
- "2021-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-02.tif"
- ],
- [
- "2021-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-03.tif"
- ],
- [
- "2021-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-04.tif"
- ],
- [
- "2021-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-05.tif"
- ],
- [
- "2021-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-06.tif"
- ],
- [
- "2021-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-07.tif"
- ],
- [
- "2021-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-08.tif"
- ],
- [
- "2021-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-09.tif"
- ],
- [
- "2021-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-10.tif"
- ],
- [
- "2021-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-11.tif"
- ],
- [
- "2021-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-12.tif"
- ],
- [
- "2021-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-13.tif"
- ],
- [
- "2021-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-14.tif"
- ],
- [
- "2021-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-15.tif"
- ],
- [
- "2021-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-16.tif"
- ],
- [
- "2021-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-17.tif"
- ],
- [
- "2021-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-18.tif"
- ],
- [
- "2021-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-19.tif"
- ],
- [
- "2021-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-20.tif"
- ],
- [
- "2021-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-21.tif"
- ],
- [
- "2021-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-22.tif"
- ],
- [
- "2021-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-23.tif"
- ],
- [
- "2021-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-24.tif"
- ],
- [
- "2021-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-25.tif"
- ],
- [
- "2021-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-26.tif"
- ],
- [
- "2021-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-27.tif"
- ],
- [
- "2021-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-28.tif"
- ],
- [
- "2021-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-29.tif"
- ],
- [
- "2021-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-30.tif"
- ],
- [
- "2021-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-07-31.tif"
- ],
- [
- "2021-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-01.tif"
- ],
- [
- "2021-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-02.tif"
- ],
- [
- "2021-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-03.tif"
- ],
- [
- "2021-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-04.tif"
- ],
- [
- "2021-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-05.tif"
- ],
- [
- "2021-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-06.tif"
- ],
- [
- "2021-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-07.tif"
- ],
- [
- "2021-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-08.tif"
- ],
- [
- "2021-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-09.tif"
- ],
- [
- "2021-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-10.tif"
- ],
- [
- "2021-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-11.tif"
- ],
- [
- "2021-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-12.tif"
- ],
- [
- "2021-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-13.tif"
- ],
- [
- "2021-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-14.tif"
- ],
- [
- "2021-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-15.tif"
- ],
- [
- "2021-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-16.tif"
- ],
- [
- "2021-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-17.tif"
- ],
- [
- "2021-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-18.tif"
- ],
- [
- "2021-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-19.tif"
- ],
- [
- "2021-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-20.tif"
- ],
- [
- "2021-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-21.tif"
- ],
- [
- "2021-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-22.tif"
- ],
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-23.tif"
- ],
- [
- "2021-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-24.tif"
- ],
- [
- "2021-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-25.tif"
- ],
- [
- "2021-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-26.tif"
- ],
- [
- "2021-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-27.tif"
- ],
- [
- "2021-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-28.tif"
- ],
- [
- "2021-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-29.tif"
- ],
- [
- "2021-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-30.tif"
- ],
- [
- "2021-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-08-31.tif"
- ],
- [
- "2021-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-01.tif"
- ],
- [
- "2021-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-02.tif"
- ],
- [
- "2021-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-03.tif"
- ],
- [
- "2021-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-04.tif"
- ],
- [
- "2021-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-05.tif"
- ],
- [
- "2021-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-06.tif"
- ],
- [
- "2021-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-07.tif"
- ],
- [
- "2021-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-08.tif"
- ],
- [
- "2021-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-09.tif"
- ],
- [
- "2021-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-10.tif"
- ],
- [
- "2021-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-11.tif"
- ],
- [
- "2021-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-12.tif"
- ],
- [
- "2021-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-13.tif"
- ],
- [
- "2021-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-14.tif"
- ],
- [
- "2021-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-15.tif"
- ],
- [
- "2021-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-16.tif"
- ],
- [
- "2021-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-17.tif"
- ],
- [
- "2021-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-18.tif"
- ],
- [
- "2021-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-19.tif"
- ],
- [
- "2021-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-20.tif"
- ],
- [
- "2021-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-21.tif"
- ],
- [
- "2021-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-22.tif"
- ],
- [
- "2021-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-23.tif"
- ],
- [
- "2021-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-24.tif"
- ],
- [
- "2021-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-25.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-26.tif"
- ],
- [
- "2021-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-27.tif"
- ],
- [
- "2021-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-28.tif"
- ],
- [
- "2021-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-29.tif"
- ],
- [
- "2021-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-09-30.tif"
- ],
- [
- "2021-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-01.tif"
- ],
- [
- "2021-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-02.tif"
- ],
- [
- "2021-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-03.tif"
- ],
- [
- "2021-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-04.tif"
- ],
- [
- "2021-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-05.tif"
- ],
- [
- "2021-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-06.tif"
- ],
- [
- "2021-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-07.tif"
- ],
- [
- "2021-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-08.tif"
- ],
- [
- "2021-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-09.tif"
- ],
- [
- "2021-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-10.tif"
- ],
- [
- "2021-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-11.tif"
- ],
- [
- "2021-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-12.tif"
- ],
- [
- "2021-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-13.tif"
- ],
- [
- "2021-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-14.tif"
- ],
- [
- "2021-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-15.tif"
- ],
- [
- "2021-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-16.tif"
- ],
- [
- "2021-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-17.tif"
- ],
- [
- "2021-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-18.tif"
- ],
- [
- "2021-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-19.tif"
- ],
- [
- "2021-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-20.tif"
- ],
- [
- "2021-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-21.tif"
- ],
- [
- "2021-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-22.tif"
- ],
- [
- "2021-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-23.tif"
- ],
- [
- "2021-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-24.tif"
- ],
- [
- "2021-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-25.tif"
- ],
- [
- "2021-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-26.tif"
- ],
- [
- "2021-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-27.tif"
- ],
- [
- "2021-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-28.tif"
- ],
- [
- "2021-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-29.tif"
- ],
- [
- "2021-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-30.tif"
- ],
- [
- "2021-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-10-31.tif"
- ],
- [
- "2021-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-01.tif"
- ],
- [
- "2021-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-02.tif"
- ],
- [
- "2021-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-03.tif"
- ],
- [
- "2021-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-04.tif"
- ],
- [
- "2021-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-05.tif"
- ],
- [
- "2021-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-06.tif"
- ],
- [
- "2021-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-07.tif"
- ],
- [
- "2021-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-08.tif"
- ],
- [
- "2021-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-09.tif"
- ],
- [
- "2021-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-10.tif"
- ],
- [
- "2021-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-11.tif"
- ],
- [
- "2021-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-12.tif"
- ],
- [
- "2021-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-13.tif"
- ],
- [
- "2021-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-14.tif"
- ],
- [
- "2021-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-15.tif"
- ],
- [
- "2021-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-16.tif"
- ],
- [
- "2021-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-17.tif"
- ],
- [
- "2021-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-18.tif"
- ],
- [
- "2021-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-19.tif"
- ],
- [
- "2021-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-20.tif"
- ],
- [
- "2021-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-21.tif"
- ],
- [
- "2021-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-22.tif"
- ],
- [
- "2021-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-23.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-24.tif"
- ],
- [
- "2021-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-25.tif"
- ],
- [
- "2021-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-26.tif"
- ],
- [
- "2021-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-27.tif"
- ],
- [
- "2021-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-28.tif"
- ],
- [
- "2021-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-29.tif"
- ],
- [
- "2021-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-11-30.tif"
- ],
- [
- "2021-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-01.tif"
- ],
- [
- "2021-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-02.tif"
- ],
- [
- "2021-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-03.tif"
- ],
- [
- "2021-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-04.tif"
- ],
- [
- "2021-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-05.tif"
- ],
- [
- "2021-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-06.tif"
- ],
- [
- "2021-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-07.tif"
- ],
- [
- "2021-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-08.tif"
- ],
- [
- "2021-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-09.tif"
- ],
- [
- "2021-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-10.tif"
- ],
- [
- "2021-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-11.tif"
- ],
- [
- "2021-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-12.tif"
- ],
- [
- "2021-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-13.tif"
- ],
- [
- "2021-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-14.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-15.tif"
- ],
- [
- "2021-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2021-12-16.tif"
- ],
- [
- "2022-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-01.tif"
- ],
- [
- "2022-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-02.tif"
- ],
- [
- "2022-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-03.tif"
- ],
- [
- "2022-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-04.tif"
- ],
- [
- "2022-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-05.tif"
- ],
- [
- "2022-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-06.tif"
- ],
- [
- "2022-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-07.tif"
- ],
- [
- "2022-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-08.tif"
- ],
- [
- "2022-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-09.tif"
- ],
- [
- "2022-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-10.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-11.tif"
- ],
- [
- "2022-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-12.tif"
- ],
- [
- "2022-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-13.tif"
- ],
- [
- "2022-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-14.tif"
- ],
- [
- "2022-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-15.tif"
- ],
- [
- "2022-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-16.tif"
- ],
- [
- "2022-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-17.tif"
- ],
- [
- "2022-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-18.tif"
- ],
- [
- "2022-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-19.tif"
- ],
- [
- "2022-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-20.tif"
- ],
- [
- "2022-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-21.tif"
- ],
- [
- "2022-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-22.tif"
- ],
- [
- "2022-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-23.tif"
- ],
- [
- "2022-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-24.tif"
- ],
- [
- "2022-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-25.tif"
- ],
- [
- "2022-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-26.tif"
- ],
- [
- "2022-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-27.tif"
- ],
- [
- "2022-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-28.tif"
- ],
- [
- "2022-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-29.tif"
- ],
- [
- "2022-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-30.tif"
- ],
- [
- "2022-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-01-31.tif"
- ],
- [
- "2022-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-01.tif"
- ],
- [
- "2022-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-02.tif"
- ],
- [
- "2022-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-03.tif"
- ],
- [
- "2022-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-04.tif"
- ],
- [
- "2022-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-05.tif"
- ],
- [
- "2022-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-06.tif"
- ],
- [
- "2022-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-07.tif"
- ],
- [
- "2022-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-08.tif"
- ],
- [
- "2022-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-09.tif"
- ],
- [
- "2022-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-10.tif"
- ],
- [
- "2022-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-12.tif"
- ],
- [
- "2022-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-diff/xco2_16day_diff._2022-02-13.tif"
- ]
- ],
- "co2-mean": [
- [
- "2015-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-01.tif"
- ],
- [
- "2015-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-02.tif"
- ],
- [
- "2015-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-03.tif"
- ],
- [
- "2015-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-04.tif"
- ],
- [
- "2015-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-05.tif"
- ],
- [
- "2015-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-06.tif"
- ],
- [
- "2015-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-07.tif"
- ],
- [
- "2015-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-08.tif"
- ],
- [
- "2015-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-09.tif"
- ],
- [
- "2015-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-10.tif"
- ],
- [
- "2015-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-11.tif"
- ],
- [
- "2015-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-12.tif"
- ],
- [
- "2015-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-13.tif"
- ],
- [
- "2015-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-14.tif"
- ],
- [
- "2015-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-15.tif"
- ],
- [
- "2015-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-16.tif"
- ],
- [
- "2015-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-17.tif"
- ],
- [
- "2015-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-18.tif"
- ],
- [
- "2015-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-19.tif"
- ],
- [
- "2015-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-20.tif"
- ],
- [
- "2015-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-21.tif"
- ],
- [
- "2015-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-22.tif"
- ],
- [
- "2015-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-23.tif"
- ],
- [
- "2015-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-24.tif"
- ],
- [
- "2015-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-25.tif"
- ],
- [
- "2015-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-26.tif"
- ],
- [
- "2015-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-27.tif"
- ],
- [
- "2015-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-28.tif"
- ],
- [
- "2015-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-29.tif"
- ],
- [
- "2015-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-30.tif"
- ],
- [
- "2015-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-01-31.tif"
- ],
- [
- "2015-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-01.tif"
- ],
- [
- "2015-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-02.tif"
- ],
- [
- "2015-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-03.tif"
- ],
- [
- "2015-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-04.tif"
- ],
- [
- "2015-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-05.tif"
- ],
- [
- "2015-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-06.tif"
- ],
- [
- "2015-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-07.tif"
- ],
- [
- "2015-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-08.tif"
- ],
- [
- "2015-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-09.tif"
- ],
- [
- "2015-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-10.tif"
- ],
- [
- "2015-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-11.tif"
- ],
- [
- "2015-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-12.tif"
- ],
- [
- "2015-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-13.tif"
- ],
- [
- "2015-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-14.tif"
- ],
- [
- "2015-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-15.tif"
- ],
- [
- "2015-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-16.tif"
- ],
- [
- "2015-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-17.tif"
- ],
- [
- "2015-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-18.tif"
- ],
- [
- "2015-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-19.tif"
- ],
- [
- "2015-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-20.tif"
- ],
- [
- "2015-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-21.tif"
- ],
- [
- "2015-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-22.tif"
- ],
- [
- "2015-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-23.tif"
- ],
- [
- "2015-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-24.tif"
- ],
- [
- "2015-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-25.tif"
- ],
- [
- "2015-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-26.tif"
- ],
- [
- "2015-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-27.tif"
- ],
- [
- "2015-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-02-28.tif"
- ],
- [
- "2015-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-01.tif"
- ],
- [
- "2015-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-02.tif"
- ],
- [
- "2015-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-03.tif"
- ],
- [
- "2015-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-04.tif"
- ],
- [
- "2015-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-05.tif"
- ],
- [
- "2015-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-06.tif"
- ],
- [
- "2015-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-07.tif"
- ],
- [
- "2015-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-08.tif"
- ],
- [
- "2015-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-09.tif"
- ],
- [
- "2015-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-10.tif"
- ],
- [
- "2015-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-11.tif"
- ],
- [
- "2015-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-12.tif"
- ],
- [
- "2015-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-13.tif"
- ],
- [
- "2015-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-14.tif"
- ],
- [
- "2015-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-15.tif"
- ],
- [
- "2015-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-16.tif"
- ],
- [
- "2015-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-17.tif"
- ],
- [
- "2015-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-18.tif"
- ],
- [
- "2015-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-19.tif"
- ],
- [
- "2015-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-20.tif"
- ],
- [
- "2015-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-21.tif"
- ],
- [
- "2015-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-22.tif"
- ],
- [
- "2015-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-23.tif"
- ],
- [
- "2015-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-24.tif"
- ],
- [
- "2015-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-25.tif"
- ],
- [
- "2015-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-26.tif"
- ],
- [
- "2015-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-27.tif"
- ],
- [
- "2015-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-28.tif"
- ],
- [
- "2015-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-29.tif"
- ],
- [
- "2015-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-30.tif"
- ],
- [
- "2015-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-03-31.tif"
- ],
- [
- "2015-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-01.tif"
- ],
- [
- "2015-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-02.tif"
- ],
- [
- "2015-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-03.tif"
- ],
- [
- "2015-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-04.tif"
- ],
- [
- "2015-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-05.tif"
- ],
- [
- "2015-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-06.tif"
- ],
- [
- "2015-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-07.tif"
- ],
- [
- "2015-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-08.tif"
- ],
- [
- "2015-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-09.tif"
- ],
- [
- "2015-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-10.tif"
- ],
- [
- "2015-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-11.tif"
- ],
- [
- "2015-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-12.tif"
- ],
- [
- "2015-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-13.tif"
- ],
- [
- "2015-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-14.tif"
- ],
- [
- "2015-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-15.tif"
- ],
- [
- "2015-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-16.tif"
- ],
- [
- "2015-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-17.tif"
- ],
- [
- "2015-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-18.tif"
- ],
- [
- "2015-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-19.tif"
- ],
- [
- "2015-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-20.tif"
- ],
- [
- "2015-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-21.tif"
- ],
- [
- "2015-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-22.tif"
- ],
- [
- "2015-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-23.tif"
- ],
- [
- "2015-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-24.tif"
- ],
- [
- "2015-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-25.tif"
- ],
- [
- "2015-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-26.tif"
- ],
- [
- "2015-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-27.tif"
- ],
- [
- "2015-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-28.tif"
- ],
- [
- "2015-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-29.tif"
- ],
- [
- "2015-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-04-30.tif"
- ],
- [
- "2015-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-01.tif"
- ],
- [
- "2015-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-02.tif"
- ],
- [
- "2015-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-03.tif"
- ],
- [
- "2015-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-04.tif"
- ],
- [
- "2015-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-05.tif"
- ],
- [
- "2015-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-06.tif"
- ],
- [
- "2015-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-07.tif"
- ],
- [
- "2015-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-08.tif"
- ],
- [
- "2015-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-09.tif"
- ],
- [
- "2015-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-10.tif"
- ],
- [
- "2015-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-11.tif"
- ],
- [
- "2015-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-12.tif"
- ],
- [
- "2015-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-13.tif"
- ],
- [
- "2015-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-14.tif"
- ],
- [
- "2015-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-15.tif"
- ],
- [
- "2015-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-16.tif"
- ],
- [
- "2015-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-17.tif"
- ],
- [
- "2015-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-18.tif"
- ],
- [
- "2015-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-19.tif"
- ],
- [
- "2015-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-20.tif"
- ],
- [
- "2015-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-21.tif"
- ],
- [
- "2015-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-22.tif"
- ],
- [
- "2015-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-23.tif"
- ],
- [
- "2015-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-24.tif"
- ],
- [
- "2015-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-25.tif"
- ],
- [
- "2015-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-26.tif"
- ],
- [
- "2015-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-27.tif"
- ],
- [
- "2015-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-28.tif"
- ],
- [
- "2015-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-29.tif"
- ],
- [
- "2015-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-30.tif"
- ],
- [
- "2015-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-05-31.tif"
- ],
- [
- "2015-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-01.tif"
- ],
- [
- "2015-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-02.tif"
- ],
- [
- "2015-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-03.tif"
- ],
- [
- "2015-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-04.tif"
- ],
- [
- "2015-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-05.tif"
- ],
- [
- "2015-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-06.tif"
- ],
- [
- "2015-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-07.tif"
- ],
- [
- "2015-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-08.tif"
- ],
- [
- "2015-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-09.tif"
- ],
- [
- "2015-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-10.tif"
- ],
- [
- "2015-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-11.tif"
- ],
- [
- "2015-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-12.tif"
- ],
- [
- "2015-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-13.tif"
- ],
- [
- "2015-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-14.tif"
- ],
- [
- "2015-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-15.tif"
- ],
- [
- "2015-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-16.tif"
- ],
- [
- "2015-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-17.tif"
- ],
- [
- "2015-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-18.tif"
- ],
- [
- "2015-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-19.tif"
- ],
- [
- "2015-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-20.tif"
- ],
- [
- "2015-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-21.tif"
- ],
- [
- "2015-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-22.tif"
- ],
- [
- "2015-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-23.tif"
- ],
- [
- "2015-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-24.tif"
- ],
- [
- "2015-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-25.tif"
- ],
- [
- "2015-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-26.tif"
- ],
- [
- "2015-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-27.tif"
- ],
- [
- "2015-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-28.tif"
- ],
- [
- "2015-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-29.tif"
- ],
- [
- "2015-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-06-30.tif"
- ],
- [
- "2015-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-01.tif"
- ],
- [
- "2015-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-02.tif"
- ],
- [
- "2015-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-03.tif"
- ],
- [
- "2015-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-04.tif"
- ],
- [
- "2015-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-05.tif"
- ],
- [
- "2015-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-06.tif"
- ],
- [
- "2015-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-07.tif"
- ],
- [
- "2015-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-08.tif"
- ],
- [
- "2015-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-09.tif"
- ],
- [
- "2015-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-10.tif"
- ],
- [
- "2015-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-11.tif"
- ],
- [
- "2015-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-12.tif"
- ],
- [
- "2015-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-13.tif"
- ],
- [
- "2015-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-14.tif"
- ],
- [
- "2015-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-15.tif"
- ],
- [
- "2015-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-16.tif"
- ],
- [
- "2015-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-17.tif"
- ],
- [
- "2015-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-18.tif"
- ],
- [
- "2015-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-19.tif"
- ],
- [
- "2015-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-20.tif"
- ],
- [
- "2015-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-21.tif"
- ],
- [
- "2015-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-22.tif"
- ],
- [
- "2015-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-23.tif"
- ],
- [
- "2015-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-24.tif"
- ],
- [
- "2015-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-25.tif"
- ],
- [
- "2015-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-26.tif"
- ],
- [
- "2015-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-27.tif"
- ],
- [
- "2015-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-28.tif"
- ],
- [
- "2015-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-29.tif"
- ],
- [
- "2015-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-30.tif"
- ],
- [
- "2015-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-07-31.tif"
- ],
- [
- "2015-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-01.tif"
- ],
- [
- "2015-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-02.tif"
- ],
- [
- "2015-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-03.tif"
- ],
- [
- "2015-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-04.tif"
- ],
- [
- "2015-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-05.tif"
- ],
- [
- "2015-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-06.tif"
- ],
- [
- "2015-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-07.tif"
- ],
- [
- "2015-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-08.tif"
- ],
- [
- "2015-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-09.tif"
- ],
- [
- "2015-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-10.tif"
- ],
- [
- "2015-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-11.tif"
- ],
- [
- "2015-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-12.tif"
- ],
- [
- "2015-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-13.tif"
- ],
- [
- "2015-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-14.tif"
- ],
- [
- "2015-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-15.tif"
- ],
- [
- "2015-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-16.tif"
- ],
- [
- "2015-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-17.tif"
- ],
- [
- "2015-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-18.tif"
- ],
- [
- "2015-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-19.tif"
- ],
- [
- "2015-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-20.tif"
- ],
- [
- "2015-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-21.tif"
- ],
- [
- "2015-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-22.tif"
- ],
- [
- "2015-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-23.tif"
- ],
- [
- "2015-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-24.tif"
- ],
- [
- "2015-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-25.tif"
- ],
- [
- "2015-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-26.tif"
- ],
- [
- "2015-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-27.tif"
- ],
- [
- "2015-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-28.tif"
- ],
- [
- "2015-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-29.tif"
- ],
- [
- "2015-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-30.tif"
- ],
- [
- "2015-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-08-31.tif"
- ],
- [
- "2015-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-01.tif"
- ],
- [
- "2015-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-02.tif"
- ],
- [
- "2015-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-03.tif"
- ],
- [
- "2015-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-04.tif"
- ],
- [
- "2015-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-05.tif"
- ],
- [
- "2015-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-06.tif"
- ],
- [
- "2015-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-07.tif"
- ],
- [
- "2015-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-08.tif"
- ],
- [
- "2015-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-09.tif"
- ],
- [
- "2015-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-10.tif"
- ],
- [
- "2015-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-11.tif"
- ],
- [
- "2015-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-12.tif"
- ],
- [
- "2015-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-13.tif"
- ],
- [
- "2015-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-14.tif"
- ],
- [
- "2015-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-15.tif"
- ],
- [
- "2015-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-16.tif"
- ],
- [
- "2015-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-17.tif"
- ],
- [
- "2015-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-18.tif"
- ],
- [
- "2015-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-19.tif"
- ],
- [
- "2015-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-20.tif"
- ],
- [
- "2015-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-21.tif"
- ],
- [
- "2015-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-22.tif"
- ],
- [
- "2015-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-23.tif"
- ],
- [
- "2015-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-24.tif"
- ],
- [
- "2015-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-25.tif"
- ],
- [
- "2015-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-26.tif"
- ],
- [
- "2015-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-27.tif"
- ],
- [
- "2015-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-28.tif"
- ],
- [
- "2015-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-29.tif"
- ],
- [
- "2015-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-09-30.tif"
- ],
- [
- "2015-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-01.tif"
- ],
- [
- "2015-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-02.tif"
- ],
- [
- "2015-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-03.tif"
- ],
- [
- "2015-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-04.tif"
- ],
- [
- "2015-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-05.tif"
- ],
- [
- "2015-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-06.tif"
- ],
- [
- "2015-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-07.tif"
- ],
- [
- "2015-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-08.tif"
- ],
- [
- "2015-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-09.tif"
- ],
- [
- "2015-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-10.tif"
- ],
- [
- "2015-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-11.tif"
- ],
- [
- "2015-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-12.tif"
- ],
- [
- "2015-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-13.tif"
- ],
- [
- "2015-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-14.tif"
- ],
- [
- "2015-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-15.tif"
- ],
- [
- "2015-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-16.tif"
- ],
- [
- "2015-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-17.tif"
- ],
- [
- "2015-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-18.tif"
- ],
- [
- "2015-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-19.tif"
- ],
- [
- "2015-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-20.tif"
- ],
- [
- "2015-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-21.tif"
- ],
- [
- "2015-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-22.tif"
- ],
- [
- "2015-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-23.tif"
- ],
- [
- "2015-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-24.tif"
- ],
- [
- "2015-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-25.tif"
- ],
- [
- "2015-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-26.tif"
- ],
- [
- "2015-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-27.tif"
- ],
- [
- "2015-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-28.tif"
- ],
- [
- "2015-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-29.tif"
- ],
- [
- "2015-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-30.tif"
- ],
- [
- "2015-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-10-31.tif"
- ],
- [
- "2015-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-01.tif"
- ],
- [
- "2015-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-02.tif"
- ],
- [
- "2015-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-03.tif"
- ],
- [
- "2015-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-04.tif"
- ],
- [
- "2015-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-05.tif"
- ],
- [
- "2015-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-06.tif"
- ],
- [
- "2015-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-07.tif"
- ],
- [
- "2015-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-08.tif"
- ],
- [
- "2015-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-09.tif"
- ],
- [
- "2015-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-10.tif"
- ],
- [
- "2015-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-11.tif"
- ],
- [
- "2015-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-12.tif"
- ],
- [
- "2015-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-13.tif"
- ],
- [
- "2015-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-14.tif"
- ],
- [
- "2015-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-15.tif"
- ],
- [
- "2015-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-16.tif"
- ],
- [
- "2015-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-17.tif"
- ],
- [
- "2015-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-18.tif"
- ],
- [
- "2015-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-19.tif"
- ],
- [
- "2015-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-20.tif"
- ],
- [
- "2015-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-21.tif"
- ],
- [
- "2015-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-22.tif"
- ],
- [
- "2015-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-23.tif"
- ],
- [
- "2015-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-24.tif"
- ],
- [
- "2015-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-25.tif"
- ],
- [
- "2015-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-26.tif"
- ],
- [
- "2015-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-27.tif"
- ],
- [
- "2015-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-28.tif"
- ],
- [
- "2015-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-29.tif"
- ],
- [
- "2015-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-11-30.tif"
- ],
- [
- "2015-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-01.tif"
- ],
- [
- "2015-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-02.tif"
- ],
- [
- "2015-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-03.tif"
- ],
- [
- "2015-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-04.tif"
- ],
- [
- "2015-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-05.tif"
- ],
- [
- "2015-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-06.tif"
- ],
- [
- "2015-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-07.tif"
- ],
- [
- "2015-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-08.tif"
- ],
- [
- "2015-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-09.tif"
- ],
- [
- "2015-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-10.tif"
- ],
- [
- "2015-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-11.tif"
- ],
- [
- "2015-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-12.tif"
- ],
- [
- "2015-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-13.tif"
- ],
- [
- "2015-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-14.tif"
- ],
- [
- "2015-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-15.tif"
- ],
- [
- "2015-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2015-12-16.tif"
- ],
- [
- "2016-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-01.tif"
- ],
- [
- "2016-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-02.tif"
- ],
- [
- "2016-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-03.tif"
- ],
- [
- "2016-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-04.tif"
- ],
- [
- "2016-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-05.tif"
- ],
- [
- "2016-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-06.tif"
- ],
- [
- "2016-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-07.tif"
- ],
- [
- "2016-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-08.tif"
- ],
- [
- "2016-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-09.tif"
- ],
- [
- "2016-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-10.tif"
- ],
- [
- "2016-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-11.tif"
- ],
- [
- "2016-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-12.tif"
- ],
- [
- "2016-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-13.tif"
- ],
- [
- "2016-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-14.tif"
- ],
- [
- "2016-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-15.tif"
- ],
- [
- "2016-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-16.tif"
- ],
- [
- "2016-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-17.tif"
- ],
- [
- "2016-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-18.tif"
- ],
- [
- "2016-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-19.tif"
- ],
- [
- "2016-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-20.tif"
- ],
- [
- "2016-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-21.tif"
- ],
- [
- "2016-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-22.tif"
- ],
- [
- "2016-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-23.tif"
- ],
- [
- "2016-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-24.tif"
- ],
- [
- "2016-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-25.tif"
- ],
- [
- "2016-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-26.tif"
- ],
- [
- "2016-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-27.tif"
- ],
- [
- "2016-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-28.tif"
- ],
- [
- "2016-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-29.tif"
- ],
- [
- "2016-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-30.tif"
- ],
- [
- "2016-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-01-31.tif"
- ],
- [
- "2016-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-01.tif"
- ],
- [
- "2016-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-02.tif"
- ],
- [
- "2016-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-03.tif"
- ],
- [
- "2016-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-04.tif"
- ],
- [
- "2016-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-05.tif"
- ],
- [
- "2016-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-06.tif"
- ],
- [
- "2016-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-07.tif"
- ],
- [
- "2016-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-08.tif"
- ],
- [
- "2016-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-09.tif"
- ],
- [
- "2016-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-10.tif"
- ],
- [
- "2016-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-11.tif"
- ],
- [
- "2016-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-12.tif"
- ],
- [
- "2016-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-13.tif"
- ],
- [
- "2016-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-14.tif"
- ],
- [
- "2016-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-15.tif"
- ],
- [
- "2016-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-16.tif"
- ],
- [
- "2016-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-17.tif"
- ],
- [
- "2016-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-18.tif"
- ],
- [
- "2016-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-19.tif"
- ],
- [
- "2016-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-20.tif"
- ],
- [
- "2016-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-21.tif"
- ],
- [
- "2016-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-22.tif"
- ],
- [
- "2016-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-23.tif"
- ],
- [
- "2016-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-24.tif"
- ],
- [
- "2016-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-25.tif"
- ],
- [
- "2016-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-26.tif"
- ],
- [
- "2016-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-27.tif"
- ],
- [
- "2016-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-28.tif"
- ],
- [
- "2016-02-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-02-29.tif"
- ],
- [
- "2016-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-01.tif"
- ],
- [
- "2016-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-02.tif"
- ],
- [
- "2016-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-03.tif"
- ],
- [
- "2016-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-04.tif"
- ],
- [
- "2016-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-05.tif"
- ],
- [
- "2016-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-06.tif"
- ],
- [
- "2016-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-07.tif"
- ],
- [
- "2016-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-08.tif"
- ],
- [
- "2016-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-09.tif"
- ],
- [
- "2016-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-10.tif"
- ],
- [
- "2016-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-11.tif"
- ],
- [
- "2016-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-12.tif"
- ],
- [
- "2016-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-13.tif"
- ],
- [
- "2016-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-14.tif"
- ],
- [
- "2016-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-15.tif"
- ],
- [
- "2016-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-16.tif"
- ],
- [
- "2016-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-17.tif"
- ],
- [
- "2016-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-18.tif"
- ],
- [
- "2016-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-19.tif"
- ],
- [
- "2016-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-20.tif"
- ],
- [
- "2016-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-21.tif"
- ],
- [
- "2016-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-22.tif"
- ],
- [
- "2016-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-23.tif"
- ],
- [
- "2016-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-24.tif"
- ],
- [
- "2016-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-25.tif"
- ],
- [
- "2016-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-26.tif"
- ],
- [
- "2016-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-27.tif"
- ],
- [
- "2016-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-28.tif"
- ],
- [
- "2016-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-29.tif"
- ],
- [
- "2016-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-30.tif"
- ],
- [
- "2016-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-03-31.tif"
- ],
- [
- "2016-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-01.tif"
- ],
- [
- "2016-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-02.tif"
- ],
- [
- "2016-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-03.tif"
- ],
- [
- "2016-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-04.tif"
- ],
- [
- "2016-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-05.tif"
- ],
- [
- "2016-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-06.tif"
- ],
- [
- "2016-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-07.tif"
- ],
- [
- "2016-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-08.tif"
- ],
- [
- "2016-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-09.tif"
- ],
- [
- "2016-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-10.tif"
- ],
- [
- "2016-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-11.tif"
- ],
- [
- "2016-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-12.tif"
- ],
- [
- "2016-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-13.tif"
- ],
- [
- "2016-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-14.tif"
- ],
- [
- "2016-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-15.tif"
- ],
- [
- "2016-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-16.tif"
- ],
- [
- "2016-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-17.tif"
- ],
- [
- "2016-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-18.tif"
- ],
- [
- "2016-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-19.tif"
- ],
- [
- "2016-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-20.tif"
- ],
- [
- "2016-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-21.tif"
- ],
- [
- "2016-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-22.tif"
- ],
- [
- "2016-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-23.tif"
- ],
- [
- "2016-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-24.tif"
- ],
- [
- "2016-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-25.tif"
- ],
- [
- "2016-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-26.tif"
- ],
- [
- "2016-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-27.tif"
- ],
- [
- "2016-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-28.tif"
- ],
- [
- "2016-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-29.tif"
- ],
- [
- "2016-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-04-30.tif"
- ],
- [
- "2016-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-01.tif"
- ],
- [
- "2016-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-02.tif"
- ],
- [
- "2016-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-03.tif"
- ],
- [
- "2016-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-04.tif"
- ],
- [
- "2016-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-05.tif"
- ],
- [
- "2016-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-06.tif"
- ],
- [
- "2016-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-07.tif"
- ],
- [
- "2016-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-08.tif"
- ],
- [
- "2016-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-09.tif"
- ],
- [
- "2016-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-10.tif"
- ],
- [
- "2016-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-11.tif"
- ],
- [
- "2016-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-12.tif"
- ],
- [
- "2016-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-13.tif"
- ],
- [
- "2016-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-14.tif"
- ],
- [
- "2016-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-15.tif"
- ],
- [
- "2016-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-16.tif"
- ],
- [
- "2016-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-17.tif"
- ],
- [
- "2016-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-18.tif"
- ],
- [
- "2016-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-19.tif"
- ],
- [
- "2016-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-20.tif"
- ],
- [
- "2016-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-21.tif"
- ],
- [
- "2016-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-22.tif"
- ],
- [
- "2016-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-23.tif"
- ],
- [
- "2016-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-24.tif"
- ],
- [
- "2016-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-25.tif"
- ],
- [
- "2016-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-26.tif"
- ],
- [
- "2016-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-27.tif"
- ],
- [
- "2016-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-28.tif"
- ],
- [
- "2016-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-29.tif"
- ],
- [
- "2016-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-30.tif"
- ],
- [
- "2016-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-05-31.tif"
- ],
- [
- "2016-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-01.tif"
- ],
- [
- "2016-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-02.tif"
- ],
- [
- "2016-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-03.tif"
- ],
- [
- "2016-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-04.tif"
- ],
- [
- "2016-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-05.tif"
- ],
- [
- "2016-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-06.tif"
- ],
- [
- "2016-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-07.tif"
- ],
- [
- "2016-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-08.tif"
- ],
- [
- "2016-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-09.tif"
- ],
- [
- "2016-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-10.tif"
- ],
- [
- "2016-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-11.tif"
- ],
- [
- "2016-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-12.tif"
- ],
- [
- "2016-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-13.tif"
- ],
- [
- "2016-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-14.tif"
- ],
- [
- "2016-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-15.tif"
- ],
- [
- "2016-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-16.tif"
- ],
- [
- "2016-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-17.tif"
- ],
- [
- "2016-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-18.tif"
- ],
- [
- "2016-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-19.tif"
- ],
- [
- "2016-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-20.tif"
- ],
- [
- "2016-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-21.tif"
- ],
- [
- "2016-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-22.tif"
- ],
- [
- "2016-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-23.tif"
- ],
- [
- "2016-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-24.tif"
- ],
- [
- "2016-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-25.tif"
- ],
- [
- "2016-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-26.tif"
- ],
- [
- "2016-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-27.tif"
- ],
- [
- "2016-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-28.tif"
- ],
- [
- "2016-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-29.tif"
- ],
- [
- "2016-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-06-30.tif"
- ],
- [
- "2016-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-01.tif"
- ],
- [
- "2016-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-02.tif"
- ],
- [
- "2016-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-03.tif"
- ],
- [
- "2016-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-04.tif"
- ],
- [
- "2016-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-05.tif"
- ],
- [
- "2016-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-06.tif"
- ],
- [
- "2016-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-07.tif"
- ],
- [
- "2016-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-08.tif"
- ],
- [
- "2016-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-09.tif"
- ],
- [
- "2016-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-10.tif"
- ],
- [
- "2016-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-11.tif"
- ],
- [
- "2016-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-12.tif"
- ],
- [
- "2016-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-13.tif"
- ],
- [
- "2016-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-14.tif"
- ],
- [
- "2016-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-15.tif"
- ],
- [
- "2016-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-16.tif"
- ],
- [
- "2016-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-17.tif"
- ],
- [
- "2016-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-18.tif"
- ],
- [
- "2016-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-19.tif"
- ],
- [
- "2016-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-20.tif"
- ],
- [
- "2016-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-21.tif"
- ],
- [
- "2016-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-22.tif"
- ],
- [
- "2016-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-23.tif"
- ],
- [
- "2016-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-24.tif"
- ],
- [
- "2016-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-25.tif"
- ],
- [
- "2016-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-26.tif"
- ],
- [
- "2016-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-27.tif"
- ],
- [
- "2016-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-28.tif"
- ],
- [
- "2016-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-29.tif"
- ],
- [
- "2016-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-30.tif"
- ],
- [
- "2016-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-07-31.tif"
- ],
- [
- "2016-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-01.tif"
- ],
- [
- "2016-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-02.tif"
- ],
- [
- "2016-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-03.tif"
- ],
- [
- "2016-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-04.tif"
- ],
- [
- "2016-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-05.tif"
- ],
- [
- "2016-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-06.tif"
- ],
- [
- "2016-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-07.tif"
- ],
- [
- "2016-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-08.tif"
- ],
- [
- "2016-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-09.tif"
- ],
- [
- "2016-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-10.tif"
- ],
- [
- "2016-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-11.tif"
- ],
- [
- "2016-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-12.tif"
- ],
- [
- "2016-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-13.tif"
- ],
- [
- "2016-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-14.tif"
- ],
- [
- "2016-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-15.tif"
- ],
- [
- "2016-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-16.tif"
- ],
- [
- "2016-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-17.tif"
- ],
- [
- "2016-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-18.tif"
- ],
- [
- "2016-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-19.tif"
- ],
- [
- "2016-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-20.tif"
- ],
- [
- "2016-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-21.tif"
- ],
- [
- "2016-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-22.tif"
- ],
- [
- "2016-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-23.tif"
- ],
- [
- "2016-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-24.tif"
- ],
- [
- "2016-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-25.tif"
- ],
- [
- "2016-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-26.tif"
- ],
- [
- "2016-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-27.tif"
- ],
- [
- "2016-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-28.tif"
- ],
- [
- "2016-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-29.tif"
- ],
- [
- "2016-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-30.tif"
- ],
- [
- "2016-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-08-31.tif"
- ],
- [
- "2016-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-01.tif"
- ],
- [
- "2016-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-02.tif"
- ],
- [
- "2016-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-03.tif"
- ],
- [
- "2016-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-04.tif"
- ],
- [
- "2016-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-05.tif"
- ],
- [
- "2016-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-06.tif"
- ],
- [
- "2016-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-07.tif"
- ],
- [
- "2016-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-08.tif"
- ],
- [
- "2016-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-09.tif"
- ],
- [
- "2016-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-10.tif"
- ],
- [
- "2016-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-11.tif"
- ],
- [
- "2016-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-12.tif"
- ],
- [
- "2016-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-13.tif"
- ],
- [
- "2016-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-14.tif"
- ],
- [
- "2016-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-15.tif"
- ],
- [
- "2016-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-16.tif"
- ],
- [
- "2016-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-17.tif"
- ],
- [
- "2016-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-18.tif"
- ],
- [
- "2016-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-19.tif"
- ],
- [
- "2016-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-20.tif"
- ],
- [
- "2016-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-21.tif"
- ],
- [
- "2016-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-22.tif"
- ],
- [
- "2016-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-23.tif"
- ],
- [
- "2016-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-24.tif"
- ],
- [
- "2016-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-25.tif"
- ],
- [
- "2016-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-26.tif"
- ],
- [
- "2016-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-27.tif"
- ],
- [
- "2016-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-28.tif"
- ],
- [
- "2016-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-29.tif"
- ],
- [
- "2016-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-09-30.tif"
- ],
- [
- "2016-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-01.tif"
- ],
- [
- "2016-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-02.tif"
- ],
- [
- "2016-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-03.tif"
- ],
- [
- "2016-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-04.tif"
- ],
- [
- "2016-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-05.tif"
- ],
- [
- "2016-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-06.tif"
- ],
- [
- "2016-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-07.tif"
- ],
- [
- "2016-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-08.tif"
- ],
- [
- "2016-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-09.tif"
- ],
- [
- "2016-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-10.tif"
- ],
- [
- "2016-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-11.tif"
- ],
- [
- "2016-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-12.tif"
- ],
- [
- "2016-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-13.tif"
- ],
- [
- "2016-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-14.tif"
- ],
- [
- "2016-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-15.tif"
- ],
- [
- "2016-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-16.tif"
- ],
- [
- "2016-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-17.tif"
- ],
- [
- "2016-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-18.tif"
- ],
- [
- "2016-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-19.tif"
- ],
- [
- "2016-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-20.tif"
- ],
- [
- "2016-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-21.tif"
- ],
- [
- "2016-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-22.tif"
- ],
- [
- "2016-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-23.tif"
- ],
- [
- "2016-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-24.tif"
- ],
- [
- "2016-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-25.tif"
- ],
- [
- "2016-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-26.tif"
- ],
- [
- "2016-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-27.tif"
- ],
- [
- "2016-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-28.tif"
- ],
- [
- "2016-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-29.tif"
- ],
- [
- "2016-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-30.tif"
- ],
- [
- "2016-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-10-31.tif"
- ],
- [
- "2016-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-01.tif"
- ],
- [
- "2016-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-02.tif"
- ],
- [
- "2016-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-03.tif"
- ],
- [
- "2016-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-04.tif"
- ],
- [
- "2016-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-05.tif"
- ],
- [
- "2016-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-06.tif"
- ],
- [
- "2016-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-07.tif"
- ],
- [
- "2016-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-08.tif"
- ],
- [
- "2016-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-09.tif"
- ],
- [
- "2016-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-10.tif"
- ],
- [
- "2016-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-11.tif"
- ],
- [
- "2016-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-12.tif"
- ],
- [
- "2016-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-13.tif"
- ],
- [
- "2016-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-14.tif"
- ],
- [
- "2016-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-15.tif"
- ],
- [
- "2016-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-16.tif"
- ],
- [
- "2016-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-17.tif"
- ],
- [
- "2016-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-18.tif"
- ],
- [
- "2016-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-19.tif"
- ],
- [
- "2016-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-20.tif"
- ],
- [
- "2016-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-21.tif"
- ],
- [
- "2016-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-22.tif"
- ],
- [
- "2016-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-23.tif"
- ],
- [
- "2016-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-24.tif"
- ],
- [
- "2016-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-25.tif"
- ],
- [
- "2016-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-26.tif"
- ],
- [
- "2016-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-27.tif"
- ],
- [
- "2016-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-28.tif"
- ],
- [
- "2016-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-29.tif"
- ],
- [
- "2016-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-11-30.tif"
- ],
- [
- "2016-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-01.tif"
- ],
- [
- "2016-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-02.tif"
- ],
- [
- "2016-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-03.tif"
- ],
- [
- "2016-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-04.tif"
- ],
- [
- "2016-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-05.tif"
- ],
- [
- "2016-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-06.tif"
- ],
- [
- "2016-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-07.tif"
- ],
- [
- "2016-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-08.tif"
- ],
- [
- "2016-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-09.tif"
- ],
- [
- "2016-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-10.tif"
- ],
- [
- "2016-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-11.tif"
- ],
- [
- "2016-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-12.tif"
- ],
- [
- "2016-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-13.tif"
- ],
- [
- "2016-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-14.tif"
- ],
- [
- "2016-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-15.tif"
- ],
- [
- "2016-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2016-12-16.tif"
- ],
- [
- "2017-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-01.tif"
- ],
- [
- "2017-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-02.tif"
- ],
- [
- "2017-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-03.tif"
- ],
- [
- "2017-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-04.tif"
- ],
- [
- "2017-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-05.tif"
- ],
- [
- "2017-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-06.tif"
- ],
- [
- "2017-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-07.tif"
- ],
- [
- "2017-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-08.tif"
- ],
- [
- "2017-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-09.tif"
- ],
- [
- "2017-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-10.tif"
- ],
- [
- "2017-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-11.tif"
- ],
- [
- "2017-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-12.tif"
- ],
- [
- "2017-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-13.tif"
- ],
- [
- "2017-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-14.tif"
- ],
- [
- "2017-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-15.tif"
- ],
- [
- "2017-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-16.tif"
- ],
- [
- "2017-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-17.tif"
- ],
- [
- "2017-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-18.tif"
- ],
- [
- "2017-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-19.tif"
- ],
- [
- "2017-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-20.tif"
- ],
- [
- "2017-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-21.tif"
- ],
- [
- "2017-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-22.tif"
- ],
- [
- "2017-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-23.tif"
- ],
- [
- "2017-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-24.tif"
- ],
- [
- "2017-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-25.tif"
- ],
- [
- "2017-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-26.tif"
- ],
- [
- "2017-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-27.tif"
- ],
- [
- "2017-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-28.tif"
- ],
- [
- "2017-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-29.tif"
- ],
- [
- "2017-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-30.tif"
- ],
- [
- "2017-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-01-31.tif"
- ],
- [
- "2017-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-01.tif"
- ],
- [
- "2017-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-02.tif"
- ],
- [
- "2017-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-03.tif"
- ],
- [
- "2017-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-04.tif"
- ],
- [
- "2017-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-05.tif"
- ],
- [
- "2017-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-06.tif"
- ],
- [
- "2017-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-07.tif"
- ],
- [
- "2017-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-08.tif"
- ],
- [
- "2017-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-09.tif"
- ],
- [
- "2017-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-10.tif"
- ],
- [
- "2017-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-11.tif"
- ],
- [
- "2017-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-12.tif"
- ],
- [
- "2017-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-13.tif"
- ],
- [
- "2017-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-14.tif"
- ],
- [
- "2017-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-15.tif"
- ],
- [
- "2017-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-16.tif"
- ],
- [
- "2017-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-17.tif"
- ],
- [
- "2017-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-18.tif"
- ],
- [
- "2017-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-19.tif"
- ],
- [
- "2017-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-20.tif"
- ],
- [
- "2017-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-21.tif"
- ],
- [
- "2017-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-22.tif"
- ],
- [
- "2017-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-23.tif"
- ],
- [
- "2017-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-24.tif"
- ],
- [
- "2017-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-25.tif"
- ],
- [
- "2017-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-26.tif"
- ],
- [
- "2017-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-27.tif"
- ],
- [
- "2017-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-02-28.tif"
- ],
- [
- "2017-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-01.tif"
- ],
- [
- "2017-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-02.tif"
- ],
- [
- "2017-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-03.tif"
- ],
- [
- "2017-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-04.tif"
- ],
- [
- "2017-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-05.tif"
- ],
- [
- "2017-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-06.tif"
- ],
- [
- "2017-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-07.tif"
- ],
- [
- "2017-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-08.tif"
- ],
- [
- "2017-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-09.tif"
- ],
- [
- "2017-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-10.tif"
- ],
- [
- "2017-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-11.tif"
- ],
- [
- "2017-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-12.tif"
- ],
- [
- "2017-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-13.tif"
- ],
- [
- "2017-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-14.tif"
- ],
- [
- "2017-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-15.tif"
- ],
- [
- "2017-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-16.tif"
- ],
- [
- "2017-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-17.tif"
- ],
- [
- "2017-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-18.tif"
- ],
- [
- "2017-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-19.tif"
- ],
- [
- "2017-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-20.tif"
- ],
- [
- "2017-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-21.tif"
- ],
- [
- "2017-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-22.tif"
- ],
- [
- "2017-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-23.tif"
- ],
- [
- "2017-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-24.tif"
- ],
- [
- "2017-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-25.tif"
- ],
- [
- "2017-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-26.tif"
- ],
- [
- "2017-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-27.tif"
- ],
- [
- "2017-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-28.tif"
- ],
- [
- "2017-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-29.tif"
- ],
- [
- "2017-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-30.tif"
- ],
- [
- "2017-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-03-31.tif"
- ],
- [
- "2017-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-01.tif"
- ],
- [
- "2017-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-02.tif"
- ],
- [
- "2017-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-03.tif"
- ],
- [
- "2017-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-04.tif"
- ],
- [
- "2017-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-05.tif"
- ],
- [
- "2017-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-06.tif"
- ],
- [
- "2017-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-07.tif"
- ],
- [
- "2017-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-08.tif"
- ],
- [
- "2017-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-09.tif"
- ],
- [
- "2017-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-10.tif"
- ],
- [
- "2017-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-11.tif"
- ],
- [
- "2017-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-12.tif"
- ],
- [
- "2017-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-13.tif"
- ],
- [
- "2017-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-14.tif"
- ],
- [
- "2017-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-15.tif"
- ],
- [
- "2017-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-16.tif"
- ],
- [
- "2017-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-17.tif"
- ],
- [
- "2017-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-18.tif"
- ],
- [
- "2017-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-19.tif"
- ],
- [
- "2017-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-20.tif"
- ],
- [
- "2017-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-21.tif"
- ],
- [
- "2017-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-22.tif"
- ],
- [
- "2017-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-23.tif"
- ],
- [
- "2017-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-24.tif"
- ],
- [
- "2017-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-25.tif"
- ],
- [
- "2017-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-26.tif"
- ],
- [
- "2017-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-27.tif"
- ],
- [
- "2017-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-28.tif"
- ],
- [
- "2017-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-29.tif"
- ],
- [
- "2017-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-04-30.tif"
- ],
- [
- "2017-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-01.tif"
- ],
- [
- "2017-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-02.tif"
- ],
- [
- "2017-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-03.tif"
- ],
- [
- "2017-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-04.tif"
- ],
- [
- "2017-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-05.tif"
- ],
- [
- "2017-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-06.tif"
- ],
- [
- "2017-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-07.tif"
- ],
- [
- "2017-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-08.tif"
- ],
- [
- "2017-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-09.tif"
- ],
- [
- "2017-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-10.tif"
- ],
- [
- "2017-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-11.tif"
- ],
- [
- "2017-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-12.tif"
- ],
- [
- "2017-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-13.tif"
- ],
- [
- "2017-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-14.tif"
- ],
- [
- "2017-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-15.tif"
- ],
- [
- "2017-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-16.tif"
- ],
- [
- "2017-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-17.tif"
- ],
- [
- "2017-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-18.tif"
- ],
- [
- "2017-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-19.tif"
- ],
- [
- "2017-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-20.tif"
- ],
- [
- "2017-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-21.tif"
- ],
- [
- "2017-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-22.tif"
- ],
- [
- "2017-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-23.tif"
- ],
- [
- "2017-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-24.tif"
- ],
- [
- "2017-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-25.tif"
- ],
- [
- "2017-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-26.tif"
- ],
- [
- "2017-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-27.tif"
- ],
- [
- "2017-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-28.tif"
- ],
- [
- "2017-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-29.tif"
- ],
- [
- "2017-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-30.tif"
- ],
- [
- "2017-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-05-31.tif"
- ],
- [
- "2017-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-01.tif"
- ],
- [
- "2017-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-02.tif"
- ],
- [
- "2017-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-03.tif"
- ],
- [
- "2017-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-04.tif"
- ],
- [
- "2017-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-05.tif"
- ],
- [
- "2017-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-06.tif"
- ],
- [
- "2017-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-07.tif"
- ],
- [
- "2017-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-08.tif"
- ],
- [
- "2017-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-09.tif"
- ],
- [
- "2017-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-10.tif"
- ],
- [
- "2017-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-11.tif"
- ],
- [
- "2017-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-12.tif"
- ],
- [
- "2017-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-13.tif"
- ],
- [
- "2017-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-14.tif"
- ],
- [
- "2017-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-15.tif"
- ],
- [
- "2017-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-16.tif"
- ],
- [
- "2017-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-17.tif"
- ],
- [
- "2017-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-18.tif"
- ],
- [
- "2017-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-19.tif"
- ],
- [
- "2017-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-20.tif"
- ],
- [
- "2017-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-21.tif"
- ],
- [
- "2017-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-22.tif"
- ],
- [
- "2017-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-23.tif"
- ],
- [
- "2017-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-24.tif"
- ],
- [
- "2017-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-25.tif"
- ],
- [
- "2017-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-26.tif"
- ],
- [
- "2017-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-27.tif"
- ],
- [
- "2017-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-28.tif"
- ],
- [
- "2017-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-29.tif"
- ],
- [
- "2017-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-06-30.tif"
- ],
- [
- "2017-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-01.tif"
- ],
- [
- "2017-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-02.tif"
- ],
- [
- "2017-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-03.tif"
- ],
- [
- "2017-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-04.tif"
- ],
- [
- "2017-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-05.tif"
- ],
- [
- "2017-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-06.tif"
- ],
- [
- "2017-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-07.tif"
- ],
- [
- "2017-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-08.tif"
- ],
- [
- "2017-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-09.tif"
- ],
- [
- "2017-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-10.tif"
- ],
- [
- "2017-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-11.tif"
- ],
- [
- "2017-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-12.tif"
- ],
- [
- "2017-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-13.tif"
- ],
- [
- "2017-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-14.tif"
- ],
- [
- "2017-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-15.tif"
- ],
- [
- "2017-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-16.tif"
- ],
- [
- "2017-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-17.tif"
- ],
- [
- "2017-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-18.tif"
- ],
- [
- "2017-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-19.tif"
- ],
- [
- "2017-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-20.tif"
- ],
- [
- "2017-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-21.tif"
- ],
- [
- "2017-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-22.tif"
- ],
- [
- "2017-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-23.tif"
- ],
- [
- "2017-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-24.tif"
- ],
- [
- "2017-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-25.tif"
- ],
- [
- "2017-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-26.tif"
- ],
- [
- "2017-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-27.tif"
- ],
- [
- "2017-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-28.tif"
- ],
- [
- "2017-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-29.tif"
- ],
- [
- "2017-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-30.tif"
- ],
- [
- "2017-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-07-31.tif"
- ],
- [
- "2017-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-01.tif"
- ],
- [
- "2017-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-02.tif"
- ],
- [
- "2017-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-03.tif"
- ],
- [
- "2017-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-04.tif"
- ],
- [
- "2017-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-05.tif"
- ],
- [
- "2017-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-06.tif"
- ],
- [
- "2017-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-07.tif"
- ],
- [
- "2017-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-08.tif"
- ],
- [
- "2017-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-09.tif"
- ],
- [
- "2017-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-10.tif"
- ],
- [
- "2017-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-11.tif"
- ],
- [
- "2017-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-12.tif"
- ],
- [
- "2017-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-13.tif"
- ],
- [
- "2017-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-14.tif"
- ],
- [
- "2017-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-15.tif"
- ],
- [
- "2017-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-16.tif"
- ],
- [
- "2017-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-17.tif"
- ],
- [
- "2017-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-18.tif"
- ],
- [
- "2017-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-19.tif"
- ],
- [
- "2017-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-20.tif"
- ],
- [
- "2017-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-21.tif"
- ],
- [
- "2017-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-22.tif"
- ],
- [
- "2017-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-23.tif"
- ],
- [
- "2017-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-24.tif"
- ],
- [
- "2017-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-25.tif"
- ],
- [
- "2017-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-26.tif"
- ],
- [
- "2017-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-27.tif"
- ],
- [
- "2017-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-28.tif"
- ],
- [
- "2017-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-29.tif"
- ],
- [
- "2017-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-30.tif"
- ],
- [
- "2017-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-08-31.tif"
- ],
- [
- "2017-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-01.tif"
- ],
- [
- "2017-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-02.tif"
- ],
- [
- "2017-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-03.tif"
- ],
- [
- "2017-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-04.tif"
- ],
- [
- "2017-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-05.tif"
- ],
- [
- "2017-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-06.tif"
- ],
- [
- "2017-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-07.tif"
- ],
- [
- "2017-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-08.tif"
- ],
- [
- "2017-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-09.tif"
- ],
- [
- "2017-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-10.tif"
- ],
- [
- "2017-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-11.tif"
- ],
- [
- "2017-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-12.tif"
- ],
- [
- "2017-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-13.tif"
- ],
- [
- "2017-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-14.tif"
- ],
- [
- "2017-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-15.tif"
- ],
- [
- "2017-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-16.tif"
- ],
- [
- "2017-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-17.tif"
- ],
- [
- "2017-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-18.tif"
- ],
- [
- "2017-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-19.tif"
- ],
- [
- "2017-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-20.tif"
- ],
- [
- "2017-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-21.tif"
- ],
- [
- "2017-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-22.tif"
- ],
- [
- "2017-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-23.tif"
- ],
- [
- "2017-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-24.tif"
- ],
- [
- "2017-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-25.tif"
- ],
- [
- "2017-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-26.tif"
- ],
- [
- "2017-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-27.tif"
- ],
- [
- "2017-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-28.tif"
- ],
- [
- "2017-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-29.tif"
- ],
- [
- "2017-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-09-30.tif"
- ],
- [
- "2017-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-01.tif"
- ],
- [
- "2017-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-02.tif"
- ],
- [
- "2017-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-03.tif"
- ],
- [
- "2017-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-04.tif"
- ],
- [
- "2017-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-05.tif"
- ],
- [
- "2017-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-06.tif"
- ],
- [
- "2017-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-07.tif"
- ],
- [
- "2017-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-08.tif"
- ],
- [
- "2017-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-09.tif"
- ],
- [
- "2017-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-10.tif"
- ],
- [
- "2017-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-11.tif"
- ],
- [
- "2017-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-12.tif"
- ],
- [
- "2017-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-13.tif"
- ],
- [
- "2017-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-14.tif"
- ],
- [
- "2017-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-15.tif"
- ],
- [
- "2017-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-16.tif"
- ],
- [
- "2017-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-17.tif"
- ],
- [
- "2017-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-18.tif"
- ],
- [
- "2017-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-19.tif"
- ],
- [
- "2017-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-20.tif"
- ],
- [
- "2017-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-21.tif"
- ],
- [
- "2017-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-22.tif"
- ],
- [
- "2017-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-23.tif"
- ],
- [
- "2017-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-24.tif"
- ],
- [
- "2017-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-25.tif"
- ],
- [
- "2017-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-26.tif"
- ],
- [
- "2017-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-27.tif"
- ],
- [
- "2017-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-28.tif"
- ],
- [
- "2017-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-29.tif"
- ],
- [
- "2017-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-30.tif"
- ],
- [
- "2017-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-10-31.tif"
- ],
- [
- "2017-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-01.tif"
- ],
- [
- "2017-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-02.tif"
- ],
- [
- "2017-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-03.tif"
- ],
- [
- "2017-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-04.tif"
- ],
- [
- "2017-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-05.tif"
- ],
- [
- "2017-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-06.tif"
- ],
- [
- "2017-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-07.tif"
- ],
- [
- "2017-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-08.tif"
- ],
- [
- "2017-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-09.tif"
- ],
- [
- "2017-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-10.tif"
- ],
- [
- "2017-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-11.tif"
- ],
- [
- "2017-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-12.tif"
- ],
- [
- "2017-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-13.tif"
- ],
- [
- "2017-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-14.tif"
- ],
- [
- "2017-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-15.tif"
- ],
- [
- "2017-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-16.tif"
- ],
- [
- "2017-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-17.tif"
- ],
- [
- "2017-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-18.tif"
- ],
- [
- "2017-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-19.tif"
- ],
- [
- "2017-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-20.tif"
- ],
- [
- "2017-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-21.tif"
- ],
- [
- "2017-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-22.tif"
- ],
- [
- "2017-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-23.tif"
- ],
- [
- "2017-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-24.tif"
- ],
- [
- "2017-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-25.tif"
- ],
- [
- "2017-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-26.tif"
- ],
- [
- "2017-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-27.tif"
- ],
- [
- "2017-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-28.tif"
- ],
- [
- "2017-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-29.tif"
- ],
- [
- "2017-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-11-30.tif"
- ],
- [
- "2017-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-01.tif"
- ],
- [
- "2017-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-02.tif"
- ],
- [
- "2017-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-03.tif"
- ],
- [
- "2017-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-04.tif"
- ],
- [
- "2017-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-05.tif"
- ],
- [
- "2017-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-06.tif"
- ],
- [
- "2017-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-07.tif"
- ],
- [
- "2017-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-08.tif"
- ],
- [
- "2017-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-09.tif"
- ],
- [
- "2017-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-10.tif"
- ],
- [
- "2017-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-11.tif"
- ],
- [
- "2017-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-12.tif"
- ],
- [
- "2017-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-13.tif"
- ],
- [
- "2017-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-14.tif"
- ],
- [
- "2017-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-15.tif"
- ],
- [
- "2017-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2017-12-16.tif"
- ],
- [
- "2018-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-01.tif"
- ],
- [
- "2018-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-02.tif"
- ],
- [
- "2018-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-03.tif"
- ],
- [
- "2018-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-04.tif"
- ],
- [
- "2018-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-05.tif"
- ],
- [
- "2018-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-06.tif"
- ],
- [
- "2018-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-07.tif"
- ],
- [
- "2018-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-08.tif"
- ],
- [
- "2018-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-09.tif"
- ],
- [
- "2018-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-10.tif"
- ],
- [
- "2018-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-11.tif"
- ],
- [
- "2018-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-12.tif"
- ],
- [
- "2018-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-13.tif"
- ],
- [
- "2018-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-14.tif"
- ],
- [
- "2018-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-15.tif"
- ],
- [
- "2018-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-16.tif"
- ],
- [
- "2018-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-17.tif"
- ],
- [
- "2018-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-18.tif"
- ],
- [
- "2018-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-19.tif"
- ],
- [
- "2018-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-20.tif"
- ],
- [
- "2018-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-21.tif"
- ],
- [
- "2018-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-22.tif"
- ],
- [
- "2018-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-23.tif"
- ],
- [
- "2018-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-24.tif"
- ],
- [
- "2018-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-25.tif"
- ],
- [
- "2018-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-26.tif"
- ],
- [
- "2018-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-27.tif"
- ],
- [
- "2018-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-28.tif"
- ],
- [
- "2018-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-29.tif"
- ],
- [
- "2018-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-30.tif"
- ],
- [
- "2018-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-01-31.tif"
- ],
- [
- "2018-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-01.tif"
- ],
- [
- "2018-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-02.tif"
- ],
- [
- "2018-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-03.tif"
- ],
- [
- "2018-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-04.tif"
- ],
- [
- "2018-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-05.tif"
- ],
- [
- "2018-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-06.tif"
- ],
- [
- "2018-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-07.tif"
- ],
- [
- "2018-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-08.tif"
- ],
- [
- "2018-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-09.tif"
- ],
- [
- "2018-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-10.tif"
- ],
- [
- "2018-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-11.tif"
- ],
- [
- "2018-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-12.tif"
- ],
- [
- "2018-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-13.tif"
- ],
- [
- "2018-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-14.tif"
- ],
- [
- "2018-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-15.tif"
- ],
- [
- "2018-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-16.tif"
- ],
- [
- "2018-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-17.tif"
- ],
- [
- "2018-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-18.tif"
- ],
- [
- "2018-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-19.tif"
- ],
- [
- "2018-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-20.tif"
- ],
- [
- "2018-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-21.tif"
- ],
- [
- "2018-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-22.tif"
- ],
- [
- "2018-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-23.tif"
- ],
- [
- "2018-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-24.tif"
- ],
- [
- "2018-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-25.tif"
- ],
- [
- "2018-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-26.tif"
- ],
- [
- "2018-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-27.tif"
- ],
- [
- "2018-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-02-28.tif"
- ],
- [
- "2018-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-01.tif"
- ],
- [
- "2018-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-02.tif"
- ],
- [
- "2018-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-03.tif"
- ],
- [
- "2018-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-04.tif"
- ],
- [
- "2018-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-05.tif"
- ],
- [
- "2018-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-06.tif"
- ],
- [
- "2018-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-07.tif"
- ],
- [
- "2018-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-08.tif"
- ],
- [
- "2018-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-09.tif"
- ],
- [
- "2018-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-10.tif"
- ],
- [
- "2018-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-11.tif"
- ],
- [
- "2018-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-12.tif"
- ],
- [
- "2018-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-13.tif"
- ],
- [
- "2018-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-14.tif"
- ],
- [
- "2018-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-15.tif"
- ],
- [
- "2018-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-16.tif"
- ],
- [
- "2018-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-17.tif"
- ],
- [
- "2018-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-18.tif"
- ],
- [
- "2018-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-19.tif"
- ],
- [
- "2018-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-20.tif"
- ],
- [
- "2018-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-21.tif"
- ],
- [
- "2018-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-22.tif"
- ],
- [
- "2018-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-23.tif"
- ],
- [
- "2018-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-24.tif"
- ],
- [
- "2018-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-25.tif"
- ],
- [
- "2018-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-26.tif"
- ],
- [
- "2018-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-27.tif"
- ],
- [
- "2018-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-28.tif"
- ],
- [
- "2018-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-29.tif"
- ],
- [
- "2018-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-30.tif"
- ],
- [
- "2018-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-03-31.tif"
- ],
- [
- "2018-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-01.tif"
- ],
- [
- "2018-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-02.tif"
- ],
- [
- "2018-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-03.tif"
- ],
- [
- "2018-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-04.tif"
- ],
- [
- "2018-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-05.tif"
- ],
- [
- "2018-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-06.tif"
- ],
- [
- "2018-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-07.tif"
- ],
- [
- "2018-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-08.tif"
- ],
- [
- "2018-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-09.tif"
- ],
- [
- "2018-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-10.tif"
- ],
- [
- "2018-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-11.tif"
- ],
- [
- "2018-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-12.tif"
- ],
- [
- "2018-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-13.tif"
- ],
- [
- "2018-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-14.tif"
- ],
- [
- "2018-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-15.tif"
- ],
- [
- "2018-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-16.tif"
- ],
- [
- "2018-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-17.tif"
- ],
- [
- "2018-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-18.tif"
- ],
- [
- "2018-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-19.tif"
- ],
- [
- "2018-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-20.tif"
- ],
- [
- "2018-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-21.tif"
- ],
- [
- "2018-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-22.tif"
- ],
- [
- "2018-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-23.tif"
- ],
- [
- "2018-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-24.tif"
- ],
- [
- "2018-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-25.tif"
- ],
- [
- "2018-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-26.tif"
- ],
- [
- "2018-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-27.tif"
- ],
- [
- "2018-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-28.tif"
- ],
- [
- "2018-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-29.tif"
- ],
- [
- "2018-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-04-30.tif"
- ],
- [
- "2018-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-01.tif"
- ],
- [
- "2018-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-02.tif"
- ],
- [
- "2018-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-03.tif"
- ],
- [
- "2018-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-04.tif"
- ],
- [
- "2018-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-05.tif"
- ],
- [
- "2018-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-06.tif"
- ],
- [
- "2018-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-07.tif"
- ],
- [
- "2018-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-08.tif"
- ],
- [
- "2018-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-09.tif"
- ],
- [
- "2018-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-10.tif"
- ],
- [
- "2018-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-11.tif"
- ],
- [
- "2018-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-12.tif"
- ],
- [
- "2018-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-13.tif"
- ],
- [
- "2018-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-14.tif"
- ],
- [
- "2018-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-15.tif"
- ],
- [
- "2018-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-16.tif"
- ],
- [
- "2018-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-17.tif"
- ],
- [
- "2018-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-18.tif"
- ],
- [
- "2018-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-19.tif"
- ],
- [
- "2018-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-20.tif"
- ],
- [
- "2018-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-21.tif"
- ],
- [
- "2018-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-22.tif"
- ],
- [
- "2018-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-23.tif"
- ],
- [
- "2018-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-24.tif"
- ],
- [
- "2018-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-25.tif"
- ],
- [
- "2018-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-26.tif"
- ],
- [
- "2018-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-27.tif"
- ],
- [
- "2018-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-28.tif"
- ],
- [
- "2018-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-29.tif"
- ],
- [
- "2018-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-30.tif"
- ],
- [
- "2018-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-05-31.tif"
- ],
- [
- "2018-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-01.tif"
- ],
- [
- "2018-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-02.tif"
- ],
- [
- "2018-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-03.tif"
- ],
- [
- "2018-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-04.tif"
- ],
- [
- "2018-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-05.tif"
- ],
- [
- "2018-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-06.tif"
- ],
- [
- "2018-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-07.tif"
- ],
- [
- "2018-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-08.tif"
- ],
- [
- "2018-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-09.tif"
- ],
- [
- "2018-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-10.tif"
- ],
- [
- "2018-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-11.tif"
- ],
- [
- "2018-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-12.tif"
- ],
- [
- "2018-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-13.tif"
- ],
- [
- "2018-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-14.tif"
- ],
- [
- "2018-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-15.tif"
- ],
- [
- "2018-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-16.tif"
- ],
- [
- "2018-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-17.tif"
- ],
- [
- "2018-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-18.tif"
- ],
- [
- "2018-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-19.tif"
- ],
- [
- "2018-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-20.tif"
- ],
- [
- "2018-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-21.tif"
- ],
- [
- "2018-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-22.tif"
- ],
- [
- "2018-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-23.tif"
- ],
- [
- "2018-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-24.tif"
- ],
- [
- "2018-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-25.tif"
- ],
- [
- "2018-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-26.tif"
- ],
- [
- "2018-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-27.tif"
- ],
- [
- "2018-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-28.tif"
- ],
- [
- "2018-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-29.tif"
- ],
- [
- "2018-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-06-30.tif"
- ],
- [
- "2018-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-01.tif"
- ],
- [
- "2018-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-02.tif"
- ],
- [
- "2018-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-03.tif"
- ],
- [
- "2018-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-04.tif"
- ],
- [
- "2018-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-05.tif"
- ],
- [
- "2018-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-06.tif"
- ],
- [
- "2018-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-07.tif"
- ],
- [
- "2018-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-08.tif"
- ],
- [
- "2018-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-09.tif"
- ],
- [
- "2018-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-10.tif"
- ],
- [
- "2018-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-11.tif"
- ],
- [
- "2018-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-12.tif"
- ],
- [
- "2018-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-13.tif"
- ],
- [
- "2018-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-14.tif"
- ],
- [
- "2018-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-15.tif"
- ],
- [
- "2018-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-16.tif"
- ],
- [
- "2018-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-17.tif"
- ],
- [
- "2018-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-18.tif"
- ],
- [
- "2018-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-19.tif"
- ],
- [
- "2018-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-20.tif"
- ],
- [
- "2018-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-21.tif"
- ],
- [
- "2018-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-22.tif"
- ],
- [
- "2018-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-23.tif"
- ],
- [
- "2018-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-24.tif"
- ],
- [
- "2018-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-25.tif"
- ],
- [
- "2018-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-26.tif"
- ],
- [
- "2018-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-27.tif"
- ],
- [
- "2018-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-28.tif"
- ],
- [
- "2018-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-29.tif"
- ],
- [
- "2018-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-30.tif"
- ],
- [
- "2018-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-07-31.tif"
- ],
- [
- "2018-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-01.tif"
- ],
- [
- "2018-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-02.tif"
- ],
- [
- "2018-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-03.tif"
- ],
- [
- "2018-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-04.tif"
- ],
- [
- "2018-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-05.tif"
- ],
- [
- "2018-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-06.tif"
- ],
- [
- "2018-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-07.tif"
- ],
- [
- "2018-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-08.tif"
- ],
- [
- "2018-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-09.tif"
- ],
- [
- "2018-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-10.tif"
- ],
- [
- "2018-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-11.tif"
- ],
- [
- "2018-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-12.tif"
- ],
- [
- "2018-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-13.tif"
- ],
- [
- "2018-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-14.tif"
- ],
- [
- "2018-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-15.tif"
- ],
- [
- "2018-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-16.tif"
- ],
- [
- "2018-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-17.tif"
- ],
- [
- "2018-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-18.tif"
- ],
- [
- "2018-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-19.tif"
- ],
- [
- "2018-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-20.tif"
- ],
- [
- "2018-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-21.tif"
- ],
- [
- "2018-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-22.tif"
- ],
- [
- "2018-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-23.tif"
- ],
- [
- "2018-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-24.tif"
- ],
- [
- "2018-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-25.tif"
- ],
- [
- "2018-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-26.tif"
- ],
- [
- "2018-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-27.tif"
- ],
- [
- "2018-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-28.tif"
- ],
- [
- "2018-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-29.tif"
- ],
- [
- "2018-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-30.tif"
- ],
- [
- "2018-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-08-31.tif"
- ],
- [
- "2018-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-01.tif"
- ],
- [
- "2018-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-02.tif"
- ],
- [
- "2018-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-03.tif"
- ],
- [
- "2018-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-04.tif"
- ],
- [
- "2018-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-05.tif"
- ],
- [
- "2018-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-06.tif"
- ],
- [
- "2018-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-07.tif"
- ],
- [
- "2018-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-08.tif"
- ],
- [
- "2018-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-09.tif"
- ],
- [
- "2018-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-10.tif"
- ],
- [
- "2018-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-11.tif"
- ],
- [
- "2018-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-12.tif"
- ],
- [
- "2018-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-13.tif"
- ],
- [
- "2018-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-14.tif"
- ],
- [
- "2018-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-15.tif"
- ],
- [
- "2018-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-16.tif"
- ],
- [
- "2018-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-17.tif"
- ],
- [
- "2018-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-18.tif"
- ],
- [
- "2018-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-19.tif"
- ],
- [
- "2018-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-20.tif"
- ],
- [
- "2018-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-21.tif"
- ],
- [
- "2018-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-22.tif"
- ],
- [
- "2018-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-23.tif"
- ],
- [
- "2018-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-24.tif"
- ],
- [
- "2018-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-25.tif"
- ],
- [
- "2018-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-26.tif"
- ],
- [
- "2018-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-27.tif"
- ],
- [
- "2018-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-28.tif"
- ],
- [
- "2018-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-29.tif"
- ],
- [
- "2018-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-09-30.tif"
- ],
- [
- "2018-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-01.tif"
- ],
- [
- "2018-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-02.tif"
- ],
- [
- "2018-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-03.tif"
- ],
- [
- "2018-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-04.tif"
- ],
- [
- "2018-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-05.tif"
- ],
- [
- "2018-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-06.tif"
- ],
- [
- "2018-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-07.tif"
- ],
- [
- "2018-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-08.tif"
- ],
- [
- "2018-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-09.tif"
- ],
- [
- "2018-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-10.tif"
- ],
- [
- "2018-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-11.tif"
- ],
- [
- "2018-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-12.tif"
- ],
- [
- "2018-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-13.tif"
- ],
- [
- "2018-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-14.tif"
- ],
- [
- "2018-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-15.tif"
- ],
- [
- "2018-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-16.tif"
- ],
- [
- "2018-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-17.tif"
- ],
- [
- "2018-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-18.tif"
- ],
- [
- "2018-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-19.tif"
- ],
- [
- "2018-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-20.tif"
- ],
- [
- "2018-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-21.tif"
- ],
- [
- "2018-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-22.tif"
- ],
- [
- "2018-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-23.tif"
- ],
- [
- "2018-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-24.tif"
- ],
- [
- "2018-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-25.tif"
- ],
- [
- "2018-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-26.tif"
- ],
- [
- "2018-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-27.tif"
- ],
- [
- "2018-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-28.tif"
- ],
- [
- "2018-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-29.tif"
- ],
- [
- "2018-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-30.tif"
- ],
- [
- "2018-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-10-31.tif"
- ],
- [
- "2018-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-01.tif"
- ],
- [
- "2018-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-02.tif"
- ],
- [
- "2018-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-03.tif"
- ],
- [
- "2018-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-04.tif"
- ],
- [
- "2018-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-05.tif"
- ],
- [
- "2018-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-06.tif"
- ],
- [
- "2018-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-07.tif"
- ],
- [
- "2018-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-08.tif"
- ],
- [
- "2018-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-09.tif"
- ],
- [
- "2018-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-10.tif"
- ],
- [
- "2018-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-11.tif"
- ],
- [
- "2018-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-12.tif"
- ],
- [
- "2018-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-13.tif"
- ],
- [
- "2018-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-14.tif"
- ],
- [
- "2018-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-15.tif"
- ],
- [
- "2018-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-16.tif"
- ],
- [
- "2018-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-17.tif"
- ],
- [
- "2018-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-18.tif"
- ],
- [
- "2018-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-19.tif"
- ],
- [
- "2018-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-20.tif"
- ],
- [
- "2018-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-21.tif"
- ],
- [
- "2018-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-22.tif"
- ],
- [
- "2018-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-23.tif"
- ],
- [
- "2018-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-24.tif"
- ],
- [
- "2018-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-25.tif"
- ],
- [
- "2018-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-26.tif"
- ],
- [
- "2018-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-27.tif"
- ],
- [
- "2018-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-28.tif"
- ],
- [
- "2018-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-29.tif"
- ],
- [
- "2018-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-11-30.tif"
- ],
- [
- "2018-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-01.tif"
- ],
- [
- "2018-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-02.tif"
- ],
- [
- "2018-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-03.tif"
- ],
- [
- "2018-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-04.tif"
- ],
- [
- "2018-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-05.tif"
- ],
- [
- "2018-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-06.tif"
- ],
- [
- "2018-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-07.tif"
- ],
- [
- "2018-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-08.tif"
- ],
- [
- "2018-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-09.tif"
- ],
- [
- "2018-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-10.tif"
- ],
- [
- "2018-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-11.tif"
- ],
- [
- "2018-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-12.tif"
- ],
- [
- "2018-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-13.tif"
- ],
- [
- "2018-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-14.tif"
- ],
- [
- "2018-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-15.tif"
- ],
- [
- "2018-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2018-12-16.tif"
- ],
- [
- "2019-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-01.tif"
- ],
- [
- "2019-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-02.tif"
- ],
- [
- "2019-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-03.tif"
- ],
- [
- "2019-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-04.tif"
- ],
- [
- "2019-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-05.tif"
- ],
- [
- "2019-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-06.tif"
- ],
- [
- "2019-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-07.tif"
- ],
- [
- "2019-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-08.tif"
- ],
- [
- "2019-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-09.tif"
- ],
- [
- "2019-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-10.tif"
- ],
- [
- "2019-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-11.tif"
- ],
- [
- "2019-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-12.tif"
- ],
- [
- "2019-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-13.tif"
- ],
- [
- "2019-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-14.tif"
- ],
- [
- "2019-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-15.tif"
- ],
- [
- "2019-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-16.tif"
- ],
- [
- "2019-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-17.tif"
- ],
- [
- "2019-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-18.tif"
- ],
- [
- "2019-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-19.tif"
- ],
- [
- "2019-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-20.tif"
- ],
- [
- "2019-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-21.tif"
- ],
- [
- "2019-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-22.tif"
- ],
- [
- "2019-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-23.tif"
- ],
- [
- "2019-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-24.tif"
- ],
- [
- "2019-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-25.tif"
- ],
- [
- "2019-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-26.tif"
- ],
- [
- "2019-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-27.tif"
- ],
- [
- "2019-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-28.tif"
- ],
- [
- "2019-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-29.tif"
- ],
- [
- "2019-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-30.tif"
- ],
- [
- "2019-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-01-31.tif"
- ],
- [
- "2019-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-01.tif"
- ],
- [
- "2019-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-02.tif"
- ],
- [
- "2019-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-03.tif"
- ],
- [
- "2019-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-04.tif"
- ],
- [
- "2019-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-05.tif"
- ],
- [
- "2019-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-06.tif"
- ],
- [
- "2019-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-07.tif"
- ],
- [
- "2019-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-08.tif"
- ],
- [
- "2019-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-09.tif"
- ],
- [
- "2019-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-10.tif"
- ],
- [
- "2019-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-11.tif"
- ],
- [
- "2019-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-12.tif"
- ],
- [
- "2019-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-13.tif"
- ],
- [
- "2019-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-14.tif"
- ],
- [
- "2019-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-15.tif"
- ],
- [
- "2019-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-16.tif"
- ],
- [
- "2019-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-17.tif"
- ],
- [
- "2019-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-18.tif"
- ],
- [
- "2019-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-19.tif"
- ],
- [
- "2019-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-20.tif"
- ],
- [
- "2019-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-21.tif"
- ],
- [
- "2019-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-22.tif"
- ],
- [
- "2019-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-23.tif"
- ],
- [
- "2019-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-24.tif"
- ],
- [
- "2019-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-25.tif"
- ],
- [
- "2019-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-26.tif"
- ],
- [
- "2019-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-27.tif"
- ],
- [
- "2019-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-02-28.tif"
- ],
- [
- "2019-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-01.tif"
- ],
- [
- "2019-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-02.tif"
- ],
- [
- "2019-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-03.tif"
- ],
- [
- "2019-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-04.tif"
- ],
- [
- "2019-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-05.tif"
- ],
- [
- "2019-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-06.tif"
- ],
- [
- "2019-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-07.tif"
- ],
- [
- "2019-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-08.tif"
- ],
- [
- "2019-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-09.tif"
- ],
- [
- "2019-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-10.tif"
- ],
- [
- "2019-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-11.tif"
- ],
- [
- "2019-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-12.tif"
- ],
- [
- "2019-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-13.tif"
- ],
- [
- "2019-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-14.tif"
- ],
- [
- "2019-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-15.tif"
- ],
- [
- "2019-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-16.tif"
- ],
- [
- "2019-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-17.tif"
- ],
- [
- "2019-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-18.tif"
- ],
- [
- "2019-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-19.tif"
- ],
- [
- "2019-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-20.tif"
- ],
- [
- "2019-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-21.tif"
- ],
- [
- "2019-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-22.tif"
- ],
- [
- "2019-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-23.tif"
- ],
- [
- "2019-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-24.tif"
- ],
- [
- "2019-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-25.tif"
- ],
- [
- "2019-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-26.tif"
- ],
- [
- "2019-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-27.tif"
- ],
- [
- "2019-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-28.tif"
- ],
- [
- "2019-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-29.tif"
- ],
- [
- "2019-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-30.tif"
- ],
- [
- "2019-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-03-31.tif"
- ],
- [
- "2019-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-01.tif"
- ],
- [
- "2019-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-02.tif"
- ],
- [
- "2019-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-03.tif"
- ],
- [
- "2019-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-04.tif"
- ],
- [
- "2019-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-05.tif"
- ],
- [
- "2019-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-06.tif"
- ],
- [
- "2019-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-07.tif"
- ],
- [
- "2019-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-08.tif"
- ],
- [
- "2019-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-09.tif"
- ],
- [
- "2019-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-10.tif"
- ],
- [
- "2019-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-11.tif"
- ],
- [
- "2019-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-12.tif"
- ],
- [
- "2019-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-13.tif"
- ],
- [
- "2019-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-14.tif"
- ],
- [
- "2019-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-15.tif"
- ],
- [
- "2019-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-16.tif"
- ],
- [
- "2019-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-17.tif"
- ],
- [
- "2019-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-18.tif"
- ],
- [
- "2019-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-19.tif"
- ],
- [
- "2019-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-20.tif"
- ],
- [
- "2019-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-21.tif"
- ],
- [
- "2019-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-22.tif"
- ],
- [
- "2019-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-23.tif"
- ],
- [
- "2019-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-24.tif"
- ],
- [
- "2019-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-25.tif"
- ],
- [
- "2019-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-26.tif"
- ],
- [
- "2019-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-27.tif"
- ],
- [
- "2019-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-28.tif"
- ],
- [
- "2019-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-29.tif"
- ],
- [
- "2019-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-04-30.tif"
- ],
- [
- "2019-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-01.tif"
- ],
- [
- "2019-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-02.tif"
- ],
- [
- "2019-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-03.tif"
- ],
- [
- "2019-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-04.tif"
- ],
- [
- "2019-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-05.tif"
- ],
- [
- "2019-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-06.tif"
- ],
- [
- "2019-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-07.tif"
- ],
- [
- "2019-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-08.tif"
- ],
- [
- "2019-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-09.tif"
- ],
- [
- "2019-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-10.tif"
- ],
- [
- "2019-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-11.tif"
- ],
- [
- "2019-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-12.tif"
- ],
- [
- "2019-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-13.tif"
- ],
- [
- "2019-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-14.tif"
- ],
- [
- "2019-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-15.tif"
- ],
- [
- "2019-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-16.tif"
- ],
- [
- "2019-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-17.tif"
- ],
- [
- "2019-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-18.tif"
- ],
- [
- "2019-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-19.tif"
- ],
- [
- "2019-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-20.tif"
- ],
- [
- "2019-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-21.tif"
- ],
- [
- "2019-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-22.tif"
- ],
- [
- "2019-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-23.tif"
- ],
- [
- "2019-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-24.tif"
- ],
- [
- "2019-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-25.tif"
- ],
- [
- "2019-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-26.tif"
- ],
- [
- "2019-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-27.tif"
- ],
- [
- "2019-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-28.tif"
- ],
- [
- "2019-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-29.tif"
- ],
- [
- "2019-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-30.tif"
- ],
- [
- "2019-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-05-31.tif"
- ],
- [
- "2019-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-01.tif"
- ],
- [
- "2019-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-02.tif"
- ],
- [
- "2019-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-03.tif"
- ],
- [
- "2019-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-04.tif"
- ],
- [
- "2019-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-05.tif"
- ],
- [
- "2019-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-06.tif"
- ],
- [
- "2019-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-07.tif"
- ],
- [
- "2019-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-08.tif"
- ],
- [
- "2019-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-09.tif"
- ],
- [
- "2019-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-10.tif"
- ],
- [
- "2019-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-11.tif"
- ],
- [
- "2019-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-12.tif"
- ],
- [
- "2019-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-13.tif"
- ],
- [
- "2019-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-14.tif"
- ],
- [
- "2019-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-15.tif"
- ],
- [
- "2019-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-16.tif"
- ],
- [
- "2019-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-17.tif"
- ],
- [
- "2019-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-18.tif"
- ],
- [
- "2019-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-19.tif"
- ],
- [
- "2019-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-20.tif"
- ],
- [
- "2019-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-21.tif"
- ],
- [
- "2019-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-22.tif"
- ],
- [
- "2019-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-23.tif"
- ],
- [
- "2019-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-24.tif"
- ],
- [
- "2019-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-25.tif"
- ],
- [
- "2019-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-26.tif"
- ],
- [
- "2019-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-27.tif"
- ],
- [
- "2019-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-28.tif"
- ],
- [
- "2019-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-29.tif"
- ],
- [
- "2019-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-06-30.tif"
- ],
- [
- "2019-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-01.tif"
- ],
- [
- "2019-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-02.tif"
- ],
- [
- "2019-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-03.tif"
- ],
- [
- "2019-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-04.tif"
- ],
- [
- "2019-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-05.tif"
- ],
- [
- "2019-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-06.tif"
- ],
- [
- "2019-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-07.tif"
- ],
- [
- "2019-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-08.tif"
- ],
- [
- "2019-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-09.tif"
- ],
- [
- "2019-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-10.tif"
- ],
- [
- "2019-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-11.tif"
- ],
- [
- "2019-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-12.tif"
- ],
- [
- "2019-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-13.tif"
- ],
- [
- "2019-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-14.tif"
- ],
- [
- "2019-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-15.tif"
- ],
- [
- "2019-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-16.tif"
- ],
- [
- "2019-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-17.tif"
- ],
- [
- "2019-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-18.tif"
- ],
- [
- "2019-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-19.tif"
- ],
- [
- "2019-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-20.tif"
- ],
- [
- "2019-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-21.tif"
- ],
- [
- "2019-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-22.tif"
- ],
- [
- "2019-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-23.tif"
- ],
- [
- "2019-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-24.tif"
- ],
- [
- "2019-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-25.tif"
- ],
- [
- "2019-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-26.tif"
- ],
- [
- "2019-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-27.tif"
- ],
- [
- "2019-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-28.tif"
- ],
- [
- "2019-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-29.tif"
- ],
- [
- "2019-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-30.tif"
- ],
- [
- "2019-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-07-31.tif"
- ],
- [
- "2019-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-01.tif"
- ],
- [
- "2019-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-02.tif"
- ],
- [
- "2019-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-03.tif"
- ],
- [
- "2019-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-04.tif"
- ],
- [
- "2019-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-05.tif"
- ],
- [
- "2019-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-06.tif"
- ],
- [
- "2019-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-07.tif"
- ],
- [
- "2019-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-08.tif"
- ],
- [
- "2019-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-09.tif"
- ],
- [
- "2019-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-10.tif"
- ],
- [
- "2019-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-11.tif"
- ],
- [
- "2019-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-12.tif"
- ],
- [
- "2019-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-13.tif"
- ],
- [
- "2019-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-14.tif"
- ],
- [
- "2019-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-15.tif"
- ],
- [
- "2019-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-16.tif"
- ],
- [
- "2019-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-17.tif"
- ],
- [
- "2019-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-18.tif"
- ],
- [
- "2019-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-19.tif"
- ],
- [
- "2019-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-20.tif"
- ],
- [
- "2019-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-21.tif"
- ],
- [
- "2019-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-22.tif"
- ],
- [
- "2019-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-23.tif"
- ],
- [
- "2019-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-24.tif"
- ],
- [
- "2019-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-25.tif"
- ],
- [
- "2019-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-26.tif"
- ],
- [
- "2019-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-27.tif"
- ],
- [
- "2019-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-28.tif"
- ],
- [
- "2019-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-29.tif"
- ],
- [
- "2019-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-30.tif"
- ],
- [
- "2019-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-08-31.tif"
- ],
- [
- "2019-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-01.tif"
- ],
- [
- "2019-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-02.tif"
- ],
- [
- "2019-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-03.tif"
- ],
- [
- "2019-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-04.tif"
- ],
- [
- "2019-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-05.tif"
- ],
- [
- "2019-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-06.tif"
- ],
- [
- "2019-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-07.tif"
- ],
- [
- "2019-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-08.tif"
- ],
- [
- "2019-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-09.tif"
- ],
- [
- "2019-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-10.tif"
- ],
- [
- "2019-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-11.tif"
- ],
- [
- "2019-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-12.tif"
- ],
- [
- "2019-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-13.tif"
- ],
- [
- "2019-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-14.tif"
- ],
- [
- "2019-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-15.tif"
- ],
- [
- "2019-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-16.tif"
- ],
- [
- "2019-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-17.tif"
- ],
- [
- "2019-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-18.tif"
- ],
- [
- "2019-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-19.tif"
- ],
- [
- "2019-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-20.tif"
- ],
- [
- "2019-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-21.tif"
- ],
- [
- "2019-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-22.tif"
- ],
- [
- "2019-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-23.tif"
- ],
- [
- "2019-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-24.tif"
- ],
- [
- "2019-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-25.tif"
- ],
- [
- "2019-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-26.tif"
- ],
- [
- "2019-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-27.tif"
- ],
- [
- "2019-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-28.tif"
- ],
- [
- "2019-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-29.tif"
- ],
- [
- "2019-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-09-30.tif"
- ],
- [
- "2019-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-01.tif"
- ],
- [
- "2019-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-02.tif"
- ],
- [
- "2019-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-03.tif"
- ],
- [
- "2019-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-04.tif"
- ],
- [
- "2019-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-05.tif"
- ],
- [
- "2019-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-06.tif"
- ],
- [
- "2019-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-07.tif"
- ],
- [
- "2019-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-08.tif"
- ],
- [
- "2019-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-09.tif"
- ],
- [
- "2019-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-10.tif"
- ],
- [
- "2019-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-11.tif"
- ],
- [
- "2019-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-12.tif"
- ],
- [
- "2019-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-13.tif"
- ],
- [
- "2019-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-14.tif"
- ],
- [
- "2019-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-15.tif"
- ],
- [
- "2019-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-16.tif"
- ],
- [
- "2019-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-17.tif"
- ],
- [
- "2019-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-18.tif"
- ],
- [
- "2019-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-19.tif"
- ],
- [
- "2019-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-20.tif"
- ],
- [
- "2019-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-21.tif"
- ],
- [
- "2019-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-22.tif"
- ],
- [
- "2019-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-23.tif"
- ],
- [
- "2019-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-24.tif"
- ],
- [
- "2019-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-25.tif"
- ],
- [
- "2019-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-26.tif"
- ],
- [
- "2019-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-27.tif"
- ],
- [
- "2019-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-28.tif"
- ],
- [
- "2019-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-29.tif"
- ],
- [
- "2019-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-30.tif"
- ],
- [
- "2019-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-10-31.tif"
- ],
- [
- "2019-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-01.tif"
- ],
- [
- "2019-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-02.tif"
- ],
- [
- "2019-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-03.tif"
- ],
- [
- "2019-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-04.tif"
- ],
- [
- "2019-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-05.tif"
- ],
- [
- "2019-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-06.tif"
- ],
- [
- "2019-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-07.tif"
- ],
- [
- "2019-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-08.tif"
- ],
- [
- "2019-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-09.tif"
- ],
- [
- "2019-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-10.tif"
- ],
- [
- "2019-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-11.tif"
- ],
- [
- "2019-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-12.tif"
- ],
- [
- "2019-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-13.tif"
- ],
- [
- "2019-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-14.tif"
- ],
- [
- "2019-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-15.tif"
- ],
- [
- "2019-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-16.tif"
- ],
- [
- "2019-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-17.tif"
- ],
- [
- "2019-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-18.tif"
- ],
- [
- "2019-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-19.tif"
- ],
- [
- "2019-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-20.tif"
- ],
- [
- "2019-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-21.tif"
- ],
- [
- "2019-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-22.tif"
- ],
- [
- "2019-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-23.tif"
- ],
- [
- "2019-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-24.tif"
- ],
- [
- "2019-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-25.tif"
- ],
- [
- "2019-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-26.tif"
- ],
- [
- "2019-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-27.tif"
- ],
- [
- "2019-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-28.tif"
- ],
- [
- "2019-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-29.tif"
- ],
- [
- "2019-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-11-30.tif"
- ],
- [
- "2019-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-01.tif"
- ],
- [
- "2019-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-02.tif"
- ],
- [
- "2019-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-03.tif"
- ],
- [
- "2019-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-04.tif"
- ],
- [
- "2019-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-05.tif"
- ],
- [
- "2019-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-06.tif"
- ],
- [
- "2019-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-07.tif"
- ],
- [
- "2019-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-08.tif"
- ],
- [
- "2019-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-09.tif"
- ],
- [
- "2019-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-10.tif"
- ],
- [
- "2019-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-11.tif"
- ],
- [
- "2019-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-12.tif"
- ],
- [
- "2019-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-13.tif"
- ],
- [
- "2019-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-14.tif"
- ],
- [
- "2019-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-15.tif"
- ],
- [
- "2019-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2019-12-16.tif"
- ],
- [
- "2020-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-01.tif"
- ],
- [
- "2020-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-02.tif"
- ],
- [
- "2020-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-03.tif"
- ],
- [
- "2020-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-04.tif"
- ],
- [
- "2020-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-05.tif"
- ],
- [
- "2020-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-06.tif"
- ],
- [
- "2020-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-07.tif"
- ],
- [
- "2020-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-08.tif"
- ],
- [
- "2020-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-09.tif"
- ],
- [
- "2020-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-10.tif"
- ],
- [
- "2020-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-11.tif"
- ],
- [
- "2020-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-12.tif"
- ],
- [
- "2020-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-13.tif"
- ],
- [
- "2020-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-14.tif"
- ],
- [
- "2020-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-15.tif"
- ],
- [
- "2020-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-16.tif"
- ],
- [
- "2020-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-17.tif"
- ],
- [
- "2020-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-18.tif"
- ],
- [
- "2020-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-19.tif"
- ],
- [
- "2020-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-20.tif"
- ],
- [
- "2020-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-21.tif"
- ],
- [
- "2020-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-22.tif"
- ],
- [
- "2020-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-23.tif"
- ],
- [
- "2020-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-24.tif"
- ],
- [
- "2020-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-25.tif"
- ],
- [
- "2020-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-26.tif"
- ],
- [
- "2020-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-27.tif"
- ],
- [
- "2020-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-28.tif"
- ],
- [
- "2020-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-29.tif"
- ],
- [
- "2020-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-30.tif"
- ],
- [
- "2020-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-01-31.tif"
- ],
- [
- "2020-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-01.tif"
- ],
- [
- "2020-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-02.tif"
- ],
- [
- "2020-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-03.tif"
- ],
- [
- "2020-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-04.tif"
- ],
- [
- "2020-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-05.tif"
- ],
- [
- "2020-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-06.tif"
- ],
- [
- "2020-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-07.tif"
- ],
- [
- "2020-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-08.tif"
- ],
- [
- "2020-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-09.tif"
- ],
- [
- "2020-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-10.tif"
- ],
- [
- "2020-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-11.tif"
- ],
- [
- "2020-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-12.tif"
- ],
- [
- "2020-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-13.tif"
- ],
- [
- "2020-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-14.tif"
- ],
- [
- "2020-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-15.tif"
- ],
- [
- "2020-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-16.tif"
- ],
- [
- "2020-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-17.tif"
- ],
- [
- "2020-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-18.tif"
- ],
- [
- "2020-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-19.tif"
- ],
- [
- "2020-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-20.tif"
- ],
- [
- "2020-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-21.tif"
- ],
- [
- "2020-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-22.tif"
- ],
- [
- "2020-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-23.tif"
- ],
- [
- "2020-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-24.tif"
- ],
- [
- "2020-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-25.tif"
- ],
- [
- "2020-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-26.tif"
- ],
- [
- "2020-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-27.tif"
- ],
- [
- "2020-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-28.tif"
- ],
- [
- "2020-02-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-02-29.tif"
- ],
- [
- "2020-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-01.tif"
- ],
- [
- "2020-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-02.tif"
- ],
- [
- "2020-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-03.tif"
- ],
- [
- "2020-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-04.tif"
- ],
- [
- "2020-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-05.tif"
- ],
- [
- "2020-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-06.tif"
- ],
- [
- "2020-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-07.tif"
- ],
- [
- "2020-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-08.tif"
- ],
- [
- "2020-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-09.tif"
- ],
- [
- "2020-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-10.tif"
- ],
- [
- "2020-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-11.tif"
- ],
- [
- "2020-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-12.tif"
- ],
- [
- "2020-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-13.tif"
- ],
- [
- "2020-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-14.tif"
- ],
- [
- "2020-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-15.tif"
- ],
- [
- "2020-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-16.tif"
- ],
- [
- "2020-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-17.tif"
- ],
- [
- "2020-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-18.tif"
- ],
- [
- "2020-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-19.tif"
- ],
- [
- "2020-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-20.tif"
- ],
- [
- "2020-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-21.tif"
- ],
- [
- "2020-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-22.tif"
- ],
- [
- "2020-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-23.tif"
- ],
- [
- "2020-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-24.tif"
- ],
- [
- "2020-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-25.tif"
- ],
- [
- "2020-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-26.tif"
- ],
- [
- "2020-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-27.tif"
- ],
- [
- "2020-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-28.tif"
- ],
- [
- "2020-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-29.tif"
- ],
- [
- "2020-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-30.tif"
- ],
- [
- "2020-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-03-31.tif"
- ],
- [
- "2020-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-01.tif"
- ],
- [
- "2020-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-02.tif"
- ],
- [
- "2020-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-03.tif"
- ],
- [
- "2020-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-04.tif"
- ],
- [
- "2020-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-05.tif"
- ],
- [
- "2020-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-06.tif"
- ],
- [
- "2020-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-07.tif"
- ],
- [
- "2020-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-08.tif"
- ],
- [
- "2020-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-09.tif"
- ],
- [
- "2020-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-10.tif"
- ],
- [
- "2020-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-11.tif"
- ],
- [
- "2020-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-12.tif"
- ],
- [
- "2020-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-13.tif"
- ],
- [
- "2020-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-14.tif"
- ],
- [
- "2020-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-15.tif"
- ],
- [
- "2020-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-16.tif"
- ],
- [
- "2020-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-17.tif"
- ],
- [
- "2020-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-18.tif"
- ],
- [
- "2020-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-19.tif"
- ],
- [
- "2020-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-20.tif"
- ],
- [
- "2020-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-21.tif"
- ],
- [
- "2020-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-22.tif"
- ],
- [
- "2020-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-23.tif"
- ],
- [
- "2020-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-24.tif"
- ],
- [
- "2020-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-25.tif"
- ],
- [
- "2020-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-26.tif"
- ],
- [
- "2020-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-27.tif"
- ],
- [
- "2020-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-28.tif"
- ],
- [
- "2020-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-29.tif"
- ],
- [
- "2020-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-04-30.tif"
- ],
- [
- "2020-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-01.tif"
- ],
- [
- "2020-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-02.tif"
- ],
- [
- "2020-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-03.tif"
- ],
- [
- "2020-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-04.tif"
- ],
- [
- "2020-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-05.tif"
- ],
- [
- "2020-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-06.tif"
- ],
- [
- "2020-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-07.tif"
- ],
- [
- "2020-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-08.tif"
- ],
- [
- "2020-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-09.tif"
- ],
- [
- "2020-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-10.tif"
- ],
- [
- "2020-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-11.tif"
- ],
- [
- "2020-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-12.tif"
- ],
- [
- "2020-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-13.tif"
- ],
- [
- "2020-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-14.tif"
- ],
- [
- "2020-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-15.tif"
- ],
- [
- "2020-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-16.tif"
- ],
- [
- "2020-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-17.tif"
- ],
- [
- "2020-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-18.tif"
- ],
- [
- "2020-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-19.tif"
- ],
- [
- "2020-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-20.tif"
- ],
- [
- "2020-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-21.tif"
- ],
- [
- "2020-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-22.tif"
- ],
- [
- "2020-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-23.tif"
- ],
- [
- "2020-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-24.tif"
- ],
- [
- "2020-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-25.tif"
- ],
- [
- "2020-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-26.tif"
- ],
- [
- "2020-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-27.tif"
- ],
- [
- "2020-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-28.tif"
- ],
- [
- "2020-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-29.tif"
- ],
- [
- "2020-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-30.tif"
- ],
- [
- "2020-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-05-31.tif"
- ],
- [
- "2020-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-01.tif"
- ],
- [
- "2020-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-02.tif"
- ],
- [
- "2020-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-03.tif"
- ],
- [
- "2020-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-04.tif"
- ],
- [
- "2020-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-05.tif"
- ],
- [
- "2020-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-06.tif"
- ],
- [
- "2020-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-07.tif"
- ],
- [
- "2020-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-08.tif"
- ],
- [
- "2020-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-09.tif"
- ],
- [
- "2020-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-10.tif"
- ],
- [
- "2020-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-11.tif"
- ],
- [
- "2020-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-12.tif"
- ],
- [
- "2020-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-13.tif"
- ],
- [
- "2020-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-14.tif"
- ],
- [
- "2020-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-15.tif"
- ],
- [
- "2020-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-16.tif"
- ],
- [
- "2020-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-17.tif"
- ],
- [
- "2020-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-18.tif"
- ],
- [
- "2020-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-19.tif"
- ],
- [
- "2020-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-20.tif"
- ],
- [
- "2020-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-21.tif"
- ],
- [
- "2020-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-22.tif"
- ],
- [
- "2020-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-23.tif"
- ],
- [
- "2020-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-24.tif"
- ],
- [
- "2020-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-25.tif"
- ],
- [
- "2020-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-26.tif"
- ],
- [
- "2020-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-27.tif"
- ],
- [
- "2020-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-28.tif"
- ],
- [
- "2020-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-29.tif"
- ],
- [
- "2020-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-06-30.tif"
- ],
- [
- "2020-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-01.tif"
- ],
- [
- "2020-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-02.tif"
- ],
- [
- "2020-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-03.tif"
- ],
- [
- "2020-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-04.tif"
- ],
- [
- "2020-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-05.tif"
- ],
- [
- "2020-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-06.tif"
- ],
- [
- "2020-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-07.tif"
- ],
- [
- "2020-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-08.tif"
- ],
- [
- "2020-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-09.tif"
- ],
- [
- "2020-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-10.tif"
- ],
- [
- "2020-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-11.tif"
- ],
- [
- "2020-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-12.tif"
- ],
- [
- "2020-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-13.tif"
- ],
- [
- "2020-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-14.tif"
- ],
- [
- "2020-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-15.tif"
- ],
- [
- "2020-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-16.tif"
- ],
- [
- "2020-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-17.tif"
- ],
- [
- "2020-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-18.tif"
- ],
- [
- "2020-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-19.tif"
- ],
- [
- "2020-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-20.tif"
- ],
- [
- "2020-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-21.tif"
- ],
- [
- "2020-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-22.tif"
- ],
- [
- "2020-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-23.tif"
- ],
- [
- "2020-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-24.tif"
- ],
- [
- "2020-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-25.tif"
- ],
- [
- "2020-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-26.tif"
- ],
- [
- "2020-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-27.tif"
- ],
- [
- "2020-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-28.tif"
- ],
- [
- "2020-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-29.tif"
- ],
- [
- "2020-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-30.tif"
- ],
- [
- "2020-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-07-31.tif"
- ],
- [
- "2020-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-01.tif"
- ],
- [
- "2020-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-02.tif"
- ],
- [
- "2020-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-03.tif"
- ],
- [
- "2020-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-04.tif"
- ],
- [
- "2020-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-05.tif"
- ],
- [
- "2020-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-06.tif"
- ],
- [
- "2020-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-07.tif"
- ],
- [
- "2020-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-08.tif"
- ],
- [
- "2020-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-09.tif"
- ],
- [
- "2020-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-10.tif"
- ],
- [
- "2020-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-11.tif"
- ],
- [
- "2020-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-12.tif"
- ],
- [
- "2020-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-13.tif"
- ],
- [
- "2020-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-14.tif"
- ],
- [
- "2020-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-15.tif"
- ],
- [
- "2020-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-16.tif"
- ],
- [
- "2020-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-17.tif"
- ],
- [
- "2020-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-18.tif"
- ],
- [
- "2020-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-19.tif"
- ],
- [
- "2020-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-20.tif"
- ],
- [
- "2020-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-21.tif"
- ],
- [
- "2020-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-22.tif"
- ],
- [
- "2020-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-23.tif"
- ],
- [
- "2020-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-24.tif"
- ],
- [
- "2020-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-25.tif"
- ],
- [
- "2020-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-26.tif"
- ],
- [
- "2020-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-27.tif"
- ],
- [
- "2020-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-28.tif"
- ],
- [
- "2020-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-29.tif"
- ],
- [
- "2020-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-30.tif"
- ],
- [
- "2020-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-08-31.tif"
- ],
- [
- "2020-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-01.tif"
- ],
- [
- "2020-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-02.tif"
- ],
- [
- "2020-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-03.tif"
- ],
- [
- "2020-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-04.tif"
- ],
- [
- "2020-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-05.tif"
- ],
- [
- "2020-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-06.tif"
- ],
- [
- "2020-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-07.tif"
- ],
- [
- "2020-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-08.tif"
- ],
- [
- "2020-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-09.tif"
- ],
- [
- "2020-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-10.tif"
- ],
- [
- "2020-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-11.tif"
- ],
- [
- "2020-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-12.tif"
- ],
- [
- "2020-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-13.tif"
- ],
- [
- "2020-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-14.tif"
- ],
- [
- "2020-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-15.tif"
- ],
- [
- "2020-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-16.tif"
- ],
- [
- "2020-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-17.tif"
- ],
- [
- "2020-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-18.tif"
- ],
- [
- "2020-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-19.tif"
- ],
- [
- "2020-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-20.tif"
- ],
- [
- "2020-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-21.tif"
- ],
- [
- "2020-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-22.tif"
- ],
- [
- "2020-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-23.tif"
- ],
- [
- "2020-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-24.tif"
- ],
- [
- "2020-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-25.tif"
- ],
- [
- "2020-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-26.tif"
- ],
- [
- "2020-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-27.tif"
- ],
- [
- "2020-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-28.tif"
- ],
- [
- "2020-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-29.tif"
- ],
- [
- "2020-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-09-30.tif"
- ],
- [
- "2020-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-01.tif"
- ],
- [
- "2020-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-02.tif"
- ],
- [
- "2020-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-03.tif"
- ],
- [
- "2020-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-04.tif"
- ],
- [
- "2020-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-05.tif"
- ],
- [
- "2020-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-06.tif"
- ],
- [
- "2020-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-07.tif"
- ],
- [
- "2020-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-08.tif"
- ],
- [
- "2020-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-09.tif"
- ],
- [
- "2020-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-10.tif"
- ],
- [
- "2020-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-11.tif"
- ],
- [
- "2020-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-12.tif"
- ],
- [
- "2020-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-13.tif"
- ],
- [
- "2020-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-14.tif"
- ],
- [
- "2020-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-15.tif"
- ],
- [
- "2020-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-16.tif"
- ],
- [
- "2020-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-17.tif"
- ],
- [
- "2020-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-18.tif"
- ],
- [
- "2020-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-19.tif"
- ],
- [
- "2020-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-20.tif"
- ],
- [
- "2020-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-21.tif"
- ],
- [
- "2020-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-22.tif"
- ],
- [
- "2020-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-23.tif"
- ],
- [
- "2020-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-24.tif"
- ],
- [
- "2020-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-25.tif"
- ],
- [
- "2020-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-26.tif"
- ],
- [
- "2020-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-27.tif"
- ],
- [
- "2020-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-28.tif"
- ],
- [
- "2020-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-29.tif"
- ],
- [
- "2020-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-30.tif"
- ],
- [
- "2020-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-10-31.tif"
- ],
- [
- "2020-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-01.tif"
- ],
- [
- "2020-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-02.tif"
- ],
- [
- "2020-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-03.tif"
- ],
- [
- "2020-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-04.tif"
- ],
- [
- "2020-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-05.tif"
- ],
- [
- "2020-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-06.tif"
- ],
- [
- "2020-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-07.tif"
- ],
- [
- "2020-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-08.tif"
- ],
- [
- "2020-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-09.tif"
- ],
- [
- "2020-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-10.tif"
- ],
- [
- "2020-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-11.tif"
- ],
- [
- "2020-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-12.tif"
- ],
- [
- "2020-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-13.tif"
- ],
- [
- "2020-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-14.tif"
- ],
- [
- "2020-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-15.tif"
- ],
- [
- "2020-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-16.tif"
- ],
- [
- "2020-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-17.tif"
- ],
- [
- "2020-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-18.tif"
- ],
- [
- "2020-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-19.tif"
- ],
- [
- "2020-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-20.tif"
- ],
- [
- "2020-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-21.tif"
- ],
- [
- "2020-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-22.tif"
- ],
- [
- "2020-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-23.tif"
- ],
- [
- "2020-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-24.tif"
- ],
- [
- "2020-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-25.tif"
- ],
- [
- "2020-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-26.tif"
- ],
- [
- "2020-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-27.tif"
- ],
- [
- "2020-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-28.tif"
- ],
- [
- "2020-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-29.tif"
- ],
- [
- "2020-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-11-30.tif"
- ],
- [
- "2020-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-01.tif"
- ],
- [
- "2020-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-02.tif"
- ],
- [
- "2020-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-03.tif"
- ],
- [
- "2020-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-04.tif"
- ],
- [
- "2020-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-05.tif"
- ],
- [
- "2020-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-06.tif"
- ],
- [
- "2020-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-07.tif"
- ],
- [
- "2020-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-08.tif"
- ],
- [
- "2020-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-09.tif"
- ],
- [
- "2020-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-10.tif"
- ],
- [
- "2020-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-11.tif"
- ],
- [
- "2020-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-12.tif"
- ],
- [
- "2020-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-13.tif"
- ],
- [
- "2020-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-14.tif"
- ],
- [
- "2020-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-15.tif"
- ],
- [
- "2020-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2020-12-16.tif"
- ],
- [
- "2021-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-01.tif"
- ],
- [
- "2021-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-02.tif"
- ],
- [
- "2021-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-03.tif"
- ],
- [
- "2021-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-04.tif"
- ],
- [
- "2021-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-05.tif"
- ],
- [
- "2021-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-06.tif"
- ],
- [
- "2021-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-07.tif"
- ],
- [
- "2021-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-08.tif"
- ],
- [
- "2021-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-09.tif"
- ],
- [
- "2021-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-10.tif"
- ],
- [
- "2021-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-11.tif"
- ],
- [
- "2021-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-12.tif"
- ],
- [
- "2021-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-13.tif"
- ],
- [
- "2021-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-14.tif"
- ],
- [
- "2021-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-15.tif"
- ],
- [
- "2021-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-16.tif"
- ],
- [
- "2021-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-17.tif"
- ],
- [
- "2021-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-18.tif"
- ],
- [
- "2021-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-19.tif"
- ],
- [
- "2021-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-20.tif"
- ],
- [
- "2021-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-21.tif"
- ],
- [
- "2021-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-22.tif"
- ],
- [
- "2021-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-23.tif"
- ],
- [
- "2021-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-24.tif"
- ],
- [
- "2021-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-25.tif"
- ],
- [
- "2021-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-26.tif"
- ],
- [
- "2021-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-27.tif"
- ],
- [
- "2021-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-28.tif"
- ],
- [
- "2021-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-29.tif"
- ],
- [
- "2021-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-30.tif"
- ],
- [
- "2021-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-01-31.tif"
- ],
- [
- "2021-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-01.tif"
- ],
- [
- "2021-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-02.tif"
- ],
- [
- "2021-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-03.tif"
- ],
- [
- "2021-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-04.tif"
- ],
- [
- "2021-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-05.tif"
- ],
- [
- "2021-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-06.tif"
- ],
- [
- "2021-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-07.tif"
- ],
- [
- "2021-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-08.tif"
- ],
- [
- "2021-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-09.tif"
- ],
- [
- "2021-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-10.tif"
- ],
- [
- "2021-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-11.tif"
- ],
- [
- "2021-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-12.tif"
- ],
- [
- "2021-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-13.tif"
- ],
- [
- "2021-02-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-14.tif"
- ],
- [
- "2021-02-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-15.tif"
- ],
- [
- "2021-02-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-16.tif"
- ],
- [
- "2021-02-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-17.tif"
- ],
- [
- "2021-02-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-18.tif"
- ],
- [
- "2021-02-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-19.tif"
- ],
- [
- "2021-02-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-20.tif"
- ],
- [
- "2021-02-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-21.tif"
- ],
- [
- "2021-02-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-22.tif"
- ],
- [
- "2021-02-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-23.tif"
- ],
- [
- "2021-02-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-24.tif"
- ],
- [
- "2021-02-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-25.tif"
- ],
- [
- "2021-02-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-26.tif"
- ],
- [
- "2021-02-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-27.tif"
- ],
- [
- "2021-02-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-02-28.tif"
- ],
- [
- "2021-03-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-01.tif"
- ],
- [
- "2021-03-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-02.tif"
- ],
- [
- "2021-03-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-03.tif"
- ],
- [
- "2021-03-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-04.tif"
- ],
- [
- "2021-03-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-05.tif"
- ],
- [
- "2021-03-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-06.tif"
- ],
- [
- "2021-03-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-07.tif"
- ],
- [
- "2021-03-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-08.tif"
- ],
- [
- "2021-03-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-09.tif"
- ],
- [
- "2021-03-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-10.tif"
- ],
- [
- "2021-03-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-11.tif"
- ],
- [
- "2021-03-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-12.tif"
- ],
- [
- "2021-03-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-13.tif"
- ],
- [
- "2021-03-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-14.tif"
- ],
- [
- "2021-03-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-15.tif"
- ],
- [
- "2021-03-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-16.tif"
- ],
- [
- "2021-03-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-17.tif"
- ],
- [
- "2021-03-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-18.tif"
- ],
- [
- "2021-03-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-19.tif"
- ],
- [
- "2021-03-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-20.tif"
- ],
- [
- "2021-03-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-21.tif"
- ],
- [
- "2021-03-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-22.tif"
- ],
- [
- "2021-03-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-23.tif"
- ],
- [
- "2021-03-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-24.tif"
- ],
- [
- "2021-03-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-25.tif"
- ],
- [
- "2021-03-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-26.tif"
- ],
- [
- "2021-03-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-27.tif"
- ],
- [
- "2021-03-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-28.tif"
- ],
- [
- "2021-03-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-29.tif"
- ],
- [
- "2021-03-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-30.tif"
- ],
- [
- "2021-03-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-03-31.tif"
- ],
- [
- "2021-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-01.tif"
- ],
- [
- "2021-04-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-02.tif"
- ],
- [
- "2021-04-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-03.tif"
- ],
- [
- "2021-04-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-04.tif"
- ],
- [
- "2021-04-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-05.tif"
- ],
- [
- "2021-04-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-06.tif"
- ],
- [
- "2021-04-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-07.tif"
- ],
- [
- "2021-04-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-08.tif"
- ],
- [
- "2021-04-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-09.tif"
- ],
- [
- "2021-04-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-10.tif"
- ],
- [
- "2021-04-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-11.tif"
- ],
- [
- "2021-04-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-12.tif"
- ],
- [
- "2021-04-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-13.tif"
- ],
- [
- "2021-04-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-14.tif"
- ],
- [
- "2021-04-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-15.tif"
- ],
- [
- "2021-04-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-16.tif"
- ],
- [
- "2021-04-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-17.tif"
- ],
- [
- "2021-04-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-18.tif"
- ],
- [
- "2021-04-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-19.tif"
- ],
- [
- "2021-04-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-20.tif"
- ],
- [
- "2021-04-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-21.tif"
- ],
- [
- "2021-04-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-22.tif"
- ],
- [
- "2021-04-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-23.tif"
- ],
- [
- "2021-04-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-24.tif"
- ],
- [
- "2021-04-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-25.tif"
- ],
- [
- "2021-04-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-26.tif"
- ],
- [
- "2021-04-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-27.tif"
- ],
- [
- "2021-04-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-28.tif"
- ],
- [
- "2021-04-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-29.tif"
- ],
- [
- "2021-04-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-04-30.tif"
- ],
- [
- "2021-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-01.tif"
- ],
- [
- "2021-05-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-02.tif"
- ],
- [
- "2021-05-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-03.tif"
- ],
- [
- "2021-05-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-04.tif"
- ],
- [
- "2021-05-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-05.tif"
- ],
- [
- "2021-05-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-06.tif"
- ],
- [
- "2021-05-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-07.tif"
- ],
- [
- "2021-05-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-08.tif"
- ],
- [
- "2021-05-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-09.tif"
- ],
- [
- "2021-05-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-10.tif"
- ],
- [
- "2021-05-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-11.tif"
- ],
- [
- "2021-05-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-12.tif"
- ],
- [
- "2021-05-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-13.tif"
- ],
- [
- "2021-05-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-14.tif"
- ],
- [
- "2021-05-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-15.tif"
- ],
- [
- "2021-05-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-16.tif"
- ],
- [
- "2021-05-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-17.tif"
- ],
- [
- "2021-05-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-18.tif"
- ],
- [
- "2021-05-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-19.tif"
- ],
- [
- "2021-05-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-20.tif"
- ],
- [
- "2021-05-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-21.tif"
- ],
- [
- "2021-05-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-22.tif"
- ],
- [
- "2021-05-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-23.tif"
- ],
- [
- "2021-05-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-24.tif"
- ],
- [
- "2021-05-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-25.tif"
- ],
- [
- "2021-05-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-26.tif"
- ],
- [
- "2021-05-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-27.tif"
- ],
- [
- "2021-05-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-28.tif"
- ],
- [
- "2021-05-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-29.tif"
- ],
- [
- "2021-05-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-30.tif"
- ],
- [
- "2021-05-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-05-31.tif"
- ],
- [
- "2021-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-01.tif"
- ],
- [
- "2021-06-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-02.tif"
- ],
- [
- "2021-06-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-03.tif"
- ],
- [
- "2021-06-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-04.tif"
- ],
- [
- "2021-06-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-05.tif"
- ],
- [
- "2021-06-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-06.tif"
- ],
- [
- "2021-06-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-07.tif"
- ],
- [
- "2021-06-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-08.tif"
- ],
- [
- "2021-06-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-09.tif"
- ],
- [
- "2021-06-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-10.tif"
- ],
- [
- "2021-06-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-11.tif"
- ],
- [
- "2021-06-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-12.tif"
- ],
- [
- "2021-06-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-13.tif"
- ],
- [
- "2021-06-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-14.tif"
- ],
- [
- "2021-06-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-15.tif"
- ],
- [
- "2021-06-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-16.tif"
- ],
- [
- "2021-06-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-17.tif"
- ],
- [
- "2021-06-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-18.tif"
- ],
- [
- "2021-06-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-19.tif"
- ],
- [
- "2021-06-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-20.tif"
- ],
- [
- "2021-06-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-21.tif"
- ],
- [
- "2021-06-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-22.tif"
- ],
- [
- "2021-06-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-23.tif"
- ],
- [
- "2021-06-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-24.tif"
- ],
- [
- "2021-06-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-25.tif"
- ],
- [
- "2021-06-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-26.tif"
- ],
- [
- "2021-06-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-27.tif"
- ],
- [
- "2021-06-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-28.tif"
- ],
- [
- "2021-06-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-29.tif"
- ],
- [
- "2021-06-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-06-30.tif"
- ],
- [
- "2021-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-01.tif"
- ],
- [
- "2021-07-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-02.tif"
- ],
- [
- "2021-07-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-03.tif"
- ],
- [
- "2021-07-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-04.tif"
- ],
- [
- "2021-07-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-05.tif"
- ],
- [
- "2021-07-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-06.tif"
- ],
- [
- "2021-07-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-07.tif"
- ],
- [
- "2021-07-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-08.tif"
- ],
- [
- "2021-07-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-09.tif"
- ],
- [
- "2021-07-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-10.tif"
- ],
- [
- "2021-07-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-11.tif"
- ],
- [
- "2021-07-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-12.tif"
- ],
- [
- "2021-07-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-13.tif"
- ],
- [
- "2021-07-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-14.tif"
- ],
- [
- "2021-07-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-15.tif"
- ],
- [
- "2021-07-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-16.tif"
- ],
- [
- "2021-07-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-17.tif"
- ],
- [
- "2021-07-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-18.tif"
- ],
- [
- "2021-07-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-19.tif"
- ],
- [
- "2021-07-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-20.tif"
- ],
- [
- "2021-07-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-21.tif"
- ],
- [
- "2021-07-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-22.tif"
- ],
- [
- "2021-07-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-23.tif"
- ],
- [
- "2021-07-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-24.tif"
- ],
- [
- "2021-07-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-25.tif"
- ],
- [
- "2021-07-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-26.tif"
- ],
- [
- "2021-07-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-27.tif"
- ],
- [
- "2021-07-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-28.tif"
- ],
- [
- "2021-07-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-29.tif"
- ],
- [
- "2021-07-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-30.tif"
- ],
- [
- "2021-07-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-07-31.tif"
- ],
- [
- "2021-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-01.tif"
- ],
- [
- "2021-08-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-02.tif"
- ],
- [
- "2021-08-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-03.tif"
- ],
- [
- "2021-08-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-04.tif"
- ],
- [
- "2021-08-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-05.tif"
- ],
- [
- "2021-08-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-06.tif"
- ],
- [
- "2021-08-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-07.tif"
- ],
- [
- "2021-08-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-08.tif"
- ],
- [
- "2021-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-09.tif"
- ],
- [
- "2021-08-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-10.tif"
- ],
- [
- "2021-08-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-11.tif"
- ],
- [
- "2021-08-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-12.tif"
- ],
- [
- "2021-08-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-13.tif"
- ],
- [
- "2021-08-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-14.tif"
- ],
- [
- "2021-08-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-15.tif"
- ],
- [
- "2021-08-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-16.tif"
- ],
- [
- "2021-08-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-17.tif"
- ],
- [
- "2021-08-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-18.tif"
- ],
- [
- "2021-08-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-19.tif"
- ],
- [
- "2021-08-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-20.tif"
- ],
- [
- "2021-08-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-21.tif"
- ],
- [
- "2021-08-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-22.tif"
- ],
- [
- "2021-08-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-23.tif"
- ],
- [
- "2021-08-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-24.tif"
- ],
- [
- "2021-08-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-25.tif"
- ],
- [
- "2021-08-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-26.tif"
- ],
- [
- "2021-08-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-27.tif"
- ],
- [
- "2021-08-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-28.tif"
- ],
- [
- "2021-08-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-29.tif"
- ],
- [
- "2021-08-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-30.tif"
- ],
- [
- "2021-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-08-31.tif"
- ],
- [
- "2021-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-01.tif"
- ],
- [
- "2021-09-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-02.tif"
- ],
- [
- "2021-09-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-03.tif"
- ],
- [
- "2021-09-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-04.tif"
- ],
- [
- "2021-09-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-05.tif"
- ],
- [
- "2021-09-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-06.tif"
- ],
- [
- "2021-09-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-07.tif"
- ],
- [
- "2021-09-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-08.tif"
- ],
- [
- "2021-09-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-09.tif"
- ],
- [
- "2021-09-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-10.tif"
- ],
- [
- "2021-09-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-11.tif"
- ],
- [
- "2021-09-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-12.tif"
- ],
- [
- "2021-09-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-13.tif"
- ],
- [
- "2021-09-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-14.tif"
- ],
- [
- "2021-09-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-15.tif"
- ],
- [
- "2021-09-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-16.tif"
- ],
- [
- "2021-09-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-17.tif"
- ],
- [
- "2021-09-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-18.tif"
- ],
- [
- "2021-09-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-19.tif"
- ],
- [
- "2021-09-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-20.tif"
- ],
- [
- "2021-09-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-21.tif"
- ],
- [
- "2021-09-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-22.tif"
- ],
- [
- "2021-09-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-23.tif"
- ],
- [
- "2021-09-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-24.tif"
- ],
- [
- "2021-09-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-25.tif"
- ],
- [
- "2021-09-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-26.tif"
- ],
- [
- "2021-09-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-27.tif"
- ],
- [
- "2021-09-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-28.tif"
- ],
- [
- "2021-09-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-29.tif"
- ],
- [
- "2021-09-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-09-30.tif"
- ],
- [
- "2021-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-01.tif"
- ],
- [
- "2021-10-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-02.tif"
- ],
- [
- "2021-10-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-03.tif"
- ],
- [
- "2021-10-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-04.tif"
- ],
- [
- "2021-10-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-05.tif"
- ],
- [
- "2021-10-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-06.tif"
- ],
- [
- "2021-10-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-07.tif"
- ],
- [
- "2021-10-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-08.tif"
- ],
- [
- "2021-10-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-09.tif"
- ],
- [
- "2021-10-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-10.tif"
- ],
- [
- "2021-10-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-11.tif"
- ],
- [
- "2021-10-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-12.tif"
- ],
- [
- "2021-10-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-13.tif"
- ],
- [
- "2021-10-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-14.tif"
- ],
- [
- "2021-10-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-15.tif"
- ],
- [
- "2021-10-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-16.tif"
- ],
- [
- "2021-10-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-17.tif"
- ],
- [
- "2021-10-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-18.tif"
- ],
- [
- "2021-10-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-19.tif"
- ],
- [
- "2021-10-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-20.tif"
- ],
- [
- "2021-10-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-21.tif"
- ],
- [
- "2021-10-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-22.tif"
- ],
- [
- "2021-10-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-23.tif"
- ],
- [
- "2021-10-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-24.tif"
- ],
- [
- "2021-10-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-25.tif"
- ],
- [
- "2021-10-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-26.tif"
- ],
- [
- "2021-10-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-27.tif"
- ],
- [
- "2021-10-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-28.tif"
- ],
- [
- "2021-10-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-29.tif"
- ],
- [
- "2021-10-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-30.tif"
- ],
- [
- "2021-10-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-10-31.tif"
- ],
- [
- "2021-11-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-01.tif"
- ],
- [
- "2021-11-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-02.tif"
- ],
- [
- "2021-11-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-03.tif"
- ],
- [
- "2021-11-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-04.tif"
- ],
- [
- "2021-11-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-05.tif"
- ],
- [
- "2021-11-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-06.tif"
- ],
- [
- "2021-11-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-07.tif"
- ],
- [
- "2021-11-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-08.tif"
- ],
- [
- "2021-11-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-09.tif"
- ],
- [
- "2021-11-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-10.tif"
- ],
- [
- "2021-11-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-11.tif"
- ],
- [
- "2021-11-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-12.tif"
- ],
- [
- "2021-11-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-13.tif"
- ],
- [
- "2021-11-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-14.tif"
- ],
- [
- "2021-11-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-15.tif"
- ],
- [
- "2021-11-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-16.tif"
- ],
- [
- "2021-11-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-17.tif"
- ],
- [
- "2021-11-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-18.tif"
- ],
- [
- "2021-11-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-19.tif"
- ],
- [
- "2021-11-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-20.tif"
- ],
- [
- "2021-11-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-21.tif"
- ],
- [
- "2021-11-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-22.tif"
- ],
- [
- "2021-11-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-23.tif"
- ],
- [
- "2021-11-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-24.tif"
- ],
- [
- "2021-11-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-25.tif"
- ],
- [
- "2021-11-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-26.tif"
- ],
- [
- "2021-11-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-27.tif"
- ],
- [
- "2021-11-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-28.tif"
- ],
- [
- "2021-11-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-29.tif"
- ],
- [
- "2021-11-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-11-30.tif"
- ],
- [
- "2021-12-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-01.tif"
- ],
- [
- "2021-12-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-02.tif"
- ],
- [
- "2021-12-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-03.tif"
- ],
- [
- "2021-12-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-04.tif"
- ],
- [
- "2021-12-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-05.tif"
- ],
- [
- "2021-12-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-06.tif"
- ],
- [
- "2021-12-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-07.tif"
- ],
- [
- "2021-12-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-08.tif"
- ],
- [
- "2021-12-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-09.tif"
- ],
- [
- "2021-12-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-10.tif"
- ],
- [
- "2021-12-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-11.tif"
- ],
- [
- "2021-12-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-12.tif"
- ],
- [
- "2021-12-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-13.tif"
- ],
- [
- "2021-12-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-14.tif"
- ],
- [
- "2021-12-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-15.tif"
- ],
- [
- "2021-12-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2021-12-16.tif"
- ],
- [
- "2022-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-01.tif"
- ],
- [
- "2022-01-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-02.tif"
- ],
- [
- "2022-01-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-03.tif"
- ],
- [
- "2022-01-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-04.tif"
- ],
- [
- "2022-01-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-05.tif"
- ],
- [
- "2022-01-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-06.tif"
- ],
- [
- "2022-01-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-07.tif"
- ],
- [
- "2022-01-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-08.tif"
- ],
- [
- "2022-01-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-09.tif"
- ],
- [
- "2022-01-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-10.tif"
- ],
- [
- "2022-01-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-11.tif"
- ],
- [
- "2022-01-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-12.tif"
- ],
- [
- "2022-01-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-13.tif"
- ],
- [
- "2022-01-14T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-14.tif"
- ],
- [
- "2022-01-15T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-15.tif"
- ],
- [
- "2022-01-16T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-16.tif"
- ],
- [
- "2022-01-17T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-17.tif"
- ],
- [
- "2022-01-18T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-18.tif"
- ],
- [
- "2022-01-19T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-19.tif"
- ],
- [
- "2022-01-20T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-20.tif"
- ],
- [
- "2022-01-21T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-21.tif"
- ],
- [
- "2022-01-22T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-22.tif"
- ],
- [
- "2022-01-23T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-23.tif"
- ],
- [
- "2022-01-24T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-24.tif"
- ],
- [
- "2022-01-25T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-25.tif"
- ],
- [
- "2022-01-26T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-26.tif"
- ],
- [
- "2022-01-27T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-27.tif"
- ],
- [
- "2022-01-28T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-28.tif"
- ],
- [
- "2022-01-29T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-29.tif"
- ],
- [
- "2022-01-30T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-30.tif"
- ],
- [
- "2022-01-31T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-01-31.tif"
- ],
- [
- "2022-02-01T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-01.tif"
- ],
- [
- "2022-02-02T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-02.tif"
- ],
- [
- "2022-02-03T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-03.tif"
- ],
- [
- "2022-02-04T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-04.tif"
- ],
- [
- "2022-02-05T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-05.tif"
- ],
- [
- "2022-02-06T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-06.tif"
- ],
- [
- "2022-02-07T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-07.tif"
- ],
- [
- "2022-02-08T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-08.tif"
- ],
- [
- "2022-02-09T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-09.tif"
- ],
- [
- "2022-02-10T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-10.tif"
- ],
- [
- "2022-02-11T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-11.tif"
- ],
- [
- "2022-02-12T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-12.tif"
- ],
- [
- "2022-02-13T00:00:00+00:00",
- "s3://veda-data-store-staging/co2-mean/xco2_16day_mean._2022-02-13.tif"
- ]
- ],
- "facebook_population_density": [
- [
- "2015-01-01T00:00:00+00:00",
- "s3://veda-data-store-staging/facebook_population_density/hrsl_general_latest_global_cog_2015-01-01_2022-06-8.tif"
- ]
- ],
- "geoglam": [
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202011.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202111.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202203.tif"
- ],
- [
- "2022-04-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202204.tif"
- ],
- [
- "2022-05-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202205.tif"
- ],
- [
- "2022-06-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202206.tif"
- ],
- [
- "2022-07-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202207.tif"
- ],
- [
- "2022-08-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202208.tif"
- ],
- [
- "2022-09-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202209.tif"
- ],
- [
- "2022-10-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202210.tif"
- ],
- [
- "2022-11-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202211.tif"
- ],
- [
- "2023-01-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_2023_01_28.tif"
- ],
- [
- "2023-02-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_2023_02_28.tif"
- ],
- [
- "2023-03-01T00:00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_2023_03_28.tif"
- ],
- [
- "2023-04-01T00:00:00+00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202304.tif"
- ],
- [
- "2023-05-01T00:00:00+00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202305.tif"
- ],
- [
- "2023-06-01T00:00:00+00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202306.tif"
- ],
- [
- "2023-07-01T00:00:00+00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202307.tif"
- ],
- [
- "2023-08-01T00:00:00+00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202308.tif"
- ],
- [
- "2023-09-01T00:00:00+00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202309.tif"
- ],
- [
- "2023-10-01T00:00:00+00:00",
- "s3://veda-data-store-staging/geoglam/CropMonitor_202310.tif"
- ]
- ],
- "grdi-cdr-raster": [
- [
- "2010-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-cdr-raster/povmap-grdi-v1_CDR_2010-01-01_2010-12-31.tif"
- ]
- ],
- "grdi-filled-missing-values-count": [
- [
- "2010-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-filled-missing-values-count/povmap-grdi-v1_FilledMissingValues-Count_2010-01-01_2021-12-31.tif"
- ]
- ],
- "grdi-imr-raster": [
- [
- "2015-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-imr-raster/povmap-grdi-v1_IMR_2015-01-01_2015-12-31.tif"
- ]
- ],
- "grdi-shdi-raster": [
- [
- "2018-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-shdi-raster/povmap-grdi-v1_SHDI_2018-01-01_2018-12-31.tif"
- ]
- ],
- "grdi-v1-built": [
- [
- "2015-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-v1-built/povmap-grdi-v1_BUILT_2015-01-01_2021-12-31.tif"
- ]
- ],
- "grdi-v1-raster": [
- [
- "2010-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-v1-raster/povmap-grdi-v1_2010-01-01_2021-12-31.tif"
- ]
- ],
- "grdi-vnl-raster": [
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-vnl-raster/povmap-grdi-v1_VNL_2020-01-01_2020-12-31.tif"
- ]
- ],
- "grdi-vnl-slope-raster": [
- [
- "2012-01-01T00:00:00",
- "s3://veda-data-store-staging/grdi-vnl-slope-raster/povmap-grdi-v1_VNL-slope_2012-01-01_2020-12-31.tif"
- ]
- ],
- "landsat-c2l2-sr-antarctic-glaciers-pine-island": [
- [
- "2001-01-04T14:42:14.750591Z",
- "LE07_L2SR_001113_20010104_20200917_02_T2_SR"
- ],
- [
- "2004-02-14T14:40:57.316272Z",
- "LE07_L2SR_001113_20040214_20200915_02_T2_SR"
- ],
- [
- "2005-02-16T14:41:27.264292Z",
- "LE07_L2SR_001113_20050216_20200914_02_T2_SR"
- ],
- [
- "2007-01-05T14:42:03.555786Z",
- "LE07_L2SR_001113_20070105_20200913_02_T2_SR"
- ],
- [
- "2007-11-05T14:41:52.078392Z",
- "LE07_L2SR_001113_20071105_20200913_02_T2_SR"
- ],
- [
- "2007-12-07T14:42:06.753832Z",
- "LE07_L2SR_001113_20071207_20200913_02_T2_SR"
- ],
- [
- "2009-11-10T14:42:23.395492Z",
- "LE07_L2SR_001113_20091110_20200911_02_T2_SR"
- ],
- [
- "2009-12-12T14:42:46.891655Z",
- "LE07_L2SR_001113_20091212_20200911_02_T2_SR"
- ],
- [
- "2010-01-29T14:43:33.369795Z",
- "LE07_L2SR_001113_20100129_20200911_02_T2_SR"
- ],
- [
- "2010-12-15T14:44:51.999980Z",
- "LE07_L2SR_001113_20101215_20200910_02_T2_SR"
- ],
- [
- "2011-02-01T14:45:13.937355Z",
- "LE07_L2SR_001113_20110201_20200910_02_T2_SR"
- ],
- [
- "2012-02-04T14:45:55.223814Z",
- "LE07_L2SR_001113_20120204_20200909_02_T2_SR"
- ],
- [
- "2012-11-02T14:47:40.965512Z",
- "LE07_L2SR_001113_20121102_20200908_02_T2_SR"
- ],
- [
- "2012-11-18T14:47:48.927941Z",
- "LE07_L2SR_001113_20121118_20200908_02_T2_SR"
- ],
- [
- "2013-10-12T14:53:42.796613Z",
- "LC08_L2SR_001113_20131012_20201016_02_T2_SR"
- ],
- [
- "2014-02-17T14:52:39.701996Z",
- "LC08_L2SR_001113_20140217_20201016_02_T2_SR"
- ],
- [
- "2014-12-02T14:52:01.547965Z",
- "LC08_L2SR_001113_20141202_20201016_02_T2_SR"
- ],
- [
- "2015-10-18T14:51:52.454389Z",
- "LC08_L2SR_001113_20151018_20201016_02_T2_SR"
- ],
- [
- "2015-11-03T14:51:57.417639Z",
- "LC08_L2SR_001113_20151103_20201016_02_T2_SR"
- ],
- [
- "2016-01-06T14:51:54.421890Z",
- "LC08_L2SR_001113_20160106_20201016_02_T2_SR"
- ],
- [
- "2016-11-05T14:52:10.795041Z",
- "LC08_L2SR_001113_20161105_20201016_02_T2_SR"
- ],
- [
- "2017-01-08T14:52:01.680377Z",
- "LC08_L2SR_001113_20170108_20201016_02_T2_SR"
- ],
- [
- "2017-01-24T14:51:56.457996Z",
- "LC08_L2SR_001113_20170124_20201016_02_T2_SR"
- ],
- [
- "2017-10-23T14:52:08.672707Z",
- "LC08_L2SR_001113_20171023_20201016_02_T2_SR"
- ],
- [
- "2017-12-10T14:51:59.216653Z",
- "LC08_L2SR_001113_20171210_20201016_02_T2_SR"
- ],
- [
- "2017-12-26T14:52:01.240994Z",
- "LC08_L2SR_001113_20171226_20201016_02_T2_SR"
- ],
- [
- "2018-01-27T14:51:46.173350Z",
- "LC08_L2SR_001113_20180127_20201016_02_T2_SR"
- ],
- [
- "2018-02-28T14:51:32.785491Z",
- "LC08_L2SR_001113_20180228_20201016_02_T2_SR"
- ],
- [
- "2018-11-11T14:51:46.578200Z",
- "LC08_L2SR_001113_20181111_20201016_02_T2_SR"
- ],
- [
- "2018-12-13T14:51:42.344633Z",
- "LC08_L2SR_001113_20181213_20201016_02_T2_SR"
- ],
- [
- "2019-01-14T14:51:40.752836Z",
- "LC08_L2SR_001113_20190114_20201016_02_T2_SR"
- ],
- [
- "2019-01-30T14:51:36.740523Z",
- "LC08_L2SR_001113_20190130_20201016_02_T2_SR"
- ],
- [
- "2019-10-29T14:52:14.049566Z",
- "LC08_L2SR_001113_20191029_20201016_02_T2_SR"
- ],
- [
- "2020-02-02T14:51:54.880883Z",
- "LC08_L2SR_001113_20200202_20201016_02_T2_SR"
- ],
- [
- "2020-10-15T14:52:10.641183Z",
- "LC08_L2SR_001113_20201015_20201105_02_T2_SR"
- ],
- [
- "2020-11-16T14:52:08.021337Z",
- "LC08_L2SR_001113_20201116_20210315_02_T2_SR"
- ],
- [
- "2021-01-19T14:51:58.894322Z",
- "LC08_L2SR_001113_20210119_20210307_02_T2_SR"
- ],
- [
- "2021-10-18T14:52:16.222028Z",
- "LC08_L2SR_001113_20211018_20211026_02_T2_SR"
- ],
- [
- "2021-11-19T14:52:10.482669Z",
- "LC08_L2SR_001113_20211119_20211125_02_T2_SR"
- ],
- [
- "2021-12-13T14:52:08.741160Z",
- "LC09_L2SR_001113_20211213_20220120_02_T2_SR"
- ],
- [
- "2021-12-29T14:52:07.860535Z",
- "LC09_L2SR_001113_20211229_20220121_02_T2_SR"
- ],
- [
- "2022-01-22T14:52:01.005374Z",
- "LC08_L2SR_001113_20220122_20220128_02_T2_SR"
- ],
- [
- "2022-10-21T14:52:25.640980Z",
- "LC08_L2SR_001113_20221021_20221101_02_T2_SR"
- ],
- [
- "2022-11-30T14:52:15.213192Z",
- "LC09_L2SR_001113_20221130_20221202_02_T2_SR"
- ],
- [
- "2022-12-24T14:52:13.638584Z",
- "LC08_L2SR_001113_20221224_20230103_02_T2_SR"
- ],
- [
- "2023-01-25T14:52:12.364151Z",
- "LC08_L2SR_001113_20230125_20230208_02_T2_SR"
- ]
- ],
- "landsat-c2l2-sr-antarctic-glaciers-thwaites": [
- [
- "2001-01-16T15:07:02.414757Z",
- "LE07_L2SR_005113_20010116_20200917_02_T2_SR"
- ],
- [
- "2001-12-02T15:05:04.467155Z",
- "LE07_L2SR_005113_20011202_20200917_02_T2_SR"
- ],
- [
- "2002-12-21T15:04:52.730493Z",
- "LE07_L2SR_005113_20021221_20200916_02_T2_SR"
- ],
- [
- "2004-02-26T15:05:40.102238Z",
- "LE07_L2SR_005113_20040226_20200915_02_T2_SR"
- ],
- [
- "2005-02-12T15:06:08.701070Z",
- "LE07_L2SR_005113_20050212_20200915_02_T2_SR"
- ],
- [
- "2006-12-16T15:06:44.460594Z",
- "LE07_L2SR_005113_20061216_20200913_02_T2_SR"
- ],
- [
- "2007-01-17T15:06:46.872812Z",
- "LE07_L2SR_005113_20070117_20200913_02_T2_SR"
- ],
- [
- "2008-01-04T15:06:55.054192Z",
- "LE07_L2SR_005113_20080104_20200913_02_T2_SR"
- ],
- [
- "2008-02-21T15:06:48.457312Z",
- "LE07_L2SR_005113_20080221_20200913_02_T2_SR"
- ],
- [
- "2008-12-05T15:05:57.566918Z",
- "LE07_L2SR_005113_20081205_20200912_02_T2_SR"
- ],
- [
- "2009-12-08T15:07:25.997783Z",
- "LE07_L2SR_005113_20091208_20200911_02_T2_SR"
- ],
- [
- "2010-01-09T15:07:59.599464Z",
- "LE07_L2SR_005113_20100109_20200911_02_T2_SR"
- ],
- [
- "2010-01-25T15:08:13.503507Z",
- "LE07_L2SR_005113_20100125_20200911_02_T2_SR"
- ],
- [
- "2010-02-10T15:08:25.370663Z",
- "LE07_L2SR_005113_20100210_20200911_02_T2_SR"
- ],
- [
- "2010-12-27T15:09:41.514340Z",
- "LE07_L2SR_005113_20101227_20200910_02_T2_SR"
- ],
- [
- "2011-01-12T15:09:50.240476Z",
- "LE07_L2SR_005113_20110112_20200910_02_T2_SR"
- ],
- [
- "2011-01-28T15:09:56.103332Z",
- "LE07_L2SR_005113_20110128_20200910_02_T2_SR"
- ],
- [
- "2011-11-12T15:10:06.296898Z",
- "LE07_L2SR_005113_20111112_20200909_02_T2_SR"
- ],
- [
- "2011-12-30T15:10:33.258508Z",
- "LE07_L2SR_005113_20111230_20200909_02_T2_SR"
- ],
- [
- "2012-01-31T15:10:36.662348Z",
- "LE07_L2SR_005113_20120131_20200909_02_T2_SR"
- ],
- [
- "2012-02-16T15:10:41.762885Z",
- "LE07_L2SR_005113_20120216_20200909_02_T2_SR"
- ],
- [
- "2012-11-14T15:12:30.279291Z",
- "LE07_L2SR_005113_20121114_20200908_02_T2_SR"
- ],
- [
- "2013-02-02T15:12:46.534174Z",
- "LE07_L2SR_005113_20130202_20200908_02_T2_SR"
- ],
- [
- "2013-02-18T15:12:44.822331Z",
- "LE07_L2SR_005113_20130218_20200908_02_T2_SR"
- ],
- [
- "2013-12-11T15:18:08.702804Z",
- "LC08_L2SR_005113_20131211_20201016_02_T2_SR"
- ],
- [
- "2014-01-12T15:17:46.114659Z",
- "LC08_L2SR_005113_20140112_20201016_02_T2_SR"
- ],
- [
- "2014-02-13T15:17:24.655059Z",
- "LC08_L2SR_005113_20140213_20201016_02_T2_SR"
- ],
- [
- "2014-10-11T15:16:46.413039Z",
- "LC08_L2SR_005113_20141011_20201016_02_T2_SR"
- ],
- [
- "2014-10-27T15:16:44.880265Z",
- "LC08_L2SR_005113_20141027_20201016_02_T2_SR"
- ],
- [
- "2014-11-12T15:16:47.538581Z",
- "LC08_L2SR_005113_20141112_20201016_02_T2_SR"
- ],
- [
- "2014-11-28T15:16:45.478207Z",
- "LC08_L2SR_005113_20141128_20201016_02_T2_SR"
- ],
- [
- "2016-12-19T15:16:48.237756Z",
- "LC08_L2SR_005113_20161219_20201016_02_T2_SR"
- ],
- [
- "2018-01-23T15:16:31.975546Z",
- "LC08_L2SR_005113_20180123_20201016_02_T2_SR"
- ],
- [
- "2018-02-24T15:16:18.018608Z",
- "LC08_L2SR_005113_20180224_20201016_02_T2_SR"
- ],
- [
- "2018-12-09T15:16:26.820742Z",
- "LC08_L2SR_005113_20181209_20201016_02_T2_SR"
- ],
- [
- "2019-01-10T15:16:24.855847Z",
- "LC08_L2SR_005113_20190110_20201016_02_T2_SR"
- ],
- [
- "2019-01-26T15:16:20.902588Z",
- "LC08_L2SR_005113_20190126_20201016_02_T2_SR"
- ],
- [
- "2019-10-09T15:16:56.581656Z",
- "LC08_L2SR_005113_20191009_20201016_02_T2_SR"
- ],
- [
- "2019-10-25T15:16:57.522041Z",
- "LC08_L2SR_005113_20191025_20201016_02_T2_SR"
- ],
- [
- "2019-11-10T15:16:55.633635Z",
- "LC08_L2SR_005113_20191110_20201016_02_T2_SR"
- ],
- [
- "2019-12-28T15:16:48.065982Z",
- "LC08_L2SR_005113_20191228_20201016_02_T2_SR"
- ],
- [
- "2020-11-12T15:16:49.865662Z",
- "LC08_L2SR_005113_20201112_20210317_02_T2_SR"
- ],
- [
- "2020-12-14T15:16:54.602217Z",
- "LC08_L2SR_005113_20201214_20210314_02_T2_SR"
- ],
- [
- "2021-01-31T15:16:41.455318Z",
- "LC08_L2SR_005113_20210131_20210302_02_T2_SR"
- ],
- [
- "2021-11-20T15:16:43.940166Z",
- "LC09_L2SR_005113_20211120_20220120_02_T2_SR"
- ],
- [
- "2021-12-01T15:16:55.539299Z",
- "LC08_L2SR_005113_20211201_20211209_02_T2_SR"
- ],
- [
- "2021-12-25T15:16:51.250195Z",
- "LC09_L2SR_005113_20211225_20220121_02_T2_SR"
- ],
- [
- "2022-02-03T15:16:41.667087Z",
- "LC08_L2SR_005113_20220203_20220212_02_T2_SR"
- ],
- [
- "2022-02-19T15:16:35.565099Z",
- "LC08_L2SR_005113_20220219_20220302_02_T2_SR"
- ],
- [
- "2022-10-09T15:16:56.971457Z",
- "LC09_L2SR_005113_20221009_20221011_02_T2_SR"
- ],
- [
- "2022-11-26T15:17:00.338426Z",
- "LC09_L2SR_005113_20221126_20221128_02_T2_SR"
- ],
- [
- "2022-12-04T15:17:07.264938Z",
- "LC08_L2SR_005113_20221204_20221212_02_T2_SR"
- ],
- [
- "2022-12-20T15:16:58.089011Z",
- "LC08_L2SR_005113_20221220_20221227_02_T2_SR"
- ]
- ],
- "landsat-c2l2-sr-lakes-aral-sea": [
- [
- "1986-04-10T06:12:19.278013Z",
- "LT05_L2SP_161028_19860410_02_T1"
- ],
- [
- "1986-04-10T06:12:43.131075Z",
- "LT05_L2SP_161029_19860410_02_T1"
- ],
- [
- "1986-04-26T06:11:56.872044Z",
- "LT05_L2SP_161028_19860426_02_T1"
- ],
- [
- "1986-04-26T06:12:20.584063Z",
- "LT05_L2SP_161029_19860426_02_T1"
- ],
- [
- "1986-05-21T06:05:30.063044Z",
- "LT05_L2SP_160029_19860521_02_T1"
- ],
- [
- "1986-06-13T06:10:59.368044Z",
- "LT05_L2SP_161029_19860613_02_T1"
- ],
- [
- "1986-06-22T06:04:31.299056Z",
- "LT05_L2SP_160029_19860622_02_T1"
- ],
- [
- "1987-02-01T06:00:50.053069Z",
- "LT05_L2SP_160028_19870201_02_T1"
- ],
- [
- "1987-02-17T06:01:28.213019Z",
- "LT05_L2SP_160028_19870217_02_T1"
- ],
- [
- "1987-02-17T06:01:51.953069Z",
- "LT05_L2SP_160029_19870217_02_T1"
- ],
- [
- "1987-04-06T06:03:38.191000Z",
- "LT05_L2SP_160029_19870406_02_T1"
- ],
- [
- "1987-04-29T06:10:08.598044Z",
- "LT05_L2SP_161028_19870429_02_T1"
- ],
- [
- "1987-04-29T06:10:32.488019Z",
- "LT05_L2SP_161029_19870429_02_T1"
- ],
- [
- "1987-05-15T06:10:59.455088Z",
- "LT05_L2SP_161029_19870515_02_T1"
- ],
- [
- "1987-06-09T06:05:01.597063Z",
- "LT05_L2SP_160028_19870609_02_T1"
- ],
- [
- "1987-06-09T06:05:25.349013Z",
- "LT05_L2SP_160029_19870609_02_T1"
- ],
- [
- "1987-06-16T06:11:21.702000Z",
- "LT05_L2SP_161028_19870616_02_T1"
- ],
- [
- "1987-06-16T06:11:45.597038Z",
- "LT05_L2SP_161029_19870616_02_T1"
- ],
- [
- "1987-06-25T06:05:22.492081Z",
- "LT05_L2SP_160028_19870625_02_T1"
- ],
- [
- "1987-06-25T06:05:46.246044Z",
- "LT05_L2SP_160029_19870625_02_T1"
- ],
- [
- "1987-07-11T06:05:41.328038Z",
- "LT05_L2SP_160028_19870711_02_T1"
- ],
- [
- "1987-07-11T06:06:05.083088Z",
- "LT05_L2SP_160029_19870711_02_T1"
- ],
- [
- "1987-07-27T06:06:03.588063Z",
- "LT05_L2SP_160028_19870727_02_T1"
- ],
- [
- "1987-08-03T06:12:27.650000Z",
- "LT05_L2SP_161028_19870803_02_T1"
- ],
- [
- "1987-08-12T06:06:57.019031Z",
- "LT05_L2SP_160029_19870812_02_T1"
- ],
- [
- "1987-08-19T06:12:56.286081Z",
- "LT05_L2SP_161028_19870819_02_T1"
- ],
- [
- "1987-08-28T06:07:00.175038Z",
- "LT05_L2SP_160028_19870828_02_T1"
- ],
- [
- "1987-08-28T06:07:23.938013Z",
- "LT05_L2SP_160029_19870828_02_T1"
- ],
- [
- "1987-09-04T06:13:45.500025Z",
- "LT05_L2SP_161029_19870904_02_T1"
- ],
- [
- "1987-09-13T06:07:24.149094Z",
- "LT05_L2SP_160028_19870913_02_T1"
- ],
- [
- "1987-09-13T06:07:47.914063Z",
- "LT05_L2SP_160029_19870913_02_T1"
- ],
- [
- "1987-09-29T06:07:45.171006Z",
- "LT05_L2SP_160028_19870929_02_T1"
- ],
- [
- "1987-09-29T06:08:08.937075Z",
- "LT05_L2SP_160029_19870929_02_T1"
- ],
- [
- "1987-10-15T06:08:03.245088Z",
- "LT05_L2SP_160028_19871015_02_T1"
- ],
- [
- "1987-10-31T06:08:43.492081Z",
- "LT05_L2SP_160029_19871031_02_T1"
- ],
- [
- "1987-12-09T06:15:37.457006Z",
- "LT05_L2SP_161029_19871209_02_T1"
- ],
- [
- "1988-02-12T06:05:36.034088Z",
- "LT04_L2SP_160029_19880212_02_T1"
- ],
- [
- "1988-02-27T06:16:32.136050Z",
- "LT05_L2SP_161028_19880227_02_T1"
- ],
- [
- "1988-02-27T06:16:55.919019Z",
- "LT05_L2SP_161029_19880227_02_T1"
- ],
- [
- "1988-03-14T06:16:41.746081Z",
- "LT05_L2SP_161028_19880314_02_T1"
- ],
- [
- "1988-05-17T06:17:10.449094Z",
- "LT05_L2SP_161028_19880517_02_T1"
- ],
- [
- "1988-05-17T06:17:34.243050Z",
- "LT05_L2SP_161029_19880517_02_T1"
- ],
- [
- "1988-06-02T06:17:16.408088Z",
- "LT05_L2SP_161028_19880602_02_T1"
- ],
- [
- "1988-06-03T06:08:33.145081Z",
- "LT04_L2SP_160028_19880603_02_T1"
- ],
- [
- "1988-06-03T06:08:56.970056Z",
- "LT04_L2SP_160029_19880603_02_T1"
- ],
- [
- "1988-06-19T06:09:20.820050Z",
- "LT04_L2SP_160029_19880619_02_T1"
- ],
- [
- "1988-06-27T06:11:14.019050Z",
- "LT05_L2SP_160028_19880627_02_T1"
- ],
- [
- "1988-06-27T06:11:37.818025Z",
- "LT05_L2SP_160029_19880627_02_T1"
- ],
- [
- "1988-07-04T06:17:26.608031Z",
- "LT05_L2SP_161028_19880704_02_T1"
- ],
- [
- "1988-07-04T06:17:50.407088Z",
- "LT05_L2SP_161029_19880704_02_T1"
- ],
- [
- "1988-07-05T06:09:23.866013Z",
- "LT04_L2SP_160028_19880705_02_T1"
- ],
- [
- "1988-07-05T06:09:47.690094Z",
- "LT04_L2SP_160029_19880705_02_T1"
- ],
- [
- "1988-07-20T06:17:53.383063Z",
- "LT05_L2SP_161029_19880720_02_T1"
- ],
- [
- "1988-08-06T06:10:12.621038Z",
- "LT04_L2SP_160028_19880806_02_T1"
- ],
- [
- "1988-08-06T06:10:36.446019Z",
- "LT04_L2SP_160029_19880806_02_T1"
- ],
- [
- "1988-08-30T06:11:47.313075Z",
- "LT05_L2SP_160029_19880830_02_T1"
- ],
- [
- "1988-09-15T06:11:43.784081Z",
- "LT05_L2SP_160029_19880915_02_T1"
- ],
- [
- "1988-09-22T06:17:52.479050Z",
- "LT05_L2SP_161029_19880922_02_T1"
- ],
- [
- "1988-10-01T06:11:13.743013Z",
- "LT05_L2SP_160028_19881001_02_T1"
- ],
- [
- "1988-10-08T06:17:23.497000Z",
- "LT05_L2SP_161028_19881008_02_T1"
- ],
- [
- "1988-10-08T06:17:47.307056Z",
- "LT05_L2SP_161029_19881008_02_T1"
- ],
- [
- "1988-10-09T06:11:26.043075Z",
- "LT04_L2SP_160028_19881009_02_T1"
- ],
- [
- "1988-10-16T06:17:41.849075Z",
- "LT04_L2SP_161028_19881016_02_T1"
- ],
- [
- "1988-10-16T06:18:05.674088Z",
- "LT04_L2SP_161029_19881016_02_T2"
- ],
- [
- "1988-10-17T06:11:09.195063Z",
- "LT05_L2SP_160028_19881017_02_T1"
- ],
- [
- "1988-10-17T06:11:33.006075Z",
- "LT05_L2SP_160029_19881017_02_T1"
- ],
- [
- "1989-03-01T06:16:33.332025Z",
- "LT05_L2SP_161028_19890301_02_T1"
- ],
- [
- "1989-03-01T06:16:57.155069Z",
- "LT05_L2SP_161029_19890301_02_T1"
- ],
- [
- "1989-04-02T06:16:13.613075Z",
- "LT05_L2SP_161029_19890402_02_T1"
- ],
- [
- "1989-05-04T06:15:31.944063Z",
- "LT05_L2SP_161028_19890504_02_T1"
- ],
- [
- "1989-05-04T06:15:55.773056Z",
- "LT05_L2SP_161029_19890504_02_T1"
- ],
- [
- "1989-05-29T06:08:55.892063Z",
- "LT05_L2SP_160028_19890529_02_T1"
- ],
- [
- "1989-05-29T06:09:19.579069Z",
- "LT05_L2SP_160029_19890529_02_T1"
- ],
- [
- "1989-06-06T06:14:24.984088Z",
- "LT04_L2SP_160029_19890606_02_T1"
- ],
- [
- "1989-06-14T06:08:31.173056Z",
- "LT05_L2SP_160028_19890614_02_T1"
- ],
- [
- "1989-06-14T06:08:55.005081Z",
- "LT05_L2SP_160029_19890614_02_T1"
- ],
- [
- "1989-06-21T06:14:34.004088Z",
- "LT05_L2SP_161028_19890621_02_T1"
- ],
- [
- "1989-06-21T06:14:57.837075Z",
- "LT05_L2SP_161029_19890621_02_T1"
- ],
- [
- "1989-08-01T06:08:02.042056Z",
- "LT05_L2SP_160029_19890801_02_T1"
- ],
- [
- "1989-08-08T06:14:03.170044Z",
- "LT05_L2SP_161029_19890808_02_T1"
- ],
- [
- "1989-08-16T06:20:14.178006Z",
- "LT04_L2SP_161028_19890816_02_T1"
- ],
- [
- "1989-08-16T06:20:38.005019Z",
- "LT04_L2SP_161029_19890816_02_T1"
- ],
- [
- "1989-09-02T06:07:19.558038Z",
- "LT05_L2SP_160029_19890902_02_T1"
- ],
- [
- "1989-09-09T06:12:53.803031Z",
- "LT05_L2SP_161028_19890909_02_T1"
- ],
- [
- "1989-09-09T06:13:17.643094Z",
- "LT05_L2SP_161029_19890909_02_T1"
- ],
- [
- "1989-09-17T06:20:13.080038Z",
- "LT04_L2SP_161028_19890917_02_T1"
- ],
- [
- "1989-09-17T06:20:36.907050Z",
- "LT04_L2SP_161029_19890917_02_T1"
- ],
- [
- "1989-09-25T06:12:54.154050Z",
- "LT05_L2SP_161029_19890925_02_T1"
- ],
- [
- "1989-10-04T06:06:38.221013Z",
- "LT05_L2SP_160029_19891004_02_T1"
- ],
- [
- "1990-06-24T06:07:20.392063Z",
- "LT05_L2SP_161029_19900624_02_T1"
- ],
- [
- "1990-07-03T06:01:08.749081Z",
- "LT05_L2SP_160029_19900703_02_T1"
- ],
- [
- "1990-07-10T06:06:54.895050Z",
- "LT05_L2SP_161028_19900710_02_T1"
- ],
- [
- "1990-07-10T06:07:18.619000Z",
- "LT05_L2SP_161029_19900710_02_T1"
- ],
- [
- "1990-07-19T06:00:39.996031Z",
- "LT05_L2SP_160028_19900719_02_T1"
- ],
- [
- "1990-07-19T06:01:03.720013Z",
- "LT05_L2SP_160029_19900719_02_T1"
- ],
- [
- "1990-08-04T06:00:59.800031Z",
- "LT05_L2SP_160029_19900804_02_T1"
- ],
- [
- "1990-08-20T06:00:32.704013Z",
- "LT05_L2SP_160028_19900820_02_T1"
- ],
- [
- "1990-08-27T06:06:40.172069Z",
- "LT05_L2SP_161028_19900827_02_T1"
- ],
- [
- "1990-08-27T06:07:03.900025Z",
- "LT05_L2SP_161029_19900827_02_T1"
- ],
- [
- "1990-10-07T06:00:34.316069Z",
- "LT05_L2SP_160029_19901007_02_T1"
- ],
- [
- "1990-10-23T06:00:32.054075Z",
- "LT05_L2SP_160029_19901023_02_T1"
- ],
- [
- "1990-11-08T06:00:29.335063Z",
- "LT05_L2SP_160029_19901108_02_T1"
- ],
- [
- "1991-02-12T06:01:20.744075Z",
- "LT05_L2SP_160028_19910212_02_T1"
- ],
- [
- "1991-02-12T06:01:44.484019Z",
- "LT05_L2SP_160029_19910212_02_T1"
- ],
- [
- "1991-02-19T06:08:04.493081Z",
- "LT05_L2SP_161029_19910219_02_T1"
- ],
- [
- "1991-03-07T06:07:57.928044Z",
- "LT05_L2SP_161028_19910307_02_T1"
- ],
- [
- "1991-03-23T06:08:20.756081Z",
- "LT05_L2SP_161028_19910323_02_T1"
- ],
- [
- "1991-03-23T06:08:44.498050Z",
- "LT05_L2SP_161029_19910323_02_T1"
- ],
- [
- "1991-04-24T06:09:12.500050Z",
- "LT05_L2SP_161029_19910424_02_T1"
- ],
- [
- "1991-05-26T06:09:48.399019Z",
- "LT05_L2SP_161029_19910526_02_T1"
- ],
- [
- "1991-06-04T06:03:45.403019Z",
- "LT05_L2SP_160029_19910604_02_T1"
- ],
- [
- "1991-06-11T06:09:34.419069Z",
- "LT05_L2SP_161028_19910611_02_T1"
- ],
- [
- "1991-06-11T06:09:58.166013Z",
- "LT05_L2SP_161029_19910611_02_T1"
- ],
- [
- "1991-06-20T06:03:32.818063Z",
- "LT05_L2SP_160028_19910620_02_T1"
- ],
- [
- "1991-06-20T06:03:56.565038Z",
- "LT05_L2SP_160029_19910620_02_T1"
- ],
- [
- "1991-06-27T06:09:50.749056Z",
- "LT05_L2SP_161028_19910627_02_T1"
- ],
- [
- "1991-06-27T06:10:14.496081Z",
- "LT05_L2SP_161029_19910627_02_T1"
- ],
- [
- "1991-07-13T06:10:24.576088Z",
- "LT05_L2SP_161029_19910713_02_T1"
- ],
- [
- "1991-07-22T06:04:24.778063Z",
- "LT05_L2SP_160029_19910722_02_T1"
- ],
- [
- "1991-07-29T06:10:15.063038Z",
- "LT05_L2SP_161028_19910729_02_T1"
- ],
- [
- "1991-07-29T06:10:38.957006Z",
- "LT05_L2SP_161029_19910729_02_T1"
- ],
- [
- "1991-08-14T06:10:17.316081Z",
- "LT05_L2SP_161028_19910814_02_T1"
- ],
- [
- "1991-08-14T06:10:41.067094Z",
- "LT05_L2SP_161029_19910814_02_T1"
- ],
- [
- "1991-09-15T06:10:41.139081Z",
- "LT05_L2SP_161028_19910915_02_T1"
- ],
- [
- "1991-09-15T06:11:05.037050Z",
- "LT05_L2SP_161029_19910915_02_T1"
- ],
- [
- "1991-10-01T06:11:09.142038Z",
- "LT05_L2SP_161029_19911001_02_T1"
- ],
- [
- "1991-10-17T06:11:19.705013Z",
- "LT05_L2SP_161029_19911017_02_T1"
- ],
- [
- "1991-10-26T06:05:07.456094Z",
- "LT05_L2SP_160029_19911026_02_T1"
- ],
- [
- "1992-03-25T06:11:16.691038Z",
- "LT05_L2SP_161029_19920325_02_T1"
- ],
- [
- "1992-05-28T06:10:21.080081Z",
- "LT05_L2SP_161028_19920528_02_T1"
- ],
- [
- "1992-06-06T06:04:04.941031Z",
- "LT05_L2SP_160028_19920606_02_T1"
- ],
- [
- "1992-06-22T06:03:51.880063Z",
- "LT05_L2SP_160028_19920622_02_T1"
- ],
- [
- "1992-07-15T06:09:46.997050Z",
- "LT05_L2SP_161028_19920715_02_T1"
- ],
- [
- "1992-07-15T06:10:10.916050Z",
- "LT05_L2SP_161029_19920715_02_T1"
- ],
- [
- "1992-07-24T06:03:28.630019Z",
- "LT05_L2SP_160028_19920724_02_T1"
- ],
- [
- "1992-07-24T06:03:52.406038Z",
- "LT05_L2SP_160029_19920724_02_T1"
- ],
- [
- "1992-08-09T06:03:40.564094Z",
- "LT05_L2SP_160029_19920809_02_T1"
- ],
- [
- "1992-08-16T06:09:19.933000Z",
- "LT05_L2SP_161028_19920816_02_T1"
- ],
- [
- "1992-08-16T06:09:43.711094Z",
- "LT05_L2SP_161029_19920816_02_T1"
- ],
- [
- "1992-09-01T06:09:28.626063Z",
- "LT05_L2SP_161029_19920901_02_T1"
- ],
- [
- "1992-09-10T06:02:46.943094Z",
- "LT05_L2SP_160028_19920910_02_T1"
- ],
- [
- "1992-09-10T06:03:10.725063Z",
- "LT05_L2SP_160029_19920910_02_T1"
- ],
- [
- "1992-09-17T06:08:50.488088Z",
- "LT05_L2SP_161028_19920917_02_T1"
- ],
- [
- "1992-10-03T06:08:51.574069Z",
- "LT05_L2SP_161029_19921003_02_T1"
- ],
- [
- "1992-11-04T06:08:01.020013Z",
- "LT05_L2SP_161028_19921104_02_T1"
- ],
- [
- "1992-11-04T06:08:24.806000Z",
- "LT05_L2SP_161029_19921104_02_T1"
- ],
- [
- "1993-02-17T06:02:32.779031Z",
- "LT05_L2SP_160028_19930217_02_T1"
- ],
- [
- "1993-04-06T06:02:51.106031Z",
- "LT05_L2SP_160028_19930406_02_T1"
- ],
- [
- "1993-04-29T06:09:13.114019Z",
- "LT05_L2SP_161028_19930429_02_T1"
- ],
- [
- "1993-04-29T06:09:36.912094Z",
- "LT05_L2SP_161029_19930429_02_T1"
- ],
- [
- "1993-05-08T06:03:27.126031Z",
- "LT05_L2SP_160029_19930508_02_T1"
- ],
- [
- "1993-06-16T06:09:40.881069Z",
- "LT05_L2SP_161029_19930616_02_T1"
- ],
- [
- "1993-06-25T06:03:03.132038Z",
- "LT05_L2SP_160028_19930625_02_T1"
- ],
- [
- "1993-06-25T06:03:26.936000Z",
- "LT05_L2SP_160029_19930625_02_T1"
- ],
- [
- "1993-07-02T06:09:09.330069Z",
- "LT05_L2SP_161028_19930702_02_T2"
- ],
- [
- "1993-07-02T06:09:33.134088Z",
- "LT05_L2SP_161029_19930702_02_T2"
- ],
- [
- "1993-07-18T06:09:11.197025Z",
- "LT05_L2SP_161028_19930718_02_T1"
- ],
- [
- "1993-07-18T06:09:35.003006Z",
- "LT05_L2SP_161029_19930718_02_T1"
- ],
- [
- "1993-08-03T06:09:10.711075Z",
- "LT05_L2SP_161028_19930803_02_T1"
- ],
- [
- "1993-08-03T06:09:34.519044Z",
- "LT05_L2SP_161029_19930803_02_T1"
- ],
- [
- "1993-08-12T06:03:23.799019Z",
- "LT05_L2SP_160029_19930812_02_T1"
- ],
- [
- "1993-08-28T06:02:58.486038Z",
- "LT05_L2SP_160028_19930828_02_T1"
- ],
- [
- "1993-08-28T06:03:22.152025Z",
- "LT05_L2SP_160029_19930828_02_T1"
- ],
- [
- "1993-10-06T06:09:01.298081Z",
- "LT05_L2SP_161028_19931006_02_T1"
- ],
- [
- "1994-02-11T06:07:51.972044Z",
- "LT05_L2SP_161028_19940211_02_T2"
- ],
- [
- "1994-02-27T06:07:37.850056Z",
- "LT05_L2SP_161028_19940227_02_T1"
- ],
- [
- "1994-02-27T06:08:01.676088Z",
- "LT05_L2SP_161029_19940227_02_T2"
- ],
- [
- "1994-03-15T06:07:24.085075Z",
- "LT05_L2SP_161028_19940315_02_T1"
- ],
- [
- "1994-04-09T06:00:47.089044Z",
- "LT05_L2SP_160028_19940409_02_T1"
- ],
- [
- "1994-04-09T06:01:10.920025Z",
- "LT05_L2SP_160029_19940409_02_T1"
- ],
- [
- "1994-07-30T05:58:43.282025Z",
- "LT05_L2SP_160029_19940730_02_T1"
- ],
- [
- "1994-08-06T06:04:41.580063Z",
- "LT05_L2SP_161029_19940806_02_T2"
- ],
- [
- "1994-08-15T05:58:18.918013Z",
- "LT05_L2SP_160029_19940815_02_T1"
- ],
- [
- "1994-08-31T05:57:31.522075Z",
- "LT05_L2SP_160028_19940831_02_T1"
- ],
- [
- "1994-08-31T05:57:55.219019Z",
- "LT05_L2SP_160029_19940831_02_T1"
- ],
- [
- "1994-09-07T06:03:31.605013Z",
- "LT05_L2SP_161028_19940907_02_T1"
- ],
- [
- "1994-09-07T06:03:55.446075Z",
- "LT05_L2SP_161029_19940907_02_T1"
- ],
- [
- "1994-09-23T06:03:05.781081Z",
- "LT05_L2SP_161028_19940923_02_T1"
- ],
- [
- "1994-09-23T06:03:29.624063Z",
- "LT05_L2SP_161029_19940923_02_T1"
- ],
- [
- "1994-10-02T05:56:39.694019Z",
- "LT05_L2SP_160028_19941002_02_T1"
- ],
- [
- "1994-10-02T05:57:03.537075Z",
- "LT05_L2SP_160029_19941002_02_T1"
- ],
- [
- "1994-10-09T06:02:37.549094Z",
- "LT05_L2SP_161028_19941009_02_T2"
- ],
- [
- "1994-10-18T05:56:33.782000Z",
- "LT05_L2SP_160029_19941018_02_T1"
- ],
- [
- "1995-01-06T05:53:29.748063Z",
- "LT05_L2SP_160028_19950106_02_T1"
- ],
- [
- "1995-01-06T05:53:53.453075Z",
- "LT05_L2SP_160029_19950106_02_T1"
- ],
- [
- "1995-01-22T05:52:54.434000Z",
- "LT05_L2SP_160028_19950122_02_T1"
- ],
- [
- "1995-05-21T05:54:30.704081Z",
- "LT05_L2SP_161029_19950521_02_T1"
- ],
- [
- "1995-06-06T05:53:21.909000Z",
- "LT05_L2SP_161028_19950606_02_T1"
- ],
- [
- "1995-06-06T05:53:45.772000Z",
- "LT05_L2SP_161029_19950606_02_T1"
- ],
- [
- "1995-06-22T05:52:39.971056Z",
- "LT05_L2SP_161028_19950622_02_T1"
- ],
- [
- "1995-06-22T05:53:03.691000Z",
- "LT05_L2SP_161029_19950622_02_T1"
- ],
- [
- "1995-07-24T05:51:12.494038Z",
- "LT05_L2SP_161028_19950724_02_T1"
- ],
- [
- "1995-07-24T05:51:36.216069Z",
- "LT05_L2SP_161029_19950724_02_T1"
- ],
- [
- "1995-08-02T05:44:37.166044Z",
- "LT05_L2SP_160028_19950802_02_T1"
- ],
- [
- "1995-08-02T05:45:00.889038Z",
- "LT05_L2SP_160029_19950802_02_T1"
- ],
- [
- "1995-08-25T05:49:43.959069Z",
- "LT05_L2SP_161028_19950825_02_T1"
- ],
- [
- "1995-08-25T05:50:07.829025Z",
- "LT05_L2SP_161029_19950825_02_T1"
- ],
- [
- "1995-09-03T05:43:07.582063Z",
- "LT05_L2SP_160028_19950903_02_T1"
- ],
- [
- "1995-09-03T05:43:31.308006Z",
- "LT05_L2SP_160029_19950903_02_T1"
- ],
- [
- "1995-09-10T05:48:58.121094Z",
- "LT05_L2SP_161028_19950910_02_T1"
- ],
- [
- "1995-09-10T05:49:21.848000Z",
- "LT05_L2SP_161029_19950910_02_T1"
- ],
- [
- "1995-10-12T05:47:19.698063Z",
- "LT05_L2SP_161028_19951012_02_T2"
- ],
- [
- "1995-11-06T05:40:30.140094Z",
- "LT05_L2SP_160029_19951106_02_T1"
- ],
- [
- "1995-11-22T05:40:16.999063Z",
- "LT05_L2SP_160028_19951122_02_T1"
- ],
- [
- "1995-11-22T05:40:40.730038Z",
- "LT05_L2SP_160029_19951122_02_T1"
- ],
- [
- "1996-01-25T05:44:34.817019Z",
- "LT05_L2SP_160028_19960125_02_T2"
- ],
- [
- "1996-01-25T05:44:58.551088Z",
- "LT05_L2SP_160029_19960125_02_T2"
- ],
- [
- "1996-02-17T05:52:20.706056Z",
- "LT05_L2SP_161028_19960217_02_T1"
- ],
- [
- "1996-02-17T05:52:44.586019Z",
- "LT05_L2SP_161029_19960217_02_T1"
- ],
- [
- "1996-02-26T05:46:46.389088Z",
- "LT05_L2SP_160028_19960226_02_T1"
- ],
- [
- "1996-02-26T05:47:10.127056Z",
- "LT05_L2SP_160029_19960226_02_T1"
- ],
- [
- "1996-03-13T05:47:49.842006Z",
- "LT05_L2SP_160028_19960313_02_T1"
- ],
- [
- "1996-03-13T05:48:13.582044Z",
- "LT05_L2SP_160029_19960313_02_T1"
- ],
- [
- "1996-03-20T05:54:27.924025Z",
- "LT05_L2SP_161028_19960320_02_T1"
- ],
- [
- "1996-03-20T05:54:51.665019Z",
- "LT05_L2SP_161029_19960320_02_T1"
- ],
- [
- "1996-04-05T05:55:28.508044Z",
- "LT05_L2SP_161028_19960405_02_T1"
- ],
- [
- "1996-04-21T05:56:27.151063Z",
- "LT05_L2SP_161028_19960421_02_T1"
- ],
- [
- "1996-04-21T05:56:51.039063Z",
- "LT05_L2SP_161029_19960421_02_T1"
- ],
- [
- "1996-05-07T05:57:23.851094Z",
- "LT05_L2SP_161028_19960507_02_T1"
- ],
- [
- "1996-05-07T05:57:47.740069Z",
- "LT05_L2SP_161029_19960507_02_T1"
- ],
- [
- "1996-05-16T05:52:07.981006Z",
- "LT05_L2SP_160029_19960516_02_T1"
- ],
- [
- "1996-07-10T06:00:53.921088Z",
- "LT05_L2SP_161028_19960710_02_T1"
- ],
- [
- "1996-07-10T06:01:17.670006Z",
- "LT05_L2SP_161029_19960710_02_T1"
- ],
- [
- "1996-07-19T05:55:12.243081Z",
- "LT05_L2SP_160028_19960719_02_T1"
- ],
- [
- "1996-07-19T05:55:35.992063Z",
- "LT05_L2SP_160029_19960719_02_T1"
- ],
- [
- "1996-07-26T06:01:45.518025Z",
- "LT05_L2SP_161028_19960726_02_T1"
- ],
- [
- "1996-07-26T06:02:09.412031Z",
- "LT05_L2SP_161029_19960726_02_T1"
- ],
- [
- "1996-08-04T05:56:03.275088Z",
- "LT05_L2SP_160028_19960804_02_T1"
- ],
- [
- "1996-08-04T05:56:27.025075Z",
- "LT05_L2SP_160029_19960804_02_T1"
- ],
- [
- "1996-09-05T05:57:46.004019Z",
- "LT05_L2SP_160028_19960905_02_T1"
- ],
- [
- "1996-09-05T05:58:09.756050Z",
- "LT05_L2SP_160029_19960905_02_T1"
- ],
- [
- "1996-09-12T06:04:19.905075Z",
- "LT05_L2SP_161028_19960912_02_T1"
- ],
- [
- "1996-09-28T06:05:35.544038Z",
- "LT05_L2SP_161029_19960928_02_T1"
- ],
- [
- "1996-10-07T05:59:29.261088Z",
- "LT05_L2SP_160028_19961007_02_T1"
- ],
- [
- "1996-10-30T06:06:49.464069Z",
- "LT05_L2SP_161028_19961030_02_T1"
- ],
- [
- "1996-11-15T06:07:34.556044Z",
- "LT05_L2SP_161028_19961115_02_T1"
- ],
- [
- "1996-11-24T06:02:12.546006Z",
- "LT05_L2SP_160029_19961124_02_T1"
- ],
- [
- "1996-12-01T06:08:44.163013Z",
- "LT05_L2SP_161029_19961201_02_T1"
- ],
- [
- "1997-03-16T06:06:49.372019Z",
- "LT05_L2SP_160028_19970316_02_T1"
- ],
- [
- "1997-03-16T06:07:13.140044Z",
- "LT05_L2SP_160029_19970316_02_T1"
- ],
- [
- "1997-03-23T06:13:39.818013Z",
- "LT05_L2SP_161029_19970323_02_T1"
- ],
- [
- "1997-04-08T06:13:50.832069Z",
- "LT05_L2SP_161028_19970408_02_T1"
- ],
- [
- "1997-04-08T06:14:14.603000Z",
- "LT05_L2SP_161029_19970408_02_T1"
- ],
- [
- "1997-05-19T06:09:29.158056Z",
- "LT05_L2SP_160029_19970519_02_T1"
- ],
- [
- "1997-06-20T06:10:11.446044Z",
- "LT05_L2SP_160028_19970620_02_T2"
- ],
- [
- "1997-06-20T06:10:35.221025Z",
- "LT05_L2SP_160029_19970620_02_T2"
- ],
- [
- "1997-06-27T06:16:38.428013Z",
- "LT05_L2SP_161028_19970627_02_T1"
- ],
- [
- "1997-06-27T06:17:02.204019Z",
- "LT05_L2SP_161029_19970627_02_T1"
- ],
- [
- "1997-07-13T06:17:35.007000Z",
- "LT05_L2SP_161029_19970713_02_T1"
- ],
- [
- "1997-07-22T06:11:18.732056Z",
- "LT05_L2SP_160028_19970722_02_T1"
- ],
- [
- "1997-07-22T06:11:42.510025Z",
- "LT05_L2SP_160029_19970722_02_T1"
- ],
- [
- "1997-08-07T06:11:49.998000Z",
- "LT05_L2SP_160028_19970807_02_T1"
- ],
- [
- "1997-08-14T06:18:37.971019Z",
- "LT05_L2SP_161029_19970814_02_T1"
- ],
- [
- "1997-08-23T06:12:19.892069Z",
- "LT05_L2SP_160028_19970823_02_T1"
- ],
- [
- "1997-08-23T06:12:43.672038Z",
- "LT05_L2SP_160029_19970823_02_T1"
- ],
- [
- "1997-09-08T06:12:48.141075Z",
- "LT05_L2SP_160028_19970908_02_T1"
- ],
- [
- "1997-09-08T06:13:11.922031Z",
- "LT05_L2SP_160029_19970908_02_T1"
- ],
- [
- "1997-10-01T06:19:38.575050Z",
- "LT05_L2SP_161028_19971001_02_T1"
- ],
- [
- "1997-10-17T06:20:04.615025Z",
- "LT05_L2SP_161028_19971017_02_T1"
- ],
- [
- "1997-10-17T06:20:28.397094Z",
- "LT05_L2SP_161029_19971017_02_T1"
- ],
- [
- "1997-11-11T06:14:56.656075Z",
- "LT05_L2SP_160029_19971111_02_T1"
- ],
- [
- "1998-01-21T06:22:46.337063Z",
- "LT05_L2SP_161029_19980121_02_T2"
- ],
- [
- "1998-02-22T06:23:02.488006Z",
- "LT05_L2SP_161028_19980222_02_T1"
- ],
- [
- "1998-02-22T06:23:26.280031Z",
- "LT05_L2SP_161029_19980222_02_T1"
- ],
- [
- "1998-03-03T06:16:59.815019Z",
- "LT05_L2SP_160028_19980303_02_T1"
- ],
- [
- "1998-05-29T06:24:26.534031Z",
- "LT05_L2SP_161028_19980529_02_T2"
- ],
- [
- "1998-05-29T06:24:50.335063Z",
- "LT05_L2SP_161029_19980529_02_T1"
- ],
- [
- "1998-06-07T06:18:23.840094Z",
- "LT05_L2SP_160028_19980607_02_T1"
- ],
- [
- "1998-06-07T06:18:47.497063Z",
- "LT05_L2SP_160029_19980607_02_T2"
- ],
- [
- "1998-06-14T06:24:39.413031Z",
- "LT05_L2SP_161028_19980614_02_T1"
- ],
- [
- "1998-06-14T06:25:03.215063Z",
- "LT05_L2SP_161029_19980614_02_T1"
- ],
- [
- "1998-06-23T06:18:33.010044Z",
- "LT05_L2SP_160028_19980623_02_T2"
- ],
- [
- "1998-06-23T06:18:56.812094Z",
- "LT05_L2SP_160029_19980623_02_T2"
- ],
- [
- "1998-06-30T06:25:14.674044Z",
- "LT05_L2SP_161029_19980630_02_T1"
- ],
- [
- "1998-07-16T06:25:02.260025Z",
- "LT05_L2SP_161028_19980716_02_T1"
- ],
- [
- "1998-07-16T06:25:26.064013Z",
- "LT05_L2SP_161029_19980716_02_T1"
- ],
- [
- "1998-08-17T06:25:14.917044Z",
- "LT05_L2SP_161028_19980817_02_T1"
- ],
- [
- "1998-09-11T06:19:18.834075Z",
- "LT05_L2SP_160028_19980911_02_T1"
- ],
- [
- "1998-09-18T06:25:57.864044Z",
- "LT05_L2SP_161029_19980918_02_T1"
- ],
- [
- "1998-09-27T06:19:25.693088Z",
- "LT05_L2SP_160028_19980927_02_T1"
- ],
- [
- "1998-09-27T06:19:49.501056Z",
- "LT05_L2SP_160029_19980927_02_T1"
- ],
- [
- "1998-10-13T06:19:49.146019Z",
- "LT05_L2SP_160029_19981013_02_T1"
- ],
- [
- "1998-10-20T06:25:36.686031Z",
- "LT05_L2SP_161028_19981020_02_T1"
- ],
- [
- "1998-10-20T06:26:00.495044Z",
- "LT05_L2SP_161029_19981020_02_T1"
- ],
- [
- "1998-11-05T06:25:42.400069Z",
- "LT05_L2SP_161028_19981105_02_T1"
- ],
- [
- "1998-11-05T06:26:06.210069Z",
- "LT05_L2SP_161029_19981105_02_T1"
- ],
- [
- "1999-01-17T06:19:35.085069Z",
- "LT05_L2SP_160028_19990117_02_T1"
- ],
- [
- "1999-03-13T06:25:49.218075Z",
- "LT05_L2SP_161028_19990313_02_T1"
- ],
- [
- "1999-03-29T06:25:31.039000Z",
- "LT05_L2SP_161028_19990329_02_T1"
- ],
- [
- "1999-03-29T06:25:54.857031Z",
- "LT05_L2SP_161029_19990329_02_T1"
- ],
- [
- "1999-04-14T06:25:53.563019Z",
- "LT05_L2SP_161029_19990414_02_T1"
- ],
- [
- "1999-04-23T06:19:19.465006Z",
- "LT05_L2SP_160028_19990423_02_T1"
- ],
- [
- "1999-04-23T06:19:43.139025Z",
- "LT05_L2SP_160029_19990423_02_T2"
- ],
- [
- "1999-04-30T06:25:28.413013Z",
- "LT05_L2SP_161028_19990430_02_T1"
- ],
- [
- "1999-04-30T06:25:52.232081Z",
- "LT05_L2SP_161029_19990430_02_T1"
- ],
- [
- "1999-05-16T06:25:14.700069Z",
- "LT05_L2SP_161028_19990516_02_T1"
- ],
- [
- "1999-05-16T06:25:38.521025Z",
- "LT05_L2SP_161029_19990516_02_T1"
- ],
- [
- "1999-06-17T06:24:43.744050Z",
- "LT05_L2SP_161028_19990617_02_T1"
- ],
- [
- "1999-06-17T06:25:07.566063Z",
- "LT05_L2SP_161029_19990617_02_T1"
- ],
- [
- "1999-07-11T06:39:57.936800Z",
- "LE07_L2SP_161029_19990711_02_T2"
- ],
- [
- "1999-07-19T06:24:54.201081Z",
- "LT05_L2SP_161029_19990719_02_T2"
- ],
- [
- "1999-08-04T06:24:28.443013Z",
- "LT05_L2SP_161028_19990804_02_T1"
- ],
- [
- "1999-08-04T06:24:52.267081Z",
- "LT05_L2SP_161029_19990804_02_T1"
- ],
- [
- "1999-08-05T06:33:30.418394Z",
- "LE07_L2SP_160028_19990805_02_T1"
- ],
- [
- "1999-08-05T06:33:54.297757Z",
- "LE07_L2SP_160029_19990805_02_T1"
- ],
- [
- "1999-08-12T06:40:03.724413Z",
- "LE07_L2SP_161029_19990812_02_T1"
- ],
- [
- "1999-08-20T06:24:17.362025Z",
- "LT05_L2SP_161028_19990820_02_T1"
- ],
- [
- "1999-08-20T06:24:41.187081Z",
- "LT05_L2SP_161029_19990820_02_T1"
- ],
- [
- "1999-09-05T06:24:12.862081Z",
- "LT05_L2SP_161029_19990905_02_T1"
- ],
- [
- "1999-10-07T06:23:23.422081Z",
- "LT05_L2SP_161028_19991007_02_T1"
- ],
- [
- "1999-10-07T06:23:47.250031Z",
- "LT05_L2SP_161029_19991007_02_T1"
- ],
- [
- "1999-10-08T06:33:38.212574Z",
- "LE07_L2SP_160028_19991008_02_T1"
- ],
- [
- "1999-10-16T06:17:36.204006Z",
- "LT05_L2SP_160029_19991016_02_T1"
- ],
- [
- "1999-11-16T06:39:39.744112Z",
- "LE07_L2SP_161028_19991116_02_T1"
- ],
- [
- "1999-11-16T06:40:03.617227Z",
- "LE07_L2SP_161029_19991116_02_T1"
- ],
- [
- "1999-12-19T06:15:42.322019Z",
- "LT05_L2SP_160028_19991219_02_T2"
- ],
- [
- "2000-02-20T06:39:25.704123Z",
- "LE07_L2SP_161028_20000220_02_T1"
- ],
- [
- "2000-02-20T06:39:49.575737Z",
- "LE07_L2SP_161029_20000220_02_T1"
- ],
- [
- "2000-02-21T06:14:14.077013Z",
- "LT05_L2SP_160028_20000221_02_T1"
- ],
- [
- "2000-04-01T06:33:06.685158Z",
- "LE07_L2SP_160028_20000401_02_T1"
- ],
- [
- "2000-05-18T06:22:33.974063Z",
- "LT05_L2SP_161028_20000518_02_T1"
- ],
- [
- "2000-05-18T06:22:57.813013Z",
- "LT05_L2SP_161029_20000518_02_T1"
- ],
- [
- "2000-05-27T06:16:53.256063Z",
- "LT05_L2SP_160029_20000527_02_T1"
- ],
- [
- "2000-06-03T06:22:51.728013Z",
- "LT05_L2SP_161028_20000603_02_T1"
- ],
- [
- "2000-06-03T06:23:15.567025Z",
- "LT05_L2SP_161029_20000603_02_T1"
- ],
- [
- "2000-06-04T06:32:52.327022Z",
- "LE07_L2SP_160029_20000604_02_T1"
- ],
- [
- "2000-06-19T06:23:13.441006Z",
- "LT05_L2SP_161028_20000619_02_T1"
- ],
- [
- "2000-06-19T06:23:37.280063Z",
- "LT05_L2SP_161029_20000619_02_T1"
- ],
- [
- "2000-07-21T06:23:52.209044Z",
- "LT05_L2SP_161028_20000721_02_T1"
- ],
- [
- "2000-07-21T06:24:15.905006Z",
- "LT05_L2SP_161029_20000721_02_T1"
- ],
- [
- "2000-07-22T06:31:55.286911Z",
- "LE07_L2SP_160028_20000722_02_T1"
- ],
- [
- "2000-07-22T06:32:19.141738Z",
- "LE07_L2SP_160029_20000722_02_T1"
- ],
- [
- "2000-07-29T06:37:58.108140Z",
- "LE07_L2SP_161028_20000729_02_T1"
- ],
- [
- "2000-07-29T06:38:21.976503Z",
- "LE07_L2SP_161029_20000729_02_T1"
- ],
- [
- "2000-07-30T06:18:10.384006Z",
- "LT05_L2SP_160029_20000730_02_T1"
- ],
- [
- "2000-08-06T06:24:07.798050Z",
- "LT05_L2SP_161028_20000806_02_T1"
- ],
- [
- "2000-08-06T06:24:31.640013Z",
- "LT05_L2SP_161029_20000806_02_T1"
- ],
- [
- "2000-08-22T06:24:54.147006Z",
- "LT05_L2SP_161029_20000822_02_T1"
- ],
- [
- "2000-09-07T06:24:55.269063Z",
- "LT05_L2SP_161028_20000907_02_T1"
- ],
- [
- "2000-09-07T06:25:19.112031Z",
- "LT05_L2SP_161029_20000907_02_T1"
- ],
- [
- "2000-09-16T06:18:49.864094Z",
- "LT05_L2SP_160028_20000916_02_T2"
- ],
- [
- "2000-09-16T06:19:13.562044Z",
- "LT05_L2SP_160029_20000916_02_T2"
- ],
- [
- "2000-10-01T06:37:37.128563Z",
- "LE07_L2SP_161029_20001001_02_T1"
- ],
- [
- "2000-10-09T06:25:16.284025Z",
- "LT05_L2SP_161028_20001009_02_T1"
- ],
- [
- "2000-10-09T06:25:40.127088Z",
- "LT05_L2SP_161029_20001009_02_T1"
- ],
- [
- "2000-10-10T06:31:20.950293Z",
- "LE07_L2SP_160029_20001010_02_T1"
- ],
- [
- "2000-11-02T06:37:08.416490Z",
- "LE07_L2SP_161028_20001102_02_T1"
- ],
- [
- "2000-11-02T06:37:32.300042Z",
- "LE07_L2SP_161029_20001102_02_T1"
- ],
- [
- "2000-11-03T06:19:23.515069Z",
- "LT05_L2SP_160028_20001103_02_T1"
- ],
- [
- "2000-11-03T06:19:47.360031Z",
- "LT05_L2SP_160029_20001103_02_T1"
- ],
- [
- "2000-11-19T06:20:03.154000Z",
- "LT05_L2SP_160029_20001119_02_T2"
- ],
- [
- "2000-11-26T06:25:59.115056Z",
- "LT05_L2SP_161028_20001126_02_T1"
- ],
- [
- "2000-12-21T06:20:35.982038Z",
- "LT05_L2SP_160029_20001221_02_T2"
- ],
- [
- "2001-01-06T06:20:42.877044Z",
- "LT05_L2SP_160029_20010106_02_T1"
- ],
- [
- "2001-01-13T06:27:00.409094Z",
- "LT05_L2SP_161029_20010113_02_T2"
- ],
- [
- "2001-01-29T06:26:43.447069Z",
- "LT05_L2SP_161028_20010129_02_T1"
- ],
- [
- "2001-01-29T06:27:07.149088Z",
- "LT05_L2SP_161029_20010129_02_T1"
- ],
- [
- "2001-02-14T06:26:46.761094Z",
- "LT05_L2SP_161028_20010214_02_T1"
- ],
- [
- "2001-02-14T06:27:10.610050Z",
- "LT05_L2SP_161029_20010214_02_T1"
- ],
- [
- "2001-03-02T06:26:55.249081Z",
- "LT05_L2SP_161028_20010302_02_T1"
- ],
- [
- "2001-03-19T06:31:12.785721Z",
- "LE07_L2SP_160029_20010319_02_T1"
- ],
- [
- "2001-04-19T06:26:46.042031Z",
- "LT05_L2SP_161028_20010419_02_T1"
- ],
- [
- "2001-05-21T06:26:57.860019Z",
- "LT05_L2SP_161028_20010521_02_T1"
- ],
- [
- "2001-06-06T06:27:08.615063Z",
- "LT05_L2SP_161028_20010606_02_T1"
- ],
- [
- "2001-06-06T06:27:32.469088Z",
- "LT05_L2SP_161029_20010606_02_T1"
- ],
- [
- "2001-06-14T06:36:45.911218Z",
- "LE07_L2SP_161029_20010614_02_T1"
- ],
- [
- "2001-07-08T06:27:34.438075Z",
- "LT05_L2SP_161029_20010708_02_T1"
- ],
- [
- "2001-07-24T06:27:06.104025Z",
- "LT05_L2SP_161028_20010724_02_T1"
- ],
- [
- "2001-07-24T06:27:29.815044Z",
- "LT05_L2SP_161029_20010724_02_T1"
- ],
- [
- "2001-08-09T06:27:05.453000Z",
- "LT05_L2SP_161028_20010809_02_T2"
- ],
- [
- "2001-08-09T06:27:29.310069Z",
- "LT05_L2SP_161029_20010809_02_T1"
- ],
- [
- "2001-08-17T06:35:36.322537Z",
- "LE07_L2SP_161028_20010817_02_T1"
- ],
- [
- "2001-08-17T06:36:00.199217Z",
- "LE07_L2SP_161029_20010817_02_T1"
- ],
- [
- "2001-08-18T06:21:17.491038Z",
- "LT05_L2SP_160029_20010818_02_T1"
- ],
- [
- "2001-08-26T06:29:21.655550Z",
- "LE07_L2SP_160028_20010826_02_T1"
- ],
- [
- "2001-09-26T06:26:47.436019Z",
- "LT05_L2SP_161028_20010926_02_T1"
- ],
- [
- "2001-10-05T06:20:30.614013Z",
- "LT05_L2SP_160028_20011005_02_T1"
- ],
- [
- "2001-10-05T06:20:54.475019Z",
- "LT05_L2SP_160029_20011005_02_T1"
- ],
- [
- "2001-10-12T06:26:43.498056Z",
- "LT05_L2SP_161028_20011012_02_T1"
- ],
- [
- "2001-10-12T06:27:07.359094Z",
- "LT05_L2SP_161029_20011012_02_T1"
- ],
- [
- "2001-11-30T06:29:32.192832Z",
- "LE07_L2SP_160029_20011130_02_T1"
- ],
- [
- "2001-12-08T06:20:04.269088Z",
- "LT05_L2SP_160028_20011208_02_T1"
- ],
- [
- "2002-03-05T06:24:57.929094Z",
- "LT05_L2SP_161028_20020305_02_T1"
- ],
- [
- "2002-03-13T06:35:40.438097Z",
- "LE07_L2SP_161028_20020313_02_T1"
- ],
- [
- "2002-03-13T06:36:04.318034Z",
- "LE07_L2SP_161029_20020313_02_T1"
- ],
- [
- "2002-03-14T06:18:41.143081Z",
- "LT05_L2SP_160028_20020314_02_T2"
- ],
- [
- "2002-03-14T06:19:05.020056Z",
- "LT05_L2SP_160029_20020314_02_T1"
- ],
- [
- "2002-04-06T06:24:35.012069Z",
- "LT05_L2SP_161028_20020406_02_T2"
- ],
- [
- "2002-05-16T06:35:53.287277Z",
- "LE07_L2SP_161029_20020516_02_T1"
- ],
- [
- "2002-05-17T06:17:28.343088Z",
- "LT05_L2SP_160028_20020517_02_T1"
- ],
- [
- "2002-05-17T06:17:52.031044Z",
- "LT05_L2SP_160029_20020517_02_T1"
- ],
- [
- "2002-05-24T06:23:53.724038Z",
- "LT05_L2SP_161029_20020524_02_T1"
- ],
- [
- "2002-06-26T06:29:25.051514Z",
- "LE07_L2SP_160029_20020626_02_T1"
- ],
- [
- "2002-07-03T06:35:36.587267Z",
- "LE07_L2SP_161029_20020703_02_T1"
- ],
- [
- "2002-07-11T06:22:22.410031Z",
- "LT05_L2SP_161028_20020711_02_T1"
- ],
- [
- "2002-07-11T06:22:46.097088Z",
- "LT05_L2SP_161029_20020711_02_T1"
- ],
- [
- "2002-07-12T06:28:59.082772Z",
- "LE07_L2SP_160028_20020712_02_T1"
- ],
- [
- "2002-07-12T06:29:22.957553Z",
- "LE07_L2SP_160029_20020712_02_T1"
- ],
- [
- "2002-07-20T06:16:25.971025Z",
- "LT05_L2SP_160029_20020720_02_T1"
- ],
- [
- "2002-08-04T06:35:22.094143Z",
- "LE07_L2SP_161029_20020804_02_T1"
- ],
- [
- "2002-08-05T06:15:58.604025Z",
- "LT05_L2SP_160029_20020805_02_T1"
- ],
- [
- "2002-08-13T06:28:46.409190Z",
- "LE07_L2SP_160028_20020813_02_T1"
- ],
- [
- "2002-08-13T06:29:10.267375Z",
- "LE07_L2SP_160029_20020813_02_T1"
- ],
- [
- "2002-09-21T06:34:57.028534Z",
- "LE07_L2SP_161029_20020921_02_T1"
- ],
- [
- "2002-09-30T06:28:19.768431Z",
- "LE07_L2SP_160028_20020930_02_T1"
- ],
- [
- "2002-11-08T06:34:39.668028Z",
- "LE07_L2SP_161028_20021108_02_T1"
- ],
- [
- "2002-11-08T06:35:03.548982Z",
- "LE07_L2SP_161029_20021108_02_T1"
- ],
- [
- "2002-11-17T06:29:00.622302Z",
- "LE07_L2SP_160029_20021117_02_T1"
- ],
- [
- "2002-12-03T06:28:51.215575Z",
- "LE07_L2SP_160028_20021203_02_T1"
- ],
- [
- "2003-01-27T06:35:16.250943Z",
- "LE07_L2SP_161028_20030127_02_T2"
- ],
- [
- "2003-03-09T06:29:20.362732Z",
- "LE07_L2SP_160028_20030309_02_T1"
- ],
- [
- "2003-03-09T06:29:44.240410Z",
- "LE07_L2SP_160029_20030309_02_T1"
- ],
- [
- "2003-08-07T06:35:09.987859Z",
- "LE07_L2SP_161028_20030807_02_T1"
- ],
- [
- "2003-09-01T06:28:56.086502Z",
- "LE07_L2SP_160028_20030901_02_T1"
- ],
- [
- "2003-09-01T06:29:19.967476Z",
- "LE07_L2SP_160029_20030901_02_T1"
- ],
- [
- "2003-09-24T06:35:21.843728Z",
- "LE07_L2SP_161029_20030924_02_T1"
- ],
- [
- "2003-10-10T06:35:13.144261Z",
- "LE07_L2SP_161029_20031010_02_T1"
- ],
- [
- "2003-11-27T06:35:51.074888Z",
- "LE07_L2SP_161029_20031127_02_T1"
- ],
- [
- "2004-03-02T06:35:56.057778Z",
- "LE07_L2SP_161028_20040302_02_T1"
- ],
- [
- "2004-03-11T06:29:49.788719Z",
- "LE07_L2SP_160028_20040311_02_T1"
- ],
- [
- "2004-04-28T06:29:45.009566Z",
- "LE07_L2SP_160028_20040428_02_T1"
- ],
- [
- "2004-05-30T06:29:44.400524Z",
- "LE07_L2SP_160028_20040530_02_T1"
- ],
- [
- "2004-05-30T06:30:08.285319Z",
- "LE07_L2SP_160029_20040530_02_T1"
- ],
- [
- "2004-06-06T06:35:52.449837Z",
- "LE07_L2SP_161028_20040606_02_T1"
- ],
- [
- "2004-06-06T06:36:16.334671Z",
- "LE07_L2SP_161029_20040606_02_T1"
- ],
- [
- "2004-06-15T06:29:36.880782Z",
- "LE07_L2SP_160028_20040615_02_T1"
- ],
- [
- "2004-06-15T06:30:00.765150Z",
- "LE07_L2SP_160029_20040615_02_T1"
- ],
- [
- "2004-07-01T06:29:36.745391Z",
- "LE07_L2SP_160028_20040701_02_T1"
- ],
- [
- "2004-07-01T06:30:00.629129Z",
- "LE07_L2SP_160029_20040701_02_T1"
- ],
- [
- "2004-07-17T06:29:33.546904Z",
- "LE07_L2SP_160028_20040717_02_T1"
- ],
- [
- "2004-07-17T06:29:57.429552Z",
- "LE07_L2SP_160029_20040717_02_T1"
- ],
- [
- "2004-08-02T06:29:48.739075Z",
- "LE07_L2SP_160029_20040802_02_T1"
- ],
- [
- "2004-08-09T06:35:34.940939Z",
- "LE07_L2SP_161028_20040809_02_T1"
- ],
- [
- "2004-08-09T06:35:58.823525Z",
- "LE07_L2SP_161029_20040809_02_T1"
- ],
- [
- "2004-08-18T06:29:23.684687Z",
- "LE07_L2SP_160028_20040818_02_T1"
- ],
- [
- "2004-08-18T06:29:47.567415Z",
- "LE07_L2SP_160029_20040818_02_T1"
- ],
- [
- "2004-08-25T06:35:33.040041Z",
- "LE07_L2SP_161028_20040825_02_T1"
- ],
- [
- "2004-08-25T06:35:56.923319Z",
- "LE07_L2SP_161029_20040825_02_T1"
- ],
- [
- "2004-10-12T06:35:19.640707Z",
- "LE07_L2SP_161028_20041012_02_T1"
- ],
- [
- "2004-11-06T06:29:54.309229Z",
- "LE07_L2SP_160029_20041106_02_T1"
- ],
- [
- "2004-11-13T06:35:42.975177Z",
- "LE07_L2SP_161028_20041113_02_T1"
- ],
- [
- "2004-12-08T06:30:09.460358Z",
- "LE07_L2SP_160029_20041208_02_T1"
- ],
- [
- "2004-12-24T06:29:53.227283Z",
- "LE07_L2SP_160028_20041224_02_T1"
- ],
- [
- "2005-02-01T06:36:14.703683Z",
- "LE07_L2SP_161028_20050201_02_T1"
- ],
- [
- "2005-02-17T06:36:23.899128Z",
- "LE07_L2SP_161028_20050217_02_T1"
- ],
- [
- "2005-02-17T06:36:47.782639Z",
- "LE07_L2SP_161029_20050217_02_T1"
- ],
- [
- "2005-03-14T06:30:18.161642Z",
- "LE07_L2SP_160028_20050314_02_T1"
- ],
- [
- "2005-05-17T06:30:12.635891Z",
- "LE07_L2SP_160028_20050517_02_T1"
- ],
- [
- "2005-05-17T06:30:36.521242Z",
- "LE07_L2SP_160029_20050517_02_T1"
- ],
- [
- "2005-06-02T06:30:08.631210Z",
- "LE07_L2SP_160028_20050602_02_T1"
- ],
- [
- "2005-06-02T06:30:32.515182Z",
- "LE07_L2SP_160029_20050602_02_T1"
- ],
- [
- "2005-06-09T06:36:16.347090Z",
- "LE07_L2SP_161028_20050609_02_T1"
- ],
- [
- "2005-06-09T06:36:40.230236Z",
- "LE07_L2SP_161029_20050609_02_T1"
- ],
- [
- "2005-08-05T06:29:58.727213Z",
- "LE07_L2SP_160028_20050805_02_T1"
- ],
- [
- "2005-08-05T06:30:22.610371Z",
- "LE07_L2SP_160029_20050805_02_T1"
- ],
- [
- "2005-08-12T06:36:07.392930Z",
- "LE07_L2SP_161028_20050812_02_T1"
- ],
- [
- "2005-08-12T06:36:31.276815Z",
- "LE07_L2SP_161029_20050812_02_T1"
- ],
- [
- "2005-08-28T06:36:00.687547Z",
- "LE07_L2SP_161028_20050828_02_T1"
- ],
- [
- "2005-09-29T06:36:14.813226Z",
- "LE07_L2SP_161029_20050929_02_T1"
- ],
- [
- "2005-10-15T06:36:17.827091Z",
- "LE07_L2SP_161029_20051015_02_T1"
- ],
- [
- "2005-10-31T06:36:06.969527Z",
- "LE07_L2SP_161028_20051031_02_T1"
- ],
- [
- "2005-10-31T06:36:30.853360Z",
- "LE07_L2SP_161029_20051031_02_T1"
- ],
- [
- "2006-01-12T06:30:27.158052Z",
- "LE07_L2SP_160028_20060112_02_T1"
- ],
- [
- "2006-01-28T06:30:34.422433Z",
- "LE07_L2SP_160028_20060128_02_T1"
- ],
- [
- "2006-03-01T06:30:41.608216Z",
- "LE07_L2SP_160028_20060301_02_T1"
- ],
- [
- "2006-03-24T06:36:52.107748Z",
- "LE07_L2SP_161028_20060324_02_T1"
- ],
- [
- "2006-04-09T06:36:49.141233Z",
- "LE07_L2SP_161028_20060409_02_T1"
- ],
- [
- "2006-04-09T06:37:13.023544Z",
- "LE07_L2SP_161029_20060409_02_T1"
- ],
- [
- "2006-04-25T06:37:11.779279Z",
- "LE07_L2SP_161029_20060425_02_T1"
- ],
- [
- "2006-05-27T06:36:50.380223Z",
- "LE07_L2SP_161028_20060527_02_T1"
- ],
- [
- "2006-05-27T06:37:14.265364Z",
- "LE07_L2SP_161029_20060527_02_T1"
- ],
- [
- "2006-06-05T06:30:38.235834Z",
- "LE07_L2SP_160028_20060605_02_T1"
- ],
- [
- "2006-06-05T06:31:02.120145Z",
- "LE07_L2SP_160029_20060605_02_T1"
- ],
- [
- "2006-06-12T06:36:47.468208Z",
- "LE07_L2SP_161028_20060612_02_T1"
- ],
- [
- "2006-06-12T06:37:11.351558Z",
- "LE07_L2SP_161029_20060612_02_T1"
- ],
- [
- "2006-06-21T06:30:57.757194Z",
- "LE07_L2SP_160029_20060621_02_T1"
- ],
- [
- "2006-07-07T06:30:27.377223Z",
- "LE07_L2SP_160028_20060707_02_T1"
- ],
- [
- "2006-07-07T06:30:51.258569Z",
- "LE07_L2SP_160029_20060707_02_T1"
- ],
- [
- "2006-07-14T06:36:58.562103Z",
- "LE07_L2SP_161029_20060714_02_T1"
- ],
- [
- "2006-07-15T06:33:38.839075Z",
- "LT05_L2SP_160028_20060715_02_T1"
- ],
- [
- "2006-07-15T06:34:02.527050Z",
- "LT05_L2SP_160029_20060715_02_T1"
- ],
- [
- "2006-07-22T06:39:55.139094Z",
- "LT05_L2SP_161028_20060722_02_T1"
- ],
- [
- "2006-07-23T06:30:18.836280Z",
- "LE07_L2SP_160028_20060723_02_T1"
- ],
- [
- "2006-07-23T06:30:42.717814Z",
- "LE07_L2SP_160029_20060723_02_T1"
- ],
- [
- "2006-07-31T06:33:50.955063Z",
- "LT05_L2SP_160028_20060731_02_T1"
- ],
- [
- "2006-07-31T06:34:14.643038Z",
- "LT05_L2SP_160029_20060731_02_T1"
- ],
- [
- "2006-08-07T06:40:06.656013Z",
- "LT05_L2SP_161028_20060807_02_T1"
- ],
- [
- "2006-08-07T06:40:30.343081Z",
- "LT05_L2SP_161029_20060807_02_T1"
- ],
- [
- "2006-08-08T06:30:16.822769Z",
- "LE07_L2SP_160028_20060808_02_T1"
- ],
- [
- "2006-08-08T06:30:40.706141Z",
- "LE07_L2SP_160029_20060808_02_T1"
- ],
- [
- "2006-08-15T06:36:26.847629Z",
- "LE07_L2SP_161028_20060815_02_T1"
- ],
- [
- "2006-08-15T06:36:50.731817Z",
- "LE07_L2SP_161029_20060815_02_T1"
- ],
- [
- "2006-08-23T06:40:17.498013Z",
- "LT05_L2SP_161028_20060823_02_T1"
- ],
- [
- "2006-08-23T06:40:41.328050Z",
- "LT05_L2SP_161029_20060823_02_T1"
- ],
- [
- "2006-08-24T06:30:14.558404Z",
- "LE07_L2SP_160028_20060824_02_T1"
- ],
- [
- "2006-08-24T06:30:38.443364Z",
- "LE07_L2SP_160029_20060824_02_T1"
- ],
- [
- "2006-08-31T06:36:23.736479Z",
- "LE07_L2SP_161028_20060831_02_T1"
- ],
- [
- "2006-08-31T06:36:47.621973Z",
- "LE07_L2SP_161029_20060831_02_T1"
- ],
- [
- "2006-09-01T06:34:12.845038Z",
- "LT05_L2SP_160028_20060901_02_T1"
- ],
- [
- "2006-09-08T06:40:52.522063Z",
- "LT05_L2SP_161029_20060908_02_T1"
- ],
- [
- "2006-09-09T06:30:10.283678Z",
- "LE07_L2SP_160028_20060909_02_T1"
- ],
- [
- "2006-09-09T06:30:34.169302Z",
- "LE07_L2SP_160029_20060909_02_T1"
- ],
- [
- "2006-09-24T06:40:40.336000Z",
- "LT05_L2SP_161028_20060924_02_T1"
- ],
- [
- "2006-09-24T06:41:04.166038Z",
- "LT05_L2SP_161029_20060924_02_T1"
- ],
- [
- "2006-09-25T06:30:03.857163Z",
- "LE07_L2SP_160028_20060925_02_T1"
- ],
- [
- "2006-09-25T06:30:27.741959Z",
- "LE07_L2SP_160029_20060925_02_T1"
- ],
- [
- "2006-10-02T06:36:11.197147Z",
- "LE07_L2SP_161028_20061002_02_T1"
- ],
- [
- "2006-10-10T06:40:51.810050Z",
- "LT05_L2SP_161028_20061010_02_T1"
- ],
- [
- "2006-10-10T06:41:15.640088Z",
- "LT05_L2SP_161029_20061010_02_T1"
- ],
- [
- "2006-10-26T06:41:02.479056Z",
- "LT05_L2SP_161028_20061026_02_T1"
- ],
- [
- "2006-11-12T06:30:53.618263Z",
- "LE07_L2SP_160029_20061112_02_T1"
- ],
- [
- "2007-03-04T06:31:05.937715Z",
- "LE07_L2SP_160028_20070304_02_T1"
- ],
- [
- "2007-04-21T06:31:05.405075Z",
- "LE07_L2SP_160028_20070421_02_T1"
- ],
- [
- "2007-05-06T06:41:22.811088Z",
- "LT05_L2SP_161028_20070506_02_T1"
- ],
- [
- "2007-05-22T06:41:12.187000Z",
- "LT05_L2SP_161028_20070522_02_T1"
- ],
- [
- "2007-05-22T06:41:36.017038Z",
- "LT05_L2SP_161029_20070522_02_T1"
- ],
- [
- "2007-05-23T06:31:18.165433Z",
- "LE07_L2SP_160029_20070523_02_T1"
- ],
- [
- "2007-05-30T06:37:01.741378Z",
- "LE07_L2SP_161028_20070530_02_T1"
- ],
- [
- "2007-05-30T06:37:25.626722Z",
- "LE07_L2SP_161029_20070530_02_T1"
- ],
- [
- "2007-05-31T06:35:17.903081Z",
- "LT05_L2SP_160029_20070531_02_T1"
- ],
- [
- "2007-06-08T06:30:51.622392Z",
- "LE07_L2SP_160028_20070608_02_T1"
- ],
- [
- "2007-06-08T06:31:15.507143Z",
- "LE07_L2SP_160029_20070608_02_T1"
- ],
- [
- "2007-06-15T06:37:02.507062Z",
- "LE07_L2SP_161028_20070615_02_T1"
- ],
- [
- "2007-06-15T06:37:26.391073Z",
- "LE07_L2SP_161029_20070615_02_T1"
- ],
- [
- "2007-06-16T06:34:38.475056Z",
- "LT05_L2SP_160028_20070616_02_T1"
- ],
- [
- "2007-06-16T06:35:02.163025Z",
- "LT05_L2SP_160029_20070616_02_T1"
- ],
- [
- "2007-06-24T06:30:51.172142Z",
- "LE07_L2SP_160028_20070624_02_T1"
- ],
- [
- "2007-06-24T06:31:15.055065Z",
- "LE07_L2SP_160029_20070624_02_T1"
- ],
- [
- "2007-07-02T06:34:46.447063Z",
- "LT05_L2SP_160029_20070702_02_T1"
- ],
- [
- "2007-07-09T06:40:30.314081Z",
- "LT05_L2SP_161028_20070709_02_T1"
- ],
- [
- "2007-07-26T06:31:08.914518Z",
- "LE07_L2SP_160029_20070726_02_T1"
- ],
- [
- "2007-08-02T06:36:53.703067Z",
- "LE07_L2SP_161028_20070802_02_T1"
- ],
- [
- "2007-08-02T06:37:17.585188Z",
- "LE07_L2SP_161029_20070802_02_T1"
- ],
- [
- "2007-08-03T06:34:05.198013Z",
- "LT05_L2SP_160028_20070803_02_T1"
- ],
- [
- "2007-08-03T06:34:28.885081Z",
- "LT05_L2SP_160029_20070803_02_T1"
- ],
- [
- "2007-08-10T06:40:11.450044Z",
- "LT05_L2SP_161028_20070810_02_T2"
- ],
- [
- "2007-08-11T06:30:39.694890Z",
- "LE07_L2SP_160028_20070811_02_T1"
- ],
- [
- "2007-08-11T06:31:03.578066Z",
- "LE07_L2SP_160029_20070811_02_T1"
- ],
- [
- "2007-08-18T06:36:47.719853Z",
- "LE07_L2SP_161028_20070818_02_T1"
- ],
- [
- "2007-08-18T06:37:11.603475Z",
- "LE07_L2SP_161029_20070818_02_T1"
- ],
- [
- "2007-08-19T06:33:54.448025Z",
- "LT05_L2SP_160028_20070819_02_T1"
- ],
- [
- "2007-08-19T06:34:18.278063Z",
- "LT05_L2SP_160029_20070819_02_T1"
- ],
- [
- "2007-08-26T06:40:00.375069Z",
- "LT05_L2SP_161028_20070826_02_T1"
- ],
- [
- "2007-08-26T06:40:24.206006Z",
- "LT05_L2SP_161029_20070826_02_T1"
- ],
- [
- "2007-08-27T06:30:56.851255Z",
- "LE07_L2SP_160029_20070827_02_T1"
- ],
- [
- "2007-09-03T06:37:04.283385Z",
- "LE07_L2SP_161029_20070903_02_T1"
- ],
- [
- "2007-09-04T06:33:45.137031Z",
- "LT05_L2SP_160028_20070904_02_T1"
- ],
- [
- "2007-09-04T06:34:08.967069Z",
- "LT05_L2SP_160029_20070904_02_T1"
- ],
- [
- "2007-09-11T06:39:53.436019Z",
- "LT05_L2SP_161028_20070911_02_T1"
- ],
- [
- "2007-09-11T06:40:17.266056Z",
- "LT05_L2SP_161029_20070911_02_T1"
- ],
- [
- "2007-09-12T06:30:25.022643Z",
- "LE07_L2SP_160028_20070912_02_T1"
- ],
- [
- "2007-09-12T06:30:48.908540Z",
- "LE07_L2SP_160029_20070912_02_T1"
- ],
- [
- "2007-09-27T06:39:46.081094Z",
- "LT05_L2SP_161028_20070927_02_T1"
- ],
- [
- "2007-09-27T06:40:09.912031Z",
- "LT05_L2SP_161029_20070927_02_T1"
- ],
- [
- "2007-09-28T06:30:21.283226Z",
- "LE07_L2SP_160028_20070928_02_T1"
- ],
- [
- "2007-10-05T06:36:49.203071Z",
- "LE07_L2SP_161029_20071005_02_T1"
- ],
- [
- "2007-10-21T06:36:38.217941Z",
- "LE07_L2SP_161028_20071021_02_T1"
- ],
- [
- "2007-10-21T06:37:02.103208Z",
- "LE07_L2SP_161029_20071021_02_T1"
- ],
- [
- "2007-10-30T06:30:33.707452Z",
- "LE07_L2SP_160028_20071030_02_T1"
- ],
- [
- "2008-02-10T06:37:04.534607Z",
- "LE07_L2SP_161028_20080210_02_T1"
- ],
- [
- "2008-02-10T06:37:28.420123Z",
- "LE07_L2SP_161029_20080210_02_T1"
- ],
- [
- "2008-03-06T06:30:45.970343Z",
- "LE07_L2SP_160028_20080306_02_T1"
- ],
- [
- "2008-03-06T06:31:09.852267Z",
- "LE07_L2SP_160029_20080306_02_T1"
- ],
- [
- "2008-04-07T06:30:44.362534Z",
- "LE07_L2SP_160028_20080407_02_T1"
- ],
- [
- "2008-04-14T06:37:18.216748Z",
- "LE07_L2SP_161029_20080414_02_T1"
- ],
- [
- "2008-05-09T06:30:37.479153Z",
- "LE07_L2SP_160028_20080509_02_T1"
- ],
- [
- "2008-05-24T06:35:03.906081Z",
- "LT05_L2SP_161028_20080524_02_T1"
- ],
- [
- "2008-05-24T06:35:27.737013Z",
- "LT05_L2SP_161029_20080524_02_T1"
- ],
- [
- "2008-05-25T06:30:31.204803Z",
- "LE07_L2SP_160028_20080525_02_T1"
- ],
- [
- "2008-05-25T06:30:55.090642Z",
- "LE07_L2SP_160029_20080525_02_T1"
- ],
- [
- "2008-06-01T06:36:38.677965Z",
- "LE07_L2SP_161028_20080601_02_T1"
- ],
- [
- "2008-06-01T06:37:02.563330Z",
- "LE07_L2SP_161029_20080601_02_T1"
- ],
- [
- "2008-06-02T06:28:38.458025Z",
- "LT05_L2SP_160028_20080602_02_T1"
- ],
- [
- "2008-06-02T06:29:02.288056Z",
- "LT05_L2SP_160029_20080602_02_T1"
- ],
- [
- "2008-06-10T06:30:23.079340Z",
- "LE07_L2SP_160028_20080610_02_T1"
- ],
- [
- "2008-06-17T06:36:53.731942Z",
- "LE07_L2SP_161029_20080617_02_T1"
- ],
- [
- "2008-06-18T06:28:12.083050Z",
- "LT05_L2SP_160028_20080618_02_T1"
- ],
- [
- "2008-06-18T06:28:35.913081Z",
- "LT05_L2SP_160029_20080618_02_T1"
- ],
- [
- "2008-06-25T06:34:35.097081Z",
- "LT05_L2SP_161029_20080625_02_T1"
- ],
- [
- "2008-06-26T06:30:13.318160Z",
- "LE07_L2SP_160028_20080626_02_T1"
- ],
- [
- "2008-06-26T06:30:37.200522Z",
- "LE07_L2SP_160029_20080626_02_T1"
- ],
- [
- "2008-07-11T06:33:43.833056Z",
- "LT05_L2SP_161028_20080711_02_T1"
- ],
- [
- "2008-07-11T06:34:07.663088Z",
- "LT05_L2SP_161029_20080711_02_T1"
- ],
- [
- "2008-07-12T06:30:02.001463Z",
- "LE07_L2SP_160028_20080712_02_T1"
- ],
- [
- "2008-07-12T06:30:25.882534Z",
- "LE07_L2SP_160029_20080712_02_T1"
- ],
- [
- "2008-07-19T06:36:07.469842Z",
- "LE07_L2SP_161028_20080719_02_T1"
- ],
- [
- "2008-07-19T06:36:31.350564Z",
- "LE07_L2SP_161029_20080719_02_T1"
- ],
- [
- "2008-07-20T06:27:17.243050Z",
- "LT05_L2SP_160028_20080720_02_T1"
- ],
- [
- "2008-07-20T06:27:40.931013Z",
- "LT05_L2SP_160029_20080720_02_T1"
- ],
- [
- "2008-07-27T06:33:15.399088Z",
- "LT05_L2SP_161028_20080727_02_T1"
- ],
- [
- "2008-07-27T06:33:39.230019Z",
- "LT05_L2SP_161029_20080727_02_T1"
- ],
- [
- "2008-07-28T06:29:52.092433Z",
- "LE07_L2SP_160028_20080728_02_T1"
- ],
- [
- "2008-07-28T06:30:15.973795Z",
- "LE07_L2SP_160029_20080728_02_T1"
- ],
- [
- "2008-08-04T06:36:00.479314Z",
- "LE07_L2SP_161028_20080804_02_T1"
- ],
- [
- "2008-08-04T06:36:24.361538Z",
- "LE07_L2SP_161029_20080804_02_T1"
- ],
- [
- "2008-08-13T06:29:46.187522Z",
- "LE07_L2SP_160028_20080813_02_T1"
- ],
- [
- "2008-08-13T06:30:10.070717Z",
- "LE07_L2SP_160029_20080813_02_T1"
- ],
- [
- "2008-08-20T06:35:54.060907Z",
- "LE07_L2SP_161028_20080820_02_T1"
- ],
- [
- "2008-08-20T06:36:17.944710Z",
- "LE07_L2SP_161029_20080820_02_T1"
- ],
- [
- "2008-08-29T06:30:02.979135Z",
- "LE07_L2SP_160029_20080829_02_T1"
- ],
- [
- "2008-09-05T06:35:46.441454Z",
- "LE07_L2SP_161028_20080905_02_T1"
- ],
- [
- "2008-09-05T06:36:10.327071Z",
- "LE07_L2SP_161029_20080905_02_T1"
- ],
- [
- "2008-09-14T06:29:30.827046Z",
- "LE07_L2SP_160028_20080914_02_T1"
- ],
- [
- "2008-09-14T06:29:54.713042Z",
- "LE07_L2SP_160029_20080914_02_T1"
- ],
- [
- "2008-09-21T06:35:37.610803Z",
- "LE07_L2SP_161028_20080921_02_T1"
- ],
- [
- "2008-09-21T06:36:01.496394Z",
- "LE07_L2SP_161029_20080921_02_T1"
- ],
- [
- "2008-09-22T06:25:27.227019Z",
- "LT05_L2SP_160028_20080922_02_T1"
- ],
- [
- "2008-10-07T06:35:27.385403Z",
- "LE07_L2SP_161028_20081007_02_T1"
- ],
- [
- "2008-10-08T06:24:56.664094Z",
- "LT05_L2SP_160028_20081008_02_T1"
- ],
- [
- "2008-10-08T06:25:20.352056Z",
- "LT05_L2SP_160029_20081008_02_T1"
- ],
- [
- "2008-10-15T06:30:53.237000Z",
- "LT05_L2SP_161028_20081015_02_T1"
- ],
- [
- "2008-10-15T06:31:17.067025Z",
- "LT05_L2SP_161029_20081015_02_T1"
- ],
- [
- "2008-10-31T06:30:19.446031Z",
- "LT05_L2SP_161028_20081031_02_T1"
- ],
- [
- "2008-10-31T06:30:43.133081Z",
- "LT05_L2SP_161029_20081031_02_T1"
- ],
- [
- "2008-11-01T06:29:57.069544Z",
- "LE07_L2SP_160029_20081101_02_T1"
- ],
- [
- "2008-12-03T06:30:22.133476Z",
- "LE07_L2SP_160029_20081203_02_T1"
- ],
- [
- "2008-12-10T06:36:13.373930Z",
- "LE07_L2SP_161028_20081210_02_T1"
- ],
- [
- "2008-12-10T06:36:37.255666Z",
- "LE07_L2SP_161029_20081210_02_T1"
- ],
- [
- "2009-02-12T06:36:39.289707Z",
- "LE07_L2SP_161028_20090212_02_T1"
- ],
- [
- "2009-02-21T06:30:33.911863Z",
- "LE07_L2SP_160028_20090221_02_T1"
- ],
- [
- "2009-02-28T06:36:48.654769Z",
- "LE07_L2SP_161028_20090228_02_T1"
- ],
- [
- "2009-03-08T06:33:09.461069Z",
- "LT05_L2SP_161028_20090308_02_T1"
- ],
- [
- "2009-05-04T06:28:08.759094Z",
- "LT05_L2SP_160028_20090504_02_T1"
- ],
- [
- "2009-05-11T06:34:27.864094Z",
- "LT05_L2SP_161028_20090511_02_T1"
- ],
- [
- "2009-05-11T06:34:51.695031Z",
- "LT05_L2SP_161029_20090511_02_T1"
- ],
- [
- "2009-05-12T06:31:01.677735Z",
- "LE07_L2SP_160028_20090512_02_T1"
- ],
- [
- "2009-05-12T06:31:25.562962Z",
- "LE07_L2SP_160029_20090512_02_T1"
- ],
- [
- "2009-05-28T06:31:02.476953Z",
- "LE07_L2SP_160028_20090528_02_T1"
- ],
- [
- "2009-05-28T06:31:26.362851Z",
- "LE07_L2SP_160029_20090528_02_T1"
- ],
- [
- "2009-06-12T06:35:02.518031Z",
- "LT05_L2SP_161028_20090612_02_T1"
- ],
- [
- "2009-06-12T06:35:26.348075Z",
- "LT05_L2SP_161029_20090612_02_T1"
- ],
- [
- "2009-06-13T06:31:01.648911Z",
- "LE07_L2SP_160028_20090613_02_T1"
- ],
- [
- "2009-06-20T06:37:11.597768Z",
- "LE07_L2SP_161028_20090620_02_T1"
- ],
- [
- "2009-06-20T06:37:35.481575Z",
- "LE07_L2SP_161029_20090620_02_T1"
- ],
- [
- "2009-06-21T06:29:01.716063Z",
- "LT05_L2SP_160028_20090621_02_T1"
- ],
- [
- "2009-06-21T06:29:25.547006Z",
- "LT05_L2SP_160029_20090621_02_T1"
- ],
- [
- "2009-06-29T06:30:59.271780Z",
- "LE07_L2SP_160028_20090629_02_T1"
- ],
- [
- "2009-06-29T06:31:23.154401Z",
- "LE07_L2SP_160029_20090629_02_T1"
- ],
- [
- "2009-07-06T06:37:08.614476Z",
- "LE07_L2SP_161028_20090706_02_T1"
- ],
- [
- "2009-07-06T06:37:32.496110Z",
- "LE07_L2SP_161029_20090706_02_T1"
- ],
- [
- "2009-07-14T06:36:00.043013Z",
- "LT05_L2SP_161029_20090714_02_T1"
- ],
- [
- "2009-07-15T06:30:55.459619Z",
- "LE07_L2SP_160028_20090715_02_T1"
- ],
- [
- "2009-07-15T06:31:19.340792Z",
- "LE07_L2SP_160029_20090715_02_T1"
- ],
- [
- "2009-07-22T06:37:28.081145Z",
- "LE07_L2SP_161029_20090722_02_T1"
- ],
- [
- "2009-07-23T06:29:34.020006Z",
- "LT05_L2SP_160028_20090723_02_T1"
- ],
- [
- "2009-07-23T06:29:57.707075Z",
- "LT05_L2SP_160029_20090723_02_T1"
- ],
- [
- "2009-08-07T06:36:58.415460Z",
- "LE07_L2SP_161028_20090807_02_T1"
- ],
- [
- "2009-08-07T06:37:22.297141Z",
- "LE07_L2SP_161029_20090807_02_T1"
- ],
- [
- "2009-09-08T06:37:20.509956Z",
- "LE07_L2SP_161029_20090908_02_T1"
- ],
- [
- "2009-09-09T06:30:16.838031Z",
- "LT05_L2SP_160028_20090909_02_T1"
- ],
- [
- "2009-09-09T06:30:40.668069Z",
- "LT05_L2SP_160029_20090909_02_T1"
- ],
- [
- "2009-09-16T06:36:33.274038Z",
- "LT05_L2SP_161028_20090916_02_T1"
- ],
- [
- "2009-10-03T06:30:42.520269Z",
- "LE07_L2SP_160028_20091003_02_T1"
- ],
- [
- "2009-10-03T06:31:06.405412Z",
- "LE07_L2SP_160029_20091003_02_T1"
- ],
- [
- "2009-10-10T06:37:13.374601Z",
- "LE07_L2SP_161029_20091010_02_T1"
- ],
- [
- "2009-10-18T06:36:54.608025Z",
- "LT05_L2SP_161028_20091018_02_T1"
- ],
- [
- "2009-10-18T06:37:18.438056Z",
- "LT05_L2SP_161029_20091018_02_T1"
- ],
- [
- "2009-10-19T06:30:48.285822Z",
- "LE07_L2SP_160028_20091019_02_T1"
- ],
- [
- "2009-10-19T06:31:12.171628Z",
- "LE07_L2SP_160029_20091019_02_T1"
- ],
- [
- "2009-11-11T06:37:20.362635Z",
- "LE07_L2SP_161028_20091111_02_T1"
- ],
- [
- "2009-11-11T06:37:44.245243Z",
- "LE07_L2SP_161029_20091111_02_T1"
- ],
- [
- "2009-11-12T06:30:55.659056Z",
- "LT05_L2SP_160028_20091112_02_T1"
- ],
- [
- "2009-11-12T06:31:19.489088Z",
- "LT05_L2SP_160029_20091112_02_T1"
- ],
- [
- "2010-01-14T06:38:40.561114Z",
- "LE07_L2SP_161029_20100114_02_T1"
- ],
- [
- "2010-01-22T06:37:36.307063Z",
- "LT05_L2SP_161028_20100122_02_T1"
- ],
- [
- "2010-01-31T06:31:27.960056Z",
- "LT05_L2SP_160028_20100131_02_T1"
- ],
- [
- "2010-02-07T06:37:40.111044Z",
- "LT05_L2SP_161028_20100207_02_T1"
- ],
- [
- "2010-02-07T06:38:03.941075Z",
- "LT05_L2SP_161029_20100207_02_T2"
- ],
- [
- "2010-02-08T06:32:25.937768Z",
- "LE07_L2SP_160028_20100208_02_T1"
- ],
- [
- "2010-02-08T06:32:49.823804Z",
- "LE07_L2SP_160029_20100208_02_T1"
- ],
- [
- "2010-03-03T06:38:50.008598Z",
- "LE07_L2SP_161028_20100303_02_T1"
- ],
- [
- "2010-03-04T06:31:32.425050Z",
- "LT05_L2SP_160028_20100304_02_T1"
- ],
- [
- "2010-03-04T06:31:56.255063Z",
- "LT05_L2SP_160029_20100304_02_T1"
- ],
- [
- "2010-03-28T06:32:47.317582Z",
- "LE07_L2SP_160028_20100328_02_T1"
- ],
- [
- "2010-04-29T06:32:47.273770Z",
- "LE07_L2SP_160028_20100429_02_T1"
- ],
- [
- "2010-05-23T06:31:21.119000Z",
- "LT05_L2SP_160028_20100523_02_T1"
- ],
- [
- "2010-05-30T06:37:29.550025Z",
- "LT05_L2SP_161028_20100530_02_T1"
- ],
- [
- "2010-06-07T06:38:54.886781Z",
- "LE07_L2SP_161028_20100607_02_T1"
- ],
- [
- "2010-06-07T06:39:18.771971Z",
- "LE07_L2SP_161029_20100607_02_T1"
- ],
- [
- "2010-06-08T06:31:16.114069Z",
- "LT05_L2SP_160028_20100608_02_T1"
- ],
- [
- "2010-06-08T06:31:39.945000Z",
- "LT05_L2SP_160029_20100608_02_T1"
- ],
- [
- "2010-06-15T06:37:25.083063Z",
- "LT05_L2SP_161028_20100615_02_T1"
- ],
- [
- "2010-06-15T06:37:48.913088Z",
- "LT05_L2SP_161029_20100615_02_T1"
- ],
- [
- "2010-06-16T06:33:08.097601Z",
- "LE07_L2SP_160029_20100616_02_T1"
- ],
- [
- "2010-06-23T06:38:56.816422Z",
- "LE07_L2SP_161028_20100623_02_T1"
- ],
- [
- "2010-06-24T06:31:11.284006Z",
- "LT05_L2SP_160028_20100624_02_T1"
- ],
- [
- "2010-06-24T06:31:35.114038Z",
- "LT05_L2SP_160029_20100624_02_T1"
- ],
- [
- "2010-07-02T06:33:11.627593Z",
- "LE07_L2SP_160029_20100702_02_T1"
- ],
- [
- "2010-07-09T06:38:59.434378Z",
- "LE07_L2SP_161028_20100709_02_T1"
- ],
- [
- "2010-07-09T06:39:23.315441Z",
- "LE07_L2SP_161029_20100709_02_T1"
- ],
- [
- "2010-07-10T06:31:07.372081Z",
- "LT05_L2SP_160028_20100710_02_T1"
- ],
- [
- "2010-07-10T06:31:31.060044Z",
- "LT05_L2SP_160029_20100710_02_T1"
- ],
- [
- "2010-07-17T06:37:40.263000Z",
- "LT05_L2SP_161029_20100717_02_T1"
- ],
- [
- "2010-07-18T06:33:13.104907Z",
- "LE07_L2SP_160029_20100718_02_T1"
- ],
- [
- "2010-07-25T06:39:24.007895Z",
- "LE07_L2SP_161029_20100725_02_T1"
- ],
- [
- "2010-08-02T06:37:10.959038Z",
- "LT05_L2SP_161028_20100802_02_T1"
- ],
- [
- "2010-08-02T06:37:34.789069Z",
- "LT05_L2SP_161029_20100802_02_T1"
- ],
- [
- "2010-08-03T06:32:48.790543Z",
- "LE07_L2SP_160028_20100803_02_T1"
- ],
- [
- "2010-08-03T06:33:12.672232Z",
- "LE07_L2SP_160029_20100803_02_T1"
- ],
- [
- "2010-08-10T06:38:58.712059Z",
- "LE07_L2SP_161028_20100810_02_T1"
- ],
- [
- "2010-08-10T06:39:22.594422Z",
- "LE07_L2SP_161029_20100810_02_T1"
- ],
- [
- "2010-08-11T06:30:56.120044Z",
- "LT05_L2SP_160028_20100811_02_T1"
- ],
- [
- "2010-08-11T06:31:19.808006Z",
- "LT05_L2SP_160029_20100811_02_T1"
- ],
- [
- "2010-08-19T06:32:50.017740Z",
- "LE07_L2SP_160028_20100819_02_T1"
- ],
- [
- "2010-08-19T06:33:13.901877Z",
- "LE07_L2SP_160029_20100819_02_T1"
- ],
- [
- "2010-08-26T06:39:02.226370Z",
- "LE07_L2SP_161028_20100826_02_T1"
- ],
- [
- "2010-08-26T06:39:26.111491Z",
- "LE07_L2SP_161029_20100826_02_T1"
- ],
- [
- "2010-08-27T06:30:53.147006Z",
- "LT05_L2SP_160028_20100827_02_T1"
- ],
- [
- "2010-08-27T06:31:16.977044Z",
- "LT05_L2SP_160029_20100827_02_T1"
- ],
- [
- "2010-09-03T06:37:02.487075Z",
- "LT05_L2SP_161028_20100903_02_T1"
- ],
- [
- "2010-09-03T06:37:26.175038Z",
- "LT05_L2SP_161029_20100903_02_T1"
- ],
- [
- "2010-09-04T06:32:52.578670Z",
- "LE07_L2SP_160028_20100904_02_T1"
- ],
- [
- "2010-09-04T06:33:16.464698Z",
- "LE07_L2SP_160029_20100904_02_T1"
- ],
- [
- "2010-09-11T06:39:03.887646Z",
- "LE07_L2SP_161028_20100911_02_T1"
- ],
- [
- "2010-09-12T06:30:49.153031Z",
- "LT05_L2SP_160028_20100912_02_T1"
- ],
- [
- "2010-09-20T06:32:52.991076Z",
- "LE07_L2SP_160028_20100920_02_T1"
- ],
- [
- "2010-09-20T06:33:16.877416Z",
- "LE07_L2SP_160029_20100920_02_T1"
- ],
- [
- "2010-09-27T06:39:03.151841Z",
- "LE07_L2SP_161028_20100927_02_T1"
- ],
- [
- "2010-09-27T06:39:27.037510Z",
- "LE07_L2SP_161029_20100927_02_T1"
- ],
- [
- "2010-09-28T06:30:42.613044Z",
- "LT05_L2SP_160028_20100928_02_T1"
- ],
- [
- "2010-09-28T06:31:06.301006Z",
- "LT05_L2SP_160029_20100928_02_T1"
- ],
- [
- "2010-10-21T06:36:39.893000Z",
- "LT05_L2SP_161028_20101021_02_T1"
- ],
- [
- "2010-10-21T06:37:03.723025Z",
- "LT05_L2SP_161029_20101021_02_T1"
- ],
- [
- "2010-11-30T06:40:04.498155Z",
- "LE07_L2SP_161029_20101130_02_T1"
- ],
- [
- "2010-12-17T06:30:27.572063Z",
- "LT05_L2SP_160028_20101217_02_T1"
- ],
- [
- "2011-01-09T06:36:42.566081Z",
- "LT05_L2SP_161028_20110109_02_T1"
- ],
- [
- "2011-01-25T06:36:42.346088Z",
- "LT05_L2SP_161028_20110125_02_T1"
- ],
- [
- "2011-01-25T06:37:06.177013Z",
- "LT05_L2SP_161029_20110125_02_T1"
- ],
- [
- "2011-02-10T06:37:08.364050Z",
- "LT05_L2SP_161029_20110210_02_T1"
- ],
- [
- "2011-02-11T06:34:25.393859Z",
- "LE07_L2SP_160029_20110211_02_T1"
- ],
- [
- "2011-02-26T06:36:44.160019Z",
- "LT05_L2SP_161028_20110226_02_T1"
- ],
- [
- "2011-02-26T06:37:07.990044Z",
- "LT05_L2SP_161029_20110226_02_T1"
- ],
- [
- "2011-02-27T06:34:06.805684Z",
- "LE07_L2SP_160028_20110227_02_T1"
- ],
- [
- "2011-02-27T06:34:30.687854Z",
- "LE07_L2SP_160029_20110227_02_T1"
- ],
- [
- "2011-03-07T06:30:31.928056Z",
- "LT05_L2SP_160028_20110307_02_T1"
- ],
- [
- "2011-03-07T06:30:55.758088Z",
- "LT05_L2SP_160029_20110307_02_T1"
- ],
- [
- "2011-03-15T06:34:09.643038Z",
- "LE07_L2SP_160028_20110315_02_T1"
- ],
- [
- "2011-03-15T06:34:33.523621Z",
- "LE07_L2SP_160029_20110315_02_T1"
- ],
- [
- "2011-03-30T06:36:36.248075Z",
- "LT05_L2SP_161028_20110330_02_T1"
- ],
- [
- "2011-03-31T06:34:12.342936Z",
- "LE07_L2SP_160028_20110331_02_T1"
- ],
- [
- "2011-05-02T06:34:36.618813Z",
- "LE07_L2SP_160029_20110502_02_T1"
- ],
- [
- "2011-05-17T06:36:44.294038Z",
- "LT05_L2SP_161029_20110517_02_T1"
- ],
- [
- "2011-05-25T06:40:21.862426Z",
- "LE07_L2SP_161028_20110525_02_T1"
- ],
- [
- "2011-05-25T06:40:45.748541Z",
- "LE07_L2SP_161029_20110525_02_T1"
- ],
- [
- "2011-05-26T06:30:06.742031Z",
- "LT05_L2SP_160028_20110526_02_T1"
- ],
- [
- "2011-05-26T06:30:30.429094Z",
- "LT05_L2SP_160029_20110526_02_T1"
- ],
- [
- "2011-07-13T06:29:45.005056Z",
- "LT05_L2SP_160028_20110713_02_T1"
- ],
- [
- "2011-07-13T06:30:08.693019Z",
- "LT05_L2SP_160029_20110713_02_T1"
- ],
- [
- "2011-07-21T06:34:30.122306Z",
- "LE07_L2SP_160029_20110721_02_T1"
- ],
- [
- "2011-07-28T06:40:15.458618Z",
- "LE07_L2SP_161028_20110728_02_T1"
- ],
- [
- "2011-07-28T06:40:39.339754Z",
- "LE07_L2SP_161029_20110728_02_T1"
- ],
- [
- "2011-08-06T06:34:01.695990Z",
- "LE07_L2SP_160028_20110806_02_T1"
- ],
- [
- "2011-08-06T06:34:25.578809Z",
- "LE07_L2SP_160029_20110806_02_T1"
- ],
- [
- "2011-08-13T06:40:11.047893Z",
- "LE07_L2SP_161028_20110813_02_T1"
- ],
- [
- "2011-08-13T06:40:34.932073Z",
- "LE07_L2SP_161029_20110813_02_T1"
- ],
- [
- "2011-09-15T06:29:06.238069Z",
- "LT05_L2SP_160028_20110915_02_T1"
- ],
- [
- "2011-09-15T06:29:29.926031Z",
- "LT05_L2SP_160029_20110915_02_T1"
- ],
- [
- "2011-09-23T06:33:51.429003Z",
- "LE07_L2SP_160028_20110923_02_T1"
- ],
- [
- "2011-09-23T06:34:15.315243Z",
- "LE07_L2SP_160029_20110923_02_T1"
- ],
- [
- "2011-09-30T06:40:01.783708Z",
- "LE07_L2SP_161028_20110930_02_T1"
- ],
- [
- "2011-10-09T06:33:48.812402Z",
- "LE07_L2SP_160028_20111009_02_T1"
- ],
- [
- "2011-10-09T06:34:12.696354Z",
- "LE07_L2SP_160029_20111009_02_T1"
- ],
- [
- "2011-10-16T06:40:03.726708Z",
- "LE07_L2SP_161028_20111016_02_T1"
- ],
- [
- "2011-10-16T06:40:27.609604Z",
- "LE07_L2SP_161029_20111016_02_T1"
- ],
- [
- "2011-10-25T06:34:21.379343Z",
- "LE07_L2SP_160029_20111025_02_T1"
- ],
- [
- "2011-12-12T06:34:22.198714Z",
- "LE07_L2SP_160028_20111212_02_T1"
- ],
- [
- "2011-12-19T06:40:38.451583Z",
- "LE07_L2SP_161028_20111219_02_T1"
- ],
- [
- "2011-12-19T06:41:02.338603Z",
- "LE07_L2SP_161029_20111219_02_T1"
- ],
- [
- "2012-01-20T06:40:47.187813Z",
- "LE07_L2SP_161028_20120120_02_T1"
- ],
- [
- "2012-02-14T06:34:43.747457Z",
- "LE07_L2SP_160028_20120214_02_T1"
- ],
- [
- "2012-04-02T06:34:41.923337Z",
- "LE07_L2SP_160028_20120402_02_T1"
- ],
- [
- "2012-04-02T06:35:05.807838Z",
- "LE07_L2SP_160029_20120402_02_T1"
- ],
- [
- "2012-04-18T06:34:40.384127Z",
- "LE07_L2SP_160028_20120418_02_T1"
- ],
- [
- "2012-05-04T06:35:07.483881Z",
- "LE07_L2SP_160028_20120504_02_T1"
- ],
- [
- "2012-05-11T06:41:27.269507Z",
- "LE07_L2SP_161028_20120511_02_T1"
- ],
- [
- "2012-05-20T06:35:16.656935Z",
- "LE07_L2SP_160028_20120520_02_T1"
- ],
- [
- "2012-05-20T06:35:40.541429Z",
- "LE07_L2SP_160029_20120520_02_T1"
- ],
- [
- "2012-06-05T06:34:54.978821Z",
- "LE07_L2SP_160028_20120605_02_T2"
- ],
- [
- "2012-06-05T06:35:18.859811Z",
- "LE07_L2SP_160029_20120605_02_T2"
- ],
- [
- "2012-06-12T06:41:10.050547Z",
- "LE07_L2SP_161028_20120612_02_T1"
- ],
- [
- "2012-06-28T06:41:18.068891Z",
- "LE07_L2SP_161028_20120628_02_T1"
- ],
- [
- "2012-06-28T06:41:41.950049Z",
- "LE07_L2SP_161029_20120628_02_T1"
- ],
- [
- "2012-07-07T06:35:16.188951Z",
- "LE07_L2SP_160028_20120707_02_T1"
- ],
- [
- "2012-07-07T06:35:40.070757Z",
- "LE07_L2SP_160029_20120707_02_T1"
- ],
- [
- "2012-07-14T06:41:32.998975Z",
- "LE07_L2SP_161028_20120714_02_T1"
- ],
- [
- "2012-07-14T06:41:56.881302Z",
- "LE07_L2SP_161029_20120714_02_T1"
- ],
- [
- "2012-07-23T06:35:27.838619Z",
- "LE07_L2SP_160028_20120723_02_T1"
- ],
- [
- "2012-07-23T06:35:51.722482Z",
- "LE07_L2SP_160029_20120723_02_T1"
- ],
- [
- "2012-08-15T06:41:54.760309Z",
- "LE07_L2SP_161028_20120815_02_T1"
- ],
- [
- "2012-08-15T06:42:18.646958Z",
- "LE07_L2SP_161029_20120815_02_T1"
- ],
- [
- "2012-08-31T06:42:04.066915Z",
- "LE07_L2SP_161028_20120831_02_T1"
- ],
- [
- "2012-08-31T06:42:27.953134Z",
- "LE07_L2SP_161029_20120831_02_T1"
- ],
- [
- "2012-09-09T06:36:23.395177Z",
- "LE07_L2SP_160029_20120909_02_T1"
- ],
- [
- "2012-09-25T06:36:08.696149Z",
- "LE07_L2SP_160028_20120925_02_T1"
- ],
- [
- "2012-09-25T06:36:32.579265Z",
- "LE07_L2SP_160029_20120925_02_T1"
- ],
- [
- "2012-10-18T06:42:32.865261Z",
- "LE07_L2SP_161028_20121018_02_T1"
- ],
- [
- "2012-10-18T06:42:56.746834Z",
- "LE07_L2SP_161029_20121018_02_T1"
- ],
- [
- "2012-11-03T06:42:37.104044Z",
- "LE07_L2SP_161028_20121103_02_T1"
- ],
- [
- "2012-12-14T06:37:04.260322Z",
- "LE07_L2SP_160029_20121214_02_T1"
- ],
- [
- "2013-03-11T06:42:55.068800Z",
- "LE07_L2SP_161028_20130311_02_T1"
- ],
- [
- "2013-03-11T06:43:18.952263Z",
- "LE07_L2SP_161029_20130311_02_T1"
- ],
- [
- "2013-03-24T06:43:33.229980Z",
- "LC08_L2SP_160028_20130324_02_T1"
- ],
- [
- "2013-03-29T06:39:19.032276Z",
- "LC08_L2SP_160028_20130329_02_T1"
- ],
- [
- "2013-04-21T06:36:31.661885Z",
- "LE07_L2SP_160028_20130421_02_T1"
- ],
- [
- "2013-04-29T06:42:21.960884Z",
- "LC08_L2SP_160028_20130429_02_T1"
- ],
- [
- "2013-05-06T06:48:36.087711Z",
- "LC08_L2SP_161028_20130506_02_T1"
- ],
- [
- "2013-05-06T06:48:59.978747Z",
- "LC08_L2SP_161029_20130506_02_T1"
- ],
- [
- "2013-05-07T06:36:29.122685Z",
- "LE07_L2SP_160028_20130507_02_T1"
- ],
- [
- "2013-05-07T06:36:53.006451Z",
- "LE07_L2SP_160029_20130507_02_T1"
- ],
- [
- "2013-05-22T06:49:12.613029Z",
- "LC08_L2SP_161029_20130522_02_T1"
- ],
- [
- "2013-06-16T06:42:33.779561Z",
- "LC08_L2SP_160028_20130616_02_T1"
- ],
- [
- "2013-06-16T06:42:57.662126Z",
- "LC08_L2SP_160029_20130616_02_T1"
- ],
- [
- "2013-06-23T06:48:41.975457Z",
- "LC08_L2SP_161028_20130623_02_T1"
- ],
- [
- "2013-06-23T06:49:05.858022Z",
- "LC08_L2SP_161029_20130623_02_T1"
- ],
- [
- "2013-06-24T06:36:35.862961Z",
- "LE07_L2SP_160029_20130624_02_T1"
- ],
- [
- "2013-07-18T06:42:34.081429Z",
- "LC08_L2SP_160028_20130718_02_T1"
- ],
- [
- "2013-07-26T06:36:17.563703Z",
- "LE07_L2SP_160029_20130726_02_T1"
- ],
- [
- "2013-08-02T06:42:25.663686Z",
- "LE07_L2SP_161029_20130802_02_T1"
- ],
- [
- "2013-08-03T06:42:36.321187Z",
- "LC08_L2SP_160028_20130803_02_T1"
- ],
- [
- "2013-08-03T06:43:00.203752Z",
- "LC08_L2SP_160029_20130803_02_T1"
- ],
- [
- "2013-08-18T06:42:05.853996Z",
- "LE07_L2SP_161028_20130818_02_T1"
- ],
- [
- "2013-08-18T06:42:29.739168Z",
- "LE07_L2SP_161029_20130818_02_T1"
- ],
- [
- "2013-08-19T06:42:37.240313Z",
- "LC08_L2SP_160028_20130819_02_T1"
- ],
- [
- "2013-08-19T06:43:01.131350Z",
- "LC08_L2SP_160029_20130819_02_T1"
- ],
- [
- "2013-08-27T06:36:00.452205Z",
- "LE07_L2SP_160028_20130827_02_T1"
- ],
- [
- "2013-08-27T06:36:24.336626Z",
- "LE07_L2SP_160029_20130827_02_T1"
- ],
- [
- "2013-09-27T06:48:38.504749Z",
- "LC08_L2SP_161028_20130927_02_T1"
- ],
- [
- "2013-10-13T06:49:03.057848Z",
- "LC08_L2SP_161029_20131013_02_T1"
- ],
- [
- "2013-11-06T06:42:54.709099Z",
- "LE07_L2SP_161028_20131106_02_T1"
- ],
- [
- "2013-11-06T06:43:18.594069Z",
- "LE07_L2SP_161029_20131106_02_T1"
- ],
- [
- "2013-11-07T06:42:20.762995Z",
- "LC08_L2SP_160028_20131107_02_T1"
- ],
- [
- "2013-11-07T06:42:44.641324Z",
- "LC08_L2SP_160029_20131107_02_T1"
- ],
- [
- "2013-11-14T06:48:53.227130Z",
- "LC08_L2SP_161029_20131114_02_T1"
- ],
- [
- "2013-11-22T06:42:59.046886Z",
- "LE07_L2SP_161028_20131122_02_T1"
- ],
- [
- "2013-11-22T06:43:22.934052Z",
- "LE07_L2SP_161029_20131122_02_T1"
- ],
- [
- "2014-01-26T06:41:42.942391Z",
- "LC08_L2SP_160028_20140126_02_T1"
- ],
- [
- "2014-02-03T06:37:29.523464Z",
- "LE07_L2SP_160028_20140203_02_T1"
- ],
- [
- "2014-02-03T06:37:53.405380Z",
- "LE07_L2SP_160029_20140203_02_T1"
- ],
- [
- "2014-02-11T06:41:29.420985Z",
- "LC08_L2SP_160028_20140211_02_T1"
- ],
- [
- "2014-02-11T06:41:53.307786Z",
- "LC08_L2SP_160029_20140211_02_T1"
- ],
- [
- "2014-02-18T06:47:36.101874Z",
- "LC08_L2SP_161028_20140218_02_T1"
- ],
- [
- "2014-02-19T06:37:17.334208Z",
- "LE07_L2SP_160028_20140219_02_T2"
- ],
- [
- "2014-02-26T06:43:29.491042Z",
- "LE07_L2SP_161028_20140226_02_T1"
- ],
- [
- "2014-02-26T06:43:53.374788Z",
- "LE07_L2SP_161029_20140226_02_T1"
- ],
- [
- "2014-02-27T06:41:16.767381Z",
- "LC08_L2SP_160028_20140227_02_T1"
- ],
- [
- "2014-02-27T06:41:40.641474Z",
- "LC08_L2SP_160029_20140227_02_T1"
- ],
- [
- "2014-04-16T06:40:32.410941Z",
- "LC08_L2SP_160028_20140416_02_T1"
- ],
- [
- "2014-05-01T06:43:59.874738Z",
- "LE07_L2SP_161028_20140501_02_T1"
- ],
- [
- "2014-05-10T06:37:51.993485Z",
- "LE07_L2SP_160028_20140510_02_T1"
- ],
- [
- "2014-05-10T06:38:15.876854Z",
- "LE07_L2SP_160029_20140510_02_T1"
- ],
- [
- "2014-05-17T06:44:06.924837Z",
- "LE07_L2SP_161028_20140517_02_T1"
- ],
- [
- "2014-05-17T06:44:30.807591Z",
- "LE07_L2SP_161029_20140517_02_T1"
- ],
- [
- "2014-05-18T06:40:07.198609Z",
- "LC08_L2SP_160028_20140518_02_T1"
- ],
- [
- "2014-05-18T06:40:31.089646Z",
- "LC08_L2SP_160029_20140518_02_T1"
- ],
- [
- "2014-05-26T06:37:57.899239Z",
- "LE07_L2SP_160028_20140526_02_T1"
- ],
- [
- "2014-06-02T06:44:10.369173Z",
- "LE07_L2SP_161028_20140602_02_T1"
- ],
- [
- "2014-06-02T06:44:34.251085Z",
- "LE07_L2SP_161029_20140602_02_T1"
- ],
- [
- "2014-06-03T06:40:13.420466Z",
- "LC08_L2SP_160028_20140603_02_T1"
- ],
- [
- "2014-06-03T06:40:37.303031Z",
- "LC08_L2SP_160029_20140603_02_T1"
- ],
- [
- "2014-06-19T06:40:18.719370Z",
- "LC08_L2SP_160028_20140619_02_T1"
- ],
- [
- "2014-06-19T06:40:42.606171Z",
- "LC08_L2SP_160029_20140619_02_T1"
- ],
- [
- "2014-07-04T06:44:17.611210Z",
- "LE07_L2SP_161028_20140704_02_T1"
- ],
- [
- "2014-07-04T06:44:41.495034Z",
- "LE07_L2SP_161029_20140704_02_T1"
- ],
- [
- "2014-07-05T06:40:24.687899Z",
- "LC08_L2SP_160028_20140705_02_T1"
- ],
- [
- "2014-07-05T06:40:48.574700Z",
- "LC08_L2SP_160029_20140705_02_T1"
- ],
- [
- "2014-07-12T06:46:38.401537Z",
- "LC08_L2SP_161028_20140712_02_T1"
- ],
- [
- "2014-07-12T06:47:02.292574Z",
- "LC08_L2SP_161029_20140712_02_T1"
- ],
- [
- "2014-07-21T06:40:28.386925Z",
- "LC08_L2SP_160028_20140721_02_T1"
- ],
- [
- "2014-07-21T06:40:52.277962Z",
- "LC08_L2SP_160029_20140721_02_T1"
- ],
- [
- "2014-07-28T06:46:41.948647Z",
- "LC08_L2SP_161028_20140728_02_T1"
- ],
- [
- "2014-07-28T06:47:05.839684Z",
- "LC08_L2SP_161029_20140728_02_T1"
- ],
- [
- "2014-08-06T06:41:00.757233Z",
- "LC08_L2SP_160029_20140806_02_T1"
- ],
- [
- "2014-08-13T06:46:50.038425Z",
- "LC08_L2SP_161028_20140813_02_T1"
- ],
- [
- "2014-08-13T06:47:13.925226Z",
- "LC08_L2SP_161029_20140813_02_T1"
- ],
- [
- "2014-08-22T06:40:40.575839Z",
- "LC08_L2SP_160028_20140822_02_T1"
- ],
- [
- "2014-08-22T06:41:04.458404Z",
- "LC08_L2SP_160029_20140822_02_T1"
- ],
- [
- "2014-08-29T06:46:51.177074Z",
- "LC08_L2SP_161028_20140829_02_T1"
- ],
- [
- "2014-08-29T06:47:15.063875Z",
- "LC08_L2SP_161029_20140829_02_T1"
- ],
- [
- "2014-09-07T06:40:44.023339Z",
- "LC08_L2SP_160028_20140907_02_T1"
- ],
- [
- "2014-09-07T06:41:07.914376Z",
- "LC08_L2SP_160029_20140907_02_T1"
- ],
- [
- "2014-09-15T06:38:15.614750Z",
- "LE07_L2SP_160028_20140915_02_T1"
- ],
- [
- "2014-09-15T06:38:39.497986Z",
- "LE07_L2SP_160029_20140915_02_T1"
- ],
- [
- "2014-09-23T06:40:41.205993Z",
- "LC08_L2SP_160028_20140923_02_T1"
- ],
- [
- "2014-10-01T06:38:27.595103Z",
- "LE07_L2SP_160028_20141001_02_T2"
- ],
- [
- "2014-10-09T06:40:47.759710Z",
- "LC08_L2SP_160028_20141009_02_T1"
- ],
- [
- "2014-10-09T06:41:11.642275Z",
- "LC08_L2SP_160029_20141009_02_T1"
- ],
- [
- "2014-10-16T06:47:00.708056Z",
- "LC08_L2SP_161028_20141016_02_T1"
- ],
- [
- "2014-11-01T06:46:57.604055Z",
- "LC08_L2SP_161028_20141101_02_T1"
- ],
- [
- "2014-11-01T06:47:21.486620Z",
- "LC08_L2SP_161029_20141101_02_T1"
- ],
- [
- "2014-11-09T06:45:25.367769Z",
- "LE07_L2SP_161029_20141109_02_T1"
- ],
- [
- "2014-11-10T06:41:13.877095Z",
- "LC08_L2SP_160029_20141110_02_T1"
- ],
- [
- "2014-11-25T06:45:04.428173Z",
- "LE07_L2SP_161028_20141125_02_T1"
- ],
- [
- "2014-11-25T06:45:28.313140Z",
- "LE07_L2SP_161029_20141125_02_T1"
- ],
- [
- "2014-11-26T06:40:47.328522Z",
- "LC08_L2SP_160028_20141126_02_T1"
- ],
- [
- "2014-11-26T06:41:11.219559Z",
- "LC08_L2SP_160029_20141126_02_T1"
- ],
- [
- "2014-12-11T06:45:11.735921Z",
- "LE07_L2SP_161028_20141211_02_T1"
- ],
- [
- "2014-12-12T06:40:40.240366Z",
- "LC08_L2SP_160028_20141212_02_T1"
- ],
- [
- "2014-12-12T06:41:04.127167Z",
- "LC08_L2SP_160029_20141212_02_T1"
- ],
- [
- "2014-12-19T06:46:54.248743Z",
- "LC08_L2SP_161028_20141219_02_T1"
- ],
- [
- "2015-01-28T06:45:25.182334Z",
- "LE07_L2SP_161028_20150128_02_T1"
- ],
- [
- "2015-01-28T06:45:49.065085Z",
- "LE07_L2SP_161029_20150128_02_T1"
- ],
- [
- "2015-01-29T06:40:33.208528Z",
- "LC08_L2SP_160028_20150129_02_T1"
- ],
- [
- "2015-02-13T06:45:25.661257Z",
- "LE07_L2SP_161028_20150213_02_T1"
- ],
- [
- "2015-02-21T06:46:35.429389Z",
- "LC08_L2SP_161028_20150221_02_T1"
- ],
- [
- "2015-02-21T06:46:59.311954Z",
- "LC08_L2SP_161029_20150221_02_T1"
- ],
- [
- "2015-02-22T06:39:23.627900Z",
- "LE07_L2SP_160028_20150222_02_T1"
- ],
- [
- "2015-03-01T06:45:38.503800Z",
- "LE07_L2SP_161028_20150301_02_T1"
- ],
- [
- "2015-03-18T06:40:11.059732Z",
- "LC08_L2SP_160028_20150318_02_T1"
- ],
- [
- "2015-03-25T06:46:18.018584Z",
- "LC08_L2SP_161028_20150325_02_T1"
- ],
- [
- "2015-03-25T06:46:41.901149Z",
- "LC08_L2SP_161029_20150325_02_T1"
- ],
- [
- "2015-03-26T06:39:38.931319Z",
- "LE07_L2SP_160028_20150326_02_T1"
- ],
- [
- "2015-03-26T06:40:02.815739Z",
- "LE07_L2SP_160029_20150326_02_T1"
- ],
- [
- "2015-04-02T06:45:51.666436Z",
- "LE07_L2SP_161028_20150402_02_T1"
- ],
- [
- "2015-04-27T06:39:52.796326Z",
- "LE07_L2SP_160028_20150427_02_T1"
- ],
- [
- "2015-04-27T06:40:16.680020Z",
- "LE07_L2SP_160029_20150427_02_T1"
- ],
- [
- "2015-05-20T06:46:38.087848Z",
- "LE07_L2SP_161029_20150520_02_T1"
- ],
- [
- "2015-05-28T06:45:50.937925Z",
- "LC08_L2SP_161028_20150528_02_T1"
- ],
- [
- "2015-05-28T06:46:14.820490Z",
- "LC08_L2SP_161029_20150528_02_T1"
- ],
- [
- "2015-05-29T06:40:05.072298Z",
- "LE07_L2SP_160028_20150529_02_T1"
- ],
- [
- "2015-06-05T06:46:44.024393Z",
- "LE07_L2SP_161029_20150605_02_T1"
- ],
- [
- "2015-06-06T06:39:47.455425Z",
- "LC08_L2SP_160028_20150606_02_T1"
- ],
- [
- "2015-06-06T06:40:11.342226Z",
- "LC08_L2SP_160029_20150606_02_T1"
- ],
- [
- "2015-06-13T06:46:26.818344Z",
- "LC08_L2SP_161029_20150613_02_T1"
- ],
- [
- "2015-06-14T06:40:12.432516Z",
- "LE07_L2SP_160028_20150614_02_T1"
- ],
- [
- "2015-06-14T06:40:36.315365Z",
- "LE07_L2SP_160029_20150614_02_T1"
- ],
- [
- "2015-06-21T06:46:23.313157Z",
- "LE07_L2SP_161028_20150621_02_T1"
- ],
- [
- "2015-06-21T06:46:47.196210Z",
- "LE07_L2SP_161029_20150621_02_T1"
- ],
- [
- "2015-06-22T06:39:54.921475Z",
- "LC08_L2SP_160028_20150622_02_T1"
- ],
- [
- "2015-06-22T06:40:18.808276Z",
- "LC08_L2SP_160029_20150622_02_T1"
- ],
- [
- "2015-06-29T06:46:09.241259Z",
- "LC08_L2SP_161028_20150629_02_T1"
- ],
- [
- "2015-06-29T06:46:33.123824Z",
- "LC08_L2SP_161029_20150629_02_T1"
- ],
- [
- "2015-06-30T06:40:14.754776Z",
- "LE07_L2SP_160028_20150630_02_T1"
- ],
- [
- "2015-06-30T06:40:38.638631Z",
- "LE07_L2SP_160029_20150630_02_T1"
- ],
- [
- "2015-07-08T06:40:28.717906Z",
- "LC08_L2SP_160029_20150708_02_T1"
- ],
- [
- "2015-07-15T06:46:43.407174Z",
- "LC08_L2SP_161029_20150715_02_T1"
- ],
- [
- "2015-07-16T06:40:20.321712Z",
- "LE07_L2SP_160028_20150716_02_T1"
- ],
- [
- "2015-07-16T06:40:44.205852Z",
- "LE07_L2SP_160029_20150716_02_T1"
- ],
- [
- "2015-07-23T06:46:31.822267Z",
- "LE07_L2SP_161028_20150723_02_T2"
- ],
- [
- "2015-07-23T06:46:55.706729Z",
- "LE07_L2SP_161029_20150723_02_T2"
- ],
- [
- "2015-07-24T06:40:11.647183Z",
- "LC08_L2SP_160028_20150724_02_T1"
- ],
- [
- "2015-07-24T06:40:35.533984Z",
- "LC08_L2SP_160029_20150724_02_T1"
- ],
- [
- "2015-07-31T06:46:23.749455Z",
- "LC08_L2SP_161028_20150731_02_T1"
- ],
- [
- "2015-07-31T06:46:47.632021Z",
- "LC08_L2SP_161029_20150731_02_T1"
- ],
- [
- "2015-08-01T06:40:22.679324Z",
- "LE07_L2SP_160028_20150801_02_T1"
- ],
- [
- "2015-08-01T06:40:46.563462Z",
- "LE07_L2SP_160029_20150801_02_T1"
- ],
- [
- "2015-08-08T06:46:35.867687Z",
- "LE07_L2SP_161028_20150808_02_T1"
- ],
- [
- "2015-08-08T06:46:59.752114Z",
- "LE07_L2SP_161029_20150808_02_T1"
- ],
- [
- "2015-08-16T06:46:29.861788Z",
- "LC08_L2SP_161028_20150816_02_T1"
- ],
- [
- "2015-08-16T06:46:53.744353Z",
- "LC08_L2SP_161029_20150816_02_T1"
- ],
- [
- "2015-08-17T06:40:26.638677Z",
- "LE07_L2SP_160028_20150817_02_T1"
- ],
- [
- "2015-08-17T06:40:50.522517Z",
- "LE07_L2SP_160029_20150817_02_T1"
- ],
- [
- "2015-08-24T06:47:01.490700Z",
- "LE07_L2SP_161029_20150824_02_T1"
- ],
- [
- "2015-09-09T06:46:40.353289Z",
- "LE07_L2SP_161028_20150909_02_T1"
- ],
- [
- "2015-09-09T06:47:04.236485Z",
- "LE07_L2SP_161029_20150909_02_T1"
- ],
- [
- "2015-09-10T06:40:29.103948Z",
- "LC08_L2SP_160028_20150910_02_T1"
- ],
- [
- "2015-09-10T06:40:52.990749Z",
- "LC08_L2SP_160029_20150910_02_T1"
- ],
- [
- "2015-09-26T06:40:35.833577Z",
- "LC08_L2SP_160028_20150926_02_T1"
- ],
- [
- "2015-09-26T06:40:59.720378Z",
- "LC08_L2SP_160029_20150926_02_T1"
- ],
- [
- "2016-02-09T06:42:51.200027Z",
- "LE07_L2SP_160029_20160209_02_T1"
- ],
- [
- "2016-02-16T06:48:39.194747Z",
- "LE07_L2SP_161028_20160216_02_T1"
- ],
- [
- "2016-02-17T06:40:30.322575Z",
- "LC08_L2SP_160028_20160217_02_T1"
- ],
- [
- "2016-02-17T06:40:54.205140Z",
- "LC08_L2SP_160029_20160217_02_T1"
- ],
- [
- "2016-03-03T06:48:45.468975Z",
- "LE07_L2SP_161028_20160303_02_T1"
- ],
- [
- "2016-03-04T06:40:29.169092Z",
- "LC08_L2SP_160028_20160304_02_T1"
- ],
- [
- "2016-03-27T06:46:29.226888Z",
- "LC08_L2SP_161028_20160327_02_T1"
- ],
- [
- "2016-04-12T06:46:23.087327Z",
- "LC08_L2SP_161028_20160412_02_T1"
- ],
- [
- "2016-04-13T06:42:50.863741Z",
- "LE07_L2SP_160028_20160413_02_T1"
- ],
- [
- "2016-05-07T06:40:11.261548Z",
- "LC08_L2SP_160028_20160507_02_T1"
- ],
- [
- "2016-05-23T06:40:12.676383Z",
- "LC08_L2SP_160028_20160523_02_T1"
- ],
- [
- "2016-05-23T06:40:36.563185Z",
- "LC08_L2SP_160029_20160523_02_T1"
- ],
- [
- "2016-05-30T06:46:25.890572Z",
- "LC08_L2SP_161028_20160530_02_T1"
- ],
- [
- "2016-05-30T06:46:49.773138Z",
- "LC08_L2SP_161029_20160530_02_T1"
- ],
- [
- "2016-06-16T06:43:09.086614Z",
- "LE07_L2SP_160028_20160616_02_T1"
- ],
- [
- "2016-06-16T06:43:32.970401Z",
- "LE07_L2SP_160029_20160616_02_T1"
- ],
- [
- "2016-06-23T06:49:44.361136Z",
- "LE07_L2SP_161029_20160623_02_T1"
- ],
- [
- "2016-06-24T06:40:22.712089Z",
- "LC08_L2SP_160028_20160624_02_T1"
- ],
- [
- "2016-06-24T06:40:46.598891Z",
- "LC08_L2SP_160029_20160624_02_T1"
- ],
- [
- "2016-07-01T06:46:37.524309Z",
- "LC08_L2SP_161028_20160701_02_T1"
- ],
- [
- "2016-07-01T06:47:01.411111Z",
- "LC08_L2SP_161029_20160701_02_T1"
- ],
- [
- "2016-07-09T06:49:20.000345Z",
- "LE07_L2SP_161028_20160709_02_T1"
- ],
- [
- "2016-07-17T06:46:44.492950Z",
- "LC08_L2SP_161028_20160717_02_T1"
- ],
- [
- "2016-07-17T06:47:08.375516Z",
- "LC08_L2SP_161029_20160717_02_T1"
- ],
- [
- "2016-08-02T06:46:47.918000Z",
- "LC08_L2SP_161028_20160802_02_T1"
- ],
- [
- "2016-08-02T06:47:11.809038Z",
- "LC08_L2SP_161029_20160802_02_T1"
- ],
- [
- "2016-08-03T06:43:12.854025Z",
- "LE07_L2SP_160028_20160803_02_T1"
- ],
- [
- "2016-08-03T06:43:36.738621Z",
- "LE07_L2SP_160029_20160803_02_T1"
- ],
- [
- "2016-08-10T06:49:24.042653Z",
- "LE07_L2SP_161028_20160810_02_T1"
- ],
- [
- "2016-08-10T06:49:47.926173Z",
- "LE07_L2SP_161029_20160810_02_T1"
- ],
- [
- "2016-08-11T06:40:37.690517Z",
- "LC08_L2SP_160028_20160811_02_T1"
- ],
- [
- "2016-08-11T06:41:01.577319Z",
- "LC08_L2SP_160029_20160811_02_T1"
- ],
- [
- "2016-08-18T06:46:52.098942Z",
- "LC08_L2SP_161028_20160818_02_T1"
- ],
- [
- "2016-08-18T06:47:15.989980Z",
- "LC08_L2SP_161029_20160818_02_T1"
- ],
- [
- "2016-08-26T06:49:26.726672Z",
- "LE07_L2SP_161028_20160826_02_T1"
- ],
- [
- "2016-08-26T06:49:50.609119Z",
- "LE07_L2SP_161029_20160826_02_T1"
- ],
- [
- "2016-09-03T06:47:22.338455Z",
- "LC08_L2SP_161029_20160903_02_T1"
- ],
- [
- "2016-09-04T06:43:17.755293Z",
- "LE07_L2SP_160028_20160904_02_T1"
- ],
- [
- "2016-09-04T06:43:41.637351Z",
- "LE07_L2SP_160029_20160904_02_T1"
- ],
- [
- "2016-09-19T06:47:00.835758Z",
- "LC08_L2SP_161028_20160919_02_T1"
- ],
- [
- "2016-09-19T06:47:24.726795Z",
- "LC08_L2SP_161029_20160919_02_T1"
- ],
- [
- "2016-09-28T06:40:49.602297Z",
- "LC08_L2SP_160028_20160928_02_T1"
- ],
- [
- "2016-10-05T06:47:02.986101Z",
- "LC08_L2SP_161028_20161005_02_T1"
- ],
- [
- "2016-10-05T06:47:26.868667Z",
- "LC08_L2SP_161029_20161005_02_T1"
- ],
- [
- "2016-10-06T06:43:21.324835Z",
- "LE07_L2SP_160028_20161006_02_T1"
- ],
- [
- "2016-10-06T06:43:45.208190Z",
- "LE07_L2SP_160029_20161006_02_T1"
- ],
- [
- "2016-10-30T06:41:20.807914Z",
- "LC08_L2SP_160029_20161030_02_T1"
- ],
- [
- "2016-11-07T06:43:36.507852Z",
- "LE07_L2SP_160029_20161107_02_T1"
- ],
- [
- "2016-11-23T06:43:07.487733Z",
- "LE07_L2SP_160028_20161123_02_T1"
- ],
- [
- "2016-11-23T06:43:31.372734Z",
- "LE07_L2SP_160029_20161123_02_T1"
- ],
- [
- "2016-11-30T06:49:41.242428Z",
- "LE07_L2SP_161029_20161130_02_T1"
- ],
- [
- "2016-12-24T06:47:24.757676Z",
- "LC08_L2SP_161029_20161224_02_T1"
- ],
- [
- "2017-01-17T06:48:53.970389Z",
- "LE07_L2SP_161028_20170117_02_T1"
- ],
- [
- "2017-02-10T06:46:44.195668Z",
- "LC08_L2SP_161028_20170210_02_T1"
- ],
- [
- "2017-02-10T06:47:08.082471Z",
- "LC08_L2SP_161029_20170210_02_T1"
- ],
- [
- "2017-02-11T06:42:30.536680Z",
- "LE07_L2SP_160028_20170211_02_T1"
- ],
- [
- "2017-02-11T06:42:54.421115Z",
- "LE07_L2SP_160029_20170211_02_T1"
- ],
- [
- "2017-02-18T06:49:09.553476Z",
- "LE07_L2SP_161029_20170218_02_T1"
- ],
- [
- "2017-02-26T06:47:03.202630Z",
- "LC08_L2SP_161029_20170226_02_T1"
- ],
- [
- "2017-02-27T06:43:03.647888Z",
- "LE07_L2SP_160029_20170227_02_T1"
- ],
- [
- "2017-03-06T06:48:53.743789Z",
- "LE07_L2SP_161028_20170306_02_T1"
- ],
- [
- "2017-03-06T06:49:17.629012Z",
- "LE07_L2SP_161029_20170306_02_T1"
- ],
- [
- "2017-03-07T06:40:24.123549Z",
- "LC08_L2SP_160028_20170307_02_T1"
- ],
- [
- "2017-03-07T06:40:48.001879Z",
- "LC08_L2SP_160029_20170307_02_T1"
- ],
- [
- "2017-03-14T06:46:30.768495Z",
- "LC08_L2SP_161028_20170314_02_T1"
- ],
- [
- "2017-03-14T06:46:54.651060Z",
- "LC08_L2SP_161029_20170314_02_T1"
- ],
- [
- "2017-03-31T06:42:50.485273Z",
- "LE07_L2SP_160028_20170331_02_T1"
- ],
- [
- "2017-04-08T06:40:07.167220Z",
- "LC08_L2SP_160028_20170408_02_T1"
- ],
- [
- "2017-04-23T06:49:10.789456Z",
- "LE07_L2SP_161028_20170423_02_T1"
- ],
- [
- "2017-05-02T06:43:02.651582Z",
- "LE07_L2SP_160028_20170502_02_T1"
- ],
- [
- "2017-05-10T06:40:21.914107Z",
- "LC08_L2SP_160029_20170510_02_T1"
- ],
- [
- "2017-06-10T06:49:22.513045Z",
- "LE07_L2SP_161028_20170610_02_T1"
- ],
- [
- "2017-06-18T06:46:53.913244Z",
- "LC08_L2SP_161029_20170618_02_T1"
- ],
- [
- "2017-06-19T06:43:37.423482Z",
- "LE07_L2SP_160029_20170619_02_T1"
- ],
- [
- "2017-06-27T06:40:21.739665Z",
- "LC08_L2SP_160028_20170627_02_T1"
- ],
- [
- "2017-06-27T06:40:45.622232Z",
- "LC08_L2SP_160029_20170627_02_T1"
- ],
- [
- "2017-07-04T06:46:33.942849Z",
- "LC08_L2SP_161028_20170704_02_T1"
- ],
- [
- "2017-07-04T06:46:57.833887Z",
- "LC08_L2SP_161029_20170704_02_T1"
- ],
- [
- "2017-07-05T06:43:15.316294Z",
- "LE07_L2SP_160028_20170705_02_T1"
- ],
- [
- "2017-07-05T06:43:39.200844Z",
- "LE07_L2SP_160029_20170705_02_T1"
- ],
- [
- "2017-07-21T06:43:15.285445Z",
- "LE07_L2SP_160028_20170721_02_T1"
- ],
- [
- "2017-07-21T06:43:39.169601Z",
- "LE07_L2SP_160029_20170721_02_T1"
- ],
- [
- "2017-07-28T06:49:25.481937Z",
- "LE07_L2SP_161028_20170728_02_T1"
- ],
- [
- "2017-07-28T06:49:49.365583Z",
- "LE07_L2SP_161029_20170728_02_T1"
- ],
- [
- "2017-07-29T06:40:32.438037Z",
- "LC08_L2SP_160028_20170729_02_T1"
- ],
- [
- "2017-07-29T06:40:56.320604Z",
- "LC08_L2SP_160029_20170729_02_T1"
- ],
- [
- "2017-08-05T06:46:46.178826Z",
- "LC08_L2SP_161028_20170805_02_T1"
- ],
- [
- "2017-08-05T06:47:10.065629Z",
- "LC08_L2SP_161029_20170805_02_T1"
- ],
- [
- "2017-08-06T06:43:13.406378Z",
- "LE07_L2SP_160028_20170806_02_T1"
- ],
- [
- "2017-08-06T06:43:37.289495Z",
- "LE07_L2SP_160029_20170806_02_T1"
- ],
- [
- "2017-08-13T06:49:46.728773Z",
- "LE07_L2SP_161029_20170813_02_T1"
- ],
- [
- "2017-08-21T06:46:51.146749Z",
- "LC08_L2SP_161028_20170821_02_T1"
- ],
- [
- "2017-08-21T06:47:15.029315Z",
- "LC08_L2SP_161029_20170821_02_T1"
- ],
- [
- "2017-08-29T06:49:23.536122Z",
- "LE07_L2SP_161028_20170829_02_T1"
- ],
- [
- "2017-08-29T06:49:47.418535Z",
- "LE07_L2SP_161029_20170829_02_T1"
- ],
- [
- "2017-08-30T06:40:41.912850Z",
- "LC08_L2SP_160028_20170830_02_T1"
- ],
- [
- "2017-08-30T06:41:05.799652Z",
- "LC08_L2SP_160029_20170830_02_T1"
- ],
- [
- "2017-09-06T06:46:53.333436Z",
- "LC08_L2SP_161028_20170906_02_T1"
- ],
- [
- "2017-09-06T06:47:17.220238Z",
- "LC08_L2SP_161029_20170906_02_T1"
- ],
- [
- "2017-09-07T06:43:12.224406Z",
- "LE07_L2SP_160028_20170907_02_T1"
- ],
- [
- "2017-09-07T06:43:36.107207Z",
- "LE07_L2SP_160029_20170907_02_T1"
- ],
- [
- "2017-09-14T06:49:21.807028Z",
- "LE07_L2SP_161028_20170914_02_T1"
- ],
- [
- "2017-09-14T06:49:45.690038Z",
- "LE07_L2SP_161029_20170914_02_T1"
- ],
- [
- "2017-09-15T06:40:42.489875Z",
- "LC08_L2SP_160028_20170915_02_T1"
- ],
- [
- "2017-09-15T06:41:06.372440Z",
- "LC08_L2SP_160029_20170915_02_T1"
- ],
- [
- "2017-09-22T06:46:57.016485Z",
- "LC08_L2SP_161028_20170922_02_T1"
- ],
- [
- "2017-09-22T06:47:20.907524Z",
- "LC08_L2SP_161029_20170922_02_T1"
- ],
- [
- "2017-09-23T06:43:10.763591Z",
- "LE07_L2SP_160028_20170923_02_T1"
- ],
- [
- "2017-10-08T06:47:02.867963Z",
- "LC08_L2SP_161028_20171008_02_T1"
- ],
- [
- "2017-10-08T06:47:26.754766Z",
- "LC08_L2SP_161029_20171008_02_T1"
- ],
- [
- "2017-10-09T06:43:12.863382Z",
- "LE07_L2SP_160028_20171009_02_T1"
- ],
- [
- "2017-10-24T06:47:28.844579Z",
- "LC08_L2SP_161029_20171024_02_T1"
- ],
- [
- "2017-10-25T06:43:14.289642Z",
- "LE07_L2SP_160028_20171025_02_T1"
- ],
- [
- "2017-10-25T06:43:38.174540Z",
- "LE07_L2SP_160029_20171025_02_T1"
- ],
- [
- "2017-11-10T06:43:12.586346Z",
- "LE07_L2SP_160028_20171110_02_T1"
- ],
- [
- "2017-11-10T06:43:36.470780Z",
- "LE07_L2SP_160029_20171110_02_T1"
- ],
- [
- "2017-11-18T06:41:13.582845Z",
- "LC08_L2SP_160029_20171118_02_T1"
- ],
- [
- "2017-12-19T06:49:29.957824Z",
- "LE07_L2SP_161029_20171219_02_T1"
- ],
- [
- "2017-12-20T06:40:47.716289Z",
- "LC08_L2SP_160028_20171220_02_T1"
- ],
- [
- "2017-12-20T06:41:11.603092Z",
- "LC08_L2SP_160029_20171220_02_T1"
- ],
- [
- "2017-12-28T06:43:12.710419Z",
- "LE07_L2SP_160029_20171228_02_T1"
- ],
- [
- "2018-01-04T06:48:54.121009Z",
- "LE07_L2SP_161028_20180104_02_T1"
- ],
- [
- "2018-01-04T06:49:18.003574Z",
- "LE07_L2SP_161029_20180104_02_T1"
- ],
- [
- "2018-01-20T06:49:03.823036Z",
- "LE07_L2SP_161029_20180120_02_T1"
- ],
- [
- "2018-01-28T06:46:42.157797Z",
- "LC08_L2SP_161028_20180128_02_T1"
- ],
- [
- "2018-01-28T06:47:06.040364Z",
- "LC08_L2SP_161029_20180128_02_T1"
- ],
- [
- "2018-01-29T06:42:20.257877Z",
- "LE07_L2SP_160028_20180129_02_T1"
- ],
- [
- "2018-01-29T06:42:44.142024Z",
- "LE07_L2SP_160029_20180129_02_T1"
- ],
- [
- "2018-02-06T06:40:27.184795Z",
- "LC08_L2SP_160028_20180206_02_T1"
- ],
- [
- "2018-02-06T06:40:51.071597Z",
- "LC08_L2SP_160029_20180206_02_T1"
- ],
- [
- "2018-02-14T06:42:07.361690Z",
- "LE07_L2SP_160028_20180214_02_T1"
- ],
- [
- "2018-02-14T06:42:31.246445Z",
- "LE07_L2SP_160029_20180214_02_T1"
- ],
- [
- "2018-02-21T06:48:14.072939Z",
- "LE07_L2SP_161028_20180221_02_T1"
- ],
- [
- "2018-02-21T06:48:37.957582Z",
- "LE07_L2SP_161029_20180221_02_T1"
- ],
- [
- "2018-03-02T06:41:57.477024Z",
- "LE07_L2SP_160028_20180302_02_T1"
- ],
- [
- "2018-04-02T06:46:13.069586Z",
- "LC08_L2SP_161028_20180402_02_T1"
- ],
- [
- "2018-04-02T06:46:36.956389Z",
- "LC08_L2SP_161029_20180402_02_T1"
- ],
- [
- "2018-04-11T06:39:57.287176Z",
- "LC08_L2SP_160028_20180411_02_T1"
- ],
- [
- "2018-05-04T06:45:54.961318Z",
- "LC08_L2SP_161028_20180504_02_T1"
- ],
- [
- "2018-05-04T06:46:18.843884Z",
- "LC08_L2SP_161029_20180504_02_T1"
- ],
- [
- "2018-05-05T06:40:58.607685Z",
- "LE07_L2SP_160028_20180505_02_T1"
- ],
- [
- "2018-05-05T06:41:22.489984Z",
- "LE07_L2SP_160029_20180505_02_T1"
- ],
- [
- "2018-05-13T06:39:38.251206Z",
- "LC08_L2SP_160028_20180513_02_T1"
- ],
- [
- "2018-05-20T06:45:43.828748Z",
- "LC08_L2SP_161028_20180520_02_T1"
- ],
- [
- "2018-05-20T06:46:07.707080Z",
- "LC08_L2SP_161029_20180520_02_T1"
- ],
- [
- "2018-05-21T06:40:43.565818Z",
- "LE07_L2SP_160028_20180521_02_T1"
- ],
- [
- "2018-05-21T06:41:07.449586Z",
- "LE07_L2SP_160029_20180521_02_T1"
- ],
- [
- "2018-06-05T06:45:33.103776Z",
- "LC08_L2SP_161028_20180605_02_T1"
- ],
- [
- "2018-06-05T06:45:56.986343Z",
- "LC08_L2SP_161029_20180605_02_T1"
- ],
- [
- "2018-06-14T06:39:28.615247Z",
- "LC08_L2SP_160028_20180614_02_T1"
- ],
- [
- "2018-06-14T06:39:52.506286Z",
- "LC08_L2SP_160029_20180614_02_T1"
- ],
- [
- "2018-06-21T06:45:44.140566Z",
- "LC08_L2SP_161028_20180621_02_T1"
- ],
- [
- "2018-06-29T06:46:36.683909Z",
- "LE07_L2SP_161029_20180629_02_T1"
- ],
- [
- "2018-06-30T06:39:38.683105Z",
- "LC08_L2SP_160028_20180630_02_T1"
- ],
- [
- "2018-06-30T06:40:02.569908Z",
- "LC08_L2SP_160029_20180630_02_T1"
- ],
- [
- "2018-07-07T06:46:17.003188Z",
- "LC08_L2SP_161029_20180707_02_T1"
- ],
- [
- "2018-07-08T06:39:50.809363Z",
- "LE07_L2SP_160028_20180708_02_T1"
- ],
- [
- "2018-07-16T06:39:46.383988Z",
- "LC08_L2SP_160028_20180716_02_T1"
- ],
- [
- "2018-07-16T06:40:10.266555Z",
- "LC08_L2SP_160029_20180716_02_T1"
- ],
- [
- "2018-07-23T06:45:59.825991Z",
- "LC08_L2SP_161028_20180723_02_T1"
- ],
- [
- "2018-07-24T06:39:34.177860Z",
- "LE07_L2SP_160028_20180724_02_T1"
- ],
- [
- "2018-07-24T06:39:58.060065Z",
- "LE07_L2SP_160029_20180724_02_T1"
- ],
- [
- "2018-08-01T06:40:17.667684Z",
- "LC08_L2SP_160029_20180801_02_T1"
- ],
- [
- "2018-08-08T06:46:32.672884Z",
- "LC08_L2SP_161029_20180808_02_T1"
- ],
- [
- "2018-08-09T06:39:40.711537Z",
- "LE07_L2SP_160029_20180809_02_T1"
- ],
- [
- "2018-08-16T06:45:19.613363Z",
- "LE07_L2SP_161028_20180816_02_T1"
- ],
- [
- "2018-08-16T06:45:43.495343Z",
- "LE07_L2SP_161029_20180816_02_T1"
- ],
- [
- "2018-08-17T06:40:02.783185Z",
- "LC08_L2SP_160028_20180817_02_T1"
- ],
- [
- "2018-08-17T06:40:26.674224Z",
- "LC08_L2SP_160029_20180817_02_T1"
- ],
- [
- "2018-08-24T06:46:16.856849Z",
- "LC08_L2SP_161028_20180824_02_T1"
- ],
- [
- "2018-08-24T06:46:40.747888Z",
- "LC08_L2SP_161029_20180824_02_T1"
- ],
- [
- "2018-08-25T06:38:58.054163Z",
- "LE07_L2SP_160028_20180825_02_T1"
- ],
- [
- "2018-08-25T06:39:21.936306Z",
- "LE07_L2SP_160029_20180825_02_T1"
- ],
- [
- "2018-09-01T06:45:00.105490Z",
- "LE07_L2SP_161028_20180901_02_T1"
- ],
- [
- "2018-09-02T06:40:09.495191Z",
- "LC08_L2SP_160028_20180902_02_T1"
- ],
- [
- "2018-09-10T06:38:37.629265Z",
- "LE07_L2SP_160028_20180910_02_T1"
- ],
- [
- "2018-09-10T06:39:01.512549Z",
- "LE07_L2SP_160029_20180910_02_T1"
- ],
- [
- "2018-10-03T06:44:16.299763Z",
- "LE07_L2SP_161028_20181003_02_T1"
- ],
- [
- "2018-10-03T06:44:40.184424Z",
- "LE07_L2SP_161029_20181003_02_T1"
- ],
- [
- "2018-10-04T06:40:21.616303Z",
- "LC08_L2SP_160028_20181004_02_T1"
- ],
- [
- "2018-10-04T06:40:45.503106Z",
- "LC08_L2SP_160029_20181004_02_T1"
- ],
- [
- "2018-10-11T06:46:35.538677Z",
- "LC08_L2SP_161028_20181011_02_T1"
- ],
- [
- "2018-10-19T06:44:16.671966Z",
- "LE07_L2SP_161029_20181019_02_T1"
- ],
- [
- "2018-10-20T06:40:27.855860Z",
- "LC08_L2SP_160028_20181020_02_T1"
- ],
- [
- "2018-10-20T06:40:51.742663Z",
- "LC08_L2SP_160029_20181020_02_T1"
- ],
- [
- "2018-10-28T06:37:54.678143Z",
- "LE07_L2SP_160029_20181028_02_T1"
- ],
- [
- "2018-11-04T06:43:56.319815Z",
- "LE07_L2SP_161029_20181104_02_T1"
- ],
- [
- "2018-11-05T06:40:31.373052Z",
- "LC08_L2SP_160028_20181105_02_T1"
- ],
- [
- "2018-11-12T06:46:42.821777Z",
- "LC08_L2SP_161028_20181112_02_T1"
- ],
- [
- "2018-11-13T06:37:09.207398Z",
- "LE07_L2SP_160028_20181113_02_T1"
- ],
- [
- "2018-11-20T06:43:09.851243Z",
- "LE07_L2SP_161028_20181120_02_T1"
- ],
- [
- "2018-11-20T06:43:33.733685Z",
- "LE07_L2SP_161029_20181120_02_T1"
- ],
- [
- "2018-12-22T06:42:18.012176Z",
- "LE07_L2SP_161028_20181222_02_T1"
- ],
- [
- "2018-12-22T06:42:41.894542Z",
- "LE07_L2SP_161029_20181222_02_T1"
- ],
- [
- "2018-12-23T06:40:28.535539Z",
- "LC08_L2SP_160028_20181223_02_T1"
- ],
- [
- "2018-12-23T06:40:52.422341Z",
- "LC08_L2SP_160029_20181223_02_T1"
- ],
- [
- "2019-01-31T06:46:32.869851Z",
- "LC08_L2SP_161028_20190131_02_T1"
- ],
- [
- "2019-02-01T06:34:50.083777Z",
- "LE07_L2SP_160028_20190201_02_T1"
- ],
- [
- "2019-02-01T06:35:13.968585Z",
- "LE07_L2SP_160029_20190201_02_T1"
- ],
- [
- "2019-03-04T06:46:26.647244Z",
- "LC08_L2SP_161028_20190304_02_T1"
- ],
- [
- "2019-05-08T06:31:36.603379Z",
- "LE07_L2SP_160028_20190508_02_T1"
- ],
- [
- "2019-05-08T06:32:00.486705Z",
- "LE07_L2SP_160029_20190508_02_T1"
- ],
- [
- "2019-06-08T06:46:33.514362Z",
- "LC08_L2SP_161028_20190608_02_T1"
- ],
- [
- "2019-06-08T06:46:57.401165Z",
- "LC08_L2SP_161029_20190608_02_T1"
- ],
- [
- "2019-06-09T06:30:49.456877Z",
- "LE07_L2SP_160029_20190609_02_T1"
- ],
- [
- "2019-06-17T06:40:49.971579Z",
- "LC08_L2SP_160029_20190617_02_T1"
- ],
- [
- "2019-06-24T06:46:39.093830Z",
- "LC08_L2SP_161028_20190624_02_T1"
- ],
- [
- "2019-06-24T06:47:02.984869Z",
- "LC08_L2SP_161029_20190624_02_T1"
- ],
- [
- "2019-06-25T06:29:50.277809Z",
- "LE07_L2SP_160028_20190625_02_T1"
- ],
- [
- "2019-06-25T06:30:14.160837Z",
- "LE07_L2SP_160029_20190625_02_T1"
- ],
- [
- "2019-07-19T06:40:33.229039Z",
- "LC08_L2SP_160028_20190719_02_T1"
- ],
- [
- "2019-08-04T06:40:40.269501Z",
- "LC08_L2SP_160028_20190804_02_T1"
- ],
- [
- "2019-08-04T06:41:04.147832Z",
- "LC08_L2SP_160029_20190804_02_T1"
- ],
- [
- "2019-08-19T06:33:49.298897Z",
- "LE07_L2SP_161028_20190819_02_T1"
- ],
- [
- "2019-08-19T06:34:13.181440Z",
- "LE07_L2SP_161029_20190819_02_T1"
- ],
- [
- "2019-08-20T06:40:45.319286Z",
- "LC08_L2SP_160028_20190820_02_T1"
- ],
- [
- "2019-08-20T06:41:09.201853Z",
- "LC08_L2SP_160029_20190820_02_T1"
- ],
- [
- "2019-08-27T06:46:57.731179Z",
- "LC08_L2SP_161028_20190827_02_T1"
- ],
- [
- "2019-08-27T06:47:21.613747Z",
- "LC08_L2SP_161029_20190827_02_T1"
- ],
- [
- "2019-08-28T06:27:15.496203Z",
- "LE07_L2SP_160028_20190828_02_T1"
- ],
- [
- "2019-08-28T06:27:39.379297Z",
- "LE07_L2SP_160029_20190828_02_T1"
- ],
- [
- "2019-09-12T06:47:02.048874Z",
- "LC08_L2SP_161028_20190912_02_T1"
- ],
- [
- "2019-09-12T06:47:25.935676Z",
- "LC08_L2SP_161029_20190912_02_T1"
- ],
- [
- "2019-09-20T06:32:25.589188Z",
- "LE07_L2SP_161028_20190920_02_T1"
- ],
- [
- "2019-09-20T06:32:49.473486Z",
- "LE07_L2SP_161029_20190920_02_T1"
- ],
- [
- "2019-09-21T06:40:54.412611Z",
- "LC08_L2SP_160028_20190921_02_T1"
- ],
- [
- "2019-09-21T06:41:18.295177Z",
- "LC08_L2SP_160029_20190921_02_T1"
- ],
- [
- "2019-10-15T06:25:12.114323Z",
- "LE07_L2SP_160028_20191015_02_T1"
- ],
- [
- "2019-11-08T06:41:22.161868Z",
- "LC08_L2SP_160029_20191108_02_T1"
- ],
- [
- "2020-02-11T06:25:36.125456Z",
- "LE07_L2SP_161028_20200211_02_T1"
- ],
- [
- "2020-02-19T06:46:47.783446Z",
- "LC08_L2SP_161028_20200219_02_T1"
- ],
- [
- "2020-02-19T06:47:11.661778Z",
- "LC08_L2SP_161029_20200219_02_T1"
- ],
- [
- "2020-02-27T06:25:09.629023Z",
- "LE07_L2SP_161029_20200227_02_T1"
- ],
- [
- "2020-02-28T06:40:34.262985Z",
- "LC08_L2SP_160028_20200228_02_T1"
- ],
- [
- "2020-02-28T06:40:58.141317Z",
- "LC08_L2SP_160029_20200228_02_T1"
- ],
- [
- "2020-03-06T06:46:42.395227Z",
- "LC08_L2SP_161028_20200306_02_T1"
- ],
- [
- "2020-03-07T06:18:05.879179Z",
- "LE07_L2SP_160028_20200307_02_T1"
- ],
- [
- "2020-03-14T06:23:53.738684Z",
- "LE07_L2SP_161028_20200314_02_T1"
- ],
- [
- "2020-03-14T06:24:17.619331Z",
- "LE07_L2SP_161029_20200314_02_T1"
- ],
- [
- "2020-03-22T06:46:34.530700Z",
- "LC08_L2SP_161028_20200322_02_T1"
- ],
- [
- "2020-03-22T06:46:58.409032Z",
- "LC08_L2SP_161029_20200322_02_T1"
- ],
- [
- "2020-05-09T06:46:33.980793Z",
- "LC08_L2SP_161029_20200509_02_T1"
- ],
- [
- "2020-05-10T06:14:24.528036Z",
- "LE07_L2SP_160028_20200510_02_T1"
- ],
- [
- "2020-05-10T06:14:48.411843Z",
- "LE07_L2SP_160029_20200510_02_T1"
- ],
- [
- "2020-05-25T06:46:13.718372Z",
- "LC08_L2SP_161028_20200525_02_T1"
- ],
- [
- "2020-05-25T06:46:37.605176Z",
- "LC08_L2SP_161029_20200525_02_T1"
- ],
- [
- "2020-05-26T06:13:24.961934Z",
- "LE07_L2SP_160028_20200526_02_T1"
- ],
- [
- "2020-05-26T06:13:48.845643Z",
- "LE07_L2SP_160029_20200526_02_T1"
- ],
- [
- "2020-06-02T06:19:11.736668Z",
- "LE07_L2SP_161028_20200602_02_T1"
- ],
- [
- "2020-06-03T06:40:07.214619Z",
- "LC08_L2SP_160028_20200603_02_T1"
- ],
- [
- "2020-06-03T06:40:31.105657Z",
- "LC08_L2SP_160029_20200603_02_T1"
- ],
- [
- "2020-06-10T06:46:22.537876Z",
- "LC08_L2SP_161028_20200610_02_T1"
- ],
- [
- "2020-06-10T06:46:46.428915Z",
- "LC08_L2SP_161029_20200610_02_T1"
- ],
- [
- "2020-06-11T06:12:29.796737Z",
- "LE07_L2SP_160028_20200611_02_T1"
- ],
- [
- "2020-06-11T06:12:53.679142Z",
- "LE07_L2SP_160029_20200611_02_T1"
- ],
- [
- "2020-06-18T06:18:16.025461Z",
- "LE07_L2SP_161028_20200618_02_T1"
- ],
- [
- "2020-06-18T06:18:39.907295Z",
- "LE07_L2SP_161029_20200618_02_T1"
- ],
- [
- "2020-06-19T06:40:16.865990Z",
- "LC08_L2SP_160028_20200619_02_T1"
- ],
- [
- "2020-06-19T06:40:40.752793Z",
- "LC08_L2SP_160029_20200619_02_T1"
- ],
- [
- "2020-07-04T06:17:18.841861Z",
- "LE07_L2SP_161028_20200704_02_T1"
- ],
- [
- "2020-07-04T06:17:42.722384Z",
- "LE07_L2SP_161029_20200704_02_T1"
- ],
- [
- "2020-07-05T06:40:48.355087Z",
- "LC08_L2SP_160029_20200705_02_T1"
- ],
- [
- "2020-07-12T06:46:37.966695Z",
- "LC08_L2SP_161028_20200712_02_T1"
- ],
- [
- "2020-07-12T06:47:01.849263Z",
- "LC08_L2SP_161029_20200712_02_T1"
- ],
- [
- "2020-07-13T06:10:35.255505Z",
- "LE07_L2SP_160028_20200713_02_T1"
- ],
- [
- "2020-07-13T06:10:59.136020Z",
- "LE07_L2SP_160029_20200713_02_T1"
- ],
- [
- "2020-07-20T06:16:20.300844Z",
- "LE07_L2SP_161028_20200720_02_T1"
- ],
- [
- "2020-07-20T06:16:44.181682Z",
- "LE07_L2SP_161029_20200720_02_T1"
- ],
- [
- "2020-07-21T06:40:53.957800Z",
- "LC08_L2SP_160029_20200721_02_T1"
- ],
- [
- "2020-07-28T06:46:42.705161Z",
- "LC08_L2SP_161028_20200728_02_T1"
- ],
- [
- "2020-07-28T06:47:06.587729Z",
- "LC08_L2SP_161029_20200728_02_T1"
- ],
- [
- "2020-07-29T06:09:35.970878Z",
- "LE07_L2SP_160028_20200729_02_T1"
- ],
- [
- "2020-07-29T06:09:59.852384Z",
- "LE07_L2SP_160029_20200729_02_T1"
- ],
- [
- "2020-08-05T06:15:44.327290Z",
- "LE07_L2SP_161029_20200805_02_T1"
- ],
- [
- "2020-08-06T06:40:33.682318Z",
- "LC08_L2SP_160028_20200806_02_T1"
- ],
- [
- "2020-08-06T06:40:57.569122Z",
- "LC08_L2SP_160029_20200806_02_T1"
- ],
- [
- "2020-08-13T06:46:46.146234Z",
- "LC08_L2SP_161028_20200813_02_T1"
- ],
- [
- "2020-08-13T06:47:10.033036Z",
- "LC08_L2SP_161029_20200813_02_T1"
- ],
- [
- "2020-08-14T06:08:35.328529Z",
- "LE07_L2SP_160028_20200814_02_T1"
- ],
- [
- "2020-08-14T06:08:59.211418Z",
- "LE07_L2SP_160029_20200814_02_T1"
- ],
- [
- "2020-08-21T06:14:43.087865Z",
- "LE07_L2SP_161029_20200821_02_T1"
- ],
- [
- "2020-08-29T06:46:54.669942Z",
- "LC08_L2SP_161028_20200829_02_T1"
- ],
- [
- "2020-08-29T06:47:18.556744Z",
- "LC08_L2SP_161029_20200829_02_T1"
- ],
- [
- "2020-09-06T06:13:40.512709Z",
- "LE07_L2SP_161029_20200906_02_T1"
- ],
- [
- "2020-09-07T06:41:11.608869Z",
- "LC08_L2SP_160029_20200907_02_T1"
- ],
- [
- "2020-09-14T06:47:01.067003Z",
- "LC08_L2SP_161028_20200914_02_T1"
- ],
- [
- "2020-09-14T06:47:24.953806Z",
- "LC08_L2SP_161029_20200914_02_T1"
- ],
- [
- "2020-09-15T06:06:29.991685Z",
- "LE07_L2SP_160028_20200915_02_T1"
- ],
- [
- "2020-09-15T06:06:53.875649Z",
- "LE07_L2SP_160029_20200915_02_T1"
- ],
- [
- "2020-09-23T06:41:16.811132Z",
- "LC08_L2SP_160029_20200923_02_T1"
- ],
- [
- "2020-10-01T06:05:27.926534Z",
- "LE07_L2SP_160028_20201001_02_T1"
- ],
- [
- "2020-10-09T06:40:55.696063Z",
- "LC08_L2SP_160028_20201009_02_T1"
- ],
- [
- "2020-10-09T06:41:19.587103Z",
- "LC08_L2SP_160029_20201009_02_T1"
- ],
- [
- "2020-10-17T06:04:26.358904Z",
- "LE07_L2SP_160028_20201017_02_T1"
- ],
- [
- "2020-10-17T06:04:50.240317Z",
- "LE07_L2SP_160029_20201017_02_T1"
- ],
- [
- "2020-11-02T06:03:22.706162Z",
- "LE07_L2SP_160028_20201102_02_T1"
- ],
- [
- "2020-11-17T06:47:28.394262Z",
- "LC08_L2SP_161029_20201117_02_T1"
- ],
- [
- "2020-11-18T06:02:16.456558Z",
- "LE07_L2SP_160028_20201118_02_T1"
- ],
- [
- "2020-11-18T06:02:40.337558Z",
- "LE07_L2SP_160029_20201118_02_T1"
- ],
- [
- "2020-12-03T06:47:07.844717Z",
- "LC08_L2SP_161028_20201203_02_T1"
- ],
- [
- "2020-12-04T06:01:31.092113Z",
- "LE07_L2SP_160029_20201204_02_T1"
- ],
- [
- "2020-12-11T06:07:10.448146Z",
- "LE07_L2SP_161029_20201211_02_T1"
- ],
- [
- "2020-12-12T06:40:56.933159Z",
- "LC08_L2SP_160028_20201212_02_T1"
- ],
- [
- "2020-12-12T06:41:20.824199Z",
- "LC08_L2SP_160029_20201212_02_T1"
- ],
- [
- "2020-12-27T06:05:35.503810Z",
- "LE07_L2SP_161028_20201227_02_T1"
- ],
- [
- "2020-12-27T06:05:59.388230Z",
- "LE07_L2SP_161029_20201227_02_T1"
- ],
- [
- "2021-01-05T05:58:47.509378Z",
- "LE07_L2SP_160028_20210105_02_T1"
- ],
- [
- "2021-01-05T05:59:11.394026Z",
- "LE07_L2SP_160029_20210105_02_T1"
- ],
- [
- "2021-01-28T06:03:20.050796Z",
- "LE07_L2SP_161028_20210128_02_T1"
- ],
- [
- "2021-01-28T06:03:43.933512Z",
- "LE07_L2SP_161029_20210128_02_T1"
- ],
- [
- "2021-03-17T06:00:03.916549Z",
- "LE07_L2SP_161029_20210317_02_T1"
- ],
- [
- "2021-04-11T05:51:26.483574Z",
- "LE07_L2SP_160028_20210411_02_T1"
- ],
- [
- "2021-04-26T06:46:22.422724Z",
- "LC08_L2SP_161028_20210426_02_T1"
- ],
- [
- "2021-04-26T06:46:46.296819Z",
- "LC08_L2SP_161029_20210426_02_T1"
- ],
- [
- "2021-04-27T05:50:28.919800Z",
- "LE07_L2SP_160029_20210427_02_T1"
- ],
- [
- "2021-05-12T06:46:19.715014Z",
- "LC08_L2SP_161028_20210512_02_T1"
- ],
- [
- "2021-05-12T06:46:43.606055Z",
- "LC08_L2SP_161029_20210512_02_T1"
- ],
- [
- "2021-05-13T05:48:45.247585Z",
- "LE07_L2SP_160028_20210513_02_T1"
- ],
- [
- "2021-05-13T05:49:09.130789Z",
- "LE07_L2SP_160029_20210513_02_T1"
- ],
- [
- "2021-05-20T05:54:20.444027Z",
- "LE07_L2SP_161028_20210520_02_T1"
- ],
- [
- "2021-05-20T05:54:44.326644Z",
- "LE07_L2SP_161029_20210520_02_T1"
- ],
- [
- "2021-05-29T05:47:23.192523Z",
- "LE07_L2SP_160028_20210529_02_T1"
- ],
- [
- "2021-05-29T05:47:47.074311Z",
- "LE07_L2SP_160029_20210529_02_T1"
- ],
- [
- "2021-06-14T05:46:28.306283Z",
- "LE07_L2SP_160029_20210614_02_T1"
- ],
- [
- "2021-06-21T05:51:40.727764Z",
- "LE07_L2SP_161028_20210621_02_T1"
- ],
- [
- "2021-06-21T05:52:04.607804Z",
- "LE07_L2SP_161029_20210621_02_T1"
- ],
- [
- "2021-06-22T06:40:27.950349Z",
- "LC08_L2SP_160028_20210622_02_T1"
- ],
- [
- "2021-06-22T06:40:51.841388Z",
- "LC08_L2SP_160029_20210622_02_T1"
- ],
- [
- "2021-06-29T06:46:40.152182Z",
- "LC08_L2SP_161028_20210629_02_T1"
- ],
- [
- "2021-06-29T06:47:04.043223Z",
- "LC08_L2SP_161029_20210629_02_T1"
- ],
- [
- "2021-06-30T05:45:08.870637Z",
- "LE07_L2SP_160029_20210630_02_T1"
- ],
- [
- "2021-07-08T06:40:30.271248Z",
- "LC08_L2SP_160028_20210708_02_T1"
- ],
- [
- "2021-07-08T06:40:54.162288Z",
- "LC08_L2SP_160029_20210708_02_T1"
- ],
- [
- "2021-07-16T05:43:23.405219Z",
- "LE07_L2SP_160028_20210716_02_T1"
- ],
- [
- "2021-07-16T05:43:47.286392Z",
- "LE07_L2SP_160029_20210716_02_T1"
- ],
- [
- "2021-07-23T05:48:57.939740Z",
- "LE07_L2SP_161028_20210723_02_T1"
- ],
- [
- "2021-07-23T05:49:21.821139Z",
- "LE07_L2SP_161029_20210723_02_T1"
- ],
- [
- "2021-07-24T06:40:35.392056Z",
- "LC08_L2SP_160028_20210724_02_T1"
- ],
- [
- "2021-07-24T06:40:59.278860Z",
- "LC08_L2SP_160029_20210724_02_T1"
- ],
- [
- "2021-07-31T06:46:49.683182Z",
- "LC08_L2SP_161028_20210731_02_T1"
- ],
- [
- "2021-07-31T06:47:13.569986Z",
- "LC08_L2SP_161029_20210731_02_T1"
- ],
- [
- "2021-08-01T05:41:59.834815Z",
- "LE07_L2SP_160028_20210801_02_T1"
- ],
- [
- "2021-08-01T05:42:23.717584Z",
- "LE07_L2SP_160029_20210801_02_T1"
- ],
- [
- "2021-08-08T05:47:33.424937Z",
- "LE07_L2SP_161028_20210808_02_T1"
- ],
- [
- "2021-08-08T05:47:57.307910Z",
- "LE07_L2SP_161029_20210808_02_T1"
- ],
- [
- "2021-08-09T06:40:42.594360Z",
- "LC08_L2SP_160028_20210809_02_T1"
- ],
- [
- "2021-08-09T06:41:06.481163Z",
- "LC08_L2SP_160029_20210809_02_T1"
- ],
- [
- "2021-08-16T06:46:55.728743Z",
- "LC08_L2SP_161028_20210816_02_T1"
- ],
- [
- "2021-08-16T06:47:19.611311Z",
- "LC08_L2SP_161029_20210816_02_T1"
- ],
- [
- "2021-08-17T05:40:34.209276Z",
- "LE07_L2SP_160028_20210817_02_T1"
- ],
- [
- "2021-08-17T05:40:58.092883Z",
- "LE07_L2SP_160029_20210817_02_T1"
- ],
- [
- "2021-08-24T05:46:09.163735Z",
- "LE07_L2SP_161028_20210824_02_T1"
- ],
- [
- "2021-08-24T05:46:33.047762Z",
- "LE07_L2SP_161029_20210824_02_T1"
- ],
- [
- "2021-08-25T06:40:47.221500Z",
- "LC08_L2SP_160028_20210825_02_T1"
- ],
- [
- "2021-08-25T06:41:11.108304Z",
- "LC08_L2SP_160029_20210825_02_T1"
- ],
- [
- "2021-09-01T06:47:00.348474Z",
- "LC08_L2SP_161028_20210901_02_T1"
- ],
- [
- "2021-09-01T06:47:24.231041Z",
- "LC08_L2SP_161029_20210901_02_T1"
- ],
- [
- "2021-09-02T05:39:11.817943Z",
- "LE07_L2SP_160028_20210902_02_T1"
- ],
- [
- "2021-09-02T05:39:35.701570Z",
- "LE07_L2SP_160029_20210902_02_T1"
- ],
- [
- "2021-09-09T05:44:45.897611Z",
- "LE07_L2SP_161028_20210909_02_T1"
- ],
- [
- "2021-09-10T06:40:52.024063Z",
- "LC08_L2SP_160028_20210910_02_T1"
- ],
- [
- "2021-09-10T06:41:15.906631Z",
- "LC08_L2SP_160029_20210910_02_T1"
- ],
- [
- "2021-09-17T06:47:04.028689Z",
- "LC08_L2SP_161028_20210917_02_T1"
- ],
- [
- "2021-09-17T06:47:27.907020Z",
- "LC08_L2SP_161029_20210917_02_T1"
- ],
- [
- "2021-09-26T06:40:55.281069Z",
- "LC08_L2SP_160028_20210926_02_T1"
- ],
- [
- "2021-10-11T05:41:55.628785Z",
- "LE07_L2SP_161028_20211011_02_T1"
- ],
- [
- "2021-10-12T06:41:00.732893Z",
- "LC08_L2SP_160028_20211012_02_T1"
- ],
- [
- "2021-10-12T06:41:24.619697Z",
- "LC08_L2SP_160029_20211012_02_T1"
- ],
- [
- "2021-10-28T06:41:01.860661Z",
- "LC08_L2SP_160028_20211028_02_T1"
- ],
- [
- "2021-10-28T06:41:25.747465Z",
- "LC08_L2SP_160029_20211028_02_T1"
- ],
- [
- "2021-11-04T06:47:11.676742Z",
- "LC08_L2SP_161028_20211104_02_T1"
- ],
- [
- "2021-11-05T05:33:27.450445Z",
- "LE07_L2SP_160028_20211105_02_T1"
- ],
- [
- "2021-11-05T05:33:51.331347Z",
- "LE07_L2SP_160029_20211105_02_T1"
- ],
- [
- "2021-11-18T06:48:44.552435Z",
- "LC09_L2SP_161029_20211118_02_T1"
- ],
- [
- "2021-11-20T06:47:30.741935Z",
- "LC08_L2SP_161029_20211120_02_T1"
- ],
- [
- "2021-12-15T06:41:20.392979Z",
- "LC08_L2SP_160029_20211215_02_T1"
- ],
- [
- "2022-01-23T06:46:57.132237Z",
- "LC08_L2SP_161028_20220123_02_T1"
- ],
- [
- "2022-01-24T06:40:52.092659Z",
- "LC09_L2SP_160028_20220124_02_T1"
- ],
- [
- "2022-02-01T06:40:44.202276Z",
- "LC08_L2SP_160028_20220201_02_T1"
- ],
- [
- "2022-02-09T06:40:50.433430Z",
- "LC09_L2SP_160028_20220209_02_T2"
- ],
- [
- "2022-02-17T06:40:39.316029Z",
- "LC08_L2SP_160028_20220217_02_T1"
- ],
- [
- "2022-02-17T06:41:03.198596Z",
- "LC08_L2SP_160029_20220217_02_T1"
- ],
- [
- "2022-03-20T05:26:27.450026Z",
- "LE07_L2SP_161028_20220320_02_T1"
- ],
- [
- "2022-03-20T06:46:46.476635Z",
- "LC09_L2SP_161028_20220320_02_T1"
- ],
- [
- "2022-03-20T06:47:10.363415Z",
- "LC09_L2SP_161029_20220320_02_T1"
- ],
- [
- "2022-03-29T05:19:49.846176Z",
- "LE07_L2SP_160029_20220329_02_T1"
- ],
- [
- "2022-04-13T06:47:00.628268Z",
- "LC08_L2SP_161029_20220413_02_T1"
- ],
- [
- "2022-04-14T06:40:27.518098Z",
- "LC09_L2SP_160028_20220414_02_T1"
- ],
- [
- "2022-04-14T06:40:51.400641Z",
- "LC09_L2SP_160029_20220414_02_T1"
- ],
- [
- "2022-04-29T06:46:32.078037Z",
- "LC08_L2SP_161028_20220429_02_T1"
- ],
- [
- "2022-04-29T06:46:55.969076Z",
- "LC08_L2SP_161029_20220429_02_T1"
- ],
- [
- "2022-05-16T06:40:10.394110Z",
- "LC09_L2SP_160028_20220516_02_T1"
- ],
- [
- "2022-05-16T06:40:34.276654Z",
- "LC09_L2SP_160029_20220516_02_T1"
- ],
- [
- "2022-05-23T06:46:17.354823Z",
- "LC09_L2SP_161028_20220523_02_T1"
- ],
- [
- "2022-05-23T06:46:41.237368Z",
- "LC09_L2SP_161029_20220523_02_T1"
- ],
- [
- "2022-05-30T05:20:59.731149Z",
- "LE07_L2SP_161028_20220530_02_T1"
- ],
- [
- "2022-05-30T05:21:23.569819Z",
- "LE07_L2SP_161029_20220530_02_T1"
- ],
- [
- "2022-05-31T06:46:45.483804Z",
- "LC08_L2SP_161028_20220531_02_T1"
- ],
- [
- "2022-05-31T06:47:09.366372Z",
- "LC08_L2SP_161029_20220531_02_T1"
- ],
- [
- "2022-06-01T06:40:07.382951Z",
- "LC09_L2SP_160028_20220601_02_T1"
- ],
- [
- "2022-06-01T06:40:31.278201Z",
- "LC09_L2SP_160029_20220601_02_T1"
- ],
- [
- "2022-06-09T06:40:42.324903Z",
- "LC08_L2SP_160028_20220609_02_T1"
- ],
- [
- "2022-06-09T06:41:06.211707Z",
- "LC08_L2SP_160029_20220609_02_T1"
- ],
- [
- "2022-06-16T06:46:57.609298Z",
- "LC08_L2SP_161028_20220616_02_T1"
- ],
- [
- "2022-06-16T06:47:21.491866Z",
- "LC08_L2SP_161029_20220616_02_T1"
- ],
- [
- "2022-06-17T06:40:14.583959Z",
- "LC09_L2SP_160028_20220617_02_T1"
- ],
- [
- "2022-06-25T06:40:49.834062Z",
- "LC08_L2SP_160028_20220625_02_T1"
- ],
- [
- "2022-06-25T06:41:13.720867Z",
- "LC08_L2SP_160029_20220625_02_T1"
- ],
- [
- "2022-07-10T05:06:51.771689Z",
- "LE07_L2SP_160028_20220710_02_T1"
- ],
- [
- "2022-07-10T05:07:15.611904Z",
- "LE07_L2SP_160029_20220710_02_T1"
- ],
- [
- "2022-07-11T06:40:49.819015Z",
- "LC08_L2SP_160028_20220711_02_T1"
- ],
- [
- "2022-07-11T06:41:13.710054Z",
- "LC08_L2SP_160029_20220711_02_T1"
- ],
- [
- "2022-07-15T05:12:42.104081Z",
- "LE07_L2SP_161029_20220715_02_T1"
- ],
- [
- "2022-07-19T06:40:28.619361Z",
- "LC09_L2SP_160028_20220719_02_T1"
- ],
- [
- "2022-07-20T05:17:43.764468Z",
- "LE07_L2SP_161028_20220720_02_T1"
- ],
- [
- "2022-07-20T05:18:07.605195Z",
- "LE07_L2SP_161029_20220720_02_T1"
- ],
- [
- "2022-07-26T06:46:46.054572Z",
- "LC09_L2SP_161028_20220726_02_T1"
- ],
- [
- "2022-07-26T06:47:09.941352Z",
- "LC09_L2SP_161029_20220726_02_T1"
- ],
- [
- "2022-07-27T05:05:33.454001Z",
- "LE07_L2SP_160028_20220727_02_T1"
- ],
- [
- "2022-07-27T05:05:57.295289Z",
- "LE07_L2SP_160029_20220727_02_T1"
- ],
- [
- "2022-07-27T06:40:58.306744Z",
- "LC08_L2SP_160028_20220727_02_T1"
- ],
- [
- "2022-07-27T06:41:22.189312Z",
- "LC08_L2SP_160029_20220727_02_T1"
- ],
- [
- "2022-08-01T05:10:57.149262Z",
- "LE07_L2SP_161028_20220801_02_T1"
- ],
- [
- "2022-08-03T06:47:13.340546Z",
- "LC08_L2SP_161028_20220803_02_T1"
- ],
- [
- "2022-08-03T06:47:37.231585Z",
- "LC08_L2SP_161029_20220803_02_T1"
- ],
- [
- "2022-08-11T06:46:56.884637Z",
- "LC09_L2SP_161028_20220811_02_T1"
- ],
- [
- "2022-08-12T06:41:06.450354Z",
- "LC08_L2SP_160028_20220812_02_T1"
- ],
- [
- "2022-08-12T06:41:30.337158Z",
- "LC08_L2SP_160029_20220812_02_T1"
- ],
- [
- "2022-08-27T06:47:00.788515Z",
- "LC09_L2SP_161028_20220827_02_T1"
- ],
- [
- "2022-08-27T06:47:24.675294Z",
- "LC09_L2SP_161029_20220827_02_T1"
- ],
- [
- "2022-08-28T06:41:08.011925Z",
- "LC08_L2SP_160028_20220828_02_T1"
- ],
- [
- "2022-08-28T06:41:31.898730Z",
- "LC08_L2SP_160029_20220828_02_T1"
- ],
- [
- "2022-09-05T06:40:49.544472Z",
- "LC09_L2SP_160028_20220905_02_T1"
- ],
- [
- "2022-09-05T06:41:13.427017Z",
- "LC09_L2SP_160029_20220905_02_T1"
- ],
- [
- "2022-09-20T06:47:25.566169Z",
- "LC08_L2SP_161028_20220920_02_T1"
- ],
- [
- "2022-09-20T06:47:49.448737Z",
- "LC08_L2SP_161029_20220920_02_T1"
- ],
- [
- "2022-09-28T06:47:08.260487Z",
- "LC09_L2SP_161028_20220928_02_T1"
- ],
- [
- "2022-09-28T06:47:32.147266Z",
- "LC09_L2SP_161029_20220928_02_T1"
- ],
- [
- "2022-12-01T06:47:11.069765Z",
- "LC09_L2SP_161028_20221201_02_T1"
- ],
- [
- "2022-12-02T06:41:09.723310Z",
- "LC08_L2SP_160028_20221202_02_T1"
- ],
- [
- "2022-12-09T06:47:19.115333Z",
- "LC08_L2SP_161028_20221209_02_T1"
- ],
- [
- "2022-12-10T06:41:26.833079Z",
- "LC09_L2SP_160029_20221210_02_T1"
- ],
- [
- "2022-12-17T06:47:13.056273Z",
- "LC09_L2SP_161028_20221217_02_T1"
- ],
- [
- "2022-12-17T06:47:36.934582Z",
- "LC09_L2SP_161029_20221217_02_T1"
- ],
- [
- "2022-12-18T06:41:02.546617Z",
- "LC08_L2SP_160028_20221218_02_T1"
- ],
- [
- "2022-12-18T06:41:26.433421Z",
- "LC08_L2SP_160029_20221218_02_T1"
- ],
- [
- "2022-12-25T06:47:34.101535Z",
- "LC08_L2SP_161029_20221225_02_T1"
- ],
- [
- "2023-01-18T06:47:06.303851Z",
- "LC09_L2SP_161028_20230118_02_T1"
- ],
- [
- "2023-01-18T06:47:30.186394Z",
- "LC09_L2SP_161029_20230118_02_T1"
- ],
- [
- "2023-01-19T06:40:53.595446Z",
- "LC08_L2SP_160028_20230119_02_T1"
- ],
- [
- "2023-01-19T06:41:17.478014Z",
- "LC08_L2SP_160029_20230119_02_T1"
- ],
- [
- "2023-01-26T06:47:08.923480Z",
- "LC08_L2SP_161028_20230126_02_T1"
- ],
- [
- "2023-01-26T06:47:32.810284Z",
- "LC08_L2SP_161029_20230126_02_T1"
- ],
- [
- "2023-01-27T06:41:00.349735Z",
- "LC09_L2SP_160028_20230127_02_T1"
- ],
- [
- "2023-03-03T04:50:41.443511Z",
- "LE07_L2SP_161028_20230303_02_T1"
- ],
- [
- "2023-03-03T04:51:05.280734Z",
- "LE07_L2SP_161029_20230303_02_T1"
- ],
- [
- "2023-03-08T06:40:34.677874Z",
- "LC08_L2SP_160028_20230308_02_T1"
- ],
- [
- "2023-03-15T04:41:37.210954Z",
- "LE07_L2SP_160028_20230315_02_T1"
- ],
- [
- "2023-03-15T04:42:01.048531Z",
- "LE07_L2SP_160029_20230315_02_T1"
- ],
- [
- "2023-03-15T06:46:44.444405Z",
- "LC08_L2SP_161028_20230315_02_T1"
- ],
- [
- "2023-03-15T06:47:08.331208Z",
- "LC08_L2SP_161029_20230315_02_T1"
- ],
- [
- "2023-03-20T04:45:58.423449Z",
- "LE07_L2SP_160028_20230320_02_T1"
- ],
- [
- "2023-03-20T04:46:22.261156Z",
- "LE07_L2SP_160029_20230320_02_T1"
- ],
- [
- "2023-04-17T06:40:27.097590Z",
- "LC09_L2SP_160028_20230417_02_T1"
- ],
- [
- "2023-04-24T06:46:36.343591Z",
- "LC09_L2SP_161028_20230424_02_T1"
- ],
- [
- "2023-05-02T06:46:14.518240Z",
- "LC08_L2SP_161028_20230502_02_T1"
- ],
- [
- "2023-05-20T04:36:32.243801Z",
- "LE07_L2SP_160028_20230520_02_T1"
- ],
- [
- "2023-05-20T04:36:56.076495Z",
- "LE07_L2SP_160029_20230520_02_T1"
- ],
- [
- "2023-05-26T06:46:15.291443Z",
- "LC09_L2SP_161028_20230526_02_T1"
- ],
- [
- "2023-05-26T06:46:39.169750Z",
- "LC09_L2SP_161029_20230526_02_T1"
- ],
- [
- "2023-05-27T06:39:54.477802Z",
- "LC08_L2SP_160028_20230527_02_T1"
- ],
- [
- "2023-05-27T06:40:18.364606Z",
- "LC08_L2SP_160029_20230527_02_T1"
- ],
- [
- "2023-06-12T06:40:02.267110Z",
- "LC08_L2SP_160028_20230612_02_T1"
- ],
- [
- "2023-06-12T06:40:26.153914Z",
- "LC08_L2SP_160029_20230612_02_T1"
- ],
- [
- "2023-06-20T06:39:55.451043Z",
- "LC09_L2SP_160028_20230620_02_T1"
- ],
- [
- "2023-06-20T06:40:19.342057Z",
- "LC09_L2SP_160029_20230620_02_T1"
- ]
- ],
- "landsat-c2l2-sr-lakes-lake-balaton": [
- [
- "1984-09-15T09:09:32.098056Z",
- "LT05_L2SP_189027_19840915_02_T1"
- ],
- [
- "1984-10-17T09:09:29.788081Z",
- "LT05_L2SP_189027_19841017_02_T1"
- ],
- [
- "1985-07-16T09:09:20.995094Z",
- "LT05_L2SP_189027_19850716_02_T1"
- ],
- [
- "1985-08-17T09:09:03.738031Z",
- "LT05_L2SP_189027_19850817_02_T2"
- ],
- [
- "1986-01-24T09:06:36.928050Z",
- "LT05_L2SP_189027_19860124_02_T2"
- ],
- [
- "1986-02-25T09:05:52.582062Z",
- "LT05_L2SP_189027_19860225_02_T2"
- ],
- [
- "1986-06-17T09:03:06.760056Z",
- "LT05_L2SP_189027_19860617_02_T1"
- ],
- [
- "1986-07-03T09:02:35.501019Z",
- "LT05_L2SP_189027_19860703_02_T1"
- ],
- [
- "1986-08-04T09:01:28.562056Z",
- "LT05_L2SP_189027_19860804_02_T1"
- ],
- [
- "1986-11-08T08:58:09.254050Z",
- "LT05_L2SP_189027_19861108_02_T2"
- ],
- [
- "1986-11-24T08:57:36.968069Z",
- "LT05_L2SP_189027_19861124_02_T2"
- ],
- [
- "1987-08-23T09:05:42.190069Z",
- "LT05_L2SP_189027_19870823_02_T1"
- ],
- [
- "1988-01-30T09:08:46.059044Z",
- "LT05_L2SP_189027_19880130_02_T2"
- ],
- [
- "1988-04-19T09:09:33.708000Z",
- "LT05_L2SP_189027_19880419_02_T1"
- ],
- [
- "1988-09-10T09:10:12.086019Z",
- "LT05_L2SP_189027_19880910_02_T1"
- ],
- [
- "1989-06-09T09:07:32.035069Z",
- "LT05_L2SP_189027_19890609_02_T1"
- ],
- [
- "1990-02-04T09:01:16.931050Z",
- "LT05_L2SP_189027_19900204_02_T1"
- ],
- [
- "1990-03-08T09:00:12.748031Z",
- "LT05_L2SP_189027_19900308_02_T1"
- ],
- [
- "1990-05-11T08:59:40.780056Z",
- "LT05_L2SP_189027_19900511_02_T1"
- ],
- [
- "1990-07-30T08:59:28.684069Z",
- "LT05_L2SP_189027_19900730_02_T1"
- ],
- [
- "1990-08-31T08:59:16.695050Z",
- "LT05_L2SP_189027_19900831_02_T1"
- ],
- [
- "1991-02-23T09:00:24.264025Z",
- "LT05_L2SP_189027_19910223_02_T2"
- ],
- [
- "1991-07-01T09:02:34.692081Z",
- "LT05_L2SP_189027_19910701_02_T1"
- ],
- [
- "1991-09-03T09:03:12.138038Z",
- "LT05_L2SP_189027_19910903_02_T1"
- ],
- [
- "1991-09-19T09:03:23.065000Z",
- "LT05_L2SP_189027_19910919_02_T1"
- ],
- [
- "1991-10-05T09:03:26.162044Z",
- "LT05_L2SP_189027_19911005_02_T1"
- ],
- [
- "1992-02-26T09:03:37.412081Z",
- "LT05_L2SP_189027_19920226_02_T1"
- ],
- [
- "1992-05-16T09:03:07.114025Z",
- "LT05_L2SP_189027_19920516_02_T1"
- ],
- [
- "1992-08-28T08:48:42.570088Z",
- "LT04_L2SP_189027_19920828_02_T1"
- ],
- [
- "1992-09-05T09:01:40.586069Z",
- "LT05_L2SP_189027_19920905_02_T1"
- ],
- [
- "1992-09-13T08:49:11.004044Z",
- "LT04_L2SP_189027_19920913_02_T1"
- ],
- [
- "1993-05-03T09:01:52.525013Z",
- "LT05_L2SP_189027_19930503_02_T1"
- ],
- [
- "1993-09-24T09:01:43.067000Z",
- "LT05_L2SP_189027_19930924_02_T1"
- ],
- [
- "1994-02-15T09:00:27.714038Z",
- "LT05_L2SP_189027_19940215_02_T1"
- ],
- [
- "1994-07-25T08:57:17.999038Z",
- "LT05_L2SP_189027_19940725_02_T1"
- ],
- [
- "1994-08-10T08:56:52.033088Z",
- "LT05_L2SP_189027_19940810_02_T1"
- ],
- [
- "1995-05-25T08:46:34.346038Z",
- "LT05_L2SP_189027_19950525_02_T1"
- ],
- [
- "1995-07-12T08:44:23.370044Z",
- "LT05_L2SP_189027_19950712_02_T1"
- ],
- [
- "1995-08-13T08:42:55.983025Z",
- "LT05_L2SP_189027_19950813_02_T1"
- ],
- [
- "1996-06-12T08:52:04.687019Z",
- "LT05_L2SP_189027_19960612_02_T1"
- ],
- [
- "1996-07-14T08:53:45.418056Z",
- "LT05_L2SP_189027_19960714_02_T1"
- ],
- [
- "1997-02-07T09:04:08.576069Z",
- "LT05_L2SP_189027_19970207_02_T1"
- ],
- [
- "1997-02-23T09:04:49.239062Z",
- "LT05_L2SP_189027_19970223_02_T2"
- ],
- [
- "1997-03-11T09:05:27.686006Z",
- "LT05_L2SP_189027_19970311_02_T1"
- ],
- [
- "1997-09-03T09:11:29.361050Z",
- "LT05_L2SP_189027_19970903_02_T1"
- ],
- [
- "1997-10-05T09:12:24.312025Z",
- "LT05_L2SP_189027_19971005_02_T1"
- ],
- [
- "1998-07-20T09:17:43.089050Z",
- "LT05_L2SP_189027_19980720_02_T1"
- ],
- [
- "1998-09-22T09:18:14.868031Z",
- "LT05_L2SP_189027_19980922_02_T1"
- ],
- [
- "1999-03-01T09:18:38.306062Z",
- "LT05_L2SP_189027_19990301_02_T1"
- ],
- [
- "1999-11-20T09:32:15.985837Z",
- "LE07_L2SP_189027_19991120_02_T1"
- ],
- [
- "1999-12-22T09:32:19.512873Z",
- "LE07_L2SP_189027_19991222_02_T1"
- ],
- [
- "2000-05-06T09:15:00.536031Z",
- "LT05_L2SP_189027_20000506_02_T1"
- ],
- [
- "2000-05-14T09:31:32.892645Z",
- "LE07_L2SP_189027_20000514_02_T1"
- ],
- [
- "2000-06-23T09:15:58.178088Z",
- "LT05_L2SP_189027_20000623_02_T1"
- ],
- [
- "2000-08-02T09:30:35.092668Z",
- "LE07_L2SP_189027_20000802_02_T1"
- ],
- [
- "2000-08-18T09:30:29.168795Z",
- "LE07_L2SP_189027_20000818_02_T1"
- ],
- [
- "2000-09-27T09:17:48.817063Z",
- "LT05_L2SP_189027_20000927_02_T1"
- ],
- [
- "2000-10-13T09:17:57.370025Z",
- "LT05_L2SP_189027_20001013_02_T2"
- ],
- [
- "2000-10-21T09:29:38.972668Z",
- "LE07_L2SP_189027_20001021_02_T1"
- ],
- [
- "2001-05-17T09:29:17.039506Z",
- "LE07_L2SP_189027_20010517_02_T1"
- ],
- [
- "2001-07-28T09:19:44.703000Z",
- "LT05_L2SP_189027_20010728_02_T1"
- ],
- [
- "2001-08-13T09:19:44.218019Z",
- "LT05_L2SP_189027_20010813_02_T1"
- ],
- [
- "2001-11-17T09:18:57.926056Z",
- "LT05_L2SP_189027_20011117_02_T1"
- ],
- [
- "2001-12-11T09:28:03.567336Z",
- "LE07_L2SP_189027_20011211_02_T2"
- ],
- [
- "2002-01-04T09:18:28.210000Z",
- "LT05_L2SP_189027_20020104_02_T1"
- ],
- [
- "2002-03-09T09:17:32.862050Z",
- "LT05_L2SP_189027_20020309_02_T1"
- ],
- [
- "2002-08-24T09:27:28.914041Z",
- "LE07_L2SP_189027_20020824_02_T1"
- ],
- [
- "2002-09-09T09:27:22.852058Z",
- "LE07_L2SP_189027_20020909_02_T1"
- ],
- [
- "2003-05-23T09:28:06.375873Z",
- "LE07_L2SP_189027_20030523_02_T1"
- ],
- [
- "2003-08-03T09:16:11.407038Z",
- "LT05_L2SP_189027_20030803_02_T1"
- ],
- [
- "2003-08-11T09:27:49.788864Z",
- "LE07_L2SP_189027_20030811_02_T1"
- ],
- [
- "2003-09-20T09:17:00.892013Z",
- "LT05_L2SP_189027_20030920_02_T1"
- ],
- [
- "2004-08-29T09:28:10.785396Z",
- "LE07_L2SP_189027_20040829_02_T1"
- ],
- [
- "2004-09-06T09:23:02.282094Z",
- "LT05_L2SP_189027_20040906_02_T1"
- ],
- [
- "2004-09-14T09:28:03.514489Z",
- "LE07_L2SP_189027_20040914_02_T1"
- ],
- [
- "2004-11-25T09:24:42.067081Z",
- "LT05_L2SP_189027_20041125_02_T1"
- ],
- [
- "2005-04-02T09:26:31.005094Z",
- "LT05_L2SP_189027_20050402_02_T2"
- ],
- [
- "2005-05-28T09:29:00.038928Z",
- "LE07_L2SP_189027_20050528_02_T1"
- ],
- [
- "2005-06-13T09:28:53.085316Z",
- "LE07_L2SP_189027_20050613_02_T1"
- ],
- [
- "2005-06-21T09:27:00.136088Z",
- "LT05_L2SP_189027_20050621_02_T1"
- ],
- [
- "2005-07-15T09:28:51.160452Z",
- "LE07_L2SP_189027_20050715_02_T1"
- ],
- [
- "2005-09-01T09:28:37.308480Z",
- "LE07_L2SP_189027_20050901_02_T1"
- ],
- [
- "2005-10-19T09:28:36.552322Z",
- "LE07_L2SP_189027_20051019_02_T1"
- ],
- [
- "2006-06-16T09:29:25.224680Z",
- "LE07_L2SP_189027_20060616_02_T1"
- ],
- [
- "2006-07-10T09:32:24.732031Z",
- "LT05_L2SP_189027_20060710_02_T1"
- ],
- [
- "2006-07-18T09:29:11.352755Z",
- "LE07_L2SP_189027_20060718_02_T1"
- ],
- [
- "2006-07-26T09:32:37.218019Z",
- "LT05_L2SP_189027_20060726_02_T1"
- ],
- [
- "2006-09-12T09:33:10.534081Z",
- "LT05_L2SP_189027_20060912_02_T1"
- ],
- [
- "2006-09-28T09:33:22.298044Z",
- "LT05_L2SP_189027_20060928_02_T1"
- ],
- [
- "2006-10-06T09:28:44.488039Z",
- "LE07_L2SP_189027_20061006_02_T1"
- ],
- [
- "2006-11-07T09:29:15.783810Z",
- "LE07_L2SP_189027_20061107_02_T1"
- ],
- [
- "2007-03-15T09:29:57.245932Z",
- "LE07_L2SP_189027_20070315_02_T1"
- ],
- [
- "2007-05-02T09:29:52.337022Z",
- "LE07_L2SP_189027_20070502_02_T1"
- ],
- [
- "2007-09-23T09:29:12.323246Z",
- "LE07_L2SP_189027_20070923_02_T1"
- ],
- [
- "2007-10-01T09:32:22.761044Z",
- "LT05_L2SP_189027_20071001_02_T1"
- ],
- [
- "2008-05-28T09:27:36.116088Z",
- "LT05_L2SP_189027_20080528_02_T1"
- ],
- [
- "2008-09-09T09:28:23.215888Z",
- "LE07_L2SP_189027_20080909_02_T1"
- ],
- [
- "2009-04-13T09:26:34.878063Z",
- "LT05_L2SP_189027_20090413_02_T1"
- ],
- [
- "2009-09-28T09:29:33.198843Z",
- "LE07_L2SP_189027_20090928_02_T1"
- ],
- [
- "2010-04-08T09:31:38.442047Z",
- "LE07_L2SP_189027_20100408_02_T1"
- ],
- [
- "2010-06-11T09:31:33.883954Z",
- "LE07_L2SP_189027_20100611_02_T1"
- ],
- [
- "2010-07-13T09:31:38.743868Z",
- "LE07_L2SP_189027_20100713_02_T1"
- ],
- [
- "2010-08-22T09:29:43.890044Z",
- "LT05_L2SP_189027_20100822_02_T1"
- ],
- [
- "2010-09-23T09:29:34.703038Z",
- "LT05_L2SP_189027_20100923_02_T1"
- ],
- [
- "2011-05-21T09:28:58.236000Z",
- "LT05_L2SP_189027_20110521_02_T1"
- ],
- [
- "2011-06-22T09:28:42.861088Z",
- "LT05_L2SP_189027_20110622_02_T1"
- ],
- [
- "2011-08-17T09:32:49.739626Z",
- "LE07_L2SP_189027_20110817_02_T1"
- ],
- [
- "2011-08-25T09:28:11.153031Z",
- "LT05_L2SP_189027_20110825_02_T1"
- ],
- [
- "2011-09-10T09:28:00.245019Z",
- "LT05_L2SP_189027_20110910_02_T1"
- ],
- [
- "2011-09-18T09:32:41.957349Z",
- "LE07_L2SP_189027_20110918_02_T1"
- ],
- [
- "2011-09-26T09:27:43.968006Z",
- "LT05_L2SP_189027_20110926_02_T1"
- ],
- [
- "2011-10-04T09:32:41.737292Z",
- "LE07_L2SP_189027_20111004_02_T1"
- ],
- [
- "2012-06-16T09:33:51.343440Z",
- "LE07_L2SP_189027_20120616_02_T1"
- ],
- [
- "2012-07-02T09:34:00.816411Z",
- "LE07_L2SP_189027_20120702_02_T1"
- ],
- [
- "2012-08-19T09:34:36.169250Z",
- "LE07_L2SP_189027_20120819_02_T1"
- ],
- [
- "2012-10-06T09:35:03.576190Z",
- "LE07_L2SP_189027_20121006_02_T1"
- ],
- [
- "2013-04-24T09:41:11.423992Z",
- "LC08_L2SP_189027_20130424_02_T1"
- ],
- [
- "2013-06-19T09:35:03.966978Z",
- "LE07_L2SP_189027_20130619_02_T1"
- ],
- [
- "2013-07-21T09:34:46.096107Z",
- "LE07_L2SP_189027_20130721_02_T1"
- ],
- [
- "2013-07-29T09:41:25.230773Z",
- "LC08_L2SP_189027_20130729_02_T1"
- ],
- [
- "2013-08-06T09:34:40.856952Z",
- "LE07_L2SP_189027_20130806_02_T1"
- ],
- [
- "2013-09-07T09:34:59.469573Z",
- "LE07_L2SP_189027_20130907_02_T1"
- ],
- [
- "2014-04-27T09:39:14.169865Z",
- "LC08_L2SP_189027_20140427_02_T1"
- ],
- [
- "2014-05-21T09:36:47.063896Z",
- "LE07_L2SP_189027_20140521_02_T1"
- ],
- [
- "2014-06-06T09:36:50.004209Z",
- "LE07_L2SP_189027_20140606_02_T1"
- ],
- [
- "2014-08-09T09:37:04.999621Z",
- "LE07_L2SP_189027_20140809_02_T1"
- ],
- [
- "2015-03-21T09:38:26.991313Z",
- "LE07_L2SP_189027_20150321_02_T1"
- ],
- [
- "2015-07-03T09:38:50.845458Z",
- "LC08_L2SP_189027_20150703_02_T1"
- ],
- [
- "2015-07-11T09:39:08.946763Z",
- "LE07_L2SP_189027_20150711_02_T1"
- ],
- [
- "2015-07-19T09:38:59.990437Z",
- "LC08_L2SP_189027_20150719_02_T1"
- ],
- [
- "2015-08-12T09:39:15.720453Z",
- "LE07_L2SP_189027_20150812_02_T1"
- ],
- [
- "2015-08-28T09:39:16.262096Z",
- "LE07_L2SP_189027_20150828_02_T1"
- ],
- [
- "2015-10-31T09:39:52.255465Z",
- "LE07_L2SP_189027_20151031_02_T1"
- ],
- [
- "2016-03-31T09:39:04.971434Z",
- "LC08_L2SP_189027_20160331_02_T1"
- ],
- [
- "2016-04-16T09:39:00.348604Z",
- "LC08_L2SP_189027_20160416_02_T1"
- ],
- [
- "2016-08-14T09:42:02.934413Z",
- "LE07_L2SP_189027_20160814_02_T1"
- ],
- [
- "2016-09-15T09:42:08.206720Z",
- "LE07_L2SP_189027_20160915_02_T1"
- ],
- [
- "2016-10-01T09:42:10.939097Z",
- "LE07_L2SP_189027_20161001_02_T1"
- ],
- [
- "2017-04-03T09:38:59.261444Z",
- "LC08_L2SP_189027_20170403_02_T1"
- ],
- [
- "2017-05-29T09:41:58.055918Z",
- "LE07_L2SP_189027_20170529_02_T1"
- ],
- [
- "2017-08-01T09:42:03.886995Z",
- "LE07_L2SP_189027_20170801_02_T1"
- ],
- [
- "2017-08-17T09:42:02.020555Z",
- "LE07_L2SP_189027_20170817_02_T1"
- ],
- [
- "2018-04-22T09:38:40.331889Z",
- "LC08_L2SP_189027_20180422_02_T1"
- ],
- [
- "2018-08-04T09:38:12.015986Z",
- "LE07_L2SP_189027_20180804_02_T1"
- ],
- [
- "2018-08-12T09:38:50.019532Z",
- "LC08_L2SP_189027_20180812_02_T1"
- ],
- [
- "2018-08-28T09:38:57.493381Z",
- "LC08_L2SP_189027_20180828_02_T1"
- ],
- [
- "2018-09-21T09:37:12.247200Z",
- "LE07_L2SP_189027_20180921_02_T1"
- ],
- [
- "2018-11-16T09:39:21.828308Z",
- "LC08_L2SP_189027_20181116_02_T1"
- ],
- [
- "2019-02-28T09:32:51.112326Z",
- "LE07_L2SP_189027_20190228_02_T1"
- ],
- [
- "2019-03-24T09:38:59.974645Z",
- "LC08_L2SP_189027_20190324_02_T1"
- ],
- [
- "2019-04-17T09:31:13.572739Z",
- "LE07_L2SP_189027_20190417_02_T1"
- ],
- [
- "2019-04-25T09:38:48.743382Z",
- "LC08_L2SP_189027_20190425_02_T1"
- ],
- [
- "2019-06-12T09:39:14.053085Z",
- "LC08_L2SP_189027_20190612_02_T1"
- ],
- [
- "2019-06-28T09:39:19.128521Z",
- "LC08_L2SP_189027_20190628_02_T1"
- ],
- [
- "2019-08-15T09:39:33.723920Z",
- "LC08_L2SP_189027_20190815_02_T1"
- ],
- [
- "2019-08-31T09:39:37.448365Z",
- "LC08_L2SP_189027_20190831_02_T1"
- ],
- [
- "2019-09-16T09:39:42.524555Z",
- "LC08_L2SP_189027_20190916_02_T1"
- ],
- [
- "2020-02-15T09:18:02.220265Z",
- "LE07_L2SP_189027_20200215_02_T1"
- ],
- [
- "2020-03-10T09:39:19.547349Z",
- "LC08_L2SP_189027_20200310_02_T1"
- ],
- [
- "2020-03-18T09:16:19.037664Z",
- "LE07_L2SP_189027_20200318_02_T1"
- ],
- [
- "2020-04-03T09:15:25.094720Z",
- "LE07_L2SP_189027_20200403_02_T1"
- ],
- [
- "2020-08-01T09:39:22.527557Z",
- "LC08_L2SP_189027_20200801_02_T1"
- ],
- [
- "2020-08-09T09:07:43.720817Z",
- "LE07_L2SP_189027_20200809_02_T1"
- ],
- [
- "2020-08-25T09:06:42.129837Z",
- "LE07_L2SP_189027_20200825_02_T1"
- ],
- [
- "2020-09-02T09:39:35.466231Z",
- "LC08_L2SP_189027_20200902_02_T1"
- ],
- [
- "2020-09-10T09:05:39.194836Z",
- "LE07_L2SP_189027_20200910_02_T1"
- ],
- [
- "2020-10-04T09:39:44.897103Z",
- "LC08_L2SP_189027_20201004_02_T1"
- ],
- [
- "2020-11-21T09:39:44.686061Z",
- "LC08_L2SP_189027_20201121_02_T1"
- ],
- [
- "2021-02-25T09:39:26.562863Z",
- "LC08_L2SP_189027_20210225_02_T1"
- ],
- [
- "2021-06-09T08:45:17.934347Z",
- "LE07_L2SP_189027_20210609_02_T1"
- ],
- [
- "2021-06-17T09:39:16.428226Z",
- "LC08_L2SP_189027_20210617_02_T1"
- ],
- [
- "2021-09-05T09:39:40.534228Z",
- "LC08_L2SP_189027_20210905_02_T1"
- ],
- [
- "2021-09-13T08:37:02.961550Z",
- "LE07_L2SP_189027_20210913_02_T1"
- ],
- [
- "2021-11-24T09:39:46.618320Z",
- "LC08_L2SP_189027_20211124_02_T1"
- ],
- [
- "2022-01-19T09:39:41.066219Z",
- "LC09_L2SP_189027_20220119_02_T1"
- ],
- [
- "2022-03-24T08:18:43.398783Z",
- "LE07_L2SP_189027_20220324_02_T1"
- ],
- [
- "2022-03-24T09:39:23.625268Z",
- "LC09_L2SP_189027_20220324_02_T1"
- ],
- [
- "2022-05-11T09:39:04.325471Z",
- "LC09_L2SP_189027_20220511_02_T1"
- ],
- [
- "2022-05-19T09:39:22.231645Z",
- "LC08_L2SP_189027_20220519_02_T1"
- ],
- [
- "2022-06-12T09:39:00.374175Z",
- "LC09_L2SP_189027_20220612_02_T1"
- ],
- [
- "2022-06-20T09:39:38.281598Z",
- "LC08_L2SP_189027_20220620_02_T1"
- ],
- [
- "2022-10-18T09:39:52.636549Z",
- "LC09_L2SP_189027_20221018_02_T1"
- ],
- [
- "2022-12-13T09:39:55.962399Z",
- "LC08_L2SP_189027_20221213_02_T1"
- ],
- [
- "2023-02-07T09:39:56.307536Z",
- "LC09_L2SP_189027_20230207_02_T1"
- ],
- [
- "2023-03-17T07:40:36.577874Z",
- "LE07_L2SP_189027_20230317_02_T1"
- ],
- [
- "2023-05-22T07:35:18.700905Z",
- "LE07_L2SP_189027_20230522_02_T1"
- ]
- ],
- "landsat-c2l2-sr-lakes-lake-biwa": [
- [
- "1984-06-11T00:56:49.159075Z",
- "LT05_L2SP_109036_19840611_02_T1"
- ],
- [
- "1985-11-21T00:57:00.511094Z",
- "LT05_L2SP_109036_19851121_02_T1"
- ],
- [
- "1986-06-01T00:52:46.685050Z",
- "LT05_L2SP_109036_19860601_02_T1"
- ],
- [
- "1987-11-11T00:56:34.631013Z",
- "LT05_L2SP_109036_19871111_02_T1"
- ],
- [
- "1989-06-01T01:02:00.836081Z",
- "LT04_L2SP_109036_19890601_02_T1"
- ],
- [
- "1990-01-19T00:50:57.791031Z",
- "LT05_L2SP_109036_19900119_02_T2"
- ],
- [
- "1990-04-25T00:48:48.640044Z",
- "LT05_L2SP_109036_19900425_02_T2"
- ],
- [
- "1990-12-05T00:47:47.415000Z",
- "LT05_L2SP_109036_19901205_02_T1"
- ],
- [
- "1991-11-22T00:52:45.982038Z",
- "LT05_L2SP_109036_19911122_02_T1"
- ],
- [
- "1993-05-19T00:51:04.064031Z",
- "LT05_L2SP_109036_19930519_02_T1"
- ],
- [
- "1995-05-09T00:36:28.507013Z",
- "LT05_L2SP_109036_19950509_02_T1"
- ],
- [
- "1995-07-28T00:32:50.639038Z",
- "LT05_L2SP_109036_19950728_02_T1"
- ],
- [
- "1995-11-17T00:28:06.417081Z",
- "LT05_L2SP_109036_19951117_02_T2"
- ],
- [
- "1996-04-25T00:38:29.122031Z",
- "LT05_L2SP_109036_19960425_02_T1"
- ],
- [
- "1996-07-14T00:42:54.669025Z",
- "LT05_L2SP_109036_19960714_02_T1"
- ],
- [
- "1997-04-12T00:55:47.244006Z",
- "LT05_L2SP_109036_19970412_02_T1"
- ],
- [
- "1997-10-21T01:01:59.742056Z",
- "LT05_L2SP_109036_19971021_02_T2"
- ],
- [
- "1998-03-30T01:05:21.962088Z",
- "LT05_L2SP_109036_19980330_02_T2"
- ],
- [
- "1999-11-20T01:21:25.896393Z",
- "LE07_L2SP_109036_19991120_02_T1"
- ],
- [
- "2000-12-08T01:18:55.131804Z",
- "LE07_L2SP_109036_20001208_02_T1"
- ],
- [
- "2001-04-07T01:08:29.167013Z",
- "LT05_L2SP_109036_20010407_02_T1"
- ],
- [
- "2001-04-15T01:18:42.539154Z",
- "LE07_L2SP_109036_20010415_02_T1"
- ],
- [
- "2001-11-25T01:17:09.226147Z",
- "LE07_L2SP_109036_20011125_02_T1"
- ],
- [
- "2002-03-09T01:06:42.557069Z",
- "LT05_L2SP_109036_20020309_02_T1"
- ],
- [
- "2002-04-02T01:17:20.477151Z",
- "LE07_L2SP_109036_20020402_02_T1"
- ],
- [
- "2003-09-28T01:16:46.395319Z",
- "LE07_L2SP_109036_20030928_02_T1"
- ],
- [
- "2003-12-25T01:07:17.660088Z",
- "LT05_L2SP_109036_20031225_02_T1"
- ],
- [
- "2004-03-14T01:07:40.073094Z",
- "LT05_L2SP_109036_20040314_02_T1"
- ],
- [
- "2004-05-25T01:17:45.310186Z",
- "LE07_L2SP_109036_20040525_02_T1"
- ],
- [
- "2004-11-17T01:17:31.892262Z",
- "LE07_L2SP_109036_20041117_02_T1"
- ],
- [
- "2005-05-04T01:15:48.455025Z",
- "LT05_L2SP_109036_20050504_02_T1"
- ],
- [
- "2006-08-03T01:18:16.582320Z",
- "LE07_L2SP_109036_20060803_02_T1"
- ],
- [
- "2006-09-04T01:18:11.320109Z",
- "LE07_L2SP_109036_20060904_02_T1"
- ],
- [
- "2006-09-20T01:18:05.598278Z",
- "LE07_L2SP_109036_20060920_02_T1"
- ],
- [
- "2007-03-23T01:23:30.471050Z",
- "LT05_L2SP_109036_20070323_02_T1"
- ],
- [
- "2007-04-08T01:23:25.112075Z",
- "LT05_L2SP_109036_20070408_02_T1"
- ],
- [
- "2007-05-26T01:22:57.976050Z",
- "LT05_L2SP_109036_20070526_02_T1"
- ],
- [
- "2008-10-19T01:12:33.779075Z",
- "LT05_L2SP_109036_20081019_02_T1"
- ],
- [
- "2009-04-29T01:16:01.937000Z",
- "LT05_L2SP_109036_20090429_02_T1"
- ],
- [
- "2009-11-07T01:18:52.995044Z",
- "LT05_L2SP_109036_20091107_02_T1"
- ],
- [
- "2011-02-22T01:22:04.330120Z",
- "LE07_L2SP_109036_20110222_02_T1"
- ],
- [
- "2012-04-29T01:22:59.300556Z",
- "LE07_L2SP_109036_20120429_02_T1"
- ],
- [
- "2012-10-22T01:24:23.654619Z",
- "LE07_L2SP_109036_20121022_02_T1"
- ],
- [
- "2013-04-16T01:24:34.372326Z",
- "LE07_L2SP_109036_20130416_02_T1"
- ],
- [
- "2013-08-14T01:30:35.460887Z",
- "LC08_L2SP_109036_20130814_02_T1"
- ],
- [
- "2014-01-29T01:25:25.225672Z",
- "LE07_L2SP_109036_20140129_02_T1"
- ],
- [
- "2014-11-21T01:28:44.236670Z",
- "LC08_L2SP_109036_20141121_02_T1"
- ],
- [
- "2014-12-31T01:27:04.968857Z",
- "LE07_L2SP_109036_20141231_02_T1"
- ],
- [
- "2015-10-07T01:28:36.425068Z",
- "LC08_L2SP_109036_20151007_02_T1"
- ],
- [
- "2016-02-28T01:28:29.036780Z",
- "LC08_L2SP_109036_20160228_02_T1"
- ],
- [
- "2016-11-26T01:28:55.714885Z",
- "LC08_L2SP_109036_20161126_02_T1"
- ],
- [
- "2017-04-03T01:28:09.062812Z",
- "LC08_L2SP_109036_20170403_02_T1"
- ],
- [
- "2017-05-29T01:31:07.603082Z",
- "LE07_L2SP_109036_20170529_02_T1"
- ],
- [
- "2017-12-07T01:31:01.991331Z",
- "LE07_L2SP_109036_20171207_02_T1"
- ],
- [
- "2017-12-23T01:30:52.071966Z",
- "LE07_L2SP_109036_20171223_02_T1"
- ],
- [
- "2018-03-29T01:29:36.148869Z",
- "LE07_L2SP_109036_20180329_02_T1"
- ],
- [
- "2018-05-24T01:27:29.345952Z",
- "LC08_L2SP_109036_20180524_02_T1"
- ],
- [
- "2019-05-11T01:28:06.855299Z",
- "LC08_L2SP_109036_20190511_02_T1"
- ],
- [
- "2019-12-29T01:09:38.562515Z",
- "LE07_L2SP_109036_20191229_02_T1"
- ],
- [
- "2020-01-06T01:28:47.489611Z",
- "LC08_L2SP_109036_20200106_02_T1"
- ],
- [
- "2020-03-26T01:28:20.889876Z",
- "LC08_L2SP_109036_20200326_02_T1"
- ],
- [
- "2020-12-07T01:28:56.556129Z",
- "LC08_L2SP_109036_20201207_02_T1"
- ],
- [
- "2021-02-25T01:28:36.370870Z",
- "LC08_L2SP_109036_20210225_02_T1"
- ],
- [
- "2021-04-30T01:28:08.644256Z",
- "LC08_L2SP_109036_20210430_02_T1"
- ],
- [
- "2021-10-15T00:23:23.998786Z",
- "LE07_L2SP_109036_20211015_02_T1"
- ],
- [
- "2022-03-08T00:09:29.447631Z",
- "LE07_L2SP_109036_20220308_02_T1"
- ],
- [
- "2022-04-09T01:28:30.079690Z",
- "LC09_L2SP_109036_20220409_02_T1"
- ],
- [
- "2022-05-03T01:28:24.048244Z",
- "LC08_L2SP_109036_20220503_02_T1"
- ],
- [
- "2022-10-02T01:28:56.838357Z",
- "LC09_L2SP_109036_20221002_02_T1"
- ],
- [
- "2022-10-26T01:29:12.599902Z",
- "LC08_L2SP_109036_20221026_02_T1"
- ],
- [
- "2022-11-19T01:29:03.649920Z",
- "LC09_L2SP_109036_20221119_02_T1"
- ],
- [
- "2023-03-19T01:28:30.265546Z",
- "LC08_L2SP_109036_20230319_02_T1"
- ]
- ],
- "landsat-c2l2-sr-lakes-tonle-sap": [
- [
- "1987-12-04T02:48:00.593038Z",
- "LT05_L2SP_126051_19871204_02_T1"
- ],
- [
- "1988-02-06T02:49:05.873013Z",
- "LT05_L2SP_126051_19880206_02_T1"
- ],
- [
- "1988-02-13T02:55:23.459088Z",
- "LT05_L2SP_127051_19880213_02_T1"
- ],
- [
- "1988-02-22T02:49:20.030019Z",
- "LT05_L2SP_126051_19880222_02_T1"
- ],
- [
- "1988-03-09T02:49:29.821038Z",
- "LT05_L2SP_126051_19880309_02_T1"
- ],
- [
- "1988-03-16T02:55:44.276050Z",
- "LT05_L2SP_127051_19880316_02_T1"
- ],
- [
- "1988-04-10T02:49:43.182069Z",
- "LT05_L2SP_126051_19880410_02_T1"
- ],
- [
- "1988-11-04T02:50:14.881063Z",
- "LT05_L2SP_126051_19881104_02_T1"
- ],
- [
- "1989-01-07T02:49:55.041044Z",
- "LT05_L2SP_126051_19890107_02_T1"
- ],
- [
- "1989-01-22T02:58:11.072025Z",
- "LT04_L2SP_127051_19890122_02_T1"
- ],
- [
- "1989-02-15T02:55:48.228063Z",
- "LT05_L2SP_127051_19890215_02_T1"
- ],
- [
- "1989-02-24T02:49:29.423056Z",
- "LT05_L2SP_126051_19890224_02_T1"
- ],
- [
- "1989-03-11T02:58:38.661056Z",
- "LT04_L2SP_127051_19890311_02_T1"
- ],
- [
- "1989-04-04T02:54:53.955050Z",
- "LT05_L2SP_127051_19890404_02_T1"
- ],
- [
- "1989-11-07T02:44:12.654006Z",
- "LT05_L2SP_126051_19891107_02_T1"
- ],
- [
- "1989-12-09T02:43:14.858031Z",
- "LT05_L2SP_126051_19891209_02_T1"
- ],
- [
- "1989-12-17T02:52:34.964069Z",
- "LT04_L2SP_126051_19891217_02_T1"
- ],
- [
- "1990-01-10T02:42:13.966094Z",
- "LT05_L2SP_126051_19900110_02_T1"
- ],
- [
- "1990-01-26T02:41:44.644056Z",
- "LT05_L2SP_126051_19900126_02_T1"
- ],
- [
- "1990-12-04T02:45:12.423088Z",
- "LT04_L2SP_126051_19901204_02_T1"
- ],
- [
- "1990-12-28T02:39:18.924094Z",
- "LT05_L2SP_126051_19901228_02_T1"
- ],
- [
- "1991-01-29T02:40:11.588031Z",
- "LT05_L2SP_126051_19910129_02_T1"
- ],
- [
- "1991-02-05T02:46:19.020006Z",
- "LT05_L2SP_127051_19910205_02_T1"
- ],
- [
- "1991-02-21T02:46:43.846050Z",
- "LT05_L2SP_127051_19910221_02_T1"
- ],
- [
- "1991-04-03T02:41:16.901081Z",
- "LT05_L2SP_126051_19910403_02_T1"
- ],
- [
- "1991-04-19T02:41:33.870019Z",
- "LT05_L2SP_126051_19910419_02_T1"
- ],
- [
- "1991-08-09T02:43:08.792063Z",
- "LT05_L2SP_126051_19910809_02_T1"
- ],
- [
- "1992-03-04T02:43:46.350031Z",
- "LT05_L2SP_126051_19920304_02_T1"
- ],
- [
- "1992-03-27T02:49:51.933013Z",
- "LT05_L2SP_127051_19920327_02_T1"
- ],
- [
- "1992-04-05T02:43:40.024050Z",
- "LT05_L2SP_126051_19920405_02_T1"
- ],
- [
- "1992-04-12T02:49:47.363069Z",
- "LT05_L2SP_127051_19920412_02_T1"
- ],
- [
- "1992-04-21T02:43:32.308088Z",
- "LT05_L2SP_126051_19920421_02_T1"
- ],
- [
- "1992-11-22T02:46:48.007000Z",
- "LT05_L2SP_127051_19921122_02_T1"
- ],
- [
- "1993-01-02T02:41:05.692069Z",
- "LT05_L2SP_126051_19930102_02_T1"
- ],
- [
- "1993-02-03T02:41:28.417000Z",
- "LT05_L2SP_126051_19930203_02_T1"
- ],
- [
- "1993-02-19T02:41:35.184031Z",
- "LT05_L2SP_126051_19930219_02_T1"
- ],
- [
- "1993-03-07T02:41:45.181075Z",
- "LT05_L2SP_126051_19930307_02_T1"
- ],
- [
- "1993-05-01T02:48:14.784038Z",
- "LT05_L2SP_127051_19930501_02_T1"
- ],
- [
- "1993-06-02T02:48:21.146088Z",
- "LT05_L2SP_127051_19930602_02_T1"
- ],
- [
- "1993-11-02T02:41:42.382000Z",
- "LT05_L2SP_126051_19931102_02_T1"
- ],
- [
- "1994-01-05T02:41:10.548081Z",
- "LT05_L2SP_126051_19940105_02_T1"
- ],
- [
- "1994-01-12T02:47:14.461063Z",
- "LT05_L2SP_127051_19940112_02_T1"
- ],
- [
- "1994-01-21T02:40:53.481050Z",
- "LT05_L2SP_126051_19940121_02_T2"
- ],
- [
- "1994-01-28T02:47:02.971069Z",
- "LT05_L2SP_127051_19940128_02_T1"
- ],
- [
- "1994-02-22T02:40:33.361069Z",
- "LT05_L2SP_126051_19940222_02_T1"
- ],
- [
- "1994-11-05T02:34:33.840000Z",
- "LT05_L2SP_126051_19941105_02_T1"
- ],
- [
- "1994-11-12T02:40:30.510088Z",
- "LT05_L2SP_127051_19941112_02_T1"
- ],
- [
- "1994-11-21T02:34:00.318038Z",
- "LT05_L2SP_126051_19941121_02_T1"
- ],
- [
- "1994-11-28T02:39:58.568019Z",
- "LT05_L2SP_127051_19941128_02_T1"
- ],
- [
- "1994-12-23T02:33:01.135063Z",
- "LT05_L2SP_126051_19941223_02_T1"
- ],
- [
- "1994-12-30T02:38:57.651038Z",
- "LT05_L2SP_127051_19941230_02_T1"
- ],
- [
- "1995-01-08T02:32:27.876094Z",
- "LT05_L2SP_126051_19950108_02_T1"
- ],
- [
- "1995-01-15T02:38:23.547094Z",
- "LT05_L2SP_127051_19950115_02_T1"
- ],
- [
- "1995-01-31T02:37:46.812056Z",
- "LT05_L2SP_127051_19950131_02_T1"
- ],
- [
- "1995-02-09T02:31:13.785081Z",
- "LT05_L2SP_126051_19950209_02_T1"
- ],
- [
- "1995-03-13T02:29:56.835088Z",
- "LT05_L2SP_126051_19950313_02_T1"
- ],
- [
- "1995-05-07T02:33:47.310081Z",
- "LT05_L2SP_127051_19950507_02_T1"
- ],
- [
- "1995-12-26T02:21:28.499044Z",
- "LT05_L2SP_126051_19951226_02_T1"
- ],
- [
- "1996-01-02T02:28:08.947044Z",
- "LT05_L2SP_127051_19960102_02_T1"
- ],
- [
- "1996-01-27T02:23:44.489044Z",
- "LT05_L2SP_126051_19960127_02_T2"
- ],
- [
- "1996-03-06T02:32:34.286063Z",
- "LT05_L2SP_127051_19960306_02_T1"
- ],
- [
- "1997-01-13T02:43:12.714031Z",
- "LT05_L2SP_126051_19970113_02_T1"
- ],
- [
- "1997-01-29T02:43:56.432025Z",
- "LT05_L2SP_126051_19970129_02_T1"
- ],
- [
- "1997-04-19T02:47:04.456069Z",
- "LT05_L2SP_126051_19970419_02_T1"
- ],
- [
- "1997-06-13T02:55:10.200050Z",
- "LT05_L2SP_127051_19970613_02_T1"
- ],
- [
- "1997-11-29T02:53:59.651063Z",
- "LT05_L2SP_126051_19971129_02_T1"
- ],
- [
- "1997-12-15T02:54:23.329031Z",
- "LT05_L2SP_126051_19971215_02_T1"
- ],
- [
- "1997-12-22T03:00:43.290075Z",
- "LT05_L2SP_127051_19971222_02_T1"
- ],
- [
- "1997-12-31T02:54:46.229056Z",
- "LT05_L2SP_126051_19971231_02_T1"
- ],
- [
- "1998-01-07T03:01:06.784056Z",
- "LT05_L2SP_127051_19980107_02_T1"
- ],
- [
- "1998-01-23T03:01:26.282006Z",
- "LT05_L2SP_127051_19980123_02_T1"
- ],
- [
- "1998-03-21T02:56:18.521019Z",
- "LT05_L2SP_126051_19980321_02_T1"
- ],
- [
- "1998-04-29T03:02:57.605019Z",
- "LT05_L2SP_127051_19980429_02_T1"
- ],
- [
- "1998-07-11T02:57:50.079088Z",
- "LT05_L2SP_126051_19980711_02_T1"
- ],
- [
- "1998-07-18T03:04:04.722025Z",
- "LT05_L2SP_127051_19980718_02_T1"
- ],
- [
- "1999-02-20T02:58:53.323013Z",
- "LT05_L2SP_126051_19990220_02_T1"
- ],
- [
- "1999-11-19T02:55:11.225013Z",
- "LT05_L2SP_126051_19991119_02_T1"
- ],
- [
- "1999-12-21T02:54:43.560031Z",
- "LT05_L2SP_126051_19991221_02_T1"
- ],
- [
- "2000-01-13T03:00:45.940000Z",
- "LT05_L2SP_127051_20000113_02_T1"
- ],
- [
- "2000-03-17T02:59:38.933081Z",
- "LT05_L2SP_127051_20000317_02_T1"
- ],
- [
- "2000-03-26T02:53:52.991094Z",
- "LT05_L2SP_126051_20000326_02_T1"
- ],
- [
- "2000-04-02T03:00:13.749088Z",
- "LT05_L2SP_127051_20000402_02_T1"
- ],
- [
- "2000-11-05T02:58:25.499094Z",
- "LT05_L2SP_126051_20001105_02_T1"
- ],
- [
- "2000-12-23T02:59:15.753075Z",
- "LT05_L2SP_126051_20001223_02_T1"
- ],
- [
- "2000-12-31T03:10:02.503090Z",
- "LE07_L2SP_126051_20001231_02_T1"
- ],
- [
- "2001-01-24T02:59:31.328063Z",
- "LT05_L2SP_126051_20010124_02_T1"
- ],
- [
- "2001-01-31T03:05:46.392088Z",
- "LT05_L2SP_127051_20010131_02_T1"
- ],
- [
- "2001-02-16T03:05:48.423056Z",
- "LT05_L2SP_127051_20010216_02_T1"
- ],
- [
- "2001-04-21T03:05:48.805088Z",
- "LT05_L2SP_127051_20010421_02_T2"
- ],
- [
- "2001-07-11T03:08:59.427264Z",
- "LE07_L2SP_126051_20010711_02_T1"
- ],
- [
- "2002-01-03T03:08:15.201668Z",
- "LE07_L2SP_126051_20020103_02_T1"
- ],
- [
- "2002-01-10T03:14:34.199422Z",
- "LE07_L2SP_127051_20020110_02_T1"
- ],
- [
- "2002-02-04T03:08:28.349366Z",
- "LE07_L2SP_126051_20020204_02_T1"
- ],
- [
- "2002-02-11T03:14:43.147289Z",
- "LE07_L2SP_127051_20020211_02_T1"
- ],
- [
- "2002-02-20T03:08:26.344424Z",
- "LE07_L2SP_126051_20020220_02_T1"
- ],
- [
- "2002-12-05T03:07:53.084102Z",
- "LE07_L2SP_126051_20021205_02_T1"
- ],
- [
- "2003-01-06T03:07:56.531814Z",
- "LE07_L2SP_126051_20030106_02_T1"
- ],
- [
- "2003-01-13T03:14:12.668023Z",
- "LE07_L2SP_127051_20030113_02_T1"
- ],
- [
- "2003-01-29T03:14:18.523465Z",
- "LE07_L2SP_127051_20030129_02_T1"
- ],
- [
- "2003-02-07T03:08:15.682870Z",
- "LE07_L2SP_126051_20030207_02_T1"
- ],
- [
- "2003-04-03T03:14:32.620678Z",
- "LE07_L2SP_127051_20030403_02_T1"
- ],
- [
- "2003-11-06T03:08:02.623184Z",
- "LE07_L2SP_126051_20031106_02_T1"
- ],
- [
- "2003-12-07T03:04:19.319000Z",
- "LT05_L2SP_127051_20031207_02_T1"
- ],
- [
- "2003-12-24T03:08:29.597563Z",
- "LE07_L2SP_126051_20031224_02_T1"
- ],
- [
- "2004-01-25T03:08:40.131130Z",
- "LE07_L2SP_126051_20040125_02_T1"
- ],
- [
- "2004-02-10T03:08:44.366658Z",
- "LE07_L2SP_126051_20040210_02_T1"
- ],
- [
- "2004-02-17T03:14:55.128963Z",
- "LE07_L2SP_127051_20040217_02_T1"
- ],
- [
- "2004-03-20T03:15:04.887886Z",
- "LE07_L2SP_127051_20040320_02_T2"
- ],
- [
- "2004-04-13T03:05:26.200069Z",
- "LT05_L2SP_127051_20040413_02_T1"
- ],
- [
- "2004-04-14T03:08:48.202940Z",
- "LE07_L2SP_126051_20040414_02_T1"
- ],
- [
- "2004-04-21T03:14:54.832053Z",
- "LE07_L2SP_127051_20040421_02_T1"
- ],
- [
- "2004-10-15T03:04:06.971019Z",
- "LT05_L2SP_126051_20041015_02_T1"
- ],
- [
- "2004-11-08T03:08:33.018799Z",
- "LE07_L2SP_126051_20041108_02_T1"
- ],
- [
- "2004-11-23T03:11:00.784050Z",
- "LT05_L2SP_127051_20041123_02_T1"
- ],
- [
- "2004-12-01T03:14:55.254124Z",
- "LE07_L2SP_127051_20041201_02_T1"
- ],
- [
- "2004-12-02T03:05:03.719031Z",
- "LT05_L2SP_126051_20041202_02_T1"
- ],
- [
- "2004-12-17T03:15:01.446725Z",
- "LE07_L2SP_127051_20041217_02_T1"
- ],
- [
- "2004-12-18T03:05:22.121000Z",
- "LT05_L2SP_126051_20041218_02_T1"
- ],
- [
- "2004-12-26T03:08:56.012037Z",
- "LE07_L2SP_126051_20041226_02_T1"
- ],
- [
- "2005-01-03T03:05:35.231075Z",
- "LT05_L2SP_126051_20050103_02_T1"
- ],
- [
- "2005-01-10T03:11:50.226088Z",
- "LT05_L2SP_127051_20050110_02_T1"
- ],
- [
- "2005-01-11T03:09:01.258025Z",
- "LE07_L2SP_126051_20050111_02_T1"
- ],
- [
- "2005-01-19T03:05:47.491013Z",
- "LT05_L2SP_126051_20050119_02_T1"
- ],
- [
- "2005-02-27T03:12:33.699075Z",
- "LT05_L2SP_127051_20050227_02_T1"
- ],
- [
- "2005-03-08T03:06:30.360019Z",
- "LT05_L2SP_126051_20050308_02_T1"
- ],
- [
- "2005-03-31T03:12:52.757050Z",
- "LT05_L2SP_127051_20050331_02_T1"
- ],
- [
- "2005-05-02T03:13:00.645031Z",
- "LT05_L2SP_127051_20050502_02_T1"
- ],
- [
- "2005-10-18T03:07:40.109038Z",
- "LT05_L2SP_126051_20051018_02_T1"
- ],
- [
- "2006-01-21T03:15:44.111548Z",
- "LE07_L2SP_127051_20060121_02_T1"
- ],
- [
- "2006-02-06T03:15:49.887745Z",
- "LE07_L2SP_127051_20060206_02_T1"
- ],
- [
- "2006-02-07T03:09:58.448075Z",
- "LT05_L2SP_126051_20060207_02_T1"
- ],
- [
- "2006-02-14T03:16:18.844044Z",
- "LT05_L2SP_127051_20060214_02_T1"
- ],
- [
- "2006-02-22T03:15:53.350961Z",
- "LE07_L2SP_127051_20060222_02_T1"
- ],
- [
- "2006-02-23T03:10:19.764000Z",
- "LT05_L2SP_126051_20060223_02_T1"
- ],
- [
- "2006-03-03T03:09:43.455706Z",
- "LE07_L2SP_126051_20060303_02_T1"
- ],
- [
- "2006-10-29T03:09:19.813860Z",
- "LE07_L2SP_126051_20061029_02_T1"
- ],
- [
- "2006-11-05T03:15:36.736429Z",
- "LE07_L2SP_127051_20061105_02_T1"
- ],
- [
- "2006-11-06T03:13:59.225013Z",
- "LT05_L2SP_126051_20061106_02_T1"
- ],
- [
- "2006-11-30T03:09:42.221717Z",
- "LE07_L2SP_126051_20061130_02_T1"
- ],
- [
- "2006-12-08T03:14:14.478013Z",
- "LT05_L2SP_126051_20061208_02_T1"
- ],
- [
- "2006-12-15T03:20:28.422031Z",
- "LT05_L2SP_127051_20061215_02_T1"
- ],
- [
- "2006-12-24T03:14:21.452025Z",
- "LT05_L2SP_126051_20061224_02_T1"
- ],
- [
- "2007-01-16T03:20:41.712088Z",
- "LT05_L2SP_127051_20070116_02_T1"
- ],
- [
- "2007-01-25T03:14:33.533038Z",
- "LT05_L2SP_126051_20070125_02_T1"
- ],
- [
- "2007-02-01T03:20:46.001013Z",
- "LT05_L2SP_127051_20070201_02_T1"
- ],
- [
- "2007-02-10T03:14:36.484081Z",
- "LT05_L2SP_126051_20070210_02_T1"
- ],
- [
- "2007-03-06T03:10:07.985181Z",
- "LE07_L2SP_126051_20070306_02_T1"
- ],
- [
- "2007-03-30T03:14:30.418000Z",
- "LT05_L2SP_126051_20070330_02_T1"
- ],
- [
- "2007-04-07T03:10:09.283450Z",
- "LE07_L2SP_126051_20070407_02_T1"
- ],
- [
- "2007-11-24T03:15:59.798078Z",
- "LE07_L2SP_127051_20071124_02_T1"
- ],
- [
- "2007-12-03T03:09:52.412366Z",
- "LE07_L2SP_126051_20071203_02_T1"
- ],
- [
- "2008-01-11T03:16:09.811437Z",
- "LE07_L2SP_127051_20080111_02_T1"
- ],
- [
- "2008-01-20T03:09:58.616396Z",
- "LE07_L2SP_126051_20080120_02_T1"
- ],
- [
- "2008-02-05T03:09:56.558572Z",
- "LE07_L2SP_126051_20080205_02_T1"
- ],
- [
- "2008-02-13T03:10:15.807063Z",
- "LT05_L2SP_126051_20080213_02_T1"
- ],
- [
- "2008-08-14T03:11:45.431013Z",
- "LT05_L2SP_127051_20080814_02_T1"
- ],
- [
- "2008-10-10T03:03:53.903013Z",
- "LT05_L2SP_126051_20081010_02_T1"
- ],
- [
- "2008-11-27T03:03:17.530013Z",
- "LT05_L2SP_126051_20081127_02_T1"
- ],
- [
- "2008-12-13T03:03:47.518075Z",
- "LT05_L2SP_126051_20081213_02_T1"
- ],
- [
- "2008-12-20T03:10:10.678081Z",
- "LT05_L2SP_127051_20081220_02_T1"
- ],
- [
- "2009-01-05T03:10:36.352006Z",
- "LT05_L2SP_127051_20090105_02_T1"
- ],
- [
- "2009-01-06T03:09:16.339179Z",
- "LE07_L2SP_126051_20090106_02_T1"
- ],
- [
- "2009-01-14T03:04:39.471063Z",
- "LT05_L2SP_126051_20090114_02_T1"
- ],
- [
- "2009-01-21T03:11:02.039038Z",
- "LT05_L2SP_127051_20090121_02_T1"
- ],
- [
- "2009-01-22T03:09:21.639130Z",
- "LE07_L2SP_126051_20090122_02_T1"
- ],
- [
- "2009-01-29T03:15:34.261446Z",
- "LE07_L2SP_127051_20090129_02_T1"
- ],
- [
- "2009-02-06T03:11:27.219000Z",
- "LT05_L2SP_127051_20090206_02_T1"
- ],
- [
- "2009-02-07T03:09:26.920635Z",
- "LE07_L2SP_126051_20090207_02_T1"
- ],
- [
- "2009-04-20T03:06:54.615019Z",
- "LT05_L2SP_126051_20090420_02_T1"
- ],
- [
- "2009-10-29T03:09:51.197013Z",
- "LT05_L2SP_126051_20091029_02_T1"
- ],
- [
- "2009-11-30T03:10:06.041038Z",
- "LT05_L2SP_126051_20091130_02_T1"
- ],
- [
- "2009-12-07T03:16:21.010056Z",
- "LT05_L2SP_127051_20091207_02_T1"
- ],
- [
- "2009-12-16T03:10:15.056038Z",
- "LT05_L2SP_126051_20091216_02_T1"
- ],
- [
- "2009-12-24T03:10:46.850130Z",
- "LE07_L2SP_126051_20091224_02_T1"
- ],
- [
- "2010-01-09T03:11:02.896995Z",
- "LE07_L2SP_126051_20100109_02_T1"
- ],
- [
- "2010-02-25T03:16:44.368094Z",
- "LT05_L2SP_127051_20100225_02_T1"
- ],
- [
- "2010-03-05T03:17:52.534962Z",
- "LE07_L2SP_127051_20100305_02_T1"
- ],
- [
- "2010-03-14T03:11:45.246611Z",
- "LE07_L2SP_126051_20100314_02_T1"
- ],
- [
- "2010-05-08T03:17:57.827460Z",
- "LE07_L2SP_127051_20100508_02_T1"
- ],
- [
- "2010-12-19T03:09:29.613044Z",
- "LT05_L2SP_126051_20101219_02_T1"
- ],
- [
- "2010-12-26T03:15:42.095050Z",
- "LT05_L2SP_127051_20101226_02_T1"
- ],
- [
- "2010-12-27T03:12:44.918545Z",
- "LE07_L2SP_126051_20101227_02_T1"
- ],
- [
- "2011-01-28T03:12:59.897928Z",
- "LE07_L2SP_126051_20110128_02_T1"
- ],
- [
- "2011-02-04T03:19:12.678283Z",
- "LE07_L2SP_127051_20110204_02_T1"
- ],
- [
- "2011-11-28T03:13:19.793001Z",
- "LE07_L2SP_126051_20111128_02_T1"
- ],
- [
- "2011-12-30T03:13:36.905951Z",
- "LE07_L2SP_126051_20111230_02_T1"
- ],
- [
- "2012-01-06T03:19:49.851378Z",
- "LE07_L2SP_127051_20120106_02_T1"
- ],
- [
- "2012-02-07T03:19:54.377691Z",
- "LE07_L2SP_127051_20120207_02_T1"
- ],
- [
- "2013-03-06T03:15:46.349505Z",
- "LE07_L2SP_126051_20130306_02_T1"
- ],
- [
- "2013-05-16T03:21:40.887805Z",
- "LE07_L2SP_127051_20130516_02_T1"
- ],
- [
- "2013-07-12T03:15:01.497301Z",
- "LE07_L2SP_126051_20130712_02_T1"
- ],
- [
- "2013-10-24T03:21:24.119517Z",
- "LC08_L2SP_126051_20131024_02_T1"
- ],
- [
- "2013-11-01T03:15:41.764310Z",
- "LE07_L2SP_126051_20131101_02_T1"
- ],
- [
- "2013-12-03T03:15:57.225713Z",
- "LE07_L2SP_126051_20131203_02_T1"
- ],
- [
- "2013-12-11T03:21:12.903573Z",
- "LC08_L2SP_126051_20131211_02_T1"
- ],
- [
- "2013-12-19T03:15:57.556185Z",
- "LE07_L2SP_126051_20131219_02_T1"
- ],
- [
- "2014-01-03T03:27:10.796483Z",
- "LC08_L2SP_127051_20140103_02_T1"
- ],
- [
- "2014-01-04T03:16:04.279845Z",
- "LE07_L2SP_126051_20140104_02_T1"
- ],
- [
- "2014-01-12T03:20:50.916909Z",
- "LC08_L2SP_126051_20140112_02_T1"
- ],
- [
- "2014-01-20T03:16:18.308941Z",
- "LE07_L2SP_126051_20140120_02_T1"
- ],
- [
- "2014-01-27T03:22:36.639078Z",
- "LE07_L2SP_127051_20140127_02_T1"
- ],
- [
- "2014-01-28T03:20:43.846743Z",
- "LC08_L2SP_126051_20140128_02_T1"
- ],
- [
- "2014-02-04T03:26:49.949911Z",
- "LC08_L2SP_127051_20140204_02_T1"
- ],
- [
- "2014-02-21T03:16:19.793447Z",
- "LE07_L2SP_126051_20140221_02_T1"
- ],
- [
- "2014-03-09T03:16:26.106391Z",
- "LE07_L2SP_126051_20140309_02_T1"
- ],
- [
- "2014-03-17T03:20:06.455678Z",
- "LC08_L2SP_126051_20140317_02_T1"
- ],
- [
- "2014-11-12T03:19:51.565257Z",
- "LC08_L2SP_126051_20141112_02_T1"
- ],
- [
- "2014-12-14T03:19:43.302172Z",
- "LC08_L2SP_126051_20141214_02_T1"
- ],
- [
- "2014-12-22T03:18:09.789924Z",
- "LE07_L2SP_126051_20141222_02_T1"
- ],
- [
- "2014-12-30T03:19:39.967552Z",
- "LC08_L2SP_126051_20141230_02_T1"
- ],
- [
- "2015-01-14T03:24:22.653899Z",
- "LE07_L2SP_127051_20150114_02_T1"
- ],
- [
- "2015-01-15T03:19:39.382766Z",
- "LC08_L2SP_126051_20150115_02_T1"
- ],
- [
- "2015-01-22T03:25:46.038450Z",
- "LC08_L2SP_127051_20150122_02_T1"
- ],
- [
- "2015-01-23T03:18:12.252333Z",
- "LE07_L2SP_126051_20150123_02_T1"
- ],
- [
- "2015-01-31T03:19:34.830432Z",
- "LC08_L2SP_126051_20150131_02_T1"
- ],
- [
- "2015-02-07T03:25:42.855328Z",
- "LC08_L2SP_127051_20150207_02_T1"
- ],
- [
- "2015-02-08T03:18:19.351639Z",
- "LE07_L2SP_126051_20150208_02_T1"
- ],
- [
- "2015-02-16T03:19:26.145922Z",
- "LC08_L2SP_126051_20150216_02_T1"
- ],
- [
- "2015-03-19T03:24:48.671535Z",
- "LE07_L2SP_127051_20150319_02_T1"
- ],
- [
- "2015-04-04T03:24:55.145813Z",
- "LE07_L2SP_127051_20150404_02_T1"
- ],
- [
- "2015-04-20T03:25:01.902560Z",
- "LE07_L2SP_127051_20150420_02_T1"
- ],
- [
- "2015-04-21T03:18:59.524650Z",
- "LC08_L2SP_126051_20150421_02_T1"
- ],
- [
- "2015-06-08T03:18:50.724091Z",
- "LC08_L2SP_126051_20150608_02_T1"
- ],
- [
- "2015-10-30T03:19:44.058978Z",
- "LC08_L2SP_126051_20151030_02_T1"
- ],
- [
- "2015-11-23T03:20:27.312801Z",
- "LE07_L2SP_126051_20151123_02_T1"
- ],
- [
- "2015-12-01T03:19:46.574861Z",
- "LC08_L2SP_126051_20151201_02_T1"
- ],
- [
- "2015-12-24T03:25:56.818868Z",
- "LC08_L2SP_127051_20151224_02_T1"
- ],
- [
- "2016-01-01T03:27:12.749176Z",
- "LE07_L2SP_127051_20160101_02_T1"
- ],
- [
- "2016-01-02T03:19:43.637647Z",
- "LC08_L2SP_126051_20160102_02_T1"
- ],
- [
- "2016-01-26T03:21:22.947895Z",
- "LE07_L2SP_126051_20160126_02_T1"
- ],
- [
- "2016-02-11T03:21:29.487989Z",
- "LE07_L2SP_126051_20160211_02_T1"
- ],
- [
- "2016-02-18T03:27:40.974523Z",
- "LE07_L2SP_127051_20160218_02_T1"
- ],
- [
- "2016-02-19T03:19:30.848775Z",
- "LC08_L2SP_126051_20160219_02_T1"
- ],
- [
- "2016-02-26T03:25:42.225691Z",
- "LC08_L2SP_127051_20160226_02_T1"
- ],
- [
- "2016-03-06T03:19:30.619047Z",
- "LC08_L2SP_126051_20160306_02_T1"
- ],
- [
- "2016-03-14T03:21:42.739317Z",
- "LE07_L2SP_126051_20160314_02_T1"
- ],
- [
- "2016-03-21T03:27:56.106221Z",
- "LE07_L2SP_127051_20160321_02_T1"
- ],
- [
- "2016-04-06T03:27:59.043451Z",
- "LE07_L2SP_127051_20160406_02_T1"
- ],
- [
- "2016-04-07T03:19:15.543638Z",
- "LC08_L2SP_126051_20160407_02_T1"
- ],
- [
- "2016-04-14T03:25:24.093105Z",
- "LC08_L2SP_127051_20160414_02_T1"
- ],
- [
- "2016-04-15T03:21:53.594140Z",
- "LE07_L2SP_126051_20160415_02_T1"
- ],
- [
- "2016-11-25T03:22:09.084971Z",
- "LE07_L2SP_126051_20161125_02_T1"
- ],
- [
- "2016-12-18T03:28:13.703300Z",
- "LE07_L2SP_127051_20161218_02_T1"
- ],
- [
- "2017-01-04T03:19:49.833936Z",
- "LC08_L2SP_126051_20170104_02_T1"
- ],
- [
- "2017-01-19T03:27:54.376340Z",
- "LE07_L2SP_127051_20170119_02_T1"
- ],
- [
- "2017-01-27T03:25:53.490779Z",
- "LC08_L2SP_127051_20170127_02_T1"
- ],
- [
- "2017-01-28T03:21:38.681349Z",
- "LE07_L2SP_126051_20170128_02_T1"
- ],
- [
- "2017-02-04T03:27:47.643031Z",
- "LE07_L2SP_127051_20170204_02_T1"
- ],
- [
- "2017-02-05T03:19:37.962610Z",
- "LC08_L2SP_126051_20170205_02_T1"
- ],
- [
- "2017-02-12T03:25:45.525643Z",
- "LC08_L2SP_127051_20170212_02_T1"
- ],
- [
- "2017-02-13T03:21:33.504036Z",
- "LE07_L2SP_126051_20170213_02_T1"
- ],
- [
- "2017-02-20T03:27:48.532556Z",
- "LE07_L2SP_127051_20170220_02_T1"
- ],
- [
- "2017-02-28T03:25:40.247825Z",
- "LC08_L2SP_127051_20170228_02_T1"
- ],
- [
- "2017-03-01T03:21:42.446036Z",
- "LE07_L2SP_126051_20170301_02_T1"
- ],
- [
- "2017-12-06T03:19:46.450403Z",
- "LC08_L2SP_126051_20171206_02_T1"
- ],
- [
- "2017-12-13T03:25:58.183856Z",
- "LC08_L2SP_127051_20171213_02_T1"
- ],
- [
- "2017-12-30T03:21:49.139360Z",
- "LE07_L2SP_126051_20171230_02_T1"
- ],
- [
- "2018-01-14T03:25:52.133417Z",
- "LC08_L2SP_127051_20180114_02_T1"
- ],
- [
- "2018-02-07T03:27:23.755822Z",
- "LE07_L2SP_127051_20180207_02_T1"
- ],
- [
- "2018-02-08T03:19:28.388754Z",
- "LC08_L2SP_126051_20180208_02_T1"
- ],
- [
- "2018-02-15T03:25:36.938148Z",
- "LC08_L2SP_127051_20180215_02_T1"
- ],
- [
- "2018-03-11T03:27:03.782830Z",
- "LE07_L2SP_127051_20180311_02_T1"
- ],
- [
- "2018-03-12T03:19:13.492882Z",
- "LC08_L2SP_126051_20180312_02_T1"
- ],
- [
- "2018-10-30T03:16:30.140086Z",
- "LE07_L2SP_126051_20181030_02_T1"
- ],
- [
- "2018-11-06T03:22:31.683526Z",
- "LE07_L2SP_127051_20181106_02_T1"
- ],
- [
- "2018-12-01T03:15:44.131471Z",
- "LE07_L2SP_126051_20181201_02_T1"
- ],
- [
- "2018-12-24T03:21:16.490585Z",
- "LE07_L2SP_127051_20181224_02_T1"
- ],
- [
- "2018-12-25T03:19:30.309284Z",
- "LC08_L2SP_126051_20181225_02_T1"
- ],
- [
- "2019-01-17T03:25:38.189824Z",
- "LC08_L2SP_127051_20190117_02_T1"
- ],
- [
- "2019-01-25T03:20:16.212482Z",
- "LE07_L2SP_127051_20190125_02_T1"
- ],
- [
- "2019-02-03T03:13:48.684625Z",
- "LE07_L2SP_126051_20190203_02_T1"
- ],
- [
- "2019-02-11T03:19:22.800138Z",
- "LC08_L2SP_126051_20190211_02_T1"
- ],
- [
- "2019-02-27T03:19:19.231836Z",
- "LC08_L2SP_126051_20190227_02_T1"
- ],
- [
- "2019-03-06T03:25:27.718491Z",
- "LC08_L2SP_127051_20190306_02_T1"
- ],
- [
- "2019-03-07T03:12:50.303968Z",
- "LE07_L2SP_126051_20190307_02_T1"
- ],
- [
- "2019-03-14T03:18:47.471432Z",
- "LE07_L2SP_127051_20190314_02_T1"
- ],
- [
- "2019-03-22T03:25:23.189613Z",
- "LC08_L2SP_127051_20190322_02_T1"
- ],
- [
- "2019-05-01T03:17:05.627153Z",
- "LE07_L2SP_127051_20190501_02_T1"
- ],
- [
- "2019-07-12T03:25:44.732995Z",
- "LC08_L2SP_127051_20190712_02_T1"
- ],
- [
- "2019-10-25T03:20:01.460261Z",
- "LC08_L2SP_126051_20191025_02_T1"
- ],
- [
- "2019-11-17T03:26:08.808885Z",
- "LC08_L2SP_127051_20191117_02_T1"
- ],
- [
- "2019-11-26T03:19:56.829298Z",
- "LC08_L2SP_126051_20191126_02_T1"
- ],
- [
- "2019-12-11T03:07:46.893717Z",
- "LE07_L2SP_127051_20191211_02_T1"
- ],
- [
- "2019-12-12T03:19:55.878939Z",
- "LC08_L2SP_126051_20191212_02_T1"
- ],
- [
- "2019-12-28T03:19:52.160815Z",
- "LC08_L2SP_126051_20191228_02_T1"
- ],
- [
- "2020-01-05T03:00:18.494223Z",
- "LE07_L2SP_126051_20200105_02_T1"
- ],
- [
- "2020-01-13T03:19:48.635803Z",
- "LC08_L2SP_126051_20200113_02_T1"
- ],
- [
- "2020-01-20T03:25:57.712764Z",
- "LC08_L2SP_127051_20200120_02_T1"
- ],
- [
- "2020-01-21T02:59:31.082993Z",
- "LE07_L2SP_126051_20200121_02_T1"
- ],
- [
- "2020-01-28T03:05:21.032759Z",
- "LE07_L2SP_127051_20200128_02_T1"
- ],
- [
- "2020-02-05T03:25:52.100469Z",
- "LC08_L2SP_127051_20200205_02_T1"
- ],
- [
- "2020-02-06T02:58:42.905337Z",
- "LE07_L2SP_126051_20200206_02_T1"
- ],
- [
- "2020-02-21T03:25:49.025512Z",
- "LC08_L2SP_127051_20200221_02_T1"
- ],
- [
- "2020-02-22T02:57:53.036948Z",
- "LE07_L2SP_126051_20200222_02_T1"
- ],
- [
- "2020-02-29T03:03:41.486461Z",
- "LE07_L2SP_127051_20200229_02_T1"
- ],
- [
- "2020-03-08T03:25:43.323795Z",
- "LC08_L2SP_127051_20200308_02_T1"
- ],
- [
- "2020-03-09T02:57:01.528644Z",
- "LE07_L2SP_126051_20200309_02_T1"
- ],
- [
- "2020-04-01T03:01:55.602254Z",
- "LE07_L2SP_127051_20200401_02_T1"
- ],
- [
- "2020-04-26T02:54:17.571350Z",
- "LE07_L2SP_126051_20200426_02_T1"
- ],
- [
- "2020-08-31T03:25:57.335741Z",
- "LC08_L2SP_127051_20200831_02_T1"
- ],
- [
- "2020-11-19T03:26:06.851734Z",
- "LC08_L2SP_127051_20201119_02_T1"
- ],
- [
- "2020-12-30T03:19:55.118484Z",
- "LC08_L2SP_126051_20201230_02_T1"
- ],
- [
- "2021-01-14T02:43:22.783599Z",
- "LE07_L2SP_127051_20210114_02_T1"
- ],
- [
- "2021-01-15T03:19:48.153029Z",
- "LC08_L2SP_126051_20210115_02_T1"
- ],
- [
- "2021-01-22T03:25:57.008757Z",
- "LC08_L2SP_127051_20210122_02_T1"
- ],
- [
- "2021-01-30T02:42:13.626774Z",
- "LE07_L2SP_127051_20210130_02_T1"
- ],
- [
- "2021-02-07T03:25:55.176504Z",
- "LC08_L2SP_127051_20210207_02_T1"
- ],
- [
- "2021-02-15T02:41:02.226173Z",
- "LE07_L2SP_127051_20210215_02_T1"
- ],
- [
- "2021-02-23T03:25:50.295820Z",
- "LC08_L2SP_127051_20210223_02_T1"
- ],
- [
- "2021-03-12T02:32:55.499315Z",
- "LE07_L2SP_126051_20210312_02_T1"
- ],
- [
- "2021-07-02T02:23:37.329076Z",
- "LE07_L2SP_126051_20210702_02_T1"
- ],
- [
- "2021-12-16T03:26:04.939420Z",
- "LC09_L2SP_127051_20211216_02_T1"
- ],
- [
- "2022-01-09T03:26:02.838452Z",
- "LC08_L2SP_127051_20220109_02_T1"
- ],
- [
- "2022-01-17T03:26:03.316967Z",
- "LC09_L2SP_127051_20220117_02_T1"
- ],
- [
- "2022-01-18T03:19:50.106658Z",
- "LC08_L2SP_126051_20220118_02_T1"
- ],
- [
- "2022-01-25T03:25:57.983294Z",
- "LC08_L2SP_127051_20220125_02_T1"
- ],
- [
- "2022-02-27T03:19:40.954721Z",
- "LC09_L2SP_126051_20220227_02_T1"
- ],
- [
- "2022-11-02T03:20:16.401626Z",
- "LC08_L2SP_126051_20221102_02_T1"
- ],
- [
- "2022-12-12T03:20:04.785513Z",
- "LC09_L2SP_126051_20221212_02_T1"
- ],
- [
- "2022-12-20T03:20:02.551373Z",
- "LC08_L2SP_126051_20221220_02_T1"
- ],
- [
- "2022-12-28T03:20:03.319697Z",
- "LC09_L2SP_126051_20221228_02_T1"
- ],
- [
- "2023-01-29T03:20:03.641915Z",
- "LC09_L2SP_126051_20230129_02_T1"
- ],
- [
- "2023-02-21T03:26:08.558915Z",
- "LC09_L2SP_127051_20230221_02_T1"
- ],
- [
- "2023-03-05T01:24:30.738277Z",
- "LE07_L2SP_126051_20230305_02_T1"
- ],
- [
- "2023-03-10T01:28:58.648872Z",
- "LE07_L2SP_127051_20230310_02_T1"
- ],
- [
- "2023-03-10T03:19:36.398519Z",
- "LC08_L2SP_126051_20230310_02_T1"
- ],
- [
- "2023-03-26T03:19:27.417316Z",
- "LC08_L2SP_126051_20230326_02_T1"
- ],
- [
- "2023-03-27T01:24:01.196545Z",
- "LE07_L2SP_126051_20230327_02_T1"
- ],
- [
- "2023-04-23T01:26:43.127216Z",
- "LE07_L2SP_127051_20230423_02_T1"
- ],
- [
- "2023-05-05T01:16:34.740068Z",
- "LE07_L2SP_126051_20230505_02_T1"
- ]
- ],
- "landsat-c2l2-sr-lakes-vanern": [
- [
- "1984-04-18T09:40:30.064088Z",
- "LT05_L2SP_195019_19840418_02_T1"
- ],
- [
- "1984-05-20T09:41:04.989019Z",
- "LT05_L2SP_195019_19840520_02_T1"
- ],
- [
- "1985-05-07T09:43:26.944000Z",
- "LT05_L2SP_195019_19850507_02_T2"
- ],
- [
- "1985-07-10T09:43:17.404006Z",
- "LT05_L2SP_195019_19850710_02_T2"
- ],
- [
- "1985-07-26T09:43:10.325050Z",
- "LT05_L2SP_195019_19850726_02_T1"
- ],
- [
- "1985-09-12T09:42:38.529088Z",
- "LT05_L2SP_195019_19850912_02_T2"
- ],
- [
- "1985-09-28T09:42:27.919044Z",
- "LT05_L2SP_195019_19850928_02_T1"
- ],
- [
- "1986-04-08T09:38:54.696013Z",
- "LT05_L2SP_195019_19860408_02_T1"
- ],
- [
- "1986-06-27T09:36:41.178069Z",
- "LT05_L2SP_195019_19860627_02_T1"
- ],
- [
- "1986-10-17T09:32:50.806031Z",
- "LT05_L2SP_195019_19861017_02_T1"
- ],
- [
- "1986-11-02T09:32:16.953056Z",
- "LT05_L2SP_195019_19861102_02_T2"
- ],
- [
- "1987-10-04T09:40:35.000063Z",
- "LT05_L2SP_195019_19871004_02_T1"
- ],
- [
- "1988-03-12T09:43:13.609069Z",
- "LT05_L2SP_195019_19880312_02_T1"
- ],
- [
- "1988-05-15T09:43:42.435063Z",
- "LT05_L2SP_195019_19880515_02_T1"
- ],
- [
- "1989-02-11T09:43:19.349025Z",
- "LT05_L2SP_195019_19890211_02_T2"
- ],
- [
- "1989-05-18T09:41:44.657063Z",
- "LT05_L2SP_195019_19890518_02_T1"
- ],
- [
- "1989-07-05T09:40:54.532019Z",
- "LT05_L2SP_195019_19890705_02_T1"
- ],
- [
- "1989-08-22T09:39:52.913038Z",
- "LT05_L2SP_195019_19890822_02_T1"
- ],
- [
- "1990-05-05T09:33:28.588044Z",
- "LT05_L2SP_195019_19900505_02_T1"
- ],
- [
- "1991-05-08T09:35:40.063069Z",
- "LT05_L2SP_195019_19910508_02_T1"
- ],
- [
- "1991-07-27T09:36:47.624012Z",
- "LT05_L2SP_195019_19910727_02_T2"
- ],
- [
- "1992-06-11T09:36:44.745050Z",
- "LT05_L2SP_195019_19920611_02_T1"
- ],
- [
- "1993-02-22T09:35:16.587006Z",
- "LT05_L2SP_195019_19930222_02_T1"
- ],
- [
- "1993-06-30T09:35:44.088006Z",
- "LT05_L2SP_195019_19930630_02_T1"
- ],
- [
- "1993-09-18T09:35:38.307012Z",
- "LT05_L2SP_195019_19930918_02_T1"
- ],
- [
- "1994-06-01T09:32:31.868094Z",
- "LT05_L2SP_195019_19940601_02_T2"
- ],
- [
- "1994-07-19T09:31:22.586038Z",
- "LT05_L2SP_195019_19940719_02_T1"
- ],
- [
- "1994-08-04T09:30:54.451038Z",
- "LT05_L2SP_195019_19940804_02_T1"
- ],
- [
- "1995-08-23T09:16:22.024000Z",
- "LT05_L2SP_195019_19950823_02_T1"
- ],
- [
- "1997-04-06T09:40:19.659044Z",
- "LT05_L2SP_195019_19970406_02_T1"
- ],
- [
- "2000-03-05T10:05:55.456969Z",
- "LE07_L2SP_195019_20000305_02_T1"
- ],
- [
- "2000-03-29T09:47:41.418025Z",
- "LT05_L2SP_195019_20000329_02_T2"
- ],
- [
- "2000-05-08T10:05:28.605108Z",
- "LE07_L2SP_195019_20000508_02_T1"
- ],
- [
- "2000-05-16T09:49:06.686094Z",
- "LT05_L2SP_195019_20000516_02_T1"
- ],
- [
- "2000-06-17T09:49:43.763075Z",
- "LT05_L2SP_195019_20000617_02_T1"
- ],
- [
- "2000-07-03T09:50:05.645056Z",
- "LT05_L2SP_195019_20000703_02_T2"
- ],
- [
- "2000-08-12T10:04:24.699763Z",
- "LE07_L2SP_195019_20000812_02_T1"
- ],
- [
- "2001-03-24T10:03:30.413694Z",
- "LE07_L2SP_195019_20010324_02_T1"
- ],
- [
- "2001-05-11T10:03:16.829419Z",
- "LE07_L2SP_195019_20010511_02_T1"
- ],
- [
- "2002-04-28T10:02:08.676941Z",
- "LE07_L2SP_195019_20020428_02_T1"
- ],
- [
- "2002-05-14T10:02:02.479417Z",
- "LE07_L2SP_195019_20020514_02_T1"
- ],
- [
- "2002-05-22T09:50:04.849031Z",
- "LT05_L2SP_195019_20020522_02_T1"
- ],
- [
- "2002-06-07T09:49:47.946000Z",
- "LT05_L2SP_195019_20020607_02_T2"
- ],
- [
- "2002-07-17T10:01:39.662326Z",
- "LE07_L2SP_195019_20020717_02_T1"
- ],
- [
- "2002-08-18T10:01:28.564044Z",
- "LE07_L2SP_195019_20020818_02_T1"
- ],
- [
- "2002-09-03T10:01:19.030073Z",
- "LE07_L2SP_195019_20020903_02_T1"
- ],
- [
- "2003-03-14T10:02:03.319191Z",
- "LE07_L2SP_195019_20030314_02_T1"
- ],
- [
- "2003-03-30T10:02:01.403842Z",
- "LE07_L2SP_195019_20030330_02_T1"
- ],
- [
- "2003-08-05T10:01:42.592267Z",
- "LE07_L2SP_195019_20030805_02_T1"
- ],
- [
- "2003-08-29T09:50:33.232019Z",
- "LT05_L2SP_195019_20030829_02_T1"
- ],
- [
- "2004-02-21T09:52:16.821063Z",
- "LT05_L2SP_195019_20040221_02_T1"
- ],
- [
- "2004-04-01T10:02:35.588448Z",
- "LE07_L2SP_195019_20040401_02_T1"
- ],
- [
- "2004-04-09T09:52:50.610056Z",
- "LT05_L2SP_195019_20040409_02_T1"
- ],
- [
- "2004-08-07T10:02:07.682914Z",
- "LE07_L2SP_195019_20040807_02_T1"
- ],
- [
- "2004-08-23T10:02:06.312043Z",
- "LE07_L2SP_195019_20040823_02_T1"
- ],
- [
- "2004-09-16T09:57:11.646013Z",
- "LT05_L2SP_195019_20040916_02_T2"
- ],
- [
- "2004-10-10T10:01:50.224468Z",
- "LE07_L2SP_195019_20041010_02_T1"
- ],
- [
- "2005-03-03T10:03:00.645816Z",
- "LE07_L2SP_195019_20050303_02_T1"
- ],
- [
- "2005-03-19T10:03:01.535410Z",
- "LE07_L2SP_195019_20050319_02_T1"
- ],
- [
- "2005-04-28T10:00:30.762069Z",
- "LT05_L2SP_195019_20050428_02_T1"
- ],
- [
- "2006-04-15T10:05:01.460081Z",
- "LT05_L2SP_195019_20060415_02_T1"
- ],
- [
- "2006-04-23T10:03:20.167555Z",
- "LE07_L2SP_195019_20060423_02_T1"
- ],
- [
- "2006-06-10T10:03:20.746563Z",
- "LE07_L2SP_195019_20060610_02_T1"
- ],
- [
- "2006-08-05T10:06:38.544088Z",
- "LT05_L2SP_195019_20060805_02_T1"
- ],
- [
- "2006-09-14T10:02:52.032222Z",
- "LE07_L2SP_195019_20060914_02_T1"
- ],
- [
- "2006-09-22T10:07:11.658038Z",
- "LT05_L2SP_195019_20060922_02_T1"
- ],
- [
- "2007-04-02T10:08:12.067056Z",
- "LT05_L2SP_195019_20070402_02_T2"
- ],
- [
- "2007-08-24T10:06:34.475069Z",
- "LT05_L2SP_195019_20070824_02_T1"
- ],
- [
- "2008-03-27T10:03:28.487178Z",
- "LE07_L2SP_195019_20080327_02_T1"
- ],
- [
- "2008-07-25T09:59:51.714050Z",
- "LT05_L2SP_195019_20080725_02_T1"
- ],
- [
- "2009-04-23T10:00:39.986019Z",
- "LT05_L2SP_195019_20090423_02_T2"
- ],
- [
- "2009-05-01T10:03:43.747002Z",
- "LE07_L2SP_195019_20090501_02_T1"
- ],
- [
- "2009-05-25T10:01:16.433013Z",
- "LT05_L2SP_195019_20090525_02_T2"
- ],
- [
- "2009-06-26T10:01:51.070038Z",
- "LT05_L2SP_195019_20090626_02_T1"
- ],
- [
- "2010-07-07T10:05:32.053949Z",
- "LE07_L2SP_195019_20100707_02_T1"
- ],
- [
- "2010-10-11T10:05:39.742558Z",
- "LE07_L2SP_195019_20101011_02_T1"
- ],
- [
- "2010-11-04T10:03:08.464050Z",
- "LT05_L2SP_195019_20101104_02_T1"
- ],
- [
- "2011-03-28T10:03:09.205063Z",
- "LT05_L2SP_195019_20110328_02_T1"
- ],
- [
- "2011-04-29T10:02:57.615044Z",
- "LT05_L2SP_195019_20110429_02_T1"
- ],
- [
- "2011-05-07T10:06:55.723556Z",
- "LE07_L2SP_195019_20110507_02_T1"
- ],
- [
- "2012-04-07T10:07:23.370463Z",
- "LE07_L2SP_195019_20120407_02_T1"
- ],
- [
- "2012-05-25T10:07:54.213845Z",
- "LE07_L2SP_195019_20120525_02_T1"
- ],
- [
- "2013-03-25T10:09:22.314253Z",
- "LE07_L2SP_195019_20130325_02_T1"
- ],
- [
- "2013-03-27T10:14:18.256447Z",
- "LC08_L2SP_195019_20130327_02_T1"
- ],
- [
- "2013-07-07T10:15:18.887752Z",
- "LC08_L2SP_195019_20130707_02_T1"
- ],
- [
- "2013-07-23T10:15:17.303638Z",
- "LC08_L2SP_195019_20130723_02_T1"
- ],
- [
- "2014-03-12T10:10:08.896214Z",
- "LE07_L2SP_195019_20140312_02_T1"
- ],
- [
- "2014-03-28T10:10:16.355993Z",
- "LE07_L2SP_195019_20140328_02_T1"
- ],
- [
- "2014-06-08T10:12:59.767115Z",
- "LC08_L2SP_195019_20140608_02_T1"
- ],
- [
- "2014-08-27T10:13:23.996569Z",
- "LC08_L2SP_195019_20140827_02_T1"
- ],
- [
- "2014-09-04T10:10:58.244905Z",
- "LE07_L2SP_195019_20140904_02_T1"
- ],
- [
- "2015-08-14T10:13:01.621835Z",
- "LC08_L2SP_195019_20150814_02_T1"
- ],
- [
- "2015-08-22T10:13:10.447648Z",
- "LE07_L2SP_195019_20150822_02_T1"
- ],
- [
- "2015-09-07T10:13:12.327722Z",
- "LE07_L2SP_195019_20150907_02_T1"
- ],
- [
- "2015-10-25T10:13:41.793927Z",
- "LE07_L2SP_195019_20151025_02_T1"
- ],
- [
- "2016-05-04T10:15:42.554242Z",
- "LE07_L2SP_195019_20160504_02_T1"
- ],
- [
- "2016-10-03T10:13:34.916024Z",
- "LC08_L2SP_195019_20161003_02_T1"
- ],
- [
- "2017-02-24T10:13:12.862548Z",
- "LC08_L2SP_195019_20170224_02_T1"
- ],
- [
- "2017-03-28T10:12:55.561543Z",
- "LC08_L2SP_195019_20170328_02_T1"
- ],
- [
- "2017-05-23T10:15:49.787058Z",
- "LE07_L2SP_195019_20170523_02_T1"
- ],
- [
- "2017-08-11T10:15:56.057514Z",
- "LE07_L2SP_195019_20170811_02_T1"
- ],
- [
- "2018-03-31T10:12:46.801216Z",
- "LC08_L2SP_195019_20180331_02_T1"
- ],
- [
- "2018-05-10T10:13:36.736752Z",
- "LE07_L2SP_195019_20180510_02_T1"
- ],
- [
- "2018-05-18T10:12:18.102707Z",
- "LC08_L2SP_195019_20180518_02_T1"
- ],
- [
- "2018-06-03T10:12:06.288870Z",
- "LC08_L2SP_195019_20180603_02_T1"
- ],
- [
- "2018-06-27T10:12:47.837126Z",
- "LE07_L2SP_195019_20180627_02_T1"
- ],
- [
- "2018-07-21T10:12:31.913391Z",
- "LC08_L2SP_195019_20180721_02_T1"
- ],
- [
- "2019-04-19T10:12:45.527271Z",
- "LC08_L2SP_195019_20190419_02_T1"
- ],
- [
- "2019-05-13T10:04:08.110949Z",
- "LE07_L2SP_195019_20190513_02_T1"
- ],
- [
- "2019-05-29T10:03:32.228767Z",
- "LE07_L2SP_195019_20190529_02_T1"
- ],
- [
- "2019-06-22T10:13:11.310632Z",
- "LC08_L2SP_195019_20190622_02_T1"
- ],
- [
- "2019-08-25T10:13:30.096151Z",
- "LC08_L2SP_195019_20190825_02_T1"
- ],
- [
- "2019-09-18T09:59:03.399774Z",
- "LE07_L2SP_195019_20190918_02_T1"
- ],
- [
- "2019-10-28T10:13:43.187865Z",
- "LC08_L2SP_195019_20191028_02_T1"
- ],
- [
- "2020-04-21T10:12:52.704953Z",
- "LC08_L2SP_195019_20200421_02_T1"
- ],
- [
- "2020-05-31T09:45:50.886561Z",
- "LE07_L2SP_195019_20200531_02_T1"
- ],
- [
- "2020-06-24T10:13:03.108884Z",
- "LC08_L2SP_195019_20200624_02_T1"
- ],
- [
- "2021-03-23T10:13:08.073854Z",
- "LC08_L2SP_195019_20210323_02_T1"
- ],
- [
- "2021-04-16T09:23:44.181205Z",
- "LE07_L2SP_195019_20210416_02_T1"
- ],
- [
- "2021-06-03T09:19:40.640875Z",
- "LE07_L2SP_195019_20210603_02_T1"
- ],
- [
- "2021-08-22T09:12:51.469284Z",
- "LE07_L2SP_195019_20210822_02_T1"
- ],
- [
- "2021-08-30T10:13:32.468987Z",
- "LC08_L2SP_195019_20210830_02_T1"
- ],
- [
- "2021-10-17T10:13:45.138092Z",
- "LC08_L2SP_195019_20211017_02_T1"
- ],
- [
- "2022-04-11T10:13:08.835472Z",
- "LC08_L2SP_195019_20220411_02_T1"
- ],
- [
- "2022-04-19T10:13:06.901433Z",
- "LC09_L2SP_195019_20220419_02_T1"
- ],
- [
- "2022-05-06T08:47:24.818807Z",
- "LE07_L2SP_195019_20220506_02_T1"
- ],
- [
- "2022-08-25T10:13:33.414759Z",
- "LC09_L2SP_195019_20220825_02_T1"
- ],
- [
- "2023-03-05T10:13:32.500883Z",
- "LC09_L2SP_195019_20230305_02_T1"
- ],
- [
- "2023-04-22T10:13:10.041811Z",
- "LC09_L2SP_195019_20230422_02_T1"
- ],
- [
- "2023-04-30T10:12:48.495906Z",
- "LC08_L2SP_195019_20230430_02_T1"
- ],
- [
- "2023-05-08T10:12:58.736354Z",
- "LC09_L2SP_195019_20230508_02_T1"
- ],
- [
- "2023-05-18T08:08:31.077624Z",
- "LE07_L2SP_195019_20230518_02_T1"
- ],
- [
- "2023-05-24T10:12:48.006851Z",
- "LC09_L2SP_195019_20230524_02_T1"
- ],
- [
- "2023-06-09T10:12:43.999938Z",
- "LC09_L2SP_195019_20230609_02_T1"
- ]
- ],
- "nceo_africa_2017": [
- [
- "2017-01-01T00:00:00+00:00",
- "s3://nasa-maap-data-store/file-staging/nasa-map/nceo-africa-2017/AGB_map_2017v0m_COG.tif"
- ]
- ],
- "nightlights-hd-1band-PR01": [
- [
- "2017-07-21T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-1band/BeforeMaria_Stage0_2017-07-21_2017-09-19_1band.tif"
- ],
- [
- "2017-09-20T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-1band/Maria_Stage1_2017-09-20_2017-11-20_1band.tif"
- ],
- [
- "2017-11-21T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-1band/Maria_Stage2_2017-11-21_2018-01-20_1band.tif"
- ],
- [
- "2018-01-21T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-1band/Maria_Stage3_2018-01-21_2018-03-20_1band.tif"
- ]
- ],
- "nightlights-hd-1band-US02": [
- [
- "2021-08-09T00:00:00+00:00",
- "s3://veda-data-store-staging/nightlights-hd-1band/BMHD_Ida_NO_LA_2021-08-09_1band.tif"
- ],
- [
- "2021-08-31T00:00:00+00:00",
- "s3://veda-data-store-staging/nightlights-hd-1band/BMHD_Ida_NO_LA_2021-08-31_1band.tif"
- ]
- ],
- "nightlights-hd-monthly-BD01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDhaka_Dhaka-city_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-BE01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGhent_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-CN01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBeijing_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-DE01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHamburg_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-ES01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMadrid_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-ES02": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledBarcelona_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-FR01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledParis_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-FR02": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMarseille_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-FR03": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledDunkirk_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-GB01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLondon_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-IT01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledVenice_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-IT02": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201901.tif"
- ],
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201902.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201903.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201904.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201905.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201906.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201907.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201908.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201909.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201910.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201911.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_201912.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202001.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202002.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202003.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202004.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202005.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202006.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202007.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202008.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202009.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202010.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202011.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202012.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202101.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202102.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202103.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202104.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202105.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202106.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202107.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202108.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202109.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202110.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202111.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202112.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202201.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202202.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledMilan_202203.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledRome_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-IT03": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGenoa_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-JP01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledTokyo-23Wards_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-JP02": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledOsaka_Osaka-city_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-JP03": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledKyoto_Kyoto-city_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-JP04": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledHokkaido_Sapporo_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-JP05": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledFukuoka_Fukuoka-city_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-JP06": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAichi_Nagoya-city_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-LK01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledColombo_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-NL01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAmsterdam_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-NZ01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledAuckland_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-PE01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledLima_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-PL01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledGdynia_202203.tif"
- ]
- ],
- "nightlights-hd-monthly-SG01": [
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201901.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201902.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201903.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201904.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201905.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201906.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201907.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201908.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201909.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201910.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201911.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_201912.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202001.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202002.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202003.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202004.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202005.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202006.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202007.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202008.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202009.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202010.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202011.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202012.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202101.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202102.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202103.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202104.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202105.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202106.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202107.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202108.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202109.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202110.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202111.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202112.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202201.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202202.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/nightlights-hd-monthly/finalBMHD_ScaledSingapore_202203.tif"
- ]
- ],
- "no2-monthly": [
- [
- "2016-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201601_Col3_V4.nc.tif"
- ],
- [
- "2016-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201602_Col3_V4.nc.tif"
- ],
- [
- "2016-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201603_Col3_V4.nc.tif"
- ],
- [
- "2016-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201604_Col3_V4.nc.tif"
- ],
- [
- "2016-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201605_Col3_V4.nc.tif"
- ],
- [
- "2016-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201606_Col3_V4.nc.tif"
- ],
- [
- "2016-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201607_Col3_V4.nc.tif"
- ],
- [
- "2016-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201608_Col3_V4.nc.tif"
- ],
- [
- "2016-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201609_Col3_V4.nc.tif"
- ],
- [
- "2016-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201610_Col3_V4.nc.tif"
- ],
- [
- "2016-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201611_Col3_V4.nc.tif"
- ],
- [
- "2016-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201612_Col3_V4.nc.tif"
- ],
- [
- "2017-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201701_Col3_V4.nc.tif"
- ],
- [
- "2017-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201702_Col3_V4.nc.tif"
- ],
- [
- "2017-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201703_Col3_V4.nc.tif"
- ],
- [
- "2017-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201704_Col3_V4.nc.tif"
- ],
- [
- "2017-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201705_Col3_V4.nc.tif"
- ],
- [
- "2017-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201706_Col3_V4.nc.tif"
- ],
- [
- "2017-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201707_Col3_V4.nc.tif"
- ],
- [
- "2017-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201708_Col3_V4.nc.tif"
- ],
- [
- "2017-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201709_Col3_V4.nc.tif"
- ],
- [
- "2017-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201710_Col3_V4.nc.tif"
- ],
- [
- "2017-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201711_Col3_V4.nc.tif"
- ],
- [
- "2017-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201712_Col3_V4.nc.tif"
- ],
- [
- "2018-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201801_Col3_V4.nc.tif"
- ],
- [
- "2018-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201802_Col3_V4.nc.tif"
- ],
- [
- "2018-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201803_Col3_V4.nc.tif"
- ],
- [
- "2018-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201804_Col3_V4.nc.tif"
- ],
- [
- "2018-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201805_Col3_V4.nc.tif"
- ],
- [
- "2018-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201806_Col3_V4.nc.tif"
- ],
- [
- "2018-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201807_Col3_V4.nc.tif"
- ],
- [
- "2018-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201808_Col3_V4.nc.tif"
- ],
- [
- "2018-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201809_Col3_V4.nc.tif"
- ],
- [
- "2018-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201810_Col3_V4.nc.tif"
- ],
- [
- "2018-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201811_Col3_V4.nc.tif"
- ],
- [
- "2018-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201812_Col3_V4.nc.tif"
- ],
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201901_Col3_V4.nc.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201902_Col3_V4.nc.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201903_Col3_V4.nc.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201904_Col3_V4.nc.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201905_Col3_V4.nc.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201906_Col3_V4.nc.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201907_Col3_V4.nc.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201908_Col3_V4.nc.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201909_Col3_V4.nc.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201910_Col3_V4.nc.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201911_Col3_V4.nc.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_201912_Col3_V4.nc.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202001_Col3_V4.nc.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202002_Col3_V4.nc.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202003_Col3_V4.nc.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202004_Col3_V4.nc.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202005_Col3_V4.nc.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202006_Col3_V4.nc.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202007_Col3_V4.nc.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202008_Col3_V4.nc.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202009_Col3_V4.nc.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202010_Col3_V4.nc.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202011_Col3_V4.nc.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202012_Col3_V4.nc.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202101_Col3_V4.nc.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202102_Col3_V4.nc.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202103_Col3_V4.nc.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202104_Col3_V4.nc.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202105_Col3_V4.nc.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202106_Col3_V4.nc.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202107_Col3_V4.nc.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202108_Col3_V4.nc.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202109_Col3_V4.nc.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202110_Col3_V4.nc.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202111_Col3_V4.nc.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202112_Col3_V4.nc.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202201_Col3_V4.nc.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202202_Col3_V4.nc.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202203_Col3_V4.nc.tif"
- ],
- [
- "2022-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202204_Col3_V4.nc.tif"
- ],
- [
- "2022-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202205_Col3_V4.nc.tif"
- ],
- [
- "2022-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202206_Col3_V4.nc.tif"
- ],
- [
- "2022-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202207_Col3_V4.nc.tif"
- ],
- [
- "2022-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202208_Col3_V4.nc.tif"
- ],
- [
- "2022-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202209_Col3_V4.nc.tif"
- ],
- [
- "2022-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202210_Col3_V4.nc.tif"
- ],
- [
- "2022-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202211_Col3_V4.nc.tif"
- ],
- [
- "2022-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202212_Col3_V4.nc.tif"
- ],
- [
- "2023-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202301_Col3_V4.nc.tif"
- ],
- [
- "2023-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202302_Col3_V4.nc.tif"
- ],
- [
- "2023-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202303_Col3_V4.nc.tif"
- ],
- [
- "2023-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202304_Col3_V4.nc.tif"
- ],
- [
- "2023-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202305_Col3_V4.nc.tif"
- ],
- [
- "2023-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202306_Col3_V4.nc.tif"
- ],
- [
- "2023-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202307_Col3_V4.nc.tif"
- ],
- [
- "2023-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202308_Col3_V4.nc.tif"
- ],
- [
- "2023-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly/OMI_trno2_0.10x0.10_202309_Col3_V4.nc.tif"
- ]
- ],
- "no2-monthly-diff": [
- [
- "2015-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201501_Col3_V4.nc.tif"
- ],
- [
- "2015-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201502_Col3_V4.nc.tif"
- ],
- [
- "2015-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201503_Col3_V4.nc.tif"
- ],
- [
- "2015-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201504_Col3_V4.nc.tif"
- ],
- [
- "2015-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201505_Col3_V4.nc.tif"
- ],
- [
- "2015-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201506_Col3_V4.nc.tif"
- ],
- [
- "2015-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201507_Col3_V4.nc.tif"
- ],
- [
- "2015-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201508_Col3_V4.nc.tif"
- ],
- [
- "2015-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201509_Col3_V4.nc.tif"
- ],
- [
- "2015-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201510_Col3_V4.nc.tif"
- ],
- [
- "2015-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201511_Col3_V4.nc.tif"
- ],
- [
- "2015-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201512_Col3_V4.nc.tif"
- ],
- [
- "2016-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201601_Col3_V4.nc.tif"
- ],
- [
- "2016-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201602_Col3_V4.nc.tif"
- ],
- [
- "2016-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201603_Col3_V4.nc.tif"
- ],
- [
- "2016-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201604_Col3_V4.nc.tif"
- ],
- [
- "2016-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201605_Col3_V4.nc.tif"
- ],
- [
- "2016-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201606_Col3_V4.nc.tif"
- ],
- [
- "2016-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201607_Col3_V4.nc.tif"
- ],
- [
- "2016-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201608_Col3_V4.nc.tif"
- ],
- [
- "2016-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201609_Col3_V4.nc.tif"
- ],
- [
- "2016-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201610_Col3_V4.nc.tif"
- ],
- [
- "2016-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201611_Col3_V4.nc.tif"
- ],
- [
- "2016-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201612_Col3_V4.nc.tif"
- ],
- [
- "2017-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201701_Col3_V4.nc.tif"
- ],
- [
- "2017-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201702_Col3_V4.nc.tif"
- ],
- [
- "2017-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201703_Col3_V4.nc.tif"
- ],
- [
- "2017-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201704_Col3_V4.nc.tif"
- ],
- [
- "2017-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201705_Col3_V4.nc.tif"
- ],
- [
- "2017-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201706_Col3_V4.nc.tif"
- ],
- [
- "2017-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201707_Col3_V4.nc.tif"
- ],
- [
- "2017-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201708_Col3_V4.nc.tif"
- ],
- [
- "2017-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201709_Col3_V4.nc.tif"
- ],
- [
- "2017-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201710_Col3_V4.nc.tif"
- ],
- [
- "2017-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201711_Col3_V4.nc.tif"
- ],
- [
- "2017-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201712_Col3_V4.nc.tif"
- ],
- [
- "2018-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201801_Col3_V4.nc.tif"
- ],
- [
- "2018-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201802_Col3_V4.nc.tif"
- ],
- [
- "2018-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201803_Col3_V4.nc.tif"
- ],
- [
- "2018-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201804_Col3_V4.nc.tif"
- ],
- [
- "2018-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201805_Col3_V4.nc.tif"
- ],
- [
- "2018-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201806_Col3_V4.nc.tif"
- ],
- [
- "2018-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201807_Col3_V4.nc.tif"
- ],
- [
- "2018-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201808_Col3_V4.nc.tif"
- ],
- [
- "2018-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201809_Col3_V4.nc.tif"
- ],
- [
- "2018-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201810_Col3_V4.nc.tif"
- ],
- [
- "2018-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201811_Col3_V4.nc.tif"
- ],
- [
- "2018-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201812_Col3_V4.nc.tif"
- ],
- [
- "2019-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201901_Col3_V4.nc.tif"
- ],
- [
- "2019-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201902_Col3_V4.nc.tif"
- ],
- [
- "2019-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201903_Col3_V4.nc.tif"
- ],
- [
- "2019-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201904_Col3_V4.nc.tif"
- ],
- [
- "2019-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201905_Col3_V4.nc.tif"
- ],
- [
- "2019-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201906_Col3_V4.nc.tif"
- ],
- [
- "2019-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201907_Col3_V4.nc.tif"
- ],
- [
- "2019-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201908_Col3_V4.nc.tif"
- ],
- [
- "2019-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201909_Col3_V4.nc.tif"
- ],
- [
- "2019-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201910_Col3_V4.nc.tif"
- ],
- [
- "2019-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201911_Col3_V4.nc.tif"
- ],
- [
- "2019-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_201912_Col3_V4.nc.tif"
- ],
- [
- "2020-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202001_Col3_V4.nc.tif"
- ],
- [
- "2020-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202002_Col3_V4.nc.tif"
- ],
- [
- "2020-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202003_Col3_V4.nc.tif"
- ],
- [
- "2020-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202004_Col3_V4.nc.tif"
- ],
- [
- "2020-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202005_Col3_V4.nc.tif"
- ],
- [
- "2020-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202006_Col3_V4.nc.tif"
- ],
- [
- "2020-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202007_Col3_V4.nc.tif"
- ],
- [
- "2020-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202008_Col3_V4.nc.tif"
- ],
- [
- "2020-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202009_Col3_V4.nc.tif"
- ],
- [
- "2020-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202010_Col3_V4.nc.tif"
- ],
- [
- "2020-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202011_Col3_V4.nc.tif"
- ],
- [
- "2020-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202012_Col3_V4.nc.tif"
- ],
- [
- "2021-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202101_Col3_V4.nc.tif"
- ],
- [
- "2021-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202102_Col3_V4.nc.tif"
- ],
- [
- "2021-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202103_Col3_V4.nc.tif"
- ],
- [
- "2021-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202104_Col3_V4.nc.tif"
- ],
- [
- "2021-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202105_Col3_V4.nc.tif"
- ],
- [
- "2021-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202106_Col3_V4.nc.tif"
- ],
- [
- "2021-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202107_Col3_V4.nc.tif"
- ],
- [
- "2021-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202108_Col3_V4.nc.tif"
- ],
- [
- "2021-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202109_Col3_V4.nc.tif"
- ],
- [
- "2021-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202110_Col3_V4.nc.tif"
- ],
- [
- "2021-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202111_Col3_V4.nc.tif"
- ],
- [
- "2021-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202112_Col3_V4.nc.tif"
- ],
- [
- "2022-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202201_Col3_V4.nc.tif"
- ],
- [
- "2022-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202202_Col3_V4.nc.tif"
- ],
- [
- "2022-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202203_Col3_V4.nc.tif"
- ],
- [
- "2022-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202204_Col3_V4.nc.tif"
- ],
- [
- "2022-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202205_Col3_V4.nc.tif"
- ],
- [
- "2022-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202206_Col3_V4.nc.tif"
- ],
- [
- "2022-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202207_Col3_V4.nc.tif"
- ],
- [
- "2022-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202208_Col3_V4.nc.tif"
- ],
- [
- "2022-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202209_Col3_V4.nc.tif"
- ],
- [
- "2022-10-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202210_Col3_V4.nc.tif"
- ],
- [
- "2022-11-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202211_Col3_V4.nc.tif"
- ],
- [
- "2022-12-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202212_Col3_V4.nc.tif"
- ],
- [
- "2023-01-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202301_Col3_V4.nc.tif"
- ],
- [
- "2023-02-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202302_Col3_V4.nc.tif"
- ],
- [
- "2023-03-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202303_Col3_V4.nc.tif"
- ],
- [
- "2023-04-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202304_Col3_V4.nc.tif"
- ],
- [
- "2023-05-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202305_Col3_V4.nc.tif"
- ],
- [
- "2023-06-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202306_Col3_V4.nc.tif"
- ],
- [
- "2023-07-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202307_Col3_V4.nc.tif"
- ],
- [
- "2023-08-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202308_Col3_V4.nc.tif"
- ],
- [
- "2023-09-01T00:00:00",
- "s3://veda-data-store-staging/no2-monthly-diff/OMI_trno2_0.10x0.10_202309_Col3_V4.nc.tif"
- ]
- ]
-}
diff --git a/app/src/config/esa.js b/app/src/config/esa.js
index 62fefe8e10..27b1ddf715 100644
--- a/app/src/config/esa.js
+++ b/app/src/config/esa.js
@@ -4,12 +4,27 @@ import WKB from 'ol/format/WKB';
import GeoJSON from 'ol/format/GeoJSON';
import { DateTime } from 'luxon';
import { shS2TimeFunction } from '@/utils';
+import colormap from 'colormap';
import {
baseLayers, overlayLayers, trucksFeatures, trucksAreaIndicator,
} from '@/config/layers';
import E13dMapTimes from '@/config/data_dates_e13d.json';
import shTimeFunction from '../shTimeFunction';
+function getColormap(name, reverse, nshades = 16) {
+ const colors = colormap({
+ colormap: name, nshades, format: 'rgba',
+ });
+ if (reverse) {
+ colors.reverse();
+ }
+ return colors;
+}
+
+function clamp(value, low, high) {
+ return Math.max(low, Math.min(value, high));
+}
+
const wkb = new WKB();
const geojsonFormat = new GeoJSON();
@@ -27,6 +42,11 @@ const getDailyDates = (start, end) => {
return dateArray;
};
+const cloudlessBaseLayerDefault = [{
+ ...baseLayers.cloudless,
+ visible: true,
+}, baseLayers.cloudless2020, baseLayers.cloudless2019, baseLayers.cloudless2018, baseLayers.eoxosm, baseLayers.terrainLight];
+
const geodbFeatures = {
name: 'Ship detections',
url: `https://xcube-geodb.brockmann-consult.de/eodash/${shConfig.geodbInstanceId}/eodash_{indicator}-detections?time=eq.{featuresTime}&aoi_id=eq.{aoiID}&select=geometry,time`,
@@ -126,8 +146,7 @@ export const indicatorsDefinition = Object.freeze({
E13c: {
features: {
name: 'Ship detections',
- dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyyMMdd'),
- url: './eodash-data/features/E13c/E13c_{aoiID}_{featuresTime}.geojson',
+ url: './eodash-data/features/E13c/E13c_UK9_20200829.geojson',
},
},
E13d: {
@@ -284,7 +303,6 @@ export const globalIndicators = [
// custom override of name + specialEnvTime
properties: {
indicatorObject: {
- aoiID: 'World',
indicator: 'WSF',
display: [{
name: 'DLR WSF Evolution 1985-2015',
@@ -301,6 +319,162 @@ export const globalIndicators = [
},
},
},
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'CROPOM',
+ queryParameters: [{
+ sourceLayer: 'cropom',
+ title: 'Forecast parameter',
+ selected: 'yield',
+ items: [
+ {
+ id: 'yield',
+ description: 'Yield',
+ yAxis: 't/ha',
+ },
+ {
+ id: 'water_need',
+ description: 'Water need',
+ yAxis: 'mm',
+ },
+ ],
+ }, {
+ title: 'Crop type',
+ selected: 'Wheat',
+ items: [
+ {
+ id: 'Wheat',
+ description: 'Wheat',
+ areaIndicator: 'WheatGDD',
+ min_y: 5,
+ max_y: 10,
+ min_w: 0,
+ max_w: 200,
+ },
+ {
+ id: 'Maize',
+ description: 'Maize',
+ areaIndicator: 'MaizeGDD',
+ min_y: 0,
+ max_y: 12,
+ min_w: 100,
+ max_w: 650,
+ },
+ {
+ id: 'Sunflower',
+ description: 'Sunflower',
+ areaIndicator: 'SunflowerGDD',
+ min_y: 0,
+ max_y: 6,
+ min_w: 100,
+ max_w: 650,
+ },
+ {
+ id: 'Soybean',
+ description: 'Soybean',
+ areaIndicator: 'Soybean',
+ min_y: 0,
+ max_y: 5,
+ min_w: 100,
+ max_w: 650,
+ },
+ ],
+ }, {
+ title: 'Scenario',
+ selected: 'average',
+ items: [
+ {
+ id: 'worst',
+ description: 'Worst',
+ },
+ {
+ id: 'average',
+ description: 'Average',
+ },
+ {
+ id: 'best',
+ description: 'Best',
+ },
+ ],
+ }],
+ display: {
+ baseUrl: null,
+ customAreaIndicator: true,
+ disableVisualAnalysisAddons: true,
+ tooltip: {
+ tooltipFormatFunction: (feature, _, store) => {
+ const ind = store.state.indicators.selectedIndicator;
+ const selectedParameter = ind.queryParameters[0].items.find((item) => item.id === ind.queryParameters[0].selected);
+
+ const selectedCrop = ind.queryParameters[1].items.find((item) => item.id === ind.queryParameters[1].selected);
+ const selectedScenario = ind.queryParameters[2].selected;
+ const value = feature.get(selectedParameter.id)[selectedCrop.id][selectedScenario];
+ return [
+ `Region: ${feature.get('NUTS_NAME')}`,
+ `${selectedCrop.description} ${selectedParameter.description}, scenario ${selectedScenario}: ${value}`,
+ ];
+ },
+ },
+ layerControlHide: true,
+ areaIndicator: {
+ url: 'https://api.cropom-dev.com/crop_model/regional_forecast?nuts_id={adminZone}&crop={crop}&scenario={scenario}',
+ adminZoneKey: 'FID',
+ requestMethod: 'GET',
+ callbackFunction: (responseJson, indicator) => {
+ const data = responseJson.growth;
+ const newData = {
+ time: [],
+ measurement: [],
+ referenceValue: [],
+ };
+ Object.entries(data).forEach(([key, value]) => {
+ newData.time.push(DateTime.fromISO(key));
+ newData.measurement.push(value.yield_);
+ newData.referenceValue.push(value.biomass);
+ });
+ newData.yAxis = ['t/ha', 'g/m2'];
+ const ind = {
+ ...indicator,
+ ...newData,
+ };
+ return ind;
+ },
+ },
+ features: {
+ name: 'CropModel API ',
+ id: 'cropom',
+ url: 'https://api.cropom-dev.com/crop_model/regional_forecast?country_code=HU',
+ projection: {
+ name: 'EPSG:3035',
+ def: '+proj=laea +lat_0=52 +lon_0=10 +x_0=4321000 +y_0=3210000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs',
+ },
+ layerControlHide: false,
+ style: {
+ strokeColor: 'rgba(0,0,0,0)',
+ getColor: (feature, store) => {
+ let color = '#00000000';
+ const ind = store.state.indicators.selectedIndicator;
+ const selectedParameter = ind.queryParameters[0].selected;
+ const selectedCrop = ind.queryParameters[1].items.find((item) => item.id === ind.queryParameters[1].selected);
+ const selectedScenario = ind.queryParameters[2].selected;
+ const colormapUsed = selectedParameter === 'yield' ? getColormap('chlorophyll', true, 64) : getColormap('jet', false, 64);
+ const min = selectedParameter === 'yield' ? selectedCrop.min_y : selectedCrop.min_w;
+ const max = selectedParameter === 'yield' ? selectedCrop.max_y : selectedCrop.max_w;
+ const value = feature.get(selectedParameter)[selectedCrop.id][selectedScenario];
+ const f = clamp((value - min) / (max - min), 0, 1);
+ color = colormapUsed[Math.round(f * (colormapUsed.length - 1))];
+ return color;
+ },
+ },
+ selection: {
+ mode: 'single',
+ },
+ },
+ },
+ },
+ },
+ },
{
properties: {
indicatorObject: {
@@ -333,6 +507,52 @@ export const globalIndicators = [
},
},
},
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'E13c_ship_detections',
+ display: [{
+ baseLayers: cloudlessBaseLayerDefault,
+ disableCompare: true,
+ dateFormatFunction: (date) => `${DateTime.fromISO(date).toFormat('yyyy-MM-dd')}/${DateTime.fromISO(date).toFormat('yyyy-MM-dd')}`,
+ layers: 'SENTINEL-2-L2A-TRUE-COLOR',
+ name: 'Daily Sentinel 2 L2A',
+ // 2500 pixel SH limit * 10 m resolution of S2 RGB bands
+ // and multiplied by 4/5 to cater for slowness of algorithm and data transfer
+ maxDrawnAreaSide: 20000,
+ minZoom: 7,
+ maxZoom: 18,
+ mapTimeDatepicker: true,
+ sliderConfig: {
+ title: 'Detection Threshold',
+ min: 0,
+ max: 1,
+ step: 0.01,
+ default: 0.5,
+ },
+ drawnAreaLimitExtent: true,
+ // areaIndicator: trucksAreaIndicator,
+ features: {
+ url: 'https://gtif-backend.hub.eox.at/ship_detection?{area}&{featuresTime}&threshold={sliderValue}',
+ name: 'Ship detections on-the-fly',
+ style: {
+ strokeColor: '#00c3ff',
+ width: 2,
+ },
+ dateFormatFunction: (date) => `start_date=${DateTime.fromISO(date).toFormat('yyyy-MM-dd')}&end_date=${DateTime.fromISO(date).toFormat('yyyy-MM-dd')}`,
+ areaFormatFunction: (area) => {
+ const extent = geojsonFormat.readGeometry(area).getExtent();
+ const formattedArea = `lon_min=${extent[0]}&lat_min=${extent[1]}&lon_max=${extent[2]}&lat_max=${extent[3]}`;
+ return {
+ area: formattedArea,
+ };
+ },
+ },
+ customAreaFeatures: true,
+ }],
+ },
+ },
+ },
{
properties: {
indicatorObject: {
diff --git a/app/src/config/gtif.js b/app/src/config/gtif.js
index cb7c30cad9..6321e6f6e3 100644
--- a/app/src/config/gtif.js
+++ b/app/src/config/gtif.js
@@ -132,7 +132,6 @@ function contspace(v, varOffset, varSpacing) {
const wkt = new Wkt();
-export const dataPath = './data/gtif/internal/';
export const dataEndpoints = [
{
type: 'eox',
@@ -247,9 +246,9 @@ const solarAndGreenRoofDefaults = [
baseLayers.s1EodcBackscattervh,
baseLayers.geolandbasemap,
{
- ...baseLayers.bmapgelaende, visible: true,
+ ...baseLayers.bmaporthofoto30cm, visible: true,
},
- baseLayers.bmaporthofoto30cm,
+ baseLayers.bmapgelaende,
baseLayers.eoxosm,
baseLayers.cloudless,
baseLayers.terrainLight,
diff --git a/app/src/config/layers.js b/app/src/config/layers.js
index bd9bd0bfb4..a0e8ef0ba4 100644
--- a/app/src/config/layers.js
+++ b/app/src/config/layers.js
@@ -26,6 +26,22 @@ export const baseLayers = Object.freeze({
maxNativeZoom: 17,
protocol: 'xyz',
},
+ cloudless2019: {
+ name: 'EOxCloudless 2019',
+ url: '//s2maps-tiles.eu/wmts/1.0.0/s2cloudless-2019_3857/default/g/{z}/{y}/{x}.jpg',
+ attribution: '{ EOxCloudless 2018: Sentinel-2 cloudless - s2maps.eu by EOX IT Services GmbH (Contains modified Copernicus Sentinel data 2019) }',
+ visible: false,
+ maxZoom: 17,
+ protocol: 'xyz',
+ },
+ cloudless2020: {
+ name: 'EOxCloudless 2020',
+ url: '//s2maps-tiles.eu/wmts/1.0.0/s2cloudless-2020_3857/default/g/{z}/{y}/{x}.jpg',
+ attribution: '{ EOxCloudless 2018: Sentinel-2 cloudless - s2maps.eu by EOX IT Services GmbH (Contains modified Copernicus Sentinel data 2020) }',
+ visible: false,
+ maxZoom: 17,
+ protocol: 'xyz',
+ },
terrainLight: {
name: 'Terrain light',
url: '//s2maps-tiles.eu/wmts/1.0.0/terrain-light_3857/default/g/{z}/{y}/{x}.jpg',
@@ -126,13 +142,6 @@ export const baseLayers = Object.freeze({
visible: false,
minZoom: 6,
},
- // mapboxHighReso: {
- // name: 'Mapbox high resolution',
- // url: `//api.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token=${shConfig.mbAccessToken}`,
- // attribution: '{ © Mapbox, © OpenStreetMap, © Maxar }',
- // visible: false,
- // protocol: 'xyz',
- // },
s2AT2021: {
name: 'Sentinel-2 Austrian mosaic 2021',
attribution: '{ Contains modified Copernicus Sentinel data 2021 }',
@@ -179,7 +188,7 @@ export const baseLayers = Object.freeze({
attribution: '{ Terrain light: Data © OpenStreetMap contributors and others, Rendering © EOX }',
maxZoom: 16,
visible: false,
- minZoom: 2,
+ minNativeZoom: 2,
projection: {
name: 'ORTHO:680500',
def: '+proj=ortho +lat_0=90 +lon_0=0 +x_0=0 +y_0=0 +ellps=WGS84 +units=m +no_defs',
@@ -195,7 +204,7 @@ export const baseLayers = Object.freeze({
name: 'Terrain Light Stereographic South',
attribution: '{ Terrain light: Data © OpenStreetMap contributors and others, Rendering © EOX }',
maxZoom: 16,
- minZoom: 2,
+ minNativeZoom: 2,
visible: false,
projection: {
name: 'ORTHO:320500',
@@ -375,111 +384,13 @@ export const trucksFeatures = {
areaFormatFunction: (area) => ({ area: wkt.read(JSON.stringify(area)).write() }),
};
+export const marineDataStoreDepths = [
+ '-4000', '-3500', '-3000', '-2500', '-2000', '-1800', '-1600', '-1400', '-1200', '-1000', '-900', '-800', '-700', '-600', '-500', '-450', '-400', '-350', '-300', '-250', '-200', '-175', '-150', '-125', '-100', '-90', '-80', '-70', '-60', '-50', '-40', '-30', '-25', '-20', '-15', '-10', '-6', '-4', '-2', '0'].reverse();
+
+export const marineDataStoreColorscales = [
+ 'algae', 'amp', 'balance', 'cividis', 'cyclic', 'delta', 'dense', 'gray', 'haline', 'ice', 'inferno', 'magma', 'matter', 'phase', 'plasma', 'rainbow', 'solar', 'speed', 'tempo', 'thermal', 'viridis',
+];
+
export const xcubeViewerColormaps = [
- 'magma',
- 'inferno',
- 'plasma',
- 'viridis',
- 'cividis',
- 'Blues',
- 'BuGn',
- 'BuPu',
- 'GnBu',
- 'Greens',
- 'Greys',
- 'OrRd',
- 'Oranges',
- 'PuBu',
- 'PuBuGn',
- 'PuRd',
- 'Purples',
- 'RdPu',
- 'Reds',
- 'YlGn',
- 'YlGnBu',
- 'YlOrBr',
- 'YlOrRd',
- 'Wistia',
- 'afmhot',
- 'autumn',
- 'binary',
- 'bone',
- 'cool',
- 'copper',
- 'gist_gray',
- 'gist_heat',
- 'gist_yarg',
- 'gray',
- 'hot',
- 'pink',
- 'spring',
- 'summer',
- 'winter',
- 'BrBG',
- 'PRGn',
- 'PiYG',
- 'PuOr',
- 'RdBu',
- 'RdGy',
- 'RdYlBu',
- 'RdYlGn',
- 'Spectral',
- 'bwr',
- 'coolwarm',
- 'seismic',
- 'Accent',
- 'Dark2',
- 'Paired',
- 'Pastel1',
- 'Pastel2',
- 'Set1',
- 'Set2',
- 'Set3',
- 'tab10',
- 'tab20',
- 'tab20b',
- 'tab20c',
- 'twilight',
- 'twilight_shifted',
- 'hsv',
- 'reg_map',
- 'thermal',
- 'haline',
- 'solar',
- 'ice',
- 'gray',
- 'oxy',
- 'deep',
- 'dense',
- 'algae',
- 'matter',
- 'turbid',
- 'speed',
- 'amp',
- 'tempo',
- 'rain',
- 'phase',
- 'topo',
- 'balance',
- 'delta',
- 'curl',
- 'diff',
- 'tarn',
- 'turbo',
- 'CMRmap',
- 'brg',
- 'cubehelix',
- 'flag',
- 'gist_earth',
- 'gist_ncar',
- 'gist_rainbow',
- 'gist_stern',
- 'gnuplot',
- 'gnuplot2',
- 'jet',
- 'nipy_spectral',
- 'ocean',
- 'prism',
- 'rainbow',
- 'terrain',
+ 'magma', 'inferno', 'plasma', 'viridis', 'cividis', 'Blues', 'BuGn', 'BuPu', 'GnBu', 'Greens', 'Greys', 'OrRd', 'Oranges', 'PuBu', 'PuBuGn', 'PuRd', 'Purples', 'RdPu', 'Reds', 'YlGn', 'YlGnBu', 'YlOrBr', 'YlOrRd', 'Wistia', 'afmhot', 'autumn', 'binary', 'bone', 'cool', 'copper', 'gist_gray', 'gist_heat', 'gist_yarg', 'gray', 'hot', 'pink', 'spring', 'summer', 'winter', 'BrBG', 'PRGn', 'PiYG', 'PuOr', 'RdBu', 'RdGy', 'RdYlBu', 'RdYlGn', 'Spectral', 'bwr', 'coolwarm', 'seismic', 'Accent', 'Dark2', 'Paired', 'Pastel1', 'Pastel2', 'Set1', 'Set2', 'Set3', 'tab10', 'tab20', 'tab20b', 'tab20c', 'twilight', 'twilight_shifted', 'hsv', 'reg_map', 'thermal', 'haline', 'solar', 'ice', 'gray', 'oxy', 'deep', 'dense', 'algae', 'matter', 'turbid', 'speed', 'amp', 'tempo', 'rain', 'phase', 'topo', 'balance', 'delta', 'curl', 'diff', 'tarn', 'turbo', 'CMRmap', 'brg', 'cubehelix', 'flag', 'gist_earth', 'gist_ncar', 'gist_rainbow', 'gist_stern', 'gnuplot', 'gnuplot2', 'jet', 'nipy_spectral', 'ocean', 'prism', 'rainbow', 'terrain',
];
diff --git a/app/src/config/name_mapping.json b/app/src/config/name_mapping.json
deleted file mode 100644
index 20ca94b4b2..0000000000
--- a/app/src/config/name_mapping.json
+++ /dev/null
@@ -1,511 +0,0 @@
-{
- "esa": {
- "C1": {
- "title": "Ships - NO2 Correlation"
- },
- "C2": {
- "title": "People - NO2 Correlation"
- },
- "C3": {
- "title": "Cars - NO2 Correlation"
- },
- "E200": {
- "title": "Ships in Port",
- "description": "Ships detected in Sentinel-2 data"
- },
- "E1": {
- "title": "Shipment of metallic ores (Archived)",
- "description": "Ships detected at specific piers in Pleiades data"
- },
- "E1_S2": {
- "title": "Shipment of metallic ores (Archived)",
- "description": "Ships detected at specific piers in Sentinel-2 data"
- },
- "E1a": {
- "title": "Shipment of non-metallic ores (Archived)",
- "description": "Ships detected at specific piers in Pleiades data"
- },
- "E1a_S2": {
- "title": "Shipment of non-metallic ores (Archived)",
- "description": "Ships detected at specific piers in Sentinel-2 data"
- },
- "E2": {
- "title": "Shipment of oil (Archived)",
- "description": "Ships detected at specific piers in Pleiades data"
- },
- "E2_S2": {
- "title": "Shipment of oil (Archived)",
- "description": "Ships detected at specific piers in Sentinel-2 data"
- },
- "E3": {
- "title": "Raw Material Inventory",
- "description": "Crude Oil and other input materials"
- },
- "E8": {
- "title": "Finished Goods Inventory",
- "description": "Manufacturing outputs"
- },
- "E10a1": {
- "title": "Productive area [ha]",
- "description": "Cultivated active fields detected in Sentinel-2 data"
- },
- "E10a2": {
- "title": "White Asparagus area [%]",
- "description": "Actively managed total area from Sentinel-2 data"
- },
- "E10a3": {
- "title": "White Asparagus area change [%]",
- "description": "Fields cultivated with white asparagus from Sentinel-2 data"
- },
- "E10a5": {
- "title": "Red Berries Harvest [nr]",
- "description": "Harvesting trucks detected in Pleiades data"
- },
- "E10a6": {
- "locationSplit": {
- "a": {
- "title": "Harvested parcels [%]",
- "description": "Evolution of harvested parcels"
- },
- "b": {
- "title": "Harvested area [%]",
- "description": "Evolution of harvested area"
- }
- }
- },
- "E10a7": {
- "title": "Winter Cereals area [%]",
- "description": "Evolution of harvested area"
- },
- "E10a8": {
- "title": "Winter Cereals [ha, %]",
- "description": "Evolution of harvested area and area size"
- },
- "E10a9": {
- "title": "Workers availability [nr]"
- },
- "E10a10": {
- "locationSplit": {
- "a": {
- "title": "Winter Cereal Harvest",
- "description": "Observed harvesting in Sentinel-1 data compared to model expectation"
- },
- "b": {
- "title": "Winter Rapeseed Harvest",
- "description": "Observed harvesting in Sentinel-1 data compared to model expectation"
- }
- }
- },
- "E11": {
- "title": "Activity at shopping centers",
- "description": "Occupancy of customer parking"
- },
- "E11a": {
- "title": "Activity at sport centers",
- "description": "Occupancy of customer parking"
- },
- "E12b": {
- "title": "Border crossing vehicles [vol]",
- "description": "Volume of highway occupancy from Sentinel-1 data"
- },
- "E12c": {
- "title": "Moving trucks on highways",
- "description": "Truck detections on Sentinel-2 data"
- },
- "E12d": {
- "title": "Moving trucks on primary roads",
- "description": "Truck detections on Sentinel-2 data"
- },
- "E13b": {
- "title": "Parked Airplanes",
- "description": "Parked planes detected on Sentinel-2 data"
- },
- "E13b2": {
- "title": "Parked Airplanes (Archived)",
- "description": "Parked planes detected on Sentinel-2 data"
- },
- "E13d": {
- "title": "Flying Airplanes",
- "description": "Flying planes detected on Sentinel-2 data"
- },
- "E13e": {
- "title": "Cargo Ships [nr]",
- "description": "Cargo ships in port based on AIS data"
- },
- "E13f": {
- "title": "Fishing Ships [nr]",
- "description": "Fishing ships in port based on AIS data"
- },
- "E13g": {
- "title": "Tanker Ships [nr]",
- "description": "Tanker ships in port based on AIS data"
- },
- "E13h": {
- "title": "Tug Ships [nr]",
- "description": "Tug ships in port based on AIS data"
- },
- "E13i": {
- "title": "Search&Rescue Ships [nr]",
- "description": "Search&Rescue ships in port based on AIS data"
- },
- "E13l": {
- "title": "Cruise Ships [nr]",
- "description": "Cruise ships in port based on AIS data"
- },
- "E13m": {
- "title": "Passenger Ships [nr]",
- "description": "Passenger ships in port based on AIS data"
- },
- "E13n": {
- "title": "Trucks transiting ports [%]",
- "description": "Changes in traffic based on mobile data"
- },
- "E13o": {
- "title": "Vessel density (all) [h/sqkm]",
- "description": "Average number of vessels in a km2 cell in a given period"
- },
- "E13p": {
- "title": "Vessel density (cargo) [h/sqkm]",
- "description": "Average number of vessels in a km2 cell in a given period"
- },
- "E13q": {
- "title": "Vessel density (tanker) [h/sqkm]",
- "description": "Average number of vessels in a km2 cell in a given period"
- },
- "E13r": {
- "title": "Vessel density (others) [h/sqkm]",
- "description": "Average number of vessels in a km2 cell in a given period"
- },
- "H1": {
- "title": "nr of temp. treatment sites"
- },
- "N1": {
- "title": "City level NO2 (S5p)"
- },
- "N1a": {
- "title": "City level PM2.5 (model)"
- },
- "N1b": {
- "title": "City level NO2 (model)"
- },
- "N1c": {
- "title": "City level PM10 (model)"
- },
- "N1d": {
- "title": "City level O3 (model)"
- },
- "NASAPopulation": {
- "title": "Population density"
- },
- "WSF": {
- "title": "Builtup areas",
- "description": "World Settlement Footprint Evolution"
- },
- "N3": {
- "title": "CHL-a concentration (point)"
- },
- "N4a": {
- "title": "Changes in land fill sites"
- },
- "N4b": {
- "title": "Illegal waste levels"
- },
- "N3c": {
- "title": "CHL-a concentration (map, 1km)",
- "description": "CMEMS product"
- },
- "N4c": {
- "title": "Changes in land fill sites"
- },
- "OX": {
- "title": "Crude Oil Storage Index",
- "description": "Level of oil in tanks based on SAR and optical data"
- },
- "GG": {
- "title": "Mobility index [daily, %]",
- "description": "Daily variation of visits and length of stay"
- },
- "CV": {
- "title": "Covid-19 cases"
- },
- "OW": {
- "title": "Covid-19 vaccinations"
- },
- "CDS1": {
- "title": "Temperature"
- },
- "CDS2": {
- "title": "Relative humidity"
- },
- "CDS3": {
- "title": "Wind U field"
- },
- "CDS4": {
- "title": "Wind V field"
- },
- "World-N1": {
- "title": "NO2 (S5p)",
- "description": "Nitrogen Dioxide from Sentinel-5p Tropomi"
- },
- "WorldCO-N1": {
- "title": "Carbon Monoxide",
- "description": "Carbon Monoxide (CO) from Sentinel-5p Tropomi"
- },
- "CH4-N1": {
- "title": "Methane",
- "description": "Methane (CH4) from Sentinel-5p Tropomi"
- },
- "SO2-N1": {
- "title": "Sulfur Dioxide",
- "description": "Sulfur Dioxide (SO2) from Sentinel-5p Tropomi"
- },
- "GCAQ4-N1b": {
- "title": "NO2 map Europe (CAMS)",
- "description": "NO2 – Nitrogen Dioxide [μg/m3]"
- },
- "GCAQ2-N1b": {
- "title": "PM2.5 map Europe (CAMS)",
- "description": "Particulate Matter with diameter smaller than 2.5 micrometres [μg/m3]"
- },
- "GCAQ3-N1b": {
- "title": "PM10 map Europe (CAMS)",
- "description": "Particulate Matter with diameter smaller than 10 micrometres [μg/m3]"
- },
- "GCAQ4-N1b": {
- "title": "Ozone map Europe (CAMS)",
- "description": "O3 - Ozone [μg/m3]"
- }
- },
- "trilateral": {
- "E1": {
- "title": "Shipment of metallic ores (Archived)",
- "description": "Ships detected at specific piers in Pleiades data"
- },
- "E1_S2": {
- "title": "Shipment of metallic ores (Archived)",
- "description": "Ships detected at specific piers in Sentinel-2 data"
- },
- "E1a": {
- "title": "Shipment of non-metallic ores (Archived)",
- "description": "Ships detected at specific piers in Pleiades data"
- },
- "E1a_S2": {
- "title": "Shipment of non-metallic ores (Archived)",
- "description": "Ships detected at specific piers in Sentinel-2 data"
- },
- "E2": {
- "title": "Shipment of oil (Archived)",
- "description": "Ships detected at specific piers in Pleiades data"
- },
- "E2_S2": {
- "title": "Shipment of oil (Archived)",
- "description": "Ships detected at specific piers in Sentinel-2 data"
- },
- "E3": {
- "title": "Raw Material Inventory",
- "description": "Crude Oil and other input materials"
- },
- "E4": {
- "title": "Production activity: intermediate goods"
- },
- "E5": {
- "title": "Inventory: intermediate goods"
- },
- "E6": {
- "title":"Inventory: factory inputs"
- },
- "E7": {
- "title": "Production activity: finished goods"
- },
- "E8": {
- "title": "Inventory: finished goods"
- },
- "E9": {
- "title": "Activity indicator",
- "description":"Presence of cars or containers"
- },
- "E10a1": {
- "title": "Productive area [ha]",
- "description": "Cultivated active fields detected in Sentinel-2 data"
- },
- "E10a2": {
- "title": "White Asparagus area [%]",
- "description": "Actively managed total area from Sentinel-2 data"
- },
- "E10a3": {
- "title": "White Asparagus area change [%]",
- "description": "Fields cultivated with white asparagus from Sentinel-2 data"
- },
- "E10a6": {
- "locationSplit": {
- "a": {
- "title": "Harvested parcels [%]",
- "description": "Evolution of harvested parcels"
- },
- "b": {
- "title": "Harvested area [%]",
- "description": "Evolution of harvested area"
- }
- }
- },
- "E10a7": {
- "title": "Winter Cereals area [%]",
- "description": "Evolution of harvested area"
- },
- "E10a8": {
- "title": "Winter Cereals [ha, %]",
- "description": "Evolution of harvested area and area size"
- },
- "E10c": {
- "title": "NDVI Average",
- "description": "Average NDVI for rice planted area"
- },
- "E10d": {
- "title": "Regional cropland"
- },
- "E11": {
- "title": "Activity at shopping centers",
- "description": "Occupancy of customer parking"
- },
- "E12a": {
- "title":"Logistic interchange centers",
- "description": "Volume of activity"
- },
- "E12b": {
- "title": "Border crossing vehicles [vol]",
- "description": "Volume of highway occupancy from Sentinel-1 data"
- },
- "E13a": {
- "title": "Throughput at principal rail stations"
- },
- "E13b": {
- "title": "parked airplanes"
- },
- "E13c": {
- "title": "Shipping activity",
- "description": "Ship detections in EO data at major international harbours"
- },
- "H1": {
- "title": "Health facilities"
- },
- "W1-N1": {
- "title": "Nitrogen Dioxide (weekly)",
- "description": "Weekly Nitrogen Dioxide (NO2) from ESA’s Sentinel-5p TROPOMI"
- },
- "W2-N1":{
- "title": "Nitrogen Dioxide (monthly)",
- "description": "Monthly Nitrogen Dioxide (NO2) from NASA’s OMI Aura"
- },
- "W8-N9":{
- "title": "Nitrogen Dioxide (yearly)",
- "description": "Yearly Nitrogen Dioxide (NO2) from NASA’s OMI Aura"
- },
- "W3-N1":{
- "title": "Nitrogen Dioxide (monthly difference)",
- "description": "Monthly Nitrogen Dioxide (NO2) from NASA’s OMI Aura compared to 2015-2019 Baseline"
- },
- "W4-N2":{
- "title": "Carbon Dioxide (daily)",
- "description": "Monthly Nitrogen Dioxide (CO2) from NASA’s OCO-2"
- },
- "W5-N2":{
- "title": "Carbon Dioxide (daily difference)",
- "description": "Daily Carbon Dioxide (CO2) from NASA’s OCO-2 compared to 2015-2019 Baseline"
- },
- "WorldCO-N1": {
- "title": "Carbon Monoxide",
- "description": "Carbon Monoxide from Sentinel-5p Tropomi"
- },
- "CH4-N1": {
- "title": "Methane",
- "description": "Methane (CH4) from Sentinel-5p Tropomi"
- },
- "SO2-N1": {
- "title": "Sulfur Dioxide",
- "description": "Sulfur Dioxide (SO2) from Sentinel-5p Tropomi"
- },
- "W9-N10": {
- "title": "Sulfur Dioxide (yearly)",
- "description": "yearly Sulfur Dioxide from NASA’s OMI Aura"
- },
- "WSF": {
- "title": "Builtup areas",
- "description": "World Settlement Footprint Evolution"
- },
- "W6-NASAPopulation": {
- "title": "Population density (SEDAC)"
- },
- "W7-FB": {
- "title": "Population density (META)"
- },
- "N3": {
- "title": "Water Quality"
- },
- "N5": {
- "title": "Nightlights",
- "description": "Nightlights from NASA’s Suomi NPP VIIRS"
- },
- "W6-N6": {
- "title": "Crops Condition",
- "description": "Global crops conditions based on multiple EO data sources"
- },
- "Antarctic-N12": {
- "title": "Sea Ice Concentration Antarctic (GCOM-W)"
- },
- "Arctic-N12": {
- "title": "Sea Ice Concentration Arctic (GCOM-W)"
- },
- "NPP-NPP": {
- "title": "Ocean Primary Productivity (BICEP)"
- },
- "World-N11":{
- "title": "Ocean Primary Productivity (GCOM-C)"
- },
- "SMCTS":{
- "title": "Soil Moisture",
- "description": "Soil Moisture Time Series"
- },
- "W11-NPPN":{
- "title": "Ocean Primary Productivity (MODIS)"
- },
- "N13": {
- "title": "Blue tarps (PlanetScope) "
- },
- "N14": {
- "title": "Blue tarps detections"
- },
- "GG": {
- "title": "Mobility"
- },
- "CV": {
- "title": "Covid-19 cases"
- },
- "OW": {
- "title": "Covid-19 vaccinations"
- },
- "LWE": {
- "title": "Lake Water Extent",
- "description": "Lake Water Level timeseries",
- "city": "Vänern"
- },
- "LWL": {
- "title": "Lake Water Level",
- "description": "Lake Water Level timeseries",
- "city": "Vänern"
- },
- "GGI_CH4": {
- "title": "Greenhouse gas reconciliation CH4 (CCI RECCAP2)",
- "description": "National greenhouse gas inventories (NGHGI), atmospheric inversion models"
- },
- "GGI_CO2": {
- "title": "Greenhouse gas reconciliation CO2 (CCI RECCAP2)",
- "description": "National greenhouse gas inventories (NGHGI), atmospheric inversion models"
- },
- "GGI_N2O": {
- "title": "Greenhouse gas reconciliation N2O (CCI RECCAP2)",
- "description": "National greenhouse gas inventories (NGHGI), atmospheric inversion models"
- }
- },
- "gtif": {
- }
-}
diff --git a/app/src/config/polar.js b/app/src/config/polar.js
new file mode 100644
index 0000000000..e8ba7ebc46
--- /dev/null
+++ b/app/src/config/polar.js
@@ -0,0 +1,480 @@
+import { DateTime } from 'luxon';
+import colormap from 'colormap';
+import {
+ baseLayers, overlayLayers,
+} from '@/config/layers';
+import { Wkt } from 'wicket';
+import shTimeFunction from '../shTimeFunction';
+
+export const dataPath = './data/polar/internal/';
+export const STACEndpoint = 'https://eurodatacube.github.io/eodash-catalog/polar/catalog.json';
+
+const getDailyDates = (start, end) => {
+ let currentDate = DateTime.fromISO(start);
+ const stopDate = DateTime.fromISO(end);
+ const dateArray = [];
+ while (currentDate <= stopDate) {
+ dateArray.push(DateTime.fromISO(currentDate).toFormat('yyyy-MM-dd'));
+ currentDate = DateTime.fromISO(currentDate).plus({ days: 1 });
+ }
+ return dateArray;
+};
+const wkt = new Wkt();
+// Helper function to create colorscales for cog style rendering
+function getColorStops(name, min, max, steps, reverse) {
+ const delta = (max - min) / (steps - 1);
+ const stops = new Array(steps * 2);
+ const colors = colormap({
+ colormap: name, nshades: steps, format: 'rgba',
+ });
+ if (reverse) {
+ colors.reverse();
+ }
+ for (let i = 0; i < steps; i++) {
+ stops[i * 2] = min + i * delta;
+ stops[i * 2 + 1] = colors[i];
+ }
+ return stops;
+}
+
+export const indicatorsDefinition = Object.freeze({
+});
+
+export const layerNameMapping = Object.freeze({
+});
+
+export const indicatorClassesIcons = Object.freeze({
+ cryosphere: 'mdi-snowflake',
+ atmosphere: 'mdi-weather-windy',
+ oceans: 'mdi-water',
+ air: 'mdi-weather-windy',
+});
+
+export const mapDefaults = Object.freeze({
+ bounds: [-170, -70, 170, 70],
+});
+
+const arcticBaseMaps = [
+ {
+ ...baseLayers.terrainLightStereoNorth,
+ visible: true,
+ },
+ baseLayers.cloudless,
+ baseLayers.eoxosm,
+];
+const arcticOverlayMaps = [];
+
+export const baseLayersMap = [
+ baseLayers.eoxosm,
+ baseLayers.cloudless,
+ {
+ ...baseLayers.terrainLight, visible: true,
+ },
+];
+
+export const overlayLayersMap = [{
+ ...overlayLayers.eoxOverlay, visible: true,
+}];
+
+const polarStereographicProjection = {
+ name: 'EPSG:3411',
+ def: '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +x_0=0 +y_0=0 +a=6378273 +b=6356889.449 +units=m +no_defs +type=crs',
+ extent: [-3314763.31, -3314763.31, 3314763.31, 3314763.31],
+};
+
+// const polarStereographicProjectionSH = {
+// name: 'EPSG:3413',
+// def: '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs +type=crs',
+// extent: [-3314693.24, -3314693.24, 3314693.24, 3314693.24],
+// };
+
+const polarStereoDatasetsConfigs = {
+ baseLayers: arcticBaseMaps,
+ overlayLayers: arcticOverlayMaps,
+ mapProjection: polarStereographicProjection,
+ projection: 'EPSG:4326',
+ presetView: {
+ type: 'FeatureCollection',
+ features: [{
+ type: 'Feature',
+ properties: {},
+ geometry: wkt.read('POLYGON((-20 89,50 89,50 77,-20 77,-20 89))').toJson(),
+ }],
+ },
+};
+
+export const defaultLayersDisplay = {
+ baseUrl: `https://services.sentinel-hub.com/ogc/wms/${shConfig.shInstanceId}`,
+ protocol: 'WMS',
+ dateFormatFunction: shTimeFunction,
+ format: 'image/png',
+ transparent: true,
+ tileSize: 512,
+ opacity: 1,
+ attribution: '{ Use of this data is subject to Articles 3 and 8 of the Terms and Conditions }',
+ visible: true,
+ mapProjection: 'EPSG:3857',
+ projection: 'EPSG:3857',
+};
+
+function createTOPAZ5Config(indicatorCode) {
+ const config = {
+ properties: {
+ indicatorObject: {
+ indicator: indicatorCode,
+ display: {
+ ...polarStereoDatasetsConfigs,
+ },
+ },
+ },
+ };
+ return config;
+}
+
+function createTOPAZ4Config(indicatorCode) {
+ const config = createTOPAZ5Config(indicatorCode);
+ config.properties.indicatorObject.time = getDailyDates('1991-01-01', '2022-12-31');
+ return config;
+}
+
+export const excludeMapTimes = {
+};
+
+export const replaceMapTimes = {
+};
+
+export const globalIndicators = [
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_SeaIceDetection_tif_demo',
+ display: [{
+ name: 'Sea Ice Stage of Development',
+ protocol: 'cog',
+ sources: [
+ { url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/S1A_EW_GRDM_1SDH_20180325T194759_20180325T194859_021176_024676_449C.tif_SOD_3857.tif' },
+ ],
+ style: {
+ color: [
+ 'case',
+ ['>', ['band', 1], 1],
+ [
+ 'interpolate',
+ ['linear'],
+ ['band', 1],
+ ...getColorStops('greys', 2, 5, 30, false),
+ ],
+ [
+ 'color', 0, 0, 0, 0,
+ ],
+ ],
+ },
+ }, {
+ name: 'Sea Ice Concentration',
+ protocol: 'cog',
+ sources: [
+ { url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/S1A_EW_GRDM_1SDH_20180325T194759_20180325T194859_021176_024676_449C.tif_SIC_3857.tif' },
+ ],
+ style: {
+ color: [
+ 'case',
+ ['>', ['band', 1], 1],
+ [
+ 'interpolate',
+ ['linear'],
+ ['band', 1],
+ ...getColorStops('greys', 2, 10, 30, false),
+ ],
+ [
+ 'color', 0, 0, 0, 0,
+ ],
+ ],
+ },
+ }, {
+ name: 'Sea Ice floe',
+ protocol: 'cog',
+ sources: [
+ { url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/S1A_EW_GRDM_1SDH_20180325T194759_20180325T194859_021176_024676_449C.tif_FLOE_3857.tif' },
+ ],
+ style: {
+ color: [
+ 'case',
+ ['>', ['band', 1], 1],
+ [
+ 'interpolate',
+ ['linear'],
+ ['band', 1],
+ ...getColorStops('greys', 2, 5, 30, false),
+ ],
+ [
+ 'color', 0, 0, 0, 0,
+ ],
+ ],
+ },
+ }],
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_S1_demo',
+ time: [
+ ['20230524T04:55:52Z', 's1a-iw-grd-vh-20230524t045552-20230524t045619-048671-05da94-002_COG.tiff', 'Sentinel-1 IW VH'],
+ ['20230524T17:52:21Z', 's1a-iw-grd-vv-20230524t175221-20230524t175248-048679-05dad0-001_COG.tiff', 'Sentinel-1 IW VV'],
+ ['20230524T17:52:21Z', 's1a-iw-grd-vh-20230524t175221-20230524t175248-048679-05dad0-002_COG.tiff', 'Sentinel-1 IW VH'],
+ ['20230524T17:53:20Z', 's1a-iw-grd-vv-20230524t175320-20230524t175344-048679-05dad0-001_COG.tiff', 'Sentinel-1 IW VV'],
+ ['20230524T17:53:20Z', 's1a-iw-grd-vh-20230524t175320-20230524t175344-048679-05dad0-002_COG.tiff', 'Sentinel-1 IW VH'],
+ ],
+ display: {
+ protocol: 'cog',
+ sources: [
+ { url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/{time}' },
+ ],
+ dateFormatFunction: (date) => `${date[1]}`,
+ labelFormatFunction: (date) => `${DateTime.fromISO(date[0]).toFormat('yyyy-MM-dd HH:mm:ss')}-${date[2]}`,
+ style: {
+ color: [
+ 'case',
+ ['>', ['band', 1], 0],
+ [
+ 'interpolate',
+ ['linear'],
+ ['band', 1],
+ ...getColorStops('greys', 0, 400, 50, false),
+ ],
+ [
+ 'color', 0, 0, 0, 0,
+ ],
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_S1_dedl_demo',
+ time: [
+ ['20230524T17:52:21Z', 's1a-iw-grd-vv-20230524t175221-20230524t175248-048679-05dad0-001_COG.tiff', 'Sentinel-1 IW VV'],
+ ['20230524T17:52:21Z', 's1a-iw-grd-vh-20230524t175221-20230524t175248-048679-05dad0-002_COG.tiff', 'Sentinel-1 IW VH'],
+ ],
+ display: {
+ protocol: 'cog',
+ sources: [
+ { url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/{time}' },
+ ],
+ dateFormatFunction: (date) => `${date[1]}`,
+ labelFormatFunction: (date) => `${DateTime.fromISO(date[0]).toFormat('yyyy-MM-dd HH:mm:ss')} -${date[2]}`,
+ style: {
+ color: [
+ 'case',
+ ['>', ['band', 1], 0],
+ [
+ 'interpolate',
+ ['linear'],
+ ['band', 1],
+ ...getColorStops('greys', 0, 400, 50, false),
+ ],
+ [
+ 'color', 0, 0, 0, 0,
+ ],
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_Snowgrain_diameter_demo',
+ time: [],
+ display: {
+ protocol: 'cog',
+ sources: [
+ { url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/snow_grain_diameter_COG_3857.tif' },
+ ],
+ style: {
+ color: [
+ 'case',
+ ['>', ['band', 1], 0],
+ [
+ 'interpolate',
+ ['linear'],
+ ['band', 1],
+ ...getColorStops('greys', 0, 4, 50, false),
+ ],
+ [
+ 'color', 0, 0, 0, 0,
+ ],
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_Snow_specific_surface_area_demo',
+ time: [],
+ display: {
+ protocol: 'cog',
+ sources: [
+ { url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/snow_specific_surface_area_COG_3857.tif' },
+ ],
+ style: {
+ color: [
+ 'case',
+ ['>', ['band', 1], 0],
+ [
+ 'interpolate',
+ ['linear'],
+ ['band', 1],
+ ...getColorStops('greys', 0, 400, 50, false),
+ ],
+ [
+ 'color', 0, 0, 0, 0,
+ ],
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_SeaIce_demo',
+ display: {
+ protocol: 'GeoJSON',
+ url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/s411_seaice_concentration.geojson',
+ name: 'Sea Ice Concentration detections',
+ style: {
+ strokeColor: 'rgba(0,0,0,0.8)',
+ fillColor: 'rgba(0,0,0,0.0)',
+ },
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_RCM_demo',
+ time: ['2021-05-01', '2021-05-04', '2021-05-05', '2021-05-06', '2021-05-08', '2021-05-09', '2021-05-10', '2021-05-11', '2021-05-12', '2021-05-13', '2021-05-17', '2021-05-18', '2021-05-22', '2021-05-23', '2021-05-25'],
+ display: [{
+ baseUrl: `https://services.sentinel-hub.com/ogc/wms/${shConfig.shInstanceIdPolar}`,
+ layers: '1-HH-LINEAR-SIGMA0',
+ name: 'HH Linear Sigma0',
+ }, {
+ baseUrl: `https://services.sentinel-hub.com/ogc/wms/${shConfig.shInstanceIdPolar}`,
+ layers: '3-HV-LINEAR-SIGMA0',
+ name: 'HV Linear Sigma0',
+ }, {
+ baseUrl: `https://services.sentinel-hub.com/ogc/wms/${shConfig.shInstanceIdPolar}`,
+ layers: '5-HH-HV-RATIO-RGB-SIGMA0',
+ name: 'HH HV Ratio RGB Sigma0',
+ }],
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Polartep_SeaIceCharts_demo',
+ display: {
+ baseUrl: null,
+ layerControlHide: true,
+ features: {
+ url: 'https://eox-gtif-public.s3.eu-central-1.amazonaws.com/test_data_polartep/cape_farewell_{featuresTime}.geojson',
+ name: 'Sea Ice Charts',
+ legendUrl: 'https://raw.githubusercontent.com/eurodatacube/eodash-assets/main/collections/Polartep_SeaIceCharts_demo/legend.png',
+ dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy_MM_dd'),
+ allowedParameters: ['CT'],
+ flatStyle: [
+ {
+ style: {
+ 'fill-color': [
+ 'case',
+ ['<', ['get', 'CT'], 0],
+ 'rgba(0,0,0,0)',
+ ['<', ['get', 'CT'], 10],
+ 'rgba(150,200,255,1)',
+ ['<=', ['get', 'CT'], 30],
+ 'rgba(140,255,160,1)',
+ ['<=', ['get', 'CT'], 60],
+ 'rgba(255,255,0,1)',
+ ['<=', ['get', 'CT'], 80],
+ 'rgba(255,125,7,1)',
+ ['<=', ['get', 'CT'], 100],
+ 'rgba(255,0,0,1)',
+ 'rgba(0,0,0,0)',
+ ],
+ 'stroke-color': 'rgba(0,0,0,0)',
+ },
+ },
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'SITI',
+ display: {
+ url: 'https://staging-raster.delta-backend.com/cog/tiles/WGS1984Quad/{z-1}/{x}/{y}?&resampling_method=nearest&bidx=1&colormap_name=plasma&rescale=0.0,4.0&{time}',
+ ...polarStereoDatasetsConfigs,
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'N12_1_sea_ice_concentration_arctic',
+ time: getDailyDates('1978-11-01', '2023-12-31'),
+ display: {
+ ...polarStereoDatasetsConfigs,
+ dateFormatFunction: (date) => DateTime.fromISO(date).toFormat("yyyy-MM-dd'T11:59:30.000Z'"),
+ projection: 'EPSG:3411',
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ // updating times and additional layers
+ indicator: '4D_Greenland_Meltmap',
+ time: getDailyDates('2007-01-02', '2021-12-28'),
+ display: {
+ ...polarStereoDatasetsConfigs,
+ dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy-MM-dd'),
+ },
+ },
+ },
+ },
+ createTOPAZ4Config('TOPAZ4_P1D_SICONC'),
+ createTOPAZ4Config('TOPAZ4_P1D_SISNTHICK'),
+ createTOPAZ4Config('TOPAZ4_P1D_SITHICK'),
+ createTOPAZ4Config('TOPAZ4_P1D_VXO'),
+ createTOPAZ4Config('TOPAZ4_P1D_VXSI'),
+ createTOPAZ4Config('TOPAZ4_P1D_VYO'),
+ createTOPAZ4Config('TOPAZ4_P1D_VYSI'),
+ createTOPAZ5Config('TOPAZ5_P1D_SIAGE'),
+ createTOPAZ5Config('TOPAZ5_P1D_SICONC'),
+ createTOPAZ5Config('TOPAZ5_P1D_SISNTHICK'),
+ createTOPAZ5Config('TOPAZ5_P1D_SITHICK'),
+ createTOPAZ5Config('TOPAZ5_P1D_VXO'),
+ createTOPAZ5Config('TOPAZ5_P1D_VXSI'),
+ createTOPAZ5Config('TOPAZ5_P1D_VYO'),
+ createTOPAZ5Config('TOPAZ5_P1D_VYSI'),
+ createTOPAZ5Config('4D_Greenland_Melt_Season_End'),
+ createTOPAZ5Config('4D_Greenland_Melt_Duration'),
+ createTOPAZ5Config('4D_Greenland_Melt_Onset'),
+];
diff --git a/app/src/config/stories.json b/app/src/config/stories.json
index fdae260332..c04d6b515b 100644
--- a/app/src/config/stories.json
+++ b/app/src/config/stories.json
@@ -7,6 +7,13 @@
"subtitle": "Read more about satellite data applications for environmental impacts on world cereal supply and demand",
"image": "./data/story-images/Agriculture.jpeg",
"imagePlaceholder": "./data/story-images/Agriculture_placeholder.jpeg"
+ },
+ "new-storytelling-demo": {
+ "storyMarkdown": "./data/storytelling-md/new-storytelling-demo.md",
+ "title": "New Storytelling Demo",
+ "subtitle": "Read more about satellite data applications for environmental impacts on world cereal supply and demand",
+ "image": "./data/story-images/Agriculture.jpeg",
+ "imagePlaceholder": "./data/story-images/Agriculture_placeholder.jpeg"
}
},
"atmosphere": {
@@ -62,6 +69,13 @@
"subtitle": "Read more about taking stock of global biomass maps",
"image": "./data/story-images/Biomass.jpeg",
"imagePlaceholder": "./data/story-images/Biomass_placeholder.jpeg"
+ },
+ "forests-on-the-brink": {
+ "storyMarkdown": "./data/storytelling-md/Earth Observing Dashboard-3.md",
+ "title": "Forests on the Brink: Satellite Imagery unveiling Loss and Shifting Forest Landscapes",
+ "subtitle": "Forest Loss and Degradation worldwide",
+ "image": "https://raw.githubusercontent.com/eurodatacube/eodash-assets/main/stories/forest_story/hero.jpg",
+ "imagePlaceholder": "https://raw.githubusercontent.com/eurodatacube/eodash-assets/main/stories/forest_story/hero_small.jpg"
}
},
"cryosphere": {
diff --git a/app/src/config/themes.json b/app/src/config/themes.json
index 0c2574082e..d4cfab465a 100644
--- a/app/src/config/themes.json
+++ b/app/src/config/themes.json
@@ -132,5 +132,30 @@
"color": "#6D00C5",
"description": "Food production, ecosystems & biodiversity"
}
+ ],
+ "polar": [
+ {
+ "name": "Air",
+ "slug": "air",
+ "color": "#4059AD",
+ "description": "Tracking Changes in the Atmosphere",
+ "longDescription": "Air pollution and climate change are some of the biggest environmental challenges of our time.",
+ "datasetsImage": "/data/story-images/Datasets-theme.jpg"
+ },
+ {
+ "name": "Oceans",
+ "slug": "oceans",
+ "color": "#6DA2C5",
+ "description": "Keeping Current with Earth’s Largest Natural Resource",
+ "longDescription": "Satellite images reveal a view of the ocean that is as rich and complex as that of land.",
+ "datasetsImage": "/data/story-images/wq-explore-datasets-image.png"
+ },
+ {
+ "name": "Cryosphere",
+ "slug": "cryosphere",
+ "color": "#42C7B8",
+ "description": "Tracking Ice and Snow’s Relationship to Climate",
+ "longDescription": "The Arctic region shows changes most characteristic of global warming."
+ }
]
}
diff --git a/app/src/config/trilateral.js b/app/src/config/trilateral.js
index 77fea02a5c..c3733b3fe6 100644
--- a/app/src/config/trilateral.js
+++ b/app/src/config/trilateral.js
@@ -1,3 +1,4 @@
+/* eslint-disable max-len */
import { Wkt } from 'wicket';
import WKB from 'ol/format/WKB';
import GeoJSON from 'ol/format/GeoJSON';
@@ -16,7 +17,6 @@ const wkt = new Wkt();
const wkb = new WKB();
const geojsonFormat = new GeoJSON();
-export const dataPath = './data/internal/';
export const STACEndpoint = 'https://eurodatacube.github.io/eodash-catalog/trilateral/catalog.json';
const geodbFeatures = {
@@ -61,7 +61,7 @@ const geodbFeatures = {
const cloudlessBaseLayerDefault = [{
...baseLayers.cloudless,
visible: true,
-}, baseLayers.cloudless2018, baseLayers.eoxosm, baseLayers.terrainLight];
+}, baseLayers.cloudless2020, baseLayers.cloudless2019, baseLayers.cloudless2018, baseLayers.eoxosm, baseLayers.terrainLight];
const antarcticBaseMaps = [
baseLayers.terrainLightStereoSouth,
@@ -150,6 +150,26 @@ const antarcticDatasets = Object.freeze({
overlayLayers: antarcticOverlayMaps,
});
+const polarSHDatasets = Object.freeze({
+ // projection and layers overrides
+ baseLayers: arcticBaseMaps,
+ overlayLayers: arcticOverlayMaps,
+ dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy-MM-dd'),
+ mapProjection: {
+ name: 'EPSG:3413',
+ def: '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs +type=crs',
+ extent: [-3314693.24, -3314693.24, 3314693.24, 3314693.24],
+ },
+ presetView: {
+ type: 'FeatureCollection',
+ features: [{
+ type: 'Feature',
+ properties: {},
+ geometry: wkt.read('POLYGON((-20 83,50 83,50 77,-20 77,-20 83))').toJson(),
+ }],
+ },
+ projection: 'EPSG:3413',
+});
export const indicatorsDefinition = Object.freeze({
E13c: {
features: {
@@ -502,12 +522,21 @@ const getYearlyDates = (start, end) => {
return dateArray;
};
-const getDailyDates = (start, end, interval = 1) => {
+const getDailyDates = (start, end, interval = 1, s3Path = null, formatFunction = null) => {
let currentDate = DateTime.fromISO(start);
const stopDate = DateTime.fromISO(end);
const dateArray = [];
while (currentDate <= stopDate) {
- dateArray.push(DateTime.fromISO(currentDate).toFormat('yyyy-MM-dd'));
+ if (s3Path) {
+ const t = DateTime.fromISO(currentDate).toFormat('yyyy-MM-dd');
+ let evaluated = s3Path.replace('{time}', t);
+ if (formatFunction) {
+ evaluated = s3Path.replace('{time}', formatFunction(t));
+ }
+ dateArray.push([t, evaluated]);
+ } else {
+ dateArray.push(DateTime.fromISO(currentDate).toFormat('yyyy-MM-dd'));
+ }
currentDate = DateTime.fromISO(currentDate).plus({ days: interval });
}
return dateArray;
@@ -572,27 +601,7 @@ export const globalIndicators = [
properties: {
indicatorObject: {
indicator: 'SIE',
- display: {
- // projection and layers overrides
- baseLayers: arcticBaseMaps,
- overlayLayers: arcticOverlayMaps,
- dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy-MM-dd'),
- labelFormatFunction: (date) => DateTime.fromISO(date).toFormat('LLL yyyy'),
- mapProjection: {
- name: 'EPSG:3413',
- def: '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs +type=crs',
- extent: [-3314693.24, -3314693.24, 3314693.24, 3314693.24],
- },
- presetView: {
- type: 'FeatureCollection',
- features: [{
- type: 'Feature',
- properties: {},
- geometry: wkt.read('POLYGON((-20 83,50 83,50 77,-20 77,-20 83))').toJson(),
- }],
- },
- projection: 'EPSG:3413',
- },
+ display: polarSHDatasets,
},
},
},
@@ -616,27 +625,7 @@ export const globalIndicators = [
indicatorObject: {
indicator: 'SIC',
showGlobe: true,
- display: {
- // projection and layers overrides
- baseLayers: arcticBaseMaps,
- overlayLayers: arcticOverlayMaps,
- projection: 'EPSG:3413',
- dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy-MM-dd'),
- labelFormatFunction: (date) => DateTime.fromISO(date).toFormat('LLL yyyy'),
- mapProjection: {
- name: 'EPSG:3413',
- def: '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs +type=crs',
- extent: [-3314693.24, -3314693.24, 3314693.24, 3314693.24],
- },
- presetView: {
- type: 'FeatureCollection',
- features: [{
- type: 'Feature',
- properties: {},
- geometry: wkt.read('POLYGON((-20 83,50 83,50 77,-20 77,-20 83))').toJson(),
- }],
- },
- },
+ display: polarSHDatasets,
},
},
},
@@ -1244,10 +1233,9 @@ export const globalIndicators = [
indicatorObject: {
// updating times and additional layers
indicator: 'ADD_Melt_Duration',
- time: getYearlyDates('2007-01-01', '2021-06-30'),
display: {
...antarcticDatasets,
- dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy-MM-dd'),
+ labelFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy'),
},
},
},
@@ -1257,10 +1245,9 @@ export const globalIndicators = [
indicatorObject: {
// updating times and additional layers
indicator: 'ADD_Melt_Season_End',
- time: getYearlyDates('2007-01-02', '2021-12-31'),
display: {
...antarcticDatasets,
- dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy-MM-dd'),
+ labelFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy'),
},
},
},
@@ -1270,14 +1257,50 @@ export const globalIndicators = [
indicatorObject: {
// updating times and additional layers
indicator: 'ADD_Melt_Onset',
- time: getYearlyDates('2007-01-02', '2021-12-31'),
display: {
...antarcticDatasets,
- dateFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy-MM-dd'),
+ labelFormatFunction: (date) => DateTime.fromISO(date).toFormat('yyyy'),
},
},
},
},
+ {
+ properties: {
+ indicatorObject: {
+ // updating times and additional layers
+ indicator: '4D_Greenland_Meltmap',
+ time: getDailyDates('2007-01-02', '2021-12-28'),
+ display: polarSHDatasets,
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ // updating times and additional layers
+ indicator: '4D_Greenland_Melt_Duration',
+ display: polarSHDatasets,
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ // updating times and additional layers
+ indicator: '4D_Greenland_Melt_Season_End',
+ display: polarSHDatasets,
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ // updating times and additional layers
+ indicator: '4D_Greenland_Melt_Onset',
+ display: polarSHDatasets,
+ },
+ },
+ },
{
properties: {
indicatorObject: {
@@ -1290,4 +1313,45 @@ export const globalIndicators = [
},
},
},
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'sen4ama',
+ display: {
+ baseLayers: cloudlessBaseLayerDefault,
+ baseUrl: `https://services.sentinel-hub.com/ogc/wms/${shConfig.shInstanceId}`,
+ name: 'Sentinel-1 for Science Amazonas area of forest loss',
+ layers: 'ID-AMAZONAS_PROJECT',
+ minZoom: 5,
+ maxZoom: 16,
+ dateFormatFunction: (date) => `${DateTime.fromISO(date).toFormat('yyyy-MM-dd')}/${DateTime.fromISO(date).plus({ months: 1 }).minus({ days: 1 }).toFormat('yyyy-MM-dd')}`,
+ presetView: {
+ type: 'FeatureCollection',
+ features: [{
+ type: 'Feature',
+ properties: {},
+ geometry: wkt.read('POLYGON ((-58.193359 -5.652236, -58.193359 -1.537901, -52.625 -1.537901, -52.625 -5.652236, -58.193359 -5.652236))').toJson(),
+ }],
+ },
+ },
+ },
+ },
+ },
+ {
+ properties: {
+ indicatorObject: {
+ indicator: 'Lakes_WQ_TURB',
+ display: {
+ presetView: {
+ type: 'FeatureCollection',
+ features: [{
+ type: 'Feature',
+ properties: {},
+ geometry: wkt.read('POLYGON ((16.99585 46.55886, 16.99585 47.182246, 18.308716 47.182246, 18.308716 46.55886, 16.99585 46.55886))').toJson(),
+ }],
+ },
+ },
+ },
+ },
+ },
];
diff --git a/app/src/helpers/customAreaObjects.js b/app/src/helpers/customAreaObjects.js
index cf3965f4c7..280b76548d 100644
--- a/app/src/helpers/customAreaObjects.js
+++ b/app/src/helpers/customAreaObjects.js
@@ -40,6 +40,9 @@ export const fetchCustomDataOptions = (time, sourceOptionsObj, store) => {
);
outputOptionsObj.site = currSite;
}
+ if (store.state.features.sliderValue) {
+ outputOptionsObj.sliderValue = store.state.features.sliderValue;
+ }
if (time) {
// substitutes {time} template possibly utilizing dateFormatFunction
@@ -146,57 +149,6 @@ export const parseStatAPIResponse = (
return null;
};
-function defaultEvalScriptDef(bandname, maxOutlierFilterOut = 1e20) {
- return `//VERSION=3
-function setup() {
- return {
- input: [{
- bands: [
- "${bandname}",
- "dataMask"
- ]
- }],
- output: [
- {
- id: "data",
- bands: 1,
- sampleType: "FLOAT32"
- },
- {
- id: "dataMask",
- bands: 1
- }
- ]
- }
-}
-function evaluatePixel(samples) {
- let validValue = 1
- if (samples.${bandname} >= ${maxOutlierFilterOut}){
- validValue = 0
- }
- let index = samples.${bandname};
- return {
- data: [index],
- dataMask: [samples.dataMask * validValue]
- }
-}`;
-}
-
-export const evalScriptsDefinitions = Object.freeze({
- 'AWS_NO2-VISUALISATION': defaultEvalScriptDef('tropno2'),
- AWS_CH4_WEEKLY_DATA: defaultEvalScriptDef('ch4'),
- AWS_VIS_SO2_DAILY_DATA: defaultEvalScriptDef('so2'),
- BICEP_NPP_VIS_PP: defaultEvalScriptDef('pp'),
- AWS_VIS_CO_3DAILY_DATA: defaultEvalScriptDef('co'),
- AWS_VIS_SST_MAPS: defaultEvalScriptDef('sst'),
- AWS_VIS_CHL_MAPS: defaultEvalScriptDef('chl', 2e3),
- AWS_VIS_TSM_MAPS: defaultEvalScriptDef('tsmnn', 2e3),
- AWS_JAXA_TSM: defaultEvalScriptDef('tsm'),
- AWS_JAXA_CHLA: defaultEvalScriptDef('chla'),
- LAKES_SURFACE_WATER_TEMPERATURE: defaultEvalScriptDef('waterTemperature'),
- 'GHS-BUILT-S_GLOBE_R2023A': defaultEvalScriptDef('BUILT'),
-});
-
// Define custom fetch function with configurable timeout
async function fetchWithTimeout(resource, options = {}) {
const { timeout = 20000 } = options;
@@ -227,6 +179,22 @@ export const fetchCustomAreaObjects = async (
? mergedConfig[lookup].areaFormatFunction(drawnArea)
: { area: JSON.stringify(drawnArea) };
}
+
+ const { selectedFeatures } = store.state.features;
+ if (selectedFeatures.length === 1) {
+ const adminZoneKey = mergedConfig?.areaIndicator?.adminZoneKey;
+ if (adminZoneKey) {
+ options.adminZone = selectedFeatures[0].get(adminZoneKey); // eslint-disable-line
+ }
+ // special custom handling of cropom dataset
+ const queryParameters = indicatorObject?.queryParameters;
+ if (indicator.indicator === 'CROPOM' && Array.isArray(queryParameters)) {
+ const selectedCrop = queryParameters[1].items.find((item) => item.id === queryParameters[1].selected);
+ const selectedScenario = queryParameters[2].selected;
+ options.crop = selectedCrop.areaIndicator; // eslint-disable-line
+ options.scenario = selectedScenario; // eslint-disable-line
+ }
+ }
const templateSubst = {
...indicator,
...options,
@@ -371,11 +339,14 @@ export const fetchCustomAreaObjects = async (
} else if (mergedConfig[lookup].url.includes('/cog/statistics')) {
// Here we handle parallel requests to the new statistical api from nasa
const requests = [];
- // Add limit on how many requests we can send if there are over 600 time entries
+ // Add limit on how many requests we can send if there are over 365 time entries
// TODO: Sending more requests overloads server, need to think how to handle this
let requestTimes = indicator.time;
- if (indicator.time.length > 600) {
- requestTimes = indicator.time.slice(-600);
+ if (indicator.time.length > 365) {
+ if (options.currentTimeIndex) {
+ const startIndex = Math.max(0, options.currentTimeIndex - 365);
+ requestTimes = indicator.time.slice(startIndex, options.currentTimeIndex);
+ }
}
requestTimes.forEach((entry) => {
const requestUrl = `${url}?url=${entry[1]}`;
@@ -421,6 +392,7 @@ export const fetchCustomAreaObjects = async (
return custom;
});
} else {
+ window.dispatchEvent(new CustomEvent('set-custom-area-features-loading', { detail: true }));
customObjects = await fetch(url, requestOpts).then((response) => {
if (!response.ok) {
return response.text().then((text) => { throw text; });
@@ -474,6 +446,9 @@ export const fetchCustomAreaObjects = async (
// If error message is an object it is probably the returned html
console.log('Possible issue retrieving geoJSON for specified time');
}
+ })
+ .finally(() => {
+ window.dispatchEvent(new CustomEvent('set-custom-area-features-loading', { detail: false }));
});
}
return customObjects;
diff --git a/app/src/helpers/mapConfig.js b/app/src/helpers/mapConfig.js
index e28cacf85a..03be2e3782 100644
--- a/app/src/helpers/mapConfig.js
+++ b/app/src/helpers/mapConfig.js
@@ -228,6 +228,10 @@ const createAvailableTimeEntries = (indicatorObject, config) => {
};
const indicatorHasMapData = (indicatorObject, featureObject) => {
+ if (indicatorObject?.indicator === 'E13d' && featureObject) {
+ // custom overload for extra hassle with replaceMapTimes from config
+ return true;
+ }
baseConfig = store.state.config.baseConfig;
let hasMapData = false;
if (indicatorObject) {
diff --git a/app/src/main.js b/app/src/main.js
index f7c3d20217..163a0e3562 100644
--- a/app/src/main.js
+++ b/app/src/main.js
@@ -21,6 +21,7 @@ import EmbedIframe from './views/EmbedIframe.vue';
import ThemesLandingPage from './views/ThemesLandingPage.vue';
import ThemeSinglePage from './views/ThemeSinglePage.vue';
import ScrollyFrame from './views/ScrollyFrame.vue';
+import StoryEditor from './views/StoryEditor.vue';
import store from './store';
import charts from './plugins/charts'; // eslint-disable-line no-unused-vars
import customDashboardApiFactory from './custom-dashboard';
@@ -30,6 +31,10 @@ import getLocationCode from './mixins/getLocationCode';
import '@eox/itemfilter';
import '@eox/layercontrol';
import '@eox/stacinfo';
+import '@eox/map';
+import '@eox/map/dist/eox-map-advanced-layers-and-sources';
+import '@eox/jsonform';
+import '@eox/storytelling';
// Set UTC as default time zone behavior for whole client
Settings.defaultZoneName = 'utc';
@@ -42,6 +47,9 @@ Vue.config.ignoredElements = [
'eox-itemfilter',
'eox-layercontrol',
'eox-stacinfo',
+ 'eox-map',
+ 'eox-jsonform',
+ 'eox-storytelling',
];
Vue.use(VuePapaParse);
@@ -219,6 +227,7 @@ const renderVue = async () => {
] : []
),
{ path: '/story', component: DashboardCustom },
+ { path: '/story-editor', component: StoryEditor },
{ path: '/privacy', name: 'privacy', component: Privacy },
{ path: '/terms_and_conditions', name: 'terms_and_conditions', component: Terms },
{ path: '/challenges', component: Challenges },
diff --git a/app/src/scripts/generate_files.py b/app/src/scripts/generate_files.py
index 61c87a1aa7..264c4e164f 100644
--- a/app/src/scripts/generate_files.py
+++ b/app/src/scripts/generate_files.py
@@ -197,6 +197,9 @@ def try_parsing_date(text, line):
"landsat-c2l2-sr-lakes-lake-biwa": "https://staging-stac.delta-backend.com/collections/",
"landsat-c2l2-sr-lakes-tonle-sap": "https://staging-stac.delta-backend.com/collections/",
"landsat-c2l2-sr-lakes-vanern": "https://staging-stac.delta-backend.com/collections/",
+ "EPA-daily-emissions_5_Forest_Fires": "https://staging-stac.delta-backend.com/collections/",
+ "EPA-monthly-emissions_4F_Field_Burning": "https://staging-stac.delta-backend.com/collections/",
+ "hls-ndvi": "https://staging-stac.delta-backend.com/collections/",
#"social-vulnerability-index-socioeconomic-nopop": "https://staging-stac.delta-backend.com/collections/",
#"social-vulnerability-index-socioeconomic": "https://staging-stac.delta-backend.com/collections/",
#"social-vulnerability-index-household": "https://staging-stac.delta-backend.com/collections/",
@@ -722,29 +725,6 @@ def date_converter(obj):
with open("%s%s.json" % (output_folder, poi_key), "w") as gp:
json.dump(poi_dict[poi_key]["poi_data"], gp, indent=4, default=date_converter, sort_keys=True)
-
-#################
-# Retrieval of official stories
-print("Fetching data for official stories")
-stories_config = '/config/stories.json'
-dashboards_folder = '/public/data/dashboards'
-dashboards_endpoint = "https://eodash-dashboard-api.f77a4d8a-acde-4ddd-b1cd-b2b6afe83d7a.hub.eox.at/get?id="
-with open(stories_config) as json_file:
- stories_data = json.load(json_file)
- for instance in stories_data:
- # Fetching instance specific stories
- for category in stories_data[instance].values():
- if category:
- for entry in category.values():
- if 'originalDashboardId' in entry:
- dash_id = entry['originalDashboardId']
- resp = requests.get(dashboards_endpoint+dash_id)
- if resp.status_code == 200:
- with open("%s/%s.json"%(dashboards_folder, dash_id), "w") as f:
- f.write(json.dumps(resp.json(), indent = 2))
- else:
- print ('Issue retrieving story with dashboard id %s'%dash_id)
-
#################
print("Generating data for trilateral")
@@ -864,6 +844,6 @@ def date_converter(obj):
['E200', ''],
['Sentinel_1_Vessel_Density_Europe_Timeseries', ''],
['Crude_Oil_Storage_Index', ''],
- ['Crude_Oil_Storage_Index-Europe', ''],
+ # ['Crude_Oil_Storage_Index-Europe', ''],
]
)
diff --git a/app/src/scripts/generate_stories.py b/app/src/scripts/generate_stories.py
new file mode 100644
index 0000000000..58083c84eb
--- /dev/null
+++ b/app/src/scripts/generate_stories.py
@@ -0,0 +1,39 @@
+#!/usr/bin/python
+"""
+Helper script to create location and data separation
+
+Usage:
+docker run --rm -it -v $PWD/../config:/config -v $PWD:/working -v $PWD/../../public:/public eurodatacube/jupyter-user:0.19.6 /opt/conda/envs/eurodatacube-0.19.6/bin/python3 /working/generate_stories.py
+
+If issues with write permission you might have to add a user as parameter
+with the same user id as your local account, e.g. "--user 1001"
+"""
+
+import json
+import requests
+
+#################
+# Retrieval of official stories
+print("Fetching data for official stories")
+stories_config = "/config/stories.json"
+dashboards_folder = "/public/data/dashboards"
+dashboards_endpoint = "https://eodash-dashboard-api.f77a4d8a-acde-4ddd-b1cd-b2b6afe83d7a.hub.eox.at/get?id="
+with open(stories_config) as json_file:
+ stories_data = json.load(json_file)
+ for instance in stories_data:
+ # Fetching instance specific stories
+ for category in stories_data[instance].values():
+ if category:
+ for entry in category.values():
+ if "originalDashboardId" in entry:
+ dash_id = entry["originalDashboardId"]
+ resp = requests.get(dashboards_endpoint + dash_id)
+ if resp.status_code == 200:
+ with open(
+ "%s/%s.json" % (dashboards_folder, dash_id), "w"
+ ) as f:
+ f.write(json.dumps(resp.json(), indent=2))
+ else:
+ print(
+ "Issue retrieving story with dashboard id %s" % dash_id
+ )
diff --git a/app/src/scripts/update_data.sh b/app/src/scripts/update_data.sh
index 1e6b4a49d9..2a353eda41 100755
--- a/app/src/scripts/update_data.sh
+++ b/app/src/scripts/update_data.sh
@@ -10,6 +10,9 @@ fi
echo "Running generate_files script ..."
docker run --user $defaultuserid --rm -it -v $PWD/../config:/config -v $PWD:/working -v $PWD/../../public:/public eurodatacube/jupyter-user:0.19.6 /opt/conda/envs/eurodatacube-0.19.6/bin/python3 /working/generate_files.py
+echo "Running generate_stories script ..."
+docker run --user $defaultuserid --rm -it -v $PWD/../config:/config -v $PWD:/working -v $PWD/../../public:/public eurodatacube/jupyter-user:0.19.6 /opt/conda/envs/eurodatacube-0.19.6/bin/python3 /working/generate_stories.py
+
echo "Running retrieve_covid_data script ..."
docker run --user $defaultuserid --rm -it -v $PWD/../assets:/assets -v $PWD:/working -v $PWD/../../public:/public eurodatacube/jupyter-user:0.19.6 /opt/conda/envs/eurodatacube-0.19.6/bin/python3 /working/retrieve_covid_data.py
diff --git a/app/src/store/modules/features.js b/app/src/store/modules/features.js
index e3580b027d..98fdb858f2 100644
--- a/app/src/store/modules/features.js
+++ b/app/src/store/modules/features.js
@@ -10,6 +10,8 @@ const state = {
custom: [],
},
selectedArea: null,
+ selectedCalendarDate: null,
+ sliderValue: null,
selectedFeatures: [],
};
@@ -77,6 +79,12 @@ const mutations = {
SET_SELECTED_AREA(state, area) {
state.selectedArea = area;
},
+ SET_SELECTED_DATE(state, date) {
+ state.selectedCalendarDate = date;
+ },
+ SET_SLIDER_VALUE(state, sliderValue) {
+ state.sliderValue = sliderValue;
+ },
SET_ADMIN_BORDER_FEATURE_SELECTED(state, feature) {
state.adminBorderFeatureSelected = feature;
},
diff --git a/app/src/store/modules/indicators.js b/app/src/store/modules/indicators.js
index 6291b8b4b2..c171db3ad4 100644
--- a/app/src/store/modules/indicators.js
+++ b/app/src/store/modules/indicators.js
@@ -1,5 +1,6 @@
/* eslint no-shadow: ["error", { "allow": ["state"] }] */
import shTimeFunction from '@/shTimeFunction';
+import countriesJSON from '@/assets/countries.json';
const state = {
indicators: null,
@@ -114,20 +115,60 @@ async function loadIndicator(link, url, rootState) {
}
return results;
}
-
-async function loadAllIndicators(data, url, rootState) {
+function sanitizeData(indicator) {
+ if (indicator.themes?.length === 0) {
+ indicator.themes.push('others');
+ }
+ if (indicator.cities?.length > 0) {
+ const sanitizedCities = [];
+ indicator.cities.forEach((c) => {
+ if (c !== '/' && c !== undefined) {
+ sanitizedCities.push(c);
+ }
+ });
+ // eslint-disable-next-line no-param-reassign
+ indicator.cities = sanitizedCities;
+ }
+ const sanitizedCountries = [];
+ if (indicator.countries?.length > 0) {
+ indicator.countries.forEach((cntr) => {
+ const match = countriesJSON.features.find((it) => it.properties.alpha2 === cntr || it.is === cntr);
+ if (match) {
+ if (match.properties.name === 'Czechia') {
+ sanitizedCountries.push('Czech Republic');
+ } else {
+ sanitizedCountries.push(match.properties.name);
+ }
+ } else if (cntr === 'UK') {
+ sanitizedCountries.push('United Kingdom');
+ } else if (cntr === 'Czechia') {
+ sanitizedCountries.push('Czech Republic');
+ } else if (!(cntr === '/' || cntr === undefined)) {
+ sanitizedCountries.push(cntr);
+ }
+ });
+ // eslint-disable-next-line no-param-reassign
+ indicator.countries = sanitizedCountries;
+ }
+ return indicator;
+}
+async function loadAllIndicators(data, url, rootState, commit) {
const indicators = [];
- const promises = data.links.map(link => loadIndicator(link, url, rootState));
- Promise.all(promises).then(results => {
+ const promises = data.links.map((link) => loadIndicator(link, url, rootState));
+ await Promise.all(promises).then((results) => {
// results is an array of all the resolved values
- results.forEach(result => {
+ results.forEach((result) => {
if (result && result.length > 0) {
- indicators.push(...result);
+ for (let r = 0; r < result.length; r++) {
+ sanitizeData(result[r]);
+ indicators.push(result[r]);
+ }
}
});
- }).catch(error => {
+ }).catch((error) => {
console.error('Error loading datasets:', error);
});
+ commit('SET_INDICATORS', indicators);
return indicators;
}
@@ -142,25 +183,24 @@ const actions = {
// only for testing and staging environments
const currUrl = new URL(window.location.href);
const catalogBranch = currUrl.searchParams.get('catalog');
- const testenv = window.location.href.search('test|staging|localhost|eox.world');
+ const testenv = window.location.href.search('polar|test|staging|localhost|eox.world');
if (catalogBranch !== null && testenv !== -1) {
const bucket = 'https://eodashcatalog.eox.at/';
const mapping = {
esa: 'RACE',
trilateral: 'trilateral',
gtif: 'GTIF',
+ polar: 'polar',
};
url = `${bucket}${catalogBranch}/${mapping[rootState.config.appConfig.id]}/catalog.json`;
}
- const indicators = await this.dispatch( // eslint-disable-line
- 'indicators/loadSTACEndpoint', { url, rootState },
+ this.dispatch( // eslint-disable-line
+ 'indicators/loadSTACEndpoint', { url, commit, rootState },
);
- commit('SET_INDICATORS', indicators);
},
- loadSTACEndpoint(_, { url, rootState }) {
- return fetch(url, { credentials: 'same-origin' }).then((r) => r.json())
- .then((data) => loadAllIndicators(data, url, rootState))
- .then((indicators) => indicators);
+ async loadSTACEndpoint(_, { url, commit, rootState }) {
+ fetch(url, { credentials: 'same-origin' }).then((r) => r.json())
+ .then((data) => loadAllIndicators(data, url, rootState, commit));
},
};
diff --git a/app/src/utils.js b/app/src/utils.js
index 65e8b63ba2..e5fba045f6 100644
--- a/app/src/utils.js
+++ b/app/src/utils.js
@@ -14,7 +14,7 @@ import {
nasaStatisticsConfig,
xcubeAnalyticsConfig,
} from '@/helpers/customAreaObjects';
-import { xcubeViewerColormaps } from '@/config/layers';
+// import { xcubeViewerColormaps, marineDataStoreDepths } from '@/config/layers';
import { getMapInstance } from './components/map/map';
const wkt = new Wkt();
@@ -113,9 +113,9 @@ function createXYZDisplay(config, jsonData) {
}
function createXYZTilesXcubeDisplay(config, name) {
- const searchParams = new URLSearchParams(config.href);
- const vmin = searchParams.get('vmin') || 0;
- const vmax = searchParams.get('vmax') || 1;
+ // const searchParams = new URLSearchParams(config.href);
+ // const vmin = searchParams.get('vmin') || 0;
+ // const vmax = searchParams.get('vmax') || 1;
const display = {
protocol: 'xyz',
tileSize: 256,
@@ -124,37 +124,87 @@ function createXYZTilesXcubeDisplay(config, name) {
name,
dateFormatFunction: (date) => `${date}`,
labelFormatFunction: (date) => date,
- layerConfig: {
- schema: {
- type: 'object',
- properties: {
- vminmax: {
- title: 'Value stretch',
- type: 'object',
- properties: {
- vmin: {
- type: 'number',
- minimum: parseFloat(vmin),
- maximum: parseFloat(vmax),
- format: 'range',
- },
- vmax: {
- type: 'number',
- minimum: parseFloat(vmin),
- maximum: parseFloat(vmax),
- format: 'range',
- },
- },
- format: 'minmax',
- },
- cbar: {
- title: 'Colorbar',
- type: 'string',
- enum: xcubeViewerColormaps,
- },
- },
- },
- },
+ // layerConfig: {
+ // schema: {
+ // type: 'object',
+ // properties: {
+ // vminmax: {
+ // title: 'Value stretch',
+ // type: 'object',
+ // properties: {
+ // vmin: {
+ // type: 'number',
+ // minimum: parseFloat(vmin),
+ // maximum: parseFloat(vmax),
+ // format: 'range',
+ // },
+ // vmax: {
+ // type: 'number',
+ // minimum: parseFloat(vmin),
+ // maximum: parseFloat(vmax),
+ // format: 'range',
+ // },
+ // },
+ // format: 'minmax',
+ // },
+ // cbar: {
+ // title: 'Colorbar',
+ // type: 'string',
+ // enum: xcubeViewerColormaps,
+ // },
+ // },
+ // },
+ // },
+ };
+ return display;
+}
+
+function createXYZTilesMarineDatastoreDisplay(config, name) {
+ // const searchParams = new URLSearchParams(config.href);
+ // const vmin = searchParams.get('vmin') || 0;
+ // const vmax = searchParams.get('vmax') || 1;
+ const display = {
+ protocol: 'xyz',
+ url: `https://wmts.marine.copernicus.eu/teroWmts?service=WMTS&version=1.0.0&request=GetTile&tilematrixset=EPSG:4326&tilematrix={z-1}&tilerow={y}&tilecol={x}&layer=${config['wmts:layer']}&elevation=${config['wmts:dimensions'].elevation}&time={time}&style=${config['wmts:dimensions'].style}`,
+ name,
+ dateFormatFunction: (date) => `${date}`,
+ // commenting out for now due to a endless loop of fetching tiles (something triggers layercontrol xyz source update) and that fetches tiles, which triggers layercontrol xyz "slider" update
+ // layerConfig: {
+ // schema: {
+ // type: 'object',
+ // properties: {
+ // // vminmax: {
+ // // title: 'Value stretch',
+ // // type: 'object',
+ // // properties: {
+ // // vmin: {
+ // // type: 'number',
+ // // minimum: parseFloat(vmin),
+ // // maximum: parseFloat(vmax),
+ // // format: 'range',
+ // // },
+ // // vmax: {
+ // // type: 'number',
+ // // minimum: parseFloat(vmin),
+ // // maximum: parseFloat(vmax),
+ // // format: 'range',
+ // // },
+ // // },
+ // // format: 'minmax',
+ // // },
+ // elevation: {
+ // title: 'Elevation',
+ // type: 'string',
+ // enum: marineDataStoreDepths,
+ // },
+ // // style: {
+ // // title: 'Style',
+ // // type: 'string',
+ // // enum: ['cmap:viridis,range:1/1400,noClamp', 'cmap:speed,range:1/400,noClamp'],
+ // // },
+ // },
+ // },
+ // },
};
return display;
}
@@ -474,8 +524,19 @@ export async function loadIndicatorData(baseConfig, payload) {
// Configure display based on type
const wmsEndpoint = jsonData.links.find((item) => item.rel === 'wms');
const xyzEndpoint = jsonData.links.find((item) => item.rel === 'xyz');
+ const wmtsEndpoint = jsonData.links.find((item) => item.rel === 'wmts');
let display = {};
- if (wmsEndpoint) {
+ if (wmtsEndpoint && wmtsEndpoint.href.includes('wmts.marine.copernicus.eu/teroWmts')) {
+ display = createXYZTilesMarineDatastoreDisplay(
+ wmtsEndpoint, jsonData.id,
+ );
+ jsonData.links.forEach((link) => {
+ if (link.rel === 'item') {
+ times.push(link.datetime);
+ }
+ });
+ times.sort((a, b) => ((DateTime.fromISO(a) > DateTime.fromISO(b)) ? 1 : -1));
+ } else if (wmsEndpoint) {
display = createWMSDisplay(
wmsEndpoint, jsonData.id,
);
@@ -580,12 +641,13 @@ export async function loadIndicatorData(baseConfig, payload) {
},
};
} else if (exampleEndpoint.title === 'VEDA Statistics') {
+ const rescale = exampleEndpoint.rescale || 1;
display = {
...display,
...{
customAreaIndicator: true,
areaIndicator: nasaStatisticsConfig(
- (value) => value,
+ (value) => rescale * value,
),
},
};
diff --git a/app/src/views/Dashboard.vue b/app/src/views/Dashboard.vue
index b269f7f03f..e21e202c09 100644
--- a/app/src/views/Dashboard.vue
+++ b/app/src/views/Dashboard.vue
@@ -26,14 +26,16 @@
>
-
+
0"
:key="panelKey" />
0;
},
+ indicatorPanelheader() {
+ if (this.appConfig.uiText && 'indicatorPanelheader' in this.appConfig.uiText) {
+ return this.appConfig.uiText.indicatorPanelheader;
+ }
+ return 'Domains & Tools';
+ },
currentNews() {
let currentNews;
if (this.appConfig && this.appConfig.newsBanner) {
diff --git a/app/src/views/DashboardCustom.vue b/app/src/views/DashboardCustom.vue
index 3bfa44e3c5..a702dd0ce3 100644
--- a/app/src/views/DashboardCustom.vue
+++ b/app/src/views/DashboardCustom.vue
@@ -7,7 +7,8 @@
: (storyModeEnabled ? 'pa-0' : 'pa-5')"
:style="`margin-top: ${$vuetify.application.top}px;
height: calc((var(--vh, 1vh) * 100);
- overflow-y: ${storyModeEnabled ? 'hidden' : 'auto'}; overflow-x: hidden`"
+ overflow-y: ${storyModeEnabled && !storytellingMarkdownUrl ? 'hidden' : 'auto'};
+ overflow-x: hidden`"
id="scroll-target"
>
@@ -287,9 +288,17 @@
v-if="$vuetify.breakpoint.smAndDown && !storyModeEnabled"
class="my-10"
>
+
',
+ storytellingMarkdownUrl: null,
}),
computed: {
...mapState('config', [
@@ -589,29 +599,33 @@ export default {
!editKey
&& existingConfiguration
) {
- // replace with local custom dashboard
- const localDashboard = await axios
- .get(`./data/dashboards/${existingConfiguration.originalDashboardId}.json`, {
- headers: {
- 'Cache-Control': 'no-cache',
- Pragma: 'no-cache',
- Expires: '0',
- },
- });
- const localDashboardContent = localDashboard.data;
this.officialDashboard = true;
this.localDashboardId = id;
this.dashboardTitle = existingConfiguration.title;
this.dashboardSubTitle = existingConfiguration.subtitle;
this.dashboardHeaderImage = existingConfiguration.image;
this.dashboardHeaderImagePlaceholder = existingConfiguration.imagePlaceholder;
- const localFeatures = localDashboardContent.features.map((f) => {
- const newF = { ...f };
- delete newF.id;
- newF.poi = f.id;
- return newF;
- });
- this.localDashboardFeatures = localFeatures;
+ if (existingConfiguration.storyMarkdown) {
+ this.storytellingMarkdownUrl = existingConfiguration.storyMarkdown;
+ } else {
+ // replace with local custom dashboard
+ const localDashboard = await axios
+ .get(`./data/dashboards/${existingConfiguration.originalDashboardId}.json`, {
+ headers: {
+ 'Cache-Control': 'no-cache',
+ Pragma: 'no-cache',
+ Expires: '0',
+ },
+ });
+ const localDashboardContent = localDashboard.data;
+ const localFeatures = localDashboardContent.features.map((f) => {
+ const newF = { ...f };
+ delete newF.id;
+ newF.poi = f.id;
+ return newF;
+ });
+ this.localDashboardFeatures = localFeatures;
+ }
} else {
this.reconnecting = true;
this.disconnect();
@@ -788,14 +802,16 @@ export default {
});
},
pageScroll({ target, offset = 0 }) {
- this.scrollOverlay = true;
+ if (!this.storytellingMarkdownUrl) {
+ this.scrollOverlay = true;
+ }
setTimeout(async () => {
await this.$vuetify.goTo(
target,
{
container: document.querySelector('.scrollContainer'),
offset,
- duration: 0,
+ duration: this.storytellingMarkdownUrl ? 500 : 0,
},
);
setTimeout(() => {
diff --git a/app/src/views/StoryEditor.vue b/app/src/views/StoryEditor.vue
new file mode 100644
index 0000000000..f7f67b98d3
--- /dev/null
+++ b/app/src/views/StoryEditor.vue
@@ -0,0 +1,29 @@
+
+
+
+
+
diff --git a/app/vue.config.js b/app/vue.config.js
index a9e1744321..9a1e35c6b4 100644
--- a/app/vue.config.js
+++ b/app/vue.config.js
@@ -55,6 +55,10 @@ module.exports = {
'@eox/layercontrol',
'@eox/stacinfo',
'ol-mapbox-style',
+ '@eox/map',
+ '@eox/jsonform',
+ '@eox/storytelling',
+ 'color-parse',
],
configureWebpack: {
devServer: {